/* ══════════════════════════════════════
   AURORA TRAVEL CO — Aurora Theme
   ══════════════════════════════════════ */

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

:root {
  /* ─── Aurora Palette ─── */
  --aurora-mint:    #00d9a5;
  --aurora-teal:    #06b6d4;
  --aurora-cyan:    #22d3ee;
  --aurora-blue:    #3b82f6;
  --aurora-violet:  #8b5cf6;
  --aurora-purple:  #a855f7;
  --aurora-magenta: #ec4899;
  --aurora-pink:    #f43f5e;
  --aurora-coral:   #ff6b35;
  --aurora-gold:    #f59e0b;

  --aurora-text-grad: linear-gradient(110deg, #00d9a5 0%, #22d3ee 22%, #8b5cf6 58%, #ec4899 100%);
  --aurora-button-grad: linear-gradient(135deg, #06b6d4 0%, #8b5cf6 55%, #ec4899 100%);
  --aurora-border-grad: linear-gradient(135deg, rgba(0,217,165,0.6), rgba(139,92,246,0.6), rgba(236,72,153,0.6));

  /* Brand primary (used in many places) */
  --primary:        #8b5cf6;
  --primary-dark:   #7c3aed;
  --primary-light:  #c084fc;
  --primary-bg:     #f3eeff;
  --primary-glow:   rgba(139, 92, 246, 0.28);

  /* Neutrals */
  --dark: #0c1023;
  --dark-soft: #1a1f3a;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50:  #f9fafb;
  --white: #ffffff;

  /* Section backgrounds */
  --bg-warm: #fbfaff;
  --bg-cool: #f4f7fb;

  /* Radius */
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 10px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 10px -1px rgba(15, 23, 42, 0.07), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 14px 30px -8px rgba(15, 23, 42, 0.14), 0 6px 12px -6px rgba(15, 23, 42, 0.08);
  --shadow-xl: 0 25px 50px -12px rgba(15, 23, 42, 0.2);
  --shadow-card: 0 0 0 1px rgba(15, 23, 42, 0.04), 0 2px 4px rgba(15, 23, 42, 0.04), 0 18px 32px rgba(15, 23, 42, 0.08);
  --shadow-aurora: 0 18px 50px -12px rgba(139, 92, 246, 0.5);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  background-color: var(--bg-warm);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ───────────────────────────────
   ACCESSIBILITY — focus & skip
   (ui-ux-pro-max §1)
   ─────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 2000;
  background: var(--dark);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  transition: top 0.2s var(--ease);
  box-shadow: var(--shadow-lg);
}
.skip-link:focus {
  top: 1rem;
  outline: 3px solid var(--aurora-cyan);
  outline-offset: 2px;
}

/* Visible focus ring on all interactive elements (no removing focus rings — §1 focus-states) */
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid var(--aurora-violet);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}
.btn:focus-visible {
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ═══════════════════════════════
   AURORA BACKGROUND
   ═══════════════════════════════ */
.aurora-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.32;
  will-change: transform;
}
.aurora-blob-1 {
  width: 640px; height: 640px;
  top: -160px; left: -120px;
  background: radial-gradient(circle, var(--aurora-mint), transparent 65%);
  animation: auroraDrift 22s ease-in-out infinite;
}
.aurora-blob-2 {
  width: 700px; height: 700px;
  top: 8%; right: -180px;
  background: radial-gradient(circle, var(--aurora-violet), transparent 65%);
  animation: auroraDrift 26s ease-in-out infinite reverse;
  animation-delay: 4s;
}
.aurora-blob-3 {
  width: 560px; height: 560px;
  top: 55%; left: 28%;
  background: radial-gradient(circle, var(--aurora-magenta), transparent 65%);
  animation: auroraDrift 28s ease-in-out infinite;
  animation-delay: 8s;
}
.aurora-blob-4 {
  width: 480px; height: 480px;
  bottom: -120px; right: 18%;
  background: radial-gradient(circle, var(--aurora-cyan), transparent 65%);
  animation: auroraDrift 30s ease-in-out infinite reverse;
  animation-delay: 12s;
}

@keyframes auroraDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, -40px) scale(1.08); }
  66% { transform: translate(-50px, 50px) scale(0.95); }
}

