/* ==========================================================================
   Travel Value — Design System
   A division of Iqbal Group · Islamabad, Pakistan
   --------------------------------------------------------------------------
   Brand palette (from logo):
     Blue  #0078A8  · Orange #D86018 · Teal #007878 · Gold #F0A800
   Fonts: Plus Jakarta Sans (headings) + Inter (body) via Google Fonts.
   Author note: single source of truth for all pages. Edit tokens here.
   ========================================================================== */

/* ---------- 1. Design Tokens ---------------------------------------------- */
:root {
  /* Brand */
  --brand-blue:        #0078A8;
  --brand-blue-ink:    #005E85;   /* darker: accessible text/link on white (>=4.5:1) */
  --brand-blue-deep:   #003E58;
  --brand-orange:      #D86018;
  --brand-orange-ink:  #B84E0E;   /* darker orange for text on white */
  --brand-teal:        #007878;
  --brand-teal-deep:   #00494A;
  --brand-gold:        #F0A800;
  --brand-gold-deep:   #B87F00;

  /* Semantic */
  --color-primary:      var(--brand-blue);
  --color-primary-ink:  var(--brand-blue-ink);
  --color-accent:       var(--brand-orange);
  --color-accent-ink:   var(--brand-orange-ink);
  --color-secondary:    var(--brand-teal);

  /* Neutrals / surfaces */
  --ink:            #0C2530;   /* body text */
  --ink-soft:       #43606C;   /* secondary text */
  --ink-faint:      #6E8794;   /* captions */
  --surface:        #FFFFFF;
  --surface-2:      #F3F8FB;   /* subtle blue-grey section */
  --surface-3:      #E7F1F6;
  --line:           #D8E6EC;   /* borders */
  --line-soft:      #EAF2F6;

  /* Status */
  --success:        #157F52;
  --danger:         #C22A2A;

  /* Gradients */
  --grad-brand:   linear-gradient(120deg, var(--brand-blue) 0%, var(--brand-teal) 100%);
  --grad-hero:    linear-gradient(150deg, #003E58 0%, #005E85 45%, #007878 100%);
  --grad-warm:    linear-gradient(120deg, var(--brand-orange) 0%, var(--brand-gold) 100%);
  --grad-sky:     linear-gradient(180deg, #F3F8FB 0%, #FFFFFF 100%);

  /* Typography */
  --font-head: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  /* Type scale (fluid) */
  --fs-hero:   clamp(2.3rem, 1.4rem + 4.2vw, 4.25rem);
  --fs-h1:     clamp(2rem, 1.4rem + 2.6vw, 3rem);
  --fs-h2:     clamp(1.6rem, 1.2rem + 1.8vw, 2.35rem);
  --fs-h3:     clamp(1.25rem, 1.05rem + 0.9vw, 1.6rem);
  --fs-lead:   clamp(1.06rem, 1rem + 0.4vw, 1.25rem);
  --fs-body:   1rem;
  --fs-sm:     0.9rem;
  --fs-xs:     0.8rem;

  /* Spacing scale (8pt) */
  --sp-1: 0.25rem; --sp-2: 0.5rem;  --sp-3: 0.75rem; --sp-4: 1rem;
  --sp-5: 1.5rem;  --sp-6: 2rem;    --sp-7: 3rem;    --sp-8: 4rem;
  --sp-9: 6rem;    --sp-10: 8rem;

  /* Radius / shadow */
  --r-sm: 8px; --r-md: 14px; --r-lg: 22px; --r-xl: 30px; --r-full: 999px;
  --shadow-sm:  0 1px 2px rgba(12,37,48,.06), 0 1px 3px rgba(12,37,48,.08);
  --shadow-md:  0 6px 18px rgba(12,37,48,.08), 0 2px 6px rgba(12,37,48,.06);
  --shadow-lg:  0 20px 45px rgba(12,37,48,.12), 0 8px 20px rgba(12,37,48,.08);
  --shadow-brand: 0 16px 40px rgba(0,120,168,.28);
  --shadow-warm:  0 12px 30px rgba(216,96,24,.30);

  /* Layout */
  --container: 1180px;
  --container-wide: 1320px;
  --header-h: 76px;

  --ease: cubic-bezier(.22,.61,.36,1);
  --dur: 220ms;
}

/* ---------- 2. Reset & Base ---------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.12; font-weight: 800; color: var(--brand-blue-deep); letter-spacing: -.02em; }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }
h5 { font-size: 1rem; font-weight: 600; }
p  { color: var(--ink-soft); }
a  { color: var(--brand-blue-ink); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--brand-orange-ink); }
img, svg, video { max-width: 100%; display: block; }
img { height: auto; }
ul, ol { padding-left: 1.15rem; }
strong { color: var(--ink); font-weight: 700; }
:focus-visible { outline: 3px solid var(--brand-gold); outline-offset: 2px; border-radius: 4px; }

/* ---------- 3. Layout helpers -------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.container-wide { max-width: var(--container-wide); }
.section { padding-block: clamp(3.2rem, 7vw, 6rem); }
.section-sm { padding-block: clamp(2.4rem, 5vw, 4rem); }
.section--tint { background: var(--surface-2); }
.section--brand { background: var(--grad-hero); color: #EAF6FB; }
.section--brand h2, .section--brand h3 { color: #fff; }
.section--brand p { color: #C6E2ED; }

.grid { display: grid; gap: var(--sp-5); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.center { text-align: center; }
.stack > * + * { margin-top: var(--sp-4); }
.muted { color: var(--ink-faint); }

/* Spacing utilities (prefer these over inline style="margin-top:…") */
.mt-0{margin-top:0}.mb-0{margin-bottom:0}
.mt-3{margin-top:var(--sp-3)}.mt-4{margin-top:var(--sp-4)}.mt-5{margin-top:var(--sp-5)}
.mt-6{margin-top:var(--sp-6)}.mt-7{margin-top:var(--sp-7)}
.mb-3{margin-bottom:var(--sp-3)}.mb-4{margin-bottom:var(--sp-4)}.mb-5{margin-bottom:var(--sp-5)}
.mx-auto{margin-inline:auto}
/* Color utilities */
.text-brand-deep{color:var(--brand-blue-deep)}
.text-white{color:#fff}
.text-cloud{color:#C9E4EF}

/* =========================================================================
   REDESIGN v2 — image-led. Real photography instead of gradient placeholders
   and icon badges. Rules below intentionally override earlier definitions.
   ========================================================================= */

/* ---- Logo ---- */
.brand { gap: 0; align-items: flex-start; }
.brand-logo { height: 42px; width: auto; max-width: none; display: block; object-fit: contain; }
.brand-suffix { font-family: var(--font-head); font-weight: 700; font-size: .6rem; color: var(--brand-teal); letter-spacing: .02em; margin: 3px 0 0 3px; white-space: nowrap; }
@media (max-width: 480px){ .brand-logo { height: 36px; } .brand-suffix { font-size: .52rem; } }
.footer-about strong { color: #fff; }
.footer-logo { display: inline-block; background: #fff; padding: .55rem .8rem; border-radius: var(--r-md); box-shadow: var(--shadow-sm); margin-bottom: var(--sp-4); }
.footer-logo img { height: 38px; width: auto; display: block; object-fit: contain; }

/* ---- Generic media wrapper (real images) ---- */
.media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--surface-3); }
.media > img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media.r-43 { aspect-ratio: 4/3; }
.media.r-45 { aspect-ratio: 4/5; }
.media.r-11 { aspect-ratio: 1/1; }
.media.r-169 { aspect-ratio: 16/9; }
.media-tag { position: absolute; left: 1rem; bottom: 1rem; display: inline-flex; align-items: center; gap: .35rem; background: rgba(255,255,255,.92); color: var(--brand-blue-deep); font-family: var(--font-head); font-weight: 700; font-size: .8rem; padding: .35rem .8rem; border-radius: var(--r-full); box-shadow: var(--shadow-sm); }
.media-tag svg { width: 14px; height: 14px; }
/* floating stat card that overlaps an image */
.media-float { position: absolute; background: #fff; border-radius: var(--r-md); box-shadow: var(--shadow-lg); padding: .8rem 1rem; display: flex; align-items: center; gap: .7rem; }
.media-float b { font-family: var(--font-head); color: var(--brand-blue-deep); font-size: 1.1rem; line-height: 1; display: block; }
.media-float span { font-size: .76rem; color: var(--ink-faint); }
.media-float .dot { width: 40px; height: 40px; border-radius: var(--r-full); background: var(--grad-warm); display: grid; place-items: center; color: #fff; flex: none; }
.media-float.br { right: -1rem; bottom: 1.4rem; }
.media-float.tl { left: -1rem; top: 1.4rem; }
@media (max-width: 520px){ .media-float.br{right:.6rem} .media-float.tl{left:.6rem} }

/* ---- Image-led hero (full-bleed photo) ---- */
.hero { position: relative; color: #fff; background: var(--brand-blue-deep); overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% center; }
.hero-media::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(0,44,60,.92) 0%, rgba(0,44,60,.72) 38%, rgba(0,62,88,.32) 70%, rgba(0,73,74,.15) 100%); }
.hero::before { display: none; }
.hero-inner { position: relative; z-index: 1; display: block; padding-block: clamp(3.4rem, 8vw, 6.5rem); }
.hero-content { max-width: 620px; }
.hero h1 { font-size: var(--fs-hero); margin-bottom: var(--sp-4); }
.hero-lead { max-width: 46ch; }
.hero-points { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: var(--sp-5); }
.hero-points span { display: inline-flex; gap: .45rem; align-items: center; font-size: .9rem; color: #D8ECF3; font-weight: 500; }
.hero-points svg { width: 18px; height: 18px; color: var(--brand-gold); }
@media (max-width: 620px){ .hero-media img { object-position: 62% center; } }

/* ---- Image-topped card (replaces icon-badge service cards) ---- */
.img-card { display: flex; flex-direction: column; height: 100%; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.img-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.img-card-media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.img-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms var(--ease); }
.img-card:hover .img-card-media img { transform: scale(1.06); }
.img-card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0,44,60,.35) 100%); }
.img-card-tag { position: absolute; top: .9rem; left: .9rem; z-index: 1; background: rgba(255,255,255,.92); color: var(--brand-blue-deep); font-family: var(--font-head); font-weight: 700; font-size: .74rem; letter-spacing: .02em; padding: .3rem .7rem; border-radius: var(--r-full); }
.img-card-body { padding: var(--sp-5); display: flex; flex-direction: column; flex: 1; }
.img-card-body h3 { margin-bottom: .45rem; }
.img-card-body p { font-size: var(--fs-sm); margin-bottom: var(--sp-4); }
.img-card-body .card-link { margin-top: auto; font-family: var(--font-head); font-weight: 700; color: var(--brand-orange-ink); display: inline-flex; align-items: center; gap: .4rem; }
.img-card-body .card-link svg { width: 17px; height: 17px; transition: transform var(--dur) var(--ease); }
.img-card:hover .card-link svg { transform: translateX(4px); }

/* ---- Destination cards now carry real photos ---- */
.dest-card .dest-img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform 500ms var(--ease); }
.dest-card:hover .dest-img { transform: scale(1.06); }
.dest-card::after { background: linear-gradient(180deg, rgba(0,44,60,0) 35%, rgba(0,30,42,.9) 100%); }

/* ---- Split media holds a photo ---- */
.split-media .media { aspect-ratio: 4/4.2; }
@media (max-width: 860px){ .split-media .media { aspect-ratio: 16/10; } }

/* ---- Trust note: sits BELOW a photo, never overlapping it ---- */
.trust-note { display: flex; align-items: center; gap: .9rem; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--shadow-sm); padding: 1rem 1.1rem; margin-top: var(--sp-4); }
.trust-note .dot { width: 44px; height: 44px; border-radius: var(--r-full); background: var(--grad-warm); display: grid; place-items: center; color: #fff; flex: none; box-shadow: var(--shadow-warm); }
.trust-note .dot svg { width: 22px; height: 22px; }
.trust-note b { display: block; font-family: var(--font-head); color: var(--brand-blue-deep); font-size: 1.05rem; line-height: 1.15; }
.trust-note span { font-size: .85rem; color: var(--ink-faint); }

/* ---- Sacred Journeys (Makkah & Madinah) — set apart from leisure ---- */
.sacred { background: radial-gradient(120% 80% at 50% 0%, #FCF6E9 0%, var(--surface-2) 55%); border-top: 3px solid var(--brand-gold); }
.sacred-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); max-width: 940px; margin-inline: auto; }
@media (max-width: 700px){ .sacred-grid { grid-template-columns: 1fr; max-width: 420px; } }
.sacred-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); display: block; }
.sacred-media { display: block; aspect-ratio: 4/5; overflow: hidden; }
.sacred-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.sacred-card:hover .sacred-media img { transform: scale(1.05); }
.sacred-body { display: block; padding: var(--sp-5); text-align: center; }
.sacred-body h3 { color: var(--brand-teal-deep); margin-bottom: .35rem; }
.sacred-body p { font-size: var(--fs-sm); margin: 0; }

