/* ============================================================
   GoRoute Cabs — home.css
   Homepage-specific styles (index.html only)
   ============================================================ */

/* ── HOME-ONLY STYLES ── */

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding-top: var(--navbar-h);
  background: url("../images/main.webp") center center / cover no-repeat;
  /* background: url('https://images.unsplash.com/photo-1549317661-bd32c8ce0db2?auto=format&fit=crop&w=1920&q=80') center center / cover no-repeat; */
  background-color: #1a1a2e;
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(0, 0, 0, 0.72) 40%,
    rgba(0, 0, 0, 0.45) 100%
  );
  z-index: 0;
}

.hero-left {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 4% 80px 8%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 69, 0, 0.15);
  border: 1px solid rgba(255, 69, 0, 0.4);
  color: #ff9068;
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  width: fit-content;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: heroPulse 2s infinite;
}

@keyframes heroPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: white;
  margin-bottom: 16px;
}

.hero h1 em {
  color: var(--primary);
  font-style: normal;
}

.hero-sub-tagline {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin-bottom: 38px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 0;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat:first-child {
  padding-left: 0;
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.hero-stat-num em {
  color: var(--primary);
  font-style: normal;
}

.hero-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
}

/* ── HERO RIGHT — QUOTE CARD ── */
.hero-right {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 6% 60px 2%;
}

.quote-card {
  background: white;
  border-radius: 24px;
  padding: 36px 32px 28px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
  width: 100%;
  max-width: 420px;
}

.quote-card-header {
  margin-bottom: 24px;
}

.quote-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 6px;
}

.quote-card-sub {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--text-muted);
}

.quote-card-sub .dot-live {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  animation: heroPulse 2s infinite;
}

.qf-group {
  margin-bottom: 14px;
}

.qf-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.qf-group input,
.qf-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: var(--bg-2);
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.qf-group input:focus,
.qf-group select:focus {
  border-color: var(--primary);
  background: white;
}

.qf-group input::placeholder {
  color: var(--text-light);
}

.trip-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.trip-btn {
  padding: 11px 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: var(--bg-2);
  color: var(--text-muted);
  transition: all 0.2s;
}

.trip-btn:first-child {
  border-right: 1.5px solid var(--border);
}

.trip-btn.active {
  background: var(--primary);
  color: white;
}

.trip-btn:hover:not(.active) {
  background: var(--bg-3);
}

.quote-submit {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(255, 69, 0, 0.3);
}

.quote-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 69, 0, 0.4);
}

.quote-note {
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-muted);
}

.quote-note span {
  color: var(--primary);
  font-weight: 600;
}

/* Booking bar */
.booking-bar {
  background: white;
  padding: 32px 8%;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

.booking-bar-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 18px;
}

.booking-bar-title span {
  color: var(--primary);
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 12px;
  align-items: end;
}

.b-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.b-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.b-group input,
.b-group select {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: var(--bg-2);
  outline: none;
  transition: border-color 0.2s;
}

.b-group input:focus,
.b-group select:focus {
  border-color: var(--primary);
  background: white;
}

/* ── SERVICES ── */
.services {
  background: var(--bg-2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  border: 1px solid var(--border);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-border);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 24px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.service-card a.more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 14px;
}

/* ── WHY US ── */
.why-us {
  background: #111827;
  color: white;
  padding: 80px 5%;
}

/* Header */
.why-header {
  text-align: center;
  margin-bottom: 48px;
}

.why-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 69, 0, 0.15);
  border: 1px solid rgba(255, 69, 0, 0.25);
  color: #ff6b35;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.why-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.why-heading span {
  color: #ff4500;
}

.why-subtext {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
}

/* 2x2 Cards */
.why-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 18px;
  transition: all 0.3s ease;
}

.why-card:hover {
  border-color: rgba(255, 69, 0, 0.3);
  background: rgba(255, 69, 0, 0.06);
}

.why-card-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(255, 69, 0, 0.15);
  border: 1px solid rgba(255, 69, 0, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.why-card-content h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.why-card-content p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin-bottom: 12px;
}

.why-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: #ff4500;
  font-weight: 600;
}

.why-check {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  background: rgba(255, 69, 0, 0.2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #ff4500;
}

/* Stats strip */
.why-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 69, 0, 0.08);
  border: 1px solid rgba(255, 69, 0, 0.15);
  border-radius: 12px;
  overflow: hidden;
}

.why-strip-stat {
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 69, 0, 0.15);
}

.why-strip-stat:last-child {
  border-right: none;
}