/* keep all real content above the aurora */
nav, section, footer { position: relative; z-index: 1; }


/* ═══════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

.aurora-text {
  background: var(--aurora-text-grad);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: auroraShift 8s ease-in-out infinite;
}
@keyframes auroraShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.glass-card {
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}


/* ═══════════════════════════════
   NAVBAR
   ═══════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  background-color: rgba(251, 250, 255, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: background-color 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}

.navbar.scrolled {
  background-color: rgba(12, 16, 35, 0.92);
  border-bottom-color: rgba(139, 92, 246, 0.25);
  box-shadow: 0 4px 30px rgba(12, 16, 35, 0.25);
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark-svg {
  filter: drop-shadow(0 4px 12px rgba(139, 92, 246, 0.35));
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-main {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  color: var(--dark);
  transition: color 0.5s ease;
}
.logo-sub {
  font-size: 0.58rem;
  color: var(--gray-500);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.5s ease;
}

.navbar.scrolled .logo-main { color: #ffffff; }
.navbar.scrolled .logo-sub  { color: rgba(255, 255, 255, 0.55); }

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  display: block;
  color: var(--gray-600);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease, background-color 0.3s ease;
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--primary);
  background-color: var(--primary-bg);
}

.navbar.scrolled .nav-links a { color: rgba(255, 255, 255, 0.72); }
.navbar.scrolled .nav-links a:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.lang-toggle {
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  padding: 0.55rem 0.95rem; /* slight bump for touch comfort — §2 touch-target-size */
  border-radius: var(--radius-full);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  transition: all 0.3s ease;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
}
.lang-toggle:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.lang-active { color: var(--primary) !important; }
.lang-sep { color: var(--gray-300); margin: 0 2px; }
.lang-other { color: var(--gray-400); }

.navbar.scrolled .lang-toggle {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}
.navbar.scrolled .lang-toggle:hover {
  background-color: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
}
.navbar.scrolled .lang-active { color: #ffffff !important; }
.navbar.scrolled .lang-other  { color: rgba(255, 255, 255, 0.45) !important; }
.navbar.scrolled .lang-sep    { color: rgba(255, 255, 255, 0.25); }

.nav-cta { white-space: nowrap; }
.navbar.scrolled .nav-cta {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.navbar.scrolled .nav-cta:hover {
  background: rgba(255, 255, 255, 0.25) !important;
  box-shadow: none;
  transform: translateY(-1px);
}

/* Hamburger — 44×44 touch target (ui-ux-pro-max §2 touch-target-size) */
.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 11px;
  min-width: 44px;
  min-height: 44px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--dark);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navbar.scrolled .hamburger span { background-color: #ffffff; }


/* ═══════════════════════════════
   BUTTONS
   ═══════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.1rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.92rem;
  font-family: 'Manrope', sans-serif;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  line-height: 1.4;
  white-space: nowrap;
}
.btn-sm { padding: 0.55rem 1.35rem; font-size: 0.85rem; }

.btn-primary {
  background: var(--aurora-button-grad);
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: #ffffff;
  box-shadow: 0 8px 22px var(--primary-glow);
  position: relative;
  overflow: hidden;
}
.btn-primary:hover {
  transform: translateY(-2px);
  background-position: 100% 50%;
  box-shadow: 0 14px 32px rgba(139, 92, 246, 0.45);
}

.btn-outline {
  background-color: rgba(255,255,255,0.6);
  color: var(--dark);
  border: 1.5px solid var(--gray-200);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  background-color: rgba(255,255,255,0.85);
}

.btn-white {
  background-color: #ffffff;
  color: var(--primary);
  font-weight: 700;
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-full { width: 100%; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; }
.btn-success {
  background: linear-gradient(135deg, #00d9a5, #06b6d4) !important;
  box-shadow: 0 8px 22px rgba(0, 217, 165, 0.4) !important;
}


/* ═══════════════════════════════
   HERO
   ═══════════════════════════════ */
.hero {
  padding-top: 72px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 3rem;
  min-height: calc(100vh - 72px - 100px);
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem 0.45rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(139, 92, 246, 0.2);
  backdrop-filter: blur(12px);
  margin-bottom: 1.6rem;
  box-shadow: var(--shadow-sm);
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--aurora-mint);
  box-shadow: 0 0 0 4px rgba(0, 217, 165, 0.18);
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 217, 165, 0.45); }
  50%      { box-shadow: 0 0 0 6px rgba(0, 217, 165, 0); }
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

