/* =========================================================================
   1. DESIGN TOKENS
   Deep forest green, warm cream, aged gold. Boutique-hotel feel.
   ========================================================================= */
:root {
  /* Brand colour palette */
  --forest:        #2d4a3a;   /* primary brand */
  --forest-dark:   #1e352a;
  --forest-deep:   #14241c;
  --sage:          #5c7b67;   /* supporting green */
  --sage-soft:     #8ba392;

  --cream:         #faf5eb;   /* main background */
  --cream-warm:    #f3e9d4;   /* soft warm panel */
  --cream-deep:    #ebdfc4;

  --gold:          #b8924a;   /* accent — CTAs, highlights */
  --gold-light:    #d4b573;
  --gold-deep:     #906f34;

  --ink:           #1f2a24;   /* headings */
  --text:          #3d443e;   /* body copy */
  --muted:         #6b6f65;

  --white:         #ffffff;
  --shadow-sm:     0 2px 8px rgba(31, 42, 36, 0.06);
  --shadow-md:     0 8px 24px rgba(31, 42, 36, 0.08);
  --shadow-lg:     0 20px 60px rgba(31, 42, 36, 0.12);

  /* Typography */
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Lato', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container:     1200px;
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --nav-h:         78px;
}

/* =========================================================================
   2. RESET & BASE
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 10px 18px;
  background: var(--forest);
  color: var(--cream);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 0 0 6px 6px;
  z-index: 9999;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw + 1rem, 4.4rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 3vw + 1rem, 3rem); font-weight: 500; }
h3 { font-size: clamp(1.4rem, 1vw + 1rem, 1.75rem); }
h4 { font-size: 1.25rem; }

p  { color: var(--text); }
a  { color: var(--forest); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold); }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 76px 0; position: relative; }
@media (max-width: 768px) { section { padding: 56px 0; } }

/* =========================================================================
   PAGE BANNER — compact header for inner pages (about, services, rooms,
   pricing, families-abroad, contact). Replaces the full hero on sub-pages.
   ========================================================================= */
.page-banner {
  background:
    linear-gradient(rgba(20, 36, 28, 0.86), rgba(20, 36, 28, 0.92)),
    var(--forest-deep);
  color: var(--cream);
  padding: calc(var(--nav-h) + 52px) 0 56px;   /* top clears the fixed nav */
  text-align: center;
}
.page-banner .container { max-width: 760px; }
.page-banner .eyebrow { color: var(--gold-light); }
.page-banner h1 {
  color: var(--cream);
  font-size: clamp(2.1rem, 4vw + 1rem, 3.4rem);
  margin: 0;
}
.page-banner h1 em { color: var(--gold-light); font-style: italic; }
.page-banner .divider { color: var(--gold-light); }
.page-banner .divider::before,
.page-banner .divider::after { background: var(--gold-light); }
.page-banner p {
  color: rgba(250, 245, 235, 0.82);
  font-size: 1.1rem;
  margin-top: 14px;
}
.page-banner .breadcrumb {
  margin-top: 22px;
  font-size: 0.82rem;
  color: rgba(250, 245, 235, 0.55);
}
.page-banner .breadcrumb a { color: rgba(250, 245, 235, 0.72); }
.page-banner .breadcrumb a:hover { color: var(--gold-light); }
@media (max-width: 768px) { .page-banner { padding: calc(var(--nav-h) + 32px) 0 44px; } }

/* =========================================================================
   RETIRE IN UGANDA — reassurance, cost comparison & immigration process
   (used on retire-in-uganda.html)
   ========================================================================= */
.reassure-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.reassure-card { background: #fff; border: 1px solid var(--cream-deep); border-radius: 14px; padding: 28px; }
.reassure-card .reassure-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: var(--cream-warm); color: var(--gold-deep); font-size: 1.3rem; margin-bottom: 16px; }
.reassure-card h4 { margin-bottom: 8px; }
.reassure-card p { color: var(--muted); font-size: 0.96rem; }

/* Head-to-head cost comparison */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 920px; margin: 0 auto; }
.compare-card { border-radius: 16px; padding: 32px; border: 1px solid var(--cream-deep); background: #fff; }
.compare-card.win { background: var(--forest); color: var(--cream); border-color: var(--forest); box-shadow: var(--shadow-lg); position: relative; }
.compare-flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 16px; border-radius: 50px; white-space: nowrap; }
.compare-head { text-align: center; margin-bottom: 18px; }
.compare-head .compare-where { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; }
.compare-card.win .compare-head .compare-where { color: var(--gold-light); }
.compare-amount { font-family: var(--font-display); font-size: 2.4rem; font-weight: 600; color: var(--ink); line-height: 1.1; margin: 6px 0 2px; }
.compare-card.win .compare-amount { color: var(--cream); }
.compare-amount small { font-size: 0.95rem; color: var(--muted); font-weight: 400; }
.compare-card.win .compare-amount small { color: rgba(250, 245, 235, 0.7); }
.compare-list { list-style: none; margin-top: 16px; }
.compare-list li { display: flex; justify-content: space-between; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--cream-deep); font-size: 0.92rem; }
.compare-card.win .compare-list li { border-color: rgba(255, 255, 255, 0.14); }
.compare-list li span:last-child { font-weight: 700; white-space: nowrap; text-align: right; }
.compare-list li.total { border-bottom: 0; padding-top: 14px; font-size: 1rem; }

.savings-banner { max-width: 920px; margin: 30px auto 0; background: var(--cream-warm); border: 1px dashed var(--gold); border-radius: 14px; padding: 26px 28px; text-align: center; }
.savings-figure { font-family: var(--font-display); font-size: 2.6rem; color: var(--gold-deep); font-weight: 700; line-height: 1; }
.savings-banner p { margin-top: 8px; color: var(--text); }
.compare-note { max-width: 760px; margin: 18px auto 0; font-size: 0.82rem; color: var(--muted); text-align: center; }

