/* ============================================================
   RV TOURS — COMPLETE LUXURY DESIGN SYSTEM
   ============================================================ */

/* ===== TOKENS ===== */
:root {
  --blue-primary:   #0B5ED7;
  --blue-secondary: #4AA9FF;
  --blue-dark:      #08418F;
  --blue-mid:       #1A6FE8;
  --blue-light:     #EAF6FF;
  --smoke:          #F8FBFF;
  --white:          #FFFFFF;
  --gray-soft:      #DCE5F0;
  --gray-mid:       #C4D4E8;
  --accent:         #6EC1FF;
  --text-dark:      #10253F;
  --text-muted:     #4F6B85;
  --text-light:     #8BACC8;

  --shadow-xs:  0 1px 6px  rgba(11,94,215,0.06);
  --shadow-sm:  0 2px 14px rgba(11,94,215,0.09);
  --shadow-md:  0 8px 36px rgba(11,94,215,0.13);
  --shadow-lg:  0 20px 60px rgba(11,94,215,0.17);
  --shadow-xl:  0 32px 80px rgba(11,94,215,0.22);

  --radius-sm:   10px;
  --radius-md:   18px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --radius-pill: 100px;

  --ease-lux:    cubic-bezier(0.25,0.46,0.45,0.94);
  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);
  --ease-out:    cubic-bezier(0.16,1,0.3,1);

  --section-pad: 110px;
}

/* ===== RESET ===== */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family:'Poppins',sans-serif;
  color:var(--text-dark);
  background:var(--white);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
img { display:block; max-width:100%; }
a   { text-decoration:none; }
ul  { list-style:none; }

::-webkit-scrollbar { width:5px; }
::-webkit-scrollbar-track { background:var(--smoke); }
::-webkit-scrollbar-thumb { background:var(--blue-secondary); border-radius:3px; }

/* ============================================================
   LAYOUT CONTAINERS
   ============================================================ */
/* Wide luxury container — covers more screen */
.lux-container {
  width: 92%;
  max-width: 1520px;
  margin: 0 auto;
}

/* Legacy narrow container (why-us still uses .container) */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ============================================================
   SECTION HEADER SYSTEM
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header span {
  display: inline-block;
  color: var(--blue-primary);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.6px;
  line-height: 1.1;
}

.section-header h2 em {
  color: var(--blue-primary);
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

.section-sub {
  margin-top: 14px;
  font-size: 15px; color: var(--text-muted);
  line-height: 1.7; max-width: 520px;
  margin-left: auto; margin-right: auto;
}

.section-label {
  display: inline-block;
  color: var(--blue-primary);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  margin-bottom: 14px;
}

/* ============================================================
   NAVBAR  — premium glassmorphism aviation pill
   ============================================================ */
.navbar {
  position: fixed;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 80px);
  max-width: 1200px;
  z-index: 999;
  transition: top 0.45s var(--ease-lux), width 0.45s var(--ease-lux);
}
.navbar.scrolled {
  top: 10px;
  width: calc(100% - 100px);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px 10px 20px;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(28px) saturate(1.3);
  -webkit-backdrop-filter: blur(28px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-top-color: rgba(255, 255, 255, 0.32);
  border-radius: var(--radius-pill);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.16),
    0 1px 0 rgba(255, 255, 255, 0.10) inset;
  transition:
    background 0.55s cubic-bezier(0.25,0.46,0.45,0.94),
    box-shadow  0.55s cubic-bezier(0.25,0.46,0.45,0.94),
    border-color 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
}

.navbar.scrolled .navbar-inner {
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(32px) saturate(1.4);
  -webkit-backdrop-filter: blur(32px) saturate(1.4);
  border-color: rgba(255, 255, 255, 0.22);
  border-top-color: rgba(255, 255, 255, 0.35);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.20),
    0 1px 0 rgba(255, 255, 255, 0.12) inset;
}

/* ── Logo ── */
.nav-logo {
  display: flex; align-items: center;
  text-decoration: none; flex-shrink: 0;
}

.navbar-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-left: 10px;
}

.navbar-logo--sidebar {
  height: 38px;
}

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

.nav-link {
  position: relative; color: rgba(255,255,255,0.95);
  font-size: 13.5px; font-weight: 500; letter-spacing: 0.35px;
  padding: 9px 18px; border-radius: var(--radius-pill);
  transition: color 0.25s ease, background 0.25s ease;
}

.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
}

.nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
}

/* Active dot indicator */
.nav-link.active::after {
  content: ''; position: absolute; bottom: 5px; left: 50%;
  transform: translateX(-50%); width: 4px; height: 4px;
  background: rgba(255, 255, 255, 0.80); border-radius: 50%;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.50);
}

/* ── CTA Button — neutral glass, no colour tint ── */
.nav-cta {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, #1a7fd4 0%, #0b5cad 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-pill); color: white;
  font-size: 13.5px; font-weight: 600; letter-spacing: 0.3px;
  border: 1px solid rgba(110, 193, 255, 0.35);
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.30), 0 1px 0 rgba(255,255,255,0.12) inset;
  transition: all 0.35s var(--ease-spring);
  overflow: hidden;
}

/* Shine sweep */
.nav-cta::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.nav-cta:hover::before { left: 100%; }

.nav-cta:hover {
  transform: translateY(-2px) scale(1.03);
  background: linear-gradient(135deg, #2589e0 0%, #1368c4 100%);
  border-color: rgba(110, 193, 255, 0.60);
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.42), 0 1px 0 rgba(255,255,255,0.15) inset;
}

/* ── Mobile Hamburger (hidden on desktop) ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none; background: transparent;
}

.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger → X animation */
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Services Dropdown ── */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  display: flex; align-items: center;
  cursor: pointer;
  background: none; border: none;
  font-family: inherit; font-size: 13.5px; font-weight: 500; letter-spacing: 0.35px;
  color: rgba(255,255,255,0.65);
  padding: 9px 18px; border-radius: var(--radius-pill);
  transition: color 0.25s ease, background 0.25s ease;
}
.nav-dropdown-toggle:hover,
.nav-dropdown:hover .nav-dropdown-toggle {
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
}
.nav-dropdown.active .nav-dropdown-toggle { color: #fff; background: rgba(255, 255, 255, 0.13); }
.nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 170px;
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 200;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border-radius: 9px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.2px;
  color: rgba(255,255,255,0.70);
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.nav-dropdown-item:hover,
.nav-dropdown-item.active {
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
}
.nav-dropdown-item svg { opacity: 0.6; flex-shrink: 0; }
.nav-dropdown-item:hover svg,
.nav-dropdown-item.active svg { opacity: 1; }

/* ============================================================
   HERO — World-Class Luxury Cinematic
   ============================================================ */

/* ── Section shell ── */
.hero {
  height: 100vh; min-height: 720px;
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
  background: #060606;
}

/* ── Full-screen video ── */
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0;
  transform-origin: center center;
}

/* ── Primary cinematic overlay ── */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top,
      rgba(10, 25, 47, 0.7)   0%,
      rgba(10, 25, 47, 0.3)  50%,
      transparent 100%);
}

