/* ================================================================
   TRIPZYAN — Complete Design System & Styles
   Premium Luxury Travel Platform
   ================================================================ */

/* ── Google Fonts ───────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* ── CSS Custom Properties (Light Theme — Default) ─────────── */
:root {
  /* Brand Colors */
  --brand-primary:    #F51B25;
  --brand-primary-hover: #D4151E;
  --brand-navy:       #1E2B4F;
  --brand-dark:       #0F1B38;
  --brand-gold:       #D4AF37;

  /* Surface Colors */
  --bg:               #F7F8FA;
  --surface:          #FFFFFF;
  --surface-glass:    rgba(255, 255, 255, 0.72);
  --surface-glass-strong: rgba(255, 255, 255, 0.92);

  /* Text Colors */
  --text-primary:     #0F1B38;
  --text-secondary:   #6B7280;
  --text-muted:       #9CA3AF;
  --text-inverse:     #FFFFFF;

  /* Borders & Dividers */
  --border:           rgba(0, 0, 0, 0.08);
  --border-light:     rgba(0, 0, 0, 0.05);
  --divider:          rgba(0, 0, 0, 0.06);

  /* Shadows */
  --shadow-sm:        0 1px 3px rgba(0,0,0,0.06);
  --shadow-md:        0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg:        0 12px 40px rgba(0,0,0,0.12);
  --shadow-xl:        0 20px 60px rgba(0,0,0,0.16);
  --shadow-glow-red:  0 4px 20px rgba(245, 27, 37, 0.25);
  --shadow-glow-gold: 0 4px 20px rgba(212, 175, 55, 0.25);

  /* Glass */
  --glass-bg:         rgba(255, 255, 255, 0.65);
  --glass-border:     rgba(255, 255, 255, 0.3);
  --glass-shadow:     0 8px 32px rgba(0, 0, 0, 0.08);
  --blur-amount:      20px;

  /* Typography */
  --font-heading:     'Plus Jakarta Sans', sans-serif;
  --font-body:        'Inter', sans-serif;
  --text-xs:          0.75rem;   /* 12px */
  --text-sm:          0.875rem;  /* 14px */
  --text-base:        1rem;      /* 16px */
  --text-lg:          1.125rem;  /* 18px */
  --text-xl:          1.25rem;   /* 20px */
  --text-2xl:         1.5rem;    /* 24px */
  --text-3xl:         1.875rem;  /* 30px */
  --text-4xl:         2.25rem;   /* 36px */
  --text-5xl:         3rem;      /* 48px */
  --text-6xl:         3.75rem;   /* 60px */

  /* Spacing */
  --space-xs:         0.25rem;
  --space-sm:         0.5rem;
  --space-md:         1rem;
  --space-lg:         1.5rem;
  --space-xl:         2rem;
  --space-2xl:        3rem;
  --space-3xl:        4rem;
  --space-section:    5rem;

  /* Radius */
  --radius-sm:        0.5rem;
  --radius-md:        0.75rem;
  --radius-lg:        1rem;
  --radius-xl:        1.25rem;
  --radius-2xl:       1.5rem;
  --radius-full:      9999px;

  /* Container */
  --container-max:    1200px;
  --container-pad:    1.25rem;

  /* Header */
  --header-height:    72px;
  --header-transparent-bg: transparent;
  --header-solid-bg:  rgba(255, 255, 255, 0.97);
  --header-logo-color: #FFFFFF;
  --header-nav-color: rgba(255, 255, 255, 0.85);

  /* Transitions */
  --ease-out:         cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:      cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast:    150ms;
  --duration-normal:  300ms;
  --duration-slow:    500ms;
  --duration-spring:  600ms;
}

/* ── Dark Theme (System Preference) ─────────────────────────── */
@media (prefers-color-scheme: dark) {
  :root {
    --bg:               #0A0F24;
    --surface:          #0F1B38;
    --surface-glass:    rgba(15, 27, 56, 0.75);
    --surface-glass-strong: rgba(15, 27, 56, 0.94);
    --text-primary:     #F1F5F9;
    --text-secondary:   #94A3B8;
    --text-muted:       #64748B;
    --text-inverse:     #0F1B38;
    --border:           rgba(255, 255, 255, 0.08);
    --border-light:     rgba(255, 255, 255, 0.05);
    --divider:          rgba(255, 255, 255, 0.06);
    --shadow-sm:        0 1px 3px rgba(0,0,0,0.3);
    --shadow-md:        0 4px 12px rgba(0,0,0,0.35);
    --shadow-lg:        0 12px 40px rgba(0,0,0,0.45);
    --shadow-xl:        0 20px 60px rgba(0,0,0,0.5);
    --shadow-glow-red:  0 4px 25px rgba(245, 27, 37, 0.35);
    --shadow-glow-gold: 0 4px 25px rgba(212, 175, 55, 0.35);
    --glass-bg:         rgba(15, 27, 56, 0.7);
    --glass-border:     rgba(255, 255, 255, 0.1);
    --glass-shadow:     0 8px 32px rgba(0, 0, 0, 0.4);
    --header-logo-color: #FFFFFF;
    --header-nav-color: rgba(255, 255, 255, 0.85);
    --header-solid-bg:  rgba(10, 15, 36, 0.97);
  }
}