.hero-subtitle {
  color: var(--gray-600);
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero Visual */
.hero-visual { position: relative; z-index: 1; }
.hero-image-wrapper { position: relative; }
.hero-image-wrapper > img {
  display: block;
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl), 0 30px 60px -20px rgba(139, 92, 246, 0.45);
}
.hero-image-wrapper::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius-xl) + 3px);
  background: var(--aurora-text-grad);
  background-size: 200% 200%;
  z-index: -1;
  animation: auroraShift 8s ease-in-out infinite;
  opacity: 0.85;
}

/* Float Cards */
.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.2rem;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 3;
  animation: floatCard 5s ease-in-out infinite;
}
.hero-float-card:first-of-type { bottom: 22px; left: -22px; }
.hero-float-card-2 { top: 22px; right: -22px; animation-delay: 1.5s; }

.float-card-icon {
  width: 38px;
  height: 38px;
  background-color: var(--primary-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.float-card-icon.accent {
  background: var(--aurora-button-grad);
  color: #ffffff;
}
.hero-float-card strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.2;
}
.hero-float-card span {
  display: block;
  font-size: 0.72rem;
  color: var(--gray-500);
  font-weight: 500;
  line-height: 1.3;
}

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

/* Stats Bar */
.stats-bar {
  background: linear-gradient(180deg, rgba(255,255,255,0.7), rgba(255,255,255,0.95));
  border-top: 1px solid rgba(139, 92, 246, 0.1);
  border-bottom: 1px solid rgba(139, 92, 246, 0.06);
  backdrop-filter: blur(8px);
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}
.stat-item {
  flex: 1 1 0%;
  text-align: center;
  padding: 0.5rem 1rem;
}
.stat-number {
  display: inline;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  background: var(--aurora-text-grad);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.stat-suffix {
  display: inline;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--aurora-text-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  display: block;
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-top: 0.4rem;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background-color: var(--gray-200);
  flex-shrink: 0;
}


/* ═══════════════════════════════
   SECTIONS - COMMON
   ═══════════════════════════════ */
.section { padding: 6rem 0; }
.section-white {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
}
.section-light {
  background-color: rgba(244, 247, 251, 0.75);
  backdrop-filter: blur(8px);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  background-color: var(--primary-bg);
  color: var(--primary);
  border: 1px solid rgba(139, 92, 246, 0.18);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.18;
}

.section-subtitle {
  color: var(--gray-600);
  font-size: 1rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}


/* ═══════════════════════════════
   ABOUT
   ═══════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-images {
  position: relative;
  padding-right: 30px;
  padding-bottom: 30px;
}
.about-img-main img {
  border-radius: var(--radius-xl);
  width: 100%;
  height: 460px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid #ffffff;
}
.about-img-secondary img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.about-experience-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--aurora-button-grad);
  color: #ffffff;
  padding: 1.1rem 1.3rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-aurora);
  z-index: 2;
}
.about-experience-badge strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
}
.about-experience-badge span {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.9;
  margin-top: 4px;
}

.about-content .section-tag { margin-bottom: 0.75rem; }
.about-content .section-title {
  text-align: left;
  margin-bottom: 1.25rem;
}
.about-content > p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.96rem;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin: 2rem 0;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--dark-soft);
}
.feature-check {
  width: 26px; height: 26px; min-width: 26px;
  background: var(--aurora-button-grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(139, 92, 246, 0.3);
}


/* ═══════════════════════════════
   DESTINATIONS SHOWCASE
   ═══════════════════════════════ */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

/* Per-destination color themes */
.dest-card[data-theme="iceland"]   { --d: #00d9a5; --d2: #06b6d4; }
.dest-card[data-theme="bali"]      { --d: #ff6b35; --d2: #f59e0b; }
.dest-card[data-theme="santorini"] { --d: #0ea5e9; --d2: #6366f1; }
.dest-card[data-theme="tokyo"]     { --d: #ec4899; --d2: #8b5cf6; }
.dest-card[data-theme="marrakech"] { --d: #f59e0b; --d2: #ef4444; }
.dest-card[data-theme="maldives"]  { --d: #14b8a6; --d2: #06b6d4; }

.dest-card {
  background-color: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.4rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: block;
  color: inherit;
  cursor: pointer;
}
.dest-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--d, var(--primary)), var(--d2, var(--primary-light)));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.dest-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 40px -12px rgba(15, 23, 42, 0.18),
              0 0 0 1px rgba(139, 92, 246, 0.1);
  border-color: transparent;
}
.dest-card:hover::before { transform: scaleX(1); }

.dest-img {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.1rem;
  height: 220px;
}
.dest-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.dest-card:hover .dest-img img { transform: scale(1.07); }

.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(var(--d-rgb, 139, 92, 246), 0.0) 30%,
    color-mix(in oklab, var(--d, #8b5cf6) 35%, transparent) 100%);
  mix-blend-mode: screen;
  opacity: 0.75;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.dest-card:hover .dest-overlay { opacity: 1; }

.dest-tag-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}
.dest-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--d, var(--primary)), var(--d2, var(--primary-light)));
}
.dest-duration {
  font-size: 0.78rem;
  color: var(--gray-500);
  font-weight: 600;
}

.dest-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.dest-card p {
  color: var(--gray-600);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.dest-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed var(--gray-200);
  padding-top: 0.95rem;
}
.dest-price .from {
  font-size: 0.72rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-right: 0.35rem;
}
/* Solid dark price — keeps WCAG 4.5:1 contrast on white card surface (§6 color-accessible-pairs) */
.dest-price strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
}
/* Slightly darker accent for explore link — keeps adequate contrast on white card */
.dest-link {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--primary-dark);
  transition: var(--transition);
}
.dest-card:hover .dest-link { color: var(--primary); }
.dest-card:hover .dest-link { transform: translateX(4px); }


/* ═══════════════════════════════
   CTA BANNER
   ═══════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, #0a0e27 0%, #1e1b4b 35%, #4c1d95 70%, #831843 100%);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -45%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 217, 165, 0.35), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -45%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.32), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  margin-bottom: 1.25rem;
}
.cta-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.1rem;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.cta-content p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 2.2rem;
  line-height: 1.7;
}


/* ═══════════════════════════════
   BOOKING / PROCESS
   ═══════════════════════════════ */
.booking-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1.25rem;
}

