/* ============================================================
   TRACK TRAVEL — Polished Design System
   Minimal · Editorial · Premium
   ============================================================ */

/* ---------- Custom Properties ---------- */
:root {
  /* Core palette — tropical beach brand */
  --teal:        #1A3C4A;
  --teal-mid:    #2E7D8C;
  --gold:        #6CC4D4;
  --gold-light:  #8ECFB5;
  --coral:       #E06840;
  --ocean:       #6CC4D4;
  --sunset:      #B5B835;
  --pink:        #E06840;
  --mint:        #8ECFB5;
  --sand:        #F5F1EB;
  --white:       #FFFFFF;
  --gray-900:    #3A3A34;
  --gray-600:    #6A6A60;
  --gray-400:    #A8A89C;
  --gray-200:    #DDD8D0;
  --gray-100:    #F0ECE6;

  --gold-gradient: linear-gradient(135deg, #6CC4D4 0%, #8ECFB5 50%, #B5B835 100%);
  --coral-gradient: linear-gradient(135deg, #E06840, #D45A35);
  --ocean-gradient: linear-gradient(135deg, #6CC4D4, #2E7D8C);
  --sunset-gradient: linear-gradient(135deg, #B5B835, #8ECFB5, #6CC4D4);
  --pink-gradient: linear-gradient(135deg, #E06840, #B5B835);
  --tropical-gradient: linear-gradient(135deg, #8ECFB5, #6CC4D4, #D9CEBC);

  /* Shadows — teal-tinted */
  --shadow-xs:  0 1px 2px rgba(26,60,74,0.05);
  --shadow-sm:  0 2px 8px rgba(26,60,74,0.07);
  --shadow-md:  0 4px 24px rgba(26,60,74,0.09);
  --shadow-lg:  0 8px 40px rgba(26,60,74,0.12);
  --shadow-nav: 0 4px 30px rgba(26,60,74,0.08), 0 1px 3px rgba(26,60,74,0.04);
  --shadow-gold: 0 4px 24px rgba(108,196,212,0.30);

  /* Radii */
  --r-sm:  10px;
  --r-md:  16px;
  --r-lg:  20px;
  --r-xl:  24px;
  --r-pill: 50px;

  /* Fonts */
  --font-h: 'Outfit', sans-serif;
  --font-b: 'Plus Jakarta Sans', sans-serif;

  /* Transitions — global base */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 200ms var(--ease);
  --t-base: 300ms var(--ease);
  --t-slow: 500ms var(--ease);

  /* Spacing scale — consistent 8px grid */
  --sp-section: clamp(80px, 10vw, 120px);
  --sp-section-sm: clamp(48px, 6vw, 72px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-b);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--t-base); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ---------- Skip to Content (A11y) ---------- */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  transition: top 0.2s ease;
}
.skip-to-content:focus {
  top: 0;
}

/* ---------- Focus Visible (A11y) ---------- */
:focus-visible {
  outline: 2px solid #6CC4D4;
  outline-offset: 2px;
  border-radius: 4px;
}
:focus:not(:focus-visible) { outline: none; }

/* ---------- Skeleton Loader ---------- */
.skeleton {
  background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease infinite;
  border-radius: var(--r-sm);
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ---------- Toast Notification ---------- */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 9000;
  padding: 14px 28px;
  background: var(--teal);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-lg);
  transition: transform 400ms var(--ease);
  pointer-events: none;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ---------- Sticky Mobile CTA ---------- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 12px 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
}
.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1120px;
  margin: 0 auto;
  gap: 12px;
}
.sticky-cta-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
}
.sticky-cta-text small {
  display: block;
  font-weight: 400;
  color: var(--gray-400);
  font-size: 11px;
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 800;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-h);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.5px;
  color: var(--teal);
}

h1 { font-size: clamp(36px, 5.5vw, 68px); font-weight: 900; letter-spacing: -2px; }
h2 { font-size: clamp(28px, 3.8vw, 44px); letter-spacing: -1px; }
h3 { font-size: clamp(18px, 2vw, 22px); font-weight: 700; }
h4 { font-size: 17px; font-weight: 700; }

p { color: var(--gray-600); line-height: 1.75; }

.gold-text {
  background: linear-gradient(135deg, #6CC4D4, #8ECFB5, #B5B835);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Layout ---------- */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: var(--sp-section) 0; }

/* ---------- Star Ratings ---------- */
.stars {
  display: inline-flex;
  gap: 2px;
  color: #6CC4D4;
  font-size: 14px;
  letter-spacing: 1px;
}

/* ---------- Urgency Badge ---------- */
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #EF4444;
  padding: 3px 10px;
  background: rgba(239,68,68,0.07);
  border-radius: var(--r-pill);
  animation: urgencyPulse 2s ease infinite;
}
@keyframes urgencyPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* ---------- Partner Logos Strip ---------- */
.partner-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 32px 0;
  opacity: 0.35;
  filter: grayscale(1);
  transition: opacity var(--t-base), filter var(--t-base);
}
.partner-strip:hover { opacity: 0.55; filter: grayscale(0.5); }
.partner-strip span {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 18px;
  color: var(--gray-600);
  letter-spacing: -0.5px;
}

/* ---------- Section Headers ---------- */
.section-header { text-align: center; margin-bottom: 64px; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: var(--r-pill);
  background: rgba(108,196,212,0.10);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.2px;
}

.section-header h2 { margin-bottom: 14px; }

.section-header p {
  max-width: 540px;
  margin: 0 auto;
  font-size: 15.5px;
}

/* ---------- Backgrounds — tropical tints ---------- */
.bg-white { background: var(--white); }
.bg-sand  { background: var(--sand); }
.bg-teal  { background: var(--teal); }
.bg-ocean-tint  { background: #EDF5F7; }
.bg-sunset-tint { background: #F5F3ED; }
.bg-coral-tint  { background: #F7F2EE; }
.bg-mint-tint   { background: #EFF5F0; }

/* ============================================================
   NAVBAR — Floating Pill
   ============================================================ */
.navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  max-width: 980px;
  width: calc(100% - 32px);
  padding: 10px 10px 10px 18px;
  border-radius: 60px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow-nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: max-width 400ms var(--ease),
              padding 400ms var(--ease),
              box-shadow var(--t-base),
              background var(--t-base);
}

.navbar.scrolled {
  max-width: 780px;
  padding: 7px 8px 7px 18px;
  box-shadow: var(--shadow-md);
}

/* Brand */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-brand-icon {
  width: 100px;
  height: 40px;
  min-width: 100px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 400ms var(--ease), width 400ms var(--ease), min-width 400ms var(--ease), margin 400ms var(--ease);
  overflow: visible;
}
.nav-brand-icon img { width: 100px; height: auto; object-fit: contain; }
.nav-brand-icon svg { width: 20px; height: 20px; fill: white; flex-shrink: 0; }

.navbar.scrolled .nav-brand-icon {
  opacity: 1;
  width: 90px;
  min-width: 90px;
  margin: 0;
}

.nav-brand-text {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 20px;
  color: var(--teal);
  letter-spacing: -0.5px;
}

/* Nav Links — underline hover */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  position: relative;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gray-600);
  padding: 7px 12px;
  border-radius: var(--r-pill);
  transition: color var(--t-base), background var(--t-base);
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  border-radius: 1px;
  transform: translateX(-50%);
  transition: width var(--t-base);
}

.nav-links a:hover { color: var(--teal); }
.nav-links a:hover::after { width: 20px; }

.nav-links a.active {
  background: var(--teal);
  color: var(--white);
  font-weight: 600;
}
.nav-links a.active::after { display: none; }

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  transition: opacity 400ms var(--ease), width 400ms var(--ease);
  overflow: hidden;
}


.nav-book {
  display: inline-flex;
  align-items: center;
  padding: 9px 22px;
  border-radius: var(--r-pill);
  background: var(--gold-gradient);
  color: var(--white);
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.nav-book:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  position: relative;
  z-index: 1002;
  transition: background var(--t-base);
}
.nav-hamburger:hover { background: rgba(0,0,0,0.04); }

.nav-hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: transform 300ms var(--ease), opacity 200ms ease;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile Drawer (slide-in from right) ---------- */
.mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.mobile-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  background: var(--white);
  display: flex;
  flex-direction: column;
  padding: 100px 36px 48px;
  transform: translateX(100%);
  transition: transform 400ms var(--ease);
  box-shadow: -8px 0 40px rgba(0,0,0,0.08);
  overflow-y: auto;
}
.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer a {
  font-family: var(--font-h);
  font-size: 24px;
  font-weight: 700;
  color: var(--teal);
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
  transition: color var(--t-base), padding-left var(--t-base);
}
.mobile-drawer a:last-of-type:not(.mobile-cta) { border-bottom: none; }

