/* ============================================
   SKOPJE AIRPORT TAXI — style.css
   Theme: Dark Luxury · Gold Accents
   ============================================ */

:root {
  --gold:        #c9a84c;
  --gold-light:  #e8cc7a;
  --gold-dim:    #8a6a24;
  --gold-glow:   rgba(201, 168, 76, 0.18);
  --gold-border: rgba(201, 168, 76, 0.35);

  --dark-0: #0c0b09;
  --dark-1: #111009;
  --dark-2: #18160e;
  --dark-3: #211e12;
  --dark-4: #2c2818;

  --text-primary:   #f0e6c8;
  --text-secondary: #a89060;
  --text-muted:     #5a4e30;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Montserrat', sans-serif;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius: 4px;
}

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

body {
  background: var(--dark-0);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ============================================
   GOLD BORDER UTILITY
   ============================================ */
.gold-border {
  border: 1px solid var(--gold-border);
  box-shadow: 0 0 20px var(--gold-glow), inset 0 0 20px rgba(201,168,76,0.04);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: linear-gradient(135deg, #c9a84c 0%, #e8cc7a 50%, #c9a84c 100%);
  background-size: 200% 100%;
  background-position: 100% 0;
  color: #0c0b09;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background-position var(--transition), transform 0.2s, box-shadow var(--transition);
  box-shadow: 0 4px 30px rgba(201, 168, 76, 0.25);
}

.btn-gold:hover {
  background-position: 0% 0;
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(201, 168, 76, 0.45);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 36px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--gold-border);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-outline:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
  color: var(--gold-light);
}

/* ============================================
   SECTION SHARED
   ============================================ */
section { padding: 120px 60px; max-width: 1200px; margin: 0 auto; }

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 20px;
  border: 1px solid var(--gold-border);
  margin-bottom: 24px;
  position: relative;
}

.section-tag::before, .section-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--gold-border);
}
.section-tag::before { right: 100%; margin-right: 12px; }
.section-tag::after  { left:  100%; margin-left:  12px; }

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 14px;
}

.section-header h2 em {
  font-style: italic;
  color: var(--gold);
}

.section-header p {
  color: var(--text-secondary);
  font-size: 14px;
  letter-spacing: 1px;
}

/* ============================================
   SCROLL REVEAL ANIMATION
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }
.delay-5 { transition-delay: 0.75s; }

/* ============================================
   NAVBAR
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 60px;
  display: flex;
  align-items: center;
  transition: all 0.4s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(12, 11, 9, 0.96);
  backdrop-filter: blur(20px);
  padding: 16px 60px;
  border-bottom-color: var(--gold-border);
  box-shadow: 0 4px 40px rgba(0,0,0,0.6);
}

.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-primary);
  letter-spacing: 1px;
}
.nav-logo strong { color: var(--gold); font-weight: 600; }
.logo-icon { color: var(--gold); font-size: 14px; animation: spin-slow 8s linear infinite; display: inline-block; }

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 28px;
  background: transparent;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--dark-0);
  box-shadow: 0 0 30px rgba(201,168,76,0.4);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 160px 80px 100px;
  max-width: 100%;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-lines {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 79px,
      rgba(201,168,76,0.04) 80px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 79px,
      rgba(201,168,76,0.04) 80px
    );
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.hero-glow.top-left {
  top: -200px; left: -200px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
}
.hero-glow.bottom-right {
  bottom: -200px; right: -100px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
}

/* ============================================
   HERO RUNWAY BACKGROUND (CSS-only, no image)
   ============================================ */
.hero-runway {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.runway-overlay {
  position: absolute;
  inset: 0;
  /* Heavy vignette so text remains readable */
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, transparent 20%, rgba(12,11,9,0.55) 70%, rgba(12,11,9,0.92) 100%),
    linear-gradient(to bottom, rgba(12,11,9,0.7) 0%, rgba(12,11,9,0.2) 40%, rgba(12,11,9,0.5) 80%, rgba(12,11,9,0.95) 100%);
}

