/* ==========================================================================
   Cartagena Transfers — hoja de estilos global (layout base: header + footer)
   ========================================================================== */

/* Fuente autoalojada */
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/assets/fonts/PlusJakartaSans-Variable.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand: #0A2540;        /* azul marino profundo — dominant */
  --brand-mid: #FF6B35;    /* naranja coral — CTAs, links (mismo del logo) */
  --brand-light: #FFEDE3;  /* naranja clarísimo — fondos sutiles */
  --accent: #F5A623;       /* ámbar caribeño — badges, estrellas */
  --accent-warm: #FF6B35;  /* naranja coral — urgencia */
  --primary: var(--brand);
  --bg: #F8F7F4;           /* crema cálida */
  --surface: #ffffff;
  --text: #0A2540;
  --muted: #64748B;
  --line: #E2E8F0;
  --success: #10B981;
  --radius-pill: 999px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --font-body: "Plus Jakarta Sans", "Inter", "Segoe UI", sans-serif;
  --header-h: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; margin: 0; padding: 0; }

button { font: inherit; cursor: pointer; }

.wrapper {
  width: min(100% - 48px, 1180px);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brand);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 12px 0;
  z-index: 1000;
}

.skip-link:focus {
  left: 0;
}

/* ---------- Header / Navbar ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--transition), background var(--transition);
}

.site-header--scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(10, 37, 64, 0.08);
}

.site-header__inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.brand-logo {
  height: 44px;
  width: auto;
  display: block;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ---------- Book Pill & Language Pill ---------- */

.book-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-mid);
  color: #fff !important;
  border: none;
  border-radius: var(--radius-pill);
  padding: 9px 20px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.3);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.book-pill:hover {
  background: #e0501f;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.45);
}

.book-pill svg {
  width: 16px;
  height: 16px;
  flex: none;
}

.lang-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.lang-pill:hover {
  border-color: var(--brand-mid);
  background: var(--bg);
  transform: translateY(-1px);
}

.lang-pill svg {
  width: 17px;
  height: 17px;
  flex: none;
  color: var(--brand-mid);
}

.lang-pill__label {
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

/* ---------- Eyebrow (kicker) reutilizable ---------- */

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--brand-mid);
}

/* ---------- Scroll Reveal Animations ---------- */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.hero-fullscreen__content {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.hero-booking {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}


/* ---------- Hero Fullscreen ---------- */

.hero-fullscreen {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 60px 24px 80px;
}

.hero-fullscreen__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-fullscreen__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 37, 64, 0.45) 0%, rgba(10, 37, 64, 0.85) 100%);
  z-index: 1;
}

.hero-fullscreen__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 800px;
  margin-bottom: 40px;
}

.hero-fullscreen__content h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}

.hero-fullscreen__content p.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 56ch;
  margin: 0 auto;
}

.hero-rating {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-rating__stars {
  color: var(--accent);
  letter-spacing: 1px;
}


/* ---------- Booking Widget (Inside Hero) ---------- */

.hero-booking {
  position: relative;
  z-index: 2;
  width: min(100%, 920px);
  background: var(--surface);
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255,255,255,0.1);
  padding: 8px;
}

.booking-tabs {
  display: flex;
  gap: 4px;
  padding: 6px 6px 0;
}

.booking-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 14px 14px 0 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  background: transparent;
  border: none;
}

.booking-tab svg { width: 16px; height: 16px; flex: none; }

.booking-tab.is-active {
  color: var(--text);
  background: var(--bg);
}

.booking-tab.is-disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.tab-soon {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: var(--accent);
  color: #7a5b00;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

.booking-form {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-wrap: wrap;
  background: var(--bg);
  border-radius: 16px;
  padding: 6px;
}

.booking-field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  flex: 1;
  min-width: 170px;
  border-right: 1px solid var(--line);
}

.booking-field:last-of-type { border-right: none; }

