/* ============================================================
   AL FAJR WAGS – PREMIUM UMRAH & HAJJ WEBSITE
   style.css
   ============================================================ */

/* ── GOOGLE FONTS ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&family=Playfair+Display:ital,wght@0,700;0,800;1,700&display=swap');

/* ── CSS VARIABLES ────────────────────────────────────────── */
:root {
  /* Brand colours extracted from logo */
  --green:        #1FA644;
  --green-dark:   #167a32;
  --green-light:  #2ec957;
  --blue:         #1769C4;
  --blue-dark:    #0e4d96;
  --gold:         #C8922A;
  --gold-light:   #e8b04a;
  --gold-pale:    #f5e4bc;
  --orange:       #E25726;

  /* Neutrals */
  --ink:          #0e1117;
  --ink-mid:      #1c2232;
  --slate:        #2d3652;
  --mist:         #f4f6f9;
  --white:        #ffffff;
  --off-white:    #fdfaf5;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  /* Spacing scale */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;
  --space-2xl: 9rem;

  /* Effects */
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --shadow-sm: 0 2px 12px rgba(14,17,23,.08);
  --shadow-md: 0 8px 32px rgba(14,17,23,.14);
  --shadow-lg: 0 20px 60px rgba(14,17,23,.22);
  --glass-bg:  rgba(255,255,255,.08);
  --glass-border: rgba(255,255,255,.15);

  /* Transitions */
  --ease: cubic-bezier(.16,1,.3,1);
  --dur: .55s;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── SITE PRELOADER ──────────────────────────────────────── */
body.preloading { overflow: hidden; }
.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 38%, #ffffff 0%, #f4f8f2 60%, #edf3ee 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity .35s ease, visibility .35s ease;
}
.site-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.site-preloader-inner {
  width: clamp(88px, 16vw, 138px);
  height: clamp(88px, 16vw, 138px);
  display: grid;
  place-items: center;
}
.site-preloader-logo {
  width: 100%;
  height: auto;
  animation: preloaderPulse 1.1s ease-in-out infinite;
  transform-origin: center;
  filter: drop-shadow(0 8px 24px rgba(14, 17, 23, .15));
}
@keyframes preloaderPulse {
  0% { transform: scale(.82); opacity: .9; }
  50% { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(.82); opacity: .9; }
}
@media (prefers-reduced-motion: reduce) {
  .site-preloader-logo { animation: none; }
}

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left  { transform: translateX(-36px); }
.reveal-right { transform: translateX(36px); }
.reveal-left.visible, .reveal-right.visible { transform: translateX(0); opacity: 1; }

