/*
Theme Name: Apex San2LAX Premium
Theme URI: https://san2lax.com
Author: Apex AI Operations
Author URI: https://san2lax.com
Description: Premium dark luxury theme for San2LAX — SD to LAX airport car service. Mobile-first, conversion-focused, Uber Black aesthetic.
Version: 2.0.0
Requires at least: 6.0
Requires PHP: 8.0
License: Proprietary
Text Domain: apex-san2lax
Tags: transportation, luxury, car-service, lax, san-diego, dark, premium
*/

/* ══════════════════════════════════════════════════════════
   CUSTOM PROPERTIES
   ══════════════════════════════════════════════════════════ */
:root {
  /* Core palette */
  --deep:        #0A1628;
  --deep-90:     #0D1B30;
  --deep-80:     #111F38;
  --surface:     #131E33;
  --surface-alt: #182540;
  --border:      rgba(59,130,246,.15);
  --border-lite: rgba(255,255,255,.06);
  --white:       #FFFFFF;
  --muted:       #94A3B8;
  --muted-2:     #64748B;
  --blue:        #3B82F6;
  --blue-glow:   rgba(59,130,246,.25);
  --blue-dark:   #2563EB;
  --blue-light:  #60A5FA;
  --cyan:        #06B6D4;
  --emerald:     #10B981;
  --amber:       #F59E0B;
  --red:         #EF4444;

  /* Typography */
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Poppins', 'Inter', sans-serif;
  --font-mono:    'JetBrains Mono', 'Fira Code', monospace;

  /* Spacing */
  --section-py: clamp(4rem, 8vw, 7rem);
  --container:  min(1200px, 92vw);

  /* Transitions */
  --ease:   cubic-bezier(.4, 0, .2, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);

  /* Shadows */
  --shadow-sm:  0 1px 2px rgba(0,0,0,.3);
  --shadow-md:  0 4px 16px rgba(0,0,0,.4);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.5);
  --shadow-glow: 0 0 30px var(--blue-glow);

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  color: var(--muted);
  background: var(--deep);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-light); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--white); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
}

/* ══════════════════════════════════════════════════════════
   UTILITY
   ══════════════════════════════════════════════════════════ */
.container { width: var(--container); margin: 0 auto; }

.section { padding: var(--section-py) 0; }
.section-dark { background: var(--deep-90); }
.section-darker { background: var(--deep); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
  letter-spacing: -.02em;
}

.section-subtitle {
  font-size: clamp(.95rem, 1.8vw, 1.15rem);
  color: var(--muted);
  max-width: 620px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-header .section-subtitle { margin: 0 auto; }

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, var(--blue-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ══════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  padding: .8rem 1.6rem;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  transition: all .3s var(--ease);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(59,130,246,.35);
}
.btn-primary:hover {
  background: var(--blue-dark);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(59,130,246,.45);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  border-color: var(--blue);
  background: rgba(59,130,246,.08);
  color: var(--white);
}

.btn-ghost {
  background: rgba(255,255,255,.05);
  color: var(--muted);
  border: 1px solid var(--border-lite);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  color: var(--white);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: var(--r-lg);
}

/* ══════════════════════════════════════════════════════════
   HEADER / NAV
   ══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all .4s var(--ease);
  background: transparent;
}
.site-header.scrolled {
  background: rgba(10,22,40,.95);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  padding: .6rem 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo:hover { color: var(--white); }
.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--blue);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 20px; height: 20px; stroke: var(--white); fill: none; }
.logo-accent { color: var(--blue-light); }
.logo-sub {
  display: block;
  font-size: .6rem;
  font-weight: 400;
  color: var(--muted-2);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: -2px;
}

/* Desktop nav */
.nav-desktop {
  display: none;
  align-items: center;
  gap: .25rem;
}
.nav-desktop a {
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  padding: .5rem .85rem;
  border-radius: var(--r-sm);
  transition: all .25s var(--ease);
}
.nav-desktop a:hover {
  color: var(--white);
  background: rgba(255,255,255,.06);
}

/* Header right */
.header-right {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.header-phone {
  display: none;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--white);
  padding: .5rem .85rem;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border-lite);
  transition: all .25s var(--ease);
}
.header-phone:hover {
  background: rgba(59,130,246,.1);
  border-color: var(--blue);
  color: var(--white);
}
.header-phone svg { width: 16px; height: 16px; }
.header-book { display: none; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s var(--ease);
  display: block;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10,22,40,.98);
  backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .25rem;
  opacity: 0;
  visibility: hidden;
  transition: all .4s var(--ease);
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  padding: .6rem 1.5rem;
  border-radius: var(--r-md);
  transition: all .3s var(--ease);
  opacity: 0;
  transform: translateY(20px);
}
.mobile-nav.open a {
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav a:nth-child(1) { transition-delay: .05s; }
.mobile-nav a:nth-child(2) { transition-delay: .1s; }
.mobile-nav a:nth-child(3) { transition-delay: .15s; }
.mobile-nav a:nth-child(4) { transition-delay: .2s; }
.mobile-nav a:nth-child(5) { transition-delay: .25s; }
.mobile-nav a:hover { color: var(--blue-light); }
.mobile-nav .mobile-cta {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  background: var(--blue);
  color: var(--white);
  padding: .8rem 2rem;
}
.mobile-nav .mobile-cta:hover { background: var(--blue-dark); color: var(--white); }
.mobile-nav .mobile-phone {
  margin-top: .5rem;
  font-size: 1rem;
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 7rem 0 4rem;
  background: linear-gradient(135deg, rgba(10,22,40,0.88) 0%, rgba(13,27,48,0.82) 50%, rgba(19,30,51,0.85) 100%),
              url('/wp-content/uploads/2026/04/fleet-hotel.jpg') center/cover no-repeat;
}

/* Background layers */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(59,130,246,.08), transparent),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(6,182,212,.06), transparent),
    linear-gradient(180deg, var(--deep) 0%, var(--deep-90) 100%);
}