/* ── Edge vignette ── */
.hero-vignette {
  position: absolute; inset: 0; z-index: 2;
  background: radial-gradient(ellipse at center,
    transparent 40%,
    rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}

/* ── Floating particles ── */
.hero-particles {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
}
.hero-particle {
  position: absolute;
  width: 2px; height: 2px;
  background: rgba(212,175,55,0.55);
  border-radius: 50%;
  animation: particleDrift 12s infinite ease-in-out;
}
.hero-particle:nth-child(1) { top: 22%; left: 18%; animation-delay: 0s;   animation-duration: 14s; }
.hero-particle:nth-child(2) { top: 45%; left: 72%; animation-delay: 2s;   animation-duration: 11s; width:3px; height:3px; }
.hero-particle:nth-child(3) { top: 68%; left: 38%; animation-delay: 4s;   animation-duration: 16s; }
.hero-particle:nth-child(4) { top: 30%; left: 85%; animation-delay: 1s;   animation-duration: 13s; width:1.5px; height:1.5px; }
.hero-particle:nth-child(5) { top: 80%; left: 12%; animation-delay: 3s;   animation-duration: 10s; }
.hero-particle:nth-child(6) { top: 55%; left: 58%; animation-delay: 5.5s; animation-duration: 15s; width:2.5px; height:2.5px; }

@keyframes particleDrift {
  0%,100% { transform: translate(0,0) scale(1);   opacity: 0.4; }
  33%      { transform: translate(8px,-14px) scale(1.5); opacity: 0.9; }
  66%      { transform: translate(-6px, 8px) scale(0.8); opacity: 0.2; }
}

/* ── Outer positioning wrap ── */
.hero-content-wrap {
  position: relative; z-index: 10;
  width: 100%;
  padding: 0 5vw 64px;
  display: flex; justify-content: flex-end;
}

/* ── Inner content block ── */
.hero-content {
  max-width: 600px;
  text-align: right;
}

/* ── Glassmorphism container ── */
.hero-glass {
  background: linear-gradient(135deg, rgba(100, 181, 246, 0.08), rgba(30, 136, 229, 0.1));
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px 30px 22px;
  box-shadow:
    0 0  0 1px rgba(255,255,255,0.02) inset,
    0 20px 50px rgba(0,0,0,0.3),
    0  0  40px rgba(100, 181, 246, 0.05);
  position: relative;
  overflow: hidden;
}

/* Subtle sky blue corner accent */
.hero-glass::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(ellipse at top right,
    rgba(100, 181, 246, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Luxury label ── */
.hero-label {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 26px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.hero-label-diamond { font-size: 8px; color: rgba(255,255,255,0.50); }
.hero-label-text { letter-spacing: 3.5px; }

/* ── Headline ── */
.hero-heading {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px; font-weight: 700; font-style: normal;
  line-height: 1.05;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 0;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
.hero-line {
  display: block;
}
.hero-line--accent {
  color: transparent;
  background: linear-gradient(120deg, #F5E6B0 0%, #D4AF37 40%, #C9A227 70%, #E8D48A 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

/* ── Description ── */
.hero-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.62);
  line-height: 1.85;
  margin-top: 18px;
  max-width: 480px;
  margin-left: auto;
}

/* ── Gold divider ── */
.hero-divider {
  height: 1px;
  margin: 24px 0;
  background: linear-gradient(to left,
    transparent 0%,
    rgba(212,175,55,0.5) 40%,
    rgba(212,175,55,0.8) 70%,
    rgba(212,175,55,0.4) 100%);
}

/* ── Stats row ── */
.hero-stats {
  display: flex; align-items: center;
  justify-content: flex-end;
  gap: 0;
  margin-bottom: 24px;
}
.hero-stat {
  text-align: center; flex: 1;
}
.hero-stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 700;
  color: #ffffff; line-height: 1;
  letter-spacing: -0.5px;
}
.hero-stat-plus {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600;
  color: rgba(255,255,255,0.75); vertical-align: top; margin-top: 4px;
  display: inline-block;
}
.hero-stat-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 8.5px; font-weight: 500;
  letter-spacing: 2.2px; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}
.hero-stat-sep {
  width: 1px; height: 24px; flex-shrink: 0;
  background: rgba(212,175,55,0.3);
  margin: 0 4px;
  align-self: flex-end;
}

/* ── CTA Buttons ── */
.hero-actions {
  display: flex; gap: 14px;
  justify-content: flex-end; flex-wrap: wrap;
}

.hero-btn-primary {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 38px;
  background: linear-gradient(135deg, #D4AF37 0%, #C9A227 50%, #B8941F 100%);
  color: #06060a;
  border-radius: var(--radius-pill);
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 11.5px;
  letter-spacing: 1.8px; text-transform: uppercase;
  box-shadow: 0 8px 36px rgba(212,175,55,0.35), 0 2px 8px rgba(0,0,0,0.3);
  transition: all 0.45s cubic-bezier(0.23,1,0.32,1);
}
.hero-btn-primary::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  transition: left 0.6s ease;
}
.hero-btn-primary:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 18px 56px rgba(212,175,55,0.5); }
.hero-btn-primary:hover::before { left: 100%; }

.hero-btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.45);
  border-radius: var(--radius-pill); color: #ffffff;
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 11.5px;
  letter-spacing: 1.8px; text-transform: uppercase;
  backdrop-filter: blur(10px);
  transition: all 0.45s cubic-bezier(0.23,1,0.32,1);
}
.hero-btn-secondary:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.70);
  color: #ffffff;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 40px rgba(255,255,255,0.10);
}

/* ── Scroll indicator ── */
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  cursor: pointer;
}
.hero-scroll-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 8.5px; font-weight: 600;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: rgba(212,175,55,0.65);
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: rgba(212,175,55,0.25);
  position: relative; overflow: hidden; border-radius: 2px;
}
.hero-scroll-dot {
  position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 12px; border-radius: 2px;
  background: linear-gradient(to bottom, #D4AF37, rgba(212,175,55,0.2));
  animation: scrollSlide 2s ease-in-out infinite;
}
@keyframes scrollSlide {
  0%   { top: -12px; opacity: 1; }
  80%  { top: 48px;  opacity: 0; }
  100% { top: -12px; opacity: 0; }
}

/* ============================================================
   PARTNERS
   ============================================================ */
.partners {
  padding: 48px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-soft);
  border-bottom: 1px solid var(--gray-soft);
  overflow: hidden;
}

.partners-label {
  text-align: center;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 28px;
}

.partners-track-wrap {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: scrollPartners 28s linear infinite;
}

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

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

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
  height: 52px;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  cursor: default;
  border-right: 1px solid var(--gray-soft);
  flex-shrink: 0;
}

.partner-item:hover { opacity: 1; }
.partner-item svg { height: 40px; width: auto; }

/* ============================================================
   DESTINATIONS
   ============================================================ */
.destinations {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start; /* prevent one tall card stretching siblings */
  min-width: 0;
}

.dest-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 30px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.06);
  cursor: pointer;
  background: #0a1830;
  transition: transform 0.5s var(--ease-lux), box-shadow 0.5s var(--ease-lux);
}

.dest-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 32px 72px rgba(0,0,0,0.18), 0 8px 24px rgba(11,94,215,0.12);
}

.dest-img-wrap {
  height: 480px;
  overflow: hidden;
  position: relative;
}

.dest-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-lux);
  will-change: transform;
}

.dest-card:hover .dest-img-wrap img { transform: scale(1.12); }

/* Gradient overlay */
.dest-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4,12,42,0.96) 0%, rgba(4,12,42,0.35) 48%, transparent 72%);
}

/* Region badge */
.dest-region {
  position: absolute; top: 20px; right: 20px; z-index: 3;
  padding: 6px 14px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.26);
  border-radius: var(--radius-pill);
  color: white; font-size: 11px; font-weight: 600;
  letter-spacing: 0.5px;
}

.dest-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  z-index: 2;
}

.dest-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px; font-weight: 800;
  color: white; letter-spacing: -0.4px;
  margin-bottom: 5px;
}

.dest-info p {
  font-size: 12.5px; color: rgba(255,255,255,0.62);
  letter-spacing: 0.4px; margin-bottom: 9px;
}

.dest-price {
  font-size: 13px; color: rgba(255,255,255,0.72);
}
.dest-price strong { color: white; font-size: 16px; font-weight: 700; }

.dest-cta {
  flex-shrink: 0;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.13);
  backdrop-filter: blur(14px);
  border: 1.5px solid rgba(255,255,255,0.32);
  display: flex; align-items: center; justify-content: center;
  color: white;
  transition: all 0.35s var(--ease-spring);
}

.dest-card:hover .dest-cta {
  background: var(--blue-primary);
  border-color: var(--blue-primary);
  transform: scale(1.14) rotate(0deg);
  box-shadow: 0 6px 20px rgba(11,94,215,0.5);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us {
  padding: var(--section-pad) 0;
  background: linear-gradient(160deg, #EEF7FF 0%, #F8FBFF 50%, #E6F3FF 100%);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: -180px; right: -180px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(11,94,215,0.08) 0%, transparent 68%);
  pointer-events: none;
}

.why-us::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -120px;
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(74,169,255,0.06) 0%, transparent 68%);
  pointer-events: none;
}

/* ── Layout ── */
.why-wrap {
  display: flex;
  align-items: stretch;   /* key fix: both columns same height */
  gap: 56px;
}

/* ── Left column — image ── */
.why-visual {
  flex: 0 0 48%;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Image stack fills full column height — NO fixed height */
.why-img-stack {
  position: relative;
  width: 100%;
  flex: 1;                /* stretch to fill .why-visual height */
  min-height: 560px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0,0,0,0.16),
    0 8px 28px rgba(11,94,215,0.12),
    0 0 0 1px rgba(11,94,215,0.06);
}

/* All images fill stack; only .active visible */
.why-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: scale(1.05);
  will-change: opacity, transform;
}

.why-img--active {
  opacity: 1;
  transform: scale(1);
}

/* Award badge — sits at bottom of image */
.why-award {
  position: absolute;
  bottom: 24px; left: 24px; z-index: 3;
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(11,94,215,0.88);
  backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-pill);
  padding: 11px 22px;
  color: white;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.6px;
  box-shadow: 0 8px 28px rgba(11,94,215,0.38);
}

/* Slide indicator dots */
.why-dots {
  position: absolute;
  bottom: 24px; right: 24px; z-index: 3;
  display: flex; gap: 7px; align-items: center;
}

.why-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.38);
  transition: all 0.35s ease;
  cursor: default;
}

.why-dot.active {
  width: 22px; border-radius: 4px;
  background: white;
}

/* ── Right column — content ── */
.why-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px; font-weight: 800;
  color: var(--text-dark); letter-spacing: -0.5px;
  line-height: 1.12; margin: 12px 0 16px;
}
.why-title em {
  color: var(--blue-primary); font-style: italic;
  font-family: 'Playfair Display', serif;
}

.why-sub {
  font-size: 15px; color: var(--text-muted);
  line-height: 1.8; margin-bottom: 32px;
}

/* ── Feature cards — glassmorphism ── */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 16px;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid rgba(200,222,255,0.6);
  box-shadow: 0 4px 18px rgba(11,94,215,0.08), 0 1px 4px rgba(0,0,0,0.04);
  cursor: pointer;
  transition: transform 0.35s var(--ease-lux), box-shadow 0.35s var(--ease-lux), border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Subtle blue left-edge accent on hover */