/* ---- Page hero can host a subtle photo band ---- */
.page-hero.has-photo { background: var(--brand-blue-deep); }
.page-hero .page-hero-media { position: absolute; inset: 0; z-index: 0; }
.page-hero .page-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.page-hero .page-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(0,44,60,.9) 0%, rgba(0,44,60,.7) 45%, rgba(0,73,74,.35) 100%); }
.page-hero.has-photo .container { position: relative; z-index: 1; }

/* ---------- 4. Eyebrow / section heads ----------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 700; font-size: var(--fs-xs);
  letter-spacing: .14em; text-transform: uppercase; color: var(--brand-teal);
  margin-bottom: var(--sp-3);
}
.eyebrow::before { content:""; width: 26px; height: 2px; background: var(--brand-orange); border-radius: 2px; }
.section--brand .eyebrow { color: var(--brand-gold); }
.section-head { max-width: 640px; margin-bottom: var(--sp-6); }
.section-head.center { margin-inline: auto; }
.lead { font-size: var(--fs-lead); color: var(--ink-soft); }

/* ---------- 5. Buttons --------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-head); font-weight: 700; font-size: .98rem;
  padding: .82rem 1.5rem; border-radius: var(--r-full); border: 2px solid transparent;
  cursor: pointer; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
  min-height: 48px; line-height: 1; text-align: center; white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn-primary { background: var(--grad-warm); color: #fff; box-shadow: var(--shadow-warm); }
.btn-primary:hover { color:#fff; transform: translateY(-2px); box-shadow: 0 18px 38px rgba(216,96,24,.42); }
.btn-secondary { background: var(--brand-blue); color: #fff; box-shadow: var(--shadow-brand); }
.btn-secondary:hover { color:#fff; transform: translateY(-2px); background: var(--brand-blue-ink); }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost:hover { background:#fff; color: var(--brand-blue-deep); }
.btn-outline { background: #fff; color: var(--brand-blue-ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-outline:hover { color: var(--brand-blue-ink); border-color: var(--brand-blue); transform: translateY(-2px); }
.btn-wa { background: #25D366; color: #05331a; }
.btn-wa:hover { color:#05331a; background:#20bd5b; transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-lg { padding: 1rem 1.9rem; font-size: 1.05rem; min-height: 54px; }
.btn-sm { padding: .55rem 1rem; min-height: 40px; font-size: .88rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.btn-row.center { justify-content: center; }

/* ---------- 6. Cards ----------------------------------------------------- */
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: var(--sp-5); box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.card-hover:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }

