/* ==========================================================
   TOKENS
   ========================================================== */
:root {
  --ink-900: #0B0B0C;
  --ink-800: #19191B;
  --ink-700: #4A4A4D;
  --gold-500: #F5C518;
  --gold-400: #FFDD55;
  --vermilion-600: #C79A00;
  --vermilion-700: #9C7A00;
  --paper-50: #FAFAF7;
  --paper-0: #FFFFFF;
  --line: rgba(11, 11, 12, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'General Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-sm: 6px;
  --radius-md: 14px;
  --container: 1180px;
}

/* ==========================================================
   RESET / BASE
   ========================================================== */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--paper-50);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button, input, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 2px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.section-title {
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  margin-bottom: 8px;
}

/* ==========================================================
   BUTTONS
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--gold-500);
  color: var(--ink-900);
}
.btn-primary:hover { background: var(--gold-400); }

.btn-ghost {
  background: transparent;
  color: var(--paper-0);
  border-color: var(--line-light);
}
.btn-ghost:hover { border-color: var(--gold-500); color: var(--gold-400); }

.btn-outline {
  background: transparent;
  color: var(--ink-900);
  border-color: var(--ink-900);
  width: 100%;
  margin-top: 18px;
}
.btn-outline:hover { background: var(--ink-900); color: var(--paper-0); }

.btn-store {
  background: var(--ink-900);
  color: var(--paper-0);
}


/* ==========================================================
   UNIVERSAL SECTION GRADIENT FADE
   Usage: add class "section-fade" to any section,
   then set --fade-from and --fade-to as inline styles
   (or via a modifier class — see below)
   ========================================================== */
.section-fade {
  background: linear-gradient(
    to bottom,
    var(--fade-from) 0%,
    var(--fade-mid, var(--fade-from)) 90px,
    var(--fade-mid, var(--fade-from)) calc(100% - 90px),
    var(--fade-to) 100%
  );
}

@media (max-width: 560px) {
  .section-fade {
    background: linear-gradient(
      to bottom,
      var(--fade-from) 0%,
      var(--fade-mid, var(--fade-from)) 48px,
      var(--fade-mid, var(--fade-from)) calc(100% - 48px),
      var(--fade-to) 100%
    );
  }
}


/* ==========================================================
   HERO
   ========================================================== */
.hero {
  background: var(--ink-900);
  color: var(--paper-0);
  padding: clamp(28px, 9vh, 72px) 0 clamp(24px, 6vh, 50px);
}

/* .hero-inner is a Bootstrap .row; drive its gutters with vh so they
   compress on short viewports (iPhone SE etc.) instead of a fixed px gap */
.hero-inner {
  --bs-gutter-x: clamp(28px, 4vw, 56px);
  --bs-gutter-y: clamp(28px, 6vh, 56px);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: clamp(10px, 2vh, 18px);
}

.hero h1 {
  font-size: clamp(1.9rem, 4vw + 2vh, 3.6rem);
  margin-bottom: clamp(12px, 2.5vh, 20px);
}

.hero-sub {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 46ch;
  margin-bottom: clamp(20px, 5vh, 40px);
}

.hero-stats {
  display: flex;
  gap: clamp(20px, 4vw, 36px);
  border-top: 1px solid var(--line-light);
  padding-top: clamp(14px, 3vh, 24px);
}
.hero-stats div { display: flex; flex-direction: column; gap: 4px; }
.hero-stats strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold-400);
}
.hero-stats span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-height: 700px) and (max-width: 560px) {
  .hero-sub { margin-bottom: 20px; }
  .hero-stats { gap: 20px; padding-top: 12px; }
  .hero-stats strong { font-size: 1.1rem; }
}

/* ==========================================================
   TICKET COMPONENT (signature element)
   ========================================================== */
.ticket {
  background: var(--paper-0);
  color: var(--ink-900);
  border-radius: var(--radius-md);
  padding: 28px 26px 24px;
  box-shadow: 0 24px 48px -16px rgba(19, 31, 46, 0.45);
  position: relative;
}

.ticket-row.ticket-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
}

.ticket-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-700);
}

.ticket-code {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--vermilion-600);
  font-weight: 600;
}

.ticket-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
  min-width: 0; /* Bootstrap's .col-* still needs this to shrink below a <select>'s intrinsic content width */
}
/* pickup/drop and date/time use Bootstrap's .row/.col-6 for layout;
   the row's own g-2/mb-3 utilities handle spacing, so zero this out */