/* Grid pattern overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 70%);
}

/* Floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .4;
  animation: orbFloat 20s ease-in-out infinite;
}
.hero-orb-1 {
  width: 400px; height: 400px;
  background: rgba(59,130,246,.15);
  top: 10%; left: -5%;
}
.hero-orb-2 {
  width: 300px; height: 300px;
  background: rgba(6,182,212,.1);
  bottom: 10%; right: -5%;
  animation-delay: -10s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, -20px); }
  66% { transform: translate(-20px, 15px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

/* Hero text */
.hero-route-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-mono);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue-light);
  background: rgba(59,130,246,.1);
  border: 1px solid rgba(59,130,246,.2);
  padding: .4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.hero-route-badge svg { width: 14px; height: 14px; }

.hero-title {
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 1.25rem;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.7;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 2.5rem;
}

/* Hero trust signals */
.hero-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255,255,255,.65);
}
.hero-trust-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: var(--blue);
}

/* Hero card (route preview) */
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--blue));
}

/* Route visualization in hero card */
.route-vis {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.route-city {
  text-align: center;
  flex-shrink: 0;
}
.route-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 auto .35rem;
}
.route-dot-start { background: var(--blue); box-shadow: 0 0 12px var(--blue-glow); }
.route-dot-end { background: var(--cyan); box-shadow: 0 0 12px rgba(6,182,212,.3); }
.route-city-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .9rem;
  color: var(--white);
}
.route-city-sub {
  font-size: .7rem;
  color: var(--muted-2);
}
.route-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 2px;
  position: relative;
}
.route-line::after {
  content: '';
  position: absolute;
  top: -3px;
  right: -4px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
  transform: rotate(45deg);
}

/* Stats row in hero card */
.card-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .5rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255,255,255,.02);
  border-radius: var(--r-md);
  border: 1px solid var(--border-lite);
}
.card-stat { text-align: center; }
.card-stat-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  display: block;
}
.card-stat-value.highlight { color: var(--blue-light); }
.card-stat-label {
  font-size: .65rem;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Perks list in hero card */
.card-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 1.5rem;
}
.card-perks li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.75);
}
.card-perks li svg {
  width: 16px;
  height: 16px;
  stroke: var(--emerald);
  flex-shrink: 0;
}

.card-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1rem;
  font-weight: 600;
  font-size: .95rem;
  border-radius: var(--r-md);
  background: var(--blue);
  color: var(--white);
  transition: all .3s var(--ease);
  border: none;
  cursor: pointer;
}
.card-cta:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59,130,246,.4);
}

