/* ─── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #f8f5f0;
  color: #1a2e1a;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── CSS VARIABLES ────────────────────────────────────── */
:root {
  --emerald-950: #022c22;
  --emerald-900: #064e3b;
  --emerald-800: #065f46;
  --emerald-700: #047857;
  --emerald-600: #059669;
  --emerald-200: #a7f3d0;
  --amber-600:   #d97706;
  --amber-500:   #f59e0b;
  --amber-400:   #fbbf24;
  --amber-300:   #fcd34d;
  --gold:        #c9a84c;
  --cream:       #fdf8f0;
  --slate-50:    #f8fafc;
  --slate-100:   #f1f5f9;
  --slate-600:   #475569;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
}


/* ─── INTRO ANIMATION ──────────────────────────────────── */
#preloader {
  position: fixed; inset: 0; z-index: 300;
  background: #010c06;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
#preloader.pre-gone { display: none; }

#preCanvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none;
}

/* Mosque silhouette */
.intro-kaaba {
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%) translateY(80px);
  width: min(800px, 100vw);
  opacity: 0;
  transition: transform 1.6s cubic-bezier(.2,.9,.3,1),
              opacity 1.2s ease;
  z-index: 2; line-height: 0;
}
.intro-kaaba svg { display: block; width: 100%; }
.intro-kaaba.in { transform: translateX(-50%) translateY(0); opacity: 1; }

/* Center stack */
.intro-center {
  position: relative; z-index: 10;
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
}

/* Orbit ring */
.intro-orbit {
  position: absolute;
  width: 200px; height: 200px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.intro-orbit-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px dashed rgba(245,158,11,0.15);
  animation: orbitSpin 12s linear infinite;
}
.intro-orbit-dot {
  position: absolute; top: -8px; left: 50%;
  transform: translateX(-50%);
  font-size: 14px; color: var(--amber-400);
  animation: orbitSpin 12s linear infinite;
  transform-origin: 50% 108px;
  filter: drop-shadow(0 0 6px rgba(245,158,11,0.8));
}
@keyframes orbitSpin { to { transform: rotate(360deg); } }

/* Logo */
.intro-logo-wrap {
  position: relative; width: 110px; height: 110px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.intro-ring {
  position: absolute; border-radius: 50%;
  border: 1.5px solid transparent;
}
.intro-ring-1 {
  inset: -10px;
  border-top-color: var(--amber-400);
  border-right-color: rgba(245,158,11,0.2);
  animation: spin 2.2s linear infinite;
}
.intro-ring-2 {
  inset: -20px;
  border-bottom-color: rgba(245,158,11,0.25);
  border-left-color: rgba(245,158,11,0.1);
  animation: spin 4s linear infinite reverse;
}
.intro-ring-3 {
  inset: -32px;
  border-top-color: rgba(245,158,11,0.1);
  border-right-color: rgba(245,158,11,0.06);
  animation: spin 7s linear infinite;
}
.intro-logo-glow {
  position: absolute; inset: -20px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,0.2) 0%, transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}
.intro-logo-img {
  width: 92px; height: 92px; border-radius: 50%;
  object-fit: contain; background: white; padding: 7px;
  position: relative; z-index: 1;
  box-shadow: 0 0 0 2px rgba(245,158,11,0.3),
              0 0 40px rgba(245,158,11,0.3),
              0 0 100px rgba(245,158,11,0.12);
  animation: logoFloat 4s ease-in-out infinite;
}
@keyframes logoFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Brand letters */
.intro-brand {
  display: flex; gap: 3px; letter-spacing: 0.3em;
  margin-bottom: 2px;
}
.intro-letter {
  font-family: var(--serif); font-size: 2.6rem; font-weight: 700;
  color: white;
  opacity: 0; transform: translateY(20px);
  animation: letterIn 0.5s calc(0.6s + var(--i) * 0.08s) cubic-bezier(.2,.9,.3,1) forwards;
}
.intro-letter-gold {
  color: var(--amber-400);
  text-shadow: 0 0 20px rgba(245,158,11,0.7),
               0 0 60px rgba(245,158,11,0.3);
}
@keyframes letterIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Animated divider */
.intro-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 4px 0;
  opacity: 0; animation: fadeIn 0.6s 1.3s ease forwards;
}
@keyframes fadeIn { to { opacity: 1; } }

