/* ===========================================================
   HOME CAB PATNA — Stylesheet
   Design language: route-board / departure-plate transit theme
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* PRIMARY — Taxi Yellow */
  --primary-50:  #FFF9E8;
  --primary-100: #FFF2CC;
  --primary-200: #FFE699;
  --primary-300: #FFD966;
  --primary-400: #FFCC33;
  --primary-500: #F5B400;
  --primary-600: #D99D00;
  --primary-700: #B88400;
  --primary-800: #8F6700;
  --primary-900: #664900;

  /* NEUTRALS */
  --background: #FAFBFC;
  --background-alt: #F4F6F8;
  --surface: #FFFFFF;
  --surface-hover: #F8F9FB;
  --surface-secondary: #F1F3F5;

  /* INK (dark surfaces — hero / footer / signage) */
  --ink-900: #0B1220;
  --ink-800: #111827;
  --ink-700: #1F2937;
  --ink-600: #374151;

  /* TEXT */
  --text-primary: #111827;
  --text-secondary: #4B5563;
  --text-muted: #6B7280;
  --text-disabled: #9CA3AF;
  --text-inverse: #FFFFFF;

  /* BORDERS */
  --border-light: #E5E7EB;
  --border-default: #D1D5DB;
  --border-strong: #9CA3AF;

  /* ACCENT — Teal */
  --accent: #0F766E;
  --accent-hover: #0C5F59;
  --accent-active: #084C47;
  --accent-light: #E6F7F5;

  /* BUTTONS */
  --btn-primary-bg: var(--primary-500);
  --btn-primary-hover: var(--primary-600);
  --btn-primary-active: var(--primary-700);
  --btn-primary-text: #111827;

  --btn-secondary-bg: #FFFFFF;
  --btn-secondary-hover: #F3F4F6;
  --btn-secondary-active: #E5E7EB;
  --btn-secondary-text: #111827;
  --btn-secondary-border: #D1D5DB;

  --btn-outline-border: var(--primary-500);
  --btn-outline-text: var(--primary-700);
  --btn-outline-hover: var(--primary-50);

  /* LINKS */
  --link: #0F62FE;
  --link-hover: #0043CE;

  /* FORMS */
  --input-bg: #FFFFFF;
  --input-border: #D1D5DB;
  --input-focus: var(--primary-500);
  --input-placeholder: #9CA3AF;

  /* STATUS */
  --success: #16A34A;
  --success-bg: #ECFDF3;
  --success-border: #BBF7D0;
  --success-text: #166534;

  --error: #DC2626;
  --error-bg: #FEF2F2;
  --error-border: #FECACA;
  --error-text: #991B1B;

  /* SHADOWS */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.12);
  --shadow-yellow: 0 10px 30px rgba(245,180,0,0.25);

  /* FOCUS */
  --focus-ring: rgba(245, 180, 0, 0.35);

  /* OVERLAYS */
  --overlay-light: rgba(17, 24, 39, 0.04);
  --overlay-medium: rgba(17, 24, 39, 0.08);
  --overlay-dark: rgba(17, 24, 39, 0.16);

  /* TYPE SCALE */
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --fs-h1: clamp(2.4rem, 1.6rem + 3vw, 4.2rem);
  --fs-h2: clamp(1.9rem, 1.4rem + 1.8vw, 2.8rem);
  --fs-h3: clamp(1.3rem, 1.1rem + 0.8vw, 1.6rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;

  /* LAYOUT */
  --container-max: 1320px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --section-pad: 100px;
}