/* Stagger delays */
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* ── UTILITY ──────────────────────────────────────────────── */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .85rem;
}
.section-label::before, .section-label::after {
  content:''; display: block;
  width: 28px; height: 1px;
  background: var(--gold);
  opacity: .6;
}
.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
}
.section-sub {
  max-width: 560px;
  color: #556;
  font-size: 1.05rem;
  margin-top: .6rem;
}
.center { text-align: center; }
.center .section-sub { margin: .6rem auto 0; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .78rem 1.9rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .03em;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content:'';
  position: absolute; inset: 0;
  background: rgba(255,255,255,.12);
  opacity: 0;
  transition: opacity .25s;
}
.btn:hover::after { opacity: 1; }
.btn-primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(31,166,68,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(31,166,68,.45); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #a06c14 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(200,146,42,.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,146,42,.45); }
.btn-outline {
  background: transparent;
  border: 2px solid #a06c14;
  color: var(--white);
  backdrop-filter: blur(4px);
}
.btn-outline:hover { background: #a06c14; border-color: rgba(255,255,255,.8); }
.btn-outline-dark {
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green);
}
.btn-outline-dark:hover { background: var(--green); color: var(--white); }

/* ── NAV ──────────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 1.1rem 0;
  transition: background .4s, padding .4s, box-shadow .4s;
}
#nav.scrolled {
  background: rgba(14,17,23,.95);
  backdrop-filter: blur(16px);
  padding: .7rem 0;
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 50px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 2.2rem;
}
.nav-links a {
  color: rgba(255,255,255,.88);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .03em;
  position: relative;
  transition: color .25s;
}
.nav-links a::after {
  content:''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: .5rem; }

/* Mobile nav */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed; top: 70px; left: 0; right: 0;
  background: rgba(14,17,23,.97);
  backdrop-filter: blur(20px);
  padding: 1.5rem 1.5rem 2rem;
  flex-direction: column;
  gap: 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  z-index: 999;
  transform: translateY(-20px);
  opacity: 0;
  transition: opacity .3s, transform .3s;
}
.nav-mobile.open { display: flex; transform: translateY(0); opacity: 1; }
.nav-mobile a {
  color: rgba(255,255,255,.88);
  font-size: 1.05rem;
  font-weight: 500;
  padding: .4rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

/* ── HERO ─────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8,12,22,.85) 0%,
    rgba(14,24,48,.7) 50%,
    rgba(8,12,22,.6) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  width: 90%; max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding-top: 7rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  padding: .45rem 1.1rem;
  border-radius: 50px;
  font-size: .8rem;
  color: var(--gold-light);
  letter-spacing: .06em;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}
.hero-badge span { color: rgba(255,255,255,.7); }
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.hero-title em {
  font-style: italic;
  color: var(--white);
  display: block;
}
.hero-typewriter {
  display: inline-block;
  min-width: 7ch;
  color: var(--gold-light);
  border-right: 2px solid var(--gold-light);
  padding-right: .14em;
  animation: heroCaretBlink .75s step-end infinite;
}
@keyframes heroCaretBlink {
  0%, 100% { border-right-color: var(--gold-light); }
  50% { border-right-color: transparent; }
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.78);
  max-width: 600px;
  margin: 0 auto 2.2rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.8rem; }

/* Trust bar */
.hero-trust {
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  font-weight: 500;
}
.trust-item .trust-icon { color: var(--gold); font-size: 1rem; }
.trust-divider { width: 1px; height: 20px; background: rgba(255,255,255,.2); }

/* Hero scroll arrow */
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .35rem;
  color: rgba(255,255,255,.5); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ── STATS ────────────────────────────────────────────────── */
#stats {
  background: linear-gradient(180deg, #f8fafc 0%, #eef4f9 100%);
  padding: var(--space-lg) 0;
  position: relative;
  overflow: hidden;
}
#stats::before {
  content:''; position: absolute; inset: 0;
  background: radial-gradient(circle at top, rgba(200,146,42,.08) 0%, transparent 55%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(14,17,23,.06);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.stat-item {
  background: rgba(255,255,255,.88);
  padding: 2.4rem 1.5rem;
  text-align: center;
  position: relative;
  transition: background .3s;
}
.stat-item:hover { background: rgba(255,255,255,1); }
.stat-icon {
  font-size: 2rem; margin-bottom: .6rem;
  display: block;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.stat-suffix { color: var(--gold); }
.stat-label {
  font-size: .82rem;
  color: rgba(14,17,23,.62);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: .4rem;
}

/* ── PACKAGES ─────────────────────────────────────────────── */
#packages { padding: var(--space-xl) 0; background: var(--off-white); }
.packages-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.8rem;
}
.pkg-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  position: relative;
  display: flex; flex-direction: column;
}
.pkg-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pkg-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.pkg-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.pkg-card:hover .pkg-img-wrap img { transform: scale(1.06); }
.pkg-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .28rem .75rem;
  border-radius: 50px;
}
.pkg-badge.hajj { background: var(--blue); }
.pkg-badge.ramadan { background: var(--green); }
.pkg-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.pkg-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .3rem;
}
.pkg-date {
  font-size: .82rem; color: var(--gold); font-weight: 600;
  display: flex; align-items: center; gap: .3rem;
  margin-bottom: 1rem;
}
.pkg-features {
  display: flex; flex-direction: column; gap: .4rem;
  margin-bottom: 1.2rem;
}
.pkg-feature {
  display: flex; align-items: center; gap: .5rem;
  font-size: .83rem; color: #556;
}
.pkg-feature .check { color: var(--green); font-size: .9rem; }

