/* ==========================================================================
   Emirates Cinematic Scroll Experience — Stylesheet
   Luxury Design System: Deep Obsidian, Signature Red, Metallic Gold
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-dark: #05070b;
  --bg-deep: #080c14;
  --bg-surface: #0e1420;
  --bg-card: rgba(14, 20, 32, 0.65);
  
  --emirates-red: #c8102e;
  --emirates-red-bright: #e01a35;
  --emirates-red-glow: rgba(200, 16, 46, 0.4);

  --emirates-gold: #d4af37;
  --emirates-gold-light: #f3e5ab;
  --emirates-gold-glow: rgba(212, 175, 55, 0.35);

  --text-main: #f7f9fc;
  --text-muted: rgba(247, 249, 252, 0.65);
  --text-dim: rgba(247, 249, 252, 0.4);

  --border-gold: rgba(212, 175, 55, 0.25);
  --border-glass: rgba(255, 255, 255, 0.08);

  --font-heading: 'Cormorant Garamond', 'Cormorant', serif;
  --font-serif: 'Cormorant Garamond', 'Cormorant', serif;
  --font-body: 'Montserrat', -apple-system, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body {
  position: relative;
  width: 100%;
  background: var(--bg-dark);
}

/* Canvas high-quality rendering */
#film {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

#stage {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--emirates-gold);
}

/* ── Typography & Base Helpers ── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.text-gold {
  color: var(--emirates-gold);
  background: linear-gradient(135deg, #f3e5ab 0%, #d4af37 50%, #aa820a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-red {
  color: var(--emirates-red-bright);
}

.serif-mark {
  font-family: var(--font-serif);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ── Preloader ── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #040508;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}

#loader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-emblem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.loader-logo {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 0 16px rgba(200, 16, 46, 0.4));
}

.loader-subtext {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--emirates-gold);
}

.loader-bar {
  width: 220px;
  height: 2px;
  background: rgba(212, 175, 55, 0.15);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.loader-bar-fill {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--emirates-red), var(--emirates-gold));
  transition: width 0.2s ease-out;
  box-shadow: 0 0 12px var(--emirates-gold-glow);
}

/* ── Navigation Header ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
  transition: all 0.4s var(--ease-out);
}

.navbar.scrolled {
  padding: 14px 48px;
  background: rgba(8, 12, 20, 0.75);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--text-main);
  transition: transform 0.3s var(--ease-out);
}

.nav-brand:hover {
  transform: translateY(-1px);
}

.nav-brand-flag {
  height: 56px;
  width: auto;
  display: block;
  border-radius: 4px;
  filter: drop-shadow(0 6px 20px rgba(215, 26, 33, 0.65));
  transition: filter 0.3s ease;
}

.nav-brand:hover .nav-brand-flag {
  filter: drop-shadow(0 8px 26px rgba(224, 26, 53, 0.85));
}

.nav-brand-rule {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, var(--emirates-gold), transparent);
  opacity: 0.75;
}

.nav-brand-lockup {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.15;
}

.nav-brand-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--emirates-gold);
  text-shadow: 0 2px 12px rgba(212, 175, 55, 0.3);
}

.nav-brand-slogan {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.4em;
  color: rgba(247, 249, 252, 0.8);
  margin-top: 2px;
}

.nav-brand-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--emirates-gold);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--emirates-gold-light);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ── Custom Navbar Dropdowns (ENG & dots ...) ── */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-drop-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-drop-btn.dots-btn {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.nav-drop-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.35);
  color: var(--emirates-gold);
}

.nav-dropdown.active .nav-drop-btn {
  border-color: var(--emirates-gold);
  background: rgba(212, 175, 55, 0.05);
}

.dropdown-chevron {
  transition: transform 0.3s ease;
}

.nav-dropdown.active .dropdown-chevron {
  transform: rotate(180deg);
}

.nav-drop-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background-color: rgba(12, 18, 29, 0.98);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.15);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  min-width: 160px;
  padding: 8px 0;
  backdrop-filter: blur(24px);
}

.nav-drop-menu.right-aligned {
  left: auto;
  right: 0;
  min-width: 220px;
}

.nav-dropdown.active .nav-drop-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.nav-drop-option {
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(247, 249, 252, 0.8);
  cursor: pointer;
  transition: all 0.25s ease;
}

.nav-drop-option:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--emirates-gold);
}

.nav-drop-option.selected {
  color: #fff;
  font-weight: 700;
  background: rgba(215, 26, 33, 0.15);
}

/* More settings dropdown items */
.menu-header {
  font-family: var(--font-serif);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--emirates-gold);
  padding: 8px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 6px;
}

.menu-item-action {
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(247, 249, 252, 0.85);
  cursor: pointer;
  transition: all 0.25s ease;
  border-left: 3px solid transparent;
}

.menu-item-action:hover {
  background: rgba(212, 175, 55, 0.12);
  color: var(--emirates-gold);
}

.menu-item-action.active {
  color: #fff;
  font-weight: 700;
  border-left-color: var(--emirates-gold);
  background: rgba(212, 175, 55, 0.05);
}

/* Luxury Button */
.btn-primary {
  background: linear-gradient(135deg, var(--emirates-red) 0%, #9e0a21 100%);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 40px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 4px 20px var(--emirates-red-glow);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--emirates-red-bright) 0%, var(--emirates-red) 100%);
  box-shadow: 0 8px 30px rgba(224, 26, 53, 0.6);
}

.btn-gold {
  background: linear-gradient(135deg, #d4af37 0%, #aa820a 100%);
  color: #080c14;
  border: none;
  padding: 12px 28px;
  border-radius: 40px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 4px 20px var(--emirates-gold-glow);
}

.btn-gold:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #f3e5ab 0%, #d4af37 100%);
  box-shadow: 0 8px 30px rgba(243, 229, 171, 0.5);
}

/* ── Scroll Stage & Film Scrubber ── */
#track {
  height: 900vh;
  position: relative;
}

#stage {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #040508;
}

#film {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

#vignette {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 70% at 50% 50%, transparent 40%, rgba(5, 7, 11, 0.85) 95%),
    linear-gradient(to bottom, rgba(5, 7, 11, 0.6) 0%, transparent 20%, transparent 80%, rgba(5, 7, 11, 0.95) 100%);
}

/* Captions */
.caption {
  position: absolute;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  will-change: opacity, transform;
  max-width: 800px;
  padding: 0 24px;
}

.caption .badge {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--emirates-gold);
  margin-bottom: 12px;
  padding: 5px 16px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
}

.caption h1 {
  font-family: var(--font-serif);
  font-size: clamp(44px, 6.8vw, 96px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);
}

.caption h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);
}

.caption p {
  margin-top: 18px;
  font-size: clamp(15px, 1.4vw, 20px);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 48ch;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
}