/* Immigration process steps */
.process-list { max-width: 760px; margin: 0 auto; }
.process-step { display: flex; gap: 22px; padding: 22px 0; border-bottom: 1px solid var(--cream-deep); }
.process-step:last-child { border-bottom: 0; }
.process-step .step-num { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%; background: var(--forest); color: var(--cream); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; }
.process-step h4 { margin-bottom: 6px; }
.process-step p { color: var(--muted); font-size: 0.96rem; }

/* Class H permit facts box */
.permit-box { max-width: 760px; margin: 36px auto 0; background: #fff; border: 1px solid var(--cream-deep); border-left: 4px solid var(--gold); border-radius: 0 14px 14px 0; padding: 26px 28px; }
.permit-box h4 { margin-bottom: 14px; }
.permit-facts { list-style: none; }
.permit-facts li { padding: 8px 0 8px 28px; position: relative; font-size: 0.95rem; }
.permit-facts li i { position: absolute; left: 0; top: 5px; color: var(--sage); }
.permit-disclaimer { margin-top: 16px; font-size: 0.82rem; color: var(--muted); font-style: italic; }

@media (max-width: 680px) { .compare-grid { grid-template-columns: 1fr; } }

/* Eyebrow text — small caps label above section headings */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 16px;
  display: inline-block;
}

.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head p { color: var(--muted); font-size: 1.08rem; margin-top: 14px; }

/* Decorative divider — thin gold line with a leaf mark */
.divider {
  display: flex; align-items: center; justify-content: center;
  gap: 14px;
  margin: 18px auto;
  color: var(--gold);
}
.divider::before, .divider::after {
  content: ""; width: 48px; height: 1px; background: var(--gold);
  opacity: .55;
}
.divider i { font-size: .8rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 30px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--forest-deep);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--cream);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-outline:hover {
  background: var(--forest);
  color: var(--cream);
}
.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn-outline-light:hover {
  background: var(--cream);
  color: var(--forest-deep);
}
.btn-block { width: 100%; }
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #128C7E;
  border-color: #128C7E;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* =========================================================================
   3. NAVIGATION
   Sticky. Frosted background appears on scroll.
   ========================================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
  background: transparent;
}
.nav.scrolled {
  background: rgba(250, 245, 235, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 rgba(31, 42, 36, 0.06), 0 4px 20px rgba(31, 42, 36, 0.04);
}
.nav-inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--forest-deep);
  letter-spacing: 0.02em;
}
.brand-mark {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
}
.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-top: -4px;
}
.brand-logo {
  height: 44px;
  width: auto;
  display: block;
}
.brand-logo--white { display: block; }
.brand-logo--dark  { display: none; }
.nav.scrolled .brand-logo--white { display: none; }
.nav.scrolled .brand-logo--dark  { display: block; }

.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-links a {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.04em;
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: ""; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }

/* Light nav when floating over the dark-photo hero */
.nav:not(.scrolled) .brand { color: var(--cream); }
.nav:not(.scrolled) .brand small { color: var(--gold-light); }
.nav:not(.scrolled) .nav-links a { color: rgba(250, 245, 235, 0.88); }
.nav:not(.scrolled) .nav-links a.active { color: var(--gold-light); }
.nav:not(.scrolled) .nav-links a::after { background: var(--gold-light); }
.nav:not(.scrolled) .nav-toggle { color: var(--cream); }
.nav:not(.scrolled) .nav-social a { color: rgba(250, 245, 235, 0.88); }
.nav:not(.scrolled) .nav-social a:hover { background: rgba(250,245,235,0.15); color: var(--cream); }
/* Revert to dark inside the open mobile dropdown (cream background) */
.nav.open:not(.scrolled) .nav-links a { color: var(--ink); }
.nav.open:not(.scrolled) .nav-links a.active { color: var(--gold); }
.nav.open:not(.scrolled) .nav-toggle { color: var(--forest-deep); }

.nav-cta { padding: 12px 24px; font-size: 0.8rem; }

.nav-toggle {
  display: none;
  background: transparent; border: none;
  color: var(--forest-deep);
  font-size: 1.4rem;
  cursor: pointer;
}

@media (max-width: 1040px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }

  .nav.open .nav-links {
    display: flex;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--cream);
    padding: 20px 24px 28px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--cream-deep);
  }
  .nav.open .nav-links li { width: 100%; border-bottom: 1px solid var(--cream-deep); }
  .nav.open .nav-links li:last-child { border-bottom: 0; }
  .nav.open .nav-links a { display: block; padding: 14px 0; }
  .nav.open .nav-cta {
    display: inline-flex; margin-top: 14px;
  }
}

/* =========================================================================
   4. HERO
   Layered warm gradient + subtle botanical SVG pattern.
   ========================================================================= */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 36px) 0 120px;
  overflow: hidden;
  background: var(--forest-deep);
}

/* Background slide stack — cross-fades behind the fixed hero copy */
.hero-bg-stack {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-bg {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
}
.hero-bg.is-active { opacity: 1; }

/* Slide 1 — care hero photo */
.hero-bg-1 {
  background:
    linear-gradient(to bottom, rgba(14, 24, 20, 0.5) 0%, rgba(14, 24, 20, 0.2) 52%, rgba(14, 24, 20, 0.48) 100%),
    url("../images/hero/care.jpg") center/cover no-repeat;
}

/* Slide 2 — Garden / lush green foliage */
.hero-bg-2 {
  background:
    linear-gradient(to bottom, rgba(20, 36, 28, 0.5) 0%, rgba(20, 36, 28, 0.2) 52%, rgba(20, 36, 28, 0.48) 100%),
    url("../images/hero/garden.jpg") center/cover no-repeat;
}

/* Slide 3 — Communal / shared spaces */
.hero-bg-3 {
  background:
    linear-gradient(to bottom, rgba(31, 22, 14, 0.5) 0%, rgba(31, 22, 14, 0.2) 52%, rgba(31, 22, 14, 0.48) 100%),
    url("../images/hero/communal.jpg") center/cover no-repeat;
}

/* Slide 4 — Bedroom */
.hero-bg-4 {
  background:
    linear-gradient(to bottom, rgba(14, 24, 20, 0.5) 0%, rgba(14, 24, 20, 0.18) 52%, rgba(14, 24, 20, 0.48) 100%),
    url("../images/hero/bedroom.jpg") center/cover no-repeat;
}

/* Slide 5 — Exterior */
.hero-bg-5 {
  background:
    linear-gradient(to bottom, rgba(14, 24, 20, 0.5) 0%, rgba(14, 24, 20, 0.2) 52%, rgba(14, 24, 20, 0.48) 100%),
    url("../images/hero/exterior.jpg") center/cover no-repeat;
}

/* Slide 6 — Interior living */
.hero-bg-6 {
  background:
    linear-gradient(to bottom, rgba(31, 22, 14, 0.48) 0%, rgba(31, 22, 14, 0.18) 52%, rgba(31, 22, 14, 0.48) 100%),
    url("../images/hero/interior.jpg") center/cover no-repeat;
}

/* Slide 7 — main hero photo */
.hero-bg-7 {
  background:
    linear-gradient(to bottom, rgba(14, 24, 20, 0.5) 0%, rgba(14, 24, 20, 0.2) 52%, rgba(14, 24, 20, 0.48) 100%),
    url("../images/hero/main.jpg") center/cover no-repeat;
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 920px; margin: 0 auto; text-align: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px;
  background: rgba(45, 74, 58, 0.08);
  border: 1px solid rgba(45, 74, 58, 0.14);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest-dark);
  font-weight: 700;
  margin-bottom: 16px;
}
.hero-eyebrow i { color: var(--gold); }

