/* ==========================================================================
   ENTOURAGE TRANSPORTS — BESPOKE LUXURY DESIGN SYSTEM
   Master Stylesheet: Floating Pill Navbar, Cinematic Hero, Unified Buttons,
   Frosted Glassmorphism, Asymmetric Grids & Dedicated Mobile Architecture
   ========================================================================== */

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

:root {
  /* Surfaces */
  --bg-body: #FAF8F5;
  --bg-surface: #FFFFFF;
  --bg-subtle: #F2EFE9;
  --bg-warm-tint: #FCF8F2;
  --bg-dark: #07090E;
  --bg-dark-surface: #0E131F;
  --bg-dark-card: #121826;
  --bg-glass-dark: rgba(7, 9, 14, 0.88);
  --bg-navbar-floating: rgba(7, 9, 14, 0.92);

  /* High-Contrast Typography */
  --text-primary: #07090E;
  --text-secondary: #2C3545;
  --text-muted: #5E6D82;
  --text-light: #8E9BAE;
  --text-on-dark: #F8FAFC;
  --text-on-dark-muted: #94A3B8;

  /* Luxury Champagne Gold & Metallic Accents */
  --gold-primary: #967038;
  --gold-hover: #7E5D2E;
  --gold-light: #F7EFE3;
  --gold-bright: #D4AF37;
  --gold-border: rgba(150, 112, 56, 0.26);
  --gold-glow: rgba(212, 175, 55, 0.2);

  /* Deep Brand Obsidian */
  --brand-black: #07090E;
  --brand-black-hover: #1E293B;

  /* Floating Shadows */
  --shadow-navbar: 0 16px 40px -6px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.12);
  --shadow-subtle: 0 4px 20px -2px rgba(25, 18, 8, 0.04);
  --shadow-medium: 0 12px 32px -4px rgba(25, 18, 8, 0.06), 0 4px 12px rgba(150, 112, 56, 0.03);
  --shadow-elevated: 0 24px 54px -8px rgba(25, 18, 8, 0.09), 0 8px 24px rgba(150, 112, 56, 0.05);
  --shadow-popular: 0 28px 64px -10px rgba(150, 112, 56, 0.22), 0 6px 20px rgba(150, 112, 56, 0.08);

  /* Typography Pairing */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Radii */
  --radius-xs: 8px;
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-pill: 9999px;
  --max-w: 1240px;

  /* Curves */
  --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: clip;
  max-width: 100%;
  position: relative;
  width: 100%;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s var(--ease-luxury);
}

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

/* Section Containers */
.section-container {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.section-heading-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 24px;
}

.heading-text-block {
  max-width: 580px;
}

.section-main-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-top: 8px;
}

.section-sub-desc {
  font-size: 1.02rem;
  color: var(--text-secondary);
  max-width: 500px;
  line-height: 1.7;
}

/* ---------------- SCROLL-TRIGGERED REVEALS ---------------- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s var(--ease-luxury), transform 0.55s var(--ease-luxury);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.05s; }
.delay-2 { transition-delay: 0.10s; }
.delay-3 { transition-delay: 0.15s; }
.delay-4 { transition-delay: 0.20s; }
.delay-5 { transition-delay: 0.25s; }
.delay-6 { transition-delay: 0.30s; }

/* ==========================================================================
   1. UNIFIED BUTTON SYSTEM
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 12px 22px;
  min-height: 46px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1px solid transparent;
  box-sizing: border-box;
  transition: all 0.25s var(--ease-luxury);
  white-space: nowrap;
  user-select: none;
  line-height: 1;
  text-align: center;
  touch-action: manipulation;
}

.btn i {
  font-size: 0.9em;
  flex-shrink: 0;
}

.btn:active {
  transform: scale(0.98);
}

/* Button Variants */
.btn-gold {
  background: var(--gold-primary);
  color: #FFFFFF;
  border-color: var(--gold-primary);
}

.btn-gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(150, 112, 56, 0.4);
}

.btn-dark {
  background: var(--brand-black);
  color: #FFFFFF;
  border-color: var(--brand-black);
}

.btn-dark:hover {
  background: var(--brand-black-hover);
  border-color: var(--brand-black-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(7, 9, 14, 0.3);
}

.btn-primary {
  background: #FFFFFF;
  color: var(--brand-black);
  border-color: #FFFFFF;
}

.btn-primary:hover {
  background: #F1F5F9;
  border-color: #F1F5F9;
  color: var(--brand-black);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 255, 255, 0.2);
}

.btn-subtle {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-subtle:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Button Scales */
.btn-sm {
  min-height: 38px;
  padding: 8px 16px;
  font-size: 0.8125rem;
}

.btn-lg {
  min-height: 50px;
  padding: 14px 26px;
  font-size: 0.92rem;
}

/* ==========================================================================
   2. SLIM NON-STICKY ANNOUNCEMENT STRIP
   ========================================================================== */
.slim-announcement-strip {
  position: relative;
  z-index: 999;
  background: #05070B;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  color: #CBD5E1;
  width: 100%;
}

.slim-announcement-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slim-announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
}

.slim-badge {
  background: rgba(150, 112, 56, 0.26);
  color: #D4AF37;
  border: 1px solid rgba(212, 175, 55, 0.35);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-xs);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

.badge-short-txt {
  display: none;
}

.strip-mobile-text {
  display: none;
}

.slim-text {
  font-weight: 500;
  color: #E2E8F0;
}