.mobile-drawer a:hover { color: var(--gold); padding-left: 8px; }
.mobile-drawer a.active { color: var(--gold); }

.mobile-drawer .mobile-cta {
  margin-top: auto;
  padding: 16px 32px;
  border-radius: var(--r-pill);
  background: var(--gold-gradient);
  color: var(--white);
  font-family: var(--font-h);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  border-bottom: none;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.mobile-drawer .mobile-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
  padding-left: 32px;
  color: var(--white);
}

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 100px;
  overflow: hidden;
}
.hero-short  { min-height: 56vh; padding: 140px 24px 72px; }
.hero-shorter { min-height: 44vh; padding: 140px 24px 56px; }

/* Hero background layer — slow zoom */
.hero-bg {
  position: absolute;
  inset: -20px; /* extra bleed for zoom */
  z-index: 0;
  animation: heroZoom 25s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes heroZoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.06); }
}

/* Home hero bg — tropical beach */
.hero-home .hero-bg {
  background:
    radial-gradient(ellipse at 15% 25%, rgba(108,196,212,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 30%, rgba(142,207,181,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(217,206,188,0.10) 0%, transparent 40%),
    linear-gradient(170deg, #E4F5F7 0%, #D5EEF2 20%, #E0F0E8 40%, #EBF0E5 60%, #F0ECE4 85%, #F5F1EB 100%);
}

/* Grid overlay — subtle */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(15,27,61,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,27,61,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  pointer-events: none;
}

/* Destination hero bg */
.hero-destinations .hero-bg {
  background:
    radial-gradient(ellipse at 20% 30%, rgba(142,207,181,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 60%, rgba(181,184,53,0.08) 0%, transparent 50%),
    linear-gradient(170deg, #E8F0E5 0%, #E0EDE6 30%, #EBE8E0 60%, #F5F1EB 100%);
}

/* Packages hero bg */
.hero-experiences .hero-bg {
  background:
    radial-gradient(ellipse at 25% 35%, rgba(108,196,212,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 65%, rgba(46,125,140,0.10) 0%, transparent 50%),
    linear-gradient(170deg, #D5EEF2 0%, #E0F0E8 30%, #EBF0E5 60%, #F5F1EB 100%);
}

/* About hero bg */
.hero-about .hero-bg {
  background:
    radial-gradient(ellipse at 35% 45%, rgba(108,196,212,0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 65% 55%, rgba(142,207,181,0.08) 0%, transparent 50%),
    linear-gradient(170deg, #E0F0E8 0%, #D5EEF2 40%, #F5F1EB 100%);
}

/* Contact hero bg */
.hero-contact .hero-bg {
  background:
    radial-gradient(ellipse at 25% 40%, rgba(224,104,64,0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 50%, rgba(217,206,188,0.12) 0%, transparent 50%),
    linear-gradient(170deg, #F0ECE4 0%, #EBE6DD 30%, #E0F0E8 60%, #F5F1EB 100%);
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: var(--r-pill);
  background: rgba(108,196,212,0.10);
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 28px;
}

.hero h1 { margin-bottom: 20px; }
.hero p {
  font-size: clamp(15px, 1.6vw, 17px);
  max-width: 520px;
  margin: 0 auto 36px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Staggered hero entrance */
.hero-badge    { animation: fadeUp 0.8s var(--ease) both; animation-delay: 0.1s; }
.hero h1       { animation: fadeUp 0.8s var(--ease) both; animation-delay: 0.2s; }
.hero p        { animation: fadeUp 0.8s var(--ease) both; animation-delay: 0.35s; }
.hero-buttons  { animation: fadeUp 0.8s var(--ease) both; animation-delay: 0.5s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   BUTTONS — Consistent transitions
   ============================================================ */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 34px;
  border-radius: var(--r-pill);
  background: var(--gold-gradient);
  color: var(--white);
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
  transition: transform var(--t-fast), box-shadow var(--t-fast), filter var(--t-fast);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(108,196,212,0.40);
  filter: brightness(1.05);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 34px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.65);
  color: var(--teal);
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 700;
  border: 1px solid rgba(11,43,43,0.10);
  transition: transform var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
}
.btn-outline:hover {
  transform: translateY(-2px);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-gold-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 26px;
  border-radius: var(--r-pill);
  background: var(--gold-gradient);
  color: var(--white);
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 700;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.btn-gold-sm:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.link-gold {
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--t-base), color var(--t-base);
}
.link-gold:hover { gap: 8px; }

/* ============================================================
   TRUST MARQUEE — Scrolling ticker
   ============================================================ */
.trust-marquee {
  overflow: hidden;
  padding: 20px 0;
  background: var(--teal);
  position: relative;
  z-index: 3;
}

.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  white-space: nowrap;
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.3px;
}

.marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 8px;
}

/* ============================================================
   CARDS — Clean, consistent
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity var(--t-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card:hover::after { opacity: 1; }

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(108,196,212,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--t-base);
}
.card:hover .card-icon { background: rgba(108,196,212,0.15); }

.card-icon svg {
  width: 24px; height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.card-icon-emoji {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(108,196,212,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
}

.card-flag { font-size: 40px; text-align: center; margin-bottom: 8px; }

.card h3 { margin-bottom: 10px; }
.card p  { font-size: 14px; margin-bottom: 18px; }

/* ============================================================
   PACKAGE PREVIEW ROWS (Homepage)
   ============================================================ */
.pkg-preview-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pkg-preview-row {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base);
  text-decoration: none;
  color: inherit;
}
.pkg-preview-row:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.pkg-preview-gradient {
  width: 120px;
  min-height: 100px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  align-self: stretch;
}
.pkg-preview-flag {
  font-size: 28px;
}
.pkg-preview-duration {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
}

.pkg-preview-info {
  flex: 1;
  padding: 20px 24px;
  min-width: 0;
}
.pkg-preview-dest {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 4px;
}
.pkg-preview-info h3 {
  font-size: 18px;
  margin-bottom: 4px;
}
.pkg-preview-info p {
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pkg-preview-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0 8px 0 0;
  flex-shrink: 0;
}
.pkg-preview-from {
  font-size: 11px;
  color: var(--gray-400);
  font-weight: 500;
}
.pkg-preview-amount {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 24px;
  color: var(--teal);
  line-height: 1.1;
}
.pkg-preview-per {
  font-size: 12px;
  color: var(--gray-400);
}

.pkg-preview-arrow {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gray-400);
  margin-right: 12px;
  border-radius: 50%;
  background: var(--gray-100);
  transition: background var(--t-base), color var(--t-base), transform var(--t-base);
}
.pkg-preview-row:hover .pkg-preview-arrow {
  background: var(--gold);
  color: var(--white);
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .pkg-preview-row {
    flex-wrap: wrap;
  }
  .pkg-preview-gradient {
    width: 100%;
    min-height: 64px;
    flex-direction: row;
    gap: 10px;
  }
  .pkg-preview-info {
    padding: 16px 20px 8px;
  }
  .pkg-preview-info p { display: none; }
  .pkg-preview-price {
    padding: 0 20px 16px;
    flex-direction: row;
    align-items: baseline;
    gap: 4px;
  }
  .pkg-preview-arrow { display: none; }
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid rgba(0,0,0,0.05);
  padding: 30px 26px;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.why-emoji { font-size: 28px; margin-bottom: 14px; }
.why-card h4 { margin-bottom: 8px; }
.why-card p { font-size: 13.5px; line-height: 1.65; }

/* ============================================================
   TESTIMONIAL — Single large quote
   ============================================================ */
.testimonial { text-align: center; max-width: 740px; margin: 0 auto; }

.testimonial-quote-mark {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 72px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.2;
  margin-bottom: -8px;
}

.testimonial blockquote {
  font-family: var(--font-h);
  font-weight: 600;
  font-size: clamp(19px, 2.4vw, 27px);
  color: var(--teal);
  line-height: 1.5;
  margin-bottom: 28px;
  font-style: normal;
}

.testimonial-author { font-weight: 700; font-size: 15px; color: var(--teal); }
.testimonial-detail { font-size: 13px; color: var(--gray-400); margin-top: 4px; }

/* ============================================================
   CTA BANNER — Gradient background
   ============================================================ */
.cta-banner {
  text-align: center;
  padding: var(--sp-section) 24px;
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow overlay */
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 50%, rgba(14,165,233,0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 50%, rgba(236,72,153,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 80%, rgba(245,158,11,0.06) 0%, transparent 40%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
}

.cta-banner p {
  color: rgba(255,255,255,0.55);
  font-size: 16px;
  max-width: 440px;
  margin: 0 auto 32px;
  position: relative;
}

.cta-banner .btn-gold { position: relative; }

/* ============================================================
   DESTINATION SECTIONS (destinations.html)
   ============================================================ */
.dest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}
.dest-grid.reversed { direction: rtl; }
.dest-grid.reversed > * { direction: ltr; }

.dest-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--r-xl);
  background: var(--teal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.dest-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 24px,
    rgba(108,196,212,0.05) 24px, rgba(108,196,212,0.05) 25px
  );
  pointer-events: none;
}
.dest-image-placeholder svg { width: 48px; height: 48px; fill: rgba(255,255,255,0.3); }
.dest-image-placeholder span { color: rgba(255,255,255,0.6); font-size: 14px; font-weight: 500; }

.dest-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 10px;
}
.dest-label span { font-size: 22px; }

.dest-content h2 { margin-bottom: 18px; }
.dest-content p { font-size: 15px; margin-bottom: 14px; }

.dest-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 28px;
}
.dest-highlights .pill {
  padding: 6px 16px;
  border-radius: var(--r-pill);
  background: rgba(108,196,212,0.09);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  transition: background var(--t-fast);
}
.dest-highlights .pill:hover { background: rgba(108,196,212,0.16); }

/* ============================================================
   ITINERARY CARDS
   ============================================================ */
.itinerary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.itinerary-card {
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 36px 28px;
  text-align: center;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.itinerary-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.itinerary-flag { font-size: 36px; margin-bottom: 8px; }
.itinerary-dest {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 10px;
}
.itinerary-card h3 { margin-bottom: 12px; }
.itinerary-details { color: var(--gray-400); font-size: 14px; margin-bottom: 6px; }
.itinerary-price {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 18px;
  color: var(--teal);
  margin-bottom: 20px;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: repeating-linear-gradient(
    90deg, var(--gold) 0px, var(--gold) 6px, transparent 6px, transparent 14px
  );
  opacity: 0.25;
}

.step-item { text-align: center; position: relative; z-index: 1; }

.step-number {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 22px;
  color: var(--gold);
  margin: 0 auto 18px;
  background: var(--sand);
  transition: background var(--t-base), color var(--t-base);
}
.step-item:hover .step-number {
  background: var(--gold);
  color: var(--white);
}

.step-item h4 { margin-bottom: 8px; }
.step-item p { font-size: 13.5px; line-height: 1.65; }

/* ============================================================
   TESTIMONIAL CARDS
   ============================================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid rgba(0,0,0,0.05);
  padding: 32px 28px;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.tc-quote-mark {
  font-family: Georgia, serif;
  font-size: 24px;
  color: var(--gold);
  opacity: 0.2;
  margin-bottom: 12px;
  line-height: 1;
}
.testimonial-card blockquote {
  font-size: 14.5px;
  color: var(--teal);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: normal;
}
.tc-author { font-weight: 700; font-size: 15px; color: var(--teal); }
.tc-detail { font-size: 13px; color: var(--gray-400); margin-top: 3px; }

/* ============================================================
   ABOUT — Story
   ============================================================ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.story-content h2 { margin-bottom: 18px; }
.story-content p  { font-size: 15px; margin-bottom: 14px; }

/* ============================================================
   ABOUT — Values
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-card {
  background: rgba(255,255,255,0.7);
  border-radius: var(--r-md);
  border: 1px solid rgba(0,0,0,0.05);
  padding: 32px 26px;
  transition: transform var(--t-base), box-shadow var(--t-base), background var(--t-base);
}
.value-card:hover {
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.value-number {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 46px;
  color: var(--gold);
  opacity: 0.12;
  line-height: 1;
  margin-bottom: 8px;
}
.value-card h4 { margin-bottom: 10px; }
.value-card p  { font-size: 14px; line-height: 1.65; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: flex-start;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: rgba(108,196,212,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

.contact-info-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gray-400);
  margin-bottom: 3px;
}
.contact-info-value { font-size: 16px; font-weight: 600; color: var(--teal); }

.social-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--gray-400);
  margin-top: 20px;
  margin-bottom: 14px;
}

.social-icons { display: flex; gap: 10px; }

.social-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(108,196,212,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-base), transform var(--t-fast);
}
.social-icon:hover {
  background: rgba(108,196,212,0.18);
  transform: translateY(-2px);
}
.social-icon svg { width: 18px; height: 18px; fill: var(--gold); }

/* Contact Form */
.contact-form-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  border: 1px solid var(--gray-200);
  background: var(--gray-100);
  font-size: 14.5px;
  color: var(--gray-900);
  outline: none;
  transition: border-color var(--t-base), box-shadow var(--t-base), background var(--t-base);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(108,196,212,0.12);
  background: var(--white);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-submit {
  width: 100%;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  background: var(--gold-gradient);
  color: var(--white);
  font-family: var(--font-h);
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform var(--t-fast), box-shadow var(--t-fast), filter var(--t-fast);
}
.form-submit:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
  filter: brightness(1.05);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
  transition: box-shadow var(--t-base);
}
.faq-item.open { box-shadow: var(--shadow-sm); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
  transition: background var(--t-base);
}
.faq-question:hover { background: rgba(0,0,0,0.015); }

.faq-question h4 {
  font-size: 15.5px;
  font-weight: 600;
  flex: 1;
}

.faq-toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(108,196,212,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 300ms var(--ease), background var(--t-base);
}
.faq-toggle svg { width: 14px; height: 14px; stroke: var(--gold); stroke-width: 2; fill: none; }

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: rgba(108,196,212,0.16);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms var(--ease);
}
.faq-answer-inner {
  padding: 0 24px 24px;
  color: var(--gray-600);
  font-size: 14.5px;
  line-height: 1.75;
}

/* ============================================================
   FOOTER — Light, warm, distinct from CTA
   ============================================================ */
.footer {
  padding: 0;
  border-top: none;
  position: relative;
  overflow: hidden;
  background: #DDD8D0;
}

.footer-ocean { display: none; }

.footer-sand {
  position: relative;
  padding: 64px 24px 0;
  background:
    radial-gradient(ellipse at 25% 40%, rgba(210,195,170,0.5) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 70%, rgba(200,182,155,0.4) 0%, transparent 50%),
    linear-gradient(180deg, #DDD8D0 0%, #DFD2BC 35%, #E5D9C8 65%, #EBE0D2 100%);
}
.footer-sand::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.footer-brand { max-width: 260px; }
.footer-brand-name {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 22px;
  color: #2C2418;
  margin-bottom: 14px;
}
.footer-brand p {
  color: #7A6E5E;
  font-size: 13px;
  line-height: 1.7;
}

.footer-col h5 {
  color: #8C7E6E;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  color: #4A3E30;
  font-size: 14px;
  padding: 5px 0;
  transition: color var(--t-base), padding-left var(--t-base);
}
.footer-col a:hover {
  color: #6CC4D4;
  padding-left: 4px;
}

.footer-bottom {
  max-width: 1120px;
  margin: 52px auto 0;
  padding: 20px 0;
  border-top: 1px solid rgba(61,50,40,0.10);
  text-align: center;
  position: relative;
  z-index: 1;
}
.footer-bottom p { color: #A89A8A; font-size: 12px; }

/* ============================================================
   PACKAGE FILTER BAR
   ============================================================ */
.pkg-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 8px;
}

.pkg-filter-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pkg-filter-btn {
  padding: 9px 20px;
  border-radius: var(--r-pill);
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-base);
  white-space: nowrap;
}
.pkg-filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.pkg-filter-btn.active {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.pkg-sort-group {
  flex-shrink: 0;
}

.pkg-sort-select {
  padding: 9px 36px 9px 16px;
  border-radius: var(--r-pill);
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394A3B8' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  transition: border-color var(--t-base);
}
.pkg-sort-select:hover,
.pkg-sort-select:focus {
  border-color: var(--gold);
}

.pkg-results-count {
  font-size: 13px;
  color: var(--gray-400);
  padding: 14px 0 0;
}

/* ============================================================
   PACKAGE CARDS — Matching reference design
   ============================================================ */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.pkg-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 500ms var(--ease), box-shadow 500ms var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
}

/* Gradient header area */
.pkg-card-header {
  height: 192px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 24px 20px;
}

/* Hover overlay */
.pkg-card-header::after {
  content: 'View Details';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-h);
  opacity: 0;
  transition: background 300ms ease, opacity 300ms ease;
  border-radius: inherit;
}
.pkg-card:hover .pkg-card-header::after {
  background: rgba(0,0,0,0.2);
  opacity: 1;
}

.pkg-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: rgba(11,43,43,0.7);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  z-index: 1;
}

.pkg-flag { font-size: 28px; margin-bottom: 4px; }
.pkg-dest {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.pkg-card-header h3 {
  font-size: 20px;
  margin-bottom: 4px;
  line-height: 1.2;
}
.pkg-tagline {
  font-size: 13px;
  font-style: normal;
}

/* Card body */
.pkg-card-body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pkg-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
  margin-top: auto;
}

.pkg-price { display: flex; align-items: baseline; gap: 3px; }
.pkg-from  { font-size: 12px; color: var(--gray-400); font-weight: 500; margin-right: 2px; }
.pkg-amount {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 24px;
  color: var(--teal);
}
.pkg-per { font-size: 12px; color: var(--gray-400); font-weight: 400; }

/* Clickable card cursor */
.pkg-card[onclick] { cursor: pointer; }

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

/* ============================================================
   BLOG PAGE
   ============================================================ */

/* Blog hero */
.hero-blog .hero-bg {
  background:
    radial-gradient(ellipse at 30% 35%, rgba(181,184,53,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 65%, rgba(108,196,212,0.10) 0%, transparent 50%),
    linear-gradient(170deg, #EBF0E5 0%, #E0EDE6 30%, #D5EEF2 60%, #F5F1EB 100%);
}

/* Featured article — editorial split layout */
.blog-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.blog-featured-image {
  min-height: 380px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.blog-featured-category {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  background: var(--gold-gradient);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.blog-featured-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
}

.blog-read-time {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
}

.blog-featured-content {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.blog-category-tag {
  padding: 4px 12px;
  border-radius: var(--r-pill);
  background: rgba(108,196,212,0.09);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}

.blog-date {
  font-size: 13px;
  color: var(--gray-400);
}

.blog-featured-content h2 {
  font-size: clamp(22px, 2.5vw, 30px);
  margin-bottom: 14px;
  line-height: 1.25;
}

.blog-featured-content p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 14px;
}

.blog-author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
}

.blog-author-role {
  font-size: 12px;
  color: var(--gray-400);
}

/* Category Filter Bar */
.blog-filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-bottom: 8px;
  overflow-x: auto;
}

.blog-filter-btn {
  padding: 8px 18px;
  border-radius: var(--r-pill);
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  color: var(--gray-600);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-base);
  white-space: nowrap;
}
.blog-filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.blog-filter-btn.active {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Blog Card */
.blog-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform var(--t-base), box-shadow var(--t-base);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-card-image {
  height: 180px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card-image::after {
  content: 'Read Article';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-h);
  opacity: 0;
  transition: background 300ms ease, opacity 300ms ease;
}
.blog-card:hover .blog-card-image::after {
  background: rgba(0,0,0,0.25);
  opacity: 1;
}

.blog-card-category {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: rgba(11,43,43,0.65);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
}

.blog-card-readtime {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
}

.blog-card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-date {
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 8px;
}

.blog-card-body h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
  color: var(--teal);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-body p {
  font-size: 13.5px;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Newsletter */
.blog-newsletter {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  padding: 48px 36px;
  background: var(--sand);
  border-radius: var(--r-xl);
  border: 1px solid rgba(0,0,0,0.04);
}

.blog-newsletter-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.blog-newsletter h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.blog-newsletter p {
  font-size: 14.5px;
  margin-bottom: 24px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.blog-newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto;
}

.blog-newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(0,0,0,0.08);
  background: var(--white);
  font-size: 14px;
  outline: none;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.blog-newsletter-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(108,196,212,0.10);
}

.blog-newsletter-note {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  color: var(--gray-400);
}

/* Responsive */
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-image { min-height: 220px; }
  .blog-featured-content { padding: 28px 24px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-newsletter-form { flex-direction: column; }
}

/* ============================================================
   SCROLL REVEAL — Staggered
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children inside reveal containers */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.10s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.20s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.30s; }

/* ============================================================
   TOUR CARDS (Day Tours)
   ============================================================ */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.tour-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: transform 400ms var(--ease), box-shadow 400ms var(--ease);
  display: flex;
  flex-direction: column;
}
.tour-card:hover {
  box-shadow: var(--shadow-lg);
}

.tour-card-header {
  height: 140px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 14px 16px;
  position: relative;
  color: white;
}

.tour-card-dest {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
}

.tour-card-duration {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);
}