.hero h1 {
  color: var(--forest-deep);
  font-weight: 500;
  font-size: clamp(2.4rem, 4.2vw + 1rem, 4.4rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 400;
}
.hero-sub {
  max-width: 640px;
  margin: 0 auto 40px;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text);
}

.hero-ctas {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-trust {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 16px 40px;
  padding-top: 36px;
  border-top: 1px solid rgba(45, 74, 58, 0.12);
  max-width: 900px; margin: 0 auto;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.83rem;
  color: var(--forest-dark);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.hero-trust-item i {
  color: var(--gold);
  font-size: 0.9rem;
}

/* Theme-aware text colors so the copy stays readable as the bg cross-fades. */
.hero-eyebrow,
.hero-eyebrow i,
.hero h1,
.hero h1 em,
.hero-sub,
.hero-trust,
.hero-trust-item,
.hero-trust-item i,
.hero .btn-outline {
  transition: color 0.6s ease, background 0.6s ease, border-color 0.6s ease;
}
.hero.is-dark-slide .hero-eyebrow {
  background: rgba(250, 245, 235, 0.1);
  border-color: rgba(250, 245, 235, 0.22);
  color: var(--cream);
}
.hero.is-dark-slide .hero-eyebrow i { color: var(--gold-light); }
.hero.is-dark-slide h1 { color: var(--cream); text-shadow: 0 2px 18px rgba(0,0,0,0.4); }
.hero.is-dark-slide h1 em { color: var(--gold-light); }
.hero.is-dark-slide .hero-sub { text-shadow: 0 1px 10px rgba(0,0,0,0.35); }
.hero.is-dark-slide .hero-sub { color: rgba(250, 245, 235, 0.86); }
.hero.is-dark-slide .hero-trust { border-top-color: rgba(250, 245, 235, 0.18); }
.hero.is-dark-slide .hero-trust-item { color: var(--cream); }
.hero.is-dark-slide .hero-trust-item i { color: var(--gold-light); }
.hero.is-dark-slide .btn-outline {
  color: var(--cream);
  border-color: var(--cream);
}
.hero.is-dark-slide .btn-outline:hover {
  background: var(--cream);
  color: var(--forest-deep);
}

/* ── Retire-in-Uganda promo slide ── */
.hero-bg-retire {
  background:
    linear-gradient(to bottom, rgba(14, 24, 20, 0.58) 0%, rgba(14, 24, 20, 0.3) 52%, rgba(14, 24, 20, 0.58) 100%),
    url("../images/hero/exterior.jpg") center/cover no-repeat;
}
/* The hero holds two stacked copy blocks; we cross-fade between the
   default message and the Retire-in-Uganda message when its slide is active. */
.hero .container { position: relative; }
.hero-inner { transition: opacity 0.8s ease; }
.hero-inner--alt {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 100%;
  opacity: 0; pointer-events: none;
}
.hero.show-retire .hero-inner:not(.hero-inner--alt) { opacity: 0; pointer-events: none; }
.hero.show-retire .hero-inner--alt { opacity: 1; pointer-events: auto; }
.hero-alt-title {
  color: var(--forest-deep);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 4.2vw + 1rem, 4.4rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}
.hero-alt-title em { font-style: italic; color: var(--gold-deep); font-weight: 400; }
.hero.is-dark-slide .hero-alt-title { color: var(--cream); text-shadow: 0 2px 18px rgba(0,0,0,0.4); }
.hero.is-dark-slide .hero-alt-title em { color: var(--gold-light); }

/* Slide nav arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(250, 245, 235, 0.3);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.22);
  color: rgba(250, 245, 235, 0.9);
  font-size: 1rem;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.45);
  border-color: rgba(250, 245, 235, 0.6);
  transform: translateY(-50%) scale(1.08);
}
.hero-arrow-prev { left: 28px; }
.hero-arrow-next { right: 28px; }

@media (max-width: 560px) {
  .hero-arrow { width: 38px; height: 38px; font-size: 0.85rem; }
  .hero-arrow-prev { left: 14px; }
  .hero-arrow-next { right: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg { transition: none; }
  .hero-eyebrow, .hero-eyebrow i, .hero h1, .hero h1 em, .hero-sub,
  .hero-trust, .hero-trust-item, .hero-trust-item i, .hero .btn-outline {
    transition: none;
  }
}

/* =========================================================================
   5. ABOUT
   ========================================================================= */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
}
.about-text h2 { margin-bottom: 20px; }
.about-text h2 em { font-style: italic; color: var(--gold-deep); }
.about-text p { margin-bottom: 18px; font-size: 1.05rem; line-height: 1.8; }
.about-signature {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--cream-deep);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--forest);
}
.about-signature small {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--cream-deep);
  border: 1px solid var(--cream-deep);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.stat {
  background: var(--cream);
  padding: 36px 28px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 500;
  color: var(--forest);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.stat-num em { font-style: italic; color: var(--gold); }
.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

/* =========================================================================
   6. SERVICES
   ========================================================================= */
.services {
  background:
    linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--cream);
  padding: 36px 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(45, 74, 58, 0.08);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(184, 146, 74, 0.12);
  color: var(--gold-deep);
  font-size: 1.25rem;
  margin-bottom: 20px;
}
.service-card h4 {
  color: var(--forest-dark);
  margin-bottom: 10px;
  font-weight: 600;
}
.service-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text);
}