.cap-center {
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.cap-center p { margin-left: auto; margin-right: auto; }

.cap-left {
  left: 8vw; top: 50%;
  transform: translateY(-50%);
  text-align: left;
}

.cap-right {
  right: 8vw; top: 50%;
  transform: translateY(-50%);
  text-align: right;
}
.cap-right p { margin-left: auto; }

.cap-bottom {
  left: 50%; bottom: 12vh;
  transform: translateX(-50%);
  text-align: center;
}

/* Chapter V Final Caption */
.cap-final {
  text-align: center;
  /* Push lower to avoid bright sky/tower center */
  top: 58% !important;
  transform: translate(-50%, -50%) !important;
  /* Dark frosted card behind content */
  background: rgba(5, 7, 11, 0.55);
  backdrop-filter: blur(18px) saturate(0.8);
  -webkit-backdrop-filter: blur(18px) saturate(0.8);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 36px 48px 40px !important;
  max-width: 680px !important;
}

.cap-final .badge {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.5);
  color: var(--emirates-gold-light);
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
}

.cap-final-heading {
  font-family: var(--font-serif);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 14px 0 18px;
  text-shadow:
    0 2px 0 rgba(0,0,0,0.5),
    0 6px 20px rgba(0,0,0,0.9),
    0 16px 60px rgba(0,0,0,0.7);
}

.cap-final-sub {
  font-size: clamp(15px, 1.3vw, 17px);
  color: rgba(255, 255, 255, 0.88);
  max-width: 40ch;
  line-height: 1.7;
  margin: 0 auto 28px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.9);
}

.cap-final-btn {
  margin-top: 0 !important;
  text-decoration: none !important;
}

/* Scroll Cue */
#scroll-cue {
  position: absolute;
  bottom: 4vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-dim);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

#scroll-cue::after {
  content: "";
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--emirates-gold), transparent);
  animation: cueBounce 2s ease-in-out infinite;
}

@keyframes cueBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.3; }
}

/* Flight Telemetry HUD Overlay */
.hud-telemetry {
  position: absolute;
  bottom: 50px;
  left: 6vw;
  z-index: 12;
  display: flex;
  gap: 40px;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hud-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hud-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--emirates-gold);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hud-label svg {
  opacity: 0.8;
}

.hud-value {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
}

.hud-divider {
  width: 1px;
  height: 32px;
  background: rgba(212, 175, 55, 0.25);
  align-self: center;
}

/* ── Cabin Window Hero Centerpiece ── */
.cabin-window-bezel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 28vw;
  height: 60vh;
  min-width: 320px;
  min-height: 460px;
  border-radius: 140px 140px 140px 140px / 200px 200px 200px 200px;
  background: #060911;
  box-shadow: 
    0 0 0 12px #181f2c, /* Bezel outer ring */
    0 0 0 15px #0a0e17, /* Deep edge outline */
    0 30px 60px rgba(0, 0, 0, 0.95),
    inset 0 0 40px rgba(0, 0, 0, 0.9);
  overflow: hidden;
  border: 8px solid #0c121e; /* Inner window bezel */
  z-index: 5;
  transition: transform 0.1s var(--ease-out), opacity 0.3s ease;
}

.window-inner-frame {
  position: relative;
  width: 100%;
  height: 100%;
}

.window-glass-reflection {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 45%, rgba(255, 255, 255, 0.03) 50%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.window-view-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.1);
  transition: transform 0.1s ease;
}

/* Hero Left Content */
.cap-hero-left {
  left: 6vw;
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
  max-width: 480px;
  z-index: 10;
}

.hero-tech-line {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--emirates-gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.tech-bar {
  width: 24px;
  height: 1px;
  background: var(--emirates-gold);
}

.hero-plane-brand {
  font-family: var(--font-serif);
  font-size: clamp(38px, 4.5vw, 68px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.hero-plane-model {
  display: block;
  font-size: clamp(48px, 6.2vw, 92px);
  margin-top: 4px;
}

.hero-plane-tagline {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.2vw, 17px);
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 16px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--border-gold);
  border-radius: 30px;
  padding: 14px 28px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  cursor: pointer;
  background: transparent;
  transition: all 0.3s ease;
  pointer-events: auto !important;
  text-decoration: none !important;
}

.btn-hero-outline:hover {
  background: var(--emirates-gold);
  color: #05070b;
}

.btn-hero-outline:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-arrow {
  transition: transform 0.3s ease;
}

/* Right Indicators */
.hero-slide-nav {
  position: absolute;
  right: 6vw;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10;
}

.nav-track-line {
  position: relative;
  width: 1px;
  height: 160px;
  background: rgba(255, 255, 255, 0.12);
}

.nav-indicator-dot {
  position: absolute;
  left: 50%;
  top: 17.8%;
  transform: translate(-50%, -50%);
  width: 7px;
  height: 7px;
  background: var(--emirates-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.7);
  transition: top 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide-nav-items {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 120px;
  padding: 0;
}

.slide-nav-num {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.3s ease;
  user-select: none;
}

.slide-nav-num.active {
  color: var(--emirates-gold);
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

/* Scroll Cue Custom */
.hero-scroll-explore {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-dim);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  pointer-events: none;
}

.scroll-arrow {
  animation: cueBounce 2s ease-in-out infinite;
}

/* Watch Film Bottom Right */
.hero-watch-film {
  position: absolute;
  bottom: 50px;
  right: 6vw;
  z-index: 15;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  pointer-events: auto !important;
}

.play-circle-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emirates-gold);
  background: rgba(212, 175, 55, 0.05);
  transition: all 0.3s ease;
}

.hero-watch-film:hover .play-circle-btn {
  background: var(--emirates-gold);
  color: #05070b;
  transform: scale(1.08);
}

.watch-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.watch-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #fff;
}

.watch-subtitle {
  font-family: var(--font-serif);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--emirates-gold);
}

/* ── Brand Homepage Content Sections (Below Film) ── */
.main-content {
  position: relative;
  z-index: 20;
  background: var(--bg-dark);
}

/* Section Common */
.section {
  padding: 120px 7vw;
  position: relative;
  overflow: hidden;
}

/* Gold divider between sections */
.section + .section::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 7vw;
  right: 7vw;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,175,55,0.2), transparent);
  pointer-events: none;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px auto;
}

.section-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--emirates-gold);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.section-tag::before,
.section-tag::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--emirates-gold);
  opacity: 0.6;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.2vw, 70px);
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}

.section-desc {
  font-size: clamp(15px, 1.1vw, 18px);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
}