.icon-badge {
  width: 54px; height: 54px; border-radius: var(--r-md);
  display: grid; place-items: center; color: #fff; background: var(--grad-brand);
  box-shadow: var(--shadow-brand); margin-bottom: var(--sp-4);
}
.icon-badge svg { width: 26px; height: 26px; }
.icon-badge.warm { background: var(--grad-warm); box-shadow: var(--shadow-warm); }
.icon-badge.teal { background: linear-gradient(120deg,var(--brand-teal),var(--brand-teal-deep)); box-shadow: none; }

/* Service card */
.service-card { display: flex; flex-direction: column; height: 100%; }
.service-card h3 { margin-bottom: var(--sp-2); }
.service-card p { font-size: var(--fs-sm); margin-bottom: var(--sp-4); }
.service-card .card-link { margin-top: auto; font-family: var(--font-head); font-weight: 700; color: var(--brand-orange-ink); display: inline-flex; align-items: center; gap: .4rem; }
.service-card .card-link svg { width: 17px; height: 17px; transition: transform var(--dur) var(--ease); }
.service-card:hover .card-link svg { transform: translateX(4px); }

/* ---------- 7. Header / Nav ---------------------------------------------- */
.topbar { background: var(--brand-blue-deep); color: #CFE6EF; font-size: var(--fs-xs); }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 40px; padding-block: .35rem; }
.topbar a { color: #CFE6EF; }
.topbar a:hover { color: #fff; }
.topbar-left { display: flex; gap: 1.3rem; flex-wrap: wrap; }
.topbar-left span, .topbar-left a { display: inline-flex; align-items: center; gap: .4rem; }
.topbar svg { width: 14px; height: 14px; opacity: .85; }
.topbar-right { display: flex; gap: 1rem; align-items: center; }
@media (max-width: 720px) { .topbar-right { display: none; } .topbar-left { gap: 1rem; } }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line-soft); transition: box-shadow var(--dur) var(--ease); }
.site-header.scrolled { box-shadow: var(--shadow-md); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: var(--header-h); }

/* Logo */
.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-head); font-weight: 800; font-size: 1.28rem; color: var(--brand-blue-deep); letter-spacing: -.02em; }
.brand:hover { color: var(--brand-blue-deep); }
.brand-mark { width: 40px; height: 40px; border-radius: 11px; background: var(--grad-brand); display: grid; place-items: center; box-shadow: var(--shadow-brand); flex: none; }
.brand-mark svg { width: 23px; height: 23px; color: #fff; }
.brand small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--brand-teal); margin-top: 1px; }
.brand-text { line-height: 1; }
.brand-text b { color: var(--brand-orange-ink); }