/* =========================================================================
   7. ROOMS
   ========================================================================= */
.rooms { background: var(--cream-warm); }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .rooms-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

.room-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.room-card.featured {
  border: 2px solid var(--gold);
  transform: translateY(-10px);
}
.room-card.featured:hover { transform: translateY(-14px); }

.room-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--gold);
  color: var(--forest-deep);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 2px;
  z-index: 2;
}

/* Decorative room illustration — layered CSS, no external images */
.room-visual {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
}
/* When room-visual is an <img> */
img.room-visual {
  object-fit: cover;
  object-position: center;
}
.room-visual.shared {
  background:
    linear-gradient(135deg, var(--sage-soft) 0%, var(--sage) 50%, var(--forest) 100%);
}
.room-visual.private {
  background:
    linear-gradient(135deg, var(--cream-deep) 0%, var(--gold-light) 50%, var(--gold) 100%);
}
.room-visual.premium {
  background:
    linear-gradient(135deg, var(--forest) 0%, var(--forest-dark) 60%, var(--forest-deep) 100%);
}
.room-visual::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='white' stroke-width='0.5' opacity='0.22'><circle cx='40' cy='40' r='30'/><circle cx='40' cy='40' r='18'/></g></svg>");
  mix-blend-mode: overlay;
}
/* ::after pseudo-element doesn't apply to <img> — skip it */
img.room-visual::after { display: none; }
.room-visual i {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,0.75);
}

.room-body { padding: 30px 28px 32px; display: flex; flex-direction: column; flex: 1; }
.room-body h3 { color: var(--forest-dark); margin-bottom: 6px; }
.room-subtitle {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
}
.room-body p { font-size: 0.95rem; margin-bottom: 22px; flex: 1; }

.room-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 4px;
}
.room-price small {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 400;
}
.room-price-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.room-body .btn { margin-top: auto; }

/* Clickable room photo wrapper */
.room-photo-wrap {
  position: relative;
  display: block;
  cursor: pointer;
  overflow: hidden;
}
.room-photo-wrap:focus-visible { outline: 3px solid var(--gold); outline-offset: -3px; }
.room-photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 36, 28, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transition: background .3s ease, opacity .3s ease;
  pointer-events: none;
}
.room-photo-wrap:hover .room-photo-overlay,
.room-photo-wrap:focus-visible .room-photo-overlay {
  background: rgba(20, 36, 28, 0.52);
  opacity: 1;
}

/* =========================================================================
   GALLERY
   Showcase of the different facilities. Tiles currently use CSS-gradient
   placeholders + an icon. To drop in real photos, replace the
   <div class="gallery-visual grad-N"> block with an <img> element
   (see the inline HTML comment in the Gallery section for details).
   ========================================================================= */
.gallery { background: var(--cream); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .4s ease, box-shadow .4s ease;
  cursor: pointer;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Placeholder visual layer — swap for <img class="gallery-visual"> later */
.gallery-visual {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .7s ease;
}
.gallery-item:hover .gallery-visual { transform: scale(1.06); }

.gallery-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80'><g fill='none' stroke='white' stroke-width='0.5' opacity='0.18'><path d='M0 40 Q40 20 80 40 Q40 60 0 40'/><circle cx='40' cy='40' r='28'/></g></svg>");
  mix-blend-mode: overlay;
  pointer-events: none;
}

.gallery-visual i {
  position: relative;
  z-index: 1;
  font-size: 3.2rem;
  color: rgba(255, 255, 255, 0.55);
}