/* Pricing tiers */
.pkg-tiers {
  display: flex; flex-direction: column; gap: .4rem;
  border-top: 1px solid rgba(0,0,0,.07);
  padding-top: 1rem;
  margin-bottom: 1.2rem;
}
.pkg-tier-item {
  border-radius: var(--radius-sm);
  background: var(--mist);
  overflow: hidden;
}
.pkg-tier {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%;
  padding: .55rem .7rem;
  background: transparent;
  border-radius: 0;
  border: 0;
  font-size: .82rem;
  text-align: left;
  cursor: pointer;
  position: relative;
}
.pkg-tier::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: .7rem;
  color: #6b7280;
  margin-left: .7rem;
  transition: transform .25s var(--ease);
}
.pkg-tier-label { font-weight: 500; color: var(--slate); }
.pkg-tier-price { font-weight: 700; color: var(--ink); }
.pkg-tier.economy  { border-left: 3px solid var(--green); }
.pkg-tier.premium  { border-left: 3px solid var(--blue); }
.pkg-tier.luxury   { border-left: 3px solid var(--gold); }
.pkg-tier-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease), padding .35s var(--ease);
  padding: 0 .8rem;
}
.pkg-tier-panel ul {
  margin: 0;
  display: grid;
  gap: .35rem;
}
.pkg-tier-panel li {
  font-size: .78rem;
  color: #4b5563;
  padding-left: .95rem;
  position: relative;
}
.pkg-tier-panel li::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  left: 0;
  top: .45rem;
}
.pkg-tier-item.open .pkg-tier::after { transform: rotate(-180deg); }
.pkg-tier-item.open .pkg-tier-panel {
  max-height: 120px;
  padding: .2rem .8rem .65rem;
}

.pkg-card .btn { margin-top: auto; width: 100%; justify-content: center; }

/* ── WHY US ───────────────────────────────────────────────── */
#why-us {
  padding: var(--space-xl) 0;
  background: linear-gradient(180deg, var(--ink-mid) 0%, var(--ink) 100%);
  position: relative; overflow: hidden;
}
#why-us::before {
  content:''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(31,166,68,.12) 0%, transparent 70%);
}
#why-us .section-heading { color: var(--white); }
#why-us .section-sub { color: rgba(255,255,255,.6); }
.why-slider {
  position: relative;
  margin-top: 3rem;
}
.why-viewport { overflow: hidden; }
.why-track {
  display: flex;
  gap: 1.2rem;
  transition: transform .55s var(--ease);
}
.why-card {
  flex: 0 0 calc((100% - 2.4rem) / 3);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 2rem 1.6rem;
  transition: background .35s, border-color .35s, transform .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--green), var(--blue));
  transition: width .4s var(--ease);
}
.why-card:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.18); transform: translateY(-4px); }
.why-card:hover::after { width: 100%; }
.why-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(200,146,42,.2), rgba(200,146,42,.08));
  border: 1.5px solid var(--gold);
  box-shadow: 0 0 0 0 rgba(200,146,42,.55);
  animation: goldGlow 2.2s ease-in-out infinite;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
}
@keyframes goldGlow {
  0% { box-shadow: 0 0 0 0 rgba(200,146,42,.5), 0 0 0 0 rgba(200,146,42,.25); }
  70% { box-shadow: 0 0 0 8px rgba(200,146,42,0), 0 0 20px 2px rgba(200,146,42,.3); }
  100% { box-shadow: 0 0 0 0 rgba(200,146,42,0), 0 0 0 0 rgba(200,146,42,.15); }
}
.why-title {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 600;
  color: var(--white);
  margin-bottom: .5rem;
}
.why-desc { font-size: .87rem; color: rgba(255,255,255,.55); line-height: 1.65; }
.why-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(14,17,23,.78);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background .25s, transform .25s;
}
.why-nav:hover { background: var(--gold); transform: translateY(-50%) scale(1.05); }
.why-prev { left: -21px; }
.why-next { right: -21px; }
.why-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1rem;
}
.why-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  border: 0;
  cursor: pointer;
  transition: background .25s, width .25s;
}
.why-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ── DESTINATIONS ─────────────────────────────────────────── */
#destinations { padding: var(--space-xl) 0; background: var(--white); }
.dest-slider {
  position: relative;
  margin-top: 3rem;
}
.dest-viewport { overflow: hidden; }
.dest-track {
  display: flex;
  gap: 1.2rem;
  transition: transform .55s var(--ease);
}
.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  flex: 0 0 calc((100% - 2.4rem) / 3);
}
.dest-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.dest-card:hover img { transform: scale(1.06); }
.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,12,22,.85) 0%, rgba(8,12,22,.1) 60%);
}
.dest-body {
  position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
}
.dest-label {
  font-size: .72rem;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .3rem;
}
.dest-name {
  font-family: var(--font-heading);
  font-size: 1.4rem; font-weight: 700; color: var(--white);
}
.dest-desc { font-size: .83rem; color: rgba(255,255,255,.7); margin-top: .3rem; }
.dest-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(14,17,23,.78);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background .25s, transform .25s;
}
.dest-nav:hover { background: var(--gold); transform: translateY(-50%) scale(1.05); }
.dest-prev { left: -21px; }
.dest-next { right: -21px; }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
#testimonials { padding: var(--space-xl) 0; background: var(--off-white); }
.testimonials-wrap { position: relative; margin-top: 3rem; overflow: hidden; }
.testimonials-track {
  display: flex; gap: 1.6rem;
  transition: transform .55s var(--ease);
}
.testi-card {
  flex: 0 0 calc(33.333% - 1.1rem);
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.05);
  transition: box-shadow .3s;
}
.testi-card:hover { box-shadow: var(--shadow-md); }
.testi-stars { color: #f5a623; font-size: .95rem; letter-spacing: .05em; margin-bottom: .85rem; }
.testi-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: #334;
  line-height: 1.75;
  margin-bottom: 1.2rem;
}
.testi-author { display: flex; align-items: center; gap: .85rem; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-pale);
}
.testi-avatar-placeholder {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--blue));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: .95rem;
  flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: .9rem; color: var(--ink); }