.row > .ticket-field { margin-bottom: 0; }

.ticket-field label {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--ink-700);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ticket-field input,
.ticket-field select {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 0.95rem;
  background: var(--paper-50);
}

.ticket-field select {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ticket-field input:focus,
.ticket-field select:focus {
  border-color: var(--gold-500);
  background: var(--paper-0);
}

.ticket-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230B0B0C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
  cursor: pointer;
}

.ticket-field select:invalid {
  color: var(--ink-700);
}

.ticket-feedback {
  margin-top: 12px;
  font-size: 0.82rem;
  text-align: center;
  min-height: 1.2em;
}
.ticket-feedback--success { color: #1a7f37; }
.ticket-feedback--error { color: #c0392b; }

@media (max-width: 560px) {
  .ticket-field select {
    background-position: right 10px center;
    background-size: 14px;
    padding-right: 30px;
  }
  .col-6.ticket-field select {
    font-size: 0.86rem;
    padding: 10px 26px 10px 10px;
  }
}

@media (max-width: 360px) {
  .col-6.ticket-field select {
    font-size: 0.8rem;
    padding: 9px 22px 9px 8px;
  }
}

/* dashed perforation + punched circles, ticket-stub motif */
.ticket-punch {
  position: relative;
  height: 1px;
  border-top: 1.5px dashed var(--line);
  margin: 20px -26px 20px;
}
.ticket-punch::before,
.ticket-punch::after {
  content: "";
  position: absolute;
  top: -8px;
  width: 16px;
  height: 16px;
  background: var(--ink-900);
  border-radius: 50%;
}
.ticket-punch::before { left: -8px; }
.ticket-punch::after { right: -8px; }

.ticket-submit { width: 100%; margin-top: 4px; }

.ticket-fine {
  font-size: 0.74rem;
  color: var(--ink-700);
  text-align: center;
  margin-top: 12px;
}

/* trust floating css */

/* ==========================================================
   TRUST STRIP (floating over hero→about, no own background —
   the existing .about gradient does all the color work,
   this just overlays cards on top of it, so there's zero seam)
   ========================================================== */
.hero { position: relative; }


.trust-strip {
  padding-top: 56px;   /* gap below the booking ticket */
  padding-bottom: 8px;
  z-index: 6;
}
.trust-strip .row {
  pointer-events: auto;   /* cards stay clickable/hoverable */
}

.trust-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 26px 16px 20px;
  min-height: 142px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.trust-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  opacity: 0.35;
  transition: opacity 0.25s ease;
}

.trust-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 197, 24, 0.45);
  background: linear-gradient(180deg, rgba(245, 197, 24, 0.07), rgba(255, 255, 255, 0.015));
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(245, 197, 24, 0.12);
}

.trust-card:hover::before { opacity: 1; }

.trust-icon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(245, 197, 24, 0.35);
  background: rgba(245, 197, 24, 0.06);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.trust-card:hover .trust-icon-badge {
  transform: scale(1.06);
  border-color: var(--gold-500);
  background: rgba(245, 197, 24, 0.12);
}

.trust-icon { font-size: 1.25rem; line-height: 1; }

.trust-title {
  color: var(--paper-0);
  font-weight: 600;
  font-size: 0.9rem;
}

.trust-sub {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* give about's content room so it doesn't collide with the floating cards */
.about { padding-top: 170px; }

@media (max-width: 768px) {
  .trust-strip { bottom: 40px; }
  .trust-card { min-height: 120px; padding: 20px 10px 16px; }
  .trust-icon-badge { width: 38px; height: 38px; }
  .about { padding-top: 50px; }
}

@media (max-width: 420px) {
  .trust-strip { position: static; margin-top: 24px; }
  .about { padding-top: 60px; }
}

/* ==========================================================
   TRIP TYPES
   ========================================================== */
.trip-types { padding: 88px 0; }

.card-grid--3 { grid-template-columns: repeat(3, 1fr); }

.trip-card {
  background: var(--paper-0);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.trip-card:hover {
  border-color: var(--gold-500);
  transform: translateY(-3px);
}

.trip-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--ink-900);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.trip-icon svg { width: 22px; height: 22px; }

.trip-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.trip-card p {
  font-size: 0.9rem;
  color: var(--ink-700);
  margin-bottom: 16px;
}
.trip-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--vermilion-600);
}