/* If an <img> replaces the div, this makes it cover the tile properly */
img.gallery-visual {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Six unique gradient variants using the brand palette */
.gallery-visual.grad-1 { background: linear-gradient(135deg, #8ba392 0%, #5c7b67 50%, #2d4a3a 100%); }
.gallery-visual.grad-2 { background: linear-gradient(135deg, #d4b573 0%, #b8924a 50%, #906f34 100%); }
.gallery-visual.grad-3 { background: linear-gradient(135deg, #2d4a3a 0%, #1e352a 60%, #14241c 100%); }
.gallery-visual.grad-4 { background: linear-gradient(135deg, #ebdfc4 0%, #d4b573 50%, #8ba392 100%); }
.gallery-visual.grad-5 { background: linear-gradient(135deg, #5c7b67 0%, #2d4a3a 70%, #1e352a 100%); }
.gallery-visual.grad-6 { background: linear-gradient(135deg, #b8924a 0%, #906f34 50%, #2d4a3a 100%); }

/* Text overlay at the bottom of each tile */
.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 44px 24px 22px;
  background: linear-gradient(to top, rgba(20, 36, 28, 0.92) 0%, rgba(20, 36, 28, 0.4) 60%, rgba(20, 36, 28, 0) 100%);
  color: var(--cream);
  z-index: 2;
}

.gallery-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.gallery-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.2;
}

.gallery-caption {
  color: rgba(250, 245, 235, 0.85);
  font-size: 0.88rem;
  line-height: 1.55;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .45s ease, opacity .3s ease, margin-top .4s ease;
}
.gallery-item:hover .gallery-caption {
  max-height: 100px;
  opacity: 1;
  margin-top: 10px;
}
/* On touch devices where hover doesn't apply, show captions by default */
@media (hover: none) {
  .gallery-caption {
    max-height: 100px;
    opacity: 1;
    margin-top: 10px;
  }
}

/* Tour CTA beneath the grid */
.gallery-cta {
  margin-top: 56px;
  text-align: center;
}
.gallery-cta p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.gallery-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Virtual tour video modal */
.vtour-modal-card {
  position: relative;
  z-index: 2;
  background: #000;
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 860px;
  box-shadow: 0 30px 90px rgba(15, 25, 20, 0.6);
  transform: translateY(20px);
  transition: transform .3s ease;
  overflow: hidden;
}
.modal.open .vtour-modal-card { transform: translateY(0); }
.vtour-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--forest-deep);
  color: var(--cream);
}
.vtour-header span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: .02em;
}
.vtour-ratio {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}
.vtour-ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
@media (max-width: 560px) {
  .vtour-header span { font-size: 0.95rem; }
}

/* Fallback background while images load */
.gallery-item { background: var(--forest-dark); }

/* Photo-count badge — appears on tiles with multiple images */
.gallery-count {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  background: rgba(20, 36, 28, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 181, 115, 0.35);
  border-radius: 999px;
  color: var(--cream);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  pointer-events: none;
}
.gallery-count i {
  font-size: 0.72rem;
  color: var(--gold-light);
}

/* =========================================================================
   LIGHTBOX
   Fullscreen image viewer with prev/next, keyboard, and touch swipe.
   ========================================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(15, 25, 20, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 90px;
  opacity: 0;
  transition: opacity .3s ease;
}
.lightbox.open { opacity: 1; }
.lightbox[hidden] { display: none; }

.lightbox-stage {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.lightbox-image {
  max-width: 100%;
  max-height: calc(100vh - 220px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
  background: var(--forest-dark);
  transition: opacity .25s ease;
}
.lightbox-image.loading { opacity: 0.35; }

.lightbox-info {
  text-align: center;
  color: var(--cream);
  max-width: 640px;
  padding: 0 20px;
}
.lightbox-counter {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.lightbox-category {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 6px;
  line-height: 1.2;
}
.lightbox-caption {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(250, 245, 235, 0.85);
}

/* Lightbox controls (close, prev, next) */
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(250, 245, 235, 0.08);
  border: 1px solid rgba(250, 245, 235, 0.18);
  color: var(--cream);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
  z-index: 10;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(184, 146, 74, 0.28);
  border-color: var(--gold);
}
.lightbox-close:focus-visible,
.lightbox-prev:focus-visible,
.lightbox-next:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.lightbox-close { top: 26px; right: 26px; }
.lightbox-close:hover { transform: rotate(90deg); }

.lightbox-prev { left: 28px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 28px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) translateX(-3px); }
.lightbox-next:hover { transform: translateY(-50%) translateX(3px); }

@media (max-width: 768px) {
  .lightbox { padding: 16px; }
  .lightbox-close, .lightbox-prev, .lightbox-next {
    width: 44px; height: 44px; font-size: 0.95rem;
  }
  .lightbox-close { top: 14px; right: 14px; }
  .lightbox-prev  { left: 10px; }
  .lightbox-next  { right: 10px; }
  .lightbox-image { max-height: calc(100vh - 180px); }
  .lightbox-category { font-size: 1.2rem; }
  .lightbox-caption { font-size: 0.88rem; }
  .lightbox-info { padding: 0 70px; }
}

/* =========================================================================
   8. WHY CHOOSE US
   ========================================================================= */
.why {
  background: var(--forest-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><g fill='none' stroke='%23b8924a' stroke-width='0.4' opacity='0.08'><circle cx='100' cy='100' r='80'/><circle cx='100' cy='100' r='50'/><circle cx='100' cy='100' r='20'/></g></svg>");
  pointer-events: none;
}
.why .section-head h2,
.why .section-head p { color: var(--cream); }
.why .section-head p { color: rgba(250, 245, 235, 0.75); }
.why .eyebrow { color: var(--gold-light); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative; z-index: 2;
}
@media (max-width: 1024px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  padding: 30px 24px;
  text-align: center;
  border: 1px solid rgba(250, 245, 235, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(250, 245, 235, 0.03);
  transition: background .3s ease, transform .3s ease;
}
.why-card:hover {
  background: rgba(184, 146, 74, 0.1);
  transform: translateY(-4px);
}
.why-icon {
  width: 60px; height: 60px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(184, 146, 74, 0.15);
  color: var(--gold-light);
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.why-card h4 {
  color: var(--cream);
  font-weight: 500;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.why-card p {
  color: rgba(250, 245, 235, 0.75);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* =========================================================================
   9. PRICING
   ========================================================================= */
.pricing { background: var(--cream); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 40px; } }

.price-card {
  background: var(--cream-warm);
  border-radius: var(--radius-md);
  padding: 40px 34px;
  border: 1px solid rgba(45, 74, 58, 0.08);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.price-card.featured {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}
.price-card.featured * { color: var(--cream); }
.price-card.featured .price-label { color: var(--gold-light); }
.price-card.featured li i { color: var(--gold-light); }
.price-card.featured .price-tier { border-bottom-color: rgba(250, 245, 235, 0.18); }

.price-tier {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(45, 74, 58, 0.1);
  margin-bottom: 24px;
}
.price-label {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}
.price-tier h3 {
  font-weight: 500;
  margin-bottom: 14px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--forest);
  line-height: 1;
}
.price-amount small {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--muted);
  margin-left: 4px;
}
.price-card.featured .price-amount { color: var(--cream); }
.price-card.featured .price-amount small { color: rgba(250, 245, 235, 0.65); }

.price-features { list-style: none; margin-bottom: 30px; }
.price-features li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 8px 0;
  font-size: 0.92rem;
  line-height: 1.55;
}
.price-features i {
  color: var(--gold-deep);
  margin-top: 4px;
  flex-shrink: 0;
}

.pricing-note {
  max-width: 800px; margin: 0 auto;
  text-align: center;
  padding: 30px 36px;
  background: var(--cream-warm);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
}
.pricing-note p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 18px;
  color: var(--text);
}
.pricing-note .btn { margin-top: 4px; }

/* =========================================================================
   10. TEAM
   ========================================================================= */
.team { background: var(--cream-warm); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; } }

.team-card {
  text-align: center;
  padding: 30px 20px;
}
.team-photo {
  width: 140px; height: 140px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--cream);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.team-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.25), transparent 60%);
}
.team-photo.bg-1 { background: linear-gradient(135deg, var(--forest), var(--forest-dark)); }
.team-photo.bg-2 { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); }
.team-photo.bg-3 { background: linear-gradient(135deg, var(--sage), var(--forest)); }
.team-photo.bg-4 { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--forest-deep); }
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  position: relative; z-index: 1;
}