.slim-dot {
  color: var(--gold-bright);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.slim-phone-link {
  color: #FFFFFF;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.slim-phone-link i {
  color: var(--gold-bright);
  font-size: 0.7rem;
}

.slim-phone-link:hover {
  color: var(--gold-bright);
}

/* ==========================================================================
   3. ELEGANT FLOATING PILL NAVBAR
   ========================================================================== */
.site-header {
  position: fixed;
  top: 48px;
  left: 50%;
  transform: translateX(-50%) translateZ(0);
  width: calc(100% - 40px);
  max-width: var(--max-w);
  z-index: 1000;
  background: rgba(7, 9, 14, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-navbar);
  box-sizing: border-box;
}

.site-header.scrolled {
  top: 14px;
}

.header-container {
  padding: 8px 14px 8px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

/* Brand Lockup */
.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-symbol {
  width: 36px;
  height: 36px;
  background: #FFFFFF;
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #07090E;
  font-size: 0.95rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  line-height: 1;
  text-transform: uppercase;
}

.brand-subtitle {
  font-size: 0.60rem;
  font-weight: 800;
  color: var(--gold-bright);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  display: block;
  margin-top: 1px;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.nav-item-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: #E2E8F0;
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}

.nav-item-link:hover {
  color: #FFFFFF;
}

.nav-item-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-bright);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s var(--ease-luxury);
}

.nav-item-link:hover::after {
  transform: scaleX(1);
}

/* Header CTAs */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #E2E8F0;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
}

.header-phone-link:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
}

.header-phone-link i {
  color: var(--gold-bright);
}

.header-actions .btn-gold {
  border-radius: var(--radius-pill);
  min-height: 38px;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 700;
}

/* Mobile Toggle & Menu Drawer */
.mobile-toggle-btn {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #FFFFFF;
  font-size: 1.1rem;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.mobile-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.16);
}

.mobile-menu-drawer {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  background: rgba(7, 9, 14, 0.97);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.6);
  z-index: 1001;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.25s var(--ease-luxury), transform 0.25s var(--ease-luxury);
  pointer-events: none;
}

.mobile-menu-drawer.open {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #F8FAFC;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 16px;
  border-radius: var(--radius-xs);
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-nav-item i {
  color: var(--gold-bright);
  font-size: 0.95rem;
  width: 22px;
  text-align: center;
}

.mobile-nav-item:hover, .mobile-nav-item:active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-bright);
}

/* ---------------- NUMBERED EDITORIAL LABELS ---------------- */
.editorial-number-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 10px;
}

.editorial-number-label::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--gold-primary);
}

.dark-bg .editorial-number-label,
.hero-fullbleed-wrap .editorial-number-label {
  color: var(--gold-bright);
}

.dark-bg .editorial-number-label::before,
.hero-fullbleed-wrap .editorial-number-label::before {
  background: var(--gold-bright);
}

/* ==========================================================================
   4. FULL-BLEED CINEMATIC HERO
   ========================================================================== */
.hero-fullbleed-wrap {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 140px 24px 100px;
  color: #FFFFFF;
  overflow: hidden;
}

/* Background Media Layer */
.hero-bg-media-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg-img-asset {
  width: 100%;
  height: 100%;
  background: url('../images/hero_suv.webp') right 38% / cover no-repeat;
}

/* Targeted Directional Vignette */
.hero-bg-media-canvas::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(
      90deg,
      rgba(7, 9, 14, 0.95) 0%,
      rgba(7, 9, 14, 0.86) 42%,
      rgba(7, 9, 14, 0.25) 70%,
      rgba(7, 9, 14, 0.65) 100%
    ),
    linear-gradient(
      270deg,
      rgba(7, 9, 14, 0.70) 0%,
      rgba(7, 9, 14, 0.38) 35%,
      transparent 65%
    ),
    linear-gradient(
      180deg,
      rgba(7, 9, 14, 0.65) 0%,
      transparent 35%,
      rgba(7, 9, 14, 0.88) 85%,
      var(--bg-body) 100%
    );
}

.hero-fullbleed-container {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding: 0 4px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.22fr 0.78fr;
  gap: 52px;
  align-items: center;
}

.hero-editorial-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ---------------- SMOOTH GLIDING ENTRANCE KEYFRAMES ---------------- */
@keyframes heroGlideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroVaultGlideIn {
  0% {
    opacity: 0;
    transform: translateX(20px) translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

/* Medium-Pace Stagger Sequence */
.hero-anim-badges {
  opacity: 0;
  animation: heroGlideUp 0.72s var(--ease-luxury) 0ms forwards;
}

.hero-anim-title {
  opacity: 0;
  animation: heroGlideUp 0.75s var(--ease-luxury) 190ms forwards;
}

.hero-anim-lead {
  opacity: 0;
  animation: heroGlideUp 0.75s var(--ease-luxury) 330ms forwards;
}

.hero-anim-ctas {
  opacity: 0;
  animation: heroGlideUp 0.75s var(--ease-luxury) 460ms forwards;
}

.hero-anim-trust {
  opacity: 0;
  animation: heroGlideUp 0.75s var(--ease-luxury) 550ms forwards;
}

.hero-anim-vault {
  opacity: 0;
  animation: heroVaultGlideIn 0.78s var(--ease-luxury) 260ms forwards;
}

/* ==========================================================================
   UNIFIED HERO BADGE GROUP
   ========================================================================== */
.hero-badges-cluster {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-glass-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(7, 9, 14, 0.80);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-pill);
  padding: 7px 16px;
  height: 36px;
  box-sizing: border-box;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  font-size: 0.76rem;
  line-height: 1;
  white-space: nowrap;
}

.badge-gold-icon {
  color: var(--gold-bright);
  font-size: 0.76rem;
  flex-shrink: 0;
}

.badge-text-primary {
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-text-sep {
  color: rgba(212, 175, 55, 0.6);
  font-size: 0.7rem;
}

.badge-text-muted {
  font-weight: 600;
  color: var(--gold-bright);
  letter-spacing: 0.03em;
}

.badge-text-accent {
  font-weight: 600;
  color: #A7F3D0;
  letter-spacing: 0.03em;
}

.radar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseRadar 2s infinite;
  flex-shrink: 0;
}

@keyframes pulseRadar {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-master-title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.8vw, 4.3rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: #FFFFFF;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.7);
  margin-top: 2px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-master-title span.gold-stroke {
  color: var(--gold-bright);
}

.hero-lead-text {
  font-size: 1.08rem;
  color: #E2E8F0;
  line-height: 1.72;
  max-width: 580px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

/* Hero CTA Button Trio */
.hero-cta-button-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.hero-cta-button-row .btn {
  min-height: 50px;
  padding: 13px 26px;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-sizing: border-box;
}

/* Trust Metrics Row */
.hero-trust-metrics-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 6px;
  font-size: 0.84rem;
  color: #CBD5E1;
}

.trust-metric-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-metric-item i {
  color: var(--gold-bright);
  font-size: 0.8rem;
}

.trust-metric-item strong {
  color: #FFFFFF;
  font-weight: 700;
}

.trust-metric-divider {
  color: rgba(212, 175, 55, 0.5);
  font-size: 0.75rem;
}

/* ==========================================================================
   5. FROSTED GLASS BOOKING VAULT CARD & UNIFIED DROPDOWNS
   ========================================================================== */
.hero-embedded-booking-vault {
  background: var(--bg-glass-dark);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.32);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.06);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: #FFFFFF;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.vault-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vault-header h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: #FFFFFF;
}