.testi-loc  { font-size: .78rem; color: #889; margin-top: .1rem; }
.testi-google { font-size: .7rem; color: #aaa; margin-left: auto; display: flex; align-items: center; gap: .25rem; }
.testi-google svg { display: none; }

.testi-controls {
  display: flex; justify-content: center; align-items: center; gap: 1rem;
  margin-top: 2.2rem;
}
.testi-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--slate);
  transition: all .25s;
}
.testi-btn:hover { background: var(--green); border-color: var(--green); color: var(--white); }
.testi-dots { display: flex; gap: .5rem; }
.testi-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(0,0,0,.15);
  transition: background .25s, width .25s;
  cursor: pointer;
}
.testi-dot.active { background: var(--green); width: 24px; border-radius: 4px; }

/* ── VIDEO SECTION ────────────────────────────────────────── */
#video-section {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-mid) 100%);
  position: relative; overflow: hidden;
}
.video-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center;
}
.video-carousel {
  position: relative;
}
.video-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.video-track {
  display: flex;
  transition: transform .55s var(--ease);
}
.video-item {
  position: relative;
  flex: 0 0 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.video-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-item::before {
  content:'';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,12,22,.7) 0%, rgba(8,12,22,.18) 70%);
}
.video-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.5);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--white);
  transition: all .3s;
  cursor: pointer;
  z-index: 2;
}
.video-play:hover { background: var(--green); border-color: var(--green); transform: translate(-50%, -50%) scale(1.1); }
.video-chip {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  color: var(--white);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(8,12,22,.5);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: .4rem .8rem;
}
.video-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(8,12,22,.82);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.video-prev { left: -20px; }
.video-next { right: -20px; }
.video-nav:hover { background: var(--gold); }
.video-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: .9rem;
}
.video-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
  border: 0;
}
.video-dot.active {
  width: 24px;
  border-radius: 6px;
  background: var(--gold);
}
.video-text .section-heading { color: var(--white); }
.video-text .section-sub { color: rgba(255,255,255,.6); }
.video-list {
  margin: 1.8rem 0 2.2rem;
  display: flex; flex-direction: column; gap: .7rem;
}
.video-list li {
  display: flex; align-items: center; gap: .7rem;
  font-size: .9rem; color: rgba(255,255,255,.75);
}
.video-list li::before {
  content:'✓';
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 700; color: var(--white);
  flex-shrink: 0;
}