.booking-field svg { width: 18px; height: 18px; color: var(--muted); flex: none; }

.booking-field__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
}

.booking-field__label {
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.booking-field input {
  border: none;
  background: transparent;
  font: inherit;
  font-size: 0.92rem;
  color: var(--text);
  padding: 0;
  width: 100%;
}

.booking-field input:focus { outline: none; }

.booking-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--brand-mid);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 0 28px;
  margin: 6px;
  font-weight: 800;
  font-size: 0.95rem;
  min-height: 52px;
  white-space: nowrap;
  transition: transform var(--transition), background var(--transition);
}

.booking-submit:hover {
  background: #e0501f;
  transform: translateY(-1px);
}

.booking-submit svg { width: 16px; height: 16px; }


/* ---------- Trust Bar (Old - Kept Temp) & Trust Strip (New) ---------- */

.trust-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  background: rgba(19, 91, 236, 0.06);
  border: 1px solid rgba(19, 91, 236, 0.15);
  border-radius: 16px;
  padding: 14px 20px;
  margin: 0;
  font-size: 0.9rem;
  color: var(--text);
}

.trust-bar__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 6px 12px;
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--brand-mid);
  white-space: nowrap;
}

.trust-bar__badge svg { width: 14px; height: 14px; color: var(--brand-mid); }

.trust-bar a {
  color: var(--brand-mid);
  font-weight: 700;
  text-decoration: underline;
}

.trust-strip {
  padding: 24px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.trust-strip__cards {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 320px;
  padding: 14px 20px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.trust-card--rnt { align-items: flex-start; }
.trust-card--rnt .trust-card__badge { margin-top: 1px; }

.trust-card__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--brand-light);
  color: var(--brand-mid);
}

.trust-card__badge svg { width: 17px; height: 17px; }

.trust-card__logo {
  flex: none;
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 50%;
}

.trust-card__text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
}

.trust-card__rnt-label {
  color: var(--brand-mid);
}

.trust-card__text strong { color: var(--text); }

.trust-card__text a {
  color: var(--brand-mid);
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .trust-card { flex: 1 1 100%; }
}


/* ---------- Popular Routes ---------- */

.popular-routes {
  padding: 80px 0;
}

.popular-routes__header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 14px;
  color: var(--text);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 52ch;
  margin: 0 auto;
}

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

.popular-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
}

.popular-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(10, 37, 64, 0.12);
  border-color: var(--brand-mid);
}

.popular-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.popular-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.popular-card__route {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-mid);
  margin: 0 0 6px;
}

.popular-card__title {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 8px;
  line-height: 1.2;
}

.popular-card__details {
  display: flex;
  gap: 16px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}

.popular-card__price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--brand);
  margin-top: 8px;
}


/* ---------- Features: Why Choose Us ---------- */

.features {
  padding: 80px 0;
  background: var(--brand);
  color: #fff;
}

.features .section-title {
  color: #fff;
}

.features .section-subtitle {
  color: rgba(255,255,255,0.7);
}

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

.feature-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 32px 28px;
  transition: background var(--transition);
}

.feature-card:hover {
  background: rgba(255,255,255,0.14);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.feature-card__title {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 10px;
}

.feature-card__text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin: 0;
}


/* ---------- Fleet ---------- */

.fleet {
  padding: 80px 0;
}

.fleet .section-title { color: var(--brand-mid); }

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

.fleet-slider { position: relative; overflow: hidden; margin-top: 48px; -webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent); mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent); }
.fleet__grid--track { display: flex; gap: 24px; width: max-content; margin-top: 0; animation: ctg-fleet-scroll 38s linear infinite; animation-play-state: paused; }
.fleet__grid--track.fleet__grid--ready { animation-play-state: running; }
.fleet-slider:hover .fleet__grid--track { animation-play-state: paused; }
.fleet__grid--track .fleet-card { flex: 0 0 260px; }
@keyframes ctg-fleet-scroll { from { transform: translateX(0); } to { transform: translateX(var(--fleet-distance, -50%)); } }
@media (prefers-reduced-motion: reduce) { .fleet__grid--track { animation: none; } }