/* ── Brand Manifesto / Story ── */
.manifesto-section {
  background: linear-gradient(to bottom, #05070b 0%, #090e18 100%);
  border-top: 1px solid var(--border-gold);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.manifesto-text {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.6;
  font-weight: 400;
  color: rgba(247, 249, 252, 0.88);
  border-left: 2px solid var(--emirates-gold);
  padding-left: 28px;
  font-style: italic;
}

.manifesto-highlight {
  color: var(--emirates-gold-light);
  font-weight: 600;
}

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

.stat-card {
  background: rgba(10, 15, 24, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 40px 32px;
  border-radius: 20px;
  position: relative;
  transition: all 0.4s var(--ease-out);
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--emirates-gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card:hover {
  border-color: rgba(212, 175, 55, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212,175,55,0.08);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(40px, 4.5vw, 62px);
  font-weight: 800;
  color: var(--emirates-gold);
  line-height: 1;
  text-shadow: 0 0 40px rgba(212,175,55,0.3);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Cabin Classes Interactive Showcase ── */
.cabins-section {
  background: var(--bg-dark);
}

.cabin-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 56px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cabin-tab {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
  padding: 16px 32px;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: -1px;
}

.cabin-tab:hover {
  color: var(--text-main);
  border-bottom-color: rgba(212,175,55,0.35);
}

.cabin-tab.active {
  background: transparent;
  border-bottom: 2px solid var(--emirates-gold);
  color: var(--emirates-gold);
  box-shadow: none;
}

.cabin-card {
  display: none;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  align-items: stretch;
  background: rgba(10, 14, 22, 0.8);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7);
}

.cabin-card.active {
  display: grid;
  animation: fadeInUp 0.5s var(--ease-out);
}

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

.cabin-media {
  position: relative;
  width: 100%;
  height: 540px;
  overflow: hidden;
}

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

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

.cabin-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,14,22,0) 50%, rgba(10,14,22,0.95) 100%);
}

.cabin-info {
  padding: 56px 52px 52px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cabin-badge {
  display: inline-block;
  color: var(--emirates-gold);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 20px;
  background: rgba(212,175,55,0.06);
}

.cabin-title {
  font-size: clamp(28px, 2.5vw, 40px);
  margin-bottom: 18px;
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.1;
}

.cabin-desc {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.cabin-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.cabin-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-main);
}

.cabin-feature-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  color: var(--emirates-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
  border: 1px solid rgba(212,175,55,0.2);
}

/* ── 3D Fleet Specifications Explorer ── */
.fleet-section {
  background: linear-gradient(to bottom, #05070b 0%, #0a0f1c 100%);
}

.fleet-selector {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 54px;
}

.fleet-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  padding: 16px 36px;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.fleet-btn.active {
  background: var(--bg-card);
  border-color: var(--emirates-gold);
  color: var(--emirates-gold-light);
  box-shadow: 0 0 24px var(--emirates-gold-glow);
}

/* ── Tech Cockpit HUD Display ── */
.fleet-hud-container {
  display: grid;
  grid-template-columns: 300px 1fr 300px;
  gap: 32px;
  align-items: center;
  background: rgba(10, 15, 26, 0.95);
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), inset 0 1px 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
}

@media (max-width: 1024px) {
  .fleet-hud-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 32px;
  }
}

.hud-left-panel, .hud-right-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hud-tech-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--emirates-gold);
  opacity: 0.65;
}

.hud-plane-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.hud-plane-desc {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

.hud-decor-lines {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}

.hud-decor-lines span {
  width: 32px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
}

.hud-decor-lines span.line-active {
  background: var(--emirates-gold);
  width: 48px;
}

/* Bezel Center Media */
.hud-center-panel {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hud-bezel-frame {
  position: relative;
  width: 100%;
  border-radius: 16px;
  background: rgba(4, 6, 10, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.9);
}

.hud-corner-bracket {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid var(--emirates-gold);
  opacity: 0.7;
}

.hud-corner-bracket.tl { top: 12px; left: 12px; border-right: none; border-bottom: none; }
.hud-corner-bracket.tr { top: 12px; right: 12px; border-left: none; border-bottom: none; }
.hud-corner-bracket.bl { bottom: 12px; left: 12px; border-right: none; border-top: none; }
.hud-corner-bracket.br { bottom: 12px; right: 12px; border-left: none; border-top: none; }

.hud-visual-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8));
  transition: transform 0.8s var(--ease-out);
}

.hud-bezel-frame:hover .hud-visual-img {
  transform: scale(1.04) translateY(-4px);
}

/* Right Panel Telemetry */
.telemetry-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.tel-lbl {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.tel-val {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
}

.tel-bar-bg {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.tel-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--emirates-red), var(--emirates-gold));
  border-radius: 2px;
  transition: width 1s var(--ease-out);
}

/* ── Asymmetric Bento Destinations Grid ── */
.destinations-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  gap: 24px;
}

@media (max-width: 1024px) {
  .destinations-bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 280px;
  }
}

@media (max-width: 640px) {
  .destinations-bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }
}

.dest-bento-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  background: #090e17;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
}

.dest-bento-card.featured-hub {
  grid-column: span 2;
  grid-row: span 1;
}

@media (max-width: 1024px) {
  .dest-bento-card.featured-hub {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .dest-bento-card.featured-hub {
    grid-column: span 1;
  }
}

.dest-bento-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out), filter 0.4s ease;
  filter: brightness(0.7) contrast(1.05);
}

.dest-bento-card:hover {
  transform: translateY(-6px);
  border-color: var(--emirates-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.1);
}

.dest-bento-card:hover .dest-bento-img {
  transform: scale(1.05);
  filter: brightness(0.8) contrast(1.1);
}

.dest-bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 8, 12, 0.95) 0%, rgba(6, 8, 12, 0.4) 60%, transparent 100%);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 8px;
}

.dest-bento-badge {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--emirates-gold);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 6px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

.dest-bento-badge.gold-glow {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--emirates-gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.dest-bento-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 4px 0 0 0;
}

.featured-hub .dest-bento-title {
  font-size: 32px;
}

.dest-bento-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
  max-width: 90%;
}

.dest-bento-link {
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--emirates-gold);
  margin-top: 8px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.dest-bento-card:hover .dest-bento-link {
  color: #fff;
}

/* ── Interactive Booking Modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(4, 5, 8, 0.85);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-out);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  width: 90%;
  max-width: 640px;
  padding: 40px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
  position: relative;
  transform: scale(0.92);
  transition: transform 0.4s var(--ease-out);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: var(--emirates-red);
  color: #fff;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-input, .form-select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-input:focus, .form-select:focus {
  border-color: var(--emirates-gold);
}

/* ── Footer ── */
.footer {
  background: #030406;
  border-top: 1px solid var(--border-glass);
  padding: 80px 7vw 40px 7vw;
  color: var(--text-dim);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 4px;
}

.footer-logo-flag {
  height: 64px;
  width: auto;
  display: block;
  border-radius: 4px;
  filter: drop-shadow(0 4px 18px rgba(215, 26, 33, 0.6));
}

.footer-brand-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--emirates-gold);
  letter-spacing: 0.22em;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.25);
}

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
  max-width: 32ch;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-main);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--emirates-gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 32px;
  font-size: 13px;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .navbar { padding: 16px 24px; }
  .nav-links { display: none; }
  .manifesto-grid { grid-template-columns: 1fr; }
  .cabin-card { grid-template-columns: 1fr; }
  .cabin-info { padding: 32px; }
  .fleet-display { grid-template-columns: 1fr; padding: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 80px 20px; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .hud-telemetry { display: none; }
}

/* ── Modern Floating Scrambled Layout ── */
.floating-section {
  position: relative;
  overflow: hidden;
  padding: 100px 7vw;
  background: radial-gradient(circle at 50% 30%, rgba(215, 26, 33, 0.05) 0%, transparent 70%);
}