.card-or {
  text-align: center;
  margin-top: .75rem;
  font-size: .8rem;
  color: var(--muted-2);
}
.card-or a {
  color: var(--blue-light);
  font-weight: 600;
}

/* ══════════════════════════════════════════════════════════
   TRUST BAR
   ══════════════════════════════════════════════════════════ */
.trust-bar {
  padding: 1.5rem 0;
  background: var(--deep-90);
  border-top: 1px solid var(--border-lite);
  border-bottom: 1px solid var(--border-lite);
}
.trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 500;
  color: var(--muted);
}
.trust-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--blue);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   ROUTE MAP SECTION
   ══════════════════════════════════════════════════════════ */
.route-timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.route-track {
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--blue), var(--cyan));
}
.route-stop {
  position: relative;
  padding-left: 56px;
  padding-bottom: 2.5rem;
}
.route-stop:last-child { padding-bottom: 0; }
.route-stop-dot {
  position: absolute;
  left: 12px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--deep);
  border: 2px solid var(--blue);
  z-index: 1;
}
.route-stop-dot.active {
  background: var(--blue);
  box-shadow: 0 0 12px var(--blue-glow);
}
.route-stop-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: .25rem;
}
.route-stop-desc {
  font-size: .9rem;
  color: var(--muted);
}
.route-stop-meta {
  display: flex;
  gap: 1rem;
  margin-top: .5rem;
  font-size: .75rem;
  font-family: var(--font-mono);
  color: var(--blue-light);
}

/* ══════════════════════════════════════════════════════════
   FLEET SECTION
   ══════════════════════════════════════════════════════════ */
.fleet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.fleet-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all .4s var(--ease);
  position: relative;
}
.fleet-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}
.fleet-card-image {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--surface-alt);
  overflow: hidden;
}
.fleet-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, var(--surface) 100%);
}
.fleet-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  position: relative;
  z-index: 0;
}
.fleet-card:hover .fleet-card-image img {
  transform: scale(1.05);
}
.fleet-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: var(--muted-2);
  font-size: .85rem;
}
.fleet-placeholder svg { width: 48px; height: 48px; stroke: var(--muted-2); opacity: .5; }

/* ══════════════════════════════════════════════════════════
   ARRIVE IN STYLE SHOWCASE
   ══════════════════════════════════════════════════════════ */
.arrive-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.arrive-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.arrive-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.arrive-img:hover img {
  transform: scale(1.05);
}
.arrive-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(10,22,40,.85) 0%, transparent 100%);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .9rem;
}
@media (min-width: 768px) {
  .arrive-grid {
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: auto auto;
  }
  .arrive-img-main {
    grid-row: 1 / 3;
    aspect-ratio: auto;
  }
}
@media (min-width: 1024px) {
  .arrive-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .arrive-img-main {
    grid-row: 1 / 3;
  }
}

.fleet-card-body { padding: 1.5rem 2rem 2rem; }
.fleet-card-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: .25rem;
}
.fleet-card-type {
  font-size: .8rem;
  font-family: var(--font-mono);
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1rem;
}

.fleet-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .5rem;
  margin-bottom: 1.5rem;
}
.fleet-spec {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: var(--muted);
  padding: .5rem .75rem;
  background: rgba(255,255,255,.02);
  border-radius: var(--r-sm);
  border: 1px solid var(--border-lite);
}
.fleet-spec svg { width: 14px; height: 14px; stroke: var(--blue-light); flex-shrink: 0; }

.fleet-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.fleet-amenity {
  font-size: .72rem;
  font-weight: 500;
  color: var(--muted);
  padding: .3rem .65rem;
  background: rgba(59,130,246,.06);
  border: 1px solid rgba(59,130,246,.1);
  border-radius: 100px;
}

/* ══════════════════════════════════════════════════════════
   PRICING SECTION
   ══════════════════════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  position: relative;
  transition: all .4s var(--ease);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pricing-card.popular {
  border-color: var(--blue);
  box-shadow: var(--shadow-glow);
}
.pricing-card.popular::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.pricing-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--blue);
  color: var(--white);
  padding: .3rem .8rem;
  border-radius: 100px;
}
.pricing-header { margin-bottom: 1.5rem; }
.pricing-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: .25rem;
}
.pricing-route {
  font-size: .8rem;
  color: var(--muted-2);
}
.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: .25rem;
  margin-bottom: .5rem;
}
.pricing-from {
  font-size: .8rem;
  color: var(--muted-2);
}
.pricing-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1;
}
.pricing-note {
  font-size: .75rem;
  color: var(--muted-2);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-lite);
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.75);
}
.pricing-features li svg {
  width: 16px;
  height: 16px;
  stroke: var(--emerald);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   AIRPORTS SECTION
   ══════════════════════════════════════════════════════════ */