.fleet-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}

.fleet-card--link { display: block; color: inherit; text-decoration: none; cursor: pointer; }
.fleet-card__image { display: block; width: 100%; height: 180px; object-fit: cover; border-radius: 14px; margin: -4px 0 18px; }
.fleet-card__badge { display: inline-block; padding: 5px 10px; border-radius: 999px; background: var(--brand-mid); color: #fff; font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 10px; }

.fleet-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-mid);
}

.fleet-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--brand-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fleet-card__icon svg {
  width: 36px;
  height: 36px;
  color: var(--brand-mid);
}

.fleet-card__name {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 6px;
}

.fleet-card__capacity {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 16px;
}

.fleet-card__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  font-size: 0.85rem;
  color: var(--muted);
}

.fleet-card__features li::before {
  content: '✓ ';
  color: var(--brand-mid);
  font-weight: 800;
}

.fleet-card__price {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--muted);
}

.fleet-card__price strong {
  display: block;
  font-size: 1.2rem;
  color: var(--brand);
  font-weight: 800;
}


/* ---------- Testimonials ---------- */

.testimonials {
  padding: 80px 0;
  background: var(--bg);
}

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

/* Reviews reales cargadas desde assets/data/reviews.json */
.reviews-slider {
  position: relative;
  overflow: hidden;
  margin-top: 42px;
  padding: 4px 0 12px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}
.reviews-track {
  display: flex;
  width: max-content;
  gap: 18px;
  min-height: 210px;
  animation: ctg-reviews-scroll 90s linear infinite;
  animation-play-state: paused;
}
.reviews-track--ready { animation-play-state: running; }
.reviews-slider:hover .reviews-track { animation-play-state: paused; }
.review-slide {
  position: relative;
  flex: 0 0 350px;
  min-height: 194px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
}
.review-slide__top { display: flex; align-items: center; gap: 11px; padding-right: 28px; }
.review-slide__avatar { width: 42px; height: 42px; flex: none; display: grid; place-items: center; border-radius: 50%; background: #eaf0ff center/cover no-repeat; color: var(--brand); font-weight: 800; }
.review-slide__top strong { display: block; max-width: 190px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: .88rem; }
.review-slide__stars { display: block; color: #f5b800; letter-spacing: 1px; font-size: .82rem; line-height: 1.2; }
.review-slide__google { position: absolute; top: 22px; right: 22px; width: 18px; height: 18px; opacity: .65; }
.review-slide__text { margin: 18px 0 0; color: var(--muted); font-size: .9rem; font-style: italic; line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
@keyframes ctg-reviews-scroll { from { transform: translateX(0); } to { transform: translateX(var(--reviews-distance, -50%)); } }
@media (prefers-reduced-motion: reduce) { .reviews-track { animation: none; overflow-x: auto; } }
@media (max-width: 560px) { .review-slide { flex-basis: min(82vw, 320px); } .reviews-slider { -webkit-mask-image: none; mask-image: none; } }

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
}

.testimonial-card__stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card__text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text);
  margin: 0 0 20px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--brand-mid);
  flex: none;
}

.testimonial-card__name {
  font-weight: 800;
  font-size: 0.9rem;
}

.testimonial-card__source {
  font-size: 0.78rem;
  color: var(--muted);
}


/* ---------- CTA Section (Floating Premium Card) ---------- */

.cta-section {
  padding: 72px 0;
  background: var(--bg);
}

