/* ==========================================================================
   Paris Transfer — public site stylesheet
   ========================================================================== */

:root {
  --navy:        #0f1b2d;
  --navy-soft:   #1a2c47;
  --navy-line:   #24395c;
  --gold:        #c9a227;
  --gold-soft:   #e3c766;
  --ink:         #1e2331;
  --muted:       #6b7280;
  --line:        #e4e7ee;
  --bg:          #ffffff;
  --bg-alt:      #f6f7fa;
  --ok:          #2f9e5f;
  --warn:        #d99114;
  --bad:         #d64545;
  --radius:      12px;
  --radius-sm:   8px;
  --shadow:      0 2px 8px rgba(15,27,45,.06);
  --shadow-lg:   0 18px 44px rgba(15,27,45,.14);
  --wrap:        1180px;
  --font:        'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --serif:       'Playfair Display', Georgia, 'Times New Roman', serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold); }

h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.22; font-weight: 700; letter-spacing: -.015em; }
h1 { font-size: clamp(2rem, 4.6vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); }
h3 { font-size: 1.22rem; }
p  { margin: 0 0 1rem; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }

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

.section-head { text-align: center; max-width: 660px; margin: 0 auto 44px; }
.section-head p { color: var(--muted); margin: 0; }

.eyebrow {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .6rem;
}

.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .8rem 1.55rem; border: 1px solid transparent; border-radius: var(--radius-sm);
  font-size: .93rem; font-weight: 600; font-family: inherit; cursor: pointer;
  transition: background .16s, color .16s, border-color .16s, transform .16s;
  white-space: nowrap; text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold  { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-soft); color: var(--navy); }
