/* ═══════════════════════════════════════════════════════════
   PRIME ROUTE TRANSPORT LLC — Premium Website Stylesheet
   ═══════════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --navy:       #050814;
  --midnight:   #071A2E;
  --blue:       #0F6BA8;
  --blue-dark:  #0a4f7e;
  --gold:       #D9B36C;
  --gold-light: #F3D79A;
  --gold-dark:  #b8924a;
  --white:      #FFFFFF;
  --muted:      #A8B3C2;
  --glass-bg:   rgba(7, 26, 46, 0.55);
  --glass-border: rgba(217, 179, 108, 0.18);
  --glow-gold:  0 0 30px rgba(217, 179, 108, 0.25), 0 0 60px rgba(217, 179, 108, 0.12);
  --glow-blue:  0 0 30px rgba(15, 107, 168, 0.35);
  --font-main:  'Inter', system-ui, sans-serif;
  --font-head:  'Rajdhani', 'Inter', sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius:     12px;
  --radius-lg:  20px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-main);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── Canvas trails (global background) ───────────────────── */
#trail-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

/* ── Container ─────────────────────────────────────────────── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* ── Section Base ──────────────────────────────────────────── */
.section {
  padding: 100px 0;
  position: relative;
}

.section-label {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

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

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: 0.02em;
}

.section-sub {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.gold { color: var(--gold); }
.mt-md { margin-top: 32px; display: inline-flex; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 6px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  color: #0a0a0a;
  box-shadow: 0 4px 20px rgba(217, 179, 108, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(217, 179, 108, 0.55), 0 0 0 1px rgba(217, 179, 108, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 16px rgba(217, 179, 108, 0.2);
}

.btn-lg {
  padding: 15px 36px;
  font-size: 1.05rem;
}

@keyframes pulseGold {
  0%, 100% { box-shadow: 0 4px 20px rgba(217, 179, 108, 0.3); }
  50%       { box-shadow: 0 4px 40px rgba(217, 179, 108, 0.7), 0 0 0 6px rgba(217,179,108,0.1); }
}
.pulse-gold { animation: pulseGold 2.5s ease-in-out infinite; }

/* ── Glass Card ────────────────────────────────────────────── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}

/* ── Reveal Animations ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.reveal-right {
  transform: translateX(40px);
}
.reveal.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ══════════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════════ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 18px 0;
}

#header.scrolled {
  background: rgba(5, 8, 20, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(217,179,108,0.12), 0 4px 24px rgba(0,0,0,0.5);
  padding: 12px 0;
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
  filter:
    drop-shadow(0 0 3px rgba(255,255,255,0.95))
    drop-shadow(0 0 12px rgba(217,179,108,0.45));
  transition: var(--transition);
}

.logo:hover img {
  filter:
    drop-shadow(0 0 4px rgba(255,255,255,1))
    drop-shadow(0 0 20px rgba(217,179,108,0.7));
}

#nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 6px 12px;
  border-radius: 4px;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 1.5px;
  background: var(--gold);
  transition: left var(--transition), right var(--transition);
}

.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { left: 12px; right: 12px; }

.header-cta { margin-left: 16px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 20, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav-close {
  position: absolute;
  top: 24px; right: 28px;
  font-size: 1.6rem;
  color: var(--muted);
  line-height: 1;
  transition: var(--transition);
}
.mobile-nav-close:hover { color: var(--gold); }

.mobile-nav-link {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 10px 24px;
  transition: var(--transition);
}
.mobile-nav-link:hover { color: var(--gold); }
.mobile-cta { margin-top: 16px; }

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 0.1s linear;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5, 8, 20, 0.88) 0%,
    rgba(7, 26, 46, 0.72) 50%,
    rgba(5, 8, 20, 0.80) 100%
  );
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 120px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217, 179, 108, 0.1);
  border: 1px solid rgba(217, 179, 108, 0.3);
  border-radius: 100px;
  padding: 6px 18px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-head);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.03em;
  margin-bottom: 28px;
  max-width: 820px;
}

.hero-title .line1 {
  display: block;
  font-size: clamp(3rem, 7vw, 5.5rem);
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 20px rgba(217,179,108,0.4));
}

.hero-title .line2 {
  display: block;
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--white);
  margin-top: 6px;
  text-shadow: 0 0 40px rgba(15,107,168,0.3);
}

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

.desktop-br { display: block; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.stat-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 8px 18px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: var(--transition);
}

.stat-pill:hover {
  background: rgba(217,179,108,0.12);
  border-color: rgba(217,179,108,0.4);
  color: var(--gold-light);
}

.stat-icon {
  font-size: 0.5rem;
  color: var(--gold);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(217,179,108,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

/* ══════════════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════════════ */
.about-section { background: var(--midnight); }

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

.about-text .section-title { margin-bottom: 28px; }

.about-body {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 18px;
}

.about-image-wrap {
  position: relative;
}

.about-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(217,179,108,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.about-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 65%;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(217,179,108,0.15);
}

.about-badge-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  z-index: 2;
  padding: 20px 28px;
  text-align: center;
  box-shadow: var(--glow-gold);
}

.badge-number {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
}

.badge-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* ══════════════════════════════════════════════════════════════
   DIFFERENT / FEATURES
══════════════════════════════════════════════════════════════ */
.different-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.different-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

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

.feature-card {
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

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

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217,179,108,0.35);
  box-shadow: var(--glow-gold), 0 20px 40px rgba(0,0,0,0.4);
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}

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

.feature-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
  color: var(--white);
}