/* ── Manual Theme Override ──────────────────────────────────── */
[data-theme="light"] {
  --bg:               #F7F8FA;
  --surface:          #FFFFFF;
  --surface-glass:    rgba(255, 255, 255, 0.72);
  --surface-glass-strong: rgba(255, 255, 255, 0.92);
  --text-primary:     #0F1B38;
  --text-secondary:   #6B7280;
  --text-muted:       #9CA3AF;
  --text-inverse:     #FFFFFF;
  --border:           rgba(0, 0, 0, 0.08);
  --border-light:     rgba(0, 0, 0, 0.05);
  --divider:          rgba(0, 0, 0, 0.06);
  --glass-bg:         rgba(255, 255, 255, 0.65);
  --glass-border:     rgba(255, 255, 255, 0.3);
  --glass-shadow:     0 8px 32px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] {
  --bg:               #0A0F24;
  --surface:          #0F1B38;
  --surface-glass:    rgba(15, 27, 56, 0.75);
  --surface-glass-strong: rgba(15, 27, 56, 0.94);
  --text-primary:     #F1F5F9;
  --text-secondary:   #94A3B8;
  --text-muted:       #64748B;
  --text-inverse:     #0F1B38;
  --border:           rgba(255, 255, 255, 0.08);
  --border-light:     rgba(255, 255, 255, 0.05);
  --divider:          rgba(255, 255, 255, 0.06);
  --glass-bg:         rgba(15, 27, 56, 0.7);
  --glass-border:     rgba(255, 255, 255, 0.1);
  --glass-shadow:     0 8px 32px rgba(0, 0, 0, 0.4);
}

/* ================================================================
   RESET & BASE
   ================================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.15;
  font-weight: 700;
}

/* ── Focus Ring ─────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ── Selection ──────────────────────────────────────────────── */
::selection {
  background: var(--brand-primary);
  color: #FFFFFF;
}

/* ── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--text-muted); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-secondary); }

/* ================================================================
   UTILITY CLASSES
   ================================================================ */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Glass Card */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur-amount));
  -webkit-backdrop-filter: blur(var(--blur-amount));
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.glass-strong {
  background: var(--surface-glass-strong);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

/* Section */
.section {
  padding: var(--space-section) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 27, 37, 0.08);
  color: var(--brand-primary);
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

/* Grid */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }

/* ================================================================
   BUTTONS — Unified Sign-In Style
   ================================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-sm);
  transition: all var(--duration-normal) var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

/* Primary — Red Gradient (Sign In style) */
.btn-primary {
  background: linear-gradient(135deg, #F51B25 0%, #D4151E 100%);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(245, 27, 37, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 27, 37, 0.45);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(245, 27, 37, 0.25);
}

/* Outlined */
.btn-outline {
  background: transparent;
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

.btn-outline:hover {
  background: var(--brand-primary);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(245, 27, 37, 0.2);
}

/* Ghost (dark sections) */
.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* White for dark backgrounds */
.btn-white {
  background: #FFFFFF;
  color: var(--brand-dark);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* Sizes */
.btn-sm  { padding: 0.5rem 1.25rem; font-size: var(--text-xs); }
.btn-lg  { padding: 1rem 2.25rem; font-size: var(--text-base); }
.btn-xl  { padding: 1.125rem 2.75rem; font-size: var(--text-lg); }

/* Icon button */
.btn-icon {
  width: 44px; height: 44px;
  padding: 0;
  border-radius: var(--radius-full);
}

/* Full width */
.btn-block { width: 100%; }

/* ================================================================
   HEADER
   ================================================================ */

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--duration-normal) var(--ease-out);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.5rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

[data-theme="dark"] .header.scrolled {
  background: rgba(10, 15, 36, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 1010;
}

.header-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.header-logo span {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--brand-dark);
  letter-spacing: -0.02em;
  transition: color var(--duration-normal);
}

.header.scrolled .header-logo span {
  color: var(--brand-dark);
}

[data-theme="dark"] .header-logo span {
  color: #FFFFFF;
}

[data-theme="dark"] .header.scrolled .header-logo span {
  color: #FFFFFF;
}

/* Desktop Nav */
.header-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.header-nav a {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--duration-fast);
  position: relative;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--brand-primary);
  border-radius: 1px;
  transition: transform var(--duration-normal) var(--ease-out);
}

.header-nav a:hover { color: var(--brand-primary); }
.header-nav a:hover::after { transform: translateX(-50%) scaleX(1); }

.header.scrolled .header-nav a {
  color: var(--text-secondary);
}
.header.scrolled .header-nav a:hover {
  color: var(--brand-primary);
}

[data-theme="dark"] .header-nav a {
  color: rgba(255, 255, 255, 0.85);
}
[data-theme="dark"] .header-nav a:hover {
  color: #FFFFFF;
}