.process-card {
  position: relative;
  text-align: left;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.process-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.process-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  background: var(--aurora-text-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.85rem;
}

.process-line {
  width: 36px;
  height: 3px;
  background: var(--aurora-button-grad);
  margin: 0 0 1rem;
  border-radius: 3px;
}

.process-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.1rem;
}
.process-img img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.process-card:hover .process-img img { transform: scale(1.06); }

.process-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.process-card p {
  color: var(--gray-600);
  font-size: 0.88rem;
  line-height: 1.65;
}


/* Booking Preview Card */
.booking-preview {
  position: sticky;
  top: 96px;
  background: linear-gradient(160deg, #0c1023 0%, #1e1b4b 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.75rem 1.5rem;
  border: 1px solid rgba(139, 92, 246, 0.25);
  box-shadow: var(--shadow-aurora);
  position: relative;
  overflow: hidden;
}
.booking-preview::before {
  content: '';
  position: absolute;
  top: -60%; right: -40%;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(0, 217, 165, 0.25), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.booking-preview::after {
  content: '';
  position: absolute;
  bottom: -50%; left: -30%;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.22), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.booking-preview > * { position: relative; z-index: 1; }

.booking-preview-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.booking-preview-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}
.booking-preview-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}
.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--aurora-mint);
  box-shadow: 0 0 0 4px rgba(0, 217, 165, 0.18);
  animation: badgePulse 2s ease-in-out infinite;
}

