/* ============================================================
   JUST FLY TOURS & TRAVELS — DESIGN SYSTEM
   Palette: Deep Navy + Gold + Cream + Coral
   Fonts: Playfair Display + Plus Jakarta Sans
   ============================================================ */

/* ── CSS VARIABLES ── */
:root {
  /* Core Palette */
  --navy:        #0A1628;
  --navy-mid:    #0F2040;
  --navy-light:  #1A3A5C;
  --gold:        #D4A843;
  --gold-light:  #E8C46A;
  --gold-dark:   #B8902E;
  --coral:       #E8614A;
  --coral-light: #F07A65;
  --cream:       #F5F0E8;
  --cream-dark:  #EDE5D5;
  --white:       #FFFFFF;
  --text-dark:   #0A1628;
  --text-mid:    #3D5A7A;
  --text-light:  #7A9BB5;
  --border:      rgba(212, 168, 67, 0.2);
  --glass-bg:    rgba(255, 255, 255, 0.08);
  --glass-border:rgba(255, 255, 255, 0.15);

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(10, 22, 40, 0.08);
  --shadow-md:   0 8px 32px rgba(10, 22, 40, 0.12);
  --shadow-lg:   0 20px 60px rgba(10, 22, 40, 0.18);
  --shadow-gold: 0 8px 32px rgba(212, 168, 67, 0.25);
  --shadow-glow: 0 0 40px rgba(212, 168, 67, 0.15);

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Border Radius */
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --radius-full:9999px;

  /* Transitions */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration:   0.4s;

  /* Navbar */
  --navbar-h: 72px;
}

/* Dark Mode */
[data-theme="dark"] {
  --cream:       #0A1628;
  --cream-dark:  #0F2040;
  --white:       #0F2040;
  --text-dark:   #F5F0E8;
  --text-mid:    #A8C4D8;
  --text-light:  #6A8FA8;
  --border:      rgba(212, 168, 67, 0.15);
  --shadow-sm:   0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md:   0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg:   0 20px 60px rgba(0, 0, 0, 0.5);
}

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

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background var(--duration) var(--ease-out),
              color var(--duration) var(--ease-out);
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.hide-mobile { display: none; }
@media (min-width: 768px) { .hide-mobile { display: inline; } }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

em {
  font-style: italic;
  color: var(--gold);
}

/* ── SCROLL REVEAL ANIMATIONS ── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ── SECTION SHARED STYLES ── */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-xl);
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.3);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.section-cta {
  text-align: center;
  margin-top: var(--space-xl);
}

/* ── BUTTONS ── */
.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--duration) var(--ease-out);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  transition: all var(--duration) var(--ease-out);
}

.navbar.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.logo-icon {
  font-size: 1.5rem;
  color: var(--gold);
  display: inline-block;
  animation: logoFloat 3s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0) rotate(-10deg); }
  50% { transform: translateY(-4px) rotate(5deg); }
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.logo-accent { color: var(--gold); }

/* Nav Links */
.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
}
@media (min-width: 1024px) {
  .nav-links { display: flex; }
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.85rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
}
.nav-link:hover {
  color: var(--gold);
  background: rgba(212, 168, 67, 0.1);
}
.nav-icon { font-size: 0.85rem; }
.chevron { font-size: 0.7rem; transition: transform 0.25s; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown:hover .chevron { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--navy);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease-out);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--navy);
  border-left: 1px solid var(--glass-border);
  border-top: 1px solid var(--glass-border);
  transform: translateX(-50%) rotate(45deg);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  transition: all 0.2s;
}
.dropdown-item:hover {
  background: rgba(212, 168, 67, 0.1);
  color: var(--gold);
}
.dropdown-item span:first-child { font-size: 1.5rem; }
.dropdown-item strong { display: block; font-size: 0.9rem; }
.dropdown-item small { color: var(--text-light); font-size: 0.78rem; }

/* Nav Actions */
.nav-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}
@media (min-width: 1024px) { .nav-actions { display: flex; } }

.btn-theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.25s;
}
.btn-theme-toggle:hover { background: rgba(212, 168, 67, 0.2); }