.scrambled-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  position: relative;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .scrambled-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.scramble-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out), border-color 0.4s ease, opacity 0.8s var(--ease-out);
  will-change: transform, opacity;
}

.scramble-card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 30px 70px rgba(212, 175, 55, 0.25);
}

/* Asymmetric Staggering */
.offset-top {
  margin-top: 70px;
}

.offset-top-lg {
  margin-top: 120px;
}

@media (max-width: 900px) {
  .offset-top, .offset-top-lg {
    margin-top: 0;
  }
}

/* Scroll-Triggered Reveal Transformations */
.reveal-on-scroll {
  opacity: 0;
}

.reveal-on-scroll.float-left {
  transform: translateX(-90px) rotate(-4deg);
}

.reveal-on-scroll.float-right {
  transform: translateX(90px) rotate(4deg);
}

.reveal-on-scroll.visible {
  opacity: 1;
}

.reveal-on-scroll.visible.tilt-left {
  transform: translateX(0) rotate(-2deg);
}

.reveal-on-scroll.visible.tilt-right {
  transform: translateX(0) rotate(2deg);
}

.scramble-media {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

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

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

.scramble-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 14px;
  background: rgba(8, 12, 20, 0.85);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--emirates-gold);
  backdrop-filter: blur(10px);
}

.scramble-body {
  padding: 28px 32px;
}

.scramble-chapter {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--emirates-gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.scramble-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
  line-height: 1.25;
}

/* ── In-Page Quick Flight Search Bar ── */
.quick-search-section {
  padding: 0 0 48px 0;
  position: relative;
  z-index: 20;
  background: transparent;
}

.search-bar-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 16px;
  background: rgba(12, 18, 28, 0.85);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(24px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.15);
  align-items: end;
}

@media (max-width: 1024px) {
  .search-bar-wrap {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .search-bar-wrap {
    grid-template-columns: 1fr;
  }
}

.search-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.search-lbl {
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--emirates-gold);
  text-transform: uppercase;
}

/* ── Custom Select Component styling ── */
.custom-select {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  background-color: rgba(14, 20, 32, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 12px;
  padding: 0 48px 0 18px;
  height: 52px !important;
  box-sizing: border-box !important;
  display: flex !important;
  align-items: center !important;
  color: #f7f9fc;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  position: relative;
  user-select: none;
}

.custom-select-trigger::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  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='%23d4af37' stroke-width='2.5' 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: center;
  background-size: contain;
  transition: transform 0.3s ease;
}

/* Custom Date Picker Component styling */
.custom-date-picker {
  position: relative;
  width: 100%;
}

.custom-date-trigger {
  background-color: rgba(14, 20, 32, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 12px;
  padding: 0 48px 0 18px;
  height: 52px !important;
  box-sizing: border-box !important;
  display: flex !important;
  align-items: center !important;
  color: #f7f9fc;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  position: relative;
  user-select: none;
}

.custom-date-trigger::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  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='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: opacity 0.3s ease;
}

.custom-date-picker.active .custom-date-trigger {
  border-color: var(--emirates-gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
}

.custom-calendar-popup {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 320px;
  background-color: rgba(12, 18, 29, 0.98);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.15);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s var(--ease-out);
  padding: 16px;
  backdrop-filter: blur(24px);
  box-sizing: border-box;
}

.custom-date-picker.active .custom-calendar-popup {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.calendar-month-year {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--emirates-gold);
}

.cal-btn {
  background: transparent;
  border: 1px solid var(--border-glass);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.cal-btn:hover {
  border-color: var(--emirates-gold);
  background: rgba(212, 175, 55, 0.15);
  color: var(--emirates-gold);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 8px;
}

.calendar-weekdays span {
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 700;
  color: var(--emirates-gold);
  opacity: 0.8;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(247, 249, 252, 0.85);
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.25s ease;
}

.calendar-day:hover {
  background: rgba(212, 175, 55, 0.12);
  color: var(--emirates-gold);
}

.calendar-day.empty {
  cursor: default;
  pointer-events: none;
}

.calendar-day.selected {
  background: var(--emirates-red) !important;
  color: #ffffff !important;
  font-weight: 700;
  box-shadow: 0 0 12px rgba(215, 26, 33, 0.6);
}

.calendar-day.prev-month-day, .calendar-day.next-month-day {
  color: rgba(247, 249, 252, 0.35);
}

.custom-select.active .custom-select-trigger {
  border-color: var(--emirates-gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
}

.custom-select.active .custom-select-trigger::after {
  transform: translateY(-50%) rotate(180deg);
}

.custom-select-options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background-color: rgba(12, 18, 29, 0.98);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.15);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s var(--ease-out);
  max-height: 260px;
  overflow-y: auto;
  backdrop-filter: blur(24px);
}

.custom-select.active .custom-select-options {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.custom-option {
  padding: 12px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(247, 249, 252, 0.85);
  cursor: pointer;
  transition: all 0.25s ease;
  border-left: 3px solid transparent;
}

.custom-option:hover {
  background: rgba(212, 175, 55, 0.12);
  color: var(--emirates-gold);
  border-left-color: var(--emirates-gold);
  padding-left: 22px;
}

.custom-option.selected {
  background: rgba(215, 26, 33, 0.15);
  color: #ffffff;
  border-left-color: var(--emirates-red);
}

/* ── Custom Legacy Select Rules ── */

/* ── Custom Luxury Dropdown & Input Styling System ── */
select, .search-select, .form-select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-color: rgba(14, 20, 32, 0.95) !important;
  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='%23d4af37' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 18px center !important;
  background-size: 16px 16px !important;
  padding: 14px 48px 14px 18px !important;
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
  border-radius: 12px !important;
  color: #f7f9fc !important;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
  outline: none !important;
  cursor: pointer !important;
  backdrop-filter: blur(16px) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.08) !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease !important;
}

select:hover, .search-select:hover, .form-select:hover {
  border-color: var(--emirates-gold) !important;
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.25) !important;
}

select:focus, .search-select:focus, .form-select:focus {
  border-color: var(--emirates-gold-light) !important;
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.15) !important;
}

select option, .search-select option, .form-select option {
  background-color: #0c121d !important;
  color: #ffffff !important;
  padding: 14px 18px !important;
  font-size: 14px !important;
}

/* Custom Date Inputs */
input[type="date"], .search-input, .form-input {
  appearance: none !important;
  -webkit-appearance: none !important;
  background-color: rgba(14, 20, 32, 0.95) !important;
  color-scheme: dark !important;
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
  border-radius: 12px !important;
  padding: 14px 18px !important;
  color: #f7f9fc !important;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  outline: none !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4) !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.85) sepia(1) saturate(5) hue-rotate(5deg);
  cursor: pointer;
  padding: 4px;
}

input[type="date"]:hover, .search-input:hover, .form-input:hover {
  border-color: var(--emirates-gold) !important;
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.25) !important;
}

input[type="date"]:focus, .search-input:focus, .form-input:focus {
  border-color: var(--emirates-gold-light) !important;
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.4) !important;
}