/* ==========================================================
   WHY CHOOSE US
   ========================================================== */
.why {
  background: var(--ink-900);
  color: var(--paper-0);
  padding: 88px 0;
}

.why-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
}

.why-copy .section-title { color: var(--paper-0); }
.why-sub { color: rgba(255, 255, 255, 0.68); font-size: 1rem; max-width: 40ch; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 28px;
}

.why-number {
  font-family: var(--font-mono);
  color: var(--gold-500);
  font-size: 0.85rem;
  display: block;
  margin-bottom: 10px;
}

.why-item h3 { font-size: 1.05rem; margin-bottom: 8px; }
.why-item p { color: rgba(255, 255, 255, 0.62); font-size: 0.9rem; }

/* ==========================================================
   ROUTES / FARE TICKETS
   ========================================================== */
.routes { padding: 88px 0; }

.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
}

.section-link {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--vermilion-600);
}

.route-ticket h3 { font-size: 1.15rem; margin-bottom: 6px; }

.route-meta {
  display: flex;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--ink-700);
  font-family: var(--font-mono);
}

.route-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.route-price-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--vermilion-600);
}
.route-price-note {
  font-size: 0.8rem;
  color: var(--ink-700);
}

/* ==========================================================
   APP CTA STRIP
   ========================================================== */
.app-cta {
  background: var(--gold-500);
  color: var(--ink-900);
  padding: 56px 0;
}
.app-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.app-cta h2 { font-size: 1.7rem; margin-bottom: 6px; }
.app-cta p { font-size: 0.95rem; opacity: 0.85; }
.app-buttons { display: flex; gap: 12px; justify-content: center; width: 100%; }



/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 900px) {
  .why-inner { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .card-grid--4 { grid-template-columns: 1fr 1fr; }
  .card-grid--3 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .card-grid--4 { grid-template-columns: 1fr; }
  .header-phone { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}

/* ==========================================================
   ABOUT US
   ========================================================== */
.about {
  padding: 50px 0;
  background: var(--paper-0);

}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.about-lead {
  font-size: 1.05rem;
  color: var(--ink-700);
  max-width: 52ch;
  margin: 16px 0 28px;
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--ink-900);
}

.about-check {
  flex: 0 0 20px;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--ink-900);
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.about-media {
  position: relative;
}

.about-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* floating ticket-style stat card, echoes .ticket component */
.about-stat {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--paper-0);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 48px -16px rgba(19, 31, 46, 0.45);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-stat strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--vermilion-600);
}

.about-stat span {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--ink-700);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================
   RESPONSIVE — add inside your existing @media (max-width: 900px)
   ========================================================== */
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-media { order: -1; }
  .about-stat { left: 16px; bottom: -16px; }
}

.eyebrow--capsule {
  display: inline-flex;
  align-items: center;
  background: var(--ink-900);
  color: var(--gold-400);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  box-shadow: 0 6px 16px -4px rgba(11, 11, 12, 0.35);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
  cursor: default;
}

.eyebrow--capsule:hover {
  background: var(--gold-500);
  color: var(--ink-900);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -6px rgba(197, 154, 0, 0.45);
}

/* Coverage / Our Services badges: gold fill, black text in both states */
.coverage .eyebrow--capsule,
.our-services .eyebrow--capsule {
  background: var(--gold-500);
  color: var(--ink-900);
}

.coverage .eyebrow--capsule:hover,
.our-services .eyebrow--capsule:hover {
  background: var(--gold-400);
  color: var(--ink-900);
}

/* ==========================================================
   OUR FLEET
   ========================================================== */
.fleet {
  padding: 88px 0 25px;
  background: var(--paper-50);
}

.fleet-grid { margin-top: 40px; }

.fleet-card {
  background: var(--paper-0);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.fleet-card:hover {
  border-color: var(--gold-500);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(11, 11, 12, 0.25);
}

.fleet-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.fleet-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}
.fleet-card:hover .fleet-media img { transform: scale(1.05); }

.fleet-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold-500);
  color: var(--ink-900);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 5px 10px;
  border-radius: 999px;
}

.fleet-body { padding: 20px 20px 22px; }

.fleet-body h3 { font-size: 1.1rem; margin-bottom: 8px; }