/* Desktop nav */
.nav-menu { display: flex; align-items: center; gap: .35rem; list-style: none; padding: 0; margin: 0; }
.nav-menu > li { position: relative; }
.nav-menu > li > a { display: inline-flex; align-items: center; gap: .3rem; font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--ink); padding: .6rem .7rem; border-radius: var(--r-sm); white-space: nowrap; }
.nav-menu .mobile-cta { display: none; } /* duplicate CTA — desktop uses the button in .nav-cta */
.nav-menu > li > a:hover, .nav-menu > li.active > a { color: var(--brand-blue-ink); background: var(--surface-2); }
.nav-menu .caret { width: 15px; height: 15px; opacity: .7; transition: transform var(--dur) var(--ease); }
.nav-menu li:hover .caret, .nav-menu li.open .caret { transform: rotate(180deg); }

/* Dropdown */
.dropdown { position: absolute; top: calc(100% + 8px); left: 0; min-width: 250px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--shadow-lg); padding: .5rem; list-style: none; margin: 0; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all var(--dur) var(--ease); }
.nav-menu li:hover > .dropdown, .nav-menu li.open > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: flex; gap: .6rem; align-items: flex-start; padding: .6rem .7rem; border-radius: var(--r-sm); color: var(--ink); font-size: .9rem; font-weight: 500; }
.dropdown a:hover { background: var(--surface-2); color: var(--brand-blue-ink); }
.dropdown a svg { width: 18px; height: 18px; color: var(--brand-teal); flex: none; margin-top: 1px; }
.dropdown a span { display: block; }
.dropdown a small { display: block; color: var(--ink-faint); font-weight: 400; font-size: .76rem; }

.nav-cta { display: flex; align-items: center; gap: .5rem; }
.nav-toggle { display: none; }