.feature-item::before {
  content: '';
  position: absolute; top: 14px; bottom: 14px; left: 0;
  width: 3px; border-radius: 0 3px 3px 0;
  background: var(--blue-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-item:hover,
.feature-item--active {
  transform: translateY(-5px) scale(1.01);
  border-color: rgba(11,94,215,0.22);
  box-shadow: 0 14px 40px rgba(11,94,215,0.13), 0 4px 12px rgba(0,0,0,0.05);
}

.feature-item:hover::before,
.feature-item--active::before {
  opacity: 1;
}

.fi-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, #EAF4FF 0%, #D6ECFF 100%);
  color: var(--blue-primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(11,94,215,0.10);
  transition: all 0.35s var(--ease-spring);
}

.feature-item:hover .fi-icon,
.feature-item--active .fi-icon {
  background: linear-gradient(135deg, var(--blue-primary) 0%, #1A6FE8 100%);
  color: white;
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 6px 20px rgba(11,94,215,0.30);
}

.fi-text h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13.5px; font-weight: 700;
  color: #10253F; margin-bottom: 3px;
  letter-spacing: -0.1px;
}
.fi-text p {
  font-size: 12px; color: #5a7a9a; line-height: 1.55;
}

/* ============================================================
   PACKAGES
   ============================================================ */
.packages {
  padding: var(--section-pad) 0;
  background: var(--smoke);
  position: relative;
}

.packages::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-soft), transparent);
}

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

.pkg-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-soft);
  box-shadow: var(--shadow-sm);
  transition: transform 0.42s var(--ease-lux), box-shadow 0.42s var(--ease-lux);
  /* Equal-height cards: flex column so body stretches */
  display: flex;
  flex-direction: column;
}

.pkg-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.pkg-img-wrap {
  position: relative;
  height: 280px; overflow: hidden;
}

.pkg-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.65s var(--ease-lux);
}

.pkg-card:hover .pkg-img-wrap img { transform: scale(1.07); }

.pkg-tag {
  position: absolute; top: 16px; left: 16px;
  padding: 5px 14px;
  background: rgba(11,94,215,0.9);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  color: white; font-size: 11px; font-weight: 700;
  letter-spacing: 0.8px; text-transform: uppercase;
}
.pkg-tag--blue  { background: rgba(74,169,255,0.9); }
.pkg-tag--green { background: rgba(16,185,129,0.9); }

.pkg-body {
  padding: 22px 22px 26px;
  flex: 1; /* stretch body so footer stays at bottom */
  display: flex;
  flex-direction: column;
}

.pkg-meta {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.pkg-rating { display: flex; align-items: center; gap: 4px; }
.pkg-rating .stars { color: #F59E0B; font-size: 12px; letter-spacing: 1px; }
.pkg-rating .count { font-size: 11.5px; color: var(--text-light); }

.pkg-img-hover {
  position: absolute; inset: 0;
  background: rgba(11,94,215,0.72);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.38s var(--ease-lux);
}

.pkg-img-hover span {
  color: white; font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-pill);
  padding: 9px 24px;
}

.pkg-card:hover .pkg-img-hover { opacity: 1; }

.pkg-duration {
  display: flex; align-items: center; gap: 5px;
}

.pkg-desc {
  font-size: 13px; color: var(--text-light);
  line-height: 1.65; margin-bottom: 16px;
}

.pkg-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px; font-weight: 700;
  color: var(--text-dark); letter-spacing: -0.2px;
  margin-bottom: 8px;
}

.pkg-footer {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-top: auto; /* push footer to card bottom regardless of desc length */
  padding-top: 14px;
}

.pkg-price {
  font-size: 13px; color: var(--text-muted);
}
.pkg-price strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px; font-weight: 800;
  color: var(--blue-primary); letter-spacing: -0.3px;
}

.pkg-btn {
  display: inline-flex; align-items: center; gap: 0;
  padding: 10px 22px;
  background: var(--blue-primary);
  border-radius: var(--radius-pill);
  color: white; font-size: 13px; font-weight: 600;
  box-shadow: 0 4px 16px rgba(11,94,215,0.3);
  transition: all 0.3s var(--ease-spring);
  position: relative; overflow: hidden;
}
.pkg-btn::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left .5s ease;
}
.pkg-btn:hover::before { left: 100%; }
.pkg-btn:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11,94,215,0.4);
}

/* ============================================================
   DREAM JOURNEY — Luxury Cinematic CTA
   ============================================================ */
.dream-journey {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0;
}

/* Parallax background */
.dj-bg {
  position: absolute; inset: -100px 0;
  background-image: url('../images/Hero-2.png');
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.dj-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(2,8,36,0.96) 0%, rgba(4,25,80,0.88) 45%, rgba(8,55,145,0.72) 100%);
}

/* Ambient orbs */
.dj-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.dj-orb--1 {
  width: 600px; height: 600px;
  top: -140px; right: -140px;
  background: radial-gradient(circle, rgba(74,169,255,0.16) 0%, transparent 68%);
}
.dj-orb--2 {
  width: 400px; height: 400px;
  bottom: -80px; left: 8%;
  background: radial-gradient(circle, rgba(11,94,215,0.14) 0%, transparent 68%);
}

/* Floating cloud decorations */
.dj-cloud {
  position: absolute;
  font-size: 160px;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  color: white;
}
.dj-cloud--1 {
  top: 60px; left: 4%;
  font-size: 110px;
  opacity: 0.04;
  animation: cloudDrift1 18s ease-in-out infinite;
}
.dj-cloud--2 {
  bottom: 80px; right: 5%;
  opacity: 0.035;
  animation: cloudDrift2 22s ease-in-out infinite;
}

@keyframes cloudDrift1 {
  0%,100% { transform: translateX(0) translateY(0); }
  50%      { transform: translateX(30px) translateY(-14px); }
}
@keyframes cloudDrift2 {
  0%,100% { transform: translateX(0) translateY(0); }
  50%      { transform: translateX(-24px) translateY(10px); }
}

/* Floating particles */
.dj-particles {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1;
}
.dj-particle {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(74,169,255,0.6);
  box-shadow: 0 0 6px rgba(74,169,255,0.8);
  animation: particleFloat 8s ease-in-out infinite;
}
.dj-particle:nth-child(1) { left:12%; top:25%; animation-delay:0s;    animation-duration:9s; }
.dj-particle:nth-child(2) { left:28%; top:70%; animation-delay:1.2s;  animation-duration:11s; width:2px; height:2px; }
.dj-particle:nth-child(3) { left:65%; top:20%; animation-delay:2.4s;  animation-duration:8s; }
.dj-particle:nth-child(4) { left:80%; top:65%; animation-delay:0.8s;  animation-duration:10s; width:4px; height:4px; }
.dj-particle:nth-child(5) { left:45%; top:85%; animation-delay:3s;    animation-duration:12s; width:2px; height:2px; }
.dj-particle:nth-child(6) { left:90%; top:35%; animation-delay:1.8s;  animation-duration:9s; }

@keyframes particleFloat {
  0%,100% { transform: translateY(0) scale(1);   opacity: 0.5; }
  50%      { transform: translateY(-28px) scale(1.4); opacity: 1; }
}

/* Centering wrapper */
.dj-wrap { position: relative; z-index: 2; }

/* ── Glassmorphism card ── */
.dj-card {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 72px 80px 64px;
  background: rgba(255,255,255,0.055);
  backdrop-filter: blur(32px) saturate(1.5);
  -webkit-backdrop-filter: blur(32px) saturate(1.5);
  border: 1px solid rgba(255,255,255,0.10);
  border-top-color: rgba(255,255,255,0.20);
  border-radius: var(--radius-xl);
  box-shadow:
    0 48px 120px rgba(0,0,0,0.40),
    0 0 0 1px rgba(74,169,255,0.06) inset,
    0 1px 0 rgba(255,255,255,0.08) inset;
}

/* Top shimmer line */
.dj-card::before {
  content: '';
  position: absolute; top: 0; left: 8%; right: 8%; height: 1.5px;
  background: linear-gradient(90deg,
    transparent,
    rgba(74,169,255,0.55),
    rgba(255,255,255,0.35),
    rgba(74,169,255,0.55),
    transparent);
  border-radius: 2px;
}
.dj-card { position: relative; overflow: hidden; }

/* Corner glow */
.dj-card::after {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(74,169,255,0.10) 0%, transparent 65%);
  pointer-events: none;
}

.dj-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-pill);
  padding: 10px 24px;
  color: var(--accent);
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 34px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.dj-diamond {
  font-size: 12px;
  text-shadow: 0 0 12px rgba(74,169,255,0.8);
}

.dj-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 64px; font-weight: 800;
  color: white; letter-spacing: -1.5px; line-height: 1.05;
  margin-bottom: 22px;
  text-shadow: 0 12px 60px rgba(0,0,0,0.30);
}
.dj-title em {
  font-style: italic; font-family: 'Playfair Display', serif;
  background: linear-gradient(125deg, #e0f2fe 0%, #93c5fd 40%, #bfdbfe 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dj-sub {
  font-size: 17px; color: rgba(255,255,255,0.68);
  line-height: 1.82; max-width: 540px;
  margin: 0 auto 44px;
}

.dj-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Gold luxury button */
.dj-btn-gold {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 48px;
  background: linear-gradient(135deg, #f0c040 0%, #d4890e 50%, #e8a820 100%);
  border-radius: var(--radius-pill);
  color: #1a0800;
  font-size: 15px; font-weight: 700; letter-spacing: 0.4px;
  box-shadow:
    0 8px 36px rgba(212,137,14,0.48),
    0 2px 8px rgba(0,0,0,0.25),
    0 1px 0 rgba(255,255,255,0.25) inset;
  transition: all 0.38s var(--ease-spring);
  overflow: hidden;
}
.dj-btn-gold::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s ease;
}
.dj-btn-gold:hover::before { left: 100%; }
.dj-btn-gold:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 20px 55px rgba(212,137,14,0.55), 0 4px 14px rgba(0,0,0,0.28);
}