.cta-card {
  position: relative;
  background: linear-gradient(135deg, #0A2540 0%, #FF6B35 100%);
  border-radius: 28px;
  padding: 56px 32px;
  text-align: center;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(10, 37, 64, 0.16);
  isolation: isolate;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.cta-card::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.cta-card > * {
  position: relative;
  z-index: 1;
}

.cta-card .section-title {
  color: #fff;
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.cta-card .section-subtitle {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--brand) !important;
  border: none;
  border-radius: var(--radius-pill);
  padding: 15px 36px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(10, 37, 64, 0.3);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
}

.cta-button:hover {
  background: var(--brand-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(10, 37, 64, 0.4);
}

.cta-note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  margin-bottom: 0;
}

.cta-card--warm {
  background: linear-gradient(135deg, #0A2540 0%, #FF6B35 100%);
}

.faq-section { padding: 80px 0; }
.faq-section .faq-list { max-width: 820px; margin: 32px auto 0; }


/* ---------- Footer (Compact & Elegant) ---------- */

.site-footer {
  background: var(--brand);
  color: rgba(255, 255, 255, 0.85);
  border-top: none;
  padding-top: 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 36px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand .brand {
  margin-bottom: 2px;
}

.site-footer .brand-logo {
  height: 38px;
  width: auto;
  max-width: 150px;
  display: block;
}

.footer-tagline {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 44ch;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.footer-contact-link,
.footer-address {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-address {
  align-items: flex-start;
}

.footer-address .footer-inline-icon {
  margin-top: 2px;
}

.footer-contact-link:hover {
  color: #fff;
}

.footer-inline-icon {
  width: 15px !important;
  height: 15px !important;
  max-width: 15px !important;
  max-height: 15px !important;
  min-width: 15px;
  min-height: 15px;
  flex: none;
  color: var(--accent);
}

.social-row {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
}

.social-icon svg {
  width: 15px !important;
  height: 15px !important;
  max-width: 15px !important;
  max-height: 15px !important;
}

.social-icon:hover {
  background: var(--brand-mid);
  color: #fff;
  transform: translateY(-2px);
}

.footer-col h3 {
  color: #fff;
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}


/* ---------- Responsive Breakpoints ---------- */

@media (max-width: 1024px) {
  .popular-routes__grid { grid-template-columns: repeat(2, 1fr); }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .fleet__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  /* Extra rule for mid sizes to catch form */
  .booking-form { flex-direction: column; }
  .booking-field { border-right: none; border-bottom: 1px solid var(--line); }
  .booking-field:last-of-type { border-bottom: none; }
  .booking-submit { margin: 6px 0 0; padding: 14px; }
}

@media (max-width: 860px) {
  /* Retained for backward compat */
}

@media (max-width: 768px) {
  .popular-routes__grid { grid-template-columns: repeat(2, 1fr); }
  .features__grid { grid-template-columns: 1fr; }
  .fleet__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .booking-form { flex-direction: column; }
  .hero-fullscreen { min-height: auto; padding: 48px 16px 60px; }
}

@media (max-width: 720px) {
  .reserva-pill span.reserva-label { display: none; }
  .site-header__inner { gap: 10px; }
}

@media (max-width: 560px) {
  .popular-routes__grid { grid-template-columns: 1fr; }
  .popular-routes,
  .features,
  .fleet,
  .testimonials,
  .cta-section { padding: 56px 0; }
  .route-page, .blog-page { padding-top: 28px; }
  .route-stats, .route-index__list, .blog-grid { grid-template-columns: 1fr; }
  .route-hero__actions .route-button { width: 100%; }
}


/* ---------- Rutas y blog generados desde el CMS ---------- */

.route-page,
.blog-page { padding: 44px 0 96px; }

.route-hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
}

.route-hero__copy h1,
.route-index h1,
.blog-page h1 {
  margin: 0 0 18px;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -.055em;
  font-weight: 800;
}

.route-hero__description,
.route-index__intro,
.blog-intro {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 62ch;
}

.route-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.route-button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 20px; border-radius: var(--radius-pill); background: var(--brand); color: #fff; font-weight: 800; transition: transform .2s ease, opacity .2s ease; }
.route-button:hover { transform: translateY(-2px); opacity: .9; }
.route-button--ghost { background: transparent; color: var(--text); border: 1px solid var(--line); }
.route-hero__image { width: 100%; height: 440px; object-fit: cover; border-radius: 28px; box-shadow: 0 22px 54px rgba(15, 23, 42, .14); }

.route-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 26px; }
.route-stat { padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); }
.route-stat strong { display: block; font-size: 1.35rem; font-weight: 800; }
.route-stat span { display: block; margin-top: 4px; color: var(--muted); font-size: .82rem; font-weight: 700; }

.route-copy { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .8fr); gap: 40px; align-items: center; margin-top: 80px; }
.route-copy h2, .route-vehicles h2, .route-faq h2 { margin: 0 0 18px; font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1.1; letter-spacing: -.04em; }
.route-copy p { color: var(--muted); line-height: 1.85; }
.route-copy img { width: 100%; height: 330px; border-radius: 24px; object-fit: cover; }
.route-vehicles, .route-faq { margin-top: 80px; }
.route-vehicle-grid, .route-index__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.route-vehicle { display: flex; flex-direction: column; gap: 9px; min-height: 170px; padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); transition: transform .2s ease, border-color .2s ease; }
.route-vehicle:hover { transform: translateY(-3px); border-color: var(--brand); }
.route-vehicle__image { display: block; width: 100%; height: 150px; object-fit: cover; border-radius: 13px; }
.route-vehicle__body { display: flex; flex: 1; flex-direction: column; gap: 9px; }
.route-vehicle strong { font-size: 1.05rem; }
.route-vehicle span { color: var(--muted); font-size: .9rem; line-height: 1.6; }
.route-vehicle b { margin-top: auto; color: var(--brand); font-size: .85rem; }
.faq-list { display: grid; gap: 10px; }
.faq-list details { border: 1px solid var(--line); border-radius: 16px; background: var(--surface); padding: 18px 20px; }
.faq-list summary { cursor: pointer; font-weight: 800; }
.faq-list p { margin: 12px 0 0; color: var(--muted); line-height: 1.75; }

.route-vehicles__more { margin-top: 16px; color: var(--muted); font-size: .92rem; }
.route-vehicles__more a { color: var(--brand); font-weight: 800; }

.route-highlights { margin-top: 80px; }
.route-highlights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 18px; }
.route-highlight { border: 1px solid var(--line); border-radius: 20px; background: var(--surface); overflow: hidden; transition: transform .2s ease, border-color .2s ease; }
.route-highlight:hover { transform: translateY(-3px); border-color: var(--brand); }
.route-highlight__image { display: block; width: 100%; height: 160px; object-fit: cover; }
.route-highlight__body { padding: 18px 20px; }
.route-highlight__body strong { display: block; margin-bottom: 8px; font-size: 1.02rem; }
.route-highlight__body span { color: var(--muted); font-size: .9rem; line-height: 1.6; }