.btn-navy  { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-soft); color: #fff; }
.btn-outline { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-outline:hover { border-color: var(--navy); color: var(--navy); }
.btn-ghost-light { background: transparent; border-color: rgba(255,255,255,.35); color: #fff; }
.btn-ghost-light:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn-sm { padding: .55rem 1.05rem; font-size: .84rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; }
.btn:disabled, .btn.is-disabled { opacity: .5; pointer-events: none; }

/* --------------------------------------------------------------------------
   Top bar + header
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--navy); color: rgba(255,255,255,.72);
  font-size: .82rem; padding: .5rem 0;
  border-bottom: 1px solid var(--navy-line);
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.topbar a { color: rgba(255,255,255,.85); }
.topbar a:hover { color: var(--gold); }
.topbar-left { display: flex; gap: 1.4rem; align-items: center; }
.topbar-right { display: flex; gap: 1rem; align-items: center; }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: #fff; border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 1rem; }

.logo { display: flex; align-items: center; gap: .7rem; }
.logo-mark {
  width: 40px; height: 40px; border-radius: 10px; background: var(--navy);
  display: grid; place-items: center; color: var(--gold); font-weight: 800; font-size: 1.05rem;
  flex-shrink: 0; letter-spacing: -.03em;
}
.logo-mark--image {
  width: 86px; height: auto; min-width: 86px; border-radius: 0; background: transparent;
  object-fit: contain;
}
.logo-text { display: none; }
.logo-name { display: none; }
.logo-sub  { display: none; }

.nav { display: flex; align-items: center; gap: .3rem; }
.nav a {
  padding: .55rem .85rem; border-radius: 6px; font-size: .92rem; font-weight: 500; color: var(--ink);
}
.nav a:hover { background: var(--bg-alt); color: var(--navy); }
.nav a.active { color: var(--gold); font-weight: 600; }

.header-cta { display: flex; align-items: center; gap: .7rem; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line); border-radius: 7px;
  width: 42px; height: 42px; cursor: pointer; padding: 0;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 18px; height: 2px; background: var(--navy); margin: 0 auto;
  position: relative; transition: .2s;
}
.nav-toggle span::before, .nav-toggle span::after { content: ''; position: absolute; }
.nav-toggle span::before { top: -6px; } .nav-toggle span::after { top: 6px; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  padding: 72px 0 110px; overflow: hidden;
  min-height: 640px;
}
.hero-slider {
  position: relative;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center center; background-repeat: no-repeat;
  opacity: 0; transition: opacity .8s ease;
}
.hero-slide.is-active {
  opacity: 1;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(1100px 460px at 78% -8%, rgba(201,162,39,.20), transparent 62%),
    radial-gradient(760px 420px at 8% 108%, rgba(36,57,92,.9), transparent 60%);
  pointer-events: none;
}
.hero-content-wrap { position: relative; z-index: 2; }
.hero-inner { max-width: 760px; position: relative; z-index: 2; }
.hero h1 {
  color: #fff; margin-bottom: 1rem; font-size: clamp(2.5rem, 4vw, 5rem); line-height: .96; letter-spacing: -.05em;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-lead { font-size: 1.15rem; color: rgba(255,255,255,.82); max-width: 680px; margin-bottom: 1.9rem; }

.hero-points { list-style: none; padding: 0; margin: 0 0 2rem; display: flex; flex-wrap: wrap; gap: .7rem 1.5rem; }
.hero-points li { display: flex; align-items: center; gap: .5rem; font-size: .94rem; color: rgba(255,255,255,.9); }
.hero-points svg { flex-shrink: 0; color: var(--gold); }

.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }

.hero-dots {
  position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%);
  z-index: 3; display: flex; gap: 8px; align-items: center;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%; border: 0; background: rgba(255,255,255,.5);
  padding: 0; cursor: pointer; transition: all .2s ease;
}
.hero-dot.is-active {
  width: 28px; border-radius: 999px; background: var(--gold);
}

/* Trust strip */
.trust { background: #fff; border-bottom: 1px solid var(--line); padding: 1.1rem 0; }
.trust .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem 2.6rem; }
.trust-item { display: flex; align-items: center; gap: .6rem; font-size: .84rem; color: var(--muted); }
.trust-item strong { color: var(--ink); font-size: .9rem; }
.trust-stars { color: var(--gold); letter-spacing: 1px; }

/* --------------------------------------------------------------------------
   Booking widget
   -------------------------------------------------------------------------- */
.booking-widget {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 26px; position: relative; z-index: 20;
}
.booking-widget--float { margin-top: -86px; }

.booking-widget .btn:disabled {
  opacity: .55; cursor: not-allowed; transform: none;
}

.widget-tabs { display: flex; gap: .4rem; margin-bottom: 1.2rem; border-bottom: 1px solid var(--line); }
.widget-tab {
  padding: .6rem 1.1rem; font-size: .9rem; font-weight: 600; color: var(--muted);
  background: none; border: 0; border-bottom: 2px solid transparent; cursor: pointer; font-family: inherit;
}
.widget-tab.active { color: var(--navy); border-bottom-color: var(--gold); }

.booking-grid {
  display: grid; gap: 14px;
  grid-template-columns: minmax(0, 1.8fr) 54px minmax(0, 1.8fr) minmax(0, 1.1fr) minmax(0, 0.7fr) minmax(0, 1.9fr);
  align-items: end;
}

.field { display: flex; flex-direction: column; gap: .35rem; min-width: 0; }
.field label {
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
}
.field input, .field select, .field textarea {
  width: 100%; padding: .72rem .8rem; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-size: .93rem; font-family: inherit; color: var(--ink); background: #fff; min-height: 48px;
}
.field-submit { grid-column: 1 / -1; }
.field-submit .btn { width: 100%; }
.field textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid rgba(201,162,39,.4); outline-offset: 0; border-color: var(--gold);
}
.field .hint { font-size: .76rem; color: var(--muted); }
.field .error { font-size: .78rem; color: var(--bad); }
.field.has-error input, .field.has-error select { border-color: var(--bad); }

.pax-group {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  min-width: 0;
}
.pax-group select {
  min-width: 0;
}

.swap-btn {
  align-self: end; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line);
  background: #fff; cursor: pointer; display: grid; place-items: center; color: var(--navy); flex-shrink: 0;
}
.swap-btn:hover { border-color: var(--gold); color: var(--gold); }