/* Glass ghost button */
.dj-btn-glass {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 18px 48px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(14px);
  border: 1.5px solid rgba(255,255,255,0.32);
  border-radius: var(--radius-pill);
  color: white; font-size: 15px; font-weight: 600;
  transition: all 0.38s var(--ease-spring);
}
.dj-btn-glass:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.62);
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.22);
}

/* Divider */
.dj-divider {
  width: 60px; height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 0 auto 36px;
}

/* Mini stats */
.dj-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 28px; flex-wrap: wrap;
}
.dj-stat { text-align: center; }
.dj-stat strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 26px; font-weight: 800;
  color: white; letter-spacing: -0.4px; line-height: 1;
}
.dj-stat span {
  font-size: 10.5px; color: rgba(255,255,255,0.50);
  letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; margin-top: 5px; display: block;
}
.dj-stat-sep {
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* Floating airplane */
.dj-plane {
  position: absolute;
  width: 460px;
  right: 2%;
  bottom: 0;
  z-index: 3;
  opacity: 0.80;
  filter: drop-shadow(0 28px 70px rgba(0,0,0,0.30));
  pointer-events: none;
  will-change: transform;
}

/* ============================================================
   STATISTICS
   ============================================================ */
.stats-section {
  padding: 96px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-soft);
  border-bottom: 1px solid var(--gray-soft);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 28px;
  border-right: 1px solid var(--gray-soft);
  transition: background 0.38s var(--ease-lux);
  position: relative;
  opacity: 1;           /* prevent GSAP leaving items invisible */
}

.stat-item:last-child { border-right: none; }

.stat-item:hover { background: var(--blue-light); }

.stat-item::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 3px;
  background: var(--blue-primary);
  border-radius: 3px;
  transition: width 0.4s var(--ease-lux);
}
.stat-item:hover::after { width: 48px; }

.stat-icon {
  width: 64px; height: 64px; border-radius: 20px;
  background: var(--blue-light);
  color: var(--blue-primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: all 0.38s var(--ease-spring);
  box-shadow: 0 4px 16px rgba(11,94,215,0.10);
}

.stat-item:hover .stat-icon {
  background: var(--blue-primary); color: white;
  transform: scale(1.12) rotate(-4deg);
  box-shadow: 0 8px 28px rgba(11,94,215,0.3);
}

.stat-count {
  display: flex; align-items: baseline;
  margin-bottom: 10px;
}

.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 60px; font-weight: 600;
  color: var(--text-dark); letter-spacing: -1.5px;
  line-height: 1;
}

.stat-suffix {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px; font-weight: 500;
  color: var(--blue-primary); margin-left: 3px;
  letter-spacing: -0.3px;
}

.stat-item > p {
  font-size: 12px; color: var(--text-muted);
  font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
}