/* ===========================================================
   RESET
   =========================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, figure { margin: 0; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; }

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink-800);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
  border-radius: 4px;
}

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

section { padding: var(--section-pad) 0; }
@media (max-width: 1024px) { section { padding: 80px 0; } }
@media (max-width: 640px)  { section { padding: 60px 0; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow i { font-size: 0.7rem; }

.section-head {
  max-width: 640px;
  margin-bottom: 50px;
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: var(--fs-h2); font-weight: 800; margin-bottom: 14px; }
.section-head p { color: var(--text-secondary); font-size: 1.05rem; }

/* ===========================================================
   BUTTONS
   =========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 30px;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  box-shadow: var(--shadow-yellow);
}
.btn-primary:hover { background: var(--btn-primary-hover); transform: translateY(-3px); }
.btn-primary:active { background: var(--btn-primary-active); }

.btn-outline-light {
  border: 1.5px solid rgba(255,255,255,0.45);
  color: var(--text-inverse);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(6px);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.16); transform: translateY(-3px); }

.btn-dark {
  background: var(--ink-800);
  color: var(--text-inverse);
}
.btn-dark:hover { background: var(--ink-700); transform: translateY(-3px); }

.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ===========================================================
   NAVBAR
   =========================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar.scrolled {
  background: rgba(250, 251, 252, 0.92);
  backdrop-filter: blur(14px);
  padding: 14px 0;
  box-shadow: var(--shadow-md);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text-inverse);
  transition: color 0.35s ease;
}
.navbar.scrolled .brand { color: var(--ink-800); }
.brand .mark {
  width: 42px; height: 42px;
  background: var(--primary-500);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-800);
  font-size: 1.15rem;
  flex-shrink: 0;
}
.brand .name span { display: block; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.12em; color: var(--primary-500); text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
  position: relative;
  transition: color 0.3s ease;
  padding: 4px 0;
}
.navbar.scrolled .nav-links a { color: var(--text-secondary); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--primary-500);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--primary-500); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-call {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.92rem;
  color: var(--text-inverse);
}
.navbar.scrolled .nav-call { color: var(--ink-800); }
.nav-call i { color: var(--primary-500); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1100;
}
.hamburger span {
  width: 26px; height: 2.5px;
  background: var(--text-inverse);
  border-radius: 2px;
  transition: 0.3s ease;
}
.navbar.scrolled .hamburger span { background: var(--ink-800); }

@media (max-width: 940px) {
  .nav-links { display: none; }
  .nav-call span { display: none; }
  .hamburger { display: flex; }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink-800);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.4s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-inverse);
}
.mobile-menu a:hover { color: var(--primary-500); }
.mobile-close {
  position: absolute;
  top: 28px; right: 28px;
  font-size: 1.6rem;
  color: var(--text-inverse);
}

/* ===========================================================
   HERO — destination-plate signage
   =========================================================== */
/* ==========================================================================
   HERO — BOOKING
   Split hero: copy + trust signals on the left, quick-booking card on the
   right. Built on the taxi-yellow / ink theme tokens.
   ========================================================================== */

/* ==========================================================================
   HERO — BOOKING
   Split hero: copy + trust signals on the left, quick-booking card on the
   right. Built on the taxi-yellow / ink theme tokens.
   ========================================================================== */

.hero--booking {
  position: relative;
  min-height: 100vh;
  min-height: 100svh; /* avoids mobile browser-chrome jump */
  display: flex;
  align-items: center;
  /* fluid top offset for a fixed/sticky header — this was previously
     commented out, which left a 769–1024px dead zone with NO top padding
     and caused the hero to crowd straight under the header on tablets */
  padding: clamp(96px, 11vw, 160px) 0 0;
  overflow: hidden;
  color: var(--text-inverse);
  background: var(--ink-800);
}

@media (max-width: 1024px) {
  .hero--booking {
    padding-top: clamp(88px, 14vw, 120px);
  }
}

@media (max-width: 768px) {
  @media (max-width: 768px) {
  .hero--booking {
    min-height: auto;
    align-items: flex-start; /* stop vertical centering — once the layout
                                 stacks, content can be taller than the
                                 viewport, and centering clips both ends */
    padding: 100px 0 32px;   /* bottom padding so the card/strip never
                                 sits flush against whatever's next */
  }
}
}

@media (max-width: 400px) {
  .hero--booking {
    padding-top: 88px;
  }
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background: url('img/banner.png') center right / cover no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg,
      rgba(11, 18, 32, 0.80) 0%,
      rgba(11, 18, 32, 0.66) 30%,
      rgba(11, 18, 32, 0.40) 55%,
      rgba(11, 18, 32, 0.22) 72%,
      rgba(11, 18, 32, 0.10) 100%);
}

@media (max-width: 768px) {
  .hero-overlay {
    /* flatten the side-light gradient into a top-to-bottom wash so copy
       stays legible once the layout stacks */
    background:
      linear-gradient(180deg,
        rgba(11, 18, 32, 0.78) 0%,
        rgba(11, 18, 32, 0.78) 55%,
        rgba(11, 18, 32, 0.92) 100%);
  }
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 430px);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-bottom: clamp(48px, 8vw, 72px);
}

@media (max-width: 1024px) {
  .hero-shell {
    grid-template-columns: 1fr;
    max-width: 560px;
    /* a bit more separation between the copy block and the card now that
       they stack — on a long page this is the seam that read as "packed" */
    row-gap: clamp(40px, 9vw, 56px);
  }
}