.runway-scene {
  position: absolute;
  inset: 0;
  perspective: 600px;
  transform-style: preserve-3d;
}

/* Dark asphalt floor */
.runway-floor {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(to bottom,
    #0a0d12 0%,
    #111820 40%,
    #161e28 100%
  );
}

/* Sky gradient */
.runway-scene::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to bottom,
    #060810 0%,
    #0d1320 50%,
    #121926 100%
  );
}

/* Horizon glow */
.runway-horizon {
  position: absolute;
  left: 0; right: 0;
  top: 44%;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201,168,76,0.06) 20%,
    rgba(201,168,76,0.22) 50%,
    rgba(201,168,76,0.06) 80%,
    transparent 100%
  );
  filter: blur(2px);
}

/* Central vanishing-point glow */
.runway-glow-center {
  position: absolute;
  left: 50%; top: 44%;
  transform: translate(-50%, -50%);
  width: 340px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.13) 0%, transparent 70%);
  filter: blur(18px);
}

/* Center runway strip (perspective converging lines via clip-path) */
.runway-strip {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 120px solid transparent;
  border-right: 120px solid transparent;
  border-bottom: 56vh solid rgba(30, 40, 55, 0.7);
}

/* Center dashes */
.runway-dash {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(201, 168, 76, 0.55);
  border-radius: 2px;
}
.runway-dash.d1 { bottom: 6%;  width: 18px; height: 60px; opacity: 0.7; }
.runway-dash.d2 { bottom: 16%; width: 12px; height: 40px; opacity: 0.55; }
.runway-dash.d3 { bottom: 24%; width: 8px;  height: 26px; opacity: 0.4; }
.runway-dash.d4 { bottom: 30%; width: 5px;  height: 16px; opacity: 0.28; }
.runway-dash.d5 { bottom: 35%; width: 3px;  height: 10px; opacity: 0.16; }

/* Right runway edge lights */
.runway-light {
  position: absolute;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.9);
  box-shadow: 0 0 8px 3px rgba(201, 168, 76, 0.5), 0 0 20px 6px rgba(201, 168, 76, 0.15);
}
/* right side */
.runway-light.rl1 { bottom: 5%;  right: calc(50% - 130px); width: 7px; height: 7px; }
.runway-light.rl2 { bottom: 13%; right: calc(50% - 95px);  width: 5px; height: 5px; opacity: 0.8; }
.runway-light.rl3 { bottom: 20%; right: calc(50% - 72px);  width: 4px; height: 4px; opacity: 0.6; }
.runway-light.rl4 { bottom: 26%; right: calc(50% - 55px);  width: 3px; height: 3px; opacity: 0.4; }
/* left side */
.runway-light.ll1 { bottom: 5%;  left: calc(50% - 130px);  width: 7px; height: 7px; }
.runway-light.ll2 { bottom: 13%; left: calc(50% - 95px);   width: 5px; height: 5px; opacity: 0.8; }
.runway-light.ll3 { bottom: 20%; left: calc(50% - 72px);   width: 4px; height: 4px; opacity: 0.6; }
.runway-light.ll4 { bottom: 26%; left: calc(50% - 55px);   width: 3px; height: 3px; opacity: 0.4; }

/* Terminal building silhouette on horizon */
.terminal-silhouette {
  position: absolute;
  bottom: 45%;
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  height: 38px;
  background: #080c12;
  clip-path: polygon(
    0% 100%,
    0% 55%,
    8% 55%,
    8% 30%,
    14% 30%,
    14% 10%,
    22% 10%,
    22% 30%,
    28% 30%,
    28% 45%,
    40% 45%,
    40% 20%,
    60% 20%,
    60% 45%,
    72% 45%,
    72% 30%,
    78% 30%,
    78% 10%,
    86% 10%,
    86% 30%,
    92% 30%,
    92% 55%,
    100% 55%,
    100% 100%
  );
  opacity: 0.75;
}