/* --------------------------------------------------------------------------
   Cards & grids
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow .18s, transform .18s, border-color .18s;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: transparent; }
.card-media { position: relative; aspect-ratio: 16/10; background: var(--bg-alt); overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: .4rem; font-size: 1.1rem; }
.card-body p { color: var(--muted); font-size: .9rem; margin-bottom: 1rem; }
.card-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: .8rem; }

.price-tag { display: flex; flex-direction: column; line-height: 1.15; }
.price-tag small { font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.price-tag strong { font-size: 1.42rem; color: var(--navy); font-weight: 800; }

.chip {
  display: inline-flex; align-items: center; gap: .35rem; padding: .28rem .6rem;
  background: var(--bg-alt); border-radius: 100px; font-size: .74rem; font-weight: 600; color: var(--muted);
}
.card-media .chip {
  position: absolute; top: 12px; left: 12px; background: rgba(15,27,45,.86); color: #fff;
  backdrop-filter: blur(4px);
}
.chip-row { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .9rem; }

/* Feature blocks */
.feature { text-align: left; }
.feature-icon {
  width: 46px; height: 46px; border-radius: 11px; background: rgba(201,162,39,.13);
  display: grid; place-items: center; color: var(--gold); margin-bottom: .9rem;
}
.feature h3 { font-size: 1.03rem; margin-bottom: .3rem; }
.feature p { color: var(--muted); font-size: .9rem; margin: 0; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat strong { display: block; font-size: 2.4rem; font-weight: 800; color: var(--navy); line-height: 1.1; }
.stat span { font-size: .84rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }

/* Testimonials */
.quote {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px;
  display: flex; flex-direction: column; height: 100%;
}
.quote-stars { color: var(--gold); letter-spacing: 2px; margin-bottom: .7rem; font-size: .95rem; }
.quote p { font-size: .93rem; color: var(--ink); flex: 1; }
.quote-by { display: flex; align-items: center; gap: .7rem; margin-top: 1rem; }
.quote-avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--navy); color: var(--gold);
  display: grid; place-items: center; font-weight: 700; font-size: .85rem; flex-shrink: 0;
}
.quote-by strong { display: block; font-size: .88rem; }
.quote-by span { font-size: .76rem; color: var(--muted); }

/* --------------------------------------------------------------------------
   Page header (interior pages)
   -------------------------------------------------------------------------- */