.airports-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.airport-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
  transition: all .3s var(--ease);
}
.airport-card:hover {
  border-color: var(--blue);
  background: var(--surface-alt);
}
.airport-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: rgba(59,130,246,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.airport-icon svg { width: 22px; height: 22px; stroke: var(--blue-light); }
.airport-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .95rem;
  color: var(--white);
}
.airport-code {
  font-family: var(--font-mono);
  font-size: .7rem;
  color: var(--blue);
  letter-spacing: .1em;
}

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  position: relative;
}
.testimonial-stars {
  display: flex;
  gap: .2rem;
  margin-bottom: 1rem;
}
.testimonial-stars svg { width: 16px; height: 16px; fill: var(--amber); stroke: var(--amber); }
.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,.8);
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .85rem;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 600;
  font-size: .9rem;
  color: var(--white);
}
.testimonial-trip {
  font-size: .75rem;
  color: var(--muted-2);
}

/* ══════════════════════════════════════════════════════════
   FAQ ACCORDION
   ══════════════════════════════════════════════════════════ */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .3s var(--ease);
}
.faq-item.active { border-color: var(--blue); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  color: var(--white);
  text-align: left;
  gap: 1rem;
  transition: color .25s var(--ease);
}
.faq-question:hover { color: var(--blue-light); }

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(59,130,246,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .3s var(--ease);
}
.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--blue);
  transition: transform .3s var(--ease);
}
.faq-item.active .faq-icon { background: var(--blue); }
.faq-item.active .faq-icon svg { stroke: var(--white); transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease), padding .4s var(--ease);
}
.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  font-size: .9rem;
  line-height: 1.75;
  color: var(--muted);
}

/* ══════════════════════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════════════════════ */
.cta-banner {
  padding: var(--section-py) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(59,130,246,.1), transparent);
}
.cta-banner-inner {
  position: relative;
  z-index: 1;
}
.cta-banner-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
  letter-spacing: -.02em;
}
.cta-banner-text {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.cta-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--deep);
  border-top: 1px solid var(--border-lite);
  padding: 4rem 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand-desc {
  font-size: .9rem;
  color: var(--muted);
  margin: 1rem 0 1.5rem;
  line-height: 1.7;
  max-width: 360px;
}
.footer-contact-line {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: .5rem;
}
.footer-contact-line svg { width: 16px; height: 16px; stroke: var(--blue); flex-shrink: 0; }
.footer-contact-line a { color: var(--muted); }
.footer-contact-line a:hover { color: var(--white); }

.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .85rem;
  color: var(--white);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .4rem; }
.footer-col ul a {
  font-size: .85rem;
  color: var(--muted-2);
  transition: all .25s var(--ease);
}
.footer-col ul a:hover { color: var(--white); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid var(--border-lite);
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-copyright {
  font-size: .8rem;
  color: var(--muted-2);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: .8rem;
  color: var(--muted-2);
}
.footer-legal a:hover { color: var(--white); }

/* Social icons */
.footer-social {
  display: flex;
  gap: .5rem;
  margin-top: 1.25rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border-lite);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s var(--ease);
}
.footer-social a:hover {
  background: rgba(59,130,246,.1);
  border-color: var(--blue);
}
.footer-social svg { width: 16px; height: 16px; stroke: var(--muted); }
.footer-social a:hover svg { stroke: var(--blue-light); }

/* ══════════════════════════════════════════════════════════
   MOBILE STICKY BAR
   ══════════════════════════════════════════════════════════ */
.mobile-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: rgba(10,22,40,.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: .6rem .75rem calc(.6rem + env(safe-area-inset-bottom));
  display: flex;
  gap: .5rem;
  transform: translateY(100%);
  transition: transform .4s var(--ease);
}
.mobile-sticky.visible { transform: translateY(0); }
.mobile-sticky .btn { flex: 1; justify-content: center; font-size: .82rem; padding: .8rem; }