@media (max-width: 480px) {
  .hero-shell {
    row-gap: 36px;
  }
}

.hero-copy {
  max-width: 620px;
}

@media (max-width: 1024px) {
  .hero-copy {
    max-width: none;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--primary-300);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.hero--booking h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 1.5rem + 2.6vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #F9FAFB;
  margin: 0 0 18px;
  max-width: 14ch;
}

.hero--booking h1 em {
  font-style: normal;
  color: var(--primary-400);
}

.hero--booking p {
  font-family: var(--font-body);
  font-size: clamp(0.96rem, 0.9rem + 0.3vw, 1.06rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 54ch;
  margin: 0 0 28px;
}

@media (max-width: 768px) {
  .hero--booking h1 {
    max-width: none;
  }
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.hero-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-cta .btn-secondary-glass {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--text-inverse);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero-cta .btn-secondary-glass:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
}

.hero-trust i {
  color: var(--primary-400);
}

/* --------------------------------------------------------------------
   QUICK BOOKING CARD
   -------------------------------------------------------------------- */

.hero-card {
  position: relative;
  z-index: 2;
  background: var(--primary-50);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: var(--text-primary);
  box-shadow: var(--shadow-lg);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

@media (max-width: 1024px) {
  .hero-card {
    width: 100%;
    max-width: 480px;
  }
}

@media (max-width: 480px) {
  .hero-card {
    padding: 22px 20px;
    border-radius: var(--radius-md);
  }
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero-card-top {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.hero-card-kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--primary-100);
  color: var(--primary-700);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  line-height: 1.1;
  color: var(--text-primary);
  margin: 0 0 8px;
}

.hero-card p {
  color: var(--text-secondary);
  font-size: 0.96rem;
  line-height: 1.6;
  margin: 0;
}

/* trip type switch */

.trip-switch {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

@media (max-width: 360px) {
  .trip-switch {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .trip-switch::-webkit-scrollbar {
    display: none;
  }

  .trip-chip {
    flex: 0 0 auto;
  }
}

.trip-chip {
  border: 1px solid var(--border-light);
  background: var(--surface);
  color: var(--text-secondary);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.trip-chip:hover {
  border-color: var(--border-strong);
}

.trip-chip:focus-visible {
  outline: 2px solid var(--primary-500);
  outline-offset: 2px;
}

.trip-chip.is-active {
  background: var(--primary-200);
  border-color: var(--primary-500);
  color: var(--primary-900);
  box-shadow: inset 0 0 0 1px rgba(245, 180, 0, 0.18);
}

/* booking form
   Pickup/Drop are full-width (.form-field--full); Date and Cab Type pair
   up two-across at every breakpoint, including mobile. That's 3 visual
   rows instead of 4 stacked fields — shorter form, less scrolling, and
   the card stops feeling like a long stack of identical boxes. */

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

.form-field--full {
  grid-column: 1 / -1;
}

@media (max-width: 340px) {
  /* only the narrowest phones lose the date/cab-type pairing */
  .hero-form .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field--full {
    grid-column: auto;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0; /* prevents grid blowout from long option/placeholder text */
}

.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-field input,
.form-field select {
  height: 50px;
  width: 100%;
  border: 1px solid var(--input-border);
  border-radius: var(--radius-sm);
  background: var(--input-bg);
  padding: 0 14px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  box-shadow: none;
}

.form-field input::placeholder {
  color: var(--input-placeholder);
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--input-focus);
  box-shadow: 0 0 0 4px var(--focus-ring);
  outline: none;
}

.hero-form .btn-block {
  width: 100%;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-card-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  border-top: 1px solid var(--border-light);
  margin-top: 20px;
  padding-top: 16px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.hero-card-foot i {
  color: var(--accent);
}

/* --------------------------------------------------------------------
   POPULAR ROUTES STRIP
   On desktop this pins to the bottom edge of the hero. On smaller screens
   it drops into normal flow (so it can never overlap the booking card)
   and becomes a horizontally-scrollable strip.
   -------------------------------------------------------------------- */

.hero-mini-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  background: rgba(15, 23, 42, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.hero-mini-strip-inner {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  padding: 10px 0;
}

.hero-mini-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  white-space: nowrap;
}

.hero-mini-strip i {
  color: var(--primary-400);
}

@media (max-width: 1024px) {
  .hero-mini-strip {
    position: static;
    margin-top: 36px;
  }

  .hero-mini-strip-inner {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 22px;
    padding: 12px clamp(16px, 5vw, 24px);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .hero-mini-strip-inner::-webkit-scrollbar {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-cta .btn-secondary-glass {
    transition: none;
  }
}


/* ===========================================================
   ABOUT
   =========================================================== */
.about { background: var(--surface); }
.about .container {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img { width: 100%; height: 560px; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: 26px; left: 26px;
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-badge .num { font-family: var(--font-display); font-weight: 800; font-size: 1.8rem; color: var(--primary-600); }
.about-badge .lbl { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; max-width: 110px; line-height: 1.3; }

.about-text h2 { font-size: var(--fs-h2); font-weight: 800; margin-bottom: 18px; }
.about-text > p { color: var(--text-secondary); font-size: 1.05rem; margin-bottom: 28px; }

.highlight-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.highlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-weight: 600;
  color: var(--text-primary);
}
.highlight-list .ic {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
}

.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stat-card {
  background: var(--background-alt);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: center;
}
.stat-card .stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--ink-800);
}
.stat-card .stat-num span { color: var(--primary-600); }
.stat-card .stat-lbl { font-size: 0.82rem; color: var(--text-muted); font-weight: 600; margin-top: 4px; }

@media (max-width: 980px) {
  .about .container { grid-template-columns: 1fr; gap: 44px; }
  .about-image img { height: 420px; }
}
@media (max-width: 520px) {
  .stat-row { grid-template-columns: 1fr 1fr; }
  .stat-row .stat-card:last-child { grid-column: span 2; }
}

/* ===========================================================
   SERVICES
   =========================================================== */
/* ==========================================================================
   SERVICES — image-led cards
   Photo on top with a circular icon badge that overlaps the seam between
   image and copy (signature touch tying every card together). Image zooms
   gently on hover, the whole card lifts, and the badge flips to the brand
   yellow to confirm the interaction.
   ========================================================================== */

.services {
  background: var(--background-alt);
  padding: var(--section-pad) 0;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:focus-visible {
  outline: 2px solid var(--primary-500);
  outline-offset: 3px;
}

/* -- media -------------------------------------------------------------- */

.service-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-secondary);
}

.service-media::after {
  /* scrim so the icon badge stays legible against any photo */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 18, 32, 0) 55%, rgba(11, 18, 32, 0.45) 100%);
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.service-card:hover .service-media img {
  transform: scale(1.08);
}

.service-icon {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: -24px; /* sits on the image-body seam */
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--surface);
  color: var(--primary-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-md);
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.service-card:hover .service-icon {
  background: var(--primary-500);
  color: var(--ink-800);
  transform: rotate(-8deg) scale(1.06);
}

/* -- body ----------------------------------------------------------------- */

.service-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 38px 24px 26px;
}

.service-body h3 {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.service-body p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.service-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--primary-700);
}

.service-link i {
  font-size: 0.78rem;
  transition: transform 0.25s ease;
}

.service-card:hover .service-link i {
  transform: translateX(4px);
}

/* -- responsive ------------------------------------------------------------ */

@media (max-width: 1180px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .service-grid { grid-template-columns: 1fr; gap: 22px; }
  .service-media { aspect-ratio: 16 / 10; }
}

@media (prefers-reduced-motion: reduce) {
  .service-card,
  .service-media img,
  .service-icon,
  .service-link i {
    transition: none;
  }
}
/* ===========================================================
   FLEET — Swiper
   =========================================================== */
.fleet { background: var(--surface); overflow: hidden; }
.fleet-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 50px;
}
.fleet-nav { display: flex; gap: 12px; }
.fleet-nav button {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--border-default);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-800);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.fleet-nav button:hover { background: var(--primary-500); border-color: var(--primary-500); color: var(--ink-800); }

.fleet-card {
  background: var(--background-alt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
}
.fleet-img { overflow: hidden; height: 230px; }
.fleet-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.fleet-card:hover .fleet-img img { transform: scale(1.08); }
.fleet-body { padding: 26px; }
.fleet-body h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; }
.fleet-capacity {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 600; color: var(--accent);
  background: var(--accent-light);
  padding: 5px 13px; border-radius: 999px;
  margin-bottom: 16px;
}
.fleet-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.fleet-features span {
  font-size: 0.78rem; font-weight: 600; color: var(--text-secondary);
  background: var(--surface);
  border: 1px solid var(--border-light);
  padding: 5px 12px; border-radius: 999px;
}
.fleet .swiper-pagination { position: relative; margin-top: 40px; }
.fleet .swiper-pagination-bullet-active { background: var(--primary-500); }

/* ===========================================================
   RATE CHART — ticket-stub pricing
   =========================================================== */
.rates { background: var(--background-alt); }
.rate-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.rate-tab {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 26px;
  border-radius: 999px;
  background: var(--surface);
  border: 1.5px solid var(--border-light);
  color: var(--text-secondary);
  transition: all 0.25s ease;
}
.rate-tab.active, .rate-tab:hover {
  background: var(--ink-800);
  color: var(--text-inverse);
  border-color: var(--ink-800);
}

.rate-table-wrap {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
table.rate-table { width: 100%; border-collapse: collapse; }
.rate-table thead th {
  background: var(--ink-800);
  color: var(--text-inverse);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  text-align: left;
  padding: 18px 22px;
  letter-spacing: 0.01em;
}
.rate-table thead th:first-child { border-radius: 0; }
.rate-table tbody td {
  padding: 16px 22px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
}
.rate-table tbody tr:nth-child(even) { background: var(--background-alt); }
.rate-table tbody tr:hover { background: var(--primary-50); }
.rate-table tbody tr.featured { background: var(--accent-light); }
.rate-table td.car-name { font-weight: 700; color: var(--ink-800); font-family: var(--font-display); }
.rate-table .badge-rec {
  display: inline-block;
  background: var(--primary-500);
  color: var(--ink-800);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  margin-left: 8px;
  letter-spacing: 0.04em;
}

.rate-cards { display: none; flex-direction: column; gap: 18px; }
.rate-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.rate-card::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 14px; height: 14px;
  background: var(--background-alt);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.rate-card::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  width: 14px; height: 14px;
  background: var(--background-alt);
  border-radius: 50%;
  transform: translate(50%, -50%);
}
.rate-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.rate-card dl { display: grid; grid-template-columns: 1fr auto; row-gap: 9px; }
.rate-card dt { color: var(--text-muted); font-size: 0.88rem; }
.rate-card dd { font-weight: 700; color: var(--ink-800); font-size: 0.9rem; text-align: right; }

@media (max-width: 880px) {
  .rate-table-wrap { display: none; }
  .rate-cards { display: flex; }
}

.rate-note {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 26px;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.rate-note i { color: var(--primary-600); }

/* ===========================================================
   ROUTES — boarding-pass offers
   =========================================================== */
.routes { background: var(--surface); }
.route-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 22px;
}
.route-pass {
  display: flex;
  background: var(--background-alt);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.route-pass:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.route-pass-main { flex: 1; padding: 22px; }
.route-pass-main .from-to { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--text-muted); font-weight: 600; margin-bottom: 8px; }
.route-pass-main .from-to i { color: var(--primary-600); }
.route-pass-main h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 14px; }
.route-pass-main .price-row { display: flex; align-items: baseline; gap: 10px; }
.route-pass-main .offer { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--accent); }
.route-pass-main .old { font-size: 0.9rem; color: var(--text-disabled); text-decoration: line-through; }
.route-pass-stub {
  width: 56px;
  background: var(--ink-800);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.route-pass-stub::before, .route-pass-stub::after {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  background: var(--background-alt);
  border-radius: 50%;
}
.route-pass-stub::before { top: -8px; }
.route-pass-stub::after { bottom: -8px; }
.route-pass-stub i { color: var(--primary-500); font-size: 1.1rem; }

/* ===========================================================
   WHY CHOOSE US
   =========================================================== */
.why { background: var(--background-alt); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.why-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--ink-800);
  color: var(--primary-500);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 20px;
}
.why-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { color: var(--text-secondary); font-size: 0.92rem; }