.page-head {
  background: var(--navy); color: #fff; padding: 56px 0; position: relative; overflow: hidden;
}
.page-head::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(760px 330px at 82% 0%, rgba(201,162,39,.18), transparent 62%);
}
.page-head .wrap { position: relative; z-index: 2; }
.page-head h1 { color: #fff; margin-bottom: .4rem; font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.page-head p { color: rgba(255,255,255,.74); max-width: 620px; margin: 0; }

.breadcrumb { font-size: .82rem; color: rgba(255,255,255,.6); margin-bottom: .8rem; }
.breadcrumb a { color: rgba(255,255,255,.82); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 .45rem; opacity: .5; }

/* --------------------------------------------------------------------------
   Tables
   -------------------------------------------------------------------------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
table.data { width: 100%; border-collapse: collapse; font-size: .9rem; min-width: 640px; }
table.data th, table.data td { padding: .82rem 1rem; text-align: left; border-bottom: 1px solid var(--line); }
table.data thead th {
  background: var(--bg-alt); font-size: .74rem; text-transform: uppercase; letter-spacing: .07em;
  color: var(--muted); font-weight: 700; white-space: nowrap;
}
table.data tbody tr:last-child td { border-bottom: 0; }
table.data tbody tr:hover { background: #fafbfd; }
table.data td.num { text-align: right; font-variant-numeric: tabular-nums; font-weight: 600; }

/* --------------------------------------------------------------------------
   Booking flow
   -------------------------------------------------------------------------- */
.steps { display: flex; align-items: center; gap: .5rem; margin-bottom: 30px; flex-wrap: wrap; }
.step { display: flex; align-items: center; gap: .55rem; font-size: .86rem; color: var(--muted); }
.step-num {
  width: 27px; height: 27px; border-radius: 50%; background: var(--bg-alt); color: var(--muted);
  display: grid; place-items: center; font-size: .8rem; font-weight: 700; flex-shrink: 0;
}
.step.is-active { color: var(--navy); font-weight: 600; }
.step.is-active .step-num { background: var(--gold); color: var(--navy); }
.step.is-done .step-num { background: var(--ok); color: #fff; }
.step-line { flex: 1; height: 1px; background: var(--line); min-width: 18px; }

.layout-split { display: grid; grid-template-columns: 1fr 350px; gap: 30px; align-items: start; }

.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.panel + .panel { margin-top: 20px; }
.panel h2, .panel h3 { margin-top: 0; }
.panel-title {
  font-size: 1.05rem; font-weight: 700; margin: 0 0 1.1rem; padding-bottom: .8rem;
  border-bottom: 1px solid var(--line);
}

.summary { position: sticky; top: 96px; }
.summary-row {
  display: flex; justify-content: space-between; gap: 1rem; padding: .55rem 0;
  border-bottom: 1px solid var(--line); font-size: .88rem;
}
.summary-row:last-of-type { border-bottom: 0; }
.summary-row span { color: var(--muted); flex-shrink: 0; }
.summary-row strong { text-align: right; font-weight: 600; }
.summary-total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 1rem; padding-top: 1rem; border-top: 2px solid var(--navy);
}
.summary-total span { font-weight: 700; }
.summary-total strong { font-size: 1.7rem; color: var(--navy); font-weight: 800; }

/* Vehicle option rows */
.vehicle-option {
  display: grid; grid-template-columns: 168px 1fr auto; gap: 20px; align-items: center;
  border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; background: #fff;
  transition: border-color .16s, box-shadow .16s;
}
.vehicle-option + .vehicle-option { margin-top: 14px; }
.vehicle-option:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.vehicle-option.is-selected { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,39,.16); }
.vehicle-option.is-unavailable { opacity: .55; }
.vehicle-option img { width: 100%; border-radius: var(--radius-sm); aspect-ratio: 16/10; object-fit: cover; background: var(--bg-alt); }
.vehicle-meta { display: flex; flex-wrap: wrap; gap: .4rem .9rem; font-size: .82rem; color: var(--muted); margin: .3rem 0 .5rem; }
.vehicle-meta span { display: flex; align-items: center; gap: .3rem; }
.vehicle-feats { font-size: .82rem; color: var(--muted); margin: 0; }
.vehicle-price { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: .55rem; }
.vehicle-price .amount { font-size: 1.6rem; font-weight: 800; color: var(--navy); line-height: 1; }
.vehicle-price small { font-size: .72rem; color: var(--muted); }

/* Extras checkboxes */
.extra-row {
  display: flex; align-items: center; gap: .9rem; padding: .8rem 0; border-bottom: 1px solid var(--line);
}
.extra-row:last-child { border-bottom: 0; }
.extra-row input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--gold); flex-shrink: 0; cursor: pointer; }
.extra-row .extra-info { flex: 1; min-width: 0; }
.extra-row .extra-info strong { display: block; font-size: .92rem; }
.extra-row .extra-info small { color: var(--muted); font-size: .8rem; }
.extra-row .extra-price { font-weight: 700; font-size: .92rem; white-space: nowrap; }
.extra-row select { width: 62px; padding: .35rem; border: 1px solid var(--line); border-radius: 6px; font-family: inherit; }