.feature-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════════
   HIGHLIGHTS
══════════════════════════════════════════════════════════════ */
.highlights-section {
  background: var(--midnight);
  position: relative;
}

.highlights-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217,179,108,0.3), transparent);
}

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

.highlight-card {
  background: rgba(15, 107, 168, 0.06);
  border: 1px solid rgba(217,179,108,0.15);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.highlight-card:hover {
  background: rgba(217,179,108,0.08);
  border-color: rgba(217,179,108,0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(217,179,108,0.15);
}

.hl-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 900;
  color: var(--gold);
}

.hl-icon svg { width: 26px; height: 26px; }

.hl-text {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  text-align: center;
  line-height: 1.3;
}

/* ══════════════════════════════════════════════════════════════
   FLEET
══════════════════════════════════════════════════════════════ */
.fleet-section {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.fleet-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.fleet-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 8, 20, 0.7) 0%,
    rgba(5, 8, 20, 0.55) 50%,
    rgba(5, 8, 20, 0.85) 100%
  );
}

.fleet-container { position: relative; z-index: 2; }

.fleet-models-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
}

.fleet-model-card {
  width: calc(25% - 15px);
  min-width: 200px;
}

.fleet-model-card {
  padding: 28px 20px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.fleet-model-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}

.fleet-model-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217,179,108,0.4);
  box-shadow: var(--glow-gold);
}

.fleet-model-badge {
  display: inline-block;
  background: rgba(217,179,108,0.15);
  border: 1px solid rgba(217,179,108,0.3);
  border-radius: 100px;
  padding: 3px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.fleet-model-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
}

.fleet-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  font-style: italic;
}

/* ══════════════════════════════════════════════════════════════
   LEASE SECTION
══════════════════════════════════════════════════════════════ */
.lease-section { background: var(--midnight); }

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

.lease-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.lease-img-wrap img {
  width: 100%;
  height: 660px;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}

.lease-img-glow {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 60px rgba(217,179,108,0.15);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.lease-body {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.lease-bullets {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lease-bullet {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--white);
}

.bullet-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(217,179,108,0.5);
}

/* ══════════════════════════════════════════════════════════════
   PROCESS
══════════════════════════════════════════════════════════════ */
.process-section { background: var(--navy); }

.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 0 20px;
}

.step-number {
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, rgba(217,179,108,0.15), rgba(217,179,108,0.05));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: -24px;
  position: relative;
  z-index: 1;
  align-self: flex-start;
  padding-left: 8px;
}

.step-connector {
  width: calc(100% - 48px);
  position: absolute;
  top: 72px;
  left: calc(50% + 24px);
  height: 1px;
  background: linear-gradient(90deg, rgba(217,179,108,0.5), rgba(217,179,108,0.1));
  z-index: 0;
}
.step-connector.last { display: none; }

.step-content {
  width: 100%;
  padding: 36px 28px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.step-content:hover {
  transform: translateY(-4px);
  border-color: rgba(217,179,108,0.3);
  box-shadow: var(--glow-gold);
}

.step-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
}
.step-icon svg { width: 100%; height: 100%; }

.step-content h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
  color: var(--gold-light);
}

.step-content p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════════
   NUMBERS
══════════════════════════════════════════════════════════════ */
.numbers-section {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.numbers-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0.2;
}

.numbers-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--navy) 0%, rgba(5,8,20,0.65) 50%, var(--navy) 100%);
}

.numbers-container { position: relative; z-index: 2; }

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

.number-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(217,179,108,0.15);
  border-radius: var(--radius);
  padding: 40px 24px;
  text-align: center;
  transition: var(--transition);
}

.number-card:hover {
  border-color: rgba(217,179,108,0.4);
  transform: translateY(-4px);
  box-shadow: var(--glow-gold);
}

.number-value {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  line-height: 1;
}

.number-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* ══════════════════════════════════════════════════════════════
   REVIEWS
══════════════════════════════════════════════════════════════ */
.reviews-section { background: var(--midnight); }

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

.review-card {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 8rem;
  line-height: 1;
  color: rgba(217,179,108,0.08);
  font-family: Georgia, serif;
  pointer-events: none;
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217,179,108,0.3);
  box-shadow: var(--glow-gold);
}

.review-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 3px;
}