.fleet-specs {
  display: flex;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--ink-700);
  margin-bottom: 10px;
}

.fleet-desc {
  font-size: 0.88rem;
  color: var(--ink-700);
  margin-bottom: 16px;
}

.fleet-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-top: 14px;
  border-top: 1.5px dashed var(--line);
}
.fleet-price-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--vermilion-600);
}
.fleet-price-note {
  font-size: 0.78rem;
  color: var(--ink-700);
}

.fleet-body .btn-outline { margin-top: 16px; }


/* ==========================================================
   BACKGROUND UTILITIES
   ========================================================== */
.bg-black {
  background: var(--ink-900);
  color: var(--paper-0);
}
.bg-black .section-title,
.bg-black h3 { color: var(--paper-0); }
.bg-black p { color: rgba(255, 255, 255, 0.68); }

.bg-yellow-light {
  background: #FBEEB8; /* light tint off gold-500, easy on eyes vs full gold */
  color: var(--ink-900);
}


.bg-grey {
  background: #E2E2DC;
  color: var(--ink-900);
}

/* ==========================================================
   SECTION DIVIDER — soft blurred gradient fade (pseudo-element version)
   ========================================================== */

@media (max-width: 560px) {
  .fleet {
    background: linear-gradient(
      to bottom,
      var(--paper-0) 0%,
      #EDEDEA 60px,
      #EDEDEA calc(100% - 60px),
      var(--paper-50) 100%
    );
  }
}


/* FIX — Fleet's gradient must exit into ink-900, not paper-50 */
.fleet {
    background: linear-gradient(
        to bottom,
        var(--paper-0) 0,
        #E2E2DC 70px,
        #E2E2DC 100%
    );
}

/* ==========================================================
   OUR SERVICES — synced dual slider
   ========================================================== */
.our-services { padding: 96px 0; }
.our-services > .container > .eyebrow { display: table; margin: 0 auto 20px; text-align: center; }
.our-services .section-title { color: var(--paper-0); margin-top: 4px; text-align: center; }

.services-lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 75ch;
  margin: 16px auto 48px;
  text-align: center;
}

.services-slider {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  height: 440px;
}

/* ---------- LEFT: horizontal image slider ---------- */
.services-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  height: 100%;
}

.services-media-track {
  display: flex;
  width: 400%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.services-media-slide {
  width: 25%;
  height: 100%;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}

/* ---------- RIGHT: vertical card slider ---------- */
.services-cards {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-light);
  height: 100%;
}

.services-cards-track {
  display: flex;
  flex-direction: column;
  height: 400%;
  transition: transform 0.6s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.services-cards-slide {
  height: 25%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px 48px;
}

.services-slide-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--gold-500);
  margin-bottom: 12px;
}

.services-cards-slide h3 {
  font-size: 1.6rem;
  color: var(--paper-0);
  margin-bottom: 12px;
}

.services-cards-slide p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.62);
  max-width: 42ch;
  margin-bottom: 22px;
}

.services-slide-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--gold-400);
  width: fit-content;
}
.services-slide-link span { transition: transform 0.15s ease; }
.services-slide-link:hover span { transform: translateX(4px); }

/* ---------- dots ---------- */
.services-dots {
  position: absolute;
  bottom: 24px;
  left: 48px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.services-dot {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease;
}
.services-dot.active { background: var(--gold-500); }
.services-dot:hover { background: rgba(255, 255, 255, 0.5); }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 900px) {
  .services-slider {
    grid-template-columns: 1fr;
    height: auto;
  }
  .services-media { height: 240px; }
  .services-cards { height: 260px; }
  .services-cards-slide { padding: 32px 28px; }
  .services-cards-slide h3 { font-size: 1.35rem; }
}

.our-services {
background: linear-gradient(
    to bottom,
    rgb(226,226,220) 0%,
    rgba(212,212,208,.98) 5%,
    rgba(196,196,192,.96) 10%,
    rgba(176,176,172,.94) 15%,
    rgba(150,150,148,.92) 20%,
    rgba(120,120,118,.90) 25%,
    rgba(90,90,90,.90) 30%,
    rgba(65,65,65,.93) 35%,
    rgba(45,45,45,.95) 40%,
    rgba(25,25,25,.98) 60%,
    var(--ink-900) 100%
);

    padding-top: 90px;
}