/* Header Actions */
.header-actions {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

/* Theme Toggle */
.theme-toggle {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  transition: all var(--duration-fast);
  cursor: pointer;
  background: var(--border-light);
  border: 1px solid var(--border);
}

.theme-toggle:hover {
  background: var(--border);
  color: var(--brand-primary);
}

.header.scrolled .theme-toggle {
  color: var(--text-secondary);
  background: var(--border-light);
  border-color: var(--border);
}

.header.scrolled .theme-toggle:hover {
  color: var(--brand-primary);
  background: var(--border);
}

[data-theme="dark"] .theme-toggle {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .theme-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
  width: 20px; height: 20px;
}

.theme-toggle .icon-sun  { display: none; }
.theme-toggle .icon-moon { display: block; }

[data-theme="dark"] .theme-toggle .icon-sun  { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle .icon-sun  { display: block; }
  :root:not([data-theme="light"]) .theme-toggle .icon-moon { display: none; }
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px; height: 28px;
  z-index: 1010;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: all var(--duration-normal) var(--ease-out);
}

.header.scrolled .hamburger span {
  background: var(--text-primary);
}

[data-theme="dark"] .hamburger span {
  background: #FFFFFF;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; right: -300px;
  width: 280px;
  height: 100dvh;
  background: var(--surface);
  box-shadow: -10px 0 40px rgba(0,0,0,0.15);
  z-index: 1005;
  transition: right var(--duration-normal) var(--ease-out);
  padding: 6rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu.open { right: 0; }

.mobile-menu a {
  padding: 0.875rem 1rem;
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--text-primary);
  transition: all var(--duration-fast);
}

.mobile-menu a:hover {
  background: rgba(245, 27, 37, 0.06);
  color: var(--brand-primary);
}

.mobile-menu .mobile-actions {
  border-top: 1px solid var(--divider);
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-normal);
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ================================================================
   HERO SECTION — Premium Travel Agency
   Design: Emirates / Qatar Airways / Airbnb luxury level
   ================================================================ */

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #FAFAF8;
}

/* Warm ambient glow */
.hero-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 800px 600px at 30% 40%, rgba(212,175,55,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 600px 500px at 70% 50%, rgba(245,27,37,0.04) 0%, transparent 55%),
    radial-gradient(ellipse 500px 400px at 85% 20%, rgba(212,175,55,0.06) 0%, transparent 50%);
  z-index: 1;
}

/* ============================================================
   HERO GRID — Desktop: 2 columns
   ============================================================ */
.hero-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1.25rem 3rem;
  gap: 3rem;
}

/* ============================================================
   LEFT CONTENT
   ============================================================ */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

/* Trust Pill */
.hero-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  width: fit-content;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease-out) forwards;
}

.hero-trust-pill svg {
  width: 14px;
  height: 14px;
  color: var(--brand-gold);
  flex-shrink: 0;
}

.hero-trust-pill span {
  font-size: 0.75rem;
  font-weight: 600;
  color: #8B6914;
  font-family: var(--font-heading);
  white-space: nowrap;
}

/* Headline */
.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.5vw, 3.75rem);
  font-weight: 800;
  color: var(--brand-dark);
  line-height: 1.1;
  letter-spacing: -0.03em;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease-out) 0.1s forwards;
}

.hero-headline-accent {
  background: linear-gradient(135deg, #F51B25 0%, #D4151E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Supporting copy */
.hero-supporting {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #6B7280;
  max-width: 480px;
  line-height: 1.65;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease-out) 0.2s forwards;
}

/* CTA Buttons */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease-out) 0.3s forwards;
}

.hero-cta-primary {
  box-shadow: 0 4px 20px rgba(245, 27, 37, 0.3);
}

.hero-cta-primary:hover {
  box-shadow: 0 8px 30px rgba(245, 27, 37, 0.45);
}

/* WhatsApp Button */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.125rem 2.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-lg);
  transition: all var(--duration-normal) var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid #25D366;
  background: #25D366;
  color: #FFFFFF;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp:active {
  transform: translateY(0);
}

/* Trust Indicators */
.hero-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
  max-width: 480px;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease-out) 0.4s forwards;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #6B7280;
  font-family: var(--font-heading);
}

.hero-trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  font-size: 0.625rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   RIGHT VISUAL
   ============================================================ */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

/* Main Image */
.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 560px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(15, 27, 56, 0.12),
    0 4px 16px rgba(15, 27, 56, 0.06);
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out);
}

.hero-image-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
  box-shadow:
    0 30px 80px rgba(15, 27, 56, 0.15),
    0 8px 24px rgba(15, 27, 56, 0.08);
}

.hero-main-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform 0.8s var(--ease-out);
}

.hero-image-wrapper:hover .hero-main-image {
  transform: scale(1.03);
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 27, 56, 0.15) 0%,
    transparent 40%,
    transparent 70%,
    rgba(15, 27, 56, 0.1) 100%
  );
  pointer-events: none;
}

/* Airline Partner Badge on image */
.hero-airline-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-dark);
  font-family: var(--font-heading);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.airline-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.8); }
}

/* ============================================================
   FLOATING CARDS
   ============================================================ */
.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(15, 27, 56, 0.08);
  animation: floatCard 6s ease-in-out infinite;
  z-index: 5;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.hero-float-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(15, 27, 56, 0.14);
}

/* Float Card positions */
.hero-float-card--1 {
  top: 5%;
  left: -5%;
  animation-delay: 0s;
}

.hero-float-card--2 {
  top: 30%;
  right: -8%;
  animation-delay: 1.5s;
}

.hero-float-card--3 {
  bottom: 20%;
  left: -3%;
  animation-delay: 3s;
}

.hero-float-card--4 {
  bottom: 5%;
  right: -5%;
  animation-delay: 4.5s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* Float Card Icon */
.float-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-card-icon svg {
  width: 18px;
  height: 18px;
}

.float-card-icon--student {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(37, 99, 235, 0.06));
  color: #2563EB;
}