.intro-line {
  height: 1px; width: 0;
  background: linear-gradient(90deg, transparent, rgba(245,158,11,0.5));
  animation: lineGrow 0.8s 1.4s ease forwards;
}
.intro-line-r {
  background: linear-gradient(270deg, transparent, rgba(245,158,11,0.5));
}
@keyframes lineGrow { to { width: 80px; } }
.intro-emblem {
  color: var(--amber-400); font-size: 0.6rem;
  text-shadow: 0 0 10px rgba(245,158,11,0.8);
  animation: emblemSpin 8s linear infinite;
}
@keyframes emblemSpin { to { transform: rotate(360deg); } }

/* Arabic */
.intro-arabic {
  font-size: 1.15rem; color: rgba(255,255,255,0.5);
  direction: rtl; font-family: serif;
  letter-spacing: 0.05em;
  opacity: 0; animation: fadeIn 0.7s 1.6s ease forwards;
}

/* Tagline typing */
.intro-tagline {
  font-family: var(--serif); font-style: italic;
  font-size: 0.78rem; color: var(--emerald-200);
  letter-spacing: 0.1em; opacity: 0.75;
  min-height: 1.3em; min-width: 1px;
  opacity: 0; animation: fadeIn 0.5s 1.8s ease forwards;
}
.intro-tagline::after {
  content: '|';
  color: var(--amber-400);
  animation: blink 0.7s step-end infinite;
}

.intro-subtitle {
  font-family: var(--serif);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  animation: introSubIn 0.65s 1.05s cubic-bezier(.2,.9,.3,1) forwards;
}

@keyframes introSubIn {
  to { opacity: 1; transform: translateY(0); }
}

.intro-highlights {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
  max-width: 520px;
  opacity: 0;
  transform: translateY(10px);
  animation: introSubIn 0.65s 1.18s cubic-bezier(.2,.9,.3,1) forwards;
}

.intro-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.82);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.intro-chip-gold {
  border-color: rgba(245,158,11,0.35);
  background: rgba(245,158,11,0.12);
  color: var(--amber-400);
  box-shadow: 0 10px 34px rgba(245,158,11,0.08);
}

/* Promo badge */
.intro-promo-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 18px; border-radius: 50px;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.25);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--amber-400);
  opacity: 0; transform: scale(0.85);
  animation: badgeIn 0.6s 2s cubic-bezier(.2,.9,.3,1) forwards;
  margin-top: 4px;
}
@keyframes badgeIn {
  to { opacity: 1; transform: scale(1); }
}
.intro-promo-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber-400);
  box-shadow: 0 0 8px var(--amber-400);
  animation: blink 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

/* Progress bar */
.intro-progress {
  margin-top: 14px; width: 180px;
  opacity: 0; animation: fadeIn 0.5s 1s ease forwards;
}

.intro-progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.58);
}

.intro-progress-pct {
  color: rgba(255,255,255,0.82);
  font-weight: 800;
  letter-spacing: 0.1em;
}

.intro-bar-track {
  height: 2px; background: rgba(255,255,255,0.06);
  border-radius: 2px; position: relative;
}
.intro-bar-fill {
  position: absolute; left: 0; top: 0; bottom: 0; width: 0%;
  background: linear-gradient(90deg, var(--emerald-700), var(--amber-400));
  border-radius: 2px; transition: width 0.12s ease;
}
.intro-bar-head {
  position: absolute; top: -4px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--amber-400);
  box-shadow: 0 0 12px var(--amber-400), 0 0 24px rgba(245,158,11,0.5);
  left: 0%; transition: left 0.12s ease;
  transform: translateX(-50%);
}

/* Particle burst */
.particle-burst {
  position: absolute; inset: 0; z-index: 5; pointer-events: none;
}
.p-particle {
  position: absolute; border-radius: 50%;
  animation: particleFly linear forwards;
  pointer-events: none;
}
@keyframes particleFly {
  0%   { transform: translate(0,0) scale(1); opacity: 1; }
  100% { transform: translate(var(--tx), var(--ty)) scale(0); opacity: 0; }
}