.btn-nav-secondary {
  padding: 0.5rem 1.25rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.25s;
}
.btn-nav-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-nav-primary {
  padding: 0.55rem 1.4rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: all 0.25s var(--ease-out);
  box-shadow: 0 4px 15px rgba(212, 168, 67, 0.3);
}
.btn-nav-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 168, 67, 0.4);
}

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
@media (min-width: 1024px) { .nav-hamburger { display: none; } }
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}
.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 Nav */
.nav-links.mobile-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--navbar-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  padding: 2rem;
  gap: 0.5rem;
  overflow-y: auto;
  z-index: 999;
}
.nav-links.mobile-open .nav-link {
  font-size: 1.1rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-links.mobile-open .dropdown-menu {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  background: rgba(255,255,255,0.05);
  margin-top: 0.5rem;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--navbar-h) + 2rem) 1.5rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #0A1628 0%, #0F2040 40%, #1A3A5C 70%, #0A2040 100%);
  z-index: 0;
}

/* Animated mesh gradient */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(212, 168, 67, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 70%, rgba(232, 97, 74, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 100% 50% at 50% 100%, rgba(26, 58, 92, 0.8) 0%, transparent 70%);
  animation: meshShift 12s ease-in-out infinite alternate;
}
@keyframes meshShift {
  0%   { opacity: 0.8; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

/* Star field */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 35%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 40% 10%, rgba(212,168,67,0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 25%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 15%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 85% 40%, rgba(212,168,67,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 60%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 70%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 80%, rgba(255,255,255,0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 85%, rgba(212,168,67,0.4) 0%, transparent 100%);
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(10,22,40,0.6) 100%);
}

/* Floating elements */
.hero-float {
  position: absolute;
  font-size: 2rem;
  opacity: 0.15;
  animation: floatAround 8s ease-in-out infinite;
  pointer-events: none;
}
.hero-float-1 { top: 20%; left: 8%; animation-delay: 0s; font-size: 2.5rem; }
.hero-float-2 { top: 15%; right: 12%; animation-delay: 2s; font-size: 3rem; }
.hero-float-3 { bottom: 30%; left: 5%; animation-delay: 4s; font-size: 1.5rem; }
.hero-float-4 { bottom: 25%; right: 8%; animation-delay: 1s; font-size: 2rem; }

@keyframes floatAround {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.15; }
  33% { transform: translateY(-20px) rotate(10deg); opacity: 0.25; }
  66% { transform: translateY(10px) rotate(-5deg); opacity: 0.1; }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(212, 168, 67, 0.12);
  border: 1px solid rgba(212, 168, 67, 0.35);
  color: var(--gold-light);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(10px);
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

/* Hero Title */
.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}
.hero-title-italic {
  font-style: italic;
  color: var(--gold);
  display: block;
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── SEARCH WIDGET ── */
.search-widget {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 25px 80px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
  text-align: left;
}

.search-tabs {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.search-tab {
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  transition: all 0.25s var(--ease-out);
  border: 1px solid transparent;
}
.search-tab:hover {
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.08);
}
.search-tab.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(212, 168, 67, 0.35);
}

.search-panel { display: none; }
.search-panel.active { display: block; }

.trip-type-row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.radio-pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.radio-pill:has(input:checked) {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 168, 67, 0.1);
}
.radio-pill input { display: none; }

.search-fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
  align-items: end;
}

.search-field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.search-field-wide { grid-column: span 2; }
@media (max-width: 640px) { .search-field-wide { grid-column: span 1; } }

.search-field label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.field-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  transition: all 0.25s;
  overflow: hidden;
}
.field-input-wrap:focus-within {
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.15);
}

.field-icon {
  padding: 0 0.6rem 0 0.85rem;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.field-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.75rem 0.75rem 0.75rem 0;
  min-width: 0;
}
.field-input::placeholder { color: rgba(255,255,255,0.4); }
.field-input option { background: var(--navy); color: white; }

.swap-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.15);
  border: 1px solid rgba(212, 168, 67, 0.3);
  color: var(--gold);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  margin-bottom: 2px;
  transition: all 0.25s var(--ease-spring);
  flex-shrink: 0;
}
.swap-btn:hover {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(180deg);
}

/* Passenger Dropdown */
.passenger-trigger { cursor: pointer; }
.passenger-display { padding: 0.75rem 0.75rem 0.75rem 0; font-size: 0.9rem; font-weight: 500; color: white; }