.testimonials {
  padding: var(--section-pad) 0;
  background: var(--blue-light);
  position: relative;
  overflow: hidden;
}
.testimonials::after {
  content: '';
  position: absolute; bottom: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(11,94,215,0.07) 0%, transparent 68%);
  pointer-events: none;
}
/* ── Slider container ── */
.testi-slider {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}
/* Track — slides stack on top of each other */
.testi-track {
  position: relative;
  min-height: 220px; /* Accommodates 200px card + shadow space */
}
/* Each slide: absolute + invisible by default */
.testi-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease-in-out, transform 0.5s var(--ease-lux);
  transform: translateY(12px);
}
/* Active slide: sits in normal flow to give the track its height */
.testi-slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
/* ── Card — exactly 200px, flexbox layout ── */
.testi-card {
  width: 100%;
  height: 200px; /* Fixed height requested */
  background: #FFFFFF;
  border-radius: 24px;
  padding: 24px 32px; /* Reduced to balance vertical space */
  border: 1px solid rgba(200,222,255,0.55);
  box-shadow:
    0 8px 40px rgba(11,94,215,0.10),
    0 2px 10px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.38s var(--ease-lux);
  
  /* Flexbox settings to perfectly distribute elements within 200px height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testi-card:hover {
  box-shadow:
    0 20px 60px rgba(11,94,215,0.14),
    0 4px 16px rgba(0,0,0,0.06);
}
/* Top decorative corner accent */
.testi-card::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle at 100% 0%, rgba(11,94,215,0.06) 0%, transparent 70%);
  pointer-events: none;
}
/* Quote Icon - Made absolute to prevent pushing content down */
.testi-quote-icon {
  position: absolute;
  top: 10px;
  right: 28px;
  font-family: var(--font-serif);
  font-size: 72px;
  line-height: 1;
  color: #D6ECFF;
  font-weight: 700;
  user-select: none;
  pointer-events: none;
  opacity: 0.65;
  z-index: 1;
}
.testi-top {
  display: flex; 
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}
.testi-stars {
  color: #F59E0B; 
  font-size: 15px; 
  letter-spacing: 2px;
}
/* Testimonial Text */
.testi-card p {
  font-size: 14px; 
  color: #3a5a7a;
  line-height: 1.6; 
  font-style: italic;
  margin: 0;
  letter-spacing: 0.1px;
  z-index: 2;
  
  /* Prevent overflow beyond 3 lines on standard screens */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* Author Section */
.testi-author {
  display: flex; 
  align-items: center; 
  gap: 12px;
  z-index: 2;
}
.testi-avatar {
  width: 42px; 
  height: 42px; 
  border-radius: 50%;
  background: linear-gradient(135deg, #EAF4FF 0%, #C8E0FF 100%);
  color: var(--blue-primary);
  border: 1.5px solid rgba(11,94,215,0.15);
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 12px; 
  font-weight: 700; 
  flex-shrink: 0;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(11,94,215,0.08);
}
.testi-author-info strong {
  display: block; 
  font-family: var(--font-sans);
  font-size: 13.5px; 
  font-weight: 700; 
  color: #10253F;
  margin-bottom: 2px;
}
.testi-author-info span {
  font-size: 11.5px; 
  color: #7a9ab8;
}
/* ── Navigation row (Dots only, arrows removed) ── */
.testi-nav {
  display: flex; 
  align-items: center;
  justify-content: center; 
  margin-top: 28px;
}
.testi-dots {
  display: flex; 
  align-items: center; 
  gap: 9px;
}
.testi-dot {
  width: 8px; 
  height: 8px; 
  border-radius: 50%;
  background: rgba(11,94,215,0.18);
  border: none; 
  cursor: pointer;
  transition: all 0.38s var(--ease-spring);
  padding: 0;
}
.testi-dot.active {
  width: 32px; 
  border-radius: 4px;
  background: var(--blue-primary);
  box-shadow: 0 2px 8px rgba(11,94,215,0.30);
}
/* ============================================================
   FOOTER — Compact Sky Blue & White
   Class prefix: ft-
   ============================================================ */

/* ── Base ── */
.ft {
  background: linear-gradient(150deg, #07142e 0%, #0a1c44 55%, #06112a 100%);
  position: relative; overflow: hidden;
}
.ft-wave { line-height: 0; position: relative; z-index: 1; }
.ft-wave svg { display: block; width: 100%; height: auto; }

/* ── Subtle background layer ── */
.ft-bg {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0; overflow: hidden;
}
.ft-bg-blob {
  position: absolute; border-radius: 50%;
  filter: blur(70px); pointer-events: none;
  animation: ftBlobFloat 26s ease-in-out infinite;
  will-change: transform;
}
.ft-bg-blob--1 {
  width: 420px; height: 420px; top: -80px; right: -80px;
  background: radial-gradient(circle, rgba(186,230,253,0.50) 0%, transparent 68%);
}
.ft-bg-blob--2 {
  width: 320px; height: 320px; bottom: 0; left: -60px;
  background: radial-gradient(circle, rgba(56,189,248,0.18) 0%, transparent 68%);
  animation-delay: -11s;
}
@keyframes ftBlobFloat {
  0%, 100% { transform: translate(0, 0)   scale(1.00); }
  40%       { transform: translate(12px,-16px) scale(1.04); }
  70%       { transform: translate(-8px, 10px) scale(0.97); }
}
.ft-bg-route {
  position: absolute; bottom: 20px; left: 0;
  width: 100%; height: 200px; pointer-events: none; opacity: 0.9;
}
.ft-bg-plane {
  position: absolute; pointer-events: none;
  animation: ftPlaneFly linear infinite; will-change: transform;
}
.ft-bg-plane--1 { width: 38px; top: 22%; animation-duration: 55s; opacity: 0.55; }
.ft-bg-plane--2 { width: 24px; top: 65%; animation-duration: 80s; animation-delay: -28s; opacity: 0.35; }
@keyframes ftPlaneFly {
  from { transform: translateX(-80px); }
  to   { transform: translateX(calc(100vw + 80px)); }
}

/* ── Main content ── */
.ft .lux-container { position: relative; z-index: 2; padding-top: 0; }

/* ── 3-Column main grid ── */
.ft-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 52px;
  padding: 52px 0 38px;
  align-items: start;
}

/* ── Column 1: Brand ── */
.ft-col-brand { display: flex; flex-direction: column; gap: 0; }

.ft-logo {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; margin-bottom: 16px;
}
.ft-logo-orb {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #38BDF8, #0284C7);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 5px 18px rgba(14,165,233,0.38), 0 2px 5px rgba(2,132,199,0.20);
  transition: box-shadow 0.30s;
  will-change: transform;
}
.ft-logo-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  color: #ffffff; letter-spacing: 0.15em; text-transform: uppercase;
}
.ft-logo-name strong { font-weight: 800; }
.ft-logo-name em { font-style: normal; color: #38BDF8; }

.ft-intro {
  font-family: 'Poppins', sans-serif;
  font-size: 0.80rem; line-height: 1.80;
  color: rgba(255,255,255,0.60); margin: 0 0 22px;
  max-width: 300px;
}

.ft-socials {
  display: flex; align-items: center; gap: 10px;
}
.ft-social {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(56,189,248,0.25);
  display: flex; align-items: center; justify-content: center;
  color: #38BDF8; text-decoration: none;
  box-shadow: 0 3px 12px rgba(14,165,233,0.09), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: background 0.26s, border-color 0.26s, color 0.26s, box-shadow 0.26s;
  will-change: transform;
}
.ft-social:hover {
  background: linear-gradient(135deg, #38BDF8, #0EA5E9);
  color: #ffffff; border-color: transparent;
  box-shadow: 0 8px 22px rgba(14,165,233,0.38);
}

/* ── Column 2: Navigation ── */
.ft-col-nav { }

.ft-col-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.50); margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid rgba(56,189,248,0.22);
}

.ft-nav-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; }
.ft-nl-link {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.83rem; font-weight: 500;
  color: rgba(255,255,255,0.72); padding: 7px 0;
  text-decoration: none; position: relative;
  transition: color 0.24s; will-change: transform;
}
.ft-nl-arrow {
  color: #38BDF8; font-size: 1.1rem; line-height: 1;
  transform: translateX(-2px);
  transition: transform 0.24s ease;
  display: inline-block; flex-shrink: 0;
}
.ft-nl-link::after {
  content: '';
  position: absolute; bottom: 5px; left: 20px;
  width: 0; height: 1.5px;
  background: linear-gradient(90deg, #38BDF8, #0EA5E9);
  transition: width 0.28s ease; border-radius: 2px;
}
.ft-nl-link:hover { color: #38BDF8; }
.ft-nl-link:hover .ft-nl-arrow { transform: translateX(2px); }
.ft-nl-link:hover::after { width: calc(100% - 20px); }

/* ── Column 3: Contact ── */
.ft-col-contact { }

.ft-ci-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.ft-ci {
  display: flex; align-items: flex-start; gap: 11px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.79rem; color: rgba(255,255,255,0.68); line-height: 1.60;
}
.ft-ci-icon {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: rgba(56,189,248,0.11);
  display: flex; align-items: center; justify-content: center;
  color: #0EA5E9; margin-top: 1px;
  transition: background 0.24s, transform 0.24s, box-shadow 0.24s;
}
.ft-ci:hover .ft-ci-icon {
  background: #38BDF8; color: #fff;
  transform: scale(1.12); box-shadow: 0 4px 12px rgba(14,165,233,0.30);
}
.ft-ci a { color: rgba(255,255,255,0.68); text-decoration: none; transition: color 0.22s; }
.ft-ci a:hover { color: #38BDF8; }

/* ── Bottom copyright row ── */
.ft-bottom { padding: 0 0 38px; }
.ft-bottom-line {
  height: 1px; margin-bottom: 18px;
  background: linear-gradient(90deg, transparent, rgba(56,189,248,0.28), transparent);
}
.ft-bottom-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; flex-wrap: wrap;
}
.ft-copy {
  font-family: 'Poppins', sans-serif;
  font-size: 0.70rem; color: rgba(255,255,255,0.38);
}
.ft-legal { display: flex; align-items: center; gap: 10px; }
.ft-legal a {
  font-family: 'Poppins', sans-serif;
  font-size: 0.70rem; color: rgba(255,255,255,0.38);
  text-decoration: none; transition: color 0.22s;
}
.ft-legal a:hover { color: #38BDF8; }
.ft-legal span { color: rgba(56,189,248,0.35); }

/* ── Responsive ── */
@media (max-width: 960px) {
  .ft-main { grid-template-columns: 1fr 1fr; gap: 36px; padding: 44px 0 32px; }
  .ft-col-brand { grid-column: span 2; flex-direction: row; gap: 32px; align-items: flex-start; }
  .ft-intro { max-width: none; flex: 1; margin-bottom: 0; }
  .ft-socials { flex-shrink: 0; flex-direction: column; gap: 8px; }
}
@media (max-width: 640px) {
  .ft-main { grid-template-columns: 1fr; gap: 28px; padding: 36px 0 26px; }
  .ft-col-brand { flex-direction: column; gap: 0; }
  .ft-socials { flex-direction: row; }
  .ft-bottom-row { flex-direction: column; align-items: center; text-align: center; gap: 8px; }
  .ft-bg-plane--2 { display: none; }
}

/* ============================================================
   LUXURY TRAVEL EXPERIENCE (NEW SECTION)
   ============================================================ */
.lux-travel {
  padding: var(--section-pad) 0;
  background: linear-gradient(170deg, #07142e 0%, #0b1d4a 50%, #0e2660 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle star field */
.lux-travel::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 15% 22%, rgba(255,255,255,0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 33% 68%, rgba(255,255,255,0.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 58% 15%, rgba(255,255,255,0.30) 0%, transparent 100%),
    radial-gradient(1px 1px at 72% 55%, rgba(255,255,255,0.20) 0%, transparent 100%),
    radial-gradient(1px 1px at 88% 30%, rgba(255,255,255,0.28) 0%, transparent 100%),
    radial-gradient(1px 1px at 42% 85%, rgba(255,255,255,0.22) 0%, transparent 100%);
  pointer-events: none;
}

/* Two-column layout */
.lt-wrap {
  display: flex;
  align-items: center;
  gap: 80px;
}

/* ── Left: Globe ── */
.lt-visual {
  flex: 0 0 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lt-globe-wrap {
  position: relative;
  width: 420px; height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Outer rotating rings */
.lt-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(74,169,255,0.18);
  pointer-events: none;
}
.lt-ring--1 {
  inset: -24px;
  animation: ringRotate 24s linear infinite;
  border-style: dashed;
}
.lt-ring--2 {
  inset: -52px;
  animation: ringRotate 36s linear infinite reverse;
  border-color: rgba(74,169,255,0.10);
}

@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Globe core */
.lt-globe-core {
  position: relative;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 36%,
    rgba(25,65,145,0.90) 0%,
    rgba(10,26,74,0.96) 55%,
    rgba(5,12,40,0.98) 100%);
  border: 1.5px solid rgba(74,169,255,0.25);
  box-shadow:
    0 0 0 1px rgba(74,169,255,0.10),
    0 0 60px rgba(11,94,215,0.28),
    0 0 120px rgba(11,94,215,0.12),
    inset 0 0 40px rgba(74,169,255,0.08);
  overflow: hidden;
}

/* Globe SVG — continent shapes */
.lt-globe-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0.9;
}

/* Connection lines SVG */
.lt-lines-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

/* Destination dots */
.lt-dot {
  position: absolute;
  left: var(--dx); top: var(--dy);
  transform: translate(-50%, -50%);
  z-index: 4;
  cursor: default;
}
.lt-dot-ring {
  display: block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(74,169,255,0.9);
  box-shadow:
    0 0 0 3px rgba(74,169,255,0.3),
    0 0 12px rgba(74,169,255,0.6);
  animation: dotPulse 2.5s ease-in-out infinite;
}
.lt-dot:nth-child(odd) .lt-dot-ring  { animation-delay: 0.8s; }
.lt-dot:nth-child(even) .lt-dot-ring { animation-delay: 1.6s; }

@keyframes dotPulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(74,169,255,0.3), 0 0 12px rgba(74,169,255,0.6); transform: scale(1); }
  50%      { box-shadow: 0 0 0 7px rgba(74,169,255,0.12), 0 0 24px rgba(74,169,255,0.8); transform: scale(1.2); }
}

.lt-dot-label {
  position: absolute;
  bottom: calc(100% + 6px); left: 50%;
  transform: translateX(-50%);
  background: rgba(10,28,70,0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(74,169,255,0.3);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
  font-size: 10px; font-weight: 600;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lt-dot:hover .lt-dot-label { opacity: 1; }

/* Globe badge */
.lt-globe-badge {
  position: absolute;
  bottom: -16px; left: 50%;
  transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(11,94,215,0.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  color: white; font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
  box-shadow: 0 8px 30px rgba(11,94,215,0.40);
  white-space: nowrap;
  z-index: 5;
}

/* ── Right: Content ── */
.lt-content {
  flex: 1; min-width: 0;
}

.lt-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px; font-weight: 800;
  color: white; letter-spacing: -0.6px; line-height: 1.10;
  margin: 14px 0 18px;
}
.lt-title em {
  font-style: italic; font-family: 'Playfair Display', serif;
  background: linear-gradient(120deg, #60a5fa, #93c5fd, #bfdbfe);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lt-sub {
  font-size: 15px; color: rgba(255,255,255,0.58);
  line-height: 1.8; margin-bottom: 40px; max-width: 460px;
}

/* Feature rows */
.lt-features {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 44px;
}

.lt-feat {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s var(--ease-lux);
  cursor: default;
  position: relative;
}

.lt-feat:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(74,169,255,0.18);
  transform: translateX(8px);
}

.lt-feat-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(74,169,255,0.12);
  border: 1px solid rgba(74,169,255,0.22);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s var(--ease-spring);
}
.lt-feat:hover .lt-feat-icon {
  background: var(--blue-primary);
  color: white;
  border-color: transparent;
  box-shadow: 0 6px 22px rgba(11,94,215,0.40);
  transform: scale(1.1) rotate(-4deg);
}

.lt-feat-text h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 700;
  color: rgba(255,255,255,0.90); margin-bottom: 3px;
}
.lt-feat-text p {
  font-size: 12.5px; color: rgba(255,255,255,0.48); line-height: 1.55;
}

.lt-feat-num {
  position: absolute; right: 24px; top: 50%;
  transform: translateY(-50%);
  font-family: 'Montserrat', sans-serif;
  font-size: 32px; font-weight: 800;
  color: rgba(255,255,255,0.04);
  letter-spacing: -1px; line-height: 1;
  pointer-events: none;
  transition: color 0.35s ease;
}
.lt-feat:hover .lt-feat-num { color: rgba(74,169,255,0.06); }

/* CTA button */
.lt-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--blue-secondary) 0%, var(--blue-primary) 100%);
  border-radius: var(--radius-pill); color: white;
  font-size: 14px; font-weight: 700; letter-spacing: 0.3px;
  box-shadow: 0 8px 28px rgba(11,94,215,0.40);
  transition: all 0.35s var(--ease-spring);
  position: relative; overflow: hidden;
}
.lt-cta::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.20), transparent);
  transition: left 0.55s ease;
}
.lt-cta:hover::before { left: 100%; }
.lt-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 48px rgba(74,169,255,0.50);
}