/* Mobile nav */
.nav-hamburger { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: var(--r-sm); background: #fff; cursor: pointer; align-items: center; justify-content: center; color: var(--brand-blue-deep); }
.nav-hamburger svg { width: 24px; height: 24px; }

@media (max-width: 1000px) {
  /* backdrop-filter makes the header a containing block for the fixed drawer,
     trapping it inside the header box — disable it on mobile so the drawer
     positions against the viewport and fills the screen correctly. */
  .site-header { background: #fff; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav-cta .btn-quote-desktop { display: none; }
  .nav-menu .mobile-cta { display: block; }
  .nav-hamburger { display: inline-flex; }
  .nav-menu {
    position: fixed; inset: 0 0 0 auto; width: min(360px, 88vw);
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; padding: calc(var(--header-h) + 1rem) 1.1rem 2rem; overflow-y: auto;
    transform: translateX(100%); transition: transform var(--dur) var(--ease);
    box-shadow: var(--shadow-lg); z-index: 120;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu > li { border-bottom: 1px solid var(--line-soft); }
  .nav-menu > li > a { padding: .95rem .4rem; font-size: 1rem; justify-content: space-between; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; min-width: 0; padding: 0 0 .5rem .6rem; max-height: 0; overflow: hidden; transition: max-height var(--dur) var(--ease); }
  .nav-menu > li.open > .dropdown { max-height: 500px; }
  .nav-menu .mobile-cta { border-bottom: none; margin-top: 1rem; }
  .nav-overlay { position: fixed; inset: 0; background: rgba(12,37,48,.5); z-index: 110; opacity: 0; visibility: hidden; transition: opacity var(--dur) var(--ease); }
  .nav-overlay.show { opacity: 1; visibility: visible; }
}

/* Lock page scroll while the mobile drawer is open.
   Must sit on <html>: because html uses `overflow-x: clip`, body's overflow no
   longer propagates to the viewport, so `body{overflow:hidden}` alone won't lock. */
html.nav-open, html.nav-open body { overflow: hidden; }

/* ---------- 8. Hero ------------------------------------------------------ */
.hero { position: relative; color: #EAF6FB; background: var(--grad-hero); overflow: hidden; }
.hero::before { content:""; position: absolute; inset: 0; background:
  radial-gradient(60% 55% at 82% 18%, rgba(240,168,0,.28) 0%, transparent 60%),
  radial-gradient(55% 60% at 10% 90%, rgba(0,120,120,.45) 0%, transparent 55%);
  pointer-events: none; }
.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--sp-7); align-items: center; padding-block: clamp(3rem, 6vw, 5.5rem); }
@media (max-width: 940px) { .hero-inner { grid-template-columns: 1fr; gap: var(--sp-6); } }
.hero h1 { color: #fff; font-size: var(--fs-hero); margin-bottom: var(--sp-4); }
.hero h1 .hl { background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lead { font-size: var(--fs-lead); color: #C9E4EF; max-width: 34ch; margin-bottom: var(--sp-5); }
.hero .btn-row { margin-bottom: var(--sp-5); }
.hero-badge { display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25); color: #EAF6FB; padding: .4rem .9rem; border-radius: var(--r-full); font-size: var(--fs-sm); font-weight: 600; margin-bottom: var(--sp-5); backdrop-filter: blur(6px); }
.hero-badge svg { width: 16px; height: 16px; color: var(--brand-gold); }

/* Hero visual (placeholder photo panel) */
.hero-visual { position: relative; }
.hero-photo { position: relative; aspect-ratio: 4/4.4; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.2); }
/* TODO: replace .ph-* gradient placeholders with real licensed photography */
.ph { background-size: cover; background-position: center; position: relative; }
.ph-hero { background:
  linear-gradient(180deg, rgba(0,62,88,.15), rgba(0,73,74,.55)),
  radial-gradient(120% 90% at 20% 10%, #2AA7D6 0%, #0078A8 40%, #00494A 100%); }
.ph-badge { position: absolute; background: #fff; color: var(--ink); border-radius: var(--r-md); box-shadow: var(--shadow-lg); padding: .8rem 1rem; display: flex; align-items: center; gap: .7rem; font-size: var(--fs-sm); }
.ph-badge svg { width: 30px; height: 30px; }
.ph-badge b { display: block; font-family: var(--font-head); color: var(--brand-blue-deep); font-size: 1.05rem; line-height: 1.1; }
.ph-badge span { color: var(--ink-faint); font-size: .78rem; }
.ph-badge.tl { top: 1rem; left: -1rem; }
.ph-badge.br { bottom: 1.2rem; right: -1rem; }
@media (max-width: 480px){ .ph-badge.tl{left:.5rem} .ph-badge.br{right:.5rem} }

/* Photo placeholder utility (for content images) */
.photo { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--grad-brand); aspect-ratio: 16/10; box-shadow: var(--shadow-md); }
.photo::after { content: attr(data-label); position: absolute; inset: 0; display: grid; place-items: center; color: rgba(255,255,255,.9); font-family: var(--font-head); font-weight: 700; font-size: .95rem; letter-spacing: .02em; text-align:center; padding: 1rem; }
.photo.teal { background: linear-gradient(130deg, var(--brand-teal), var(--brand-teal-deep)); }
.photo.warm { background: var(--grad-warm); }
.photo.deep { background: var(--grad-hero); }

/* ---------- 9. Trust bar ------------------------------------------------- */
.trustbar { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-md); padding: var(--sp-5); display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-4); text-align: center; }
.trustbar.floated { margin-top: -3.4rem; position: relative; z-index: 5; }
@media (max-width: 760px){ .trustbar { grid-template-columns: repeat(2,1fr); gap: var(--sp-5); } }
.stat b { display: block; font-family: var(--font-head); font-weight: 800; font-size: clamp(1.7rem,1.2rem+1.5vw,2.4rem); color: var(--brand-blue-ink); line-height: 1; }
.stat span { display: block; font-size: var(--fs-sm); color: var(--ink-soft); margin-top: .35rem; }
/* Keep the "+" inline with the number (the .stat span rule above would otherwise
   force it onto its own line). Rendered as a small superscript: 25+ */
.stat .plus { display: inline; color: var(--brand-orange); font-size: .55em; font-weight: 800; vertical-align: super; margin: 0 0 0 1px; }

/* Logo/partner strip */
.partner-strip { display: flex; flex-wrap: wrap; gap: 1.4rem 2.4rem; align-items: center; justify-content: center; opacity: .85; }
.partner-strip .partner { font-family: var(--font-head); font-weight: 800; color: var(--ink-faint); font-size: 1.05rem; letter-spacing: .02em; }

/* ---------- 10. Feature / split ------------------------------------------ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.split.reverse .split-media { order: 2; }
@media (max-width: 860px){ .split { grid-template-columns: 1fr; } .split.reverse .split-media { order: 0; } }
.check-list { list-style: none; padding: 0; margin: var(--sp-5) 0 0; display: grid; gap: var(--sp-3); }
.check-list li { display: flex; gap: .7rem; align-items: flex-start; color: var(--ink-soft); }
.check-list li svg { width: 22px; height: 22px; color: var(--brand-teal); flex: none; margin-top: 1px; }
.check-list b { color: var(--ink); }

/* ---------- 11. Steps / process ------------------------------------------ */
.steps { counter-reset: step; display: grid; gap: var(--sp-5); }
.step { display: flex; gap: var(--sp-4); align-items: flex-start; }
.step-num { counter-increment: step; flex: none; width: 48px; height: 48px; border-radius: var(--r-full); background: var(--grad-brand); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; box-shadow: var(--shadow-brand); }
.step-num::before { content: counter(step, decimal-leading-zero); }
.step h3 { font-size: 1.15rem; margin-bottom: .3rem; }
.step p { font-size: var(--fs-sm); }

/* ---------- 12. Package comparison table --------------------------------- */
.pkg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-5); align-items: stretch; }
@media (max-width: 880px){ .pkg-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }
.pkg { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.pkg:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pkg.featured { border-color: var(--brand-orange); box-shadow: var(--shadow-warm); position: relative; }
.pkg-flag { background: var(--grad-warm); color: #fff; text-align: center; font-family: var(--font-head); font-weight: 700; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; padding: .4rem; }
.pkg-head { padding: var(--sp-5) var(--sp-5) var(--sp-4); background: var(--surface-2); border-bottom: 1px solid var(--line); }
.pkg.featured .pkg-head { background: linear-gradient(180deg,#FFF6EE,#fff); }
.pkg-head h3 { color: var(--brand-blue-deep); }
.pkg-price { font-family: var(--font-head); font-weight: 800; font-size: 1.9rem; color: var(--brand-orange-ink); margin-top: .4rem; }
.pkg-price small { display:block; font-weight: 500; font-size: .78rem; color: var(--ink-faint); letter-spacing: .02em; }
.pkg-body { padding: var(--sp-5); display: flex; flex-direction: column; gap: .8rem; flex: 1; }
.pkg-feat { display: flex; gap: .6rem; font-size: var(--fs-sm); color: var(--ink-soft); align-items: flex-start; }
.pkg-feat svg { width: 19px; height: 19px; color: var(--brand-teal); flex: none; margin-top: 2px; }
.pkg-feat.no { color: var(--ink-faint); }
.pkg-feat.no svg { color: var(--line); }
.pkg-body .btn { margin-top: auto; }

/* ---------- 13. Destinations grid ---------------------------------------- */
.dest-card { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 3/3.6; box-shadow: var(--shadow-md); display: flex; align-items: flex-end; color: #fff; isolation: isolate; }
.dest-card::after { content:""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(0,44,60,.85) 100%); z-index: -1; }
.dest-card .ph-fill { position: absolute; inset: 0; z-index: -2; }
.dest-card:hover .ph-fill { transform: scale(1.06); }
.dest-card .ph-fill { transition: transform 400ms var(--ease); }
.dest-body { padding: var(--sp-5); width: 100%; }
.dest-body h3 { color: #fff; font-size: 1.3rem; margin-bottom: .2rem; }
.dest-body p { color: rgba(255,255,255,.85); font-size: var(--fs-sm); margin: 0; }
.dest-tag { position: absolute; top: 1rem; left: 1rem; background: rgba(255,255,255,.9); color: var(--brand-blue-deep); font-family: var(--font-head); font-weight: 700; font-size: .72rem; padding: .3rem .7rem; border-radius: var(--r-full); z-index: 1; }

/* Gradient fills for destination placeholders */
.g-makkah { background: linear-gradient(160deg,#B87F00,#8a5c00 55%,#3a2a00); }
.g-madinah{ background: linear-gradient(160deg,#00857f,#00494A); }
.g-dubai  { background: linear-gradient(160deg,#0091C7,#005E85 55%,#003E58); }
.g-uk     { background: linear-gradient(160deg,#3A5A78,#1e3247); }
.g-turkey { background: linear-gradient(160deg,#C0392B,#7a2018); }
.g-thai   { background: linear-gradient(160deg,#12A18A,#0a5c4e); }
.g-malaysia{ background: linear-gradient(160deg,#1f7ab8,#0d3a5c); }
.g-saudi  { background: linear-gradient(160deg,#5a7d2a,#2f4415); }

/* ---------- 14. Testimonials --------------------------------------------- */
.quote-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--sp-5); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: var(--sp-4); height: 100%; }
.quote-stars { display: flex; gap: 2px; color: var(--brand-gold); }
.quote-stars svg { width: 18px; height: 18px; }
.quote-card blockquote { font-size: 1.02rem; color: var(--ink); line-height: 1.6; }
.quote-person { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.avatar { width: 46px; height: 46px; border-radius: var(--r-full); display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; color: #fff; background: var(--grad-brand); flex: none; }
.quote-person b { display: block; font-family: var(--font-head); color: var(--ink); font-size: .95rem; }
.quote-person span { font-size: .82rem; color: var(--ink-faint); }

/* ---------- 15. Leadership ----------------------------------------------- */
.leader-card { text-align: center; }
.leader-photo { aspect-ratio: 1; border-radius: var(--r-lg); background: var(--surface-3); display: grid; place-items: center; margin-bottom: var(--sp-4); box-shadow: var(--shadow-md); position: relative; overflow: hidden; }
.leader-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.leader-photo .avatar-lg { font-family: var(--font-head); font-weight: 800; font-size: 2.6rem; color: rgba(255,255,255,.92); }
.leader-card h3 { font-size: 1.15rem; margin-bottom: .1rem; }
.leader-role { color: var(--brand-orange-ink); font-family: var(--font-head); font-weight: 700; font-size: .9rem; }
.leader-card p { font-size: var(--fs-sm); margin-top: .6rem; }

/* ---------- 16. FAQ / Accordion ------------------------------------------ */
.accordion { max-width: 820px; margin-inline: auto; display: grid; gap: var(--sp-3); }
.acc-item { border: 1px solid var(--line); border-radius: var(--r-md); background: #fff; overflow: hidden; transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.acc-item.open { border-color: var(--brand-blue); box-shadow: var(--shadow-md); }
.acc-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 1.15rem 1.3rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; color: var(--brand-blue-deep); }
.acc-q:hover { color: var(--brand-blue-ink); }
.acc-icon { flex: none; width: 26px; height: 26px; border-radius: var(--r-full); background: var(--surface-2); display: grid; place-items: center; transition: transform var(--dur) var(--ease), background var(--dur) var(--ease); color: var(--brand-blue-ink); }
.acc-item.open .acc-icon { transform: rotate(45deg); background: var(--brand-blue); color: #fff; }
.acc-icon svg { width: 16px; height: 16px; }
.acc-a { max-height: 0; overflow: hidden; transition: max-height var(--dur) var(--ease); }
.acc-a-inner { padding: 0 1.3rem 1.2rem; color: var(--ink-soft); font-size: var(--fs-sm); }
.acc-item.open .acc-a { max-height: 600px; }

/* ---------- 17. Forms ---------------------------------------------------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-md); padding: clamp(1.4rem, 3vw, 2.4rem); }
.field { margin-bottom: var(--sp-4); }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: var(--fs-sm); color: var(--ink); margin-bottom: .4rem; }
.field .req { color: var(--danger); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: .8rem .95rem; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: #fff; transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease); min-height: 48px;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand-blue); box-shadow: 0 0 0 3px rgba(0,120,168,.15); }
.field .hint { font-size: var(--fs-xs); color: var(--ink-faint); margin-top: .35rem; }
.field .err { font-size: var(--fs-xs); color: var(--danger); margin-top: .35rem; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--danger); }
.field.invalid .err { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
@media (max-width: 560px){ .form-row { grid-template-columns: 1fr; } }

/* Multi-step */
.stepper { display: flex; align-items: center; gap: .5rem; margin-bottom: var(--sp-5); }
.stepper .dot { flex: 1; display: flex; flex-direction: column; align-items: center; gap: .4rem; position: relative; font-size: var(--fs-xs); color: var(--ink-faint); font-weight: 600; text-align: center; }
.stepper .dot .n { width: 34px; height: 34px; border-radius: var(--r-full); border: 2px solid var(--line); display: grid; place-items: center; background: #fff; font-family: var(--font-head); font-weight: 700; color: var(--ink-faint); z-index: 1; transition: all var(--dur) var(--ease); }
.stepper .dot::after { content:""; position: absolute; top: 17px; left: 50%; width: 100%; height: 2px; background: var(--line); z-index: 0; }
.stepper .dot:last-child::after { display: none; }
.stepper .dot.active .n { border-color: var(--brand-blue); color: var(--brand-blue-ink); }
.stepper .dot.done .n { background: var(--brand-teal); border-color: var(--brand-teal); color: #fff; }
.stepper .dot.active { color: var(--brand-blue-ink); }
.form-step { display: none; }
.form-step.active { display: block; animation: fadeIn var(--dur) var(--ease); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px);} to { opacity: 1; transform: none; } }
.choice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr)); gap: var(--sp-3); }
.choice { border: 1.5px solid var(--line); border-radius: var(--r-md); padding: 1rem; text-align: center; cursor: pointer; transition: all var(--dur) var(--ease); background: #fff; font: inherit; color: inherit; width: 100%; display: block; min-height: 88px; }
.choice svg { width: 26px; height: 26px; color: var(--brand-teal); margin: 0 auto .5rem; }
.choice span { font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--ink); }
.choice:hover { border-color: var(--brand-blue); transform: translateY(-2px); }
.choice.selected { border-color: var(--brand-orange); background: #FFF6EE; box-shadow: var(--shadow-sm); }
.choice.selected svg { color: var(--brand-orange-ink); }
.form-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: var(--sp-5); flex-wrap: wrap; }
.form-nav .btn { min-width: 0; }
/* Narrow screens: stack full-width, primary action on top (DOM order is Back → Next) */
@media (max-width: 560px) {
  .form-nav { flex-direction: column-reverse; align-items: stretch; }
  .form-nav .btn { width: 100%; white-space: normal; }
}
.form-success { display: none; text-align: center; padding: var(--sp-6) var(--sp-4); }
.form-success.show { display: block; animation: fadeIn var(--dur) var(--ease); }
.form-success .tick { width: 72px; height: 72px; border-radius: var(--r-full); background: linear-gradient(120deg,var(--brand-teal),var(--success)); display: grid; place-items: center; margin: 0 auto var(--sp-4); color: #fff; box-shadow: var(--shadow-md); }
.form-success .tick svg { width: 38px; height: 38px; }

/* ---------- 18. Breadcrumb + page hero ----------------------------------- */
.page-hero { background: var(--grad-hero); color: #EAF6FB; position: relative; overflow: hidden; }
.page-hero::before { content:""; position: absolute; inset: 0; background: radial-gradient(50% 60% at 85% 20%, rgba(240,168,0,.22), transparent 60%); }
.page-hero .container { position: relative; padding-block: clamp(2.6rem, 5vw, 4.2rem); }
.page-hero h1 { color: #fff; margin-bottom: .6rem; }
.page-hero p { color: #C9E4EF; max-width: 62ch; font-size: var(--fs-lead); }
.breadcrumb { list-style: none; padding: 0; margin: 0 0 var(--sp-4); display: flex; flex-wrap: wrap; gap: .4rem; font-size: var(--fs-sm); }
.breadcrumb a { color: #A9D4E4; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb li::after { content: "›"; margin-left: .5rem; color: #6f9db0; }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb li[aria-current] { color: #fff; }

/* Answer-first (AEO) callout */
.answer-first { background: var(--surface-2); border-left: 4px solid var(--brand-teal); border-radius: 0 var(--r-md) var(--r-md) 0; padding: var(--sp-5); font-size: var(--fs-lead); color: var(--ink); }
.answer-first strong { color: var(--brand-blue-deep); }

/* Prose (blog/content) */
.prose { max-width: 760px; }
.prose > * + * { margin-top: 1.15rem; }
.prose h2 { margin-top: 2.2rem; }
.prose h3 { margin-top: 1.6rem; }
.prose ul, .prose ol { display: grid; gap: .5rem; color: var(--ink-soft); }
.prose img, .prose .photo { border-radius: var(--r-md); margin-block: 1.6rem; }
.prose blockquote { border-left: 4px solid var(--brand-orange); padding-left: 1.2rem; font-size: 1.1rem; color: var(--ink); font-style: italic; }

/* Tag / chip */
.chip { display: inline-flex; align-items: center; gap: .35rem; background: var(--surface-2); color: var(--brand-blue-ink); border: 1px solid var(--line); font-family: var(--font-head); font-weight: 600; font-size: var(--fs-xs); padding: .3rem .7rem; border-radius: var(--r-full); }

/* CTA band */
.cta-band { background: var(--grad-hero); border-radius: var(--r-xl); padding: clamp(2rem,5vw,3.4rem); color: #fff; text-align: center; position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.cta-band::before { content:""; position: absolute; inset: 0; background: radial-gradient(60% 80% at 15% 20%, rgba(240,168,0,.25), transparent 55%), radial-gradient(60% 80% at 90% 90%, rgba(0,120,120,.5), transparent 55%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; margin-bottom: var(--sp-3); }
.cta-band p { color: #C9E4EF; max-width: 52ch; margin: 0 auto var(--sp-5); }

/* ---------- 19. Footer --------------------------------------------------- */
.site-footer { background: #04222E; color: #A9C6D2; font-size: var(--fs-sm); }
.footer-top { padding-block: clamp(2.6rem, 5vw, 4rem); display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: var(--sp-6); }
@media (max-width: 900px){ .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-top { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: var(--sp-4); }
.footer-brand .brand { color: #fff; margin-bottom: var(--sp-4); }
.footer-brand .brand small { color: var(--brand-gold); }
.footer-about { color: #93B4C1; max-width: 34ch; margin-bottom: var(--sp-4); }
.footer-social { display: flex; gap: .6rem; }
.footer-social a { width: 40px; height: 40px; border-radius: var(--r-sm); background: rgba(255,255,255,.07); display: grid; place-items: center; color: #cfe1e9; transition: all var(--dur) var(--ease); }
.footer-social a:hover { background: var(--brand-orange); color: #fff; transform: translateY(-2px); }
.footer-social svg { width: 19px; height: 19px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.footer-links a { color: #A9C6D2; }
.footer-links a:hover { color: #fff; }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; margin-bottom: .7rem; color: #A9C6D2; list-style: none; }
.footer-contact { padding: 0; margin: 0; }
.footer-contact svg { width: 18px; height: 18px; color: var(--brand-gold); flex: none; margin-top: 2px; }
.footer-contact a { color: #cfe1e9; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 1.3rem; display: flex; flex-wrap: wrap; gap: .8rem 1.4rem; justify-content: space-between; align-items: center; font-size: var(--fs-xs); color: #7fa0ad; }
.footer-bottom a { color: #9fbecb; }
.footer-bottom .fb-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }

/* ---------- 20. WhatsApp float + back to top ----------------------------- */
.wa-float { position: fixed; bottom: 22px; right: 22px; z-index: 90; display: inline-flex; align-items: center; gap: .6rem; background: #25D366; color: #05331a; font-family: var(--font-head); font-weight: 700; padding: .8rem 1.15rem; border-radius: var(--r-full); box-shadow: 0 12px 30px rgba(37,211,102,.45); transition: transform var(--dur) var(--ease); }
.wa-float:hover { transform: scale(1.05); color: #05331a; }
.wa-float svg { width: 26px; height: 26px; }
.wa-float .wa-label { white-space: nowrap; }
@media (max-width: 560px){ .wa-float { bottom: 16px; right: 16px; padding: .8rem; } .wa-float .wa-label { display: none; } }
.wa-float::after { content:""; position: absolute; inset: 0; border-radius: inherit; box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: waPulse 2.4s infinite; }
@keyframes waPulse { 0%{box-shadow:0 0 0 0 rgba(37,211,102,.5)} 70%{box-shadow:0 0 0 16px rgba(37,211,102,0)} 100%{box-shadow:0 0 0 0 rgba(37,211,102,0)} }
@media (prefers-reduced-motion: reduce){ .wa-float::after { animation: none; } }

/* ---------- 21. Reveal on scroll ----------------------------------------- */
/* Fail-safe: content is visible by default. It is only hidden for the
   animation when JS is running (<html class="js">, set by an inline script in
   the head), so a JS error or blocked script can never leave the page blank. */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .js .reveal { opacity: 1; transform: none; } }

/* ---------- 22. Skip link ------------------------------------------------ */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--brand-blue-deep); color: #fff; padding: .7rem 1.2rem; z-index: 200; border-radius: 0 0 var(--r-sm) 0; }
.skip-link:focus { left: 0; color: #fff; }

/* ---------- 23. Utilities ------------------------------------------------ */
.text-accent { color: var(--brand-orange-ink); }
.text-teal { color: var(--brand-teal); }
.hide { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Responsive two-column (sidebar + main) */
.cols-2 { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
@media (max-width: 860px){ .cols-2 { grid-template-columns: 1fr; } }

/* Form validation shake */
.choice-grid.shake { animation: shake .4s var(--ease); }
@keyframes shake { 0%,100%{transform:translateX(0)} 20%,60%{transform:translateX(-6px)} 40%,80%{transform:translateX(6px)} }
@media (prefers-reduced-motion: reduce){ .choice-grid.shake { animation: none; } }