.tour-card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tour-card-body h3 {
  font-size: 17px;
  margin-bottom: 6px;
  line-height: 1.3;
}

.tour-card-body p {
  font-size: 13.5px;
  line-height: 1.55;
  margin-bottom: 14px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tour-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 16px;
}

.tour-rating {
  color: #F59E0B;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
}
.tour-rating small {
  color: var(--gray-400);
  font-weight: 500;
  letter-spacing: 0;
  margin-left: 2px;
}

.tour-badge-halal {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--r-pill);
  background: rgba(108,196,212,0.08);
  color: #6CC4D4;
  white-space: nowrap;
}

.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--gray-200);
}

.tour-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.tour-price-from { font-size: 11px; color: var(--gray-400); }
.tour-price-amount { font-family: var(--font-h); font-weight: 900; font-size: 22px; color: var(--teal); }
.tour-price-per { font-size: 12px; color: var(--gray-400); }

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

/* ============================================================
   VIDEO SHOWCASE
   ============================================================ */
.video-showcase {
  max-width: 1100px;
  margin: 0 auto;
}

.video-main {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}

.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  background: var(--teal);
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-info {
  padding: 28px 32px;
  text-align: center;
}

.video-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  background: rgba(224,104,64,0.08);
  color: #E06840;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}

.video-info h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.video-info p {
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .video-info { padding: 20px; }
  .video-info h3 { font-size: 18px; }
}