.float-card-icon--visa {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(5, 150, 105, 0.06));
  color: #059669;
}

.float-card-icon--support {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(234, 88, 12, 0.06));
  color: #EA580C;
}

.float-card-icon--deals {
  background: linear-gradient(135deg, rgba(245, 27, 37, 0.1), rgba(212, 21, 30, 0.05));
  color: var(--brand-primary);
}

.float-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.float-card-label {
  font-size: 0.6875rem;
  font-weight: 500;
  color: #9CA3AF;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.float-card-value {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--brand-dark);
  font-family: var(--font-heading);
  white-space: nowrap;
}

/* ============================================================
   SCROLL INDICATOR
   ============================================================ */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease-out) 0.8s forwards;
}

.hero-scroll-indicator span {
  font-size: 0.625rem;
  font-weight: 600;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-heading);
}

.hero-scroll-indicator svg {
  width: 18px;
  height: 18px;
  color: #D1D5DB;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(4px); }
}

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

/* Mobile: stack order — headline, CTA, image, trust */
@media (max-width: 767px) {
  .hero-grid {
    padding-top: 6rem;
    gap: 2rem;
  }

  .hero-left {
    order: 1;
  }

  .hero-right {
    order: 2;
    min-height: 300px;
  }

  .hero-trust {
    order: 3;
  }

  .hero-float-card {
    padding: 0.5rem 0.75rem;
    gap: 0.5rem;
  }

  .hero-float-card--1 { top: 2%; left: 0%; }
  .hero-float-card--2 { top: 25%; right: 2%; }
  .hero-float-card--3 { bottom: 22%; left: 0%; }
  .hero-float-card--4 { bottom: 2%; right: 2%; }

  .float-card-icon {
    width: 32px;
    height: 32px;
  }

  .float-card-icon svg {
    width: 15px;
    height: 15px;
  }

  .float-card-label {
    font-size: 0.625rem;
  }

  .float-card-value {
    font-size: 0.6875rem;
  }

  .hero-scroll-indicator {
    display: none;
  }
}

/* Tablet 768px+ — side by side */
@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    padding: 4rem 2rem 3rem;
    gap: 2.5rem;
    align-items: center;
  }

  .hero-right {
    min-height: 480px;
  }

  .hero-float-card--2 {
    right: -5%;
  }
}

/* Desktop 1024px+ */
@media (min-width: 1024px) {
  .hero-grid {
    padding: 3rem 2rem 3rem;
    gap: 3rem;
  }

  .hero-right {
    min-height: 540px;
  }
}

/* Wide 1200px+ */
@media (min-width: 1200px) {
  .hero-grid {
    padding: 3rem 0 3rem;
  }
}

/* Dark mode */
[data-theme="dark"] .hero {
  background: #0F1B38;
}

[data-theme="dark"] .hero-headline {
  color: #FFFFFF;
}

[data-theme="dark"] .hero-supporting {
  color: #94A3B8;
}

[data-theme="dark"] .hero-trust-item {
  color: #94A3B8;
}

[data-theme="dark"] .hero-trust-pill {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.25);
}

[data-theme="dark"] .hero-trust-pill span {
  color: #F5D06B;
}

[data-theme="dark"] .hero-float-card {
  background: rgba(15, 27, 56, 0.94);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .float-card-value {
  color: #F1F5F9;
}

[data-theme="dark"] .hero-airline-badge {
  background: rgba(15, 27, 56, 0.92);
  color: #F1F5F9;
  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .hero-ambient {
  background:
    radial-gradient(ellipse 800px 600px at 30% 40%, rgba(212,175,55,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 600px 500px at 70% 50%, rgba(245,27,37,0.03) 0%, transparent 55%);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .hero {
    background: #0F1B38;
  }

  :root:not([data-theme="light"]) .hero-headline {
    color: #FFFFFF;
  }

  :root:not([data-theme="light"]) .hero-supporting {
    color: #94A3B8;
  }

  :root:not([data-theme="light"]) .hero-trust-item {
    color: #94A3B8;
  }

  :root:not([data-theme="light"]) .hero-trust-pill {
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.25);
  }

  :root:not([data-theme="light"]) .hero-trust-pill span {
    color: #F5D06B;
  }

  :root:not([data-theme="light"]) .hero-float-card {
    background: rgba(15, 27, 56, 0.94);
    border-color: rgba(255, 255, 255, 0.08);
  }

  :root:not([data-theme="light"]) .float-card-value {
    color: #F1F5F9;
  }

  :root:not([data-theme="light"]) .hero-airline-badge {
    background: rgba(15, 27, 56, 0.92);
    color: #F1F5F9;
    border-color: rgba(255, 255, 255, 0.1);
  }

  :root:not([data-theme="light"]) .hero-ambient {
    background:
      radial-gradient(ellipse 800px 600px at 30% 40%, rgba(212,175,55,0.06) 0%, transparent 60%),
      radial-gradient(ellipse 600px 500px at 70% 50%, rgba(245,27,37,0.03) 0%, transparent 55%);
  }
}

/* ================================================================
   SEARCH SECTION — Matches Hero Background
   ================================================================ */

.search-section {
  background: #FAFAF8;
  padding: var(--space-2xl) 0 var(--space-3xl);
  margin-top: 0;
  position: relative;
  z-index: 20;
}

.search-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.15), transparent);
}

.search-card {
  max-width: 900px;
  margin: 0 auto;
}