.vault-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap !important;
  flex-shrink: 0;
  background: rgba(212, 175, 55, 0.18);
  color: var(--gold-bright);
  border: 1px solid rgba(212, 175, 55, 0.35);
  font-size: 0.70rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.vault-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vault-field-label {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Standardized Vault Dropdowns */
.vault-select-control {
  width: 100%;
  height: 48px;
  padding: 12px 40px 12px 16px;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-xs);
  color: #FFFFFF;
  font-size: 0.92rem;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  box-shadow: none !important;
}

.vault-select-control option {
  background: #07090E;
  color: #FFFFFF;
}

.vault-select-control:focus {
  border-color: var(--gold-bright) !important;
  background-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.25) !important;
}

/* Vault Fare Output & Reserve Ride Button */
.vault-fare-result-strip {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 6px;
  gap: 16px;
}

.vault-price-block {
  display: flex;
  flex-direction: column;
}

.vault-amount-num {
  font-family: var(--font-display);
  font-size: 2.15rem;
  font-weight: 900;
  color: var(--gold-bright);
  line-height: 1;
  transition: transform 0.25s var(--ease-luxury);
}

.vault-amount-num.pulse {
  transform: scale(1.08);
  color: #FFFFFF;
}

.vault-amount-tag {
  font-size: 0.72rem;
  color: #94A3B8;
  text-transform: uppercase;
  margin-top: 3px;
}

.vault-fare-result-strip .btn-gold {
  min-height: 50px;
  padding: 13px 26px;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

/* ---------------- DESTINATION MARQUEE RIBBON ---------------- */
.marquee-ribbon-wrap {
  background: var(--bg-subtle);
  padding: 22px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  border-top: 1px solid rgba(10, 13, 20, 0.06);
  border-bottom: 1px solid rgba(10, 13, 20, 0.06);
  width: 100%;
  max-width: 100%;
}

.marquee-track {
  display: inline-flex;
  gap: 48px;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.marquee-item i {
  color: var(--gold-primary);
  font-size: 0.82rem;
}

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

/* ==========================================================================
   6. ASYMMETRIC PRICING DIRECTORY + TRANSIT MATRIX TABLE
   ========================================================================== */
.pricing-section-wrap {
  padding: 110px 24px;
  background: #FFFFFF;
}

.pricing-asymmetric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.pricing-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 38px 32px;
  box-shadow: var(--shadow-medium);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 490px;
  transition: transform 0.28s var(--ease-luxury), box-shadow 0.28s var(--ease-luxury);
  border: 1px solid rgba(10, 13, 20, 0.05);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-elevated);
}

/* Zone 02 Hero Elevation */
.pricing-card.hero-popular-card {
  background: var(--bg-warm-tint);
  box-shadow: var(--shadow-popular);
  padding: 44px 34px;
  transform: scale(1.03);
  position: relative;
  z-index: 2;
  border: 1.5px solid var(--gold-primary);
}

.pricing-card.hero-popular-card:hover {
  transform: scale(1.03) translateY(-5px);
}

.popular-ribbon-tag {
  background: var(--gold-primary);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-xs);
  width: fit-content;
  margin-bottom: 12px;
}

.zone-index-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 8px;
  display: block;
}

.pricing-city-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 10px;
  min-height: 52px;
  overflow-wrap: break-word;
  word-break: normal;
}

.pricing-transit-desc {
  font-size: 0.90rem;
  color: var(--text-secondary);
  margin-bottom: 22px;
  line-height: 1.6;
  min-height: 42px;
}

.pricing-rate-display {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 16px 0;
  border-top: 1px solid rgba(10, 13, 20, 0.08);
  border-bottom: 1px solid rgba(10, 13, 20, 0.08);
  margin-bottom: 22px;
}

.rate-figure {
  font-family: var(--font-display);
  font-size: 2.45rem;
  font-weight: 900;
  color: var(--brand-black);
  line-height: 1;
}

.rate-caption {
  font-size: 0.80rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rate-amenities-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.rate-amenities-list li {
  font-size: 0.90rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.45;
}

.rate-amenities-list li i {
  color: var(--gold-primary);
  font-size: 0.88rem;
  flex-shrink: 0;
}

/* Operational Route Transit Matrix Table */
.route-matrix-container {
  margin-top: 64px;
  background: var(--bg-body);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-subtle);
}

.route-matrix-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 26px;
  flex-wrap: wrap;
  gap: 16px;
}

.route-matrix-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.route-matrix-table th {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-primary);
  padding: 14px 16px;
  border-bottom: 2px solid rgba(10, 13, 20, 0.08);
}

.route-matrix-table td {
  padding: 16px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(10, 13, 20, 0.06);
}

.route-matrix-table tr:hover td {
  background: rgba(255, 255, 255, 0.75);
}

.badge-popular-inline {
  font-size: 0.70rem;
  font-weight: 800;
  background: var(--gold-primary);
  color: #FFFFFF;
  padding: 3px 8px;
  border-radius: 4px;
  margin-left: 8px;
  display: inline-block;
}