/* ── EXIT CURTAIN (split up/down) ── */
.intro-curtain-top,
.intro-curtain-bottom {
  position: absolute; left: 0; right: 0; z-index: 80;
  background: var(--emerald-950);
  transition: transform 0s;
}
.intro-curtain-top {
  top: 0; height: 50%;
  transform: translateY(0%);
  transform-origin: top;
}
.intro-curtain-bottom {
  bottom: 0; height: 50%;
  transform: translateY(0%);
  transform-origin: bottom;
}
.intro-curtain-top.open {
  transform: translateY(-100%);
  transition: transform 0.7s cubic-bezier(.8,0,.15,1);
}
.intro-curtain-bottom.open {
  transform: translateY(100%);
  transition: transform 0.7s 0.05s cubic-bezier(.8,0,.15,1);
}

/* Flash overlay */
.intro-flash {
  position: absolute; inset: 0; z-index: 90;
  background: white; opacity: 0; pointer-events: none;
  transition: opacity 0s;
}
.intro-flash.go { opacity: 0.25; transition: opacity 0.12s ease; }
.intro-flash.fade { opacity: 0; transition: opacity 0.4s ease; }

.intro-skip {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 20;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.82);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.intro-skip.is-on {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.intro-skip:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(245,158,11,0.28);
  color: white;
}

/* Page entrance */
#hero { opacity: 0; transform: scale(1.02); transition: none; }
#hero.page-in {
  opacity: 1; transform: scale(1);
  transition: opacity 1s 0.1s ease, transform 1s 0.1s cubic-bezier(.2,.9,.3,1);
}

/* ─── NAVBAR ───────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  padding: 20px 0;
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
}
#navbar.scrolled {
  background: rgba(2, 44, 34, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  overflow:hidden;
}
.nav-logo-text {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 700;
  color: white; letter-spacing: 0.02em;
}
.nav-logo-text span { color: var(--amber-400); }
.nav-links {
  display: flex; align-items: center; gap: 36px; list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 500; transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--amber-400);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--amber-400); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--amber-500); color: var(--emerald-950) !important;
  padding: 10px 24px !important; border-radius: 50px;
  font-weight: 700 !important; letter-spacing: 0.05em !important;
  transition: all 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--amber-400) !important; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245,158,11,0.4); }

/* Mobile hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; transition: all 0.3s; border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
#mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: var(--emerald-950);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 28px; padding-top: 80px;
}
#mobile-menu.open { display: flex; }
#mobile-menu a {
  font-family: var(--serif); font-size: 2rem; color: white;
  text-decoration: none; transition: color 0.2s;
}
#mobile-menu a:hover { color: var(--amber-400); }
#mobile-menu .mob-cta {
  padding: 14px 40px; background: var(--amber-500);
  color: var(--emerald-950); border-radius: 50px;
  font-family: var(--sans); font-size: 1rem; font-weight: 700;
}

/* ─── MARQUEE ──────────────────────────────────────────── */
.marquee-bar {
  background: var(--emerald-800);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden; padding: 12px 0;
  position: relative; z-index: 10;
}
.marquee-track {
  display: flex; gap: 0;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 0 24px; flex-shrink: 0;
}
.marquee-text-gold {
  font-family: var(--serif); color: var(--amber-400);
  font-size: 0.95rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}
.marquee-text-white { color: white; font-size: 0.95rem; }
.marquee-sep { color: var(--emerald-600); }
.marquee-snowflake {
  color: white; opacity: 0.7;
  animation: snowspin 4s linear infinite;
  font-size: 0.9rem;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes snowspin { to { transform: rotate(360deg); } }

/* ─── HERO ─────────────────────────────────────────────── */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 20s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1.18); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(2,44,34,0.75) 0%,
    rgba(6,78,59,0.55) 40%,
    rgba(2,44,34,0.92) 100%
  );
}
/* Decorative arc at bottom */
.hero-arc {
  position: absolute; bottom: -2px; left: 0; width: 100%; z-index: 2;
  line-height: 0;
}
.hero-arc svg { display: block; width: 100%; }