.passenger-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--navy-mid);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1rem;
  z-index: 100;
  box-shadow: var(--shadow-lg);
  display: none;
  min-width: 260px;
}
.passenger-dropdown.open { display: block; }

.pax-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pax-row:last-of-type { border-bottom: none; }
.pax-row strong { display: block; color: white; font-size: 0.9rem; }
.pax-row small { color: var(--text-light); font-size: 0.78rem; }

.pax-counter {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.pax-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.pax-btn:hover { border-color: var(--gold); color: var(--gold); }
.pax-count { color: white; font-weight: 700; min-width: 20px; text-align: center; }

.cabin-select-wrap {
  padding-top: 0.75rem;
}
.cabin-select-wrap label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cabin-select {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: white;
  padding: 0.6rem 0.75rem;
  font-size: 0.9rem;
  outline: none;
}
.cabin-select option { background: var(--navy); }

.btn-done-pax {
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.6rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.btn-done-pax:hover { opacity: 0.9; }

/* Search Button */
.btn-search-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease-spring);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.4);
  align-self: flex-end;
}
.btn-search-hero:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(212, 168, 67, 0.5);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 500;
}
.trust-icon { font-size: 1rem; }
.trust-divider {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.2);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-dot {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
}
.scroll-dot::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(212, 168, 67, 0.05) 0%, transparent 70%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 168, 67, 0.1);
  background: rgba(255,255,255,0.03);
  transition: all var(--duration) var(--ease-out);
}
.stat-card:hover {
  border-color: rgba(212, 168, 67, 0.3);
  background: rgba(212, 168, 67, 0.05);
  transform: translateY(-4px);
}

.stat-number {
  display: inline;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-suffix {
  display: inline;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--gold);
}
.stat-label {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features-section {
  padding: var(--space-3xl) 0;
  background: var(--cream);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--duration) var(--ease-out);
  cursor: pointer;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.feature-card-large {
  grid-column: span 1;
}
@media (min-width: 1024px) {
  .feature-card-large:first-child { grid-column: span 1; grid-row: span 2; }
  .feature-card-large:last-child { grid-column: span 2; }
}

.feature-card-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--duration);
  border-radius: inherit;
}
.feature-card:hover .feature-card-bg { opacity: 1; }
.feature-bg-1 { background: linear-gradient(135deg, rgba(212,168,67,0.06) 0%, rgba(232,97,74,0.04) 100%); }
.feature-bg-2 { background: linear-gradient(135deg, rgba(74,144,217,0.06) 0%, rgba(123,104,238,0.04) 100%); }
.feature-bg-3 { background: linear-gradient(135deg, rgba(46,204,113,0.06) 0%, rgba(39,174,96,0.04) 100%); }
.feature-bg-4 { background: linear-gradient(135deg, rgba(231,76,60,0.06) 0%, rgba(192,57,43,0.04) 100%); }
.feature-bg-5 { background: linear-gradient(135deg, rgba(52,152,219,0.06) 0%, rgba(41,128,185,0.04) 100%); }
.feature-bg-6 { background: linear-gradient(135deg, rgba(212,168,67,0.08) 0%, rgba(184,144,46,0.05) 100%); }

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(212,168,67,0.15), rgba(212,168,67,0.05));
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  transition: all var(--duration) var(--ease-spring);
}
.feature-card:hover .feature-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, rgba(212,168,67,0.25), rgba(212,168,67,0.1));
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.feature-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap 0.2s;
}
.feature-link:hover { gap: 0.5rem; }

/* ============================================================
   DESTINATIONS SECTION
   ============================================================ */
.destinations-section {
  padding: var(--space-3xl) 0;
  background: var(--cream-dark);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}
@media (max-width: 1024px) { .destinations-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .destinations-grid { grid-template-columns: 1fr; } }

.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background-image: var(--dest-img);
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform var(--duration) var(--ease-out);
}
.dest-card:hover { transform: scale(1.02); }
.dest-card:hover .dest-overlay { opacity: 0.7; }

.dest-card-featured {
  grid-column: span 1;
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 400px;
}
@media (max-width: 640px) {
  .dest-card-featured { grid-column: span 1; grid-row: span 1; min-height: 250px; }
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, rgba(10,22,40,0.2) 60%, transparent 100%);
  transition: opacity var(--duration);
}