/* Section heading inside search */
.search-section-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.search-section-title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}

.search-section-subtitle {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

/* Search Tabs */
.search-tabs {
  display: flex;
  gap: 0.25rem;
  margin-bottom: var(--space-lg);
}

.search-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  font-size: var(--text-sm);
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--text-secondary);
  transition: all var(--duration-fast);
  cursor: pointer;
  border: none;
  background: rgba(0,0,0,0.03);
  border-bottom: 2px solid transparent;
}

.search-tab:hover {
  color: var(--text-primary);
  background: rgba(0,0,0,0.05);
}

.search-tab.active {
  color: var(--brand-dark);
  background: #FFFFFF;
  backdrop-filter: blur(20px);
  border-bottom-color: var(--brand-primary);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.search-tab.active svg {
  color: var(--brand-primary);
}

.search-tab svg {
  width: 18px; height: 18px;
}

/* Search Panel — White Card */
.search-panel {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  box-shadow: 0 4px 24px rgba(15, 27, 56, 0.06), 0 1px 4px rgba(15, 27, 56, 0.04);
}

/* Trip Type Toggle */
.trip-types {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.trip-type {
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  background: #F0F2F5;
  color: var(--text-secondary);
  transition: all var(--duration-fast);
  cursor: pointer;
  border: 1px solid transparent;
}

.trip-type:hover {
  color: var(--text-primary);
  background: #E5E7EB;
}

.trip-type.active {
  background: var(--brand-primary);
  color: #FFFFFF;
  border-color: var(--brand-primary);
}

/* Form Row */
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

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

/* Route Row — From → To with swap */
.route-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.5rem;
  align-items: end;
  margin-bottom: 0.75rem;
}

.route-row .swap-btn {
  margin-bottom: 0;
  align-self: end;
}

@media (max-width: 639px) {
  .route-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .route-row .swap-btn {
    justify-self: center;
    transform: rotate(90deg);
  }

  .route-row .swap-btn:hover {
    transform: rotate(270deg);
  }
}

/* Form Group */
.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.375rem;
  font-family: var(--font-heading);
}

.form-input {
  height: 44px;
  padding: 0 0.75rem 0 2.5rem;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  background: #FAFAF8;
  color: var(--text-primary);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: all var(--duration-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--brand-primary);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(245, 27, 37, 0.08);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input-icon {
  position: relative;
}

.form-input-icon svg {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  color: var(--text-muted);
  pointer-events: none;
}

/* Swap Button */
.swap-btn {
  width: 40px; height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F0F2F5;
  color: var(--text-secondary);
  transition: all var(--duration-fast);
  cursor: pointer;
  border: 1px solid rgba(0,0,0,0.06);
  flex-shrink: 0;
}

.swap-btn:hover {
  background: #E5E7EB;
  color: var(--brand-primary);
  transform: rotate(180deg);
}

/* Select */
.form-select {
  height: 44px;
  padding: 0 2rem 0 0.75rem;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  background: #FAFAF8;
  color: var(--text-primary);
  font-size: var(--text-sm);
  font-weight: 500;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  cursor: pointer;
}

.form-select:focus {
  outline: none;
  border-color: var(--brand-primary);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(245, 27, 37, 0.08);
}

/* Passenger Counter */
.counter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
}

.counter-label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-primary);
}

.counter-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.counter-btn {
  width: 32px; height: 32px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,0.08);
  color: var(--text-secondary);
  font-size: 1.125rem;
  font-weight: 500;
  transition: all var(--duration-fast);
  cursor: pointer;
  background: #FAFAF8;
}

.counter-btn:hover {
  background: #E5E7EB;
  color: var(--text-primary);
}

.counter-value {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-primary);
  min-width: 24px;
  text-align: center;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(15, 27, 56, 0.12);
  padding: 1rem;
  z-index: 50;
  display: none;
  min-width: 260px;
}

.dropdown-menu.show { display: block; }