.route-values { margin-top: 80px; }
.route-values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 18px; }
.route-value { padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); }
.route-value strong { display: block; margin-bottom: 8px; font-size: 1.02rem; }
.route-value span { color: var(--muted); font-size: .9rem; line-height: 1.6; }
/* Route pages show 3 value cards (not the 4 on /services/) */
.route-page .route-values-grid { grid-template-columns: repeat(3, 1fr); }
/* Route pages' reviews section had no top spacing at all, sitting right
   against "Why choose us" above it — every other section on this page uses
   an 80px margin-top, this one was missing it. */
.route-page .reviews-live { margin-top: 80px; }

.route-related { margin-top: 80px; }
.route-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 18px; }
.route-related-card { display: block; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); overflow: hidden; transition: transform .2s ease, border-color .2s ease; }
.route-related-card:hover { transform: translateY(-3px); border-color: var(--brand); }
.route-related-card img { display: block; width: 100%; height: 150px; object-fit: cover; }
.route-related-card__body { padding: 16px 18px; }
.route-related-card__body strong { display: block; font-size: .98rem; }
.route-related-card__body span { display: block; margin-top: 6px; color: var(--muted); font-size: .85rem; font-weight: 700; }
.route-related__cta { margin-top: 22px; text-align: center; }

.route-final-cta { margin: 80px 0; display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

@media (max-width: 900px) {
  .route-values-grid, .route-related-grid, .route-page .route-values-grid, .route-highlights-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .route-values-grid, .route-related-grid, .route-page .route-values-grid, .route-highlights-grid { grid-template-columns: 1fr; }
}

.ctg-booking-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(10, 37, 64, .78);
  backdrop-filter: blur(4px);
}
.ctg-booking-modal--open { display: flex; }
body.ctg-modal-open { overflow: hidden; }
.ctg-booking-modal__panel {
  position: relative;
  width: 100%;
  max-width: 440px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: 0 30px 80px rgba(10, 37, 64, .35);
}
.ctg-booking-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  z-index: 1;
}
.ctg-booking-modal__close:hover { border-color: var(--brand); color: var(--brand); }