/* Video modal */
#video-modal {
  display: none;
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.88);
  align-items: center; justify-content: center;
  padding: 1.5rem;
}
#video-modal.open { display: flex; }
.modal-inner {
  width: 100%; max-width: 820px;
  position: relative;
}
.modal-close {
  position: absolute; top: -44px; right: 0;
  color: var(--white); font-size: 1.6rem;
  opacity: .7; transition: opacity .2s;
}
.modal-close:hover { opacity: 1; }
.modal-video {
  aspect-ratio: 16/9; background: #000; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); font-size: 1rem;
}
.modal-video iframe { width: 100%; height: 100%; border: none; border-radius: var(--radius-md); }
.modal-video video { width: 100%; height: 100%; border: none; border-radius: var(--radius-md); }

/* ── ACCREDITATIONS ───────────────────────────────────────── */
#accreditations { padding: var(--space-md) 0 var(--space-lg); background: var(--white); }
.accred-marquee {
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius-lg);
  padding: 1.1rem 0;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(244,246,249,.7), rgba(255,255,255,.95));
}
.accred-track {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  width: max-content;
  animation: accredSlide 22s linear infinite;
}
.accred-logo {
  width: 150px;
  height: 74px;
  object-fit: contain;
  filter: saturate(1.05) contrast(1.04);
}
@keyframes accredSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── FAQ ──────────────────────────────────────────────────── */
#faq { padding: var(--space-xl) 0; background: var(--off-white); }
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-top: 3rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow .25s;
}
.faq-item.open { box-shadow: var(--shadow-md); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.3rem 1.5rem;
  font-weight: 600; font-size: .95rem; color: var(--ink);
  cursor: pointer; gap: 1rem;
  transition: color .2s;
}
.faq-q:hover { color: var(--green); }
.faq-icon {
  flex-shrink: 0; width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--mist);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: var(--green);
  transition: transform .3s, background .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--green); color: var(--white); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease);
  font-size: .9rem; color: #556; line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 1.5rem 1.3rem; }

/* ── BOOKING FORM ─────────────────────────────────────────── */
#cta-section {
  padding: var(--space-xl) 0;
  background: linear-gradient(180deg, #f7f9f4 0%, #fff 55%, #f2f6f0 100%);
  position: relative;
  overflow: hidden;
}
#cta-section::before {
  content: '';
  position: absolute;
  inset: -140px auto auto -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31,166,68,.12) 0%, transparent 70%);
}
#cta-section::after {
  content: '';
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,146,42,.14) 0%, transparent 72%);
}
.booking-shell { position: relative; z-index: 1; }
.booking-shell {
  width: min(1120px, 100%);
  margin: 0 auto;
}
.booking-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.5rem;
}
.booking-intro .section-heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.booking-intro .section-sub {
  margin: 0 auto;
  color: rgba(14,17,23,.68);
}
.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 1fr);
  gap: 1.6rem;
  align-items: start;
}
.booking-form {
  display: grid;
  gap: 1.15rem;
  min-width: 0;
}
.booking-step {
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(14,17,23,.07);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
}
.booking-step-head { margin-bottom: .95rem; }
.booking-step-head span {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-bottom: .45rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
}
.booking-step-head h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--ink);
}
.booking-card-row {
  display: flex;
  gap: .8rem;
  overflow-x: auto;
  padding-bottom: .2rem;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}
