/* ═══════════════════════════════════════════════════════════════════════
   Agafay Hotels — style.css
   Luxury desert hotel & tented camp landing page
   Static-ready: GitHub Pages, Cloudflare Pages, any static host
═══════════════════════════════════════════════════════════════════════ */

/* ── 1. CSS VARIABLES ───────────────────────────────────────────────── */
:root {
  --bg:       #FBF6EF;
  --white:    #FFFFFF;
  --dark:     #1C1209;
  --sand:     #E8D5B0;
  --gold:     #C9922A;
  --gold-lt:  #F5E4C0;
  --gold-dk:  #9B6E1A;
  --teal:     #1A4744;
  --teal-lt:  #E6F0EF;
  --terra:    #8B3A2A;
  --rose:     #C2624A;
  --night:    #0F1C1A;
  --muted:    #6B5744;
  --border:   rgba(28,18,9,0.10);

  --orange:   #C2624A;
  --orange-light: #F9E0D8;
  --orange-dark:  #9B3E2E;
  --night-soft:   #1A2E2C;
  --sand-light:   #FDF9F3;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-head:  'Poppins', Arial, sans-serif;
  --font-body:  'Inter', Arial, sans-serif;

  --header-h:  70px;
  --section-py: 88px;
  --container: 1180px;
  --gap:        24px;

  --radius:    16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 12px rgba(28,18,9,0.08);
  --shadow:    0 6px 32px rgba(28,18,9,0.12);
  --shadow-lg: 0 16px 60px rgba(28,18,9,0.16);
}

/* ── 2. RESET & BASE ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── 3. TYPOGRAPHY ──────────────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.1rem; }
p  { color: var(--muted); }

/* ── 4. LAYOUT ──────────────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
section { padding: var(--section-py) 0; }

/* ── 5. BUTTONS ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 50px; font-family: var(--font-head);
  font-size: 0.9rem; font-weight: 600; transition: all 0.22s ease;
  white-space: nowrap; border: 2px solid transparent;
}
.btn--primary  { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn--primary:hover { background: #0d3532; border-color: #0d3532; transform: translateY(-1px); }
.btn--outline  { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn--outline:hover { background: var(--teal); color: var(--white); }
.btn--whatsapp { background: #25D366; color: var(--white); border-color: #25D366; }
.btn--whatsapp:hover { background: #1ebe59; transform: translateY(-1px); }
.btn--gold     { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-dk); border-color: var(--gold-dk); }
.btn--outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn--outline-light:hover { background: rgba(255,255,255,0.15); }
.btn--lg  { padding: 15px 30px; font-size: 1rem; }
.btn--sm  { padding: 8px 18px; font-size: 0.82rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── 6. SECTION LABELS ──────────────────────────────────────────────── */
.section-label {
  display: inline-block; font-family: var(--font-head); font-size: 0.75rem;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.section-label--light { color: rgba(255,255,255,0.8); }
.section-title { margin-bottom: 14px; }
.section-sub   { max-width: 620px; margin: 0 auto; color: var(--muted); }
.section-head  { text-align: center; margin-bottom: 52px; }

/* ── 7. FADE-IN ANIMATION ───────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── 8. HEADER / NAVBAR ─────────────────────────────────────────────── */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h); background: rgba(251,246,239,0.95);
  backdrop-filter: blur(12px); border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
#header.scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); }

.nav { display: flex; align-items: center; gap: 32px; height: 100%; }
.logo {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700;
  color: var(--dark); flex-shrink: 0;
}
.logo-icon { font-size: 1.4rem; }
.nav-links { display: flex; gap: 6px; margin-left: auto; }
.nav-link {
  padding: 6px 14px; border-radius: 20px; font-family: var(--font-head);
  font-size: 0.88rem; font-weight: 500; color: var(--muted); transition: all 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--teal); background: var(--teal-lt); }