/* Floating snow particles */
.snow { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.flake {
  position: absolute;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  animation: fall linear infinite;
}
@keyframes fall {
  0% { transform: translateY(-10px) translateX(0) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.4; }
  100% { transform: translateY(100vh) translateX(40px) rotate(360deg); opacity: 0; }
}

.hero-content {
  position: relative; z-index: 3;
  text-align: center; padding: 120px 24px 160px;
  max-width: 900px; margin: 0 auto;
  animation: heroIn 1s cubic-bezier(.2,.9,.3,1) both;
}
@keyframes heroIn { from { opacity:0; transform: translateY(30px); } to { opacity:1; transform:translateY(0); } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px;
  border: 1px solid rgba(251,191,36,0.4);
  border-radius: 50px;
  background: rgba(2,44,34,0.5);
  backdrop-filter: blur(8px);
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber-400);
  box-shadow: 0 0 8px var(--amber-400);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero-badge-text {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--amber-400);
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6.5rem);
  color: white; font-weight: 700;
  line-height: 1.05; letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.hero-title-accent {
  font-style: italic;
  background: linear-gradient(90deg, var(--amber-300), var(--amber-600), var(--amber-300));
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }

.hero-sub {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: rgba(255,255,255,0.8); margin-bottom: 44px;
}

.hero-stats {
  display: flex; justify-content: center; gap: 16px;
  flex-wrap: wrap; margin-bottom: 44px;
}
.hero-stat {
  display: flex; flex-direction: column;
  align-items: center; gap: 4px;
  min-width: 180px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px; padding: 16px 24px;
  transition: all 0.3s;
}
.hero-stat:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-3px);
}
.hero-stat-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--amber-400);
}
.hero-stat-value { font-size: 1rem; color: white; font-weight: 500; }

.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 40px;
  background: var(--amber-500); color: var(--emerald-950);
  font-weight: 700; font-size: 1rem; letter-spacing: 0.03em;
  border-radius: 50px; text-decoration: none;
  box-shadow: 0 0 40px rgba(245,158,11,0.4), 0 8px 24px rgba(0,0,0,0.2);
  transition: all 0.3s;
}
.hero-cta:hover {
  background: var(--amber-400);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 60px rgba(245,158,11,0.6), 0 12px 32px rgba(0,0,0,0.25);
}
.hero-cta svg { transition: transform 0.3s; }
.hero-cta:hover svg { transform: translateX(4px); }

.scroll-hint {
  position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.scroll-hint span {
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); font-weight: 600;
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 2px solid rgba(255,255,255,0.3); border-radius: 12px;
  display: flex; justify-content: center; padding-top: 5px;
}
.scroll-wheel {
  width: 3px; height: 6px; border-radius: 2px;
  background: rgba(255,255,255,0.5);
  animation: scrollDown 1.6s ease-in-out infinite;
}
@keyframes scrollDown { 0%{transform:translateY(0);opacity:1} 100%{transform:translateY(10px);opacity:0} }

/* ─── SECTION SHARED ───────────────────────────────────── */
.section-header {
  text-align: center; margin-bottom: 64px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--amber-600);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.2;
  color: var(--emerald-950);
}
.section-title.light { color: white; }
.section-rule {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--amber-500), var(--amber-300));
  border-radius: 2px; margin: 18px auto 0;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ─── PACKAGE DETAILS ──────────────────────────────────── */
#package {
  padding: 100px 0;
  background: var(--cream);
  position: relative; overflow: hidden;
}
#package::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(6,78,59,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

.feature-card {
  background: white;
  border-radius: 24px;
  padding: 36px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--emerald-700), var(--emerald-600));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.12); }
.feature-card:hover::before { transform: scaleX(1); }

.card-icon-wrap {
  width: 60px; height: 60px; border-radius: 18px;
  background: #ecfdf5;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: background 0.3s;
}
.feature-card:hover .card-icon-wrap { background: var(--emerald-800); }
.card-icon-wrap svg { color: var(--emerald-700); transition: color 0.3s; }
.feature-card:hover .card-icon-wrap svg { color: white; }