/* ============================================================
   GUARANTEE STRIP (Viator-style)
   ============================================================ */
.guarantee-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.guarantee-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--gray-200);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.guarantee-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.guarantee-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .guarantee-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .guarantee-strip { grid-template-columns: 1fr; }
}

/* ============================================================
   CREATIVE EFFECTS
   ============================================================ */

/* Floating decorative elements */
.floating-decor {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.float-1 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(108,196,212,0.06) 0%, transparent 70%);
  top: -80px; right: -60px;
  animation: floatDrift 8s ease-in-out infinite;
}
.float-2 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(14,165,233,0.05) 0%, transparent 70%);
  bottom: 10%; left: -40px;
  animation: floatDrift 10s ease-in-out infinite reverse;
}
.float-3 {
  width: 120px; height: 120px;
  border: 2px solid rgba(108,196,212,0.08);
  top: 30%; right: 10%;
  animation: floatDrift 12s ease-in-out infinite;
}
.float-4 {
  width: 80px; height: 80px;
  border: 2px solid rgba(245,158,11,0.08);
  bottom: 25%; left: 15%;
  animation: floatDrift 9s ease-in-out infinite reverse;
}

@keyframes floatDrift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}

/* Tilt card (3D hover) */
.tilt-card {
  transform-style: preserve-3d;
  perspective: 800px;
  transition: transform 400ms var(--ease), box-shadow 400ms var(--ease);
}

