:root {
  --cream: #faf6e4;
  --cream-soft: #fdfbf2;
  --yellow: #f2b705;
  --yellow-dark: #d9a400;
  --yellow-light: #ffe27a;
  --black: #14140f;
  --dark: #1e1e17;
  --white: #ffffff;
  --gray-100: #f7f6f1;
  --gray-200: #eae7db;
  --gray-400: #b8b39d;
  --gray-600: #6f6b58;
  --gray-800: #33311f;
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1160px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--black); line-height: 1.25; font-weight: 700; }
h1 { text-align: center; }

.eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--yellow-dark);
  margin-bottom: 10px;
}
.eyebrow.center { text-align: center; }

.section-title { text-align: center; font-size: clamp(1.5rem, 3.4vw, 2.1rem); margin-bottom: 34px; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--yellow); color: var(--black); }
.btn-primary:hover { background: var(--yellow-dark); }
.btn-secondary { background: transparent; color: var(--black); border-color: var(--black); }
.btn-secondary:hover { background: var(--black); color: var(--white); }
.btn-whatsapp { background: #25d366; color: var(--white); display: inline-flex; align-items: center; gap: 8px; opacity: 0.88; transition: all 0.2s ease; }
.btn-whatsapp:hover { background: #1ebc59; opacity: 1; }
.header-cta { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.btn-compact { padding: 9px 16px; font-size: 0.82rem; }
.btn[href*="wa.me"] { background: #25d366; color: var(--white); border-color: #25d366; }
.btn[href*="wa.me"]:hover { background: #1fbd5a; }

/* Top bar */
.topbar { background: var(--black); color: var(--gray-200); font-size: 0.82rem; }
.topbar-inner { display: flex; align-items: center; justify-content: center; gap: 28px; padding: 8px 24px; flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: 6px; color: var(--gray-200); }
.topbar-item svg { color: var(--yellow); flex-shrink: 0; }
a.topbar-item:hover { color: var(--yellow); }

/* Header */
/* The wrapper (not the inner nav) is what's sticky, so its containing block
   is body (full page height) instead of a short header-only box, that's
   what keeps it pinned for the whole page instead of unsticking after ~180px. */
.site-header-wrap { position: sticky; top: 0; z-index: 100; background: var(--black); }
.site-header { background: var(--white); box-shadow: 0 1px 0 rgba(0,0,0,0.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; }
.logo-link { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--yellow); color: var(--black);
  font-family: var(--font-head); font-weight: 700; font-size: 1.2rem;
}
.logo-text { font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--black); white-space: nowrap; }
.logo-text strong { font-weight: 700; }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav > a { color: var(--gray-800); font-size: 0.95rem; font-weight: 600; white-space: nowrap; }
.main-nav > a:hover { color: var(--yellow-dark); }

.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  background: none; border: none; font-family: var(--font-body);
  color: var(--gray-800); font-size: 0.95rem; font-weight: 600;
  display: flex; align-items: center; gap: 6px; cursor: pointer; padding: 0;
}
.nav-dropdown-toggle .caret {
  width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg); margin-top: -3px; transition: transform 0.15s ease;
}
@media (hover: hover) {
  .nav-dropdown:hover .nav-dropdown-toggle, .nav-dropdown-toggle:hover { color: var(--yellow-dark); }
  .nav-dropdown:hover .caret { transform: rotate(225deg); margin-top: 3px; }
}
.nav-dropdown.open .nav-dropdown-toggle { color: var(--yellow-dark); }
.nav-dropdown.open .caret { transform: rotate(225deg); margin-top: 3px; }

.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%); margin-top: 14px;
  background: var(--white); border: 1px solid var(--gray-200); border-radius: 8px; padding: 10px;
  min-width: 220px; display: none; flex-direction: column; gap: 2px; box-shadow: 0 16px 36px rgba(0,0,0,0.14);
}
.nav-dropdown-menu::before { content: ''; position: absolute; top: -16px; left: 0; right: 0; height: 16px; }
.nav-dropdown.open .nav-dropdown-menu { display: flex; }
@media (hover: hover) {
  .nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu { display: flex; }
}
.nav-dropdown-menu a { color: var(--gray-800); font-size: 0.9rem; padding: 9px 12px; border-radius: 4px; white-space: nowrap; }
.nav-dropdown-menu a:hover { color: var(--yellow-dark); background: var(--gray-100); }