.card-title {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 700;
  color: var(--emerald-950); margin-bottom: 6px;
}
.card-stars { color: var(--amber-500); font-size: 0.8rem; font-weight: 700; margin-bottom: 12px; }
.card-body { color: var(--slate-600); font-size: 0.9rem; line-height: 1.7; }

/* ─── INCLUSIONS ───────────────────────────────────────── */
#itinerary {
  padding: 100px 0;
  background: var(--emerald-950);
  position: relative; overflow: hidden;
}
#itinerary::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.inclusions-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 48px; flex-wrap: wrap; gap: 20px;
}
.inclusions-title-block h3 {
  font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700; color: white; margin-bottom: 6px;
}
.inclusions-title-block p { color: var(--emerald-200); font-size: 0.9rem; opacity: 0.8; }

.toggle-group {
  display: flex; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px; padding: 4px;
}
.toggle-btn {
  padding: 10px 24px; border-radius: 50px; border: none;
  font-family: var(--sans); font-size: 0.85rem; font-weight: 600;
  cursor: pointer; transition: all 0.25s; color: rgba(255,255,255,0.6);
  background: transparent;
}
.toggle-btn.active-reg { background: var(--amber-500); color: var(--emerald-950); }
.toggle-btn.active-priv { background: var(--emerald-600); color: white; }

.inclusions-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}

/* Photo collage */
.photo-collage {
  position: relative; height: 420px;
}
.collage-img {
  position: absolute;
  border-radius: 20px; object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border: 3px solid rgba(255,255,255,0.08);
}
.collage-img-1 { width: 54%; height: 65%; top: 0; left: 0; z-index: 1; }
.collage-img-2 { width: 54%; height: 65%; bottom: 0; right: 0; z-index: 1; }
.collage-badge {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 120px; height: 120px; border-radius: 50%;
  background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 6px rgba(245,158,11,0.15);
  border: 3px solid var(--emerald-950);
}
.collage-badge-num {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 700;
  color: var(--emerald-950); line-height: 1;
}
.collage-badge-text { font-size: 0.62rem; font-weight: 700; color: var(--emerald-900); letter-spacing: 0.08em; text-transform: uppercase; }

/* Include/Exclude lists */
.lists-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.list-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 28px 24px;
  backdrop-filter: blur(4px);
}
.list-header {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif); font-size: 1.1rem; font-weight: 700;
  margin-bottom: 20px;
}
.list-header.include { color: var(--amber-400); }
.list-header.exclude { color: #f87171; }
.list-header-bar { width: 4px; height: 22px; border-radius: 2px; }
.list-header.include .list-header-bar { background: var(--amber-400); }
.list-header.exclude .list-header-bar { background: #f87171; }

.list-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.85rem; color: rgba(255,255,255,0.75); line-height: 1.5;
}
.list-item:last-child { border-bottom: none; }
.list-icon { flex-shrink: 0; margin-top: 1px; }
.check-icon { color: #34d399; }
.x-icon { color: #f87171; }

/* ─── PRICING ──────────────────────────────────────────── */
#pricing {
  padding: 100px 0;
  background: var(--slate-100);
  position: relative;
}

.pricing-card {
  background: white;
  border-radius: 32px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.1);
  overflow: hidden;
  display: grid; grid-template-columns: 420px 1fr;
  max-width: 960px; margin: 0 auto;
}

.pricing-left {
  background: linear-gradient(150deg, var(--emerald-900) 0%, var(--emerald-800) 100%);
  padding: 52px 44px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
}
.pricing-left::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  background: var(--amber-500); opacity: 0.12;
  filter: blur(40px);
}
.pricing-left::after {
  content: '';
  position: absolute; bottom: -60px; left: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: var(--emerald-600); opacity: 0.3;
  filter: blur(40px);
}
.pricing-eyebrow {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--amber-400);
  margin-bottom: 8px; position: relative; z-index: 1;
}
.pricing-tag {
  font-family: var(--serif); font-size: 1.1rem; color: rgba(255,255,255,0.7);
  margin-bottom: 32px; position: relative; z-index: 1;
}
.pricing-amount {
  display: flex; align-items: baseline; gap: 4px;
  position: relative; z-index: 1;
}
.pricing-currency { font-size: 1.6rem; font-weight: 700; color: var(--amber-400); }
.pricing-number {
  font-family: var(--serif); font-size: 5.5rem; font-weight: 700;
  color: white; line-height: 1; letter-spacing: -0.03em;
}
.pricing-unit { font-size: 1.6rem; font-weight: 700; color: var(--amber-400); }
.pricing-note { color: rgba(255,255,255,0.5); font-size: 0.8rem; margin-top: 8px; position: relative; z-index: 1; }