/* Search Submit */
.search-submit {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.search-submit .btn {
  min-width: 200px;
}

/* Dark mode search */
[data-theme="dark"] .search-section {
  background: #0F1B38;
}

[data-theme="dark"] .search-section-title {
  color: #FFFFFF;
}

[data-theme="dark"] .search-tab {
  background: rgba(255,255,255,0.04);
  color: #94A3B8;
}

[data-theme="dark"] .search-tab:hover {
  background: rgba(255,255,255,0.08);
  color: #F1F5F9;
}

[data-theme="dark"] .search-tab.active {
  background: #1E2B4F;
  color: #FFFFFF;
  border-bottom-color: var(--brand-primary);
}

[data-theme="dark"] .search-panel {
  background: #162446;
  border-color: rgba(255,255,255,0.06);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

[data-theme="dark"] .form-input {
  background: #0F1B38;
  border-color: rgba(255,255,255,0.08);
  color: #F1F5F9;
}

[data-theme="dark"] .form-input:focus {
  background: #162446;
  border-color: var(--brand-primary);
}

[data-theme="dark"] .form-select {
  background-color: #0F1B38;
  border-color: rgba(255,255,255,0.08);
  color: #F1F5F9;
}

[data-theme="dark"] .counter-btn {
  background: #0F1B38;
  border-color: rgba(255,255,255,0.08);
}

[data-theme="dark"] .swap-btn {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.06);
}

[data-theme="dark"] .trip-type {
  background: rgba(255,255,255,0.06);
  color: #94A3B8;
}

[data-theme="dark"] .dropdown-menu {
  background: #162446;
  border-color: rgba(255,255,255,0.06);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .search-section {
    background: #0F1B38;
  }

  :root:not([data-theme="light"]) .search-section-title {
    color: #FFFFFF;
  }

  :root:not([data-theme="light"]) .search-tab {
    background: rgba(255,255,255,0.04);
    color: #94A3B8;
  }

  :root:not([data-theme="light"]) .search-tab:hover {
    background: rgba(255,255,255,0.08);
    color: #F1F5F9;
  }

  :root:not([data-theme="light"]) .search-tab.active {
    background: #1E2B4F;
    color: #FFFFFF;
  }

  :root:not([data-theme="light"]) .search-panel {
    background: #162446;
    border-color: rgba(255,255,255,0.06);
  }

  :root:not([data-theme="light"]) .form-input {
    background: #0F1B38;
    border-color: rgba(255,255,255,0.08);
    color: #F1F5F9;
  }

  :root:not([data-theme="light"]) .form-select {
    background-color: #0F1B38;
    border-color: rgba(255,255,255,0.08);
    color: #F1F5F9;
  }

  :root:not([data-theme="light"]) .counter-btn {
    background: #0F1B38;
    border-color: rgba(255,255,255,0.08);
  }

  :root:not([data-theme="light"]) .swap-btn {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.06);
  }

  :root:not([data-theme="light"]) .trip-type {
    background: rgba(255,255,255,0.06);
    color: #94A3B8;
  }

  :root:not([data-theme="light"]) .dropdown-menu {
    background: #162446;
    border-color: rgba(255,255,255,0.06);
  }
}

/* ================================================================
   STATS COUNTER
   ================================================================ */

.stats-section {
  background: var(--surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: var(--space-2xl) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stat-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(245,27,37,0.08) 0%, rgba(245,27,37,0.03) 100%);
  margin-bottom: 0.25rem;
}

.stat-icon svg {
  width: 24px; height: 24px;
  color: var(--brand-primary);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  font-weight: 500;
}

/* ================================================================
   DESTINATIONS
   ================================================================ */

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-lg);
}

.destination-card {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  height: 340px;
  cursor: pointer;
  transition: all var(--duration-slow) var(--ease-out);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.destination-card:hover {
  transform: translateY(-8px) rotateY(2deg) rotateX(-2deg);
  box-shadow: var(--shadow-xl);
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.destination-card:hover img {
  transform: scale(1.08);
}

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(15, 27, 56, 0.4) 60%,
    rgba(15, 27, 56, 0.85) 100%
  );
}

.destination-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: #FFFFFF;
}

.destination-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
}

.destination-name {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}

.destination-country {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
}

.destination-price {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--brand-gold);
}

.destination-price span {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}

/* ================================================================
   FLIGHTS, TOURS, HOTELS — Shared Card Styles
   ================================================================ */

.card-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-lg);
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-out);
}

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

/* ── Flight Card ────────────────────────────────────────────── */
.flight-card {
  padding: 1.5rem;
}

.flight-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.airline-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.airline-logo {
  width: 36px; height: 36px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-xs);
  color: #FFFFFF;
}

.airline-logo--bg { background: #059669; }
.airline-logo--ub { background: #2563EB; }
.airline-logo--nv { background: #EA580C; }
.airline-logo--ek { background: #DC2626; }
.airline-logo--tg { background: #7C3AED; }

.airline-name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
}

.flight-date {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--brand-primary);
  background: rgba(245, 27, 37, 0.08);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

.flight-route {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.flight-point {
  text-align: center;
}

.flight-time {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text-primary);
}

.flight-code {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: 500;
}

.flight-line {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.flight-duration {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--text-muted);
}

.flight-dots {
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--border) 0, var(--border) 4px, transparent 4px, transparent 8px);
}

.flight-stops {
  font-size: 0.625rem;
  color: var(--brand-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.flight-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
}

.flight-price {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--brand-primary);
}

.flight-price span {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: 400;
}

/* ── Tour Card ──────────────────────────────────────────────── */
.tour-card {
  position: relative;
}

.tour-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.tour-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.tour-card:hover .tour-card-img img {
  transform: scale(1.06);
}

.tour-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: #FFFFFF;
}

.tour-wishlist {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--duration-fast);
  color: #FFFFFF;
}

.tour-wishlist:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
}

.tour-card-body {
  padding: 1.25rem;
}

.tour-title {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.375rem;
}

.tour-location {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.tour-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.tour-meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.tour-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.tour-stars {
  color: var(--brand-gold);
  font-size: var(--text-sm);
}

.tour-reviews {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

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

.tour-price {
  font-family: var(--font-heading);
}

.tour-price-current {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--brand-primary);
}

.tour-price-old {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 0.375rem;
}

/* ── Hotel Card ─────────────────────────────────────────────── */
.hotel-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.hotel-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.hotel-card:hover .hotel-card-img img {
  transform: scale(1.06);
}

.hotel-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: #FFFFFF;
}

