/* =========================================================
   CERRATO LIMO — PREMIUM VISUAL LAYER
   Scroll animations, gradient text, glassmorphism,
   parallax, enhanced hovers, gold separators
   ========================================================= */

/* =========================
   ROUTE PAGE — LUXURY EDITORIAL
   ========================= */

/* Hero meta — route, stats, price inline */
.rt-hero-meta {
  margin: 0.8rem 0 1.8rem;
}

.rt-hero-route {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.rt-hero-stats {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(255,255,255,.45);
  flex-wrap: wrap;
}

.rt-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  flex-shrink: 0;
}

.rt-hero-price {
  color: var(--cl-gold, #c9a227);
  font-weight: 700;
  font-size: 1.1rem;
}

.rt-hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  font-size: 0.8rem;
  color: rgba(255,255,255,.35);
  letter-spacing: 0.02em;
  flex-wrap: wrap;
}

.rt-hero-trust .rt-dot {
  background: rgba(255,255,255,.15);
}

/* Pull-quote — editorial testimonial strip */
.rt-pullquote {
  padding: 2rem 0;
  border-top: 1px solid rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(0,0,0,.06);
  background: var(--cl-ivory, #faf7f0);
}

.rt-pullquote blockquote {
  margin: 0;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.rt-pullquote p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
  color: var(--cl-ink, #0a0a0a);
  margin: 0 0 0.6rem;
}

.rt-pullquote cite {
  font-style: normal;
  font-size: 0.82rem;
  color: var(--cl-muted, #888);
  letter-spacing: 0.02em;
}

.rt-stars {
  color: var(--cl-gold, #c9a227);
  margin-left: 4px;
  letter-spacing: 1px;
}

@media (max-width: 640px) {
  .rt-hero-route { font-size: 0.95rem; gap: 8px; }
  .rt-hero-stats { font-size: 0.85rem; }
  .rt-pullquote p { font-size: 1.05rem; }
}

/* =========================
   1. SCROLL REVEAL ANIMATIONS
   ========================= */

/* Progressive enhancement: slide-up only (no opacity — avoids conflicts with base.css).
   Without .js-reveal on <html>, all content stays in normal position. */

html.js-reveal .reveal {
  transform: translateY(40px);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

html.js-reveal .reveal.is-visible {
  transform: translateY(0);
}

/* Stagger children inside grids — slide up only */
html.js-reveal .reveal-stagger > * {
  transform: translateY(30px);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

html.js-reveal .reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
html.js-reveal .reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
html.js-reveal .reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.2s; }
html.js-reveal .reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.3s; }
html.js-reveal .reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.4s; }
html.js-reveal .reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.5s; }

html.js-reveal .reveal-stagger.is-visible > * {
  transform: translateY(0);
}

/* Scale-in for special elements */
html.js-reveal .reveal--scale {
  transform: scale(0.92);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
html.js-reveal .reveal--scale.is-visible {
  transform: scale(1);
}

/* =========================
   2. HERO — GRADIENT TEXT + PARALLAX
   ========================= */

.hero-text h1 {
  background: linear-gradient(135deg, #ffffff 0%, #f0e6c8 45%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Parallax container */
.hero {
  overflow: hidden;
}

.hero-parallax-bg {
  position: absolute;
  inset: -60px 0 0 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 0;
}

/* =========================
   3. EYEBROW STYLING
   ========================= */

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
  border-radius: 2px;
}

.section-eyebrow--light {
  color: rgba(212, 175, 55, 0.9);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  padding: 6px 14px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 999px;
  backdrop-filter: blur(4px);
  margin-bottom: 16px;
}

/* =========================
   4. GOLD SECTION SEPARATORS
   ========================= */

.section-separator {
  display: block;
  width: 100%;
  height: 1px;
  border: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 175, 55, 0.08) 15%,
    rgba(212, 175, 55, 0.35) 50%,
    rgba(212, 175, 55, 0.08) 85%,
    transparent 100%
  );
  margin: 0;
}

/* =========================
   5. ENHANCED CARD HOVERS
   ========================= */

/* Service cards */
.service-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1),
              0 0 0 1px rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.25);
}

/* Service icon — gold circle */
.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.04));
  border: 1px solid rgba(212, 175, 55, 0.15);
  font-size: 22px;
  margin-bottom: 18px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.08);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.08));
}

/* Service link */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-gold);
  font-weight: 700;
  font-size: 14px;
  margin-top: 14px;
  transition: gap 0.3s ease, color 0.2s ease;
}