.booking-preview-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.booking-preview-route {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.2rem;
  margin-bottom: 1.4rem;
}
.route-stop {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.route-stop > div { display: flex; flex-direction: column; }
.route-stop strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ffffff;
}
.route-stop span {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}
.route-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.route-dot-1 { background: var(--aurora-mint); box-shadow: 0 0 12px rgba(0, 217, 165, 0.5); }
.route-dot-2 { background: var(--aurora-cyan); box-shadow: 0 0 12px rgba(34, 211, 238, 0.5); }
.route-dot-3 { background: var(--aurora-violet); box-shadow: 0 0 12px rgba(139, 92, 246, 0.5); }
.route-dot-4 { background: var(--aurora-magenta); box-shadow: 0 0 12px rgba(236, 72, 153, 0.5); }

.route-line {
  width: 2px;
  height: 18px;
  margin-left: 5px;
  background: linear-gradient(180deg, rgba(255,255,255,0.3), rgba(255,255,255,0.05));
}

.booking-preview-rows {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}
.bp-row {
  display: grid;
  grid-template-columns: 28px 80px 1fr;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
}
.bp-icon {
  width: 28px; height: 28px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aurora-cyan);
}
.bp-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.bp-value { color: rgba(255, 255, 255, 0.92); font-weight: 500; }

.booking-preview-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  gap: 1rem;
}
.bp-foot-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.bp-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  background: var(--aurora-text-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* ═══════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card[data-theme="iceland"] { --t: #00d9a5; --t2: #06b6d4; }
.testimonial-card[data-theme="bali"]    { --t: #ff6b35; --t2: #f59e0b; }
.testimonial-card[data-theme="tokyo"]   { --t: #ec4899; --t2: #8b5cf6; }

.testimonial-card {
  background-color: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--t, var(--primary)), var(--t2, var(--primary-light)));
  opacity: 0.6;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}

.testimonial-quote {
  color: var(--t, var(--primary));
  margin-bottom: 0.4rem;
}
.testimonial-trip {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--t, var(--primary));
  margin-bottom: 0.85rem;
}
.testimonial-card > p {
  color: var(--gray-700);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid var(--gray-100);
  padding-top: 1rem;
}
.testimonial-author img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--t, var(--primary));
  padding: 2px;
  background: #fff;
}
.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
}
.testimonial-author span {
  display: block;
  font-size: 0.78rem;
  color: var(--gray-500);
  font-weight: 500;
}


/* ═══════════════════════════════
   TRIP PLANNER (CONTACT)
   ═══════════════════════════════ */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-left .section-tag { margin-bottom: 0.75rem; }
.contact-left .section-title {
  text-align: left;
  margin-bottom: 0.85rem;
}
.contact-left > p {
  color: var(--gray-600);
  font-size: 0.96rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--aurora-button-grad);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(139, 92, 246, 0.3);
}
.contact-info-item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.contact-info-item p {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.5;
}
.contact-info-item a:hover { color: var(--primary); }

.contact-form {
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(248,250,255,0.85));
  border: 1px solid rgba(139, 92, 246, 0.18);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.contact-form::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: calc(var(--radius-xl) + 1.5px);
  background: var(--aurora-text-grad);
  background-size: 200% 200%;
  z-index: -1;
  opacity: 0.4;
  animation: auroraShift 8s ease-in-out infinite;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background-color: #ffffff;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 0.78rem 1rem;
  color: var(--dark);
  font-family: 'Manrope', sans-serif;
  font-size: 0.92rem;
  transition: var(--transition);
  outline: none;
  resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.15);
}
.form-group select {
  appearance: none;
  -webkit-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='%238b5cf6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}


/* ═══════════════════════════════
   FOOTER
   ═══════════════════════════════ */
.footer {
  background: linear-gradient(180deg, #0c1023 0%, #050714 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--aurora-text-grad);
  background-size: 200% 100%;
  animation: auroraShift 8s ease-in-out infinite;
  opacity: 0.85;
}
.footer::after {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.18), transparent 65%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.footer .container { position: relative; z-index: 1; }

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 0 2.5rem;
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}
.footer-col h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.86rem;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--aurora-cyan); }

.footer-col p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.86rem;
  margin-bottom: 0.45rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.78rem;
}