/* Language switcher (last item in main-nav) */
.nav-lang-dropdown { padding-left: 14px; margin-left: 6px; border-left: 1px solid var(--gray-200); }
.nav-lang-dropdown .nav-dropdown-toggle { font-weight: 700; font-size: 0.85rem; }
.nav-lang-dropdown .nav-dropdown-menu { min-width: 170px; }
.nav-lang-item { display: flex; align-items: center; gap: 8px; color: var(--gray-800); font-size: 0.88rem; padding: 9px 12px; border-radius: 4px; }
a.nav-lang-item:hover { color: var(--yellow-dark); background: var(--gray-100); }
.nav-lang-item.active { color: var(--yellow-dark); font-weight: 700; }
.nav-lang-item.soon { color: var(--gray-400); cursor: default; }
.nav-lang-flag { width: 20px; height: 15px; object-fit: cover; border-radius: 2px; flex: 0 0 auto; vertical-align: middle; }
.nav-lang-dropdown .nav-dropdown-toggle .nav-lang-flag { margin-right: 2px; }

.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 34px; height: 34px; background: none; border: none; cursor: pointer; padding: 0; }
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--black); border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero { position: relative; color: var(--white); }
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,20,15,0.55) 0%, rgba(20,20,15,0.45) 45%, rgba(20,20,15,0.82) 100%); }

.hero-split-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 1fr; gap: 44px; align-items: center; width: 100%; padding: 64px 0 56px; }
.hero-text { text-align: left; }
.hero h1 { text-align: left; color: var(--white); font-size: clamp(2rem, 4.4vw, 3rem); margin-bottom: 16px; }
.hero-tagline { font-size: 1.08rem; color: var(--gray-100); margin-bottom: 24px; max-width: 46ch; }
.hero-trust-line { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; font-size: 0.9rem; color: rgba(255,255,255,0.85); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Simple centered hero (inner pages) */
.hero-simple { min-height: 320px; display: flex; flex-direction: column; align-items: center; }
.hero-simple .hero-content { position: relative; z-index: 1; text-align: center; max-width: 780px; margin: 0 auto; padding: 90px 0 24px; }
.hero-simple h1 { color: var(--white); font-size: clamp(1.9rem, 4.4vw, 2.8rem); margin-bottom: 14px; }
.hero-simple .hero-tagline { text-align: center; margin: 0 auto 24px; }
.hero-simple .hero-actions { justify-content: center; }
.hero-quote-wrap { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; padding-bottom: 70px; }

/* Quote widget */
.quote-widget { background: var(--white); border-radius: 14px; padding: 26px; box-shadow: 0 24px 60px rgba(0,0,0,0.3); color: var(--gray-800); }
.quote-trip-toggle { display: flex; width: fit-content; margin: 0 auto 18px; background: var(--gray-100); border-radius: 999px; padding: 4px; }
.trip-toggle-btn { border: none; background: transparent; font-family: var(--font-body); font-size: 0.85rem; font-weight: 700; color: var(--gray-600); padding: 8px 20px; border-radius: 999px; cursor: pointer; }
.trip-toggle-btn.active { background: var(--black); color: var(--white); }

.quote-field { margin-bottom: 14px; }
.quote-field label { display: block; font-size: 0.78rem; font-weight: 700; color: var(--gray-600); margin-bottom: 5px; }
.quote-field select, .quote-field input {
  width: 100%; padding: 11px 12px; border: 1px solid var(--gray-200); border-radius: 6px;
  font-family: var(--font-body); font-size: 0.92rem; color: var(--black); background: var(--white);
}
.quote-field select:focus, .quote-field input:focus { outline: none; border-color: var(--yellow); }

.combo { position: relative; }
.combo-input { width: 100%; padding: 11px 12px; border: 1px solid var(--gray-200); border-radius: 6px; font-family: var(--font-body); font-size: 0.92rem; color: var(--black); background: var(--white); }
.combo-input:focus { outline: none; border-color: var(--yellow); }
.combo-panel {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 20;
  background: var(--white); border: 1px solid var(--gray-200); border-radius: 8px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.16); max-height: 280px; overflow-y: auto; padding: 6px;
}
.combo-group-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-400); font-weight: 700; padding: 8px 10px 4px; }
.combo-option { display: flex; align-items: center; gap: 8px; width: 100%; text-align: left; background: none; border: none; padding: 9px 10px; border-radius: 6px; font-size: 0.9rem; color: var(--gray-800); cursor: pointer; }
.combo-option:hover, .combo-option.active { background: var(--gray-100); color: var(--black); }
.combo-opt-icon { color: var(--yellow-dark); flex-shrink: 0; }
.combo-empty { padding: 12px; text-align: center; color: var(--gray-400); font-size: 0.86rem; }