.btn-search-flights {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--emirates-red), #9e0e14);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 28px;
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(215, 26, 33, 0.5);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.btn-search-flights:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(215, 26, 33, 0.8);
}

/* ── Interactive Pricing Matrix Section ── */
.pricing-section {
  position: relative;
}

.route-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.route-tab {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: 30px;
  padding: 12px 24px;
  color: var(--text-muted);
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.route-tab.active, .route-tab:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--emirates-gold);
  color: var(--emirates-gold);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.route-summary-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: rgba(8, 12, 20, 0.7);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 20px 32px;
  margin-bottom: 48px;
  backdrop-filter: blur(12px);
}

@media (max-width: 900px) {
  .route-summary-bar {
    grid-template-columns: 1fr 1fr;
  }
}

.route-sum-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sum-lbl {
  font-family: var(--font-serif);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--emirates-gold);
  text-transform: uppercase;
}

.sum-val {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
}

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

@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  backdrop-filter: blur(16px);
  transition: transform 0.4s var(--ease-out), border-color 0.4s ease, box-shadow 0.4s ease;
}

.price-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.price-card.featured-gold {
  border-color: var(--emirates-gold);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.08) 0%, rgba(12, 18, 28, 0.9) 100%);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.25);
}

.price-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: linear-gradient(135deg, var(--emirates-gold), #b89228);
  color: #000;
  font-family: var(--font-serif);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  padding: 4px 12px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.4);
}

.price-header {
  margin-bottom: 24px;
}

.price-tier {
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--emirates-gold);
  display: block;
  margin-bottom: 8px;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1;
}

.currency {
  font-size: 24px;
  color: var(--emirates-gold);
  margin-right: 2px;
}

.per-way {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 4px;
}

.price-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-grow: 1;
}

.price-perks li {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.perk-check {
  color: var(--emirates-gold);
  font-weight: 700;
}

.btn-price-action {
  display: block;
  text-align: center;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  color: var(--text-main);
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: all 0.3s ease;
}

.price-card:hover .btn-price-action, .featured-gold .btn-price-action {
  background: var(--emirates-red);
  border-color: var(--emirates-red);
  color: #fff;
  box-shadow: 0 4px 20px rgba(215, 26, 33, 0.5);
}

/* ── Live Global Route Radar ── */
.radar-card {
  background: rgba(8, 12, 20, 0.85);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 36px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.radar-hud-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.hud-status-dot {
  width: 10px;
  height: 10px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 12px #10b981;
  animation: pulseDot 1.5s infinite alternate;
}

@keyframes pulseDot {
  0% { opacity: 0.4; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1.2); }
}

.hud-status-text {
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--emirates-gold);
}

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

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

.radar-city-node {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all 0.3s ease;
}

.radar-city-node.active, .radar-city-node:hover {
  background: rgba(215, 26, 33, 0.12);
  border-color: var(--emirates-red);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(215, 26, 33, 0.25);
}

.city-code {
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: var(--emirates-gold);
}

.city-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
}

.city-meta {
  font-size: 13px;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════
   SCROLL-REVEAL ANIMATIONS
   ══════════════════════════════════════════ */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

.reveal-on-scroll.is-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.35s; }
.reveal-delay-4 { transition-delay: 0.5s; }

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
footer {
  background: #040609;
  border-top: 1px solid rgba(212,175,55,0.12);
  padding: 80px 7vw 40px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,175,55,0.35), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-logo-flag {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 4px 16px rgba(215,26,33,0.4));
  margin-bottom: 20px;
  display: block;
}

.footer-desc {
  font-size: 14px;
  color: rgba(247,249,252,0.5);
  line-height: 1.7;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(247,249,252,0.5);
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-btn:hover {
  border-color: rgba(212,175,55,0.4);
  color: var(--emirates-gold);
  background: rgba(212,175,55,0.06);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--emirates-gold);
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-link {
  font-size: 14px;
  color: rgba(247,249,252,0.5);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-link:hover {
  color: var(--text-main);
}

.footer-link::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--emirates-gold);
  transition: width 0.3s ease;
  display: inline-block;
}

.footer-link:hover::before {
  width: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 12px;
  color: rgba(247,249,252,0.3);
  letter-spacing: 0.05em;
}


/* ==========================================================================
   ENHANCEMENT ADDITIONS — Animations, New Sections, Modern Layout
   ========================================================================== */

/* ── Grain Texture Overlay ── */
.grain-overlay {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  animation: grainShift 0.18s steps(1) infinite;
}

@keyframes grainShift {
  0%   { background-position: 0 0; }
  16%  { background-position: -5% -10%; }
  33%  { background-position: 7% -25%; }
  50%  { background-position: -15% 10%; }
  66%  { background-position: 15% 5%; }
  83%  { background-position: 3% 35%; }
  100% { background-position: 0 0; }
}

/* ── Perspective Grid Overlay ── */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 30%, black 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 30%, black 100%);
}

/* ── Floating Particles ── */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 7;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--emirates-gold);
  opacity: 0;
  animation: particleFloat linear infinite;
}

.particle:nth-child(1)  { left: 10%; animation-duration: 12s; animation-delay: 0s;    width: 3px; height: 3px; }
.particle:nth-child(2)  { left: 20%; animation-duration: 18s; animation-delay: 1.5s;  }
.particle:nth-child(3)  { left: 35%; animation-duration: 14s; animation-delay: 3s;    width: 1px; height: 1px; }
.particle:nth-child(4)  { left: 50%; animation-duration: 20s; animation-delay: 0.5s;  }
.particle:nth-child(5)  { left: 65%; animation-duration: 16s; animation-delay: 2s;    width: 3px; height: 3px; }
.particle:nth-child(6)  { left: 75%; animation-duration: 11s; animation-delay: 4s;    }
.particle:nth-child(7)  { left: 88%; animation-duration: 22s; animation-delay: 1s;    width: 1px; height: 1px; }
.particle:nth-child(8)  { left: 5%;  animation-duration: 15s; animation-delay: 5s;    }
.particle:nth-child(9)  { left: 45%; animation-duration: 13s; animation-delay: 2.5s;  width: 3px; height: 3px; }
.particle:nth-child(10) { left: 58%; animation-duration: 19s; animation-delay: 0.8s;  }
.particle:nth-child(11) { left: 80%; animation-duration: 17s; animation-delay: 3.5s;  }
.particle:nth-child(12) { left: 92%; animation-duration: 21s; animation-delay: 6s;    }

@keyframes particleFloat {
  0%   { transform: translateY(110vh) scale(0); opacity: 0; }
  5%   { opacity: 0.85; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ── Section Progress Indicator ── */
.section-progress {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: auto;
}

.sp-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  position: relative;
}

.sp-dot::after {
  content: attr(title);
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(8, 12, 20, 0.92);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 4px 10px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--emirates-gold);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.sp-dot:hover::after {
  opacity: 1;
}

.sp-dot:hover {
  background: rgba(212, 175, 55, 0.5);
  transform: scale(1.4);
}

.sp-dot.active {
  background: var(--emirates-gold);
  box-shadow: 0 0 12px var(--emirates-gold-glow);
  transform: scale(1.5);
}

@media (max-width: 768px) { .section-progress { display: none; } }

/* ── Custom Cursor Trail ── */
#cursor-trail-container {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  overflow: hidden;
}