.footer .logo-main { color: #ffffff !important; }
.footer .logo-sub  { color: rgba(255, 255, 255, 0.6) !important; }


/* ═══════════════════════════════
   MOBILE NAV
   ═══════════════════════════════ */
.nav-links.mobile-open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background-color: rgba(251, 250, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 1.5rem 1.5rem;
  gap: 0.25rem;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
  z-index: 999;
}
.nav-links.mobile-open a {
  padding: 0.95rem 1rem; /* ≥44px tall touch target — §2 touch-target-size */
  font-size: 1rem;
  border-radius: var(--radius-sm);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav-links.mobile-open a:hover {
  background-color: var(--primary-bg);
  color: var(--primary);
}

.navbar.scrolled .nav-links.mobile-open {
  background-color: rgba(12, 16, 35, 0.98);
  border-bottom-color: rgba(139, 92, 246, 0.22);
}
.navbar.scrolled .nav-links.mobile-open a {
  color: rgba(255, 255, 255, 0.78);
}
.navbar.scrolled .nav-links.mobile-open a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}


/* ═══════════════════════════════
   RESPONSIVE
   ═══════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-layout {
    grid-template-columns: 1fr;
  }
  .booking-preview {
    position: static;
    max-width: 540px;
    margin: 0 auto;
    width: 100%;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* Mobile landscape */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
    padding-top: 3rem;
    padding-bottom: 2rem;
    min-height: auto;
  }
  .hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions { justify-content: center; }
  .hero-visual { max-width: 540px; margin: 0 auto; }
  .hero-image-wrapper > img { height: 380px; }
  .hero-float-card:first-of-type { left: 10px; bottom: 10px; }
  .hero-float-card-2 { right: 10px; top: 10px; }

  .stats-grid { flex-wrap: wrap; }
  .stat-divider { display: none; }
  .stat-item { flex: 0 0 50%; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-images { max-width: 540px; margin: 0 auto; }
  .about-content .section-title { text-align: center; }
  .about-content { text-align: center; }
  .about-features { text-align: left; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .contact-wrapper { grid-template-columns: 1fr; gap: 2rem; }
  .contact-left .section-title { text-align: center; }

  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
}

/* Mobile */
@media (max-width: 640px) {
  .section { padding: 4rem 0; }

  .destinations-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }

  .hero-float-card { display: none; }
  .hero-image-wrapper > img { height: 320px; }
  .about-img-secondary { display: none; }
  .about-images { padding-right: 0; padding-bottom: 0; }
  .about-experience-badge { top: -15px; left: auto; right: -10px; }
  .about-img-main img { height: 320px; }

  .stats-grid { padding: 1.5rem 0; }
  .stat-number { font-size: 1.8rem; }
  .stat-suffix { font-size: 1.1rem; }

  .contact-form { padding: 1.6rem; }
  .booking-preview { padding: 1.4rem; }
  .booking-preview-head { flex-wrap: wrap; gap: 0.5rem; }
  .bp-row { grid-template-columns: 28px 70px 1fr; font-size: 0.8rem; }

  .cta-banner { padding: 4rem 0; }
}


/* ═══════════════════════════════
   REDUCED MOTION (ui-ux-pro-max §1 reduced-motion + §7 motion-meaning)
   Honor user preference: disable decorative motion, keep state transitions
   ═══════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  /* Halt decorative loops */
  .aurora-blob,
  .badge-dot,
  .status-dot,
  .hero-float-card,
  .aurora-text,
  .stat-number,
  .stat-suffix,
  .bp-price,
  .process-number,
  .hero-image-wrapper::before,
  .contact-form::before,
  .footer::before {
    animation: none !important;
  }

  /* Keep reveal: snap-in instead of slide */
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Tame all transitions/animations site-wide */
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}


/* ═══════════════════════════════
   HIGH-CONTRAST ADJUSTMENTS
   Forced colors mode (Windows high contrast) — keep buttons usable
   ═══════════════════════════════ */
@media (forced-colors: active) {
  .btn-primary,
  .btn-white,
  .feature-check,
  .contact-info-icon {
    forced-color-adjust: none;
  }
  .aurora-bg { display: none; }
}