.about {
    background: linear-gradient(
        to bottom,
        #0B0B0C 0%,
        #171718 5%,
        #2C2C2D 10%,
        #4A4A4B 15%,
        #737370 20%,
        #A8A8A2 30%,
        #D7D7D2 40%,
        #F2F2EF 50%,
        #FFFFFF 100%
    );

    padding:120px 0 50px;
}

.fleet {
    background: linear-gradient(
        to bottom,
        #FFFFFF 0%,
        #F7F7F4 20%,
        #F0F0EC 30%,
        #EAEAE5 35%,
        #E6E6E1 40%,
        #E3E3DD 50%,
        #E2E2DC 60%,
        #E2E2DC 100%
    );

    padding: 120px 0 25px;
}

.about {
  --fade-from: var(--ink-900);   /* hero above is black */
  --fade-mid:  var(--paper-0);
  --fade-to:   #E2E2DC;          /* fleet below is grey */
}

.fleet {
  --fade-from: var(--paper-0);   /* about above is white */
  --fade-mid:  #E2E2DC;
  --fade-to:   var(--ink-900);   /* services below is black */
}

.our-services,
.our-services-v2 {
  --fade-from: #E2E2DC;          /* fleet above is grey */
  --fade-mid:  var(--ink-900);
  --fade-to:   var(--ink-900);   /* why below is also black — no visible seam needed */
}

/* ==========================================================
   COVERAGE
   ========================================================== */
.coverage {
  background: var(--ink-900);
  padding: 88px 0;
}

.coverage .section-head-row {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.coverage .section-head-row > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.coverage-sub {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  max-width: 75ch;
  margin: 4px auto 0;
}

.coverage .section-link { color: var(--gold-400); }

.coverage-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.coverage-chip {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  padding: 9px 18px;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.coverage-chip:hover,
.coverage-chip:focus-visible {
  border-color: var(--gold-500);
  color: var(--gold-400);
  background: rgba(245, 197, 24, 0.06);
  transform: translateY(-2px);
}

@media (max-width: 560px) {
  .coverage { padding: 64px 0; }
  .coverage-grid { gap: 8px; margin-top: 26px; }
  .coverage-chip { font-size: 0.76rem; padding: 8px 14px; }
}

/* ==========================================================
   HOW TO BOOK — vertical, car drives down on scroll
   ========================================================== */
.how-to-book {
  background: var(--paper-0);
  padding: 88px 0;
}

.steps-vertical {
  position: relative;
  margin-top: 48px;
  max-width: 620px;
}

.steps-track {
  position: absolute;
  left: 22px;
  top: 22px;
  bottom: 22px;
  width: 2px;
  background: var(--line);
  transform: translateX(-50%);
  z-index: 1;
}

.steps-track-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(var(--gold-500), var(--vermilion-600));
}

.steps-car {
  position: absolute;
  left: 22px;
  top: 0%;
  transform: translate(-50%, -50%);
  font-size: 1.6rem;
  line-height: 1;
  z-index: 3;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
  transition: top 0.05s linear;
}

.step-row {
  position: relative;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 40px 0;
  z-index: 2;
}
.step-row:first-child { padding-top: 0; }
.step-row:last-child { padding-bottom: 0; }

.step-number {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper-50);
  border: 2px solid var(--line);
  color: var(--ink-700);
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.step-row.active .step-number {
  background: var(--ink-900);
  border-color: var(--gold-500);
  color: var(--gold-400);
  transform: scale(1.08);
}

.step-copy h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  transition: color 0.25s ease;
}
.step-copy p {
  font-size: 0.92rem;
  color: var(--ink-700);
  max-width: 48ch;
}
.step-row.active .step-copy h3 { color: var(--vermilion-600); }

.how-to-book-cta {
  text-align: center;
  margin-top: 52px;
}

@media (max-width: 560px) {
  .how-to-book { padding: 64px 0; }
  .steps-vertical { margin-top: 32px; }
  .step-row { padding: 30px 0; gap: 20px; }
  .step-number { flex-basis: 38px; width: 38px; height: 38px; font-size: 0.8rem; }
  .steps-track, .steps-car { left: 19px; }
}
/* ==========================================================
   HOW TO BOOK — centered timeline, car drives down on scroll
   ========================================================== */
.steps-vertical {
  position: relative;
  margin: 56px auto 0;
  max-width: 720px;
}

.steps-track {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--line);
  transform: translateX(-50%);
  z-index: 1;
}