.route-index__list { list-style: none; padding: 0; margin: 34px 0 0; }
.route-index__list li a { display: block; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); font-size: 1.05rem; font-weight: 800; transition: border-color .2s ease, transform .2s ease; }
.route-index__list li a:hover { border-color: var(--brand); transform: translateY(-2px); }

.route-index__group { margin: 0 0 60px; }
.route-index__divider { height: 1px; background: var(--line); margin: 0 0 60px; }
.route-index-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 18px; }
.route-index-card { display: block; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); overflow: hidden; transition: transform .2s ease, border-color .2s ease; }
.route-index-card:hover { transform: translateY(-3px); border-color: var(--brand); }
.route-index-card__image { display: block; width: 100%; height: 170px; object-fit: cover; }
.route-index-card__body { padding: 18px 20px; }
.route-index-card__body strong { display: block; font-size: 1.05rem; }
.route-index-card__body span { display: block; margin-top: 8px; color: var(--muted); font-size: .88rem; font-weight: 700; }

@media (max-width: 900px) {
  .route-index-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .route-index-grid { grid-template-columns: 1fr; }
}
.blog-cover { width: 100%; max-height: 520px; object-fit: cover; border-radius: 26px; margin: 24px 0 30px; }
.blog-intro { font-size: 1.2rem; margin: 0 auto 48px 0; }
.blog-sections { max-width: 820px; }
.blog-sections section { margin: 44px 0; }
.blog-sections h2 { margin: 0 0 16px; font-size: clamp(1.5rem, 3vw, 2.3rem); line-height: 1.15; }
.blog-sections p, .blog-sections li { color: var(--muted); line-height: 1.85; }
.blog-sections img { width: 100%; max-height: 360px; object-fit: cover; border-radius: 22px; margin: 18px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.blog-card { overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); transition: transform .2s ease, box-shadow .2s ease; }
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(15, 23, 42, .1); }
.blog-card img { width: 100%; height: 210px; object-fit: cover; }
.blog-card h2, .blog-card p { margin: 0; padding-inline: 20px; }
.blog-card h2 { padding-top: 20px; font-size: 1.15rem; line-height: 1.25; }
.blog-card p { padding-top: 10px; padding-bottom: 22px; color: var(--muted); font-size: .9rem; line-height: 1.65; }