.service-card:hover .service-link {
  gap: 10px;
}

/* Fleet cards */
.fleet-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease;
}

.fleet-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.fleet-card:hover::after {
  opacity: 1;
}

.fleet-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.12),
              0 0 0 1px rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.4);
}

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

.fleet-card img {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Fleet CTA link */
.fleet-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 20px 20px;
  padding: 10px 18px;
  background: var(--color-dark);
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.fleet-cta:hover {
  background: var(--color-gold);
  color: var(--color-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Why-us cards */
.why-us-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease;
}

.why-us-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1),
              0 0 0 1px rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.25);
}

.why-us-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.04));
  border: 1px solid rgba(212, 175, 55, 0.15);
  font-size: 24px;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

.why-us-card:hover .why-us-icon-wrap {
  transform: scale(1.08) rotate(-3deg);
}

/* Review cards */
.review-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1),
              0 0 0 1px rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.3);
}

.review-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 64px;
  line-height: 0.8;
  color: var(--color-gold);
  opacity: 0.3;
  margin-bottom: 4px;
  transition: opacity 0.3s ease;
}

.review-card:hover .review-quote {
  opacity: 0.5;
}

/* =========================
   6. ENHANCED BUTTONS
   ========================= */

.btn-primary {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s ease;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 28px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.2s ease;
}

.btn-ghost:hover {
  border-color: var(--color-gold);
  background: rgba(212, 175, 55, 0.08);
  color: #fff;
  transform: translateY(-2px);
}

/* =========================
   7. BOOKING BOX GLASSMORPHISM
   ========================= */

.booking-box {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid rgba(212, 175, 55, 0.12);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.booking-box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.booking-box-badge {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.booking-label {
  display: block;
  margin: 10px 0 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #666;
}

.booking-box input,
.booking-box select {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.booking-box input:focus,
.booking-box select:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
  outline: none;
}

.search-btn {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.search-btn:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.35);
}

.booking-note {
  margin: 10px 0 0;
  font-size: 12px;
  color: #888;
  text-align: center;
}

/* =========================
   8. STATS BAR — ANIMATED COUNTERS
   ========================= */

.stats-bar {
  padding: 50px 0;
  background: #0f0f0f;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.stats-bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 15%;
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stat-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
}

.stat-plus,
.stat-unit {
  color: var(--color-gold);
  font-size: 0.6em;
}

.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* =========================
   9. SECTION TITLE — UNDERLINE ACCENT
   ========================= */

.section-title {
  position: relative;
  display: inline-block;
}

.services .section-title::after,
.fleet .section-title::after,
.reviews-header .section-title::after,
.why-us-header .section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
  border-radius: 3px;
  margin-top: 14px;
}

/* Center the accent for centered titles */
.services .section-title::after,
.fleet .section-title::after,
.reviews-header .section-title::after,
.why-us-header .section-title::after {
  margin-left: auto;
  margin-right: auto;
}

/* =========================
   10. FINAL CTA — GLOW EFFECT
   ========================= */

.final-cta {
  position: relative;
  overflow: hidden;
}

.final-cta-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--color-gold);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  background: linear-gradient(135deg, #fff 0%, #f0e6c8 60%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =========================
   11. FLEET PRICE ENHANCEMENT
   ========================= */

.fleet-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-gold);
  margin: 4px 20px 10px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.fleet-price span {
  font-size: 0.78rem;
  font-weight: 500;
  color: #999;
}

/* =========================
   13. FOOTER ENHANCEMENT
   ========================= */

.site-footer {
  background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 100%);
}