.team-card h4 {
  color: var(--forest-dark);
  margin-bottom: 4px;
  font-weight: 500;
  font-size: 1.35rem;
}
.team-role {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}
.team-bio {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text);
}

/* =========================================================================
   11. TESTIMONIALS
   ========================================================================= */
.testimonials { background: var(--cream); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } }

.testimonial {
  background: var(--cream-warm);
  padding: 36px 32px;
  border-radius: var(--radius-md);
  position: relative;
  border: 1px solid rgba(45, 74, 58, 0.06);
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 10px; left: 22px;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.35;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 18px;
  letter-spacing: 2px;
  position: relative;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 26px;
  position: relative;
}
.testimonial-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(45, 74, 58, 0.1);
}
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--forest));
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 600;
}
.testimonial-author strong {
  display: block;
  color: var(--forest-dark);
  font-weight: 700;
  font-size: 0.95rem;
}
.testimonial-author span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* =========================================================================
   12. FAQ
   ========================================================================= */
.faq { background: var(--cream-warm); }
.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid rgba(45, 74, 58, 0.14);
}
.faq-item:first-child { border-top: 1px solid rgba(45, 74, 58, 0.14); }
.faq-q {
  width: 100%;
  background: transparent;
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--forest-dark);
  cursor: pointer;
  transition: color .25s ease;
}
.faq-q:hover { color: var(--gold-deep); }
.faq-q i {
  color: var(--gold);
  font-size: 1rem;
  transition: transform .3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 0 26px; }
.faq-a p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
}

/* =========================================================================
   13. CONTACT
   ========================================================================= */
.contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.contact-info h2 em { font-style: italic; color: var(--gold-deep); }
.contact-info > p {
  font-size: 1.05rem;
  margin: 14px 0 32px;
  color: var(--text);
}

.contact-items { list-style: none; margin-bottom: 28px; }
.contact-items li {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(45, 74, 58, 0.08);
}
.contact-items li:last-child { border-bottom: 0; }
.contact-items i {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(184, 146, 74, 0.12);
  color: var(--gold-deep);
  flex-shrink: 0;
}
.contact-items strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
  font-weight: 700;
}
.contact-items a, .contact-items span {
  color: var(--forest-dark);
  font-size: 1rem;
  font-weight: 400;
}

/* Map placeholder */
.map-placeholder {
  margin-top: 8px;
  aspect-ratio: 16/9;
  background:
    linear-gradient(135deg, var(--sage-soft), var(--sage) 60%, var(--forest));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  text-align: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40'><g fill='none' stroke='white' stroke-width='0.5' opacity='0.15'><path d='M0 0 L40 40 M40 0 L0 40'/><path d='M20 0 V40 M0 20 H40'/></g></svg>");
}
.map-placeholder-inner { position: relative; z-index: 2; }
.map-placeholder i { font-size: 2rem; margin-bottom: 10px; color: var(--gold-light); }
.map-placeholder p { color: rgba(250, 245, 235, 0.9); font-size: 0.88rem; line-height: 1.5; }

/* Contact form */
.contact-form {
  background: var(--cream-warm);
  padding: 40px 36px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(45, 74, 58, 0.06);
}
.contact-form h3 {
  color: var(--forest-dark);
  font-weight: 500;
  margin-bottom: 8px;
}
.contact-form > p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 26px;
}

.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--forest-dark);
  margin-bottom: 8px;
}
.form-group label .req { color: var(--gold-deep); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(45, 74, 58, 0.16);
  border-radius: var(--radius-sm);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 146, 74, 0.15);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.phone-group {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #b84a4a;
  box-shadow: 0 0 0 3px rgba(184, 74, 74, 0.1);
}
.field-error {
  display: block;
  font-size: 0.78rem;
  color: #9a3b3b;
  margin-top: 6px;
  min-height: 1em;
}

.form-success {
  background: rgba(45, 74, 58, 0.06);
  border-left: 3px solid var(--forest);
  padding: 16px 20px;
  margin-bottom: 18px;
  border-radius: var(--radius-sm);
  color: var(--forest-dark);
  font-size: 0.95rem;
  display: none;
}
.form-success.show { display: block; }

.whatsapp-cta {
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  margin-top: 18px;
  padding: 14px 20px;
  background: #25D366;
  color: white;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  transition: background .2s ease, transform .2s ease;
}
.whatsapp-cta:hover {
  background: #1eaf53;
  color: white;
  transform: translateY(-1px);
}

/* =========================================================================
   14. FOOTER
   ========================================================================= */
.footer {
  background: var(--forest-deep);
  color: rgba(250, 245, 235, 0.75);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 50px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .brand { display: inline-block; }
.footer-mission {
  margin-top: 18px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--cream);
  max-width: 320px;
}

.footer h5 {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  color: rgba(250, 245, 235, 0.75);
  font-size: 0.92rem;
  transition: color .2s ease;
}
.footer ul a:hover { color: var(--gold-light); }
.footer-contact p {
  color: rgba(250, 245, 235, 0.75);
  font-size: 0.92rem;
  margin-bottom: 10px;
}
.footer-contact a {
  color: rgba(250, 245, 235, 0.75);
}
.footer-contact a:hover {
  color: var(--gold-light);
}
.footer-contact i {
  width: 18px;
  color: var(--gold-light);
  margin-right: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(250, 245, 235, 0.1);
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 0.82rem;
  color: rgba(250, 245, 235, 0.55);
}
.footer-bottom-trust {
  display: flex; gap: 24px; flex-wrap: wrap;
}
.footer-bottom-trust span {
  display: flex; align-items: center; gap: 6px;
}
.footer-bottom-trust i { color: var(--gold-light); }