.pricing-divider {
  height: 1px; background: rgba(255,255,255,0.1);
  margin: 32px 0; position: relative; z-index: 1;
}

.seat-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,158,11,0.15); border: 1px solid rgba(245,158,11,0.3);
  border-radius: 50px; padding: 8px 16px;
  font-size: 0.8rem; color: var(--amber-400); font-weight: 600;
  position: relative; z-index: 1;
}
.seat-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber-400);
  animation: blink 2s ease-in-out infinite;
}

.pricing-right {
  padding: 52px 44px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.why-title {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 700;
  color: var(--emerald-950); margin-bottom: 28px;
}
.why-list { list-style: none; margin-bottom: 36px; }
.why-item {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.05);
}
.why-item:last-child { border-bottom: none; }
.why-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: #ecfdf5; color: var(--emerald-700);
  font-weight: 700; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-text { color: var(--slate-600); font-size: 0.9rem; }

.cta-group { display: flex; flex-direction: column; gap: 14px; }
.btn-primary {
  display: block; text-align: center;
  padding: 13px 24px;
  background: var(--amber-500); color: var(--emerald-950);
  font-weight: 700; font-size: 0.9rem; border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(245,158,11,0.3);
  transition: all 0.25s;
}
.btn-primary:hover { background: var(--amber-400); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245,158,11,0.4); }

/* Jobs widget */
.jobs-box {
  width: 100%;
  background: #f0fdf4; border: 1px solid #bbf7d0;
  border-radius: 16px; padding: 18px;
}
.jobs-title { font-size: 0.85rem; font-weight: 700; color: var(--emerald-900); margin-bottom: 12px; }
.job-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 6px 0;
  transition: transform 0.2s;
}
.job-item:hover { transform: translateX(4px); }
.job-num {
  width: 24px; height: 24px; border-radius: 50%;
  background: #dcfce7; color: var(--emerald-700);
  font-size: 0.7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.job-name { font-size: 0.78rem; font-weight: 600; color: var(--emerald-900); }
.job-sub { font-size: 0.68rem; color: #64748b; }
.jobs-link {
  display: block; text-align: right; margin-top: 10px;
  font-size: 0.75rem; font-weight: 600; color: var(--amber-600);
  text-decoration: none;
}
.jobs-link:hover { text-decoration: underline; }

/* ─── FOOTER ───────────────────────────────────────────── */
#contact {
  background: var(--emerald-950);
  padding: 72px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative; overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(6,78,59,0.4) 0%, transparent 70%);
  pointer-events: none;
}

.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 48px; flex-wrap: wrap;
}
.footer-brand h2 {
  font-family: var(--serif); font-size: 2rem; font-weight: 700;
  color: white; margin-bottom: 6px;
}
.footer-brand h2 span { color: var(--amber-400); }
.footer-brand p { font-size: 0.85rem; color: var(--emerald-200); opacity: 0.7; }

.footer-socials { display: flex; flex-direction: column; gap: 14px; }
.social-link {
  display: flex; align-items: center; gap: 14px;
  color: var(--emerald-200); text-decoration: none;
  font-size: 0.9rem; transition: color 0.2s;
}
.social-link:hover { color: white; }
.social-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; flex-shrink: 0;
}
.social-link:hover .social-icon { background: var(--amber-500); border-color: var(--amber-500); color: var(--emerald-950); }

.footer-bottom {
  margin-top: 56px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.3);
}