.nav-cta { margin-left: 8px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav */
.mobile-nav {
  display: none; flex-direction: column; gap: 4px;
  position: absolute; top: var(--header-h); left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 16px 20px; box-shadow: var(--shadow);
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link { padding: 10px 14px; }
.mobile-nav .nav-cta { margin: 8px 0 0; border-radius: 50px; text-align: center; justify-content: center; }

/* ── 9. HERO SECTION ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; padding-top: var(--header-h);
  background: linear-gradient(160deg, #FDF8F0 0%, #F5EDE0 50%, #EDE0CC 100%);
  display: flex; align-items: center; position: relative; overflow: hidden;
}
.hero-shimmer {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--terra), var(--gold), var(--teal));
  background-size: 300% 100%; animation: shimmer 4s linear infinite;
}
@keyframes shimmer { 0%{background-position:0% 50%} 100%{background-position:200% 50%} }

.hero-inner { display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: center; padding: 60px 20px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap;
  padding: 6px 16px; background: var(--gold-lt); border-radius: 50px;
  font-family: var(--font-head); font-size: 0.75rem; font-weight: 600;
  color: var(--gold-dk); letter-spacing: 0.04em; margin-bottom: 20px;
}
.badge-dot { color: var(--gold); }
.hero-title { font-size: clamp(2.2rem, 5vw, 3.6rem); font-family: var(--font-head); font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
.hero-title--serif { font-family: var(--font-serif); color: var(--teal); font-style: italic; }
.hero-title--accent { color: var(--gold); }
.hero-subtitle { font-size: 1.05rem; color: var(--muted); margin-bottom: 28px; max-width: 520px; line-height: 1.75; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.hero-trust { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.02em; }

/* Hero Card */
.hero-card {
  background: var(--white); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg);
  overflow: hidden; border: 1px solid var(--border);
}
.card-art {
  height: 220px; position: relative; overflow: hidden;
  background: linear-gradient(160deg, #0a1e1c 0%, #1a4744 50%, #0a1e1c 100%);
}

/* CSS Tent Art */
.ca-sky { position:absolute; inset:0; background: linear-gradient(180deg,#050f14 0%,#0d2d35 30%,#1a4744 55%,#2d6b5a 70%,#8B6914 85%,#C9922A 100%); }
.ca-stars {
  position:absolute; inset:0;
  box-shadow:
    12px 18px 0 0 rgba(255,255,255,0.9), 34px 8px 0 0 rgba(255,255,255,0.7),
    56px 22px 0 0 rgba(255,255,255,0.8), 78px 10px 0 0 rgba(255,255,255,0.6),
    98px 28px 0 0 rgba(255,255,255,0.9), 120px 6px 0 0 rgba(255,255,255,0.7),
    148px 18px 0 0 rgba(255,255,255,0.8), 170px 12px 0 0 rgba(255,255,255,0.6),
    195px 24px 0 0 rgba(255,255,255,0.9), 222px 8px 0 0 rgba(255,255,255,0.7),
    245px 20px 0 0 rgba(255,255,255,0.8), 268px 14px 0 0 rgba(255,255,255,0.6),
    290px 26px 0 0 rgba(255,255,255,0.9), 315px 10px 0 0 rgba(255,255,255,0.7),
    340px 22px 0 0 rgba(255,255,255,0.8), 365px 16px 0 0 rgba(255,255,255,0.6),
    22px 42px 0 0 rgba(255,255,255,0.5), 65px 36px 0 0 rgba(255,255,255,0.6),
    108px 50px 0 0 rgba(255,255,255,0.5), 155px 38px 0 0 rgba(255,255,255,0.6),
    205px 46px 0 0 rgba(255,255,255,0.5), 252px 40px 0 0 rgba(255,255,255,0.6),
    302px 48px 0 0 rgba(255,255,255,0.5), 350px 36px 0 0 rgba(255,255,255,0.6);
  width: 1px; height: 1px; border-radius: 50%;
}
.ca-moon {
  position:absolute; top:12px; right:40px; width:18px; height:18px;
  background: #FEF9C3; border-radius:50%;
  box-shadow: 0 0 12px 4px rgba(254,249,195,0.5);
}
.ca-sun {
  position:absolute; bottom:-16px; left:50%; transform:translateX(-50%);
  width:70px; height:35px; background: linear-gradient(180deg,#C9922A,#8B6914);
  border-radius:35px 35px 0 0; box-shadow:0 0 30px 10px rgba(201,146,42,0.4);
}
.ca-dune {
  position:absolute; bottom:0; left:0; right:0;
  background: #8B6914;
}
.ca-dune--far  { height:30%; bottom:25%; border-radius:60% 60% 0 0 / 40% 40% 0 0; background:#4a3510; opacity:0.7; }
.ca-dune--mid  { height:35%; bottom:15%; border-radius:55% 55% 0 0 / 35% 35% 0 0; background:#6b4e1a; }
.ca-dune--near { height:22%; border-radius:70% 70% 0 0 / 50% 50% 0 0; background:#8B6914; }

/* Tent CSS art */
.ca-tent {
  position:absolute; bottom:22%; left:50%; transform:translateX(-50%);
  width:80px; z-index:4;
}
.ca-tent-body {
  width:0; height:0;
  border-left:40px solid transparent;
  border-right:40px solid transparent;
  border-bottom:55px solid #F5E4C0;
  position:relative;
}
.ca-tent-body::before {
  content:''; position:absolute; top:10px; left:-30px;
  width:0; height:0;
  border-left:30px solid transparent;
  border-right:30px solid transparent;
  border-bottom:42px solid #E8D5B0;
}
.ca-tent-door {
  width:22px; height:28px; background:#C9922A;
  border-radius:11px 11px 0 0;
  position:absolute; bottom:0; left:50%; transform:translateX(-50%);
}
.ca-tent-light {
  width:30px; height:30px; position:absolute; bottom:0; left:50%; transform:translateX(-50%);
  background:rgba(201,146,42,0.3); border-radius:50%;
  box-shadow:0 0 20px 10px rgba(201,146,42,0.25);
  animation:tent-glow 2.5s ease-in-out infinite alternate;
}
@keyframes tent-glow { 0%{opacity:0.5} 100%{opacity:1} }

.ca-lantern {
  position:absolute; font-size:1.1rem; z-index:5;
  animation: lantern-sway 3s ease-in-out infinite alternate;
}
.ca-lantern--left  { bottom:25%; left:25%; }
.ca-lantern--right { bottom:25%; right:22%; animation-delay:1s; }
@keyframes lantern-sway { 0%{transform:rotate(-8deg)} 100%{transform:rotate(8deg)} }

.ca-palm { position:absolute; bottom:20%; right:14%; font-size:1.6rem; z-index:5; }
.ca-pattern {
  position:absolute; inset:0; opacity:0.04; z-index:6;
  background-image:
    repeating-linear-gradient(45deg,transparent,transparent 8px,rgba(255,255,255,1) 8px,rgba(255,255,255,1) 9px),
    repeating-linear-gradient(-45deg,transparent,transparent 8px,rgba(255,255,255,1) 8px,rgba(255,255,255,1) 9px);
}

.card-head { padding: 18px 20px 0; }
.card-badge-tag {
  display: inline-block; background: var(--gold-lt); color: var(--gold-dk);
  font-family: var(--font-head); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 10px;
  border-radius: 20px; margin-bottom: 8px;
}
.card-title { font-size: 1.15rem; font-family: var(--font-serif); margin-bottom: 4px; }
.card-location { font-size: 0.8rem; color: var(--muted); }

.card-details { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 14px 20px; }
.card-detail { display: flex; flex-direction: column; gap: 2px; }
.cd-label { font-size: 0.7rem; color: var(--muted); font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.05em; }
.cd-value { font-size: 0.85rem; font-weight: 600; color: var(--dark); font-family: var(--font-head); }

.card-btn { margin: 0 20px 20px; display: block; text-align: center; }

/* ── 10. ABOUT SECTION ──────────────────────────────────────────────── */
.about { background: var(--white); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-text h2 { margin-bottom: 16px; }
.about-text p  { margin-bottom: 16px; }
.about-text .btn { margin-top: 8px; }

.about-cards { display: flex; flex-direction: column; gap: 16px; }
.about-card {
  background: var(--bg); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.about-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

/* About card art — photo support */
.about-card-art { height: 120px; position: relative; overflow: hidden; }
.about-card-art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.about-card-art--tent   { background: linear-gradient(135deg, var(--teal) 0%, #2d6b5a 50%, var(--gold) 100%); }
.about-card-art--pool   { background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 50%, #7dd3fc 100%); }
.about-card-art--dinner { background: linear-gradient(135deg, var(--night) 0%, var(--terra) 50%, var(--gold) 100%); }

.about-card-body { display: flex; align-items: flex-start; gap: 14px; padding: 14px 18px; }
.about-card-icon { font-size: 1.5rem; flex-shrink: 0; }
.about-card-body h3 { font-size: 0.95rem; margin-bottom: 4px; }
.about-card-body p  { font-size: 0.83rem; line-height: 1.5; }

/* ── 11. ACCOMMODATIONS ─────────────────────────────────────────────── */
.accommodations { background: var(--bg); }
.acc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.acc-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s; display: flex; flex-direction: column;
}
.acc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

/* Accommodation images — photo support */
.acc-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform 0.5s ease; }
.acc-card:hover .acc-img img { transform: scale(1.06); }

.acc-img {
  height: 200px; position: relative; overflow: hidden;
  clip-path: ellipse(52% 100% at 50% 100%);
  flex-shrink: 0;
}
.acc-img--1 { background: linear-gradient(135deg, var(--teal) 0%, #2d6b5a 60%, var(--gold) 100%); }
.acc-img--2 { background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 50%, #7dd3fc 100%); }
.acc-img--3 { background: linear-gradient(135deg, var(--gold-dk) 0%, var(--gold) 50%, var(--gold-lt) 100%); }
.acc-img--4 { background: linear-gradient(135deg, var(--night) 0%, #1a2e2c 50%, var(--teal) 100%); }
.acc-img--5 { background: linear-gradient(135deg, #5a2e1f 0%, var(--terra) 50%, var(--gold) 100%); }
.acc-img--6 { background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 40%, var(--rose) 100%); }

.acc-img::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(0deg, rgba(0,0,0,0.3) 0%, transparent 100%);
  z-index: 1;
}

.acc-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.acc-badge {
  display: inline-block; padding: 3px 10px; border-radius: 20px;
  font-size: 0.7rem; font-weight: 700; font-family: var(--font-head);
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px; width: fit-content;
}
.badge--popular  { background: #FEF3C7; color: #92400E; }
.badge--pool     { background: #E0F2FE; color: #0369A1; }
.badge--berber   { background: var(--gold-lt); color: var(--gold-dk); }
.badge--night    { background: #1a2e2c; color: #6EE7B7; }
.badge--private  { background: var(--teal-lt); color: var(--teal); }
.badge--romantic { background: #FCE7F3; color: #9D174D; }

.acc-title { font-size: 1rem; margin-bottom: 8px; }
.acc-desc  { font-size: 0.83rem; color: var(--muted); margin-bottom: 12px; flex: 1; }
.acc-features {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px;
}
.acc-features span {
  font-size: 0.75rem; padding: 3px 10px; background: var(--bg);
  border: 1px solid var(--border); border-radius: 20px; color: var(--muted);
  font-family: var(--font-head); font-weight: 500;
}

/* ── 12. AMENITIES ──────────────────────────────────────────────────── */
.amenities { background: var(--teal); }
.amenities .section-label { color: var(--gold); }
.amenities .section-title { color: var(--white); }
.amenities .section-sub   { color: rgba(255,255,255,0.7); }
.amenities-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 16px;
}
.am-item {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm); padding: 14px 16px;
  font-family: var(--font-head); font-size: 0.85rem; font-weight: 500; color: var(--white);
  transition: background 0.2s;
}
.am-item:hover { background: rgba(255,255,255,0.14); }
.am-icon { font-size: 1.3rem; flex-shrink: 0; }

/* ── 13. WHY AGAFAY ─────────────────────────────────────────────────── */
.why-agafay { background: var(--white); }
.features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.feature-card {
  text-align: center; padding: 32px 20px;
  background: var(--bg); border-radius: var(--radius-lg); border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-icon { font-size: 2.2rem; margin-bottom: 16px; }
.feature-card h3 { margin-bottom: 10px; font-size: 1rem; }
.feature-card p  { font-size: 0.85rem; }

/* ── 14. HOW IT WORKS ───────────────────────────────────────────────── */
.how-it-works { background: var(--bg); }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 36px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--terra), var(--teal));
  z-index: 0;
}
.step-card {
  text-align: center; padding: 28px 16px;
  background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border);
  position: relative; z-index: 1; transition: transform 0.25s, box-shadow 0.25s;
}
.step-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.step-num {
  font-family: var(--font-serif); font-size: 0.7rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.12em; margin-bottom: 8px; display: block;
}
.step-icon { font-size: 2rem; margin-bottom: 12px; }
.step-card h3 { font-size: 0.95rem; margin-bottom: 8px; }
.step-card p  { font-size: 0.82rem; }

/* ── 15. TRAVEL TIPS ────────────────────────────────────────────────── */
.travel-tips { background: var(--white); }
.tips-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.tip-card {
  background: var(--bg); border-radius: var(--radius); border-left: 3px solid var(--gold);
  padding: 18px 16px; display: flex; flex-direction: column; gap: 8px;
  transition: box-shadow 0.2s;
}
.tip-card:hover { box-shadow: var(--shadow-sm); }
.tip-num { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; color: var(--gold); }
.tip-card p { font-size: 0.83rem; }

/* ── 16. GALLERY ────────────────────────────────────────────────────── */
.gallery { background: var(--bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-template-rows: 220px 220px;
  gap: 12px;
}
.gl-card {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--teal) 0%, var(--gold) 100%);
}
.gl-card--1 { grid-column: span 2; }
.gl-card--5 { grid-column: span 2; }
.gl-card--1 { background: linear-gradient(135deg, var(--teal) 0%, #2d6b5a 100%); }
.gl-card--2 { background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 100%); }
.gl-card--3 { background: linear-gradient(135deg, #7c1d1d 0%, var(--rose) 100%); }
.gl-card--4 { background: linear-gradient(135deg, var(--gold-dk) 0%, var(--gold) 100%); }
.gl-card--5 { background: linear-gradient(135deg, var(--night) 0%, var(--teal) 100%); }
.gl-card--6 { background: linear-gradient(135deg, #5a2e1f 0%, var(--terra) 100%); }
.gl-card--7 { background: linear-gradient(135deg, var(--gold-dk) 0%, #f0d080 100%); }
.gl-card--8 { background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 100%); }

/* Gallery photo support */
.gl-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform 0.5s ease; }
.gl-card:hover img { transform: scale(1.04); }

.gl-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55) 100%);
  display: flex; align-items: flex-end; padding: 14px; opacity: 0;
  transition: opacity 0.3s; z-index: 2;
}
.gl-card:hover .gl-overlay { opacity: 1; }
.gl-label { font-family: var(--font-head); font-size: 0.85rem; font-weight: 600; color: #fff; letter-spacing: 0.04em; }

/* ── 17. TESTIMONIALS ───────────────────────────────────────────────── */
.testimonials { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.review-card {
  background: var(--bg); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 28px;
  position: relative; overflow: hidden; transition: transform 0.25s, box-shadow 0.25s;
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.review-card::before {
  content: '\201C'; font-family: var(--font-serif); font-size: 5rem; line-height: 1;
  position: absolute; top: -8px; left: 20px; color: var(--gold); opacity: 0.2;
}
.review-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 12px; }
.review-text { font-size: 0.88rem; color: var(--muted); line-height: 1.7; font-style: italic; margin-bottom: 18px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1rem; font-weight: 700; color: var(--white);
  flex-shrink: 0;
}
.review-name   { display: block; font-weight: 600; font-family: var(--font-head); font-size: 0.88rem; }
.review-origin { display: block; font-size: 0.78rem; color: var(--muted); }

/* ── 18. CTA BOOK ───────────────────────────────────────────────────── */
.cta-book {
  background: linear-gradient(135deg, var(--teal) 0%, #0d3532 50%, var(--night) 100%);
  position: relative; overflow: hidden;
}
.cta-book::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
@keyframes cta-glow { 0%,100%{opacity:0.5} 50%{opacity:1} }
.cta-book-inner { text-align: center; position: relative; z-index: 1; }
.cta-book h2   { color: var(--white); margin-bottom: 16px; font-size: clamp(1.6rem,3vw,2.4rem); }
.cta-book p    { color: rgba(255,255,255,0.75); max-width: 580px; margin: 0 auto 32px; }
.cta-actions   { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── 19. CONTACT ────────────────────────────────────────────────────── */
.contact { background: var(--bg); }
.contact-inner { display: grid; grid-template-columns: 360px 1fr; gap: 48px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.ci-card {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 14px 16px;
  transition: box-shadow 0.2s;
}
.ci-card:hover { box-shadow: var(--shadow-sm); }
.ci-icon { font-size: 1.3rem; flex-shrink: 0; }
.ci-label { display: block; font-size: 0.7rem; font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 2px; }
.ci-value { font-size: 0.88rem; font-weight: 500; color: var(--dark); }
a.ci-value:hover { color: var(--teal); }

.whatsapp-cta {
  display: flex; align-items: center; gap: 10px; justify-content: center;
  padding: 14px 24px; background: #25D366; color: var(--white);
  border-radius: 50px; font-family: var(--font-head); font-size: 0.95rem;
  font-weight: 600; transition: background 0.2s, transform 0.2s;
}
.whatsapp-cta:hover { background: #1ebe59; transform: translateY(-1px); }
.whatsapp-cta-icon { font-size: 1.1rem; }

/* Form */
.contact-form-wrap { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 32px; box-shadow: var(--shadow-sm); }
.form-title { font-size: 1.1rem; margin-bottom: 22px; font-family: var(--font-serif); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.8rem; font-family: var(--font-head); font-weight: 600; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.88rem; color: var(--dark);
  background: var(--bg); transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(26,71,68,0.1); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ── 20. FOOTER ─────────────────────────────────────────────────────── */
.footer { background: var(--night); padding: 60px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; }
.footer-logo { display: flex; align-items: center; gap: 8px; font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 16px; }
.footer-whatsapp {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(37,211,102,0.15); color: #4ADE80;
  border: 1px solid rgba(37,211,102,0.3); padding: 7px 16px;
  border-radius: 50px; font-size: 0.82rem; font-family: var(--font-head); font-weight: 500;
  transition: background 0.2s;
}
.footer-whatsapp:hover { background: rgba(37,211,102,0.25); }
.footer-links h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 16px; font-family: var(--font-head); }
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 16px; font-family: var(--font-head); }
.footer-contact p { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 12px; }
.footer-contact a { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 8px; transition: color 0.2s; }
.footer-contact a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-legal a:hover { color: var(--white); }

/* ── 21. BACK TO TOP ────────────────────────────────────────────────── */
#backToTop {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--teal); color: var(--white);
  font-size: 1.1rem; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transition: all 0.3s;
}
#backToTop.visible { opacity: 1; visibility: visible; }
#backToTop:hover { background: #0d3532; transform: translateY(-2px); }

/* ── 22. RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .acc-grid { grid-template-columns: repeat(2,1fr); }
  .amenities-grid { grid-template-columns: repeat(3,1fr); }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid::before { display: none; }
  .tips-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-py: 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .gl-card--1, .gl-card--5 { grid-column: span 1; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .amenities-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 480px) {
  .acc-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gl-card { min-height: 200px; }
}