.cursor-dot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: cursorDotFade 0.7s ease forwards;
}

@keyframes cursorDotFade {
  0%   { opacity: 0.75; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(0.1); }
}

/* ── Awards Ticker ── */
.awards-ticker-section {
  background: linear-gradient(to right, rgba(5,7,11,0), rgba(212,175,55,0.06) 30%, rgba(212,175,55,0.06) 70%, rgba(5,7,11,0));
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding: 14px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}

.awards-ticker-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--emirates-red-bright);
  white-space: nowrap;
  padding: 0 28px;
  flex-shrink: 0;
  z-index: 2;
  position: relative;
}

.awards-ticker-label::after {
  content: '';
  position: absolute;
  right: 0; top: -20px; bottom: -20px;
  width: 50px;
  background: linear-gradient(to right, transparent, var(--bg-dark));
}

.awards-ticker-track {
  flex: 1;
  overflow: hidden;
}

.awards-ticker-inner {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: awardsScroll 50s linear infinite;
  will-change: transform;
}

.awards-ticker-inner:hover {
  animation-play-state: paused;
}

.award-item {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 500;
  color: var(--emirates-gold-light);
  letter-spacing: 0.04em;
  padding: 0 8px;
}

.award-sep {
  color: var(--emirates-red);
  font-size: 18px;
  padding: 0 6px;
  opacity: 0.5;
}

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

/* ── Amenities Grid ── */
.amenities-section {
  background:
    radial-gradient(ellipse 50% 60% at 50% 0%, rgba(212, 175, 55, 0.05) 0%, transparent 70%),
    linear-gradient(to bottom, var(--bg-dark), var(--bg-deep));
  position: relative;
  overflow: hidden;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 16px;
}

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

.amenity-card {
  background: linear-gradient(135deg, rgba(18, 26, 42, 0.7) 0%, rgba(10, 15, 24, 0.85) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  backdrop-filter: blur(20px);
  transition: all 0.45s var(--ease-out);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.amenity-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.amenity-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-10px);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.7), 0 0 30px rgba(212, 175, 55, 0.1);
}

.amenity-card:hover::after {
  opacity: 1;
}

.amenity-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px auto;
  color: var(--emirates-gold);
  transition: transform 0.45s var(--ease-out), color 0.3s ease, filter 0.3s ease;
  position: relative;
  z-index: 1;
}

.amenity-card:hover .amenity-icon {
  transform: scale(1.18) translateY(-5px);
  color: var(--emirates-gold-light);
  filter: drop-shadow(0 4px 16px rgba(212, 175, 55, 0.4));
}

.amenity-icon svg { width: 100%; height: 100%; }

.amenity-name {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}

.amenity-desc {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

/* ── Live Departure Board ── */
.departure-section {
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(212, 175, 55, 0.04) 0%, transparent 70%),
    var(--bg-deep);
}

.departure-board {
  background: rgba(4, 6, 10, 0.92);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.85),
    0 0 50px rgba(212, 175, 55, 0.05),
    inset 0 1px 1px rgba(255, 255, 255, 0.04);
}

.dep-board-header {
  display: grid;
  grid-template-columns: 120px 1fr 140px 120px 100px 1fr;
  gap: 16px;
  padding: 14px 28px;
  background: rgba(212, 175, 55, 0.07);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--emirates-gold);
  text-transform: uppercase;
}

.dep-row {
  display: grid;
  grid-template-columns: 120px 1fr 140px 120px 100px 1fr;
  gap: 16px;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  align-items: center;
  transition: background 0.3s ease;
  position: relative;
}

.dep-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  transition: background 0.3s ease;
}

.dep-row[data-status="boarding"]::before   { background: var(--emirates-gold); }
.dep-row[data-status="final-call"]::before { background: var(--emirates-red-bright); }
.dep-row[data-status="on-time"]::before    { background: #00c875; }

.dep-row:last-child { border-bottom: none; }
.dep-row:hover { background: rgba(212, 175, 55, 0.03); }

.dep-flight {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

.dep-num { color: var(--emirates-gold); }

.dep-dest {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-main);
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dep-code {
  font-size: 10px;
  font-weight: 700;
  color: var(--emirates-gold);
  letter-spacing: 0.18em;
  opacity: 0.65;
}

.dep-status {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 6px 10px;
  border-radius: 20px;
  text-align: center;
  text-transform: uppercase;
}

.dep-status.boarding {
  background: rgba(212, 175, 55, 0.12);
  color: var(--emirates-gold);
  border: 1px solid rgba(212, 175, 55, 0.28);
  animation: depPulse 2s ease-in-out infinite;
}

.dep-status.on-time {
  background: rgba(0, 200, 117, 0.08);
  color: #00c875;
  border: 1px solid rgba(0, 200, 117, 0.22);
}

.dep-status.final-call {
  background: rgba(200, 16, 46, 0.12);
  color: var(--emirates-red-bright);
  border: 1px solid rgba(200, 16, 46, 0.28);
  animation: depPulse 1.2s ease-in-out infinite;
}

@keyframes depPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

.dep-time {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

.dep-gate {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
}

.dep-gnum { color: var(--emirates-gold); }

.dep-cabin {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .dep-board-header,
  .dep-row { grid-template-columns: 100px 1fr 110px 90px; }
  .dep-board-header span:nth-child(5),
  .dep-board-header span:last-child,
  .dep-row .dep-gate,
  .dep-row .dep-cabin { display: none; }
}
@media (max-width: 600px) {
  .dep-board-header,
  .dep-row { grid-template-columns: 90px 1fr 100px; padding: 14px 16px; gap: 8px; }
  .dep-board-header span:nth-child(4),
  .dep-row .dep-time { display: none; }
}

/* ── Testimonials Marquee ── */
.testimonials-section {
  background:
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(200, 16, 46, 0.03) 0%, transparent 60%),
    var(--bg-dark);
  overflow: hidden;
}

.testimonials-marquee-wrapper {
  overflow: hidden;
  margin: 0 -7vw;
  padding: 40px 0 80px;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.testimonials-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: testimonialsScroll 55s linear infinite;
  will-change: transform;
}

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

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

.testimonial-card {
  background: linear-gradient(135deg, rgba(18, 26, 42, 0.75) 0%, rgba(10, 15, 24, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 32px 36px;
  width: 390px;
  flex-shrink: 0;
  backdrop-filter: blur(20px);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.05);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -10px; left: 20px;
  font-family: var(--font-serif);
  font-size: 110px;
  color: rgba(212, 175, 55, 0.07);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  border-color: rgba(212, 175, 55, 0.22);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 20px rgba(212,175,55,0.07);
}

.test-stars {
  font-size: 16px;
  color: var(--emirates-gold);
  margin-bottom: 14px;
  letter-spacing: 3px;
}

.test-quote {
  font-family: var(--font-serif);
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(247, 249, 252, 0.88);
  font-style: italic;
  margin-bottom: 22px;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.test-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emirates-red), rgba(200,16,46,0.4));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 700; color: #fff;
  flex-shrink: 0;
  border: 1px solid rgba(200,16,46,0.35);
}

.test-name {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 600;
  color: var(--text-main); margin-bottom: 2px;
}

.test-route {
  font-family: var(--font-body);
  font-size: 11px; color: var(--emirates-gold); letter-spacing: 0.05em;
}

/* ── Skywards Loyalty CTA Section ── */
.skywards-cta-section {
  background:
    radial-gradient(ellipse 60% 80% at 10% 50%, rgba(200, 16, 46, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(212, 175, 55, 0.06) 0%, transparent 60%),
    linear-gradient(to bottom, #040508, #05070b);
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  padding: 100px 7vw;
  position: relative;
  overflow: hidden;
}

.skywards-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .skywards-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .skywards-right { align-items: center; }
  .skywards-sub { margin: 0 auto; }
}

.skywards-eyebrow {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.38em;
  color: var(--emirates-red-bright);
  display: block;
  margin-bottom: 18px;
}

.skywards-heading {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.skywards-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 48ch;
}

.skywards-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.skywards-miles-display {
  display: flex;
  justify-content: center;
}

.miles-orb {
  position: relative;
  width: 230px; height: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.miles-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.22);
  animation: orbRotate 8s linear infinite;
}

.miles-ring::before {
  content: '';
  position: absolute;
  top: -4px; left: 50%;
  transform: translateX(-50%);
  width: 8px; height: 8px;
  background: var(--emirates-gold);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--emirates-gold), 0 0 6px var(--emirates-gold);
}