@media (max-width: 980px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* ===========================================================
   REVIEWS — Swiper
   =========================================================== */
.reviews { background: var(--surface); overflow: hidden; }
.review-card {
  background: var(--background-alt);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-stars { color: var(--primary-500); font-size: 0.9rem; margin-bottom: 16px; }
.review-text { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 24px; min-height: 96px; }
.review-author { display: flex; align-items: center; gap: 14px; }
.review-author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.review-author .name { font-weight: 700; font-size: 0.95rem; color: var(--ink-800); }
.review-author .role { font-size: 0.8rem; color: var(--text-muted); }
.reviews .swiper-pagination { position: relative; margin-top: 36px; }
.reviews .swiper-pagination-bullet-active { background: var(--primary-500); }

/* ===========================================================
   CONTACT
   =========================================================== */
.contact { background: var(--background-alt); }
.contact .container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
}
.contact-info {
  background: var(--ink-800);
  color: var(--text-inverse);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
}
.contact-info h2 { color: var(--text-inverse); font-size: var(--fs-h2); margin-bottom: 14px; }
.contact-info > p { color: rgba(255,255,255,0.65); margin-bottom: 36px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 26px; }
.contact-item .ic {
  width: 46px; height: 46px;
  background: rgba(245,180,0,0.12);
  color: var(--primary-500);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item .lbl { font-size: 0.78rem; color: rgba(255,255,255,0.5); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-item .val { font-weight: 600; font-size: 0.98rem; margin-top: 2px; }

.contact-form-wrap {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 28px; }
.field { position: relative; margin-bottom: 24px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 16px 16px 8px;
  border: 1.5px solid var(--input-border);
  border-radius: var(--radius-sm);
  background: var(--input-bg);
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: border-color 0.25s ease;
}
.field textarea { min-height: 110px; resize: vertical; }
.field label {
  position: absolute;
  left: 16px; top: 16px;
  font-size: 0.95rem;
  color: var(--input-placeholder);
  transition: 0.2s ease;
  pointer-events: none;
  background: var(--input-bg);
  padding: 0 4px;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--input-focus); }
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label,
.field select:focus + label,
.field.has-value label {
  top: -9px; left: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-msg {
  display: none;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.form-msg.success { background: var(--success-bg); color: var(--success-text); border: 1px solid var(--success-border); }
.form-msg.error { background: var(--error-bg); color: var(--error-text); border: 1px solid var(--error-border); }
.form-msg.show { display: block; }

.btn-submit { position: relative; }
.btn-submit .spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(17,24,39,0.25);
  border-top-color: var(--ink-800);
  border-radius: 50%;
  display: none;
  animation: spin 0.7s linear infinite;
}
.btn-submit.loading .spinner { display: inline-block; }
.btn-submit.loading .btn-label { opacity: 0.6; }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 980px) {
  .contact .container { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; }
  .contact-form-wrap, .contact-info { padding: 30px 22px; }
}

/* ===========================================================
   FAQ
   =========================================================== */
.faq { background: var(--surface); }
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border-light);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink-800);
  width: 100%;
  text-align: left;
}
.faq-q .icon-plus {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--background-alt);
  color: var(--ink-800);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}