/* Dramatic reveal */
.reveal-dramatic {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-dramatic.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Animated gradient CTA */
.cta-animated-bg {
  background: linear-gradient(-45deg, #1A3C4A, #2E7D8C, #1A3C4A, #2E7D8C);
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Glass card */
.glass-card {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.3);
}

/* Animated counter */
.counter-value {
  font-family: var(--font-h);
  font-weight: 900;
  display: inline-block;
}
.counter-value.counted {
  animation: counterBounce 0.4s var(--ease);
}
@keyframes counterBounce {
  0% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* Section blob divider */
.blob-divider {
  position: relative;
  height: 60px;
  margin-top: -30px;
  margin-bottom: -30px;
  z-index: 2;
  overflow: hidden;
}
.blob-divider svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* Testimonial scattered stack */
.testimonial-stack {
  display: flex;
  justify-content: center;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  min-height: 280px;
  align-items: flex-start;
}
.testimonial-stack-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-md);
  max-width: 320px;
  transition: transform 400ms var(--ease), box-shadow 400ms var(--ease), z-index 0ms;
  position: relative;
}
.testimonial-stack-card:nth-child(1) { transform: rotate(-2deg) translateY(8px); }
.testimonial-stack-card:nth-child(2) { transform: rotate(0deg); z-index: 2; }
.testimonial-stack-card:nth-child(3) { transform: rotate(2deg) translateY(8px); }
.testimonial-stack-card:hover {
  transform: rotate(0deg) translateY(-4px) !important;
  box-shadow: var(--shadow-lg);
  z-index: 10;
}
.testimonial-stack-card .tsc-quote {
  font-family: Georgia, serif;
  font-size: 36px;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 8px;
}
.testimonial-stack-card blockquote {
  font-size: 14px;
  color: var(--teal);
  line-height: 1.65;
  margin-bottom: 16px;
  font-style: normal;
}
.testimonial-stack-card .tsc-author {
  font-weight: 700;
  font-size: 14px;
  color: var(--teal);
}
.testimonial-stack-card .tsc-detail {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 2px;
}
.testimonial-stack-card .tsc-stars {
  color: #F59E0B;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

/* Why section — alternating rows */
.why-alt {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}
.why-alt-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform var(--t-base), box-shadow var(--t-base), padding-left var(--t-base);
}
.why-alt-row:nth-child(even) { flex-direction: row-reverse; }
.why-alt-row:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}
.why-alt-row:nth-child(even):hover { transform: translateX(-6px); }