.miles-ring.ring-2 {
  inset: 18px;
  border-color: rgba(200, 16, 46, 0.18);
  animation: orbRotate 13s linear infinite reverse;
  border-style: dashed;
}

.miles-ring.ring-2::before {
  background: var(--emirates-red);
  box-shadow: 0 0 12px var(--emirates-red);
}

@keyframes orbRotate {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.miles-count {
  font-family: var(--font-serif);
  font-size: 46px; font-weight: 700;
  color: var(--emirates-gold);
  text-shadow: 0 0 36px rgba(212, 175, 55, 0.45);
  line-height: 1;
  letter-spacing: -0.02em;
  z-index: 1;
  font-variant-numeric: tabular-nums;
}

.miles-label {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--emirates-gold);
  opacity: 0.65;
  z-index: 1;
}

/* ── Fleet HUD Scanning Line ── */
.fleet-hud-container {
  position: relative;
  overflow: hidden;
}

.fleet-hud-container::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.6), transparent);
  opacity: 0;
  animation: hudScanLine 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes hudScanLine {
  0%   { top: 0; opacity: 0; }
  5%   { opacity: 0.5; }
  95%  { opacity: 0.25; }
  100% { top: 100%; opacity: 0; }
}

/* ── Enhanced Scramble Cards (3D transform-style) ── */
.scramble-card {
  transform-style: preserve-3d;
}

/* ── Enhanced Reveal Transitions ── */
.reveal-on-scroll {
  opacity: 0;
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}

.reveal-on-scroll.visible {
  opacity: 1;
  transform: none !important;
}

.amenity-card.reveal-on-scroll,
.section-header.reveal-on-scroll {
  transform: translateY(44px);
}

.amenity-card.reveal-on-scroll:nth-child(2) { transition-delay: 0.08s; }
.amenity-card.reveal-on-scroll:nth-child(3) { transition-delay: 0.16s; }
.amenity-card.reveal-on-scroll:nth-child(4) { transition-delay: 0.24s; }
.amenity-card.reveal-on-scroll:nth-child(5) { transition-delay: 0.32s; }
.amenity-card.reveal-on-scroll:nth-child(6) { transition-delay: 0.40s; }
.amenity-card.reveal-on-scroll:nth-child(7) { transition-delay: 0.48s; }
.amenity-card.reveal-on-scroll:nth-child(8) { transition-delay: 0.56s; }

/* ── Enhanced btn-primary: Shimmer ── */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.16), transparent);
  transform: skewX(-20deg);
}

.btn-primary:hover::after {
  animation: shimmerBtn 0.65s ease forwards;
}

@keyframes shimmerBtn {
  0%   { left: -100%; }
  100% { left: 150%; }
}

/* ── Gradient Mesh Backgrounds ── */
.manifesto-section {
  background:
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(212, 175, 55, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(200, 16, 46, 0.04) 0%, transparent 60%),
    linear-gradient(to bottom, #05070b 0%, #090e18 100%);
}

/* ── Enhanced Glassmorphism on Scramble Cards ── */
.scramble-card {
  background: linear-gradient(135deg, rgba(16, 24, 38, 0.72) 0%, rgba(10, 15, 24, 0.88) 100%);
  border: 1px solid rgba(255, 255, 255, 0.065);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.65),
    inset 0 1px 1px rgba(255, 255, 255, 0.06),
    inset 0 -1px 1px rgba(0, 0, 0, 0.25);
}

.scramble-card:hover {
  border-color: rgba(212, 175, 55, 0.28);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.7),
    0 0 30px rgba(212, 175, 55, 0.1),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

/* ── Enhanced Navbar Glassmorphism ── */
.navbar.scrolled {
  background: rgba(4, 5, 8, 0.75);
  backdrop-filter: blur(36px) saturate(1.8);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.04);
}