@media (max-width: 820px) {
  .route-hero, .route-copy { grid-template-columns: 1fr; }
  .route-hero__image { height: 320px; }
  .route-index__list, .blog-grid { grid-template-columns: repeat(2, 1fr); }

  /* Vehículos en mobile/tablet chico: fila deslizable en vez de grid apretado.
     Se ve la primera tarjeta casi completa (76%) con el borde de la siguiente
     asomando, invita a deslizar hasta la última. Este bloque va después de la
     regla base .route-vehicle-grid{display:grid} (más arriba en el archivo)
     a propósito: en CSS, dentro de un media query que sí aplica, el orden en
     el archivo manda tanto como la especificidad — declarada antes, la regla
     de abajo la pisaba aunque el media query estuviera activo. */
  .route-vehicle-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 4px;
    gap: 14px;
    padding-bottom: 6px;
    margin: 0 -4px;
    -webkit-overflow-scrolling: touch;
  }
  .route-vehicle-grid::-webkit-scrollbar { display: none; }
  .route-vehicle-grid { scrollbar-width: none; }
  .route-vehicle-grid .route-vehicle {
    flex: 0 0 76%;
    scroll-snap-align: start;
  }
}

/* ==========================================================================
   Cartagena Transfers — Premium upgrades 2026 (Uber-inspired sin copia)
   - booking autocomplete + map preview
   - dual price + stepper + trust badges
   ========================================================================== */

/* Hero premium: tighter overlay, editorial */
.hero-fullscreen__overlay {
  background: linear-gradient(180deg, rgba(10,37,64,0.32) 0%, rgba(10,37,64,0.68) 58%, rgba(10,37,64,0.92) 100%);
}
.hero-fullscreen__bg { object-position: center 30%; }
.hero-rating {
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.hero-rating a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* Split hero: SafeTravelPass booking on one side, Cartagena message on the other. */
.hero-split-panel {
  position: relative;
  z-index: 2;
  width: min(100%, 1100px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas: "widget top" "widget bottom";
  align-items: stretch;
  gap: clamp(22px, 4vw, 56px);
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(255,255,255,0.62);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255,255,255,0.78), rgba(239,247,255,0.58));
  box-shadow: 0 28px 80px rgba(5, 25, 43, 0.3), inset 0 1px 0 rgba(255,255,255,0.72);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
}
.hero-split-panel .hero-fullscreen__content {
  grid-area: top;
  align-self: end;
  text-align: left;
  max-width: none;
  margin: 0;
  color: var(--ink);
}
.hero-split-panel .hero-rating {
  color: var(--primary);
  background: #ffede3;
  border-color: rgba(255, 107, 53, 0.18);
  box-shadow: none;
  margin-bottom: 24px;
}
.hero-split-panel .hero-rating a { color: var(--primary); }
.hero-split-panel .hero-rating__google-icon {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex: 0 0 18px;
}
.hero-split-panel .hero-fullscreen__content h1 {
  color: var(--ink);
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.08;
  margin: 0;
}
.hero-split-panel .hero-booking {
  grid-area: widget;
}
.hero-split-panel p.hero-sub {
  grid-area: bottom;
  align-self: start;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  margin: 18px 0 0;
}

@media (max-width: 767px) {
  .hero-split-panel {
    grid-template-columns: 1fr;
    grid-template-areas: "top" "widget" "bottom";
    padding: 14px;
    border-radius: 24px;
  }
  .hero-split-panel .hero-fullscreen__content {
    text-align: center;
  }
  .hero-split-panel .hero-fullscreen__content .hero-rating {
    display: inline-flex;
  }
  .hero-split-panel p.hero-sub {
    text-align: center;
    margin: 16px auto 0;
  }
}

/* Booking — Uber clarity + premium glass */
.hero-booking {
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(0px);
  padding: 8px;
}