.quote-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
/* .quote-field-row's own display:grid has the same specificity as the
   browser's built-in [hidden]{display:none} rule, and author CSS always
   wins that tie, so a hidden row (e.g. return date/time on a one-way trip)
   was staying visible. This restores the native hidden behavior. */
.quote-field-row[hidden] { display: none; }
.quote-stepper label { display: block; font-size: 0.78rem; font-weight: 700; color: var(--gray-600); margin-bottom: 5px; }
.stepper-control { display: flex; align-items: center; border: 1px solid var(--gray-200); border-radius: 6px; overflow: hidden; }
.stepper-btn { flex: 0 0 auto; width: 36px; height: 40px; background: var(--gray-100); border: none; font-size: 1.1rem; font-weight: 700; color: var(--black); cursor: pointer; }
.stepper-btn:hover { background: var(--yellow-light); }
.stepper-control span { flex: 1; text-align: center; font-weight: 700; font-size: 0.95rem; }

.quote-btn { width: 100%; text-align: center; }
.quote-result { margin-top: 16px; text-align: center; }
.quote-price { font-family: var(--font-head); font-size: 1.7rem; font-weight: 700; color: var(--black); margin-bottom: 12px; }
.quote-price-sub { font-family: var(--font-body); font-size: 0.85rem; font-weight: 500; color: var(--gray-600); }
.quote-price-note { display: block; font-family: var(--font-body); font-size: 0.78rem; font-weight: 500; color: var(--gray-600); margin-top: 4px; }
.quote-result p { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 12px; }

/* Sections generic */
section { padding: 64px 0; }
.section-cream { background: var(--cream-soft); }
.section-white { background: var(--white); }

/* Intro / about section */
.intro-section { text-align: center; }
.intro-section .container { max-width: 800px; }
.intro-section p { font-size: 1.05rem; color: var(--gray-800); margin-bottom: 24px; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--cream-soft); border: 1px solid var(--gray-200); border-radius: 14px; padding: 30px 26px; text-align: center; }
.service-icon {
  display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px;
  border-radius: 50%; background: var(--yellow); color: var(--black); margin-bottom: 18px;
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { color: var(--gray-600); font-size: 0.94rem; margin-bottom: 18px; }

/* Vehicle section */
.vehicle-section { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.vehicle-section img { border-radius: 14px; }
.vehicle-copy p { margin-bottom: 16px; color: var(--gray-800); }
.vehicle-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 20px; }
.vehicle-gallery img { border-radius: 10px; aspect-ratio: 4/3; object-fit: cover; }

/* Pricing table */
.pricing-table { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 20px; }
.pricing-item { background: var(--white); border: 1px solid var(--gray-200); border-radius: 14px; padding: 26px; text-align: center; }
.pricing-item .pi-label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-600); margin-bottom: 8px; }
.pricing-item .pi-value { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--yellow-dark); margin-bottom: 10px; }
.pricing-item p { font-size: 0.88rem; color: var(--gray-600); }
.pricing-note { text-align: center; font-size: 0.88rem; color: var(--gray-600); font-style: italic; }