.hotel-badge--best  { background: linear-gradient(135deg, #D4AF37, #F5D06B); }
.hotel-badge--beach { background: linear-gradient(135deg, #0EA5E9, #38BDF8); }
.hotel-badge--city  { background: linear-gradient(135deg, #8B5CF6, #A78BFA); }
.hotel-badge--budget{ background: linear-gradient(135deg, #059669, #34D399); }
.hotel-badge--view  { background: linear-gradient(135deg, #F59E0B, #FBBF24); }
.hotel-badge--mountain { background: linear-gradient(135deg, #6366F1, #818CF8); }

.hotel-card-body {
  padding: 1.25rem;
}

.hotel-name {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.hotel-location {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.hotel-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.hotel-stars-display {
  font-size: var(--text-sm);
  color: var(--brand-gold);
}

.hotel-review-count {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.hotel-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.amenity-tag {
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
  background: var(--border-light);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

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

.hotel-price {
  font-family: var(--font-heading);
}

.hotel-price-current {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--brand-primary);
}

.hotel-price-old {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-decoration: line-through;
}

/* ================================================================
   WHY CHOOSE US
   ================================================================ */

.why-choose {
  background: var(--brand-dark);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.why-choose::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
}

.why-choose .section-title {
  color: #FFFFFF;
}

.why-choose .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.why-choose .section-badge {
  background: rgba(255,255,255,0.08);
  color: var(--brand-gold);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-lg);
}

.feature-card {
  padding: 2rem;
  border-radius: var(--radius-2xl);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--duration-normal);
  border-radius: var(--radius-2xl);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.12);
}

.feature-card:hover::before {
  opacity: 0.06;
}

.feature-card--1::before { background: linear-gradient(135deg, #F59E0B, #EA580C); }
.feature-card--2::before { background: linear-gradient(135deg, #3B82F6, #6366F1); }
.feature-card--3::before { background: linear-gradient(135deg, #10B981, #059669); }
.feature-card--4::before { background: linear-gradient(135deg, #8B5CF6, #EC4899); }
.feature-card--5::before { background: linear-gradient(135deg, #06B6D4, #14B8A6); }
.feature-card--6::before { background: linear-gradient(135deg, #F43F5E, #DC2626); }

.feature-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  position: relative;
}

.feature-icon--1 { background: linear-gradient(135deg, rgba(245,158,11,0.2), rgba(234,88,12,0.1)); }
.feature-icon--2 { background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(99,102,241,0.1)); }
.feature-icon--3 { background: linear-gradient(135deg, rgba(16,185,129,0.2), rgba(5,150,105,0.1)); }
.feature-icon--4 { background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(236,72,153,0.1)); }
.feature-icon--5 { background: linear-gradient(135deg, rgba(6,182,212,0.2), rgba(20,184,166,0.1)); }
.feature-icon--6 { background: linear-gradient(135deg, rgba(244,63,94,0.2), rgba(220,38,38,0.1)); }

.feature-icon svg {
  width: 24px; height: 24px;
}

.feature-icon--1 svg { color: #F59E0B; }
.feature-icon--2 svg { color: #3B82F6; }
.feature-icon--3 svg { color: #10B981; }
.feature-icon--4 svg { color: #8B5CF6; }
.feature-icon--5 svg { color: #06B6D4; }
.feature-icon--6 svg { color: #F43F5E; }

.feature-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */

.testimonials-section {
  background: var(--bg);
  overflow: hidden;
}

.testimonial-slider {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s var(--ease-out);
}

.testimonial-card {
  min-width: 100%;
  padding: 2.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  text-align: center;
}

.testimonial-avatar {
  width: 56px; height: 56px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-navy));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-xl);
  color: #FFFFFF;
  margin: 0 auto 1rem;
}

.testimonial-rating {
  color: var(--brand-gold);
  font-size: var(--text-base);
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  font-size: var(--text-base);
}

.testimonial-detail {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: 0.25rem;
}

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

.testimonial-arrow {
  width: 44px; height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--duration-fast);
}

.testimonial-arrow:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #FFFFFF;
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonial-dot {
  width: 10px; height: 10px;
  border-radius: var(--radius-full);
  background: var(--border);
  transition: all var(--duration-fast);
  cursor: pointer;
  border: none;
}

.testimonial-dot.active {
  background: var(--brand-primary);
  width: 28px;
}

/* ================================================================
   FAQ ACCORDION
   ================================================================ */

.faq-section {
  background: var(--surface);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--bg);
  overflow: hidden;
  transition: all var(--duration-fast);
}

.faq-item.active {
  border-color: rgba(245, 27, 37, 0.2);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  border: none;
  background: none;
  gap: 1rem;
}

.faq-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--duration-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--brand-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ================================================================
   CTA SECTION
   ================================================================ */

.cta-section {
  position: relative;
  padding: var(--space-3xl) 0;
  overflow: hidden;
  background: linear-gradient(135deg, #0F1B38 0%, #1E2B4F 50%, #0F1B38 100%);
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(245,27,37,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(212,175,55,0.06) 0%, transparent 50%);
}

.cta-content {
  position: relative;
  text-align: center;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.cta-subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ================================================================
   CONTACT
   ================================================================ */

.contact-section {
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all var(--duration-fast);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.contact-info-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(245, 27, 37, 0.08);
  color: var(--brand-primary);
}

.contact-info-icon svg {
  width: 20px; height: 20px;
}

.contact-info-text h4 {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.contact-info-text p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.5;
}

.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form .form-group textarea.form-input {
  height: auto;
  min-height: 120px;
  padding: 0.75rem;
  resize: vertical;
  font-family: var(--font-body);
}

.contact-form .form-group input.form-input,
.contact-form .form-group textarea.form-input {
  padding-left: 0.75rem;
}

.contact-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.contact-success.show {
  display: block;
}

.contact-success-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.contact-success-icon svg {
  width: 32px; height: 32px;
}

.contact-success h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  margin-bottom: 0.5rem;
}

.contact-success p {
  color: var(--text-secondary);
}

/* ================================================================
   FOOTER
   ================================================================ */

.footer {
  background: var(--brand-dark);
  color: #FFFFFF;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,27,37,0.3), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  padding: var(--space-3xl) 0 var(--space-2xl);
}

/* Newsletter */
.footer-newsletter {
  background: linear-gradient(135deg, rgba(245,27,37,0.1), rgba(212,175,55,0.05));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  margin-bottom: var(--space-2xl);
}

.footer-newsletter-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-newsletter h3 {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 800;
  color: #FFFFFF;
}

.footer-newsletter p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.newsletter-input {
  flex: 1;
  min-width: 200px;
  height: 44px;
  padding: 0 1rem;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  color: #FFFFFF;
  font-size: var(--text-sm);
}

.newsletter-input::placeholder {
  color: rgba(255,255,255,0.3);
}

.newsletter-input:focus {
  outline: none;
  border-color: rgba(245,27,37,0.5);
}

/* Brand Column */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.footer-logo img {
  width: 32px; height: 32px;
  object-fit: contain;
}

.footer-logo span {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 800;
  color: #FFFFFF;
}

.footer-desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
}

.footer-social a {
  width: 36px; height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--duration-fast);
}

.footer-social a:hover {
  background: rgba(255,255,255,0.15);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.footer-social a svg {
  width: 16px; height: 16px;
}

/* Link Columns */
.footer-links h4 {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.45);
  transition: all var(--duration-fast);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: #FFFFFF;
  padding-left: 4px;
}

.footer-links a svg {
  width: 12px; height: 12px;
  color: var(--brand-primary);
  opacity: 0;
  transition: opacity var(--duration-fast);
}

.footer-links a:hover svg {
  opacity: 1;
}

/* Contact Row */
.footer-contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
}

.footer-contact-item svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
  color: rgba(255,255,255,0.3);
}

/* Bottom Bar */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-copyright {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-links span.sep {
  width: 1px; height: 12px;
  background: rgba(255,255,255,0.1);
}

/* ================================================================
   FLOATING BUTTONS — RIGHT SIDE
   ================================================================ */

.floating-buttons {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.floating-btn {
  width: 48px; height: 48px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: var(--shadow-md);
  transition: all var(--duration-normal) var(--ease-out);
  cursor: pointer;
  border: none;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.floating-btn svg {
  width: 22px; height: 22px;
}

.floating-btn--back-to-top {
  background: var(--brand-navy);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all var(--duration-normal) var(--ease-out);
}

.floating-btn--back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-btn--phone {
  background: var(--brand-primary);
}

.floating-btn--whatsapp {
  background: #25D366;
  animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50%      { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* ================================================================
   LUMABAR — Mobile Bottom Nav
   ================================================================ */

.luma-bar {
  display: none;
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
}

[data-show-luma="true"] .luma-bar {
  display: block;
}

.luma-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.625rem 1.25rem;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
  position: relative;
  overflow: visible;
}

[data-theme="dark"] .luma-inner {
  background: rgba(15, 27, 56, 0.9);
  border-color: rgba(255,255,255,0.08);
}

.luma-glow {
  position: absolute;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--brand-primary), #7C3AED);
  border-radius: var(--radius-full);
  filter: blur(20px);
  opacity: 0.3;
  z-index: -1;
  transition: left 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.luma-item {
  width: 44px; height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  color: var(--text-muted);
  transition: all var(--duration-fast) var(--ease-out);
  border-radius: var(--radius-full);
  border: none;
  background: none;
}

.luma-item.active {
  color: var(--brand-primary);
  transform: scale(1.15);
}

.luma-item svg {
  width: 22px; height: 22px;
}

.luma-item span {
  position: absolute;
  bottom: -1.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-dark);
  color: #FFFFFF;
  font-size: 0.625rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-fast);
}

.luma-item:hover span {
  opacity: 1;
}

/* ================================================================
   SCROLL REVEAL ANIMATIONS
   ================================================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

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

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

/* Tablet 640px+ */
@media (min-width: 640px) {
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .form-row-2 { grid-template-columns: 1fr 1fr; }
  .form-row-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-contact { grid-template-columns: repeat(3, 1fr); }
  .footer-newsletter-inner {
    flex-direction: row;
    align-items: center;
  }
  .footer-newsletter-inner > :first-child {
    flex: 1;
  }
}

/* Tablet 768px+ */
@media (min-width: 768px) {
  .header-nav { display: flex; }
  .header-actions { display: flex; }
  .hamburger { display: none; }
  .mobile-menu, .mobile-overlay { display: none; }

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

  .contact-grid { grid-template-columns: 1fr 1.2fr; }

  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Desktop 1024px+ */
@media (min-width: 1024px) {
  .section { padding: var(--space-section) 0; }
  .destinations-grid { grid-template-columns: repeat(3, 1fr); }
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Wide 1200px+ */
@media (min-width: 1200px) {
  .container { padding: 0; }
}

/* ── Reduced Motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