/* Plane silhouette on horizon */
.plane-silhouette {
  position: absolute;
  bottom: 46.5%;
  left: 62%;
  width: 60px;
  height: 14px;
  opacity: 0.35;
  background: #080c12;
  clip-path: polygon(
    0% 70%,
    60% 70%,
    75% 30%,
    82% 30%,
    82% 55%,
    100% 55%,
    100% 70%,
    85% 85%,
    15% 85%,
    5% 100%,
    0% 100%
  );
}

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

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow-line {
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow-line:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 90px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--text-primary);
  margin-bottom: 28px;
  letter-spacing: -1px;
}

.hero-title em {
  display: block;
  font-style: italic;
  color: var(--gold);
  text-shadow: 0 0 60px rgba(201,168,76,0.3);
}

.hero-sub {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 2;
  letter-spacing: 0.5px;
}
.hero-sub span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 6px;
}

.hero-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--text-secondary);
}

.badge-icon {
  width: 22px;
  height: 22px;
  background: var(--gold-glow);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--gold);
  flex-shrink: 0;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Car frame */
.hero-car-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.car-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 16/10;
  background: var(--dark-2);
  border: 1px solid var(--gold-border);
  box-shadow:
    0 0 0 1px rgba(201,168,76,0.08),
    0 0 60px rgba(201,168,76,0.1),
    0 0 120px rgba(201,168,76,0.05),
    inset 0 0 60px rgba(0,0,0,0.5);
}

.car-frame-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--gold);
  border-style: solid;
  z-index: 2;
}
.car-frame-corner.tl { top: -1px;  left:  -1px;  border-width: 2px 0 0 2px; }
.car-frame-corner.tr { top: -1px;  right: -1px;  border-width: 2px 2px 0 0; }
.car-frame-corner.bl { bottom: -1px; left:  -1px;  border-width: 0 0 2px 2px; }
.car-frame-corner.br { bottom: -1px; right: -1px;  border-width: 0 2px 2px 0; }

.car-placeholder-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.car-ph-icon {
  font-size: 64px;
  filter: drop-shadow(0 0 20px rgba(201,168,76,0.3));
  animation: float 4s ease-in-out infinite;
}

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

.car-ph-text {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.car-ph-code {
  font-family: monospace;
  font-size: 11px;
  color: var(--gold-dim);
  background: var(--dark-3);
  padding: 4px 12px;
  border: 1px solid var(--dark-4);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.scroll-hint span {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: var(--dark-4);
  position: relative;
  overflow: hidden;
}
.scroll-dot {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 6px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-drop 2s ease-in-out infinite;
}
@keyframes scroll-drop {
  0%   { top: -6px; opacity: 1; }
  80%  { top: 50px; opacity: 0; }
  100% { top: -6px; opacity: 0; }
}

/* ============================================
   FLEET SECTION
   ============================================ */
.fleet {
  background: var(--dark-1);
  max-width: 100%;
  padding: 120px 80px;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  position: relative;
}

.fleet::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.fleet-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.fleet-image-box {
  position: relative;
}

.fleet-frame-border {
  position: absolute;
  inset: -12px;
  border: 1px solid var(--gold-border);
  pointer-events: none;
  z-index: 0;
}

.fleet-img-placeholder {
  position: relative;
  z-index: 1;
  aspect-ratio: 4/3;
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.fleet-img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.fleet-ph-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.fleet-ph-icon { font-size: 72px; }
.fleet-ph-inner p { font-size: 12px; color: var(--text-muted); letter-spacing: 1px; }
.fleet-ph-inner small { font-size: 10px; color: var(--dark-4); }

.fleet-info {}

.fleet-stat-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--dark-4);
}

.fleet-stat {
  flex: 1;
  text-align: center;
}

.fleet-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--dark-4);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.fleet-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.fleet-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.3s;
}
.fleet-features li:hover { color: var(--text-primary); }

.feat-check {
  color: var(--gold);
  font-size: 10px;
  flex-shrink: 0;
}

/* ============================================
   ROUTES
   ============================================ */
.routes {
  max-width: 100%;
  padding: 120px 80px;
  background: var(--dark-0);
  position: relative;
}