/* ─── SCROLL REVEAL ────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(.2,.9,.3,1), transform 0.8s cubic-bezier(.2,.9,.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .pricing-card { grid-template-columns: 1fr; }
  .pricing-left { padding: 44px 36px; }
  .pricing-number { font-size: 4rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .cards-grid { grid-template-columns: 1fr; }
  .inclusions-layout { grid-template-columns: 1fr; }
  .photo-collage { height: 280px; margin-bottom: 32px; }
  .lists-grid { grid-template-columns: 1fr; }
  .inclusions-top { flex-direction: column; }
  .container { padding: 0 20px; }
  .footer-inner { flex-direction: column; }
  .cta-group { flex-direction: column; }
}

/* ─── HERO REDESIGN: Starry Night + Mosque Silhouette ─── */
.hero-sky {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 70% 20%, rgba(12,80,50,0.35) 0%, transparent 60%),
    linear-gradient(180deg,
      #010c06 0%, #021407 15%, #031c0c 30%,
      #042510 50%, #052c14 70%, #031a0a 100%
    );
}
.hero-sky::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 130% 60% at 55% 25%, rgba(5,100,50,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 90% 50% at 85% 15%, rgba(245,158,11,0.06) 0%, transparent 50%);
}
.stars-layer {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.mosque-silhouette {
  position: absolute; bottom: 0; left: 0; width: 100%; z-index: 2;
  line-height: 0;
}
.mosque-silhouette svg { display: block; width: 100%; height: auto; }
#hero .hero-overlay {
  background: linear-gradient(180deg,
    rgba(1,12,6,0.15) 0%,
    rgba(1,12,6,0.05) 35%,
    rgba(1,12,6,0.4) 70%,
    rgba(1,6,3,0.82) 100%
  ) !important;
  z-index: 3;
}
#hero .snow { z-index: 4; }
#hero .hero-content { z-index: 5; padding-top: 160px; padding-bottom: 220px; }
#hero .scroll-hint { z-index: 5; bottom: 100px; }
#hero .hero-arc { z-index: 6; }

/* Twinkling stars */
@keyframes twinkle {
  0%,100%{opacity:.15;transform:scale(1)} 50%{opacity:1;transform:scale(1.5)}
}
@keyframes twinkleSlow {
  0%,100%{opacity:.1} 50%{opacity:.75}
}

/* Better hero stats */
.hero-stat {
  background: rgba(2,20,10,0.55) !important;
  border: 1px solid rgba(245,158,11,0.25) !important;
  backdrop-filter: blur(14px) !important;
}
.hero-stat:hover {
  background: rgba(4,35,18,0.7) !important;
  border-color: rgba(245,158,11,0.5) !important;
  box-shadow: 0 8px 32px rgba(245,158,11,0.15) !important;
}


/* ─── WHATSAPP FOOTER BUTTON ────────────────────────────── */
.wa-btn {
  display: flex; align-items: center; gap: 14px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 16px;
  padding: 14px 20px;
  text-decoration: none;
  color: white;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.3);
  position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
}
.wa-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.wa-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(37,211,102,0.45); }
.wa-btn:hover::before { opacity: 1; }
.wa-btn:hover .wa-btn-arrow { transform: translateX(4px); }

.wa-btn-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wa-btn-text {
  display: flex; flex-direction: column; gap: 2px;
}
.wa-btn-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; opacity: 0.85;
}
.wa-btn-num {
  font-size: 1rem; font-weight: 700; letter-spacing: 0.02em;
}
.wa-btn-arrow {
  margin-left: auto; font-size: 1.1rem; opacity: 0.7;
  transition: transform 0.3s;
}