.review-card blockquote {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  flex: 1;
}

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

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border: 2px solid rgba(217,179,108,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  flex-shrink: 0;
}

.reviewer-info strong {
  display: block;
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
}

.reviewer-info span {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════════════════════════
   REQUIREMENTS
══════════════════════════════════════════════════════════════ */
.requirements-section { background: var(--navy); }

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

.req-img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(217,179,108,0.15);
}

.req-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 32px;
}

.req-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.05rem;
  color: var(--white);
  padding: 16px 20px;
  background: rgba(217,179,108,0.04);
  border: 1px solid rgba(217,179,108,0.12);
  border-radius: var(--radius);
  transition: var(--transition);
}

.req-item:hover {
  background: rgba(217,179,108,0.08);
  border-color: rgba(217,179,108,0.3);
  transform: translateX(4px);
}

.req-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(217,179,108,0.12);
  border: 1.5px solid rgba(217,179,108,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.req-check svg { width: 16px; height: 16px; }

/* ══════════════════════════════════════════════════════════════
   APPLY
══════════════════════════════════════════════════════════════ */
.apply-section {
  position: relative;
  overflow: hidden;
  background: var(--midnight);
}

.apply-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  opacity: 0.12;
}

.apply-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--midnight), rgba(7,26,46,0.9));
}

.apply-container { position: relative; z-index: 2; }

.form-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 52px 48px;
  box-shadow: var(--glow-gold), 0 40px 80px rgba(0,0,0,0.4);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

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

.form-group label {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.form-group input,
.form-group select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(217,179,108,0.2);
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--white);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23D9B36C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form-group select option {
  background: var(--midnight);
  color: var(--white);
}

.form-group input::placeholder { color: rgba(168,179,194,0.5); }

.form-group input:focus,
.form-group select:focus {
  border-color: rgba(217,179,108,0.6);
  background: rgba(217,179,108,0.05);
  box-shadow: 0 0 0 3px rgba(217,179,108,0.12);
}

.submit-btn {
  width: 100%;
  justify-content: center;
  margin-top: 12px;
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.submit-btn:hover::before { transform: translateX(100%); }

.btn-arrow {
  transition: transform var(--transition);
}
.submit-btn:hover .btn-arrow { transform: translateX(4px); }

.form-privacy {
  text-align: center;
  margin-top: 14px;
  font-size: 0.82rem;
  color: rgba(168,179,194,0.55);
}

.form-privacy a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: var(--transition);
}

.form-privacy a:hover {
  color: var(--gold-light);
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  margin-top: 24px;
  background: rgba(217,179,108,0.06);
  border: 1px solid rgba(217,179,108,0.25);
  border-radius: var(--radius);
}

.form-success.visible { display: block; }

.success-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.form-success p {
  color: var(--white);
  font-size: 1.05rem;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer {
  background: #020509;
  padding: 72px 0 0;
  position: relative;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217,179,108,0.4), transparent);
  box-shadow: 0 0 40px rgba(217,179,108,0.15);
}

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

.footer-logo {
  height: 70px;
  width: auto;
  margin-bottom: 20px;
  filter:
    drop-shadow(0 0 3px rgba(255,255,255,0.95))
    drop-shadow(0 0 12px rgba(217,179,108,0.4));
}

.footer-desc {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: 320px;
}

.footer-nav-col h4,
.footer-program-col h4 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-nav a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.footer-nav a:hover { color: var(--gold-light); }
.footer-nav a:hover::before { width: 12px; }

.footer-program-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-program-col li {
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-program-col li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(217,179,108,0.5);
}

.footer-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  margin-bottom: 24px;
}

.footer-bottom {
  padding-bottom: 32px;
}

.footer-copy {
  text-align: center;
  color: rgba(168,179,194,0.5);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .highlights-grid { grid-template-columns: repeat(3, 1fr); }
  .fleet-models-grid { grid-template-columns: repeat(3, 1fr); }
  .numbers-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; gap: 20px; max-width: 520px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  #nav, .header-cta { display: none; }
  .hamburger { display: flex; }

  .about-grid,
  .lease-grid,
  .requirements-grid { grid-template-columns: 1fr; gap: 48px; }

  .about-image-wrap { order: -1; }
  .about-img, .lease-img-wrap img, .req-img { height: 340px; }

  .about-badge-card { bottom: -16px; left: 0; }

  .process-timeline { grid-template-columns: 1fr; gap: 28px; }
  .step-connector { display: none; }
  .process-step { padding: 0; }
  .step-number { font-size: 3.5rem; margin-bottom: -18px; }

  .form-wrap { padding: 36px 28px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .section { padding: 72px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-models-grid { grid-template-columns: repeat(2, 1fr); }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .desktop-br { display: none; }
  .hero-stats { gap: 8px; }
  .stat-pill { font-size: 0.78rem; padding: 6px 14px; }
  .hero-actions { gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .fleet-models-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .form-wrap { padding: 28px 20px; }
}