.routes-bg-line {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--gold-border), transparent);
  pointer-events: none;
}

.routes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto 40px;
}

.route-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  padding: 30px;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}

.route-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-glow) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.route-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px var(--gold-glow);
}

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

.route-card.featured {
  border-color: var(--gold-border);
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  gap: 20px;
  align-items: center;
  background: linear-gradient(135deg, var(--dark-3), var(--dark-2));
  box-shadow: 0 0 0 1px rgba(201,168,76,0.1), 0 0 40px rgba(201,168,76,0.08);
}

.route-tag {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 4px 10px;
  background: var(--dark-0);
}

.route-from, .route-to {
  display: flex;
  align-items: center;
  gap: 12px;
}

.city-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  flex-shrink: 0;
}
.city-dot.gold { background: var(--gold); box-shadow: 0 0 8px rgba(201,168,76,0.5); }

.city-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.2;
}
.city-sub {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
}

.route-mid {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 11px;
  flex: 1;
  justify-content: center;
}
.route-midline {
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border));
}
.route-mid .route-midline:last-child {
  background: linear-gradient(90deg, var(--gold-border), transparent);
}
.route-plane {
  color: var(--gold);
  font-size: 16px;
}

.route-price {
  text-align: right;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.price-note {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-top: 4px;
}

/* non-featured route cards */
.routes-grid .route-card:not(.featured) {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.routes-grid .route-card:not(.featured) .route-mid {
  flex-direction: row;
  justify-content: flex-start;
}
.routes-grid .route-card:not(.featured) .route-price {
  text-align: left;
  padding-top: 16px;
  border-top: 1px solid var(--dark-4);
  margin-top: auto;
}

.routes-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 2;
  letter-spacing: 0.5px;
}

/* ============================================
   WHY US
   ============================================ */
.why {
  max-width: 100%;
  background: var(--dark-1);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 120px 80px;
  position: relative;
}

.why::before, .why::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
}
.why::before {
  top: 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.why::after {
  bottom: 0;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.why-text .section-tag { margin-bottom: 24px; }
.why-text h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.why-text h2 em { font-style: italic; color: var(--gold); }
.why-text p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.9;
}

.why-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.why-stat {
  padding: 32px 0;
  border-bottom: 1px solid var(--dark-4);
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.why-stat:first-child { border-top: 1px solid var(--dark-4); }

.why-stat-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  min-width: 120px;
  transition: color 0.3s;
}

.why-stat-label {
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  max-width: 100%;
  padding: 120px 80px;
  background: var(--dark-0);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 50px;
}

.contact-card {
  position: relative;
  padding: 40px 30px;
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  cursor: pointer;
  transition: all var(--transition);
  overflow: hidden;
}

.contact-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--gold-glow) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.contact-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 40px var(--gold-glow);
}
.contact-card:hover .contact-card-bg { opacity: 1; }
.contact-card:hover .contact-arrow { transform: translateX(6px); color: var(--gold-light); }

.contact-icon-wrap {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-3);
  transition: box-shadow var(--transition);
}

.contact-card:hover .contact-icon-wrap {
  box-shadow: 0 0 24px var(--gold-glow);
}

.contact-emoji { font-size: 26px; }

.contact-info { position: relative; z-index: 1; }
.contact-type {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.contact-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.contact-hint {
  font-size: 11px;
  color: var(--text-muted);
}

.contact-arrow {
  position: relative;
  z-index: 1;
  color: var(--text-muted);
  font-size: 20px;
  transition: all 0.3s;
}

.availability-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid var(--gold-border);
  background: var(--gold-glow);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--text-secondary);
}

.avail-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4cbb6a;
  flex-shrink: 0;
  animation: pulse-anim 2s ease-in-out infinite;
}