.why-strip-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: #ff4500;
  line-height: 1;
}

.why-strip-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
}

/* ── FLEET PREVIEW ── */
.fleet-preview {
  background: white;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.fleet-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s;
  background: white;
  min-width: 0;
}

.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.fleet-img {
  width: 100%;
  height: 220px;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  background: #f5f5f5;
}
.fleet-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.4s ease;
}
.fleet-card:hover .fleet-img img {
  transform: scale(1.05);
}

.fleet-body {
  padding: 20px 22px 24px;
}

.fleet-body h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.fleet-seats {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.fleet-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.fleet-tag {
  background: var(--bg-2);
  color: var(--text-muted);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
}

.fleet-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fleet-price-tag {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
}

.fleet-price-tag span {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
}

/* ── ROUTES ── */
.routes {
  background: white;
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 16px;
}

.route-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}
.route-card:hover {
  border-color: #ff4500;
  box-shadow: 0 4px 20px rgba(255, 69, 0, 0.1);
  transform: translateY(-3px);
}

/* Top: route header */
.rc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.rc-route {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 5px;
}
.rc-route span {
  color: var(--primary);
}
.rc-badges {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.rc-badge {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px 9px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Middle: fare rows */
.rc-fares {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rc-fare-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}
.rc-fare-label {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.rc-fare-price {
  font-weight: 700;
  color: var(--text);
  font-family: var(--font-display);
}

/* Bottom */
.rc-note {
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 10px;
}
.rc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--primary);
  color: white;
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  margin-top: auto;
}
.rc-btn:hover {
  background: var(--primary-dark);
  color: white;
}

/* Custom "your route" card */
.route-card-custom {
  background: white;
  border: 1.5px dashed #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s;
  min-width: 0;
}
.route-card-custom:hover {
  border-color: var(--primary);
}
.route-card-custom-icon {
  font-size: 32px;
}
.route-card-custom h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}
.route-card-custom p {
  font-size: 13px;
  color: var(--text-muted);
}
.route-card-custom .rc-btn {
  width: 100%;
}

/* Disclaimer */
.routes-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
  margin-top: 20px;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .routes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .routes-grid {
    grid-template-columns: 1fr;
  }
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: white;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.testi-card {
  background: var(--bg-2);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  min-width: 0;
}

.testi-stars {
  color: #f59e0b;
  font-size: 15px;
  margin-bottom: 14px;
}

.testi-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}

.testi-name {
  font-weight: 600;
  font-size: 14px;
}

.testi-loc {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── CTA BANNER ── */
.cta-banner {
  background: #111827;
}
.cta-banner .container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  padding: 0;
}