/* ==========================================================================
   7. ASYMMETRIC 60/40 FLEET SHOWCASE
   ========================================================================== */
.fleet-section-wrap {
  padding: 110px 24px;
  background: var(--bg-body);
}

.fleet-asymmetric-layout {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 36px;
  align-items: stretch;
}

.fleet-hero-showcase,
.fleet-side-showcase {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  border: 1px solid rgba(10, 13, 20, 0.05);
}

.fleet-hero-photo-wrap,
.fleet-side-photo-wrap {
  height: 310px;
  position: relative;
  overflow: hidden;
  background: #07090E;
}

.fleet-tag-floating {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(7, 9, 14, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 7px 14px;
  border-radius: var(--radius-xs);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 2;
}

.fleet-hero-photo-wrap img,
.fleet-side-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-luxury);
}

.fleet-hero-showcase:hover .fleet-hero-photo-wrap img,
.fleet-side-showcase:hover .fleet-side-photo-wrap img {
  transform: scale(1.04);
}

.fleet-hero-content,
.fleet-side-content {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.fleet-card-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.fleet-card-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.68;
}

.fleet-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid rgba(10, 13, 20, 0.08);
  border-bottom: 1px solid rgba(10, 13, 20, 0.08);
  margin: 22px 0;
}

.spec-node strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 800;
}

.spec-node span {
  font-size: 0.74rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   8. MAGAZINE OVERLAP COMPOSITION (AIRPORT TERMINAL PROTOCOLS)
   ========================================================================== */
.airport-section-wrap {
  padding: 110px 24px;
  background: #FFFFFF;
}

.magazine-overlap-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  position: relative;
}

.magazine-timeline-card {
  background: var(--bg-body);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-medium);
  position: relative;
  z-index: 2;
  border: 1px solid rgba(10, 13, 20, 0.05);
}

.magazine-photo-curtain {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 480px;
  box-shadow: var(--shadow-elevated);
  position: relative;
  background: #0B0F19;
}

.magazine-photo-curtain .airport-photo-pane {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.45s ease, transform 0.6s var(--ease-luxury);
  transform: scale(1.03);
  pointer-events: none;
}

.magazine-photo-curtain .airport-photo-pane.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.airport-nav-tabs {
  display: flex;
  background: #FFFFFF;
  border-radius: var(--radius-xs);
  margin-bottom: 26px;
  box-shadow: var(--shadow-subtle);
  overflow: hidden;
  border: 1px solid rgba(10, 13, 20, 0.06);
}

.airport-nav-btn {
  flex: 1;
  padding: 15px 20px;
  background: transparent;
  border: none;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s var(--ease-luxury);
  min-height: 48px;
}

.airport-nav-btn.active {
  background: var(--brand-black);
  color: #FFFFFF;
}

.airport-pane {
  display: none;
}

.airport-pane.active {
  display: block;
}

.protocol-step-row {
  display: flex;
  gap: 18px;
  margin-top: 22px;
}

.step-digit-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold-primary);
  font-weight: 900;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-details strong {
  display: block;
  font-size: 0.98rem;
  color: var(--text-primary);
  font-weight: 800;
}

.step-details p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-top: 3px;
  line-height: 1.6;
}

.airport-action-btns {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ==========================================================================
   9. MASSIVE TYPOGRAPHY MOMENT IN DRAMATIC DARK SECTION
   ========================================================================== */
.dark-statement-section {
  background: var(--bg-dark);
  color: #FFFFFF;
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}

.dark-statement-section::before {
  content: '';
  position: absolute;
  top: -250px;
  right: -250px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.oversized-type-banner {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.8vw, 5.2rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: #FFFFFF;
  margin-bottom: 40px;
}

.oversized-type-banner span.gold-highlight {
  color: var(--gold-bright);
}

.dark-standards-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.dark-pillar-card {
  background: var(--bg-dark-card);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: transform 0.28s var(--ease-luxury), box-shadow 0.28s var(--ease-luxury);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.dark-pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.dark-pillar-num {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--gold-bright);
  margin-bottom: 14px;
  display: block;
}

.dark-pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.dark-pillar-card p {
  font-size: 0.92rem;
  color: #94A3B8;
  line-height: 1.7;
}

/* ==========================================================================
   10. EDITORIAL TESTIMONIAL SPREAD
   ========================================================================== */
.testimonials-section-wrap {
  padding: 110px 24px;
  background: #FFFFFF;
}

.editorial-quote-card {
  background: var(--bg-body);
  border: 1px solid rgba(10, 13, 20, 0.08);
  border-radius: var(--radius-lg);
  padding: 42px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-shadow: var(--shadow-subtle);
  transition: transform 0.28s var(--ease-luxury), box-shadow 0.28s var(--ease-luxury);
}

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

.editorial-quote-text {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 26px;
  position: relative;
  z-index: 2;
}

.editorial-client-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(10, 13, 20, 0.08);
}

.client-gold-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold-primary);
  font-weight: 800;
  font-size: 0.90rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gold-bright);
}

/* ==========================================================================
   11. DISPATCH CONTACT & FAQ
   ========================================================================== */
.contact-section-wrap {
  padding: 110px 24px;
  background: var(--bg-body);
}

.contact-asymmetric-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.contact-surface-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 44px 38px;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(10, 13, 20, 0.05);
}