/* =========================================================================
   SOCIAL ICONS
   Used in three places: the nav (header), the footer brand column, and
   the "Follow Us" block in the Contact section. Update placeholder URLs
   like [YOUR_HANDLE] / [YOUR_PAGE] in the HTML for each location.
   ========================================================================= */

/* --- Nav social row (header) ------------------------------------------- */
.nav-social {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-right: 14px;
}
.nav-social a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--forest-dark);
  font-size: 0.92rem;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.nav-social a:hover {
  background: var(--gold);
  color: var(--cream);
  transform: translateY(-1px);
}

/* --- Footer social row ------------------------------------------------- */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(250, 245, 235, 0.06);
  border: 1px solid rgba(250, 245, 235, 0.18);
  color: var(--cream);
  font-size: 0.95rem;
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--forest-deep);
  transform: translateY(-2px);
}

/* --- Contact section "Follow Us" block --------------------------------- */
.contact-social {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(45, 74, 58, 0.08);
  margin-bottom: 36px;
}
.contact-social-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 14px;
}
.contact-social-icons {
  display: flex;
  gap: 12px;
}
.contact-social-icons a {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(184, 146, 74, 0.12);
  color: var(--gold-deep);
  font-size: 1.05rem;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.contact-social-icons a:hover {
  background: var(--forest);
  color: var(--cream);
  transform: translateY(-2px);
}

/* Hide nav social on mobile — users can use the contact/footer icons */
@media (max-width: 1040px) {
  .nav-social { display: none; }
}

/* =========================================================================
   TOUR BOOKING MODAL
   Opens from any "Book a Tour" button. Card-style modal with two tour
   types (in-person / video), date + time selection, and visitor details.
   ========================================================================= */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  opacity: 0;
  transition: opacity .3s ease;
}
.modal.open { opacity: 1; }
.modal[hidden] { display: none; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 25, 20, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
  border: none;
}

.modal-card {
  position: relative;
  z-index: 2;
  background: var(--cream);
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 720px;
  max-height: calc(100vh - 60px);
  overflow-y: auto;
  box-shadow: 0 30px 90px rgba(15, 25, 20, 0.45);
  transform: translateY(20px);
  transition: transform .3s ease;
}
.modal.open .modal-card { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid rgba(45, 74, 58, 0.15);
  color: var(--forest-dark);
  font-size: 1rem;
  cursor: pointer;
  z-index: 3;
  transition: background .2s ease, color .2s ease, transform .25s ease;
}
.modal-close:hover {
  background: var(--gold);
  color: var(--cream);
  transform: rotate(90deg);
  border-color: var(--gold);
}

.modal-header {
  padding: 50px 50px 32px;
  text-align: center;
  background:
    linear-gradient(180deg, var(--cream-warm) 0%, var(--cream) 100%);
  border-bottom: 1px solid rgba(45, 74, 58, 0.08);
}
.modal-header .eyebrow { margin-bottom: 8px; }
.modal-header h2 {
  font-size: clamp(1.6rem, 2.2vw + 1rem, 2.2rem);
  margin: 6px 0 12px;
}
.modal-header h2 em {
  font-style: italic;
  color: var(--gold-deep);
}
.modal-header p {
  color: var(--text);
  max-width: 480px;
  margin: 0 auto;
  font-size: 0.98rem;
  line-height: 1.6;
}

.modal-form { padding: 32px 50px 36px; }

.modal-success {
  background: rgba(45, 74, 58, 0.08);
  border-left: 3px solid var(--forest);
  padding: 16px 20px;
  margin-bottom: 24px;
  border-radius: var(--radius-sm);
  color: var(--forest-dark);
  font-size: 0.95rem;
  display: none;
}
.modal-success.show { display: block; }
.modal-success i { color: var(--forest); margin-right: 8px; }