@keyframes pulse-anim {
  0%, 100% { box-shadow: 0 0 0 0 rgba(76,187,106,0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(76,187,106,0); }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark-1);
  border-top: 1px solid var(--gold-border);
  text-align: center;
  padding: 60px 40px;
  position: relative;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.footer-logo strong { color: var(--gold); font-weight: 600; }

.footer-divider {
  width: 60px;
  height: 1px;
  background: var(--gold-border);
  margin: 0 auto 24px;
}

.footer-text {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.footer-text.small { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; }

/* ============================================
   LANGUAGE TOGGLE
   ============================================ */
.lang-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.lang-toggle {
  position: relative;
  display: flex;
  background: var(--dark-2);
  border: 1px solid var(--gold-border);
  border-radius: 2px;
  overflow: hidden;
  width: 140px;
  height: 42px;
}

.lang-slider {
  position: absolute;
  top: 0; left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}

.lang-slider.en { transform: translateX(100%); }

.lang-btn {
  position: relative;
  z-index: 1;
  flex: 1;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}

.lang-btn.active { color: var(--dark-0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  section { padding: 80px 24px; }

  .nav { padding: 18px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }

  /* show hamburger-style stacked nav on mobile */
  .nav-cta { padding: 8px 16px; font-size: 10px; }

  .hero {
    grid-template-columns: 1fr;
    padding: 120px 24px 80px;
    text-align: center;
  }
  .hero-eyebrow { justify-content: center; }
  .hero-badges { align-items: flex-start; }
  .hero-ctas { justify-content: center; flex-wrap: wrap; gap: 12px; }
  .hero-car-wrap { order: -1; }
  .car-frame { max-width: 320px; margin: 0 auto; }
  .scroll-hint { display: none; }

  .fleet { padding: 80px 24px; }
  .fleet-showcase { grid-template-columns: 1fr; gap: 40px; }
  .fleet-stat-row { gap: 16px; }
  .stat-num { font-size: 36px; }

  .routes { padding: 80px 24px; }
  .routes-grid { grid-template-columns: 1fr; }
  .route-card.featured { grid-template-columns: 1fr; gap: 16px; }
  .price-amount { font-size: 22px; }

  .why { padding: 80px 24px; }
  .why-inner { grid-template-columns: 1fr; gap: 60px; }
  .why-stat-num { font-size: 48px; min-width: 80px; }

  .contact { padding: 80px 24px; }
  .contact-grid { grid-template-columns: 1fr; max-width: 400px; }
  .contact-card { flex-direction: row; text-align: left; padding: 24px 20px; gap: 16px; }
  .contact-icon-wrap { width: 50px; height: 50px; flex-shrink: 0; }
  .contact-emoji { font-size: 20px; }
  .contact-arrow { margin-left: auto; }
  .contact-num { font-size: 18px; }

  .availability-strip { font-size: 11px; text-align: center; }

  .footer { padding: 40px 24px; }
  .footer-logo { font-size: 22px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 42px; }
  .btn-gold, .btn-outline { padding: 12px 24px; font-size: 11px; width: 100%; justify-content: center; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .section-header h2 { font-size: 30px; }
  .why-stat { flex-direction: column; gap: 4px; }
  .why-stat-num { font-size: 40px; min-width: unset; }
  .route-card { padding: 24px 20px; }
}

/* Runway mobile fixes */
@media (max-width: 600px) {
  .terminal-silhouette {
    width: 100%;
    left: 0;
    transform: none;
  }
  .plane-silhouette { display: none; }
  .runway-strip {
    border-left-width: 60px;
    border-right-width: 60px;
    border-bottom-width: 45vh;
  }
  .runway-light.rl1 { right: calc(50% - 72px); }
  .runway-light.rl2 { right: calc(50% - 55px); }
  .runway-light.rl3 { right: calc(50% - 42px); }
  .runway-light.rl4 { right: calc(50% - 34px); }
  .runway-light.ll1 { left: calc(50% - 72px); }
  .runway-light.ll2 { left: calc(50% - 55px); }
  .runway-light.ll3 { left: calc(50% - 42px); }
  .runway-light.ll4 { left: calc(50% - 34px); }
  .runway-dash.d1 { width: 12px; height: 44px; }
  .runway-dash.d2 { width: 8px;  height: 28px; }
  .runway-dash.d3 { width: 6px;  height: 18px; }
}