.contact-form-layout {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field-unit {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field-lbl {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.form-text-input,
.form-select-input,
.form-textarea-input {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-xs);
  border: 1px solid rgba(10, 13, 20, 0.14);
  background: var(--bg-body);
  font-size: 0.94rem;
  color: var(--text-primary);
  box-sizing: border-box;
  min-height: 48px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-textarea-input {
  min-height: 110px;
  resize: vertical;
}

.form-text-input:focus,
.form-select-input:focus,
.form-textarea-input:focus {
  border-color: var(--gold-primary);
  outline: none;
  box-shadow: 0 0 0 2px rgba(150, 112, 56, 0.2);
}

.dispatch-vault-card {
  background: var(--brand-black);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  box-shadow: var(--shadow-elevated);
}

.dispatch-vault-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.dispatch-vault-card p {
  color: #94A3B8;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 22px;
}

.dispatch-hotline-pill {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xs);
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  color: #FFFFFF;
  transition: all 0.25s var(--ease-luxury);
  min-height: 56px;
}

.dispatch-hotline-pill:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.dispatch-hotline-pill strong {
  display: block;
  font-size: 1.15rem;
}

.dispatch-hotline-pill span {
  font-size: 0.80rem;
  color: #D4AF37;
}

.accordion-row-custom {
  background: #FFFFFF;
  border-radius: var(--radius-sm);
  margin-top: 14px;
  box-shadow: var(--shadow-subtle);
  overflow: hidden;
  border: 1px solid rgba(10, 13, 20, 0.06);
}

.accordion-btn-custom {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  background: transparent;
  border: none;
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  min-height: 52px;
}

.accordion-content-custom {
  padding: 0 22px 18px;
  font-size: 0.90rem;
  color: var(--text-secondary);
  line-height: 1.7;
  display: none;
}

.accordion-row-custom.open .accordion-content-custom {
  display: block;
}

.accordion-row-custom.open .accordion-btn-custom i {
  transform: rotate(180deg);
}

/* ---------------- EDITORIAL FOOTER & DESIGNER CREDIT ---------------- */
.editorial-footer {
  background: #05070B;
  color: #E2E8F0;
  padding: 80px 24px 36px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-columns-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 56px;
}

.footer-brand-col h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.footer-brand-col p {
  font-size: 0.90rem;
  color: #94A3B8;
  line-height: 1.72;
  max-width: 320px;
}

.footer-nav-col h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

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

.footer-nav-list a {
  color: #94A3B8;
  font-size: 0.90rem;
}

.footer-nav-list a:hover {
  color: #FFFFFF;
}

.footer-legal-bar {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.84rem;
  color: #64748B;
}

.footer-credit-sep {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.2);
}

.footer-designer-credit {
  color: #94A3B8;
}

.designer-link {
  color: #E2E8F0;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(212, 175, 55, 0.45);
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.designer-link:hover {
  color: var(--gold-bright);
  text-decoration-color: var(--gold-bright);
}

/* ---------------- MOBILE STICKY DOCK ---------------- */
.mobile-sticky-dock {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  box-sizing: border-box;
  background: rgba(7, 9, 14, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 18px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 990;
  box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.5);
  transform: translateZ(0);
  backface-visibility: hidden;
}

.mobile-dock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mobile-dock-grid .btn {
  min-height: 48px;
  font-size: 0.92rem;
}

/* ---------------- 11. BESPOKE EXECUTIVE MODAL SYSTEM (LUXURY LIGHT) ---------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 6, 12, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

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

.modal-box {
  background: #FFFFFF !important;
  border: 1px solid rgba(212, 175, 55, 0.4) !important;
  border-radius: 20px !important;
  max-width: 580px;
  width: 100%;
  max-height: min(90vh, 740px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 30px 26px !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 35px rgba(212, 175, 55, 0.12) !important;
  position: relative;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  scrollbar-width: thin;
  scrollbar-color: rgba(184, 134, 11, 0.35) #F1F5F9;
  box-sizing: border-box;
  color: #0F172A !important;
}

.modal-box::-webkit-scrollbar {
  width: 6px;
}

.modal-box::-webkit-scrollbar-track {
  background: #F1F5F9;
  border-radius: 99px;
}

.modal-box::-webkit-scrollbar-thumb {
  background: rgba(184, 134, 11, 0.4);
  border-radius: 99px;
}

.modal-box::-webkit-scrollbar-thumb:hover {
  background: #B8860B;
}

.modal-overlay.active .modal-box {
  transform: translateY(0) scale(1);
}

.modal-dismiss {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #F1F5F9 !important;
  border: 1px solid #E2E8F0 !important;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748B !important;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  z-index: 100;
}

.modal-dismiss:hover {
  background: #E2E8F0 !important;
  border-color: #CBD5E1 !important;
  color: #0F172A !important;
  transform: rotate(90deg);
}

.modal-header-block {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #F1F5F9;
  padding-right: 38px;
}

.modal-badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.modal-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #FEF3C7 !important;
  border: 1px solid #FDE68A !important;
  color: #92400E !important;
  font-size: 0.68rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.05em !important;
  padding: 4px 10px !important;
  border-radius: 99px !important;
}

.modal-radar-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #D1FAE5 !important;
  border: 1px solid #A7F3D0 !important;
  color: #065F46 !important;
  font-size: 0.68rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.05em !important;
  padding: 4px 10px !important;
  border-radius: 99px !important;
}

.modal-radar-badge .radar-dot {
  background: #10B981 !important;
}

.modal-title-heading {
  font-family: var(--font-display);
  font-size: 1.35rem !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  letter-spacing: -0.01em !important;
  margin: 6px 0 10px 0 !important;
  line-height: 1.25 !important;
}

.modal-price-lockup {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #F8FAFC !important;
  border: 1px solid #E2E8F0 !important;
  border-left: 4px solid #D4AF37 !important;
  padding: 8px 14px !important;
  border-radius: 10px !important;
}

.modal-price-label {
  font-size: 0.82rem !important;
  color: #64748B !important;
  font-weight: 600 !important;
}

.modal-price-val {
  font-family: var(--font-display);
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  color: #967038 !important;
  white-space: nowrap !important;
}

.modal-form-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-form-body .form-field-lbl {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  color: #475569 !important;
  letter-spacing: 0.05em !important;
  margin-bottom: 4px !important;
}

.modal-form-body .form-field-lbl i {
  color: #B8860B !important;
  font-size: 0.74rem !important;
  width: 12px;
  text-align: center;
}

.modal-form-body .form-text-input,
.modal-form-body .form-select-input {
  width: 100% !important;
  min-height: 46px !important;
  height: 46px !important;
  padding: 10px 14px !important;
  background: #F8FAFC !important;
  border: 1px solid #CBD5E1 !important;
  border-radius: 10px !important;
  color: #0F172A !important;
  font-size: 0.92rem !important;
  transition: all 0.2s ease !important;
  color-scheme: light !important;
  box-sizing: border-box !important;
}

.modal-form-body .form-select-input option {
  background: #FFFFFF !important;
  color: #0F172A !important;
  padding: 8px !important;
}

.modal-form-body .form-text-input::placeholder {
  color: #94A3B8 !important;
}

.modal-form-body .form-text-input:focus,
.modal-form-body .form-select-input:focus {
  background: #FFFFFF !important;
  border-color: #D4AF37 !important;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2) !important;
  outline: none !important;
}

.modal-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.modal-actions-wrap {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-submit-button {
  width: 100% !important;
  min-height: 50px !important;
  font-size: 0.98rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em !important;
  border-radius: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  background: linear-gradient(135deg, #E5C158 0%, #D4AF37 50%, #B8860B 100%) !important;
  color: #0A0D14 !important;
  border: none !important;
  cursor: pointer !important;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25) !important;
}

.modal-trust-footnote {
  font-size: 0.74rem !important;
  color: #64748B !important;
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
}

.modal-trust-footnote i {
  color: #059669 !important;
}

/* Modal Mobile Responsiveness */
@media (max-width: 640px) {
  .modal-overlay {
    padding: 10px !important;
    align-items: center !important;
  }

  .modal-box {
    padding: 20px 15px !important;
    max-height: calc(100dvh - 20px) !important;
    border-radius: 16px !important;
    width: 100% !important;
  }

  .modal-header-block {
    padding-right: 36px !important;
    margin-bottom: 14px !important;
    padding-bottom: 12px !important;
  }

  .modal-badge-row {
    gap: 6px !important;
    margin-bottom: 6px !important;
  }

  .modal-status-badge,
  .modal-radar-badge {
    font-size: 0.65rem !important;
    padding: 3px 8px !important;
  }

  .modal-title-heading {
    font-size: 1.18rem !important;
    margin: 4px 0 8px 0 !important;
    line-height: 1.25 !important;
  }

  .modal-price-lockup {
    padding: 8px 12px !important;
    flex-wrap: nowrap !important;
    gap: 6px !important;
  }

  .modal-price-label {
    font-size: 0.76rem !important;
  }

  .modal-price-val {
    font-size: 1.05rem !important;
    white-space: nowrap !important;
  }

  .modal-grid-2col {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .modal-form-body .form-text-input,
  .modal-form-body .form-select-input {
    min-height: 48px !important;
    height: 48px !important;
    font-size: 16px !important; /* Prevents auto zoom on iOS mobile */
  }

  .modal-dismiss {
    top: 14px !important;
    right: 14px !important;
    width: 32px !important;
    height: 32px !important;
  }
}

/* Toast */
.toast-bar {
  position: fixed;
  bottom: 96px;
  right: 20px;
  left: 20px;
  max-width: 440px;
  margin: 0 auto;
  background: var(--brand-black);
  color: #FFFFFF;
  padding: 15px 22px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-elevated);
  font-size: 0.90rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 100000;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.25s var(--ease-luxury);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.toast-bar.show {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   12. DEDICATED MOBILE ARCHITECTURE & RESPONSIVE SCALING (375px - 768px)
   ========================================================================== */

/* Intermediate Tablet & Desktop (1024px) */
@media (max-width: 1024px) {
  .hero-fullbleed-container {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .pricing-asymmetric-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fleet-asymmetric-layout {
    grid-template-columns: 1fr;
  }
  .magazine-overlap-container {
    grid-template-columns: 1fr;
  }
  .dark-standards-3col {
    grid-template-columns: 1fr;
  }
  .contact-asymmetric-grid {
    grid-template-columns: 1fr;
  }
  .footer-columns-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .pricing-section-wrap,
  .fleet-section-wrap,
  .airport-section-wrap,
  .dark-statement-section,
  .testimonials-section-wrap,
  .contact-section-wrap {
    padding: 88px 24px;
  }
}

/* Mobile Header Collapse (860px and Below) */
@media (max-width: 860px) {
  .desktop-nav,
  .header-phone-link,
  .header-book-btn {
    display: none !important;
  }
  .mobile-toggle-btn {
    display: inline-flex;
  }
}

/* Standard Mobile & Small Tablets (768px and Below) */
@media (max-width: 768px) {
  body {
    padding-bottom: 96px; /* Generous clearance for mobile sticky action dock */
  }

  /* Slim Announcement Strip */
  .slim-announcement-strip {
    height: 36px;
    font-size: 0.74rem;
  }
  .slim-dot, .slim-phone-link {
    display: none !important;
  }
  .slim-badge {
    padding: 2px 7px;
    font-size: 0.66rem;
  }

  /* Floating Navbar */
  .site-header {
    top: 44px;
    width: calc(100% - 28px);
  }
  .site-header.scrolled {
    top: 12px;
  }
  .header-container {
    padding: 8px 14px 8px 16px;
  }
  .brand-title {
    font-size: 1.05rem;
  }
  .brand-subtitle {
    font-size: 0.58rem;
  }

  /* Full-Bleed Hero — Spacious & Unhurried */
  .hero-fullbleed-wrap {
    padding: 124px 20px 72px;
    min-height: auto;
  }
  .hero-bg-img-asset {
    background-position: right 45%;
  }
  .hero-fullbleed-container {
    padding: 0;
    gap: 40px;
  }
  .hero-editorial-content {
    gap: 22px;
  }
  .hero-badges-cluster {
    gap: 10px;
  }
  .hero-glass-badge {
    height: auto;
    min-height: 34px;
    padding: 6px 14px;
    font-size: 0.72rem;
    white-space: normal;
  }
  .hero-master-title {
    font-size: clamp(2.1rem, 7.2vw, 2.75rem);
    line-height: 1.12;
    margin-top: 4px;
  }
  .hero-lead-text {
    font-size: 1.0rem;
    line-height: 1.72;
  }
  .hero-cta-button-row {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    padding-top: 4px;
  }
  .hero-cta-button-row .btn {
    width: 100%;
    min-height: 52px;
    font-size: 0.95rem;
    font-weight: 700;
  }
  .hero-trust-metrics-row {
    gap: 10px 14px;
    font-size: 0.82rem;
    padding-top: 6px;
  }

  /* Booking Vault Card on Mobile */
  .hero-embedded-booking-vault {
    padding: 26px 20px;
    width: 100%;
    gap: 18px;
    border-radius: var(--radius-md);
  }
  .vault-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 14px;
  }
  .vault-header h3 {
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1.25;
  }
  .vault-header p {
    font-size: 0.78rem;
    color: #94A3B8;
    margin-top: 2px;
  }
  .vault-header-badge {
    font-size: 0.68rem;
    padding: 4px 10px;
    gap: 4px;
    white-space: nowrap !important;
    flex-shrink: 0;
  }
  .vault-field-group {
    gap: 7px;
  }
  .vault-select-control {
    height: 48px;
    font-size: 0.90rem;
    padding: 12px 38px 12px 14px;
  }
  .vault-fare-result-strip {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
    text-align: center;
    padding: 18px 16px;
    margin-top: 6px;
    border-radius: var(--radius-sm);
  }
  .vault-amount-num {
    font-size: 2.15rem;
  }
  .vault-fare-result-strip .btn-gold {
    width: 100%;
    min-height: 48px;
    font-size: 0.94rem;
  }

  /* Route Ticker Strip */
  .marquee-ribbon-wrap {
    padding: 22px 0;
    margin-top: 0;
  }

  /* Sections Global Mobile Padding */
  .pricing-section-wrap,
  .fleet-section-wrap,
  .airport-section-wrap,
  .dark-statement-section,
  .testimonials-section-wrap,
  .contact-section-wrap {
    padding: 76px 20px;
  }

  .section-heading-wrap {
    margin-bottom: 44px;
    gap: 16px;
  }
  .section-main-heading {
    font-size: clamp(2.0rem, 6.4vw, 2.45rem);
    line-height: 1.18;
  }
  .section-sub-desc {
    font-size: 0.96rem;
    line-height: 1.68;
  }

  /* Pricing Cards Grid */
  .pricing-asymmetric-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .pricing-card {
    min-height: auto;
    padding: 34px 26px;
    border-radius: var(--radius-md);
  }
  .pricing-city-title {
    min-height: auto;
    font-size: 1.35rem;
    margin-bottom: 12px;
  }
  .pricing-transit-desc {
    min-height: auto;
    margin-bottom: 20px;
    font-size: 0.92rem;
  }
  .pricing-card.hero-popular-card {
    transform: none;
    padding: 36px 26px;
  }
  .pricing-card.hero-popular-card:hover {
    transform: translateY(-4px);
  }
  .rate-amenities-list {
    gap: 14px;
    margin-bottom: 26px;
  }
  .rate-amenities-list li {
    font-size: 0.92rem;
    line-height: 1.5;
  }
  .pricing-card .btn {
    min-height: 50px;
    font-size: 0.94rem;
  }

  /* ---------------- STACKED CARD ROUTE MATRIX TABLE ---------------- */
  .route-matrix-container {
    margin-top: 48px;
    padding: 24px 16px;
    border-radius: var(--radius-md);
  }
  .route-matrix-table,
  .route-matrix-table tbody {
    display: block;
    width: 100%;
  }
  .route-matrix-table thead {
    display: none;
  }
  .route-table-row {
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    border-radius: var(--radius-sm);
    padding: 20px 18px;
    margin-bottom: 18px;
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(10, 13, 20, 0.08);
    gap: 0;
  }
  .route-table-row.popular-matrix-row {
    background: var(--bg-warm-tint);
    border: 2px solid var(--gold-primary);
    box-shadow: 0 10px 24px -4px rgba(150, 112, 56, 0.15);
  }
  .route-matrix-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0;
    font-size: 0.92rem;
    border-bottom: 1px solid rgba(10, 13, 20, 0.06);
    box-sizing: border-box;
    width: 100%;
  }
  .route-matrix-table td::before {
    content: attr(data-label);
    font-weight: 700;
    font-size: 0.76rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
    margin-right: 12px;
  }

  /* Card Header: Route Name & Popular Tag */
  .route-matrix-table td:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 0;
    padding-bottom: 14px;
    border-bottom: 1.5px solid rgba(10, 13, 20, 0.1);
    font-size: 1.05rem;
    color: var(--text-primary);
  }
  .route-matrix-table td:first-child::before {
    display: none !important;
  }
  .route-matrix-table td:first-child strong {
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.3;
  }

  /* Card Footer: Full-Width Action Button */
  .route-matrix-table td:last-child {
    display: block !important;
    width: 100% !important;
    border-bottom: none !important;
    padding-top: 16px;
    padding-bottom: 0;
    margin-top: 2px;
  }
  .route-matrix-table td:last-child::before {
    display: none !important;
  }
  .table-book-btn {
    width: 100% !important;
    min-height: 48px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    border-radius: var(--radius-sm) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    box-sizing: border-box !important;
    margin: 0 !important;
  }

  /* Fleet Cards */
  .fleet-hero-photo-wrap,
  .fleet-side-photo-wrap {
    height: 250px;
  }
  .fleet-hero-content,
  .fleet-side-content {
    padding: 28px 24px;
  }
  .fleet-card-title {
    font-size: 1.45rem;
    margin-bottom: 10px;
  }
  .fleet-card-desc {
    font-size: 0.95rem;
    line-height: 1.68;
  }
  .fleet-specs-grid {
    gap: 8px;
    margin: 20px 0;
    padding: 16px 0;
  }
  .spec-node strong {
    font-size: 0.90rem;
  }
  .spec-node span {
    font-size: 0.70rem;
  }
  .fleet-hero-content .btn,
  .fleet-side-content .btn {
    min-height: 50px;
    font-size: 0.94rem;
  }

  /* Airport Protocols */
  .magazine-timeline-card {
    padding: 32px 24px;
  }
  .magazine-photo-curtain {
    height: 250px;
    margin-top: 10px;
  }
  .airport-nav-tabs {
    margin-bottom: 22px;
    border-radius: var(--radius-xs);
  }
  .airport-nav-btn {
    padding: 12px 10px;
    font-size: 0.85rem;
    min-height: 48px;
    gap: 6px;
    white-space: nowrap;
    justify-content: center;
  }
  .airport-nav-btn .tab-prefix {
    display: none;
  }
  .protocol-step-row {
    gap: 16px;
    margin-top: 22px;
  }
  .step-details strong {
    font-size: 0.98rem;
  }
  .step-details p {
    font-size: 0.90rem;
    line-height: 1.65;
  }
  .airport-action-btns {
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
  }
  .airport-action-btns .btn {
    width: 100%;
    min-height: 50px;
    font-size: 0.94rem;
  }

  /* Dark Section */
  .dark-statement-section {
    padding: 84px 20px;
  }
  .oversized-type-banner {
    font-size: clamp(2.1rem, 7.4vw, 2.85rem);
    line-height: 1.08;
    margin-bottom: 32px;
  }
  .dark-standards-3col {
    gap: 22px;
    margin-top: 32px;
  }
  .dark-pillar-card {
    padding: 32px 24px;
  }
  .dark-pillar-card h3 {
    font-size: 1.25rem;
  }
  .dark-pillar-card p {
    font-size: 0.94rem;
    line-height: 1.7;
  }

  /* Testimonials */
  .editorial-quote-card {
    padding: 34px 26px;
  }
  .editorial-quote-text {
    font-size: 1.0rem;
    line-height: 1.75;
    margin-bottom: 24px;
  }
  .editorial-client-row {
    padding-top: 18px;
  }

  /* Form & Contact */
  .contact-surface-card {
    padding: 34px 26px;
  }
  .dispatch-vault-card {
    padding: 34px 26px;
  }
  .form-grid-2col,
  .modal-grid-2col {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .form-text-input,
  .form-select-input,
  .form-textarea-input {
    min-height: 50px;
    padding: 14px 16px;
    font-size: 0.95rem;
  }
  .contact-surface-card .btn {
    min-height: 52px;
    font-size: 0.96rem;
  }
  .dispatch-hotline-pill {
    min-height: 60px;
    padding: 18px 22px;
    margin-bottom: 16px;
  }
  .accordion-btn-custom {
    padding: 18px 20px;
    font-size: 0.95rem;
    min-height: 52px;
  }
  .accordion-content-custom {
    padding: 0 20px 20px;
    font-size: 0.92rem;
    line-height: 1.7;
  }

  /* Footer */
  .editorial-footer {
    padding: 68px 20px 36px;
  }
  .footer-columns-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 44px;
  }
  .footer-legal-bar {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    font-size: 0.85rem;
  }

  /* Mobile Sticky Bottom Dock */
  .mobile-sticky-dock {
    display: block;
  }
}

/* Mobile Announcement Optimization (768px and below) */
@media (max-width: 768px) {
  .slim-announcement-strip {
    height: 32px;
    font-size: 0.70rem;
    padding: 0 8px;
  }

  .slim-announcement-inner {
    padding: 0 4px;
  }

  .slim-announcement-content {
    gap: 6px;
  }

  .badge-full-txt {
    display: none;
  }

  .badge-short-txt {
    display: inline;
  }

  .strip-desktop-text {
    display: none;
  }

  .strip-mobile-text {
    display: inline;
    font-weight: 600;
  }

  .slim-desktop-only {
    display: none !important;
  }

  .slim-badge {
    font-size: 0.62rem;
    padding: 1px 6px;
    gap: 3px;
  }

  .slim-phone-link {
    font-size: 0.70rem;
    gap: 4px;
  }

  .site-header {
    top: 38px;
  }

  .site-header.scrolled {
    top: 10px;
  }
}

/* Small Smart Phones (414px / 390px / 375px / 360px) */
@media (max-width: 480px) {
  .slim-announcement-strip {
    height: 30px;
    font-size: 0.67rem;
    padding: 0 6px;
  }

  .slim-announcement-content {
    gap: 5px;
  }

  .slim-badge {
    font-size: 0.58rem;
    padding: 1px 5px;
  }

  .slim-phone-link {
    font-size: 0.68rem;
  }

  .site-header {
    top: 36px;
    width: calc(100% - 16px);
  }

  .site-header.scrolled {
    top: 8px;
  }

  .brand-title {
    font-size: 1.0rem;
  }
  .brand-subtitle {
    font-size: 0.55rem;
  }
  .hero-fullbleed-wrap {
    padding: 110px 16px 64px;
  }
  .hero-master-title {
    font-size: 2.15rem;
    line-height: 1.12;
  }
  .hero-embedded-booking-vault {
    padding: 22px 16px;
    gap: 16px;
  }
  .vault-header h3 {
    font-size: 1.10rem;
  }
  .vault-header p {
    font-size: 0.75rem;
  }
  .vault-header-badge {
    font-size: 0.64rem;
    padding: 3px 8px;
    gap: 3px;
  }
  .pricing-section-wrap,
  .fleet-section-wrap,
  .airport-section-wrap,
  .dark-statement-section,
  .testimonials-section-wrap,
  .contact-section-wrap {
    padding: 68px 16px;
  }
  .pricing-card {
    padding: 30px 22px;
  }
  .pricing-card.hero-popular-card {
    padding: 32px 22px;
  }
  .modal-box {
    padding: 32px 20px;
  }
}