.footer-partner-box {
  margin-top: 20px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-partner-box h4 {
  margin: 0 0 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.footer-partner-box p {
  margin: 0 0 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.footer-partner-btn {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--color-gold);
  font-size: 13px;
  font-weight: 700;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.footer-partner-btn:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.5);
  color: var(--color-gold);
}

/* =========================
   14. SMOOTH TEXT SHADOWS
   ========================= */

.hero-text h1 {
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.final-cta h2 {
  text-shadow: 0 4px 40px rgba(212, 175, 55, 0.15);
}

/* Why-us and reviews keep their dark background from base.css */

/* =========================
   ACCESSIBILITY
   ========================= */
/* =========================
   REVIEWS GRID
   ========================= */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 960px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .reviews-grid { grid-template-columns: 1fr; } }

.review-card {
  background: var(--cl-card, #fff);
  border: 1px solid var(--cl-line, rgba(0,0,0,0.08));
  border-radius: var(--radius-md, 16px);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-stars { color: var(--cl-gold, #c9a227); font-size: 18px; letter-spacing: 2px; }
.review-text { font-size: 15px; line-height: 1.7; color: var(--cl-muted, #5a564e); flex: 1; margin: 0; }
.review-author strong { display: block; color: var(--cl-ink, #0a0a0a); font-size: 14px; }
.review-meta { font-size: 12px; color: var(--cl-muted, #5a564e); opacity: 0.7; }

/* =========================
   15. POPULAR ROUTES
   ========================= */

.popular-routes {
  padding: var(--space-6, 64px) 0;
}

.popular-routes-header {
  text-align: center;
  margin-bottom: var(--space-4, 28px);
}

/* ── Hotel Transfers Section (homepage) ────────── */
.hotel-transfers { padding: 0 0 var(--space-6, 48px); }
.hotel-transfers-header { text-align: center; margin-bottom: var(--space-4, 28px); }
.hotel-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 768px) { .hotel-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .hotel-cards-grid { grid-template-columns: 1fr; } }

.hotel-card {
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 24px 24px 20px; min-height: 120px;
  border-radius: var(--radius-md, 16px);
  border: 1px solid var(--cl-line-strong, rgba(14,14,14,0.12));
  border-left: 3px solid rgba(212,175,55,0.3);
  background: var(--cl-card, #fff);
  box-shadow: var(--cl-shadow-soft, 0 16px 40px rgba(10,10,8,0.08));
  text-decoration: none; color: inherit;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.4s cubic-bezier(0.16,1,0.3,1),
              border-color 0.4s ease;
}
.hotel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.1), 0 0 0 1px rgba(212,175,55,0.2);
  border-left-color: var(--color-gold, #d4af37);
  color: inherit;
}
.hotel-card-locality {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-gold, #d4af37); margin-bottom: 6px;
}
.hotel-card-name {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem; font-weight: 700; line-height: 1.2;
  color: var(--cl-ink, #0a0a0a);
}
.hotel-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 14px; padding-top: 12px;
  border-top: 1px solid var(--cl-line, rgba(14,14,14,0.06));
}
.hotel-card-price {
  font-size: 0.85rem; font-weight: 600;
  color: var(--cl-muted, #666);
}
.hotel-card-arrow {
  font-size: 1.1rem; color: var(--color-gold, #d4af37);
  transition: transform 0.3s ease;
}
.hotel-card:hover .hotel-card-arrow { transform: translateX(4px); }
.hotel-transfers-footer {
  text-align: center; margin-top: var(--space-4, 28px);
}
.hotel-view-all {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.9rem; font-weight: 700;
  color: var(--color-gold, #d4af37);
  text-decoration: none; letter-spacing: 0.02em;
  transition: color 0.2s;
}
.hotel-view-all:hover { color: var(--cl-ink, #0a0a0a); }

.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.route-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px 24px;
  border-radius: var(--radius-md, 16px);
  border: 1px solid var(--cl-line-strong, rgba(14, 14, 14, 0.12));
  background: var(--cl-card, #fff);
  box-shadow: var(--cl-shadow-soft, 0 16px 40px rgba(10, 10, 8, 0.08));
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease;
  min-height: 130px;
}

.route-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.4);
  color: inherit;
}

.route-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.route-from, .route-to {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--cl-ink, #0a0a0a);
}

.route-code {
  font-size: 11px;
  font-weight: 600;
  color: var(--cl-muted, #5a564e);
  opacity: 0.6;
}

.route-arrow {
  color: var(--color-gold, #c9a227);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.route-card:hover .route-arrow {
  transform: translateX(3px);
}

.route-card-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.route-meta {
  display: flex;
  gap: 12px;
}

.route-detail {
  font-size: 12px;
  font-weight: 600;
  color: var(--cl-muted, #5a564e);
  opacity: 0.7;
}

.route-price {
  text-align: right;
}

.route-price-label {
  display: block;
  font-size: 11px;
  color: var(--cl-muted, #5a564e);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 2px;
}

.route-price-value {
  font-family: var(--font-display, 'Cormorant Garamond', Georgia, serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-gold, #c9a227);
  line-height: 1;
}

.routes-footer {
  text-align: center;
  margin-top: var(--space-4, 28px);
}

.routes-note {
  font-size: 13px;
  color: var(--cl-muted, #5a564e);
  opacity: 0.7;
  margin-bottom: var(--space-2, 14px);
}

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

@media (max-width: 640px) {
  .routes-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .route-card {
    padding: 18px 20px;
    min-height: auto;
  }
  .route-price-value {
    font-size: 1.4rem;
  }
}

/* =========================
   16. ROUTE BADGES & PER-PERSON
   ========================= */

.route-badge-popular {
  position: absolute;
  top: -1px;
  right: -1px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cl-charcoal, #1a1712);
  background: linear-gradient(135deg, var(--color-gold, #c9a227), var(--cl-gold-dark, #a6841c));
  border-radius: 0 var(--radius-md, 16px) 0 12px;
}

.route-per-person {
  display: block;
  font-family: var(--font-body, 'Manrope', sans-serif);
  font-size: 11px;
  font-weight: 600;
  color: var(--cl-muted, #5a564e);
  opacity: 0.7;
  margin-top: 2px;
}

.routes-response {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-gold, #c9a227);
  margin-top: 8px;
}

/* =========================
   17. HOW IT WORKS
   ========================= */

.how-it-works {
  padding: var(--space-4, 28px) 0 0;
}

.how-it-works-header {
  text-align: center;
  margin-bottom: var(--space-3, 20px);
}

.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.hiw-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.67% + 14px);
  right: calc(16.67% + 14px);
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold, #c9a227), rgba(212, 175, 55, 0.3));
  z-index: 0;
}

.hiw-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hiw-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold, #c9a227), var(--cl-gold-dark, #a6841c));
  color: var(--cl-charcoal, #1a1712);
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 14px;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.hiw-step h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: #fff;
}

.hiw-step p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .hiw-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 320px;
  }
  .hiw-grid::before { display: none; }
  .hiw-step {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
  }
  .hiw-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
    margin-bottom: 0;
  }
}

/* =========================
   18. REVIEW FEATURED + AVATARS
   ========================= */

.review-featured {
  text-align: center;
  padding: 0 0 var(--space-4, 28px);
  margin-bottom: var(--space-3, 20px);
  border-bottom: 1px solid var(--cl-line, rgba(15, 14, 12, 0.10));
}

.review-featured-quote {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
  color: var(--cl-ink, #0a0a0a);
  margin: 0 auto;
  max-width: 720px;
}

.review-featured-quote::before {
  content: '\201C';
  display: block;
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: 4rem;
  line-height: 0.6;
  color: var(--color-gold, #c9a227);
  opacity: 0.4;
  margin-bottom: 8px;
}

.review-featured-author {
  margin-top: 16px;
  font-size: 14px;
}

.review-featured-author strong {
  color: var(--cl-ink, #0a0a0a);
}

.review-featured-meta {
  font-size: 12px;
  color: var(--cl-muted, #5a564e);
  opacity: 0.7;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold, #c9a227), var(--cl-gold-dark, #a6841c));
  color: var(--cl-charcoal, #1a1712);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.review-author-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* =========================
   19. FLEET CONTEXT LABELS
   ========================= */

.fleet-context-label {
  display: inline-block;
  padding: 4px 10px;
  margin: 0 20px 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-gold, #c9a227);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--radius-pill, 999px);
}

/* =========================
   20. FINAL CTA WHATSAPP
   ========================= */

.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.final-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-pill, 999px);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.2s ease;
}

.final-cta-wa:hover {
  border-color: #25D366;
  background: rgba(37, 211, 102, 0.1);
  color: #fff;
  transform: translateY(-2px);
}

.final-cta-wa svg {
  flex-shrink: 0;
}

/* =========================
   21. COOKIE BANNER MOBILE FIX
   ========================= */

@media (max-width: 960px) {
  #cookie-banner {
    padding: 8px 12px;
  }

  .cookie-banner-inner {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
  }

  .cookie-banner-text {
    font-size: .75rem;
    line-height: 1.3;
    flex: 1 1 0;
  }

  /* Show short text on mobile, hide full */
  .cb-full { display: none; }
  .cb-short { display: inline; }

  .cookie-banner-actions {
    flex-shrink: 0;
    gap: 6px;
  }

  .cookie-btn-accept,
  .cookie-btn-decline {
    padding: 6px 12px;
    font-size: .78rem;
  }
}

/* =========================
   ANIMATIONS
   ========================= */
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Exit-intent popup */
.exit-popup {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.exit-popup-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
}
.exit-popup-content {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg, 22px);
  padding: 40px 32px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,.3);
  animation: fadeSlideIn 0.3s ease;
}
.exit-popup-close {
  position: absolute;
  top: 12px; right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  line-height: 1;
}
.exit-popup-close:hover { color: #333; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Hide on mobile utility */
.hide-mobile { display: block; }
@media (max-width: 960px) { .hide-mobile { display: none; } }

/* Why Choose Us cards — contrast fix on dark bg */
.why-us-card {
  border: 1px solid rgba(255,255,255,.1);
}

@media (prefers-reduced-motion: reduce) {
  html.js-reveal .reveal,
  html.js-reveal .reveal--scale,
  html.js-reveal .reveal-stagger > * {
    transform: none !important;
    transition: none !important;
  }

  .hero-text h1,
  .final-cta h2 {
    -webkit-text-fill-color: initial;
    background: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   HERO CTR FIXES (Apr 2026)
   Desktop CTR 0.3% vs mobile 2.3%. Three blockers:
   1. Booking CTA clipped below fold on 1366x768
   2. Dual yellow CTA (left btn-primary + form submit) splits clicks
   3. Cookie banner full-width covers CTA on initial load
   ═══════════════════════════════════════════════════════════════════ */

/* ── Fix #1: compact booking box so CTA lands above 768px fold ── */
@media (min-width: 961px) {
  /* Shrink overall padding */
  .booking-box--compact {
    padding: 18px 20px 20px !important;
  }
  /* Tighten input heights and gaps */
  .booking-box--compact input,
  .booking-box--compact select {
    height: 44px !important;
    margin-bottom: 0 !important;
    font-size: 14px;
  }
  /* Compact labels */
  .booking-box--compact .booking-label {
    font-size: 11px;
    margin-top: 8px !important;
    margin-bottom: 3px !important;
    letter-spacing: 0.04em;
  }
  /* First label in each step has no extra top margin (chip sits above) */
  .booking-box--compact .hero-form-step > .booking-label:first-of-type {
    margin-top: 0 !important;
  }
  /* Compact heading */
  .booking-box--compact .booking-box-header {
    margin-bottom: 6px;
  }
  .booking-box--compact .booking-box-header h3 {
    font-size: 20px;
    line-height: 1.15;
  }
  /* Form-row gap smaller, paired rows */
  .booking-box--compact .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px !important;
    margin-bottom: 0 !important;
  }
  /* Compact submit button */
  .booking-box--compact .search-btn {
    height: 50px;
    margin-top: 10px;
    font-size: 15px;
  }
  /* Tight booking note */
  .booking-box--compact .booking-note {
    margin-top: 8px !important;
    font-size: 11.5px;
  }
  /* Ensure hero grid aligns booking box to top so it doesn't float
     below the very tall left column text */
  .hero-grid {
    align-items: start;
  }
  .hero {
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 40px;
  }
  /* Keep inline trust row small */
  .booking-trust--inline {
    margin: 4px 0 8px !important;
  }
}

/* ── Fix #2: ghost style for secondary CTA (no longer yellow) ── */
.hero-secondary-cta {
  height: 48px;
  padding: 0 22px;
  font-size: 14px;
  letter-spacing: 0.04em;
  border: 2px solid rgba(212, 175, 55, 0.55);
  color: var(--color-gold, #d4af37);
  background: transparent;
  backdrop-filter: blur(6px);
  transition: all .2s ease;
}
.hero-secondary-cta:hover {
  border-color: var(--color-gold, #d4af37);
  background: rgba(212, 175, 55, 0.08);
  color: #fff;
}

/* ── Fix #3: cookie banner → corner tooltip, never covers CTA ── */
@media (min-width: 961px) {
  #cookie-banner {
    left: 24px !important;
    right: auto !important;
    bottom: 24px !important;
    max-width: 420px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-top: 2px solid var(--color-gold, #d4af37);
    padding: 14px 16px !important;
    z-index: 900 !important; /* below any modals (9999) and below nav sticky button */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  }
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    max-width: none;
    flex-wrap: nowrap;
  }
  .cookie-banner-text {
    font-size: 0.8rem;
    line-height: 1.45;
    flex: 0 0 auto;
  }
  .cookie-banner-actions {
    justify-content: flex-end;
    gap: 8px;
  }
  .cookie-btn-accept,
  .cookie-btn-decline {
    min-height: 38px;
    padding: 6px 14px;
    font-size: 0.82rem;
  }
}