/* Tour type radio cards (In-Person / Video) */
.form-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 24px;
}
.form-fieldset legend {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--forest-dark);
  margin-bottom: 12px;
}
.tour-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.tour-type-option { position: relative; cursor: pointer; }
.tour-type-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.tour-type-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 22px 16px;
  border: 1.5px solid rgba(45, 74, 58, 0.15);
  background: var(--cream);
  border-radius: var(--radius-sm);
  transition: all .2s ease;
}
.tour-type-card i {
  font-size: 1.5rem;
  color: var(--gold-deep);
  margin-bottom: 10px;
}
.tour-type-card strong {
  display: block;
  color: var(--forest-dark);
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.tour-type-card span {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}
.tour-type-option:hover .tour-type-card {
  border-color: var(--gold-light);
}
.tour-type-option input:checked + .tour-type-card {
  border-color: var(--gold);
  background: rgba(184, 146, 74, 0.08);
  box-shadow: 0 0 0 3px rgba(184, 146, 74, 0.15);
}
.tour-type-option input:focus-visible + .tour-type-card {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.form-help {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
}

.modal-foot-note {
  text-align: center;
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Mobile — full-screen modal on small viewports */
@media (max-width: 600px) {
  .modal { padding: 0; align-items: flex-start; }
  .modal-card {
    max-height: 100vh;
    border-radius: 0;
    min-height: 100vh;
  }
  .modal-header { padding: 56px 24px 24px; }
  .modal-header h2 { font-size: 1.45rem; }
  .modal-form { padding: 24px; }
  .tour-type-grid { grid-template-columns: 1fr; }
  .modal-close { top: 14px; right: 14px; }
}

/* =========================================================================
   DIASPORA SECTION
   Dedicated to families abroad. Forest-deep background like Why Choose Us
   so the two "differentiator" sections feel like a paired set.
   ========================================================================= */
.diaspora {
  background: var(--forest-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.diaspora::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><g fill='none' stroke='%23b8924a' stroke-width='0.4' opacity='0.07'><path d='M120 30 Q150 80 180 60 T240 90'/><path d='M0 150 Q60 120 120 180 T240 150'/><circle cx='120' cy='120' r='60'/></g></svg>");
  pointer-events: none;
}
.diaspora .section-head h2,
.diaspora .section-head p { color: var(--cream); }
.diaspora .section-head p { color: rgba(250, 245, 235, 0.78); }
.diaspora .eyebrow { color: var(--gold-light); }

/* Cities strip — small marquee of supported regions above the headline */
.diaspora-cities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
  margin: 0 auto 56px;
  padding: 16px 24px;
  max-width: 900px;
  position: relative;
  z-index: 2;
}
.diaspora-cities span {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 245, 235, 0.65);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.diaspora-cities span i { color: var(--gold-light); font-size: 0.72rem; }

.diaspora-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative; z-index: 2;
}
@media (max-width: 1024px) { .diaspora-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .diaspora-grid { grid-template-columns: 1fr; } }

.diaspora-card {
  padding: 32px 28px;
  background: rgba(250, 245, 235, 0.04);
  border: 1px solid rgba(250, 245, 235, 0.1);
  border-radius: var(--radius-md);
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
  position: relative;
  overflow: hidden;
}
.diaspora-card:hover {
  background: rgba(184, 146, 74, 0.08);
  border-color: rgba(184, 146, 74, 0.4);
  transform: translateY(-3px);
}
.diaspora-card-icon {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(184, 146, 74, 0.15);
  color: var(--gold-light);
  font-size: 1.3rem;
  margin-bottom: 22px;
}
.diaspora-card h4 {
  color: var(--cream);
  font-weight: 500;
  font-size: 1.4rem;
  margin-bottom: 12px;
  line-height: 1.25;
}
.diaspora-card p {
  color: rgba(250, 245, 235, 0.78);
  font-size: 0.94rem;
  line-height: 1.65;
}
.diaspora-card-note {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(184, 146, 74, 0.25);
  font-size: 0.82rem !important;
  font-style: italic;
  color: rgba(212, 181, 115, 0.85) !important;
}

/* Closing CTA strip below the diaspora grid */
.diaspora-cta {
  text-align: center;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(250, 245, 235, 0.1);
  position: relative; z-index: 2;
}
.diaspora-cta p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: rgba(250, 245, 235, 0.85);
  margin-bottom: 22px;
  max-width: 560px;
  margin-left: auto; margin-right: auto;
}

/* =========================================================================
   FX TOGGLE & PRICING UPDATES
   Currency switcher above the pricing grid; converts displayed amounts
   on the fly. Each price card shows UGX + an "approx" line below it.
   ========================================================================= */
.fx-toggle-wrap {
  display: flex;
  justify-content: center;
  margin: -10px 0 40px;
}
.fx-toggle {
  display: inline-flex;
  background: var(--cream-deep);
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
}
.fx-toggle button {
  background: transparent;
  border: none;
  padding: 9px 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.fx-toggle button:hover { color: var(--forest-dark); }
.fx-toggle button.active {
  background: var(--forest);
  color: var(--cream);
  box-shadow: 0 2px 8px rgba(31, 42, 36, 0.15);
}

/* "≈ $X / day" line under each price */
.price-fx {
  display: block;
  margin-top: 6px;
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  min-height: 1.4em;
}
.price-fx.loading {
  color: rgba(0,0,0,0);
  background: linear-gradient(90deg, rgba(45,74,58,0.06) 25%, rgba(45,74,58,0.12) 50%, rgba(45,74,58,0.06) 75%);
  background-size: 200% 100%;
  border-radius: 4px;
  animation: shimmer 1.5s infinite;
}
.price-card.featured .price-fx { color: rgba(250, 245, 235, 0.7); }

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Rate banner under pricing */
.fx-banner {
  margin-top: 24px;
  padding: 14px 22px;
  background: var(--cream-warm);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}
.fx-banner strong { color: var(--forest-dark); font-weight: 700; }
.fx-banner i { color: var(--gold-deep); margin-right: 6px; }

/* =========================================================================
   PAYMENT METHODS SECTION
   ========================================================================= */
.payments {
  background: var(--cream-warm);
}
.payments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 36px;
}
@media (max-width: 900px) { .payments-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 36px; } }

.payment-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid rgba(45, 74, 58, 0.08);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
}
.payment-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}
.payment-card.featured {
  border-color: var(--gold);
  border-width: 2px;
}
.payment-flag {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 1.4rem;
  line-height: 1;
}
.payment-card-icon {
  width: 50px; height: 50px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(184, 146, 74, 0.12);
  color: var(--gold-deep);
  font-size: 1.25rem;
  margin-bottom: 20px;
}
.payment-card h4 {
  color: var(--forest-dark);
  font-weight: 500;
  font-size: 1.35rem;
  margin-bottom: 4px;
}
.payment-region {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
}
.payment-card p {
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 18px;
}
.payment-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.payment-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--text);
  padding: 4px 0;
  line-height: 1.5;
}
.payment-features li i {
  color: var(--gold-deep);
  font-size: 0.78rem;
  margin-top: 5px;
  flex-shrink: 0;
}

.payments-note {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}

/* =========================================================================
   15. SCROLL REVEAL ANIMATIONS
   Elements start hidden, fade/slide up when they enter the viewport.
   ========================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Staggered children inside a .reveal-group */
.reveal-group > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal-group.visible > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-group.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-group.visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-group.visible > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-group.visible > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-group.visible > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-group.visible > *:nth-child(6) { transition-delay: 0.40s; }
.reveal-group.visible > *:nth-child(7) { transition-delay: 0.47s; }
.reveal-group.visible > *:nth-child(8) { transition-delay: 0.54s; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── WhatsApp floating button ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 13px 20px 13px 16px;
  box-shadow: 0 4px 18px rgba(0,0,0,.22);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  transition: background .2s, transform .2s, box-shadow .2s;
  animation: wa-pop .4s .8s cubic-bezier(.34,1.56,.64,1) both;
}
.wa-float i { font-size: 1.45rem; line-height: 1; }
.wa-float:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,.28);
}
.wa-float:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}
@keyframes wa-pop {
  from { opacity: 0; transform: scale(.6) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@media (max-width: 560px) {
  .wa-float { bottom: 18px; right: 18px; padding: 13px 16px; }
  .wa-float span { display: none; }
  .wa-float { border-radius: 50%; width: 54px; height: 54px; justify-content: center; }
}