/* Route / fixed price cards */
.route-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 20px; }
.route-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 14px; overflow: hidden; position: relative; display: flex; flex-direction: column; }
.route-card.popular::before {
  content: 'Most popular!'; position: absolute; top: 14px; left: -34px; transform: rotate(-45deg);
  background: var(--yellow); color: var(--black); font-size: 0.68rem; font-weight: 700; padding: 3px 40px;
}
.route-card-head { text-align: center; padding: 22px 18px 14px; }
.route-icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: var(--gray-100); color: var(--yellow-dark); margin-bottom: 10px; }
.route-card-head h3 { font-size: 1.02rem; margin-bottom: 2px; }
.route-card-head .route-sub { font-size: 0.8rem; color: var(--gray-600); }
.route-price-box { background: var(--black); color: var(--white); text-align: center; padding: 14px; font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; }
.route-price-box span { font-family: var(--font-body); font-size: 0.7rem; font-weight: 500; color: var(--gray-400); display: block; margin-top: 2px; }
.route-facts-list { list-style: none; padding: 16px 20px; font-size: 0.85rem; color: var(--gray-800); flex: 1; text-align: center; }
.route-facts-list li { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 5px 0; }
.route-facts-list li svg { flex-shrink: 0; color: var(--yellow-dark); }
.route-card-foot { padding: 0 20px 20px; text-align: center; }
.route-card-foot .btn { width: 100%; margin-bottom: 8px; }
.route-card-foot .route-note { font-size: 0.76rem; color: var(--gray-600); }

/* How it works */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step-item { text-align: center; }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: var(--black); color: var(--yellow); font-weight: 700; font-family: var(--font-head); margin-bottom: 14px; }
.step-item h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step-item p { font-size: 0.9rem; color: var(--gray-600); }

/* Related route links (accessible block list, not inline prose links) */
.route-links-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.route-links-list a {
  display: block; background: var(--gray-100); border: 1px solid var(--gray-200); border-radius: 10px;
  padding: 14px 18px; font-weight: 600; color: var(--gray-800); transition: all 0.15s ease;
}
.route-links-list a:hover, .route-links-list a:focus-visible { background: var(--yellow); border-color: var(--yellow); color: var(--black); }
.route-links-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
@media (max-width: 600px) { .route-links-grid { grid-template-columns: 1fr; } }

/* FAQ (native details/summary accordion) */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-list details { background: var(--white); border: 1px solid var(--gray-200); border-radius: 10px; padding: 4px 20px; }
.faq-list summary {
  cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; font-weight: 700; font-size: 0.98rem; color: var(--black);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+'; flex-shrink: 0; margin-left: 16px; width: 26px; height: 26px; border-radius: 50%;
  background: var(--yellow); color: var(--black); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 700;
}
.faq-list details[open] summary::after { content: '\2212'; }
.faq-list details p { padding-bottom: 18px; color: var(--gray-600); font-size: 0.92rem; }

/* Trust badge */
.trust-strip { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 0 auto 30px; width: fit-content; background: var(--white); border: 1px solid var(--gray-200); border-radius: 999px; padding: 10px 22px; font-size: 0.88rem; font-weight: 600; }

/* Live Trustindex embeds: the widget script renders its own styling, so drop
   the pill chrome built for the static placeholder text and just reserve
   space to avoid a layout jump while the async script loads. */
.trust-widget { min-height: 24px; }
.trust-strip.trust-widget { background: none; border: none; padding: 0; width: auto; }

/* Local business profile */
.profile-section { background: var(--dark); color: var(--gray-100); }
.profile-section .eyebrow { color: var(--yellow); }
.profile-section h2 { color: var(--white); }
.profile-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 44px; align-items: start; }
.profile-grid p { color: var(--gray-200); margin-bottom: 12px; }
.profile-facts { list-style: none; font-size: 0.94rem; }
.profile-facts li { display: flex; gap: 10px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.profile-facts li span:first-child { color: var(--yellow); font-weight: 700; min-width: 60px; }
.profile-facts a { color: var(--white); }
.profile-facts a:hover { color: var(--yellow); }

/* CTA band */
.cta-band { background: var(--black); color: var(--white); text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 6px; }
.cta-band .cta-lead { color: var(--gray-400); margin-bottom: 22px; }
.cta-band .cta-phone { display: block; font-family: var(--font-head); font-size: 2rem; color: var(--yellow); margin-bottom: 26px; }
.cta-band .cta-phone:hover { color: var(--yellow-light); }
.cta-widget-wrap { max-width: 560px; margin: 0 auto; }

/* Page hero (inner content pages) */
.page-hero { background: var(--black); color: var(--white); padding: 100px 0 56px; text-align: center; }
.page-hero .eyebrow { color: var(--yellow); }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero-sub { color: var(--gray-200); max-width: 620px; margin: 0 auto; }
.page-hero .hero-actions { justify-content: center; margin-top: 22px; }
.page-content { background: var(--white); }

/* About page */
.story-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 44px; align-items: center; }
.story-grid img { border-radius: 14px; }
.story-grid p { margin-bottom: 14px; color: var(--gray-800); }