.booking-card-row::-webkit-scrollbar { height: 8px; }
.booking-card-row::-webkit-scrollbar-thumb {
  background: rgba(14,17,23,.18);
  border-radius: 999px;
}
.booking-option {
  flex: 0 0 clamp(184px, 26vw, 220px);
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid rgba(14,17,23,.1);
  border-radius: 20px;
  padding: 1rem;
  text-align: left;
  cursor: pointer;
  display: grid;
  gap: .4rem;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.booking-option:hover { transform: translateY(-2px); border-color: rgba(31,166,68,.34); }
.booking-option.active {
  border-color: var(--green);
  background: linear-gradient(180deg, #ffffff 0%, #f2fbf5 100%);
  box-shadow: 0 16px 30px rgba(31,166,68,.12);
}
.booking-option-kicker {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
}
.booking-option strong {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  color: var(--ink);
}
.booking-option-price {
  font-size: .84rem;
  color: rgba(14,17,23,.64);
}
.occupancy-option {
  flex: 0 0 clamp(150px, 22vw, 176px);
  min-height: 108px;
}
.occupancy-option strong { font-size: 1.2rem; }
.occupancy-option span { font-size: .84rem; color: rgba(14,17,23,.64); }
.booking-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .95rem;
}
.booking-field {
  display: grid;
  gap: .35rem;
}
.booking-field span {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(14,17,23,.64);
}
.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  border: 1px solid rgba(14,17,23,.12);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: .92rem 1rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}
.booking-field textarea { resize: vertical; min-height: 120px; }
.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(31,166,68,.12);
}
.booking-field-full { grid-column: 1 / -1; }
.booking-submit {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
}
.booking-note {
  margin: .55rem 0 0;
  font-size: .84rem;
  color: rgba(255,255,255,.74);
  text-align: center;
}
.booking-preview {
  position: sticky;
  top: 100px;
  align-self: start;
  width: 100%;
  min-width: 0;
  background: linear-gradient(180deg, var(--ink) 0%, #17212d 100%);
  color: rgba(255,255,255,.8);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.booking-preview .section-label { color: rgba(255,255,255,.72); }
.booking-preview h3 {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.booking-summary-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  padding: 1rem;
}
.booking-summary-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .95rem 1rem;
}
.booking-summary-row {
  display: grid;
  gap: .15rem;
}
.booking-summary-row-full { grid-column: 1 / -1; }
.booking-summary-row dt {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.booking-summary-row dd {
  margin: 0;
  color: var(--white);
  font-size: .95rem;
  line-height: 1.5;
  word-break: break-word;
}

/* ── LEGAL PAGES ─────────────────────────────────────────── */
.legal-page {
  background: linear-gradient(180deg, #f8fbf7 0%, var(--white) 28%, #f7f9fc 100%);
  min-height: 60vh;
}
.legal-hero {
  padding: clamp(5.5rem, 9vw, 8rem) 0 1.6rem;
}
.legal-body {
  padding: 0 0 var(--space-xl);
}
.legal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}
.legal-card {
  background: var(--white);
  border: 1px solid rgba(14,17,23,.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: clamp(1.15rem, 2.3vw, 2rem);
}
.legal-card h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.1vw, 1.55rem);
  line-height: 1.25;
  margin: 1.15rem 0 .5rem;
  color: var(--ink);
}
.legal-card h2:first-of-type {
  margin-top: 0;
}
.legal-card p {
  font-size: .97rem;
  color: #374151;
  line-height: 1.75;
}
.legal-card ul {
  list-style: disc;
  margin: .45rem 0 .95rem 1.15rem;
  color: #374151;
}
.legal-card li {
  margin-bottom: .45rem;
}

/* ── FOOTER ───────────────────────────────────────────────── */
#footer {
  background: var(--ink);
  color: rgba(255,255,255,.65);
  padding: var(--space-lg) 0 var(--space-md);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand img { height: 48px; margin-bottom: 1.2rem; }
.footer-brand p { font-size: .88rem; line-height: 1.75; max-width: 280px; }
.footer-social {
  display: flex; gap: .7rem; margin-top: 1.4rem; flex-wrap: wrap;
}
.social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; color: rgba(255,255,255,.6);
  transition: all .25s;
}
.social-link:hover { background: var(--green); border-color: var(--green); color: var(--white); }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.3rem;
}
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul a {
  font-size: .87rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
  display: flex; align-items: center; gap: .4rem;
}
.footer-col ul a:hover { color: var(--gold-light); }
.footer-col ul a::before {
  content:'›'; color: var(--green); font-size: 1.1rem; opacity: .7;
}
.footer-contact li {
  display: flex; align-items: flex-start; gap: .7rem;
  font-size: .87rem; color: rgba(255,255,255,.55);
  margin-bottom: .85rem;
}
.footer-contact .icon { color: var(--gold); margin-top: .15rem; }