.hero-split-panel .hero-booking,
.route-hero .hero-booking {
  width: 100%;
  max-width: 480px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(10, 37, 64, 0.12), 0 0 0 1px rgba(10, 37, 64, 0.06);
  padding: 20px;
  align-self: center;
}
.hero-split-panel .booking-tabs,
.route-hero .booking-tabs {
  padding: 0 0 12px;
  gap: 8px;
}
.hero-split-panel .booking-tab,
.route-hero .booking-tab {
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 0.85rem;
}
.hero-split-panel .booking-tab.is-active,
.route-hero .booking-tab.is-active {
  background: var(--brand-light);
  color: var(--brand-mid);
}
.hero-split-panel .booking-form,
.route-hero .booking-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: transparent;
  padding: 0;
  border-radius: 0;
}
.hero-split-panel .booking-field,
.route-hero .booking-field {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 14px;
  border-right: 1px solid var(--line);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.hero-split-panel .booking-field:focus-within,
.hero-split-panel .booking-field:hover,
.route-hero .booking-field:focus-within,
.route-hero .booking-field:hover {
  border-color: var(--brand-mid);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.12);
}
.hero-split-panel .booking-grid-row,
.route-hero .booking-grid-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
}
.hero-split-panel .booking-submit,
.route-hero .booking-submit {
  width: 100%;
  margin: 4px 0 0;
  padding: 14px 20px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 800;
  background: var(--primary, #0A2540);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(10, 37, 64, 0.2);
  min-height: 52px;
}
.hero-split-panel .booking-submit:hover,
.route-hero .booking-submit:hover {
  background: var(--brand-mid, #e0501f);
  transform: translateY(-1px);
}

.ctg-searchbar-host {
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.booking-form {
  position: relative;
  background: var(--bg);
}
.booking-field {
  position: relative;
}
.booking-field--autocomplete input:focus { outline: none; }

/* Autocomplete dropdown */
.booking-autocomplete {
  position: absolute;
  top: calc(100% + 8px);
  left: -10px;
  right: -10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(10,37,64,0.16);
  padding: 6px;
  z-index: 20;
  max-height: 260px;
  overflow-y: auto;
}
.booking-autocomplete[hidden] { display: none; }
.booking-autocomplete__option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.booking-autocomplete__option:hover,
.booking-autocomplete__option:focus-visible,
.booking-autocomplete__option.is-active {
  background: var(--brand-light);
  color: var(--brand-mid);
  outline: none;
}
.booking-autocomplete__option small {
  display: block;
  font-weight: 500;
  color: var(--muted);
  font-size: 0.78rem;
}

/* Map preview mini */
.booking-map-preview {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px dashed var(--line);
  border-radius: 14px;
  margin: 8px 6px 0;
  font-size: 0.82rem;
  color: var(--muted);
}
.booking-map-preview strong { color: var(--text); font-weight: 800; }
.booking-map-preview__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(16,185,129,0.16);
  flex: none;
}
.booking-price-preview {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-left: auto;
  font-weight: 800;
  color: var(--brand);
}
.booking-price-preview small {
  font-weight: 600;
  color: var(--muted);
  font-size: 0.78rem;
}

/* Stepper Uber-like pero premium editorial */
.booking-stepper {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 6px 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.booking-stepper__step {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.booking-stepper__num {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--brand-mid);
  color: #fff;
  font-size: 0.7rem;
}
.booking-stepper__step.is-muted .booking-stepper__num { background: var(--line); color: var(--muted); }
.booking-stepper__sep { width: 18px; height: 1px; background: var(--line); }

/* Dual price */
.popular-card__price small {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 2px;
}
.popular-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  width: 100%;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: -0.01em;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.popular-card:hover .popular-card__cta {
  background: var(--brand-mid);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.22);
}
.route-stat strong small {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
}

/* Popular card polish */
.popular-card__img { transition: transform 0.5s ease; }
.popular-card:hover .popular-card__img { transform: scale(1.04); }

/* Fleet premium: subtle top accent */
.fleet-card {
  position: relative;
  overflow: hidden;
}
.fleet-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-mid), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.fleet-card:hover::before { opacity: 1; }

/* Testimonials polish */
.testimonial-card { transition: transform 0.2s ease, box-shadow 0.2s ease; }
.testimonial-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(10,37,64,0.08); }

/* My-booking stepper */
.mybooking-stepper {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.mybooking-stepper span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
}
.mybooking-stepper span.is-active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

/* Utility: sr-only */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