.faq-item.open .faq-q .icon-plus {
  transform: rotate(45deg);
  background: var(--primary-500);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a p { padding: 0 4px 24px; color: var(--text-secondary); font-size: 0.95rem; max-width: 680px; }

/* ===========================================================
   FOOTER
   =========================================================== */
.footer { background: var(--ink-900); color: rgba(255,255,255,0.7); padding-top: var(--section-pad); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand { color: var(--text-inverse); margin-bottom: 18px; }
.footer-brand .navbar.scrolled .brand { color: var(--text-inverse); }
.footer-brand p { font-size: 0.92rem; line-height: 1.7; max-width: 320px; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s ease, color 0.25s ease;
}
.footer-social a:hover { background: var(--primary-500); color: var(--ink-800); }

.footer h4 { color: var(--text-inverse); font-size: 1rem; font-weight: 700; margin-bottom: 22px; }
.footer ul { display: flex; flex-direction: column; gap: 13px; }
.footer ul a { font-size: 0.92rem; transition: color 0.25s ease; }
.footer ul a:hover { color: var(--primary-500); }
.footer .contact-line { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; margin-bottom: 13px; }
.footer .contact-line i { color: var(--primary-500); margin-top: 3px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 26px 0;
  font-size: 0.85rem;
}
.footer-bottom-links { display: flex; gap: 26px; }
.footer-bottom-links a:hover { color: var(--primary-500); }

@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===========================================================
   FLOATING WHATSAPP
   =========================================================== */
.float-whatsapp {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 900;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: var(--shadow-lg);
  animation: pulseWa 2.4s ease-in-out infinite;
}
@keyframes pulseWa {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.45), var(--shadow-lg); }
  50% { box-shadow: 0 0 0 12px rgba(37,211,102,0), var(--shadow-lg); }
}

/* ===========================================================
   AOS-lite fallback (in case AOS CDN unavailable) base states
   =========================================================== */
[data-aos] { will-change: transform, opacity; }