/* ============================================================
   TRAVEL TIMELINE (NEW SECTION)
   ============================================================ */
.travel-timeline {
  padding: var(--section-pad) 0 calc(var(--section-pad) + 20px);
  background: var(--smoke);
  position: relative;
  overflow: hidden;
}

/* BG orbs */
.tt-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.tt-bg-orb--1 {
  width: 560px; height: 560px;
  top: -180px; right: -140px;
  background: radial-gradient(circle, rgba(11,94,215,0.06) 0%, transparent 68%);
}
.tt-bg-orb--2 {
  width: 400px; height: 400px;
  bottom: -100px; left: -80px;
  background: radial-gradient(circle, rgba(74,169,255,0.05) 0%, transparent 68%);
}

.tt-header { margin-bottom: 80px; }

/* ── Horizontal track ── */
.tt-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding-top: 0;
}

/* Connecting line */
.tt-line {
  position: absolute;
  top: 36px; /* center of the nodes */
  left: calc(100% / 10);   /* starts at first node center */
  right: calc(100% / 10);  /* ends at last node center */
  height: 2px;
  background: var(--gray-soft);
  z-index: 0;
  overflow: hidden;
}

.tt-line-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-primary), var(--blue-secondary));
  width: 0%;
  transition: width 1.6s var(--ease-lux);
  border-radius: 2px;
}
.tt-line-fill.active { width: 100%; }

/* Each step */
.tt-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 0 12px;
}

/* Node */
.tt-step-node {
  position: relative;
  width: 72px; height: 72px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 32px;
}

.tt-node-ring {
  position: absolute; inset: -8px;
  border-radius: 50%;
  border: 2px dashed rgba(11,94,215,0.20);
  animation: nodeRing 4s linear infinite;
}
.tt-step[data-step="1"] .tt-node-ring { animation-delay: 0s; }
.tt-step[data-step="2"] .tt-node-ring { animation-delay: 0.5s; }
.tt-step[data-step="3"] .tt-node-ring { animation-delay: 1s; }
.tt-step[data-step="4"] .tt-node-ring { animation-delay: 1.5s; }
.tt-step[data-step="5"] .tt-node-ring { animation-delay: 2s; }

@keyframes nodeRing {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.tt-node-inner {
  width: 72px; height: 72px; border-radius: 50%;
  background: white;
  border: 2px solid var(--gray-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  box-shadow: 0 4px 20px rgba(11,94,215,0.10);
  transition: all 0.45s var(--ease-spring);
  position: relative; z-index: 2;
}

.tt-step.is-active .tt-node-inner,
.tt-step:hover .tt-node-inner {
  background: linear-gradient(135deg, var(--blue-secondary), var(--blue-primary));
  color: white;
  border-color: transparent;
  box-shadow:
    0 8px 32px rgba(11,94,215,0.36),
    0 0 0 6px rgba(11,94,215,0.10);
  transform: scale(1.10);
}

/* Step card */
.tt-step-card {
  text-align: center;
  padding: 28px 20px 24px;
  background: white;
  border-radius: 20px;
  border: 1px solid rgba(200,222,255,0.55);
  box-shadow: 0 4px 20px rgba(11,94,215,0.07);
  width: 100%;
  transition: transform 0.40s var(--ease-lux), box-shadow 0.40s var(--ease-lux), border-color 0.40s ease;
  position: relative;
  overflow: hidden;
}
.tt-step-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue-secondary), var(--blue-primary));
  opacity: 0;
  transition: opacity 0.35s ease;
}
.tt-step:hover .tt-step-card {
  transform: translateY(-8px);
  box-shadow: 0 20px 52px rgba(11,94,215,0.14);
  border-color: rgba(11,94,215,0.18);
}
.tt-step:hover .tt-step-card::before { opacity: 1; }

/* Last card special gold accent */
.tt-step-card--last::before {
  background: linear-gradient(90deg, #e8a820, #f0c040);
}

.tt-step-num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 36px; font-weight: 800;
  color: rgba(11,94,215,0.08);
  letter-spacing: -1px; line-height: 1;
  margin-bottom: 6px;
}

.tt-step-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px; font-weight: 800;
  color: var(--text-dark); margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.tt-step-card p {
  font-size: 12.5px; color: var(--text-muted);
  line-height: 1.65; margin-bottom: 16px;
}

.tt-step-tag {
  display: inline-block;
  padding: 4px 14px;
  background: var(--blue-light);
  border-radius: var(--radius-pill);
  font-size: 10px; font-weight: 700;
  color: var(--blue-primary);
  letter-spacing: 1.5px; text-transform: uppercase;
}

.tt-step-tag--gold {
  background: rgba(240,192,64,0.12);
  color: #c8860a;
}

/* Bottom CTA */
.tt-footer {
  text-align: center;
  margin-top: 60px;
}

.tt-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 52px;
  background: linear-gradient(135deg, var(--blue-secondary) 0%, var(--blue-primary) 100%);
  border-radius: var(--radius-pill); color: white;
  font-size: 15px; font-weight: 700; letter-spacing: 0.3px;
  box-shadow: 0 10px 36px rgba(11,94,215,0.36);
  transition: all 0.38s var(--ease-spring);
  position: relative; overflow: hidden;
}
.tt-cta::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.20), transparent);
  transition: left 0.6s ease;
}
.tt-cta:hover::before { left: 100%; }
.tt-cta:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 22px 60px rgba(74,169,255,0.48);
}


/* ============================================================
   ANIMATION HELPERS
   ============================================================ */
[data-anim] { will-change: transform, opacity; }

/* ============================================================
   GLOBAL PRESENCE — CINEMATIC EARTH SECTION
   ============================================================ */

/* ── Section shell — dark cinematic theme ── */
.gp-section {
  position: relative;
  padding: 120px 0 110px;
  background: #06070f;
  overflow: hidden;
}

/* ── Dark layered background ── */
.gp-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 120% 80% at 70% 50%,
      rgba(11,94,215,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 70% 100% at 10% 50%,
      rgba(212,175,55,0.04) 0%, transparent 60%),
    linear-gradient(180deg, #06070f 0%, #0a0c1a 50%, #06070f 100%);
}

/* ── Ambient light orbs ── */
.gp-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(90px); z-index: 0;
}
.gp-orb--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(11,94,215,0.13) 0%, transparent 65%);
  top: -180px; right: -60px;
}
.gp-orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,0.07) 0%, transparent 65%);
  bottom: -100px; left: -80px;
}
.gp-orb--3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(74,169,255,0.06) 0%, transparent 65%);
  top: 40%; left: 38%;
}

/* ── Star field ── */
.gp-stars { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.gp-star {
  position: absolute;
  width: 2px; height: 2px; border-radius: 50%;
  background: rgba(255,255,255,0.55);
  animation: gpStarBlink 4s ease-in-out infinite;
}
.gp-star:nth-child(1)  { top:  8%; left: 12%; animation-delay: 0s;   }
.gp-star:nth-child(2)  { top: 14%; left: 78%; animation-delay: 0.7s; width:1.5px; height:1.5px; }
.gp-star:nth-child(3)  { top: 28%; left: 6%;  animation-delay: 1.4s; }
.gp-star:nth-child(4)  { top: 42%; left: 92%; animation-delay: 0.3s; }
.gp-star:nth-child(5)  { top: 60%; left: 18%; animation-delay: 2.1s; width:1.5px; height:1.5px; }
.gp-star:nth-child(6)  { top: 72%; left: 84%; animation-delay: 0.9s; }
.gp-star:nth-child(7)  { top: 85%; left: 32%; animation-delay: 1.8s; }
.gp-star:nth-child(8)  { top: 18%; left: 45%; animation-delay: 1.1s; }
.gp-star:nth-child(9)  { top: 55%; left: 65%; animation-delay: 2.4s; width:1.5px; height:1.5px; }
.gp-star:nth-child(10) { top: 38%; left: 28%; animation-delay: 0.5s; }
.gp-star:nth-child(11) { top: 90%; left: 56%; animation-delay: 1.6s; }
.gp-star:nth-child(12) { top:  5%; left: 63%; animation-delay: 2.8s; }
@keyframes gpStarBlink {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.6); }
}