/* Col 1 */
.cta-col-left {
  padding: 60px 48px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-book-badge {
  display: inline-block;
  background: rgba(255, 69, 0, 0.15);
  color: #ff6b35;
  border: 1px solid rgba(255, 69, 0, 0.2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  margin-bottom: 16px;
  width: fit-content;
  letter-spacing: 0.5px;
}

.cta-heading {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  color: white;
  margin-bottom: 16px;
}

.cta-heading span {
  color: #ff4500;
  display: block;
}

.cta-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
}

/* Col 2 & 3 shared */
.cta-col-call,
.cta-col-wa {
  padding: 60px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.cta-col-call {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 69, 0, 0.05);
}

.cta-col-wa {
  background: rgba(37, 211, 102, 0.05);
}

.cta-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.cta-circle-call {
  background: #ff4500;
}

.cta-circle-wa {
  background: #25d366;
}

.cta-col-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.cta-col-value {
  font-size: 18px;
  font-weight: 600;
  color: white;
}

.cta-btn-call,
.cta-btn-wa {
  width: 100%;
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}

.cta-btn-call {
  background: #ff4500;
  color: white;
}

.cta-btn-call:hover {
  background: #cc3700;
  transform: translateY(-2px);
  color: white;
}

.cta-btn-wa {
  background: #25d366;
  color: white;
}

.cta-btn-wa:hover {
  background: #1ea952;
  transform: translateY(-2px);
  color: white;
}

@media (max-width: 768px) {
  .cta-banner .container {
    grid-template-columns: 1fr;
  }

  .cta-col-left {
    padding: 40px 24px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .cta-col-call {
    padding: 40px 24px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .cta-col-wa {
    padding: 40px 24px;
  }
}

/* ── RESPONSIVE ── */
/* Booking form collapses at 1024px */
@media (max-width: 1024px) {
  .booking-form {
    grid-template-columns: 1fr 1fr;
  }
}

/* Hero collapses at 900px */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-left {
    padding: 56px 6% 32px;
  }

  .hero-right {
    padding: 32px 6% 56px;
  }

  .quote-card {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-left {
    padding: 48px 5% 28px;
  }

  .hero-right {
    padding: 20px 5% 48px;
  }

  .hero-stats {
    gap: 0;
    flex-wrap: wrap;
  }

  .hero-stat {
    padding: 0 18px;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .why-cards-grid {
    grid-template-columns: 1fr;
  }

  .why-stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-strip-stat:nth-child(2) {
    border-right: none;
  }

  .why-strip-stat:nth-child(1),
  .why-strip-stat:nth-child(2) {
    border-bottom: 1px solid rgba(255, 69, 0, 0.15);
  }
}

@media (max-width: 480px) {
  .why-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-banner {
    padding: 56px 6%;
  }
}

/* ── AUTOCOMPLETE ── */
.ac-wrap {
  position: relative;
}

.ac-list {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  right: 0;
  background: white;
  border: 1.5px solid var(--primary);
  border-top: none;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  max-height: 210px;
  overflow-y: auto;
  z-index: 50;
  display: none;
}

.ac-list.open {
  display: block;
}

.ac-list li {
  padding: 10px 14px;
  font-size: 14px;
  cursor: pointer;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: background 0.12s;
}

.ac-list li:last-child {
  border-bottom: none;
}

.ac-list li:hover,
.ac-list li.ac-active {
  background: var(--primary-light);
  color: var(--primary);
}

.ac-list li mark {
  background: none;
  color: var(--primary);
  font-weight: 700;
}

/* keep input border visible when dropdown is showing */
.ac-wrap input:focus {
  border-radius: 10px 10px 0 0;
}

/* ── FARE ESTIMATE ── */
.fare-estimate {
  display: none;
  background: linear-gradient(135deg, #fff3ee 0%, #fff8f5 100%);
  border: 1.5px solid var(--primary-border);
  border-radius: 10px;
  padding: 12px 16px;
  margin-top: -4px;
  margin-bottom: 14px;
}

.fare-estimate.visible {
  display: block;
}

.fare-est-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.fare-est-value {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.fare-est-price {
  color: var(--primary);
  font-size: 18px;
  font-weight: 800;
}

.fare-est-sep {
  color: var(--text-light);
  font-weight: 400;
}

/* ── FAQ ── */
.faq-section {
  background: var(--bg-2);
}

.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
}

@media (max-width: 600px) {
  .faq-question {
    padding: 16px 18px;
    font-size: 15px;
  }
  .faq-answer-inner {
    padding: 0 18px 16px;
  }
}

/* ── HERO MICROCOPY (SEO rewrite) ── */
.hero-microcopy {
  font-size: 13px;
  /* color: rgba(255, 255, 255, 0.55); */
  color: white;
  margin-top: -28px;
  margin-bottom: 38px;
}

/* ── TRUST STAT BAND ── */
.trust-band {
  background: var(--bg-2);
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.trust-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--primary);
  line-height: 1.1;
}

.trust-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .trust-band-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .trust-number {
    font-size: 1.5rem;
  }
}

/* ── PER-KM TRANSPARENT RATES ── */
.per-km-rates {
  background: white;
}

.rate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.rate-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  min-width: 0;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.rate-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.rate-card img {
  margin: 0 auto;
  width: 120px;
  height: 80px;
  object-fit: contain;
}

.rate-vehicle {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  margin-top: 16px;
  margin-bottom: 8px;
}

.rate-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--primary);
  line-height: 1;
}

.rate-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.rate-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 12px;
  margin-bottom: 0;
  line-height: 1.6;
}

.rate-note {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
  margin-top: 32px;
}

/* ── WHY BOOK ON WHATSAPP ── */
.why-whatsapp {
  background: white;
}

.wa-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.wa-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  min-width: 0;
}

.wa-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.wa-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 10px;
}

.wa-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ── MULTI-STATE COVERAGE ── */
.coverage {
  background: white;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
  margin-top: 24px;
}

.coverage-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.coverage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.coverage-card-header {
  margin-bottom: 16px;
}

.coverage-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.coverage-card-header h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 4px;
}

.coverage-tagline {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
}

.coverage-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.city-tag {
  background: white;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 999px;
}

.city-tag-more {
  background: var(--secondary);
  color: white;
  border-color: var(--secondary);
  font-weight: 600;
}