.footer-bottom {
  padding-top: 1.8rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: .8rem;
}
.footer-bottom a { color: var(--gold-light); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .why-card { flex-basis: calc((100% - 1.2rem) / 2); }
  .why-prev { left: -12px; }
  .why-next { right: -12px; }
  .dest-card { flex-basis: calc((100% - 1.2rem) / 2); }
  .dest-prev { left: -12px; }
  .dest-next { right: -12px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .video-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .video-prev { left: 8px; }
  .video-next { right: 8px; }
  .booking-layout { grid-template-columns: 1fr; gap: 1.2rem; }
  .booking-preview { position: static; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-header { flex-direction: column; }
  .testi-card { flex: 0 0 100%; }
  .faq-grid { grid-template-columns: 1fr; }
  .why-card { flex-basis: 100%; }
  .why-nav { top: auto; bottom: -3.2rem; transform: none; }
  .why-nav:hover { transform: scale(1.05); }
  .why-prev { left: calc(50% - 50px); }
  .why-next { right: calc(50% - 50px); }
  .dest-card { flex-basis: 100%; }
  .dest-nav { top: auto; bottom: -3.2rem; transform: none; }
  .dest-nav:hover { transform: scale(1.05); }
  .dest-prev { left: calc(50% - 50px); }
  .dest-next { right: calc(50% - 50px); }
  .footer-grid { grid-template-columns: 1fr; }
  .accred-logo { width: 120px; height: 62px; }
  .booking-intro { margin-bottom: 1.5rem; }
  .booking-step-head h3 { font-size: 1.14rem; }
  .booking-fields { grid-template-columns: 1fr; }
  .booking-summary-list { grid-template-columns: 1fr; }
  .booking-option { flex-basis: clamp(172px, 58vw, 210px); }
  .legal-hero { padding-top: 5.2rem; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-trust { gap: 1rem; }
  .trust-divider { display: none; }
  .booking-step,
  .booking-preview { padding: 1rem; }
  .booking-card-row { gap: .65rem; }
  .booking-option { flex-basis: 86%; }
  .booking-summary-card { padding: .85rem; }
}

@media (max-width: 490px) {
  #cta-section .container {
    width: 100%;
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }
  .booking-shell,
  .booking-layout,
  .booking-form,
  .booking-step,
  .booking-preview,
  .booking-summary-card,
  .booking-summary-list {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .booking-layout {
    gap: .95rem;
  }
  .booking-step,
  .booking-preview {
    border-radius: 18px;
    padding: .9rem;
  }
  .booking-card-row {
    gap: .55rem;
    overscroll-behavior-x: contain;
  }
  .booking-option {
    flex: 0 0 calc(100% - .2rem);
    max-width: calc(100% - .2rem);
  }
  .booking-submit {
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: .86rem;
  }
}

/* ── BACK TO TOP ──────────────────────────────────────────── */
#back-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(31,166,68,.4);
  opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s;
  transform: translateY(10px);
}
#back-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
#back-top:hover { background: var(--green-dark); }

/* ── WHATSAPP FLOAT ───────────────────────────────────────── */
#whatsapp-float {
  position: fixed; bottom: 2rem; left: 2rem; z-index: 500;
  background: #25D366;
  color: var(--white);
  padding: .7rem 1.2rem;
  border-radius: 50px;
  display: flex; align-items: center; gap: .5rem;
  font-size: .85rem; font-weight: 600;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  transition: transform .25s, box-shadow .25s;
}
#whatsapp-float:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.45); }