/* ── Layout container ── */
.gp-container { position: relative; z-index: 1; }
.gp-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  min-height: 620px;
}

/* ═══════════════════════════════════════
   LEFT — TEXT CONTENT
   ═══════════════════════════════════════ */

/* Label */
.gp-label {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.gp-label-icon { font-size: 9px; }

/* Heading */
.gp-heading {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px; font-weight: 700; line-height: 1.07;
  margin-bottom: 26px;
}
.gp-heading-line {
  display: block; color: #ffffff;
  letter-spacing: -0.5px;
}
.gp-heading-line--gold {
  color: transparent;
  background: linear-gradient(115deg, #F5E6B0 0%, #D4AF37 40%, #C9A227 70%, #E8D48A 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

/* Description */
.gp-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px; font-weight: 300; line-height: 1.9;
  color: rgba(255,255,255,0.55);
  max-width: 440px;
  margin-bottom: 0;
}

/* Gold divider */
.gp-divider {
  height: 1px; margin: 32px 0;
  background: linear-gradient(90deg,
    rgba(212,175,55,0.8) 0%,
    rgba(212,175,55,0.35) 60%,
    transparent 100%);
}

/* Destination highlights */
.gp-destinations {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 36px;
}
.gp-dest-item {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-pill);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.8px;
  transition: all 0.3s ease;
  cursor: default;
}
.gp-dest-item:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.35);
  color: #ffffff;
  transform: translateY(-2px);
}
.gp-dest-flag { font-size: 14px; }

/* Stats row */
.gp-stats {
  display: flex; align-items: center; gap: 0;
  margin-bottom: 40px;
}
.gp-stat { flex: 1; text-align: left; }
.gp-stat strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 700; line-height: 1;
  color: #ffffff;
}
.gp-stat strong span { color: rgba(255,255,255,0.70); font-size: 24px; }
.gp-stat > span {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 9.5px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-top: 4px;
}
.gp-stat-divider {
  width: 1px; height: 36px; flex-shrink: 0;
  background: rgba(212,175,55,0.25);
  margin: 0 28px;
}

/* CTA */
.gp-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 40px;
  background: linear-gradient(135deg, #D4AF37 0%, #C9A227 50%, #B8941F 100%);
  color: #06070f;
  border-radius: var(--radius-pill);
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 11.5px;
  letter-spacing: 1.6px; text-transform: uppercase;
  box-shadow: 0 8px 36px rgba(212,175,55,0.3), 0 2px 8px rgba(0,0,0,0.4);
  transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
  position: relative; overflow: hidden;
}
.gp-cta::before {
  content: '';
  position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  transition: left 0.55s ease;
}
.gp-cta:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 18px 52px rgba(212,175,55,0.45); }
.gp-cta:hover::before { left: 100%; }

/* ═══════════════════════════════════════
   RIGHT — EARTH VIDEO VISUAL
   ═══════════════════════════════════════ */

.gp-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 540px;
}

/* Orbital rings */
.gp-ring {
  position: absolute; top: 50%; left: 50%;
  border-radius: 50%; border: 1px solid rgba(212,175,55,0.15);
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.gp-ring--outer {
  width: 520px; height: 520px;
  border-color: rgba(212,175,55,0.10);
  animation: gpRingPulse 6s ease-in-out infinite;
}
.gp-ring--inner {
  width: 420px; height: 420px;
  border-color: rgba(74,169,255,0.12);
  animation: gpRingPulse 6s ease-in-out infinite 1.5s;
}
@keyframes gpRingPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%,-50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%,-50%) scale(1.03); }
}

/* Earth ambient glow */
.gp-earth-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle,
    rgba(11,94,215,0.28) 0%,
    rgba(74,169,255,0.10) 40%,
    transparent 70%);
  filter: blur(36px);
  pointer-events: none;
  animation: gpGlowBreath 5s ease-in-out infinite;
}
@keyframes gpGlowBreath {
  0%, 100% { transform: translate(-50%,-50%) scale(1);    opacity: 0.7; }
  50%       { transform: translate(-50%,-50%) scale(1.18); opacity: 1;   }
}

/* Earth video container */
.gp-earth-wrap {
  position: relative; z-index: 2;
  width: 340px; height: 340px;
  border-radius: 50%; overflow: hidden;
  box-shadow:
    0 0  0  1px rgba(74,169,255,0.18),
    0 0  0  8px rgba(11,94,215,0.08),
    0 40px 100px rgba(0,0,0,0.6),
    0  0  60px rgba(11,94,215,0.22);
  animation: earthFloat 7s ease-in-out infinite;
}
@keyframes earthFloat {
  0%, 100% { transform: translateY(0)   rotate(0deg); }
  33%       { transform: translateY(-12px) rotate(0.5deg); }
  66%       { transform: translateY(-6px)  rotate(-0.3deg); }
}

.gp-earth-video {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}

/* Orbiting dot accents */
.gp-orbit-dot {
  position: absolute; top: 50%; left: 50%;
  width: 14px; height: 14px;
  transform-origin: center;
  pointer-events: none; z-index: 3;
}
.gp-orbit-dot-inner {
  display: block;
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, #D4AF37, #F5E6B0);
  box-shadow: 0 0 12px rgba(212,175,55,0.8), 0 0 4px rgba(212,175,55,1);
  margin: 3px;
}
.gp-orbit-dot--1 {
  animation: gpOrbit1 12s linear infinite;
  margin-left: -7px; margin-top: -7px;
}
.gp-orbit-dot--2 {
  animation: gpOrbit2 18s linear infinite;
  margin-left: -7px; margin-top: -7px;
}
.gp-orbit-dot--3 {
  animation: gpOrbit3 22s linear infinite reverse;
  margin-left: -7px; margin-top: -7px;
}
@keyframes gpOrbit1 {
  from { transform: rotate(0deg)   translateX(220px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(220px) rotate(-360deg); }
}
@keyframes gpOrbit2 {
  from { transform: rotate(120deg)  translateX(255px) rotate(-120deg); }
  to   { transform: rotate(480deg)  translateX(255px) rotate(-480deg); }
}
@keyframes gpOrbit3 {
  from { transform: rotate(240deg)  translateX(195px) rotate(-240deg); }
  to   { transform: rotate(600deg)  translateX(195px) rotate(-600deg); }
}

/* Floating glass cards */
.gp-card {
  position: absolute; z-index: 4;
  display: flex; align-items: center; gap: 12px;
  background: rgba(8,9,22,0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(212,175,55,0.22);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 20px rgba(212,175,55,0.06);
}
.gp-card-icon {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: rgba(212,175,55,0.12);
  display: flex; align-items: center; justify-content: center;
}
.gp-card-badge {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: rgba(11,94,215,0.15);
  display: flex; align-items: center; justify-content: center;
}
.gp-card-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700;
  color: #ffffff; letter-spacing: 0.3px; line-height: 1.3;
}
.gp-card-text span {
  font-family: 'Poppins', sans-serif; font-size: 10.5px; font-weight: 300;
  color: rgba(255,255,255,0.45);
}

.gp-card--tl {
  top: 28px; left: -24px;
  animation: gpCardFloat 5s ease-in-out infinite;
}
.gp-card--br {
  bottom: 52px; right: -20px;
  animation: gpCardFloat 5s ease-in-out infinite 2s;
}
@keyframes gpCardFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .gp-heading { font-size: 50px; }
  .gp-earth-wrap { width: 300px; height: 300px; }
  .gp-ring--outer { width: 440px; height: 440px; }
  .gp-ring--inner { width: 350px; height: 350px; }
}

@media (max-width: 1024px) {
  .gp-wrap { gap: 56px; }
  .gp-heading { font-size: 44px; }
  .gp-earth-wrap { width: 270px; height: 270px; }
  .gp-card--tl { left: 0; }
  .gp-card--br { right: 0; }
}

@media (max-width: 860px) {
  .gp-wrap { grid-template-columns: 1fr; gap: 60px; }
  .gp-heading { font-size: 42px; }
  .gp-desc { max-width: 100%; }
  .gp-visual { order: -1; min-height: 400px; }
  .gp-earth-wrap { width: 260px; height: 260px; }
  .gp-ring--outer { width: 380px; height: 380px; }
  .gp-ring--inner { width: 300px; height: 300px; }
  .gp-card--tl { top: 10px; left: 10px; }
  .gp-card--br { bottom: 10px; right: 10px; }
}

@media (max-width: 540px) {
  .gp-section { padding: 80px 0 70px; }
  .gp-heading { font-size: 36px; }
  .gp-earth-wrap { width: 220px; height: 220px; }
  .gp-ring--outer { width: 300px; height: 300px; }
  .gp-ring--inner { width: 240px; height: 240px; }
  .gp-card--tl { display: none; }
  .gp-card--br { bottom: 4px; right: 4px; }
  .gp-stat-divider { margin: 0 16px; }
  .gp-stat strong { font-size: 28px; }
}

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