/* Contact page */
.contact-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 44px; align-items: start; }
.contact-info { background: var(--cream-soft); border-radius: 14px; padding: 30px; }
.contact-details { list-style: none; margin-top: 14px; }
.contact-details li { padding: 10px 0; border-bottom: 1px solid var(--gray-200); }
.contact-details li:last-child { border-bottom: none; }
.contact-channels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; text-align: center; }
.contact-channel .service-icon { margin-bottom: 12px; }
.contact-channel h3 { font-size: 1rem; margin-bottom: 6px; }
.contact-channel p { color: var(--gray-600); font-size: 0.92rem; }

/* Forms (contact + booking) */
.contact-form, .booking-form {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: 14px; padding: 30px;
}
.contact-form h3, .booking-form h3 { margin-bottom: 16px; }
.booking-form h3:not(:first-child) { margin-top: 26px; }
.contact-form label, .booking-form label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--gray-800); margin: 14px 0 6px; }
.contact-form input, .contact-form select, .contact-form textarea,
.booking-form input, .booking-form select, .booking-form textarea {
  width: 100%; padding: 11px 12px; border: 1px solid var(--gray-200); border-radius: 6px;
  font-family: var(--font-body); font-size: 0.92rem; color: var(--black); background: var(--white);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus,
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { outline: none; border-color: var(--yellow); }
.contact-form textarea, .booking-form textarea { resize: vertical; }
.contact-form button, .booking-form button { margin-top: 20px; width: 100%; }
.form-note { margin-top: 12px; font-size: 0.88rem; color: var(--gray-600); text-align: center; }
.form-hint { font-size: 0.82rem; color: var(--gray-600); margin-top: 10px; }
.form-consent { display: flex; align-items: flex-start; gap: 10px; font-weight: 500 !important; font-size: 0.86rem !important; }
.form-consent input { width: auto !important; margin-top: 3px; }
.form-consent a { color: var(--yellow-dark); text-decoration: underline; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; }

/* Booking form: contact-method / payment-option choice groups */
.field-flag { font-weight: 400; color: var(--gray-600); font-size: 0.78rem; }
.form-choice { margin: 18px 0 6px; }
.form-choice-legend { display: block; font-size: 0.82rem; font-weight: 600; color: var(--gray-600); margin-bottom: 8px; }
.form-choice-options { display: flex; flex-wrap: wrap; gap: 10px; }
.form-choice-option {
  flex: 1 1 180px; display: flex; align-items: flex-start; gap: 10px; margin: 0; padding: 12px 14px;
  background: var(--white); border: 1px solid var(--gray-200); border-radius: 6px;
  font-size: 0.92rem; font-weight: 400; color: var(--black); cursor: pointer; transition: border-color 0.15s, background 0.15s;
}
.form-choice-option:hover { border-color: var(--yellow); }
.form-choice-option input { width: 16px; height: 16px; margin: 2px 0 0; flex-shrink: 0; accent-color: var(--yellow-dark); }
.form-choice-option:has(input:checked) { border-color: var(--yellow); background: var(--cream-soft); }
.form-choice-option .opt-sub { display: block; margin-top: 3px; font-size: 0.78rem; font-weight: 400; color: var(--gray-600); line-height: 1.4; }
.booking-page { max-width: 640px; margin: 0 auto; }
.booking-price-line { background: var(--cream-soft); border-radius: 8px; padding: 12px 16px; margin-top: 16px; font-size: 0.92rem; }
.booking-price-sub { color: var(--gray-600); font-size: 0.82rem; }

/* Legal pages */
.legal-content { max-width: 780px; margin: 0 auto; }
.legal-content h2 { margin-top: 32px; margin-bottom: 12px; font-size: 1.2rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--gray-800); margin-bottom: 10px; }
.legal-content ul { padding-left: 22px; }
.legal-updated { color: var(--gray-600); font-size: 0.88rem; margin-bottom: 24px; }