.dest-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 1;
}

.dest-badge {
  display: inline-block;
  background: rgba(212, 168, 67, 0.9);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

.dest-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  font-family: 'Playfair Display', serif;
  line-height: 1.1;
}
.dest-card-featured .dest-name { font-size: 2rem; }

.dest-country {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  margin: 0.25rem 0 0.5rem;
}

.dest-price {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
}
.dest-price strong {
  color: var(--gold-light);
  font-size: 1rem;
}

/* ============================================================
   TOURS SECTION
   ============================================================ */
.tours-section {
  padding: var(--space-3xl) 0;
  background: var(--cream);
}

.tours-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--space-xl);
}

.filter-btn {
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  border: 1.5px solid var(--border);
  background: var(--white);
  transition: all 0.25s var(--ease-out);
}
.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.filter-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.tour-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--duration) var(--ease-out);
}
.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.tour-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.tour-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.tour-card:hover .tour-img { transform: scale(1.08); }

.tour-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.03em;
}
.tour-badge-new { background: #2ECC71; color: white; }
.tour-badge-hot { background: var(--coral); color: white; }

.tour-wishlist {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s var(--ease-spring);
  color: var(--text-mid);
}
.tour-wishlist:hover {
  background: var(--coral);
  color: white;
  transform: scale(1.15);
}

.tour-body { padding: 1.25rem; }

.tour-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.tour-duration, .tour-rating {
  font-size: 0.78rem;
  color: var(--text-mid);
  font-weight: 500;
}

.tour-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.3;
}

.tour-desc {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 0.85rem;
}

.tour-includes {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.tour-includes span {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  background: rgba(212, 168, 67, 0.08);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: var(--radius-full);
  color: var(--gold-dark);
}

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

.tour-price { display: flex; align-items: baseline; gap: 0.25rem; }
.price-from { font-size: 0.75rem; color: var(--text-light); }
.price-amount { font-size: 1.3rem; font-weight: 800; color: var(--text-dark); font-family: 'Playfair Display', serif; }
.price-per { font-size: 0.75rem; color: var(--text-light); }

.btn-tour-book {
  padding: 0.55rem 1.1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: all 0.25s var(--ease-spring);
  box-shadow: 0 4px 12px rgba(212, 168, 67, 0.3);
}
.btn-tour-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 168, 67, 0.4);
}

/* ============================================================
   AI BANNER
   ============================================================ */
.ai-banner {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0F2040 50%, #1A3A5C 100%);
  position: relative;
  overflow: hidden;
}
.ai-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(212,168,67,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 100% 50%, rgba(232,97,74,0.06) 0%, transparent 60%);
}

.ai-banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .ai-banner-inner { grid-template-columns: 1fr; gap: 3rem; }
}

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 168, 67, 0.12);
  border: 1px solid rgba(212, 168, 67, 0.3);
  color: var(--gold-light);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.ai-banner-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.ai-banner-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.ai-chat-preview {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ai-chat-bubble {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  line-height: 1.5;
  max-width: 90%;
}
.ai-chat-bubble.user {
  background: rgba(212, 168, 67, 0.15);
  border: 1px solid rgba(212, 168, 67, 0.25);
  color: var(--gold-light);
  align-self: flex-end;
  font-style: italic;
}
.ai-chat-bubble.ai {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.ai-typing-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: typingBounce 1.4s ease-in-out infinite;
}
.ai-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.ai-typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-6px); }
}

.ai-response {
  display: none;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
}
.ai-response.visible { display: block; }

.btn-ai-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  transition: all 0.3s var(--ease-spring);
  box-shadow: 0 6px 25px rgba(212, 168, 67, 0.4);
}
.btn-ai-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(212, 168, 67, 0.5);
}

/* AI Phone Mockup */
.ai-banner-visual {
  display: flex;
  justify-content: center;
}

.ai-phone-mockup {
  width: 320px;
  max-width: 100%;
}

.ai-phone-screen {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
}

.ai-screen-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
}
.ai-avatar {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--gold), var(--coral));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.ai-online {
  margin-left: auto;
  font-size: 0.72rem;
  color: #2ECC71;
}

.ai-messages {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-height: 200px;
}