.steps-track-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(var(--gold-500), var(--vermilion-600));
}

.steps-car {
  position: absolute;
  left: 50%;
  top: 0%;
  transform: translate(-50%, -50%) rotate(-90deg);
  font-size: 2.7rem;
  line-height: 1;
  z-index: 3;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
  transition: top 0.05s linear;
}
/* if the taxi emoji renders nose-up instead of nose-down on your
   platform, flip the sign: rotate(90deg) instead of rotate(-90deg) */

.step-row {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  column-gap: 28px;
  align-items: center;
  padding: 46px 0;
  position: relative;
  z-index: 2;
}
.step-row:first-child { padding-top: 0; }
.step-row:last-child { padding-bottom: 0; }

.step-row--left .step-copy { grid-column: 1; text-align: right; }
.step-row--left .step-spacer { grid-column: 3; }

.step-row--right .step-spacer { grid-column: 1; }
.step-row--right .step-copy { grid-column: 3; text-align: left; }

.step-number {
  grid-column: 2;
  justify-self: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper-50);
  border: 2px solid var(--line);
  color: var(--ink-700);
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.step-row.active .step-number {
  background: var(--ink-900);
  border-color: var(--gold-500);
  color: var(--gold-400);
  transform: scale(1.08);
}

.step-copy h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  transition: color 0.25s ease;
}
.step-copy p {
  font-size: 0.92rem;
  color: var(--ink-700);
  max-width: 40ch;
}
.step-row--left .step-copy p { margin-left: auto; }
.step-row.active .step-copy h3 { color: var(--vermilion-600); }

.how-to-book-cta {
  text-align: center;
  margin-top: 56px;
}

@media (max-width: 700px) {
  .steps-vertical { max-width: 100%; margin-top: 36px; }
  .steps-track { left: 22px; }
  .steps-car { left: 22px; font-size: 2rem; }

  .step-row {
    grid-template-columns: 44px 1fr;
    column-gap: 20px;
    padding: 32px 0;
  }
  .step-row--left .step-copy,
  .step-row--right .step-copy {
    grid-column: 2;
    text-align: left;
  }
  .step-row--left .step-copy p { margin-left: 0; }
  .step-row--left .step-spacer,
  .step-row--right .step-spacer { display: none; }
  .step-number { grid-column: 1; justify-self: start; }
}

@media (max-width: 560px) {
  .how-to-book { padding: 64px 0; }
}

.how-to-book {
    background: linear-gradient(
        to bottom,
        #0B0B0C 0%,
        #161617 1%,
        #242425 5%,
        #383839 10%,
        #555556 15%,
        #767674 26%,
        #9A9A96 36%,
        
        var(--paper-0) 100%
    );

    padding: 88px 0;
}

.how-to-book .section-title { color: var(--paper-0); }
.how-to-book .section-link { color: var(--gold-400); }