/* Footer */
.site-footer { background: var(--black); color: var(--gray-200); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; padding-bottom: 40px; }
.footer-col h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-col a { color: var(--gray-400); font-size: 0.92rem; }
.footer-col a:hover { color: var(--yellow); }
.footer-col p { color: var(--gray-400); font-size: 0.92rem; margin-bottom: 8px; }
.trust-badge-footer { margin-top: 20px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 0.82rem; color: var(--gray-400); }
.footer-bottom a { color: var(--gray-200); }
.footer-bottom a:hover { color: var(--yellow); }

/* Cookie banner */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px; z-index: 200; max-width: 520px; margin: 0 auto;
  background: var(--white); border: 1px solid var(--gray-200); border-radius: 12px; padding: 18px 20px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}
.cookie-banner p { font-size: 0.85rem; color: var(--gray-800); margin-bottom: 12px; }
.cookie-banner a { text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-btn { flex: 1; padding: 10px 14px; font-size: 0.85rem; }

/* WhatsApp float */
.whatsapp-float {
  position: fixed; bottom: 20px; right: 20px; z-index: 150; width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: var(--white); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25); opacity: 0; transform: scale(0.8); transition: opacity 0.3s ease, transform 0.3s ease;
}
.whatsapp-float.visible { opacity: 0.88; transform: scale(1); }
.whatsapp-float.visible:hover { opacity: 1; }

/* Responsive */
@media (max-width: 1000px) {
  .hero-split-inner { grid-template-columns: 1fr; text-align: center; padding: 48px 0 40px; }
  .hero-text { text-align: center; }
  .hero h1 { text-align: center; }
  .hero-tagline { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .services-grid, .steps-grid, .route-grid, .pricing-table { grid-template-columns: repeat(2, 1fr); }
  .vehicle-section, .story-grid, .contact-inner, .profile-grid { grid-template-columns: 1fr; }
  .vehicle-section img, .story-grid img { max-width: 420px; margin: 0 auto; }
}

@media (max-width: 900px) {
  .topbar-item.topbar-static { display: none; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; top: 0; right: -100%; height: 100vh; width: min(320px, 84vw);
    background: var(--white); flex-direction: column; align-items: flex-start; gap: 4px;
    padding: 90px 26px 26px; transition: right 0.25s ease; overflow-y: auto; box-shadow: -12px 0 40px rgba(0,0,0,0.15);
  }
  .main-nav.open { right: 0; }
  .main-nav > a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--gray-200); }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle { width: 100%; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--gray-200); }
  .nav-dropdown-menu { position: static; transform: none; margin: 0; box-shadow: none; border: none; padding: 4px 0 4px 12px; min-width: 0; display: none; }
  .nav-dropdown.open .nav-dropdown-menu { display: flex; }
  @media (hover: hover) { .nav-dropdown:hover .nav-dropdown-menu { display: none; } .nav-dropdown.open .nav-dropdown-menu { display: flex; } }
  .nav-lang-dropdown { border-left: none; border-top: 1px solid var(--gray-200); margin-left: 0; padding-left: 0; padding-top: 8px; margin-top: 8px; width: 100%; }
  .header-cta .btn-compact span.btn-label-full { display: none; }
}

@media (max-width: 640px) {
  section { padding: 44px 0; }
  .services-grid, .steps-grid, .route-grid, .pricing-table, .contact-channels { grid-template-columns: 1fr; }
  .vehicle-gallery { grid-template-columns: repeat(2, 1fr); }
  .quote-field-row { grid-template-columns: 1fr 1fr; }
  .cta-band .cta-phone { font-size: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-simple .hero-content { padding: 70px 0 40px; }
  .page-hero { padding: 80px 0 40px; }
}