/* Confirmation */
.confirm-hero { text-align: center; padding: 20px 0 32px; }
.confirm-check {
  width: 72px; height: 72px; border-radius: 50%; background: rgba(47,158,95,.12); color: var(--ok);
  display: grid; place-items: center; margin: 0 auto 1.1rem;
}
.reference-box {
  background: var(--navy); color: #fff; border-radius: var(--radius); padding: 22px; text-align: center; margin: 22px 0;
}
.reference-box small { display: block; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.reference-box strong { font-size: 2rem; letter-spacing: .07em; color: var(--gold); font-weight: 800; }

/* --------------------------------------------------------------------------
   Alerts & badges
   -------------------------------------------------------------------------- */
.alert {
  padding: .85rem 1.05rem; border-radius: var(--radius-sm); margin-bottom: 1rem; font-size: .9rem;
  border-left: 3px solid;
}
.alert-success { background: #eaf7ef; border-color: var(--ok);   color: #1c6b3f; }
.alert-error   { background: #fdecec; border-color: var(--bad);  color: #8b2020; }
.alert-warning { background: #fdf6e3; border-color: var(--warn); color: #86620d; }
.alert-info    { background: #eef4fd; border-color: #3b76d1;     color: #1f4a8f; }

.badge {
  display: inline-block; padding: .22rem .58rem; border-radius: 100px;
  font-size: .72rem; font-weight: 700; letter-spacing: .02em; white-space: nowrap;
}
.badge-ok   { background: #eaf7ef; color: #1c6b3f; }
.badge-warn { background: #fdf6e3; color: #86620d; }
.badge-bad  { background: #fdecec; color: #8b2020; }
.badge-info { background: #eef4fd; color: #1f4a8f; }
.badge-done { background: #eef0f4; color: #454d5e; }

/* --------------------------------------------------------------------------
   Article / prose
   -------------------------------------------------------------------------- */
.prose { font-size: 1.02rem; line-height: 1.78; }
.prose h2 { margin: 2rem 0 .8rem; font-size: 1.5rem; }
.prose h3 { margin: 1.6rem 0 .6rem; }
.prose ul, .prose ol { padding-left: 1.3rem; margin-bottom: 1.1rem; }
.prose li { margin-bottom: .45rem; }
.prose strong { color: var(--navy); }
.prose blockquote {
  margin: 1.4rem 0; padding: .3rem 0 .3rem 1.2rem; border-left: 3px solid var(--gold);
  color: var(--muted); font-style: italic;
}

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { display: flex; gap: .7rem; align-items: flex-start; margin-bottom: .7rem; font-size: .95rem; }
.check-list svg { flex-shrink: 0; color: var(--ok); margin-top: .28rem; }

/* FAQ */
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; margin-bottom: 12px; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; padding: 1.05rem 1.2rem; background: none; border: 0; cursor: pointer;
  font-family: inherit; font-size: .98rem; font-weight: 600; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-q::after { content: '+'; font-size: 1.35rem; color: var(--gold); font-weight: 400; line-height: 1; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { padding: 0 1.2rem; max-height: 0; overflow: hidden; transition: max-height .25s ease, padding .25s ease; }
.faq-item.open .faq-a { padding: 0 1.2rem 1.15rem; max-height: 620px; }
.faq-a p { margin: 0; color: var(--muted); font-size: .93rem; }

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  background: var(--navy); color: #fff; border-radius: var(--radius); padding: 44px;
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-band::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(600px 260px at 88% 10%, rgba(201,162,39,.22), transparent 62%);
}
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; margin-bottom: .35rem; }
.cta-band p { color: rgba(255,255,255,.75); margin: 0; }
.cta-actions { display: flex; gap: .8rem; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.68); padding: 60px 0 0; margin-top: 80px; font-size: .9rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 36px; padding-bottom: 44px; }
.site-footer h4 {
  color: #fff; font-size: .8rem; text-transform: uppercase; letter-spacing: .13em; margin-bottom: 1.1rem;
}
.site-footer a { color: rgba(255,255,255,.68); }
.site-footer a:hover { color: var(--gold); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .55rem; }
.footer-about p { font-size: .88rem; line-height: 1.7; }
.footer-logo { margin-bottom: 1rem; }
.footer-logo .logo-mark--image {
  width: 110px;
  min-width: 110px;
}
.footer-logo .logo-name { color: #fff; }
.footer-logo .logo-sub { color: rgba(255,255,255,.5); }

.newsletter { display: flex; gap: .5rem; margin: .9rem 0 1.2rem; }
.newsletter input {
  flex: 1; min-width: 0; padding: .68rem .85rem; border: 1px solid var(--navy-line);
  background: rgba(255,255,255,.05); color: #fff; border-radius: var(--radius-sm); font-family: inherit; font-size: .9rem;
}
.newsletter input::placeholder { color: rgba(255,255,255,.4); }
.newsletter input:focus { outline: none; border-color: var(--gold); }

.socials { display: flex; gap: .5rem; }
.socials a {
  width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.07);
  display: grid; place-items: center; color: rgba(255,255,255,.8);
}
.socials a:hover { background: var(--gold); color: var(--navy); }

.badges-row { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.1rem; }
.cert-badge {
  border: 1px solid var(--navy-line); border-radius: var(--radius-sm); padding: .5rem .8rem;
  font-size: .72rem; line-height: 1.35; color: rgba(255,255,255,.72);
}
.cert-badge strong { display: block; color: #fff; font-size: .78rem; }

.footer-bottom {
  border-top: 1px solid var(--navy-line); padding: 20px 0; display: flex;
  justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; font-size: .82rem;
}
.footer-bottom nav { display: flex; gap: 1.2rem; flex-wrap: wrap; }

/* Floating WhatsApp */
.float-wa {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 54px; height: 54px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 8px 24px rgba(37,211,102,.4);
}
.float-wa:hover { color: #fff; transform: scale(1.06); }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .booking-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .field-submit { grid-column: 1 / -1; }
  .booking-grid .field-submit .btn { width: 100%; }
  .swap-btn { display: none; }
}

@media (max-width: 940px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .layout-split { grid-template-columns: 1fr; }
  .summary { position: static; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 74px 0 auto; background: #fff; flex-direction: column;
    align-items: stretch; padding: 12px 20px 20px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg); display: none; gap: 0; max-height: calc(100vh - 74px); overflow-y: auto;
  }
  .nav.open { display: flex; }
  .nav a { padding: .85rem .4rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .header-cta .btn { display: none; }
  .header-cta .nav-toggle { display: block; }
  .topbar-left .hide-sm { display: none; }
  .hero { padding: 56px 0 110px; }
  .vehicle-option { grid-template-columns: 120px 1fr; }
  .vehicle-price { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (max-width: 640px) {
  .section { padding: 52px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero { padding: 52px 0 80px; }
  .hero-inner { max-width: 100%; }
  .hero h1 { font-size: clamp(2.2rem, 10vw, 3.5rem); line-height: 1.04; }
  .hero-lead { font-size: 1rem; }
  .hero-points { gap: .55rem .9rem; }
  .hero-points li { font-size: .82rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .booking-grid { grid-template-columns: 1fr; }
  .booking-widget { padding: 18px 16px; }
  .booking-widget--float { margin-top: -60px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-band { padding: 30px; }
  .topbar .wrap { justify-content: center; font-size: .78rem; }
  .topbar-right { display: none; }
  .vehicle-option { grid-template-columns: 1fr; }
  .vehicle-option img { max-width: 200px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media print {
  .site-header, .topbar, .site-footer, .float-wa, .no-print { display: none !important; }
  body { font-size: 12pt; }
  .panel { border: 1px solid #ccc; break-inside: avoid; }
}