/* ── Enhanced Stat Card hover ── */
.stat-card:hover {
  border-color: rgba(212, 175, 55, 0.28);
  transform: translateY(-9px);
  box-shadow:
    0 26px 64px rgba(0, 0, 0, 0.65),
    0 0 40px rgba(212, 175, 55, 0.1),
    inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

/* ── Fleet Btn Enhanced Hover ── */
.fleet-btn:hover {
  background: rgba(212, 175, 55, 0.06);
  border-color: rgba(212, 175, 55, 0.45);
  color: var(--emirates-gold-light);
  transform: translateY(-2px);
}

/* ── Destination Bento Card Enhanced ── */
.dest-bento-card:hover {
  transform: translateY(-8px) scale(1.01);
}

/* ── Modal Animation Enhancement ── */
.modal-overlay.active .modal-card {
  animation: modalEntrance 0.45s var(--ease-out) forwards;
}

@keyframes modalEntrance {
  from { transform: scale(0.88) translateY(24px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}

/* ── Loader Pulse Animation ── */
.loader-emblem {
  animation: loaderPulse 2.5s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}

/* ── Nav Active State ── */
.nav-link.active {
  color: var(--emirates-gold-light);
}

.nav-link.active::after {
  width: 100%;
}

/* ── Scroll cue auto-fade ── */
#scroll-cue.hidden {
  opacity: 0;
  pointer-events: none;
}

/* ── Caption animation on visible ── */
.caption.caption-in h1,
.caption.caption-in h2 {
  animation: captionReveal 0.8s var(--ease-out) both;
}

.caption.caption-in p {
  animation: captionReveal 0.8s var(--ease-out) 0.18s both;
}

.caption.caption-in .badge {
  animation: captionReveal 0.6s var(--ease-out) both;
}

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

/* ── Price card shimmer border (featured) ── */
.price-card.featured-gold {
  background: linear-gradient(135deg, rgba(20, 16, 6, 0.95) 0%, rgba(14, 20, 32, 0.95) 100%);
  border: 1px solid rgba(212, 175, 55, 0.5);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.12),
    0 30px 70px rgba(0, 0, 0, 0.8),
    0 0 50px rgba(212, 175, 55, 0.08);
}

/* ── Footer wave separator ── */
.footer::before {
  content: '';
  display: block;
  height: 60px;
  background: linear-gradient(to bottom, var(--bg-dark), #030406);
  margin: 0;
}

/* ==========================================================================
   FLEET SECTION — Full-Bleed Cinematic Redesign
   ========================================================================== */

/* Enhanced Selector Buttons */
.fleet-selector {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.fleet-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 16px 28px;
  background: rgba(14, 20, 32, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.fleet-btn::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--emirates-gold), var(--emirates-red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}

.fleet-btn:hover {
  border-color: rgba(212, 175, 55, 0.3);
  background: rgba(20, 28, 44, 0.8);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.fleet-btn:hover::before,
.fleet-btn.active::before {
  transform: scaleX(1);
}

.fleet-btn.active {
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.07);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.08), 0 12px 40px rgba(0, 0, 0, 0.5);
}

.fleet-btn-label {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.02em;
  line-height: 1;
}

.fleet-btn.active .fleet-btn-label {
  color: var(--emirates-gold-light);
}

.fleet-btn-sub {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fleet-btn.active .fleet-btn-sub {
  color: rgba(212, 175, 55, 0.65);
}

/* Full-Bleed Aircraft Stage */
.fleet-stage {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #060a12;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(212, 175, 55, 0.1),
    inset 0 1px 1px rgba(255, 255, 255, 0.04);
  margin-bottom: 0;
}

/* Aircraft Image — Full Width */
.fleet-stage-img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 40%;
  transition: transform 0.8s var(--ease-out), filter 0.5s ease;
  filter: brightness(0.88) saturate(1.1);
}

.fleet-stage:hover .fleet-stage-img {
  transform: scale(1.02);
  filter: brightness(0.95) saturate(1.2);
}

@media (max-width: 768px) {
  .fleet-stage-img { height: 300px; object-position: center; }
}

/* Gradient Overlay */
.fleet-stage-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(4, 6, 10, 0.98) 0%, rgba(4, 6, 10, 0.5) 35%, transparent 65%),
    linear-gradient(to right, rgba(4, 6, 10, 0.6) 0%, transparent 40%);
  pointer-events: none;
}

/* Overlaid Info Block (bottom-left) */
.fleet-stage-info {
  position: absolute;
  bottom: 40px;
  left: 44px;
  z-index: 10;
  max-width: 520px;
}

@media (max-width: 640px) {
  .fleet-stage-info { left: 20px; bottom: 24px; max-width: calc(100% - 40px); }
}

.fleet-stage-tag {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--emirates-gold);
  opacity: 0.75;
  display: block;
  margin-bottom: 10px;
}

.fleet-stage-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.fleet-stage-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(247, 249, 252, 0.72);
  line-height: 1.6;
  max-width: 42ch;
}

/* Live Fleet Badge (top-right) */
.fleet-live-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(4, 6, 10, 0.75);
  border: 1px solid rgba(0, 200, 117, 0.3);
  border-radius: 30px;
  padding: 7px 14px;
  backdrop-filter: blur(10px);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #00c875;
  text-transform: uppercase;
}

.fleet-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00c875;
  box-shadow: 0 0 8px #00c875;
  animation: liveDotPulse 1.8s ease-in-out infinite;
}

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

/* Corner HUD Brackets on Stage */
.fleet-corner-bracket {
  position: absolute;
  z-index: 11;
  width: 26px;
  height: 26px;
  pointer-events: none;
}

.fleet-corner-bracket::before,
.fleet-corner-bracket::after {
  content: '';
  position: absolute;
  background: var(--emirates-gold);
  opacity: 0.7;
}

.fleet-corner-bracket::before { width: 100%; height: 2px; }
.fleet-corner-bracket::after  { width: 2px; height: 100%; }

.fc-tl { top: 14px; left: 14px; }
.fc-tl::before { top: 0; left: 0; }
.fc-tl::after  { top: 0; left: 0; }

.fc-tr { top: 14px; right: 14px; transform: scaleX(-1); }
.fc-tr::before { top: 0; left: 0; }
.fc-tr::after  { top: 0; left: 0; }

.fc-bl { bottom: 14px; left: 14px; transform: scaleY(-1); }
.fc-bl::before { top: 0; left: 0; }
.fc-bl::after  { top: 0; left: 0; }

.fc-br { bottom: 14px; right: 14px; transform: scale(-1); }
.fc-br::before { top: 0; left: 0; }
.fc-br::after  { top: 0; left: 0; }

/* Scan Line */
.fleet-scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.5), transparent);
  opacity: 0;
  pointer-events: none;
  animation: stageScanLine 6s ease-in-out 2s infinite;
  z-index: 12;
}

@keyframes stageScanLine {
  0%   { top: 0%; opacity: 0; }
  4%   { opacity: 0.6; }
  96%  { opacity: 0.3; }
  100% { top: 100%; opacity: 0; }
}

/* Stats Strip Below Stage */
.fleet-stats-strip {
  display: flex;
  align-items: stretch;
  background: rgba(6, 9, 16, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-top: none;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
}

.fleet-stat-block {
  flex: 1;
  padding: 32px 36px;
  position: relative;
  transition: background 0.3s ease;
}

.fleet-stat-block:hover {
  background: rgba(212, 175, 55, 0.04);
}

.fleet-stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 16px 0;
  flex-shrink: 0;
}

.fsb-label {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--emirates-gold);
  opacity: 0.65;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.fsb-value-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 16px;
}

.fsb-value {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  transition: color 0.4s ease;
}

.fleet-stat-block:hover .fsb-value {
  color: var(--emirates-gold-light);
}

.fsb-unit {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.fsb-bar {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 2px;
  overflow: hidden;
}

.fsb-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(to right, var(--emirates-gold), rgba(212, 175, 55, 0.5));
  transition: width 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.fsb-bar-fill.fsb-fill-red {
  background: linear-gradient(to right, var(--emirates-red-bright), rgba(200, 16, 46, 0.5));
  box-shadow: 0 0 8px rgba(200, 16, 46, 0.4);
}

@media (max-width: 768px) {
  .fleet-stats-strip {
    flex-wrap: wrap;
  }
  .fleet-stat-block {
    flex: 1 1 45%;
    padding: 24px 20px;
  }
  .fleet-stat-divider {
    display: none;
  }
  .fleet-stat-block:nth-child(odd) {
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .fleet-stat-block:nth-child(even) {
    border-left: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
}

@media (max-width: 480px) {
  .fleet-stat-block { flex: 1 1 100%; }
  .fleet-stat-block:nth-child(even) { border-left: none; }
}