.how-to-book .section-head-row {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.how-to-book .section-head-row > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.how-to-book-lead {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  max-width: 70ch;
  margin: 10px auto 0;
}

@media (max-width: 560px) {
  .how-to-book { padding: 64px 0; }
}

/* ==========================================================
   WHY CHOOSE US
   ========================================================== */
.why {
  /* fades in from .trip-types (white/paper-50) above it, same
     stop-timing as .fleet's fade from .about, resting on a
     light yellowish-grey instead of .fleet's cool grey */
  background: linear-gradient(
    to bottom,
    #FFFFFF 0%,
    #F8F5EA 20%,
    #F4EEDD 30%,
    #F0E9D2 35%,
    #EDE6CC 40%,
    #EBE3C7 50%,
    #ECE4CE 60%,
    #ECE4CE 100%
  );
  padding: 80px 0 25px;
}

.why-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.why-sub { color: var(--ink-700); font-size: 1rem; max-width: 40ch; margin-bottom: 28px; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.why-item {
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.5);
  transition: border-color 0.15s ease, transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.why-item:hover {
  border-color: var(--gold-500);
  background: var(--paper-0);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(11, 11, 12, 0.18);
}

.why-number {
  font-family: var(--font-mono);
  color: var(--vermilion-600);
  font-size: 0.85rem;
  display: block;
  margin-bottom: 10px;
}

.why-item h3 { font-size: 1.05rem; margin-bottom: 8px; }
.why-item p { color: var(--ink-700); font-size: 0.9rem; }

@media (max-width: 900px) {
  .why-inner { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}

.why-copy .section-title { color: var(--ink-900); }
.why-item h3 { color: var(--ink-900); }

/* ==========================================================
   CUSTOMER REVIEWS
   ========================================================== */
.reviews {
  background: #ECE4CE;
  padding: 88px 0;
}

.reviews-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.reviews-sub { color: var(--ink-700); font-size: 1rem; max-width: 38ch; margin-top: 4px; }

.reviews-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  width: 44px;
}

.reviews-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper-0);
  color: var(--ink-900);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.reviews-arrow svg { width: 18px; height: 18px; }
.reviews-arrow:hover { border-color: var(--gold-500); background: var(--gold-500); }
.reviews-arrow:disabled { opacity: 0.35; cursor: not-allowed; }
.reviews-arrow:disabled:hover { background: var(--paper-0); border-color: var(--line); }

.reviews-counter {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink-700);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.reviews-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reviews-track-wrap {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 380px;
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.reviews-track {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.review-ticket {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.review-quote {
  font-size: 0.95rem;
  color: var(--ink-700);
  line-height: 1.6;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.review-avatar {
  flex: 0 0 38px;
  height: 38px;
  width: 38px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--ink-900);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-name { display: block; font-size: 0.9rem; font-weight: 600; color: var(--ink-900); }
.review-route { display: block; font-family: var(--font-mono); font-size: 0.76rem; color: var(--ink-700); margin-top: 2px; }

.ticket-machine {
  width: 100%;
  max-width: 400px;
  background: var(--ink-900);
  border-radius: 0 0 20px 20px;
  padding: 16px 24px 20px;
  box-shadow: 0 20px 40px -18px rgba(11, 11, 12, 0.4);
}

.ticket-machine-slot {
  height: 10px;
  border-radius: 6px;
  background: var(--ink-800);
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.6);
  margin: 0 auto 14px;
  width: 60%;
}

.ticket-machine-face {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ticket-machine-label {
  font-family: var(--font-mono);
  color: var(--gold-400);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticket-machine-led {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 8px var(--gold-500);
}

@media (max-width: 900px) {
  .reviews-inner { grid-template-columns: 1fr; }
  .reviews-nav { flex-direction: row; margin-top: 20px; width: auto; }
  .reviews-stage { margin-top: 28px; }
  .reviews-track-wrap { height: 320px; }
}

/* ==========================================================
   FAQ
   ========================================================== */
.faq {
  background: var(--paper-0);
  padding: 96px 0;
}

.faq-inner {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 56px;
  align-items: start;
}

.faq-copy { position: sticky; top: 100px; }

.faq-sub {
  color: var(--ink-700);
  font-size: 1rem;
  max-width: 34ch;
  margin: 4px 0 28px;
}

.faq-call { width: auto; }

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }

.faq-number {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--vermilion-600);
  flex: 0 0 24px;
}

.faq-question-text {
  flex: 1;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink-900);
}

.faq-icon {
  flex: 0 0 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--line);
  position: relative;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.2s ease;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--ink-900);
  transition: transform 0.2s ease;
}
.faq-icon::before { width: 10px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-icon::after { width: 1.5px; height: 10px; transform: translate(-50%, -50%); }

.faq-item[open] .faq-icon { border-color: var(--gold-500); background: var(--gold-500); }
.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after { background: var(--ink-900); }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg) scaleY(0); }

.faq-answer { padding: 0 0 24px 42px; }
.faq-answer p {
  color: var(--ink-700);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 58ch;
}

@media (max-width: 900px) {
  .faq-inner { grid-template-columns: 1fr; }
  .faq-copy { position: static; }
  .faq-answer { padding-left: 0; }
}



/* ==========================================
   GLOBAL FONT SYSTEM
   Display: Space Grotesk (modern, tech-forward headings)
   Body: General Sans (clean, highly readable)
   Mono: JetBrains Mono (ticket labels/codes)
   ========================================== */

h1 {
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
}

h3 {
    font-size: 1.35rem;
    font-weight: 600;
}

/* Description/body copy set to semibold for a premium, confident read */
p,
li,
label {
    font-weight: 600;
}

/* ==========================================
   ABOUT
========================================== */

.about {
    background: #FFFFFF;
    padding: 120px 0 80px;
}