.ai-msg {
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  line-height: 1.5;
  max-width: 85%;
  animation: msgSlide 0.4s var(--ease-out) both;
}
@keyframes msgSlide {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.ai-msg-bot {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  align-self: flex-start;
}
.ai-msg-user {
  background: rgba(212, 168, 67, 0.15);
  color: var(--gold-light);
  align-self: flex-end;
}
.ai-msg-card {
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.2);
  color: white;
}
.ai-msg-card strong { color: var(--gold-light); }
.ai-msg-card small { color: rgba(255,255,255,0.6); font-size: 0.75rem; }

.ai-input-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ai-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  padding: 0.5rem 0.85rem;
  color: white;
  font-size: 0.82rem;
  outline: none;
}
.ai-input::placeholder { color: rgba(255,255,255,0.35); }
.ai-send {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--ease-spring);
}
.ai-send:hover { transform: scale(1.1); }

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
  padding: var(--space-3xl) 0;
  background: var(--cream-dark);
  overflow: hidden;
}

.testimonials-carousel-wrap { position: relative; }

.testimonials-carousel {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s var(--ease-out);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 1rem);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all var(--duration) var(--ease-out);
}
@media (max-width: 1024px) { .testimonial-card { flex: 0 0 calc(50% - 0.75rem); } }
@media (max-width: 640px) { .testimonial-card { flex: 0 0 calc(100% - 0rem); } }

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
}
.author-info span {
  font-size: 0.78rem;
  color: var(--text-light);
}

.testimonial-trip-badge {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: var(--radius-full);
  color: var(--gold-dark);
  white-space: nowrap;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border);
  color: var(--text-mid);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s var(--ease-out);
  background: var(--white);
}
.carousel-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: all 0.3s;
  cursor: pointer;
}
.carousel-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-section {
  padding: var(--space-3xl) 0;
  background: var(--cream);
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: var(--space-xl);
}
.toggle-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
}
.save-badge {
  display: inline-block;
  background: rgba(46, 204, 113, 0.15);
  color: #27AE60;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  margin-left: 0.35rem;
}

.toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
  cursor: pointer;
}
.toggle-switch input { display: none; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(212, 168, 67, 0.2);
  border: 2px solid var(--border);
  border-radius: var(--radius-full);
  transition: all 0.3s;
}
.toggle-slider::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
  transition: transform 0.3s var(--ease-spring);
}
.toggle-switch input:checked + .toggle-slider { background: rgba(212, 168, 67, 0.3); }
.toggle-switch input:checked + .toggle-slider::after { transform: translateX(24px); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 1024px) { .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  position: relative;
  transition: all var(--duration) var(--ease-out);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pricing-card-featured {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: scale(1.03);
}
.pricing-card-featured:hover { transform: scale(1.03) translateY(-6px); }

.pricing-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.pricing-header { margin-bottom: 1.5rem; }
.plan-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.plan-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin-bottom: 0.25rem;
}
.pricing-card-featured .plan-name { color: white; }
.plan-tagline {
  font-size: 0.82rem;
  color: var(--text-light);
}
.pricing-card-featured .plan-tagline { color: rgba(255,255,255,0.6); }

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  margin-bottom: 0.5rem;
}
.price-currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  align-self: flex-start;
  margin-top: 0.5rem;
}
.pricing-price .price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
}
.pricing-card-featured .pricing-price .price-amount { color: white; }
.price-period {
  font-size: 0.85rem;
  color: var(--text-light);
}
.pricing-card-featured .price-period { color: rgba(255,255,255,0.5); }

.pricing-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.pricing-card-featured .pricing-desc {
  color: rgba(255,255,255,0.5);
  border-bottom-color: rgba(255,255,255,0.1);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}
.feature-item {
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.feature-yes { color: var(--text-dark); }
.feature-no { color: var(--text-light); }
.pricing-card-featured .feature-yes { color: rgba(255,255,255,0.9); }
.pricing-card-featured .feature-no { color: rgba(255,255,255,0.35); }

.btn-pricing {
  display: block;
  width: 100%;
  padding: 0.9rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  transition: all 0.3s var(--ease-spring);
}
.btn-pricing-outline {
  border: 2px solid var(--border);
  color: var(--text-dark);
}
.btn-pricing-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-pricing-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  box-shadow: 0 6px 20px rgba(212, 168, 67, 0.4);
}
.btn-pricing-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 168, 67, 0.5);
}