.why-alt-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.why-alt-content h4 { margin-bottom: 4px; }
.why-alt-content p { font-size: 14px; line-height: 1.6; }

@media (max-width: 768px) {
  .testimonial-stack { flex-direction: column; align-items: center; min-height: auto; }
  .testimonial-stack-card { transform: none !important; max-width: 100%; }
  .why-alt-row, .why-alt-row:nth-child(even) { flex-direction: column; text-align: center; }
  .why-alt-row:hover, .why-alt-row:nth-child(even):hover { transform: translateY(-3px); }
  .floating-decor { display: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .card-grid-3       { grid-template-columns: repeat(2, 1fr); }
  .why-grid           { grid-template-columns: repeat(2, 1fr); }
  .values-grid        { grid-template-columns: repeat(2, 1fr); }
  .itinerary-grid     { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid   { grid-template-columns: repeat(2, 1fr); }
  .steps-grid         { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .steps-grid::before { display: none; }
}

@media (max-width: 860px) {
  .nav-links   { display: none; }
  .nav-actions { display: none; }
  .nav-hamburger { display: flex; }

  .navbar.scrolled { max-width: calc(100% - 32px); }
  .navbar.scrolled .nav-brand-icon { opacity: 1; width: 90px; min-width: 90px; height: 36px; }
  .navbar.scrolled .nav-brand-icon img { width: 90px; height: auto; }

  .sticky-cta { display: block; }
  .whatsapp-float { bottom: 80px; } /* above sticky CTA */
}

@media (max-width: 768px) {
  .section-padding { padding: var(--sp-section-sm) 0; }

  .dest-grid,
  .dest-grid.reversed { grid-template-columns: 1fr; gap: 32px; direction: ltr; }

  .story-grid   { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid   { grid-template-columns: repeat(2, 1fr); }

  .card-grid-3       { grid-template-columns: 1fr; }
  .itinerary-grid    { grid-template-columns: 1fr; }
  .testimonial-grid  { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section-padding { padding: 64px 0; }

  .why-grid     { grid-template-columns: 1fr; }
  .values-grid  { grid-template-columns: 1fr; }
  .steps-grid   { grid-template-columns: 1fr; }

  .card { padding: 28px 22px; }
  .hero-buttons { flex-direction: column; align-items: center; }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .contact-form-card { padding: 24px; }
}

/* ============================================================
   PACKAGE MODAL
   ============================================================ */

/* Backdrop */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}
.modal-backdrop.open { opacity: 1; pointer-events: all; }

/* Panel — desktop: centered card; mobile: bottom sheet */
.modal-panel {
  position: fixed;
  z-index: 2001;
  background: var(--white);
  overflow: hidden;
  transition: transform 400ms var(--ease), opacity 300ms ease;
  opacity: 0;
  pointer-events: none;

  /* Desktop */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 680px;
  max-width: calc(100vw - 48px);
  max-height: 90vh;
  border-radius: var(--r-xl);
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);

  /* For absolute children like success view */
  display: flex;
  flex-direction: column;
}
.modal-panel.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.modal-scroll {
  max-height: 90vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  flex: 1;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  cursor: pointer;
  transition: background var(--t-fast), transform var(--t-fast), border-color var(--t-fast);
  line-height: 1;
}
.modal-close:hover { background: var(--gray-100); border-color: var(--gray-400); transform: scale(1.05); }

/* Carousel — sliding track */
.modal-carousel {
  position: relative;
  width: 100%;
  height: 224px;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}
.carousel-slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.carousel-label {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.5px;
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(6px);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-size: 11px;
}
.carousel-overlay-badges {
  position: absolute;
  bottom: 14px;
  left: 20px;
  display: flex;
  gap: 8px;
  z-index: 2;
}
.carousel-overlay-badges span {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  color: white;
  font-size: 13px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: var(--r-pill);
}
.carousel-halal-badge {
  position: absolute;
  top: 14px;
  left: 20px;
  background: rgba(11,43,43,0.7);
  backdrop-filter: blur(6px);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  z-index: 2;
}

.modal-carousel-dots {
  position: absolute;
  bottom: 14px;
  right: 20px;
  display: flex;
  gap: 5px;
  z-index: 2;
}
.carousel-dot {
  height: 8px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: width 300ms var(--ease), background 200ms ease;
  width: 8px;
  background: rgba(255,255,255,0.4);
}
.carousel-dot.active {
  width: 20px;
  background: var(--white);
}

/* Modal Body */
.modal-body { padding: 28px 32px 36px; }

.modal-title {
  font-size: 24px;
  margin-bottom: 10px;
}
.modal-desc {
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.modal-section-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-icon {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  flex-shrink: 0;
}

/* Highlights — 2-column checkmark grid */
.modal-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 20px;
  margin-bottom: 28px;
}
.modal-highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.5;
}
.modal-highlight-item svg {
  width: 14px;
  height: 14px;
  stroke: #6CC4D4;
  flex-shrink: 0;
}

/* Inc / Exc headings with circular icon */
.modal-section-title--inc,
.modal-section-title--exc {
  font-size: 14px;
}
.inc-icon-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.inc-icon-circle--green { background: rgba(108,196,212,0.08); }
.inc-icon-circle--green svg { stroke: #6CC4D4; }
.inc-icon-circle--red { background: rgba(239,68,68,0.08); }
.inc-icon-circle--red svg { stroke: #ef4444; }

/* Itinerary */
.modal-itinerary {
  margin-bottom: 32px;
}

.itin-day {
  display: flex;
  gap: 14px;
  padding: 0;
}

.itin-day-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.itin-day-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(11,43,43,0.08);
  color: var(--teal);
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.itin-day-line {
  width: 2px;
  flex: 1;
  background: rgba(11,43,43,0.08);
  margin-top: 4px;
  min-height: 12px;
}

.itin-day-content h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 6px;
}
.itin-day-content ul { list-style: none; }
.itin-day-content ul li {
  font-size: 13.5px;
  color: var(--gray-600);
  padding: 2px 0;
  padding-left: 14px;
  position: relative;
  line-height: 1.6;
}
.itin-day-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.4;
}

/* Included / Excluded */
.modal-inc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.modal-inc-list,
.modal-exc-list {
  list-style: none;
}
.modal-inc-list li,
.modal-exc-list li {
  font-size: 13px;
  padding: 2px 0;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.modal-inc-list li svg,
.modal-exc-list li svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  margin-top: 3px;
}
.modal-inc-list li { color: var(--gray-600); }
.modal-inc-list li svg { stroke: #6CC4D4; }
.modal-exc-list li { color: var(--gray-400); }
.modal-exc-list li svg { stroke: #ef4444; opacity: 0.7; }

/* Enquiry form — cream bg, labeled inputs */
.modal-enquiry {
  background: var(--sand);
  border-radius: var(--r-md);
  padding: 20px;
}

.modal-enquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field label {
  display: block;
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 500;
  margin-bottom: 5px;
}
.form-field input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.08);
  background: var(--white);
  font-size: 14px;
  color: var(--gray-900);
  outline: none;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.form-field input:focus {
  border-color: #0e7490;
  box-shadow: 0 0 0 3px rgba(14,116,144,0.12);
}

/* Bottom price + CTA bar */
.modal-price-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(11,43,43,0.04);
  border-radius: var(--r-md);
  margin-top: 16px;
}
.modal-price-left .price-amount {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 28px;
  color: var(--teal);
}
.modal-price-left .price-per {
  font-size: 14px;
  color: var(--gray-400);
  margin-left: 4px;
}

.modal-enquire-btn {
  padding: 12px 28px;
  border-radius: var(--r-pill);
  background: var(--gold-gradient);
  color: var(--white);
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
}
.modal-enquire-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* ---- Success View (full modal takeover) ---- */
.modal-success-view {
  display: none;
  flex: 1;
  min-height: 400px;
  background: var(--white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 32px;
}
.modal-success-view.active {
  display: flex;
  animation: successFadeIn 0.4s var(--ease) both;
}

@keyframes successFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

.success-content {
  max-width: 360px;
}

.success-checkmark {
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
}

.success-svg {
  width: 80px;
  height: 80px;
}

.success-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: successStroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) 0.15s forwards;
}

.success-check {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: successStroke 0.35s cubic-bezier(0.65, 0, 0.45, 1) 0.55s forwards;
}

@keyframes successStroke {
  to { stroke-dashoffset: 0; }
}

.success-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 12px;
}

.success-message {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 8px;
}

.success-package-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
}

/* Price + CTA row at bottom */
.modal-price-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(11,43,43,0.04);
  border-radius: var(--r-md);
  margin-top: 20px;
}

/* Clickable card cursor */
.pkg-card[onclick] { cursor: pointer; }

/* ---- Mobile bottom sheet ---- */
@media (max-width: 640px) {
  .modal-panel {
    top: auto;
    left: 0;
    bottom: 0;
    transform: translateY(100%);
    width: 100%;
    max-width: 100%;
    max-height: 92vh;
    border-radius: var(--r-xl) var(--r-xl) 0 0;
  }
  .modal-panel.open {
    transform: translateY(0);
  }
  .modal-scroll { max-height: 92vh; }
  .modal-body { padding: 24px 20px 32px; }
  .modal-carousel { height: 180px; }
  .modal-inc-grid { grid-template-columns: 1fr; }
  .modal-footer-section { grid-template-columns: 1fr; gap: 20px; }
  .modal-title { font-size: 22px; }
}