/* 1920px+ */
@media (min-width: 1920px) {
  .hero-heading { font-size: 90px; }
  .hero-glass { padding: 52px 56px 48px; }
  .section-header h2 { font-size: 52px; }
  .why-title { font-size: 48px; }
  .dj-title { font-size: 74px; }
  .dream-journey { min-height: 760px; }
  .lt-title { font-size: 48px; }
}

/* 1600px */
@media (max-width: 1600px) {
  .why-wrap { gap: 48px; }
  .why-img-stack { min-height: 520px; }
}

/* 1440px */
@media (max-width: 1440px) {
  .hero-heading { font-size: 64px; }
  .lux-container { width: 93%; }
}

/* 1366px */
@media (max-width: 1366px) {
  .hero-heading { font-size: 58px; }
  .dest-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .dest-img-wrap { height: 380px; }
  .pkg-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
}

/* 1440px — new sections */
@media (max-width: 1440px) {
  .lt-globe-wrap { width: 380px; height: 380px; }
  .lt-globe-core { width: 300px; height: 300px; }
  .lt-title { font-size: 38px; }
  .dj-title { font-size: 56px; }
  .dj-card { padding: 64px 64px 56px; }
}

/* 1200px */
@media (max-width: 1200px) {
  :root { --section-pad: 90px; }
  .hero-heading { font-size: 50px; }
  .hero-glass { padding: 36px 38px 32px; }
  .hero-stat-num { font-size: 32px; }
  .dest-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .dest-img-wrap { height: 340px; }
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .why-wrap { flex-direction: column; gap: 40px; }
  .why-visual { flex: none; width: 100%; }
  .why-img-stack { min-height: 420px; flex: none; }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .section-header h2 { font-size: 38px; }
  .why-title { font-size: 36px; }
  .dj-title { font-size: 48px; }
  .dj-card { padding: 56px 48px; }
  /* Luxury travel */
  .lt-wrap { gap: 56px; }
  .lt-visual { flex: 0 0 380px; }
  .lt-globe-wrap { width: 340px; height: 340px; }
  .lt-globe-core { width: 270px; height: 270px; }
  .lt-title { font-size: 34px; }
  /* Timeline */
  .tt-track { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .tt-line { display: none; }
}

/* 1100px — destination grid collapses to 2 columns */
@media (max-width: 1100px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .dest-img-wrap { height: 320px; }
}

/* 1024px tablet */
@media (max-width: 1024px) {
  .navbar { width: calc(100% - 48px); }
  .navbar-inner { padding: 12px 20px; }
  .nav-links { gap: 0; }
  .nav-link { padding: 8px 14px; font-size: 13px; }
  .nav-cta { padding: 9px 20px; font-size: 13px; }
  .hero-content h1 { font-size: 54px; }
  .plane { width: 640px; margin-left: -150px; }

  .testi-card { padding: 40px 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--gray-soft); }
  .stat-item:nth-child(odd)  { border-right: 1px solid var(--gray-soft); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }

  .section-header h2 { font-size: 34px; }
  .dj-title { font-size: 40px; }
}

/* 1024px tablet — new sections */
@media (max-width: 1024px) {
  .lt-wrap { flex-direction: column; gap: 56px; }
  .lt-visual { flex: none; width: 100%; }
  .lt-globe-wrap { margin: 0 auto; }
  .lt-title { font-size: 32px; }
  .lt-sub { max-width: 100%; }
  .dj-title { font-size: 42px; }
  .dj-plane { width: 320px; opacity: 0.55; right: 0; }
  .tt-track { grid-template-columns: repeat(3, 1fr); }
  .tt-line  { display: none; }
}

/* 768px mobile */
@media (max-width: 768px) {
  :root { --section-pad: 80px; }

  /* ── Navbar mobile ── */
  .navbar { width: calc(100% - 28px); top: 12px; }
  .navbar.scrolled { width: calc(100% - 32px); }
  .navbar-inner { padding: 11px 16px; }

  .nav-cta { display: none; } /* Hidden on small mobile — CTA is in menu */

  .nav-toggle { display: flex; } /* Show hamburger */

  /* Nav links: slide-down drawer */
  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    top: calc(100% + 10px);
    left: 0; right: 0;
    background: rgba(8, 18, 58, 0.88);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border: 1px solid rgba(110,193,255,0.15);
    border-radius: 20px;
    padding: 16px 16px 20px;
    opacity: 0;
    transform: translateY(-10px) scaleY(0.95);
    transform-origin: top center;
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s var(--ease-spring);
    z-index: -1;
  }

  .nav-links--open {
    opacity: 1;
    transform: translateY(0) scaleY(1);
    pointer-events: auto;
  }

  .nav-link {
    width: 100%;
    padding: 13px 18px;
    border-radius: 12px;
    font-size: 15px;
    color: rgba(255,255,255,0.75);
  }

  /* Mobile dropdown: always visible inside mobile menu */
  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle { width: 100%; justify-content: space-between; padding: 13px 18px; font-size: 15px; }
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255,255,255,0.04);
    border: none;
    border-radius: 12px;
    box-shadow: none;
    margin-top: 4px;
    padding: 4px;
    display: none;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown-item { font-size: 14px; }

  /* Add Contact Us inside the mobile drawer */
  .nav-links::after {
    content: 'Contact Us';
    display: flex; align-items: center; justify-content: center;
    margin-top: 8px;
    padding: 13px 18px;
    background: linear-gradient(135deg, rgba(74,169,255,0.85), rgba(11,94,215,0.9));
    border-radius: var(--radius-pill);
    color: white; font-size: 14px; font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
  }

  .navbar-logo { height: 42px; }

  .hero { min-height: 100svh; }
  .hero-content-wrap { padding: 0 4vw 48px; justify-content: center; }
  .hero-content { text-align: center; max-width: 100%; }
  .hero-glass { padding: 32px 28px 28px; border-radius: 16px; }
  .hero-glass::before { display: none; }
  .hero-heading { font-size: 38px; }
  .hero-label { justify-content: center; }
  .hero-desc { max-width: 100%; font-size: 13px; }
  .hero-actions { justify-content: center; flex-direction: column; align-items: center; gap: 12px; }
  .hero-btn-primary, .hero-btn-secondary { width: 100%; justify-content: center; }
  .hero-divider { margin: 24px 0; }
  .hero-stats { gap: 0; }
  .hero-stat-num { font-size: 28px; }
  .hero-stat-label { font-size: 8.5px; }
  .hero-scroll { bottom: 22px; }

  .dest-grid { grid-template-columns: 1fr; gap: 16px; }
  .dest-img-wrap { height: 300px; }

  .pkg-grid { grid-template-columns: 1fr; gap: 16px; }

  .testi-card { padding: 32px 28px; font-size: 15px; }

  .dream-journey { padding: 80px 0; min-height: auto; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--gray-soft); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: 0; }

  .why-img-stack { min-height: 300px; }
  .features-grid { grid-template-columns: 1fr; gap: 12px; }
  /* Dream Journey */
  .dj-title { font-size: 34px; letter-spacing: -0.5px; }
  .dj-card { padding: 48px 32px 40px; }
  .dj-sub { font-size: 15px; }
  .dj-btn-gold, .dj-btn-glass { padding: 15px 32px; font-size: 14px; }
  .dj-plane { display: none; }
  .dj-stats { gap: 18px; }
  .dj-stat strong { font-size: 22px; }
  /* Luxury travel */
  .lt-wrap { flex-direction: column; gap: 48px; }
  .lt-visual { flex: none; }
  .lt-globe-wrap { width: 300px; height: 300px; margin: 0 auto; }
  .lt-globe-core { width: 240px; height: 240px; }
  .lt-title { font-size: 30px; }
  .lt-feat-num { display: none; }
  /* Timeline */
  .tt-track { grid-template-columns: 1fr; gap: 20px; }
  .tt-line  { display: none; }
  .tt-step  { flex-direction: row; align-items: flex-start; gap: 20px; padding: 0; }
  .tt-step-node { margin-bottom: 0; flex-shrink: 0; }
  .tt-step-card { text-align: left; }
  .tt-step-card p { margin-bottom: 10px; }

  .footer-skyline { display: none; }
  .skyline-track img { height: 180px; }

  .section-header h2 { font-size: 28px; }
}

/* 480px small mobile */
@media (max-width: 480px) {
  .navbar { width: calc(100% - 20px); }
  .hero-heading { font-size: 32px; }
  .hero-glass { padding: 26px 20px 22px; }
  .hero-stat-num { font-size: 24px; }
  .hero-stat-plus { font-size: 18px; }

  .dest-img-wrap { height: 260px; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 38px; }

  .testi-card { padding: 28px 24px; }

  .footer-bottom-inner { flex-direction: column; gap: 10px; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
  .footer-skyline { height: 160px; }
  .skyline-track img { height: 140px; }

  .section-header h2 { font-size: 24px; }
  .dj-title { font-size: 28px; }
  .dj-card { padding: 36px 20px 32px; }
  .dj-btn-gold, .dj-btn-glass { padding: 14px 24px; font-size: 13px; }
  .dj-stats { gap: 12px; }
  .dj-stat-sep { display: none; }
  .lt-globe-wrap { width: 260px; height: 260px; }
  .lt-globe-core { width: 210px; height: 210px; }
  .tt-step { flex-direction: column; align-items: center; }
  .tt-step-card { text-align: center; }
}


/* §9 Explore The World — original styles (no overrides needed) */