.pricing-enterprise {
  margin-top: 2.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.enterprise-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.enterprise-icon { font-size: 2rem; }
.enterprise-content strong { display: block; font-size: 1rem; color: var(--text-dark); margin-bottom: 0.25rem; }
.enterprise-content p { font-size: 0.85rem; color: var(--text-mid); }

.btn-enterprise {
  padding: 0.75rem 1.75rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: all 0.25s var(--ease-out);
}
.btn-enterprise:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  padding: var(--space-3xl) 0;
  background: var(--cream-dark);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .faq-inner { grid-template-columns: 1fr; gap: 3rem; }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color var(--duration);
}
.faq-item.open { border-color: var(--gold); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  gap: 1rem;
  transition: color 0.25s;
}
.faq-item.open .faq-question { color: var(--gold); }

.faq-icon {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-spring);
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */
.newsletter-section {
  padding: var(--space-xl) 0;
  background: var(--cream);
}

.newsletter-inner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .newsletter-inner { grid-template-columns: 1fr; gap: 2rem; }
}
.newsletter-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(212,168,67,0.08) 0%, transparent 60%);
}

.newsletter-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.newsletter-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: white;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.newsletter-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.newsletter-form { position: relative; z-index: 1; }
.newsletter-input-wrap {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
@media (max-width: 480px) { .newsletter-input-wrap { flex-direction: column; } }

.newsletter-input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  padding: 0.85rem 1.25rem;
  color: white;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.25s;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-input:focus { border-color: var(--gold); }

.btn-newsletter {
  padding: 0.85rem 1.75rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: all 0.25s var(--ease-spring);
  box-shadow: 0 4px 15px rgba(212, 168, 67, 0.35);
}
.btn-newsletter:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 168, 67, 0.45);
}

.newsletter-privacy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}
.newsletter-privacy a { color: var(--gold-light); text-decoration: underline; }

/* ============================================================
   APP SECTION
   ============================================================ */
.app-section {
  padding: var(--space-3xl) 0;
  background: var(--cream-dark);
}

.app-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .app-inner { grid-template-columns: 1fr; gap: 3rem; }
}

.app-desc {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.app-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.app-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
}

.app-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-app-store {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.5rem;
  background: var(--navy);
  color: white;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.25s var(--ease-out);
}
.btn-app-store:hover {
  background: var(--navy-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.app-store-icon { font-size: 1.5rem; }
.btn-app-store small { display: block; font-size: 0.7rem; color: rgba(255,255,255,0.6); }
.btn-app-store strong { display: block; font-size: 0.95rem; }

/* App Phone Visual */
.app-visual { display: flex; justify-content: center; }

.app-phone-wrap {
  perspective: 1000px;
}

.app-phone {
  width: 280px;
  background: var(--navy);
  border-radius: 40px;
  border: 2px solid rgba(255,255,255,0.1);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
  animation: phoneFloat 4s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotateY(-5deg); }
  50% { transform: translateY(-12px) rotateY(5deg); }
}

.app-phone-notch {
  width: 100px;
  height: 24px;
  background: rgba(0,0,0,0.8);
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
}

.app-phone-content { padding: 1rem; }

.app-screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
}

.app-screen-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 0.75rem;
}

.app-flight-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.app-airport {
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
  font-family: 'Playfair Display', serif;
}
.app-flight-line {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}
.app-flight-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.app-flight-path {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.2);
}
.app-plane { font-size: 0.9rem; color: var(--gold); }