/* ─── FLOATING WHATSAPP BUTTON ──────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  display: flex; align-items: center; gap: 0;
  text-decoration: none;
  filter: drop-shadow(0 8px 24px rgba(37,211,102,0.5));
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
}
.wa-float:hover { transform: scale(1.05); filter: drop-shadow(0 12px 32px rgba(37,211,102,0.65)); }
.wa-float:hover .wa-float-tooltip { opacity: 1; transform: translateX(0); pointer-events: auto; }

.wa-float-pulse {
  position: absolute; inset: -6px;
  border-radius: 50%;
  background: rgba(37,211,102,0.3);
  animation: waPulse 2.5s ease-out infinite;
  z-index: 0;
}
@keyframes waPulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(0.9); opacity: 0; }
}

.wa-float-inner {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  border: 3px solid rgba(255,255,255,0.25);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.wa-float-tooltip {
  position: absolute; right: 72px;
  background: white;
  border-radius: 14px;
  padding: 10px 16px;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  border: 1px solid rgba(0,0,0,0.06);
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
}
.wa-float-tooltip::after {
  content: '';
  position: absolute; right: -7px; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 8px solid white;
}
.wa-float-tooltip-title {
  font-size: 0.85rem; font-weight: 700; color: #111;
  margin-bottom: 2px;
}
.wa-float-tooltip-sub {
  font-size: 0.72rem; color: #25d366; font-weight: 600;
}


/* ─── WHATSAPP FOOTER BUTTON (redesign) ─────────────────── */
.wa-footer-btn {
  display: flex; align-items: center; gap: 16px;
  background: linear-gradient(135deg, #25d366 0%, #1ebe5d 50%, #128c7e 100%);
  border-radius: 18px; padding: 16px 22px;
  text-decoration: none; color: white;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 8px 28px rgba(37,211,102,0.35), inset 0 1px 0 rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.1);
  position: relative; overflow: hidden;
  min-width: 280px;
}
.wa-footer-btn::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transition: left 0.5s ease;
}
.wa-footer-btn:hover::before { left: 150%; }
.wa-footer-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(37,211,102,0.5), inset 0 1px 0 rgba(255,255,255,0.2);
}
.wa-footer-btn:hover .wa-footer-arrow { transform: translateX(5px); }

.wa-footer-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(0,0,0,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}
.wa-footer-text {
  display: flex; flex-direction: column; gap: 3px; flex: 1;
}
.wa-footer-label {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  opacity: 0.8;
}
.wa-footer-num {
  font-size: 1.05rem; font-weight: 700; letter-spacing: 0.03em;
}
.wa-footer-arrow {
  opacity: 0.8; transition: transform 0.3s; flex-shrink: 0;
}


/* ─── INSTAGRAM FOOTER BUTTON ───────────────────────────── */
.ig-footer-btn {
  display: flex; align-items: center; gap: 16px;
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 40%, #8134af 70%, #515bd4 100%);
  border-radius: 18px; padding: 16px 22px;
  text-decoration: none; color: white;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 8px 28px rgba(221,42,123,0.35), inset 0 1px 0 rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.1);
  position: relative; overflow: hidden;
  min-width: 280px;
}
.ig-footer-btn::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transition: left 0.5s ease;
}
.ig-footer-btn:hover::before { left: 150%; }
.ig-footer-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(221,42,123,0.5), inset 0 1px 0 rgba(255,255,255,0.2);
}
.ig-footer-btn:hover .ig-footer-arrow { transform: translateX(5px); }

.ig-footer-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(0,0,0,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}
.ig-footer-text {
  display: flex; flex-direction: column; gap: 3px; flex: 1;
}
.ig-footer-label {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  opacity: 0.8;
}
.ig-footer-handle {
  font-size: 1.05rem; font-weight: 700; letter-spacing: 0.03em;
}
.ig-footer-arrow {
  opacity: 0.8; transition: transform 0.3s; flex-shrink: 0;
}


/* ─── DEPARTURE DATES ───────────────────────────────────── */
.depart-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
.depart-dates { display: flex; flex-direction: column; gap: 8px; }
.depart-item {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 10px 14px;
  transition: all 0.25s;
}
.depart-item:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(245,158,11,0.3);
  transform: translateX(3px);
}
.depart-month {
  font-family: var(--serif); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; color: var(--amber-400);
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 8px; padding: 4px 8px;
  min-width: 38px; text-align: center;
  flex-shrink: 0;
}
.depart-info { flex: 1; }
.depart-date {
  font-size: 0.85rem; font-weight: 600; color: white;
  line-height: 1.3;
}
.depart-dur {
  font-size: 0.7rem; color: rgba(255,255,255,0.45);
  margin-top: 2px;
}
.depart-badge {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 3px 10px;
  border-radius: 20px; flex-shrink: 0;
}
.depart-badge.avail {
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.3);
  color: #4ade80;
}
.depart-badge.limited {
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.3);
  color: var(--amber-400);
}

