/* =========================================================
   AS Bastar Cabs — Premium Landing (Reference-matched UI)
   Desktop & Mobile are designed as separate experiences.
   ========================================================= */

:root {
  --bg: #ffffff;
  --bg-soft: #f7f8fb;
  --text: #0f172a;
  --muted: #64748b;
  --line: rgba(15, 23, 42, 0.08);

  --blue: #2563eb;
  --blue-deep: #1e3a8a;
  --cta: #f5b400;
  --cta-hover: #e0a400;
  --cta-text: #111827;

  --shadow-sm: 0 4px 16px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 12px 40px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.1);

  --radius: 16px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shell: 92%;
  --shell-max: 1680px;

  --header-h: 80px;
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.shell {
  width: min(var(--shell-max), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.skip-link:focus {
  top: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease,
    border-color 150ms ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--cta);
  color: var(--cta-text);
  box-shadow: 0 10px 24px rgba(245, 180, 0, 0.28);
}

.btn-primary:hover {
  background: var(--cta-hover);
  box-shadow: 0 14px 30px rgba(224, 164, 0, 0.32);
}

.btn-secondary {
  background: #fff;
  color: var(--text);
  border-color: rgba(15, 23, 42, 0.14);
}

.btn-secondary:hover {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: var(--shadow-sm);
}

.btn-arrow {
  font-size: 16px;
  line-height: 1;
}

.link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--blue);
  text-decoration: none;
  white-space: nowrap;
}

.link-btn:hover {
  color: var(--blue-deep);
}

/* =========================================================
   NAVBAR — Desktop
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

.header-shell {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), #60a5fa);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
  flex-shrink: 0;
}

.brand-mark[hidden],
.brand-logo[hidden] {
  display: none !important;
}

.brand-logo {
  display: block;
  height: 52px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.brand-sub {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 15px;
  transition: color 150ms ease;
}

.nav a:hover {
  color: var(--text);
}

.header-cta {
  padding: 12px 20px;
  font-size: 14px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

/* =========================================================
   HERO — Desktop (handcrafted)
   ========================================================= */
.hero {
  position: relative;
  min-height: clamp(700px, 78vh, 820px);
  background: var(--bg);
  overflow: hidden;
  padding-bottom: 12px;
}

.hero-layout {
  width: min(var(--shell-max), var(--shell));
  margin-inline: auto;
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 0;
  position: relative;
  z-index: 2;
  padding-top: 40px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding: 0 48px 48px 0;
  max-width: 560px;
  align-self: start;
  margin-top: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 10px;
  border-radius: var(--radius-pill);
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.12);
  color: var(--blue);
  font-weight: 700;
  font-size: 13px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cta);
  box-shadow: 0 0 0 4px rgba(245, 180, 0, 0.2);
  flex-shrink: 0;
}

.hero-heading {
  margin: 22px 0 0;
  font-size: clamp(56px, 5.2vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 800;
  max-width: 11ch;
}

.hero-heading .accent {
  color: var(--blue);
}

.hero-description {
  margin: 22px 0 0;
  color: #1e293b;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 600;
  max-width: 38ch;
  white-space: pre-line;
  /* Soft white stroke/halo so text stays clear over hero photo */
  text-shadow:
    0 0 1px rgba(255, 255, 255, 1),
    0 0 6px rgba(255, 255, 255, 0.95),
    0 1px 2px rgba(255, 255, 255, 0.9),
    1px 0 0 rgba(255, 255, 255, 0.75),
    -1px 0 0 rgba(255, 255, 255, 0.75),
    0 1px 0 rgba(255, 255, 255, 0.75),
    0 -1px 0 rgba(255, 255, 255, 0.75);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-actions .btn {
  padding: 15px 24px;
  font-size: 15px;
}

.hero-trustline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  width: fit-content;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(8px);
}

.trust-check {
  color: var(--blue);
  display: inline-flex;
}

/* Full-bleed hero photo — fills entire hero (no side gaps) */
.hero-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-visual-inner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Keep vehicle bottom visible — don't crop wheels/lower body */
  object-position: center 78%;
}

.hero-img-desktop {
  display: block;
  /* Same fade strength, shifted further right on PC */
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.7) 22%,
    rgba(0, 0, 0, 0.92) 40%,
    #000 55%
  );
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.7) 22%,
    rgba(0, 0, 0, 0.92) 40%,
    #000 55%
  );
}