.coverage-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 18px;
  flex-grow: 1;
}

.coverage-routes {
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.coverage-routes-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-light);
  margin-bottom: 10px;
}

.route-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.83rem;
  color: var(--text);
  padding: 6px 0;
}

.route-pill strong {
  color: var(--primary);
  font-weight: 700;
}

@media (max-width: 1100px) {
  .coverage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .coverage-grid {
    grid-template-columns: 1fr;
  }
  .coverage-card {
    padding: 22px;
  }
}

/* ── LANDMARK PICKUP POINTS ── */
.landmarks {
  background: var(--bg-2);
}

.landmark-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.landmark-tag {
  background: white;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ── UTILITY ── */
.text-center {
  text-align: center;
}

/* ── SEO INTRO ── */
.seo-intro {
  background: white;
}

.seo-intro-inner {
  /* max-width: 820px; */
  margin: 0 auto;
}

.seo-intro .intro-lead {
  font-size: 16px;
  /* line-height: 1.7; */
  /* color: var(--text); */
  margin-bottom: 10px;
  margin-top: 14px;
}

.seo-intro p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.seo-intro strong {
  color: var(--text);
  font-weight: 600;
}

/* ── SUPPORTING CONTENT BLOCKS (shared) ── */
.content-h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 14px;
}

.rates-supporting-content,
.whatsapp-supporting-content {
  border-top: 1px solid var(--border);
  padding-top: 40px;
  margin-top: 24px;
}

.rates-supporting-content p,
.whatsapp-supporting-content p {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.rates-supporting-content strong,
.whatsapp-supporting-content strong {
  color: var(--text);
  font-weight: 600;
}

.rates-supporting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.whatsapp-supporting-content {
  /* max-width: 780px; */
  margin-left: auto;
  margin-right: auto;
}

/* ── ROUTE CARD DESCRIPTIONS ── */
.route-card .route-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 8px 0 12px 0;
  font-style: italic;
}

@media (max-width: 768px) {
  .seo-intro .intro-lead {
    font-size: 1rem;
  }
  .rates-supporting-grid {
    gap: 20px;
  }
}

/* ── FLEET SHOWCASE ── */
.fleet-showcase {
  background: var(--bg-2);
}

.fleet-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.fleet-showcase-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.fleet-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.fleet-showcase-card picture,
.fleet-showcase-card > img {
  display: block;
  width: 100%;
}

.fleet-showcase-card picture img,
.fleet-showcase-card > img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: white;
  display: block;
}

.fsc-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.fsc-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 2px;
}

.fsc-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.fsc-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}

.fsc-specs li {
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fsc-usecase {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.fsc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.fsc-rate {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--primary);
}

.fsc-rate span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

@media (max-width: 767px) {
  .fleet-showcase-card picture img,
  .fleet-showcase-card > img {
    height: 180px;
  }
}
.fleet-supporting-content {
  border-top: 1px solid #e5e7eb;
  padding-top: 40px;
}
.fleet-supporting-content p {
  color: #4b5563;
  line-height: 1.7;
  font-size: 0.95rem;
}
.fleet-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  background: #ffffff;
}
.fleet-table th,
.fleet-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.9rem;
}
.fleet-table th {
  background: #f9fafb;
  color: #111827;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
.fleet-table td {
  color: #4b5563;
}
.fleet-table td:first-child {
  font-weight: 600;
  color: #111827;
}

/* ── ONE-WAY VS ROUND-TRIP COMPARISON ── */
.trip-type-compare {
  background: var(--bg-2);
}

.trip-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.trip-type-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  min-width: 0;
}

.trip-type-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.trip-type-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 4px;
}

.trip-type-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.trip-type-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.trip-type-list li {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.tt-check {
  color: #22c55e;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.trip-type-example {
  background: var(--bg-2);
  border-left: 3px solid var(--primary);
  padding: 10px 14px;
  font-size: 0.88rem;
  color: var(--text);
  border-radius: 4px;
}

.trip-type-example strong {
  color: var(--primary);
}

.trip-type-math {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 40px;
}

.trip-type-table-wrap {
  overflow-x: auto;
}

.fleet-table td.text-primary {
  font-weight: 700;
}

.trip-type-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 10px;
  margin-bottom: 0;
}
.coverage-supporting-content {
  border-top: 1px solid #e5e7eb;
  padding-top: 40px;
  margin-top: 40px !important;
}
.coverage-supporting-content p {
  color: #4b5563;
  line-height: 1.7;
  font-size: 0.95rem;
}