/* ══════════════════════════════════════════════════════════
   PAGE TEMPLATE (interior)
   ══════════════════════════════════════════════════════════ */
.page-hero {
  padding: 8rem 0 3rem;
  background: var(--deep-90);
  text-align: center;
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.page-hero-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: .5rem;
}
.page-hero-subtitle {
  font-size: 1rem;
  color: var(--muted);
}

.page-content {
  padding: 3rem 0 5rem;
}
.page-content .content-area {
  max-width: 760px;
  margin: 0 auto;
}
.page-content h2 {
  font-size: 1.5rem;
  margin: 2rem 0 .75rem;
  color: var(--blue-light);
}
.page-content h3 {
  font-size: 1.2rem;
  margin: 1.5rem 0 .5rem;
}
.page-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
}
.page-content ul, .page-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.page-content li { margin-bottom: .35rem; }
.page-content img {
  border-radius: var(--r-md);
  margin: 1.5rem 0;
}
.page-content blockquote {
  border-left: 3px solid var(--blue);
  padding: .75rem 1.5rem;
  margin: 1.5rem 0;
  background: rgba(59,130,246,.05);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-style: italic;
  color: rgba(255,255,255,.8);
}

/* ══════════════════════════════════════════════════════════
   BLOG / SINGLE
   ══════════════════════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all .3s var(--ease);
}
.blog-card:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
}
.blog-card-image {
  aspect-ratio: 16/9;
  background: var(--surface-alt);
  overflow: hidden;
}
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 1.5rem; }
.blog-card-meta {
  font-size: .75rem;
  color: var(--muted-2);
  margin-bottom: .5rem;
  font-family: var(--font-mono);
}
.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .5rem;
  line-height: 1.35;
}
.blog-card-title a { color: var(--white); }
.blog-card-title a:hover { color: var(--blue-light); }
.blog-card-excerpt {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
}

.single-hero {
  padding: 8rem 0 2rem;
  background: var(--deep-90);
}
.single-meta {
  font-size: .8rem;
  font-family: var(--font-mono);
  color: var(--blue);
  margin-bottom: .5rem;
}
.single-title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  line-height: 1.25;
}
.single-content {
  padding: 3rem 0 5rem;
  max-width: 760px;
  margin: 0 auto;
}
.single-content p { margin-bottom: 1.25rem; line-height: 1.85; }
.single-content h2 { font-size: 1.5rem; margin: 2.5rem 0 .75rem; color: var(--blue-light); }
.single-content h3 { font-size: 1.25rem; margin: 2rem 0 .5rem; }
.single-content img { border-radius: var(--r-md); margin: 2rem 0; }
.single-content ul, .single-content ol { margin-bottom: 1.25rem; padding-left: 1.5rem; }
.single-content li { margin-bottom: .4rem; }

/* ══════════════════════════════════════════════════════════
   404
   ══════════════════════════════════════════════════════════ */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.error-code {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: .5rem;
}
.error-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.error-text {
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 400px;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════════════════════════ */
@media (min-width: 640px) {
  .hero-trust { grid-template-columns: repeat(4, auto); gap: 1.5rem; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .airports-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — DESKTOP
   ══════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  .hero-content { grid-template-columns: 1fr 420px; gap: 4rem; }
  .nav-desktop { display: flex; }
  .header-phone { display: flex; }
  .header-book { display: inline-flex; }
  .hamburger { display: none; }
  .mobile-sticky { display: none !important; }

  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .airports-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; }
}

@media (min-width: 1280px) {
  :root { --container: min(1240px, 90vw); }
}

/* ══════════════════════════════════════════════════════════
   PRINT
   ══════════════════════════════════════════════════════════ */
@media print {
  .site-header, .mobile-sticky, .cta-banner, .mobile-nav { display: none !important; }
  body { background: #fff; color: #222; }
  .hero { min-height: auto; padding: 2rem 0; }
}

/* ══════════════════════════════════════════════════════════
   ACCESSIBILITY
   ══════════════════════════════════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

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

/* ══════════════════════════════════════════════════════════
   WHY CHOOSE US GRID
   ══════════════════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: all .3s var(--ease);
}
.why-card:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
}
.why-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: rgba(59,130,246,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.why-icon svg { width: 22px; height: 22px; stroke: var(--blue-light); }
.why-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: .35rem;
}
.why-desc {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.6;
}

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