.hero-img-mobile {
  display: none;
}

/* Soft white wash — same strength, extended further right */
.hero-visual-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.72) 0%,
    rgba(255, 255, 255, 0.35) 24%,
    rgba(255, 255, 255, 0.1) 42%,
    rgba(255, 255, 255, 0) 58%
  );
}

/* Mobile CTA strip — hidden on desktop, shown under hero on mobile */
.mobile-hero-cta {
  display: none;
}

.trust-section {
  margin-top: 32px;
  position: relative;
  z-index: 5;
  padding-bottom: 28px;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.trust-item {
  padding: 28px 26px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: none;
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.07);
  border: 1px solid rgba(37, 99, 235, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.trust-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.trust-title {
  margin: 0;
  font-size: 16px;
  font-weight: 750;
  letter-spacing: -0.01em;
}

.trust-desc {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

/* =========================================================
   SECTIONS
   ========================================================= */
.section {
  padding: 88px 0;
  background: var(--bg);
}

.section-title {
  margin: 0;
  font-size: 36px;
  letter-spacing: -0.03em;
  font-weight: 800;
  line-height: 1.15;
}

/* =========================================================
   FLEET — Premium minimal cards
   ========================================================= */
.fleet-section {
  background: var(--bg-soft);
}

.fleet-header {
  display: block;
  margin-bottom: 36px;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.fleet-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.06);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.1);
  border-color: rgba(37, 99, 235, 0.18);
}

.fleet-card-media {
  background: linear-gradient(180deg, #eef2f7 0%, #e2e8f0 100%);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  flex-shrink: 0;
}

.fleet-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.fleet-card:hover .fleet-card-media img {
  transform: scale(1.03);
}

.fleet-card-body {
  padding: 26px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.fleet-card-top {
  display: grid;
  gap: 6px;
}

.fleet-card-name {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.fleet-card-category {
  margin: 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fleet-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fleet-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.05);
  border: 1px solid rgba(37, 99, 235, 0.1);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}

.fleet-chip-icon {
  font-size: 14px;
  line-height: 1;
}

.fleet-chip-label {
  color: var(--muted);
}

.fleet-price {
  margin-top: 4px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.fleet-book-btn {
  width: 100%;
  margin-top: auto;
  padding: 16px 22px;
  font-size: 15px;
  border-radius: 14px;
}

/* =========================================================
   BOOKING INFORMATION — premium info card
   ========================================================= */
.booking-section {
  background: var(--bg);
  padding-top: 72px;
  padding-bottom: 72px;
}

.booking-header {
  margin-bottom: 28px;
}

.booking-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 36px 40px;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.07);
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.booking-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px 24px;
  border-radius: 18px;
  background: var(--bg-soft);
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease,
    background-color 180ms ease;
}

.booking-item:hover {
  transform: translateY(-3px);
  background: #fff;
  border-color: rgba(37, 99, 235, 0.16);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.booking-item-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
}

.booking-item-copy {
  min-width: 0;
  padding-top: 2px;
}

.booking-item-title {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.booking-item-detail {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

/* =========================================================
   POPULAR ROUTES — two premium cards
   ========================================================= */
.routes-section {
  background: var(--bg-soft);
  padding-top: 72px;
  padding-bottom: 80px;
}

.routes-header {
  margin-bottom: 32px;
  max-width: 640px;
}

.routes-subheading {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
}

.routes-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.route-card {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  padding: 28px 28px 22px;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.07);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.route-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.18);
  box-shadow: 0 22px 56px rgba(15, 23, 42, 0.1);
}

.route-card-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.route-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
}

.route-card-title {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.route-card-subtitle {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.route-item-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  flex: 1;
}

.route-card-note {
  margin: 22px 0 0;
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.route-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(246, 247, 251, 0.9);
  border: 1px solid transparent;
  transition: background-color 150ms ease, border-color 150ms ease;
}

.route-item:hover {
  background: #fff;
  border-color: rgba(37, 99, 235, 0.12);
}

.route-item-main {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.route-pin {
  flex-shrink: 0;
  font-size: 14px;
  line-height: 1.4;
}

.route-item-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: var(--text);
  white-space: nowrap;
}

.route-name-compact {
  font-size: 0.82em;
  letter-spacing: -0.02em;
}

.route-item-btn {
  padding: 8px 12px;
  font-size: 12px;
  border-radius: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews-section {
  padding-top: 72px;
  padding-bottom: 56px;
  background: var(--bg-soft);
}

.cta-band-section {
  padding-top: 40px;
  padding-bottom: 100px;
  background: var(--bg);
}

.cta-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: stretch;
}

.testimonials-block {
  display: grid;
  gap: 24px;
}

.testimonials-heading {
  margin: 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

/* Dots: mobile only */
.testimonials-dots {
  display: none;
}

.testimonials-more {
  display: flex;
  justify-content: center;
}

.testimonials-view-more {
  font-size: 15px;
}

/* =========================================================
   FAQ — premium accordion
   ========================================================= */
.faq-section {
  background: var(--bg-soft);
  padding: 88px 0;
}

.faq-shell {
  width: min(920px, var(--shell));
  margin-inline: auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
  max-width: 640px;
  margin-inline: auto;
}

.faq-subheading {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.faq-item.is-open {
  border-color: rgba(37, 99, 235, 0.18);
  box-shadow: var(--shadow-md);
  background: #fff;
}

.faq-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 64px;
  padding: 20px 22px;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  font-family: inherit;
  border-radius: 18px;
  transition: background-color 160ms ease;
}

.faq-trigger:hover {
  background: rgba(37, 99, 235, 0.03);
}

.faq-trigger:focus {
  outline: none;
}

.faq-trigger:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: -2px;
}

.faq-question {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.35;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: background-color 180ms ease, transform 220ms ease;
}

.faq-icon-plus,
.faq-icon-plus::before {
  content: "";
  position: absolute;
  background: var(--blue);
  border-radius: 2px;
  transition: transform 220ms ease, opacity 180ms ease;
}

.faq-icon-plus {
  width: 12px;
  height: 2px;
}

.faq-icon-plus::before {
  width: 2px;
  height: 12px;
  left: 5px;
  top: -5px;
}

.faq-item.is-open .faq-icon {
  background: rgba(37, 99, 235, 0.14);
  transform: rotate(180deg);
}

.faq-item.is-open .faq-icon-plus::before {
  opacity: 0;
  transform: scaleY(0);
}

.faq-panel {
  height: 0;
  overflow: hidden;
  transition: height 280ms ease;
}

.faq-panel-inner {
  padding: 0 22px 22px;
}

.faq-answer {
  margin: 0;
  padding-top: 2px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
  max-width: 62ch;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 220ms ease 40ms, transform 220ms ease 40ms;
}

.faq-item.is-open .faq-answer {
  opacity: 1;
  transform: translateY(0);
}

.faq-item.is-open .faq-trigger {
  background: rgba(37, 99, 235, 0.03);
}

/* =========================================================
   FINAL CTA BAND
   ========================================================= */
.cta-band {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: var(--shadow-lg);
  min-height: 120px;
}

.cta-band-left {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.cta-band-icon {
  display: inline-flex;
  opacity: 0.95;
  flex-shrink: 0;
}

.cta-band-heading {
  margin: 0;
  font-size: 32px;
  letter-spacing: -0.03em;
  font-weight: 800;
  line-height: 1.15;
}

.cta-band-btn {
  flex-shrink: 0;
  padding: 15px 26px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.quote-mark {
  color: var(--cta);
  font-size: 48px;
  line-height: 0.7;
  font-weight: 800;
  margin-bottom: 12px;
}

.testimonial-text {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500;
  flex: 1;
}

.testimonial-footer {
  margin-top: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.testimonial-name {
  font-weight: 800;
  font-size: 14px;
}

.testimonial-meta {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  margin-top: 2px;
}

.stars {
  color: var(--cta);
  letter-spacing: 1px;
  font-size: 14px;
  font-weight: 800;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 28px;
  background: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 32px;
  align-items: start;
}

.footer-brand-name {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.footer-tagline {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  max-width: 36ch;
}

.footer-contacts {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.footer-contacts a {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
}

.footer-copy {
  color: rgba(15, 23, 42, 0.55);
  font-size: 13px;
  font-weight: 600;
  align-self: end;
  text-align: right;
}

/* =========================================================
   LARGE DESKTOP
   ========================================================= */
@media (min-width: 1440px) {
  .hero-copy {
    max-width: 600px;
    padding-right: 56px;
  }

  .hero-heading {
    font-size: 80px;
  }
}

/* =========================================================
   TABLET / NARROW DESKTOP
   ========================================================= */
@media (max-width: 1100px) {
  .hero-heading {
    font-size: 52px;
    max-width: 12ch;
  }

  .trust-item {
    padding: 22px 18px;
    gap: 12px;
  }

  .cta-band-grid,
  .cta-stack {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .booking-grid {
    grid-template-columns: 1fr;
  }

  .routes-cards {
    grid-template-columns: 1fr;
  }

  .cta-band {
    min-height: 0;
  }
}

@media (max-width: 960px) {
  .trust-bar {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item:nth-child(2) {
    border-right: none;
  }

  .trust-item:nth-child(1),
  .trust-item:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .fleet-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   MOBILE — separate UI (do not shrink desktop)
   ========================================================= */
@media (max-width: 860px) {
  :root {
    --header-h: 64px;
    --shell: calc(100% - 32px);
    --shell-max: none;
  }

  .shell {
    width: var(--shell);
  }

  /* Navbar: logo left, hamburger right */
  .header-shell {
    display: flex;
    justify-content: space-between;
    gap: 12px;
  }

  .nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav.is-open {
    display: grid;
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(var(--header-h) + 8px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 12px;
    gap: 4px;
    box-shadow: var(--shadow-md);
    z-index: 60;
  }

  .nav.is-open a {
    padding: 12px 14px;
    border-radius: 12px;
    color: var(--text);
  }

  .nav.is-open a:hover {
    background: rgba(37, 99, 235, 0.05);
  }

  .brand-sub {
    display: none;
  }

  .brand-logo {
    height: 44px;
    max-width: 170px;
  }

  /* Hero: PC-style photo background, ~half screen height */
  .hero {
    min-height: 52vh;
    height: 52vh;
    max-height: 520px;
    overflow: hidden;
    display: block;
    position: relative;
    padding-bottom: 0;
  }

  .hero-visual {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    order: unset;
    pointer-events: none;
    z-index: 1;
  }

  .hero-layout {
    order: unset;
    width: var(--shell);
    height: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    padding: 16px 0 20px;
    position: relative;
    z-index: 2;
  }

  .hero-copy {
    padding: 0;
    margin-top: 0;
    max-width: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    min-height: 0;
    height: 100%;
  }

  .hero-badge {
    width: fit-content;
    max-width: 100%;
    align-self: flex-start;
    padding: 6px 12px 6px 9px;
    font-size: 12px;
    gap: 8px;
  }

  .hero-heading {
    margin-top: 14px;
    font-size: 34px;
    max-width: 12ch;
    line-height: 1.08;
  }

  .hero-description {
    display: none;
  }

  /* Buttons removed from hero — shown below photo instead */
  .hero-actions {
    display: none;
  }

  /* Trustline pinned to bottom of hero photo with readable background */
  .hero-trustline {
    margin-top: auto;
    margin-bottom: 0;
    align-self: flex-start;
    width: auto;
    max-width: 100%;
    font-size: 11px;
    font-weight: 650;
    color: var(--text);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 10px;
    padding: 7px 10px;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(8px);
    gap: 7px;
  }

  .hero-trustline .trust-check svg {
    width: 13px;
    height: 13px;
  }

  .mobile-hero-cta {
    display: block;
    padding: 18px 0 4px;
    background: var(--bg);
  }

  .mobile-hero-cta-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mobile-hero-cta .btn {
    width: 100%;
    padding: 14px 16px;
  }

  .hero-visual-inner {
    position: absolute;
    inset: 0;
    border-radius: 0;
    overflow: hidden;
    aspect-ratio: auto;
    box-shadow: none;
  }

  /* Soft left/top wash so text stays readable on photo */
  .hero-visual-inner::before {
    display: block;
    background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.88) 0%,
      rgba(255, 255, 255, 0.55) 42%,
      rgba(255, 255, 255, 0.18) 70%,
      rgba(255, 255, 255, 0.05) 100%
    );
  }

  .hero-img-desktop {
    display: none;
  }

  .hero-img-mobile {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 70%;
    -webkit-mask-image: none;
    mask-image: none;
  }

  /* Trust sits below mobile CTAs */
  .trust-section {
    margin-top: 14px;
    padding-bottom: 8px;
  }

  .trust-bar {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item {
    padding: 18px 16px;
    grid-template-columns: 1fr;
    text-align: left;
    gap: 10px;
  }

  .section {
    padding: 56px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .fleet-header {
    margin-bottom: 24px;
  }

  .fleet-grid {
    gap: 18px;
  }

  .fleet-card-body {
    padding: 20px 18px 20px;
    gap: 14px;
  }

  .fleet-card-name {
    font-size: 20px;
  }

  .fleet-price {
    font-size: 18px;
  }

  .fleet-book-btn {
    padding: 15px 18px;
  }

  .routes-section {
    padding-top: 48px;
    padding-bottom: 56px;
  }

  .routes-header {
    margin-bottom: 22px;
  }

  .routes-subheading {
    font-size: 14px;
  }

  .routes-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .route-card {
    padding: 22px 18px 16px;
    border-radius: 22px;
  }

  .route-card:hover {
    transform: none;
  }

  .route-card-top {
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 14px;
  }

  .route-card-icon {
    width: 44px;
    height: 44px;
    font-size: 20px;
    border-radius: 14px;
  }

  .route-card-title {
    font-size: 18px;
  }

  .route-card-subtitle {
    font-size: 13px;
  }

  .route-item {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 11px 10px;
  }

  .route-item-name {
    font-size: 13px;
  }

  .route-name-compact {
    font-size: 0.82em;
  }

  .route-item-btn {
    padding: 8px 10px;
    font-size: 11px;
    min-width: 78px;
  }

  .route-card-note {
    margin-top: 18px;
    font-size: 12px;
  }

  .booking-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .booking-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .booking-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .booking-item {
    padding: 16px 16px;
    gap: 12px;
  }

  .booking-item-icon {
    width: 44px;
    height: 44px;
    font-size: 20px;
    border-radius: 14px;
  }

  .booking-item-title {
    font-size: 16px;
  }

  .cta-band-section {
    padding: 24px 0 64px;
  }

  .reviews-section {
    padding-top: 48px;
    padding-bottom: 40px;
  }

  .faq-section {
    padding: 56px 0;
  }

  .faq-shell {
    width: var(--shell);
  }

  .faq-header {
    text-align: left;
    margin-bottom: 24px;
    max-width: none;
  }

  .faq-subheading {
    font-size: 14px;
  }

  .faq-list {
    gap: 10px;
  }

  .faq-item {
    border-radius: 16px;
  }

  .faq-trigger {
    min-height: 56px;
    padding: 16px 16px;
    gap: 12px;
    border-radius: 16px;
  }

  .faq-question {
    font-size: 15px;
  }

  .faq-panel-inner {
    padding: 0 16px 18px;
  }

  .faq-answer {
    font-size: 14px;
  }

  .cta-band-grid,
  .cta-stack {
    gap: 16px;
  }

  .testimonials-grid {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .testimonials-grid::-webkit-scrollbar {
    display: none;
  }

  .testimonials-grid .testimonial-card {
    flex: 0 0 86%;
    width: 86%;
    max-width: 86%;
    scroll-snap-align: start;
    min-height: 0;
  }

  .testimonials-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: -4px;
  }

  .testimonials-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: none;
    padding: 0;
    background: rgba(15, 23, 42, 0.18);
    cursor: pointer;
    transition: background-color 160ms ease, transform 160ms ease, width 160ms ease;
  }

  .testimonials-dot.is-active {
    width: 18px;
    background: var(--blue);
  }

  .cta-band {
    flex-direction: column;
    align-items: stretch;
    padding: 28px 22px;
    gap: 18px;
  }

  .cta-band-heading {
    font-size: 26px;
  }

  .cta-band-btn {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-copy {
    text-align: left;
    align-self: start;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 50vh;
    height: 50vh;
    max-height: 460px;
  }

  .hero-heading {
    font-size: 30px;
  }

  .hero-badge {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .fleet-card,
  .route-card,
  .booking-item,
  .faq-panel,
  .faq-answer,
  .faq-icon,
  .faq-icon-plus,
  .faq-icon-plus::before {
    transition: none;
  }
}

/* =========================================================
   Accessibility — keyboard focus (focus-visible only)
   ========================================================= */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.nav-toggle:focus-visible,
.testimonials-dot:focus-visible,
.link-btn:focus-visible,
.footer-contacts a:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.skip-link:focus-visible {
  top: 12px;
}

.faq-trigger:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: -2px;
}