.app-flight-details {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
}
.app-status { color: #2ECC71; }

.app-screen-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.app-stat {
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  text-align: center;
}
.app-stat strong { display: block; font-size: 0.8rem; color: white; }
.app-stat small { font-size: 0.65rem; color: rgba(255,255,255,0.4); }

.app-qr-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
}
.app-qr-code {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 4px;
  padding: 4px;
}
.qr-grid {
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(0deg, #0A1628 0px, #0A1628 3px, transparent 3px, transparent 6px),
    repeating-linear-gradient(90deg, #0A1628 0px, #0A1628 3px, transparent 3px, transparent 6px);
}
.app-boarding-info small { display: block; font-size: 0.65rem; color: rgba(255,255,255,0.4); }
.app-boarding-info strong { display: block; font-size: 0.9rem; color: white; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0F2040 50%, #1A3A5C 100%);
}
.cta-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212,168,67,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(232,97,74,0.08) 0%, transparent 60%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 168, 67, 0.12);
  border: 1px solid rgba(212, 168, 67, 0.3);
  color: var(--gold-light);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.cta-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: white;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.cta-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.25rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-weight: 800;
  font-size: 1rem;
  border-radius: var(--radius-full);
  transition: all 0.3s var(--ease-spring);
  box-shadow: 0 6px 25px rgba(212, 168, 67, 0.4);
}
.btn-cta-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(212, 168, 67, 0.5);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.25rem;
  background: rgba(255,255,255,0.08);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s var(--ease-out);
  backdrop-filter: blur(10px);
}
.btn-cta-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-3px);
}

.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
}

.footer-top {
  padding: var(--space-3xl) 0 var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 3rem;
}
@media (max-width: 1200px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.footer-brand-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.25s var(--ease-out);
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.contact-item a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.contact-item a:hover { color: var(--gold-light); }

.footer-payments {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.payment-badge {
  padding: 0.3rem 0.65rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}

.footer-bottom {
  padding: 1.5rem 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom-inner p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom-inner strong { color: var(--gold-light); }
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 900;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
  transition: all 0.3s var(--ease-spring);
}
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--navy);
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--navy);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 44px;
  height: 44px;
  background: var(--navy);
  border: 1px solid rgba(212, 168, 67, 0.3);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s var(--ease-out);
  box-shadow: var(--shadow-md);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

/* ============================================================
   DARK MODE OVERRIDES
   ============================================================ */
[data-theme="dark"] .features-section,
[data-theme="dark"] .tours-section,
[data-theme="dark"] .pricing-section,
[data-theme="dark"] .newsletter-section,
[data-theme="dark"] .app-section { background: #0A1628; }

[data-theme="dark"] .destinations-section,
[data-theme="dark"] .testimonials-section,
[data-theme="dark"] .faq-section { background: #0F2040; }

[data-theme="dark"] .feature-card,
[data-theme="dark"] .tour-card,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .pricing-card,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .pricing-enterprise { background: #0F2040; border-color: rgba(212,168,67,0.15); }

[data-theme="dark"] .section-title { color: #F5F0E8; }
[data-theme="dark"] .feature-title,
[data-theme="dark"] .tour-title,
[data-theme="dark"] .plan-name,
[data-theme="dark"] .faq-question,
[data-theme="dark"] .price-amount { color: #F5F0E8; }

[data-theme="dark"] .btn-pricing-outline { color: #F5F0E8; }
[data-theme="dark"] .btn-app-store { background: #0F2040; }

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
@media (max-width: 768px) {
  :root { --space-3xl: 5rem; --space-xl: 3rem; }

  .search-fields { grid-template-columns: 1fr 1fr; }
  .swap-btn { display: none; }

  .ai-banner-inner { text-align: center; }
  .ai-chat-bubble.user { align-self: center; }
  .ai-chat-bubble.ai { align-self: center; }

  .pricing-card-featured { transform: none; }
  .pricing-card-featured:hover { transform: translateY(-6px); }

  .footer-grid { gap: 2rem; }
}

@media (max-width: 480px) {
  .search-fields { grid-template-columns: 1fr; }
  .search-field-wide { grid-column: span 1; }
  .hero-title { font-size: 2.5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   LOADING SKELETON
   ============================================================ */
.skeleton {
  background: linear-gradient(90deg, rgba(212,168,67,0.05) 25%, rgba(212,168,67,0.1) 50%, rgba(212,168,67,0.05) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
.toast-container {
  position: fixed;
  top: calc(var(--navbar-h) + 1rem);
  right: 1.5rem;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toast {
  background: var(--navy);
  border: 1px solid rgba(212, 168, 67, 0.3);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  color: white;
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 280px;
  animation: toastSlide 0.4s var(--ease-out) both;
}
@keyframes toastSlide {
  from { opacity: 0; transform: translateX(100%); }
  to { opacity: 1; transform: translateX(0); }
}
.toast.toast-success { border-color: rgba(46, 204, 113, 0.4); }
.toast.toast-error { border-color: rgba(232, 97, 74, 0.4); }