/* ============================================
   CISSE SPEED VTC – CSS
   ============================================ */

/* ---- TOKENS ---- */
:root {
  --red: #e8192c;
  --red-dark: #c01020;
  --red-light: #ff3347;
  --red-glow: rgba(232, 25, 44, 0.3);

  --bg: #0a0a0b;
  --bg-2: #111114;
  --bg-3: #18181d;
  --bg-card: #16161b;
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(255,255,255,0.15);

  --text: #f0f0f5;
  --text-muted: #8888a0;

  --font: 'Inter', sans-serif;
  --font-display: 'Arial', sans-serif;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;

  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-red: 0 8px 40px rgba(232,25,44,0.25);

  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ---- LIGHT THEME ---- */
:root {
  color-scheme: light;
  --bg: #f5f5f8;
  --bg-2: #ecedf2;
  --bg-3: #e2e3ea;
  --bg-card: #ffffff;
  --border: rgba(0,0,0,0.08);
  --border-hover: rgba(0,0,0,0.18);

  --text: #111118;
  --text-muted: #5a5a72;

  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-red: 0 8px 40px rgba(232,25,44,0.20);
}


.btn-ghost {
  background: rgba(0,0,0,0.06);
  color: #111118;
  border-color: rgba(0,0,0,0.12);
}
.btn-ghost:hover {
  background: rgba(0,0,0,0.10);
}



.how-section { background: var(--bg-2); }
.faq-section { background: var(--bg-2); }
.footer { background: var(--bg-2); }

.how-bg-accent {
  background: radial-gradient(circle, rgba(232,25,44,0.06) 0%, transparent 70%);
}

/* Vehicle cards – light theme fixes */
.vehicle-photo { background: #f0f0f5; }

.vehicle-card.premium {
  background: linear-gradient(135deg, #fdf0f2 0%, #fff 100%);
  border-color: rgba(232,25,44,0.25);
}

/* Eco badge gets a proper dark-on-light look */
.eco-badge {
  background: rgba(0,0,0,0.07);
  color: #444460;
}

/* All text inside vehicle cards – force dark readable colors */
.vehicle-card .vehicle-name,
.vehicle-card .vehicle-sub,
.vehicle-card .feature-item,
.vehicle-card .price-row,
.vehicle-card .price-row.highlight {
  color: #2a2a3a;
}

.vehicle-card .price {
  color: #111118;
}

.vehicle-card .price-row.highlight {
  background: rgba(232,25,44,0.06);
}

.vehicle-card .vehicle-prices {
  border-top-color: rgba(0,0,0,0.08);
}

.vehicle-card .price-row:hover {
  background: rgba(0,0,0,0.04);
}

select.form-control option { background: #fff; color: #111; }

.form-control {
  background: rgba(0,0,0,0.04);
  color: #111118;
  color-scheme: light;
}

.form-control::placeholder { color: rgba(0,0,0,0.3); }

.recap-box {
  background: rgba(0,0,0,0.03);
}

.radio-card-content {
  background: rgba(0,0,0,0.03);
}

.footer-socials a {
  background: rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.1);
  color: #5a5a72;
}

.step-dot {
  background: rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.12);
}

.footer-tagline { color: #000 !important; }
.footer-col h5 { color: #000 !important; }
.footer-col li a { color: #000 !important; }
.footer-col li a:hover { color: var(--red) !important; }
.footer-bottom { color: #000 !important; }
.footer-bottom a { color: #000 !important; font-weight: bold; }
.footer-nap { color: #000 !important; }

/* Light theme transition */
html { transition: background 0.4s ease, color 0.4s ease; }
body, .navbar, .service-card, .vehicle-card, .step-card,
.zone-card, .faq-item, .contact-card, .sidebar-card,
.booking-form, .how-img-card, .footer {
  transition: background 0.4s ease, border-color 0.4s ease, color 0.3s ease, box-shadow 0.4s ease;
}


/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.15; }
h1 { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

/* ---- UTILITIES ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.gradient-text {
  background: linear-gradient(135deg, var(--red-light) 0%, #ff6b6b 50%, var(--red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  background: rgba(232,25,44,0.12);
  color: var(--red-light);
  border: 1px solid rgba(232,25,44,0.25);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title { margin-bottom: 16px; }
.section-desc { color: var(--text-muted); font-size: 1.05rem; line-height: 1.75; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 50px rgba(232,25,44,0.4);
}

.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn-red:hover {
  background: var(--red-light);
  transform: translateY(-2px);
}

.btn-outline-red {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline-red:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 2px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--border-hover);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: var(--radius); }
.btn-full { width: 100%; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: #000000;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(10,10,11,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  z-index: 100;
}

.logo-icon {
  font-size: 1.4rem;
  filter: drop-shadow(0 0 8px var(--red));
}

.logo-accent { color: var(--red); }

.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
  flex: 1;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.07);
}

.nav-actions { margin-left: auto; display: flex; gap: 12px; align-items: center; }
.nav-call { display: flex; align-items: center; gap: 6px; font-weight: 600; padding: 10px 18px; font-size: 0.9rem; color: #fff !important; border-color: rgba(255,255,255,0.2) !important; background: rgba(255,255,255,0.05) !important; }
.nav-call:hover { background: rgba(255,255,255,0.1) !important; color: #fff !important; }
.nav-cta { margin-left: 0; }
.hamburger { display: none; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: slowZoom 15s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,11,0.92) 0%,
    rgba(10,10,11,0.75) 40%,
    rgba(10,10,11,0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 24px 80px;
  width: 100%;
}

.hero-badge {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 28px;
  animation: fadeInUp 1s ease both;
}

.hero-title {
  color: #ffffff;
  margin-bottom: 24px;
  animation: fadeInUp 1s 0.15s ease both;
  max-width: 700px;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin-bottom: 40px;
  animation: fadeInUp 1s 0.3s ease both;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeInUp 1s 0.45s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  animation: fadeInUp 1s 0.6s ease both;
}

.stat { display: flex; flex-direction: column; }
.stat-value { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; line-height: 1; color: #ffffff; }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
  transition: color var(--transition);
}

.hero-scroll-hint:hover { color: rgba(255,255,255,0.7); }

.scroll-arrow {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

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

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}

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

.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

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

.service-card.featured {
  border-color: rgba(232,25,44,0.35);
  background: linear-gradient(135deg, rgba(232,25,44,0.04) 0%, var(--bg-card) 100%);
  box-shadow: 0 0 0 1px rgba(232,25,44,0.2), var(--shadow);
}

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

.featured-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.service-icon-wrap {
  margin-bottom: 20px;
}

.service-icon {
  font-size: 2.5rem;
  width: 64px; height: 64px;
  background: rgba(232,25,44,0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card h3 { margin-bottom: 12px; }

.service-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features li {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ============================================
   VEHICLES
   ============================================ */
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.vehicle-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.vehicle-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.vehicle-card.premium {
  border-color: rgba(232,25,44,0.3);
  background: linear-gradient(135deg, rgba(15,15,20,1) 0%, rgba(232,25,44,0.04) 100%);
}
.vehicle-card.premium .vehicle-name,
.vehicle-card.premium .price,
.vehicle-card.premium .price-row.highlight {
  color: #ffffff;
}
.vehicle-card.premium .vehicle-sub,
.vehicle-card.premium .feature-item,
.vehicle-card.premium .price-row {
  color: rgba(255,255,255,0.75);
}

.premium-ribbon {
  position: absolute;
  top: 24px; right: -28px;
  background: var(--red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 6px 36px;
  letter-spacing: 0.12em;
  transform: rotate(45deg);
}

.vehicle-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eco-badge {
  background: rgba(255,255,255,0.08);
  color: var(--text-muted);
}

.premium-badge {
  background: rgba(232,25,44,0.15);
  color: var(--red-light);
  border: 1px solid rgba(232,25,44,0.25);
}

.vehicle-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 4px;
}

.vehicle-sub {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.vehicle-visual {
  text-align: center;
  padding: 16px;
  margin-bottom: 24px;
}

.vehicle-photo {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
  padding: 8px;
}

.vehicle-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.vehicle-prices {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 8px 12px;
  border-radius: 8px;
  transition: background var(--transition);
}

.price-row:hover { background: rgba(255,255,255,0.04); }

.price-row.highlight {
  background: rgba(232,25,44,0.08);
  color: var(--text);
}

.price {
  font-weight: 700;
  color: var(--text);
  font-size: 1rem;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-section {
  background: var(--bg-2);
  overflow: hidden;
}

.how-bg-accent {
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,25,44,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  margin-bottom: 64px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}

.step-card:hover {
  border-color: rgba(232,25,44,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(232,25,44,0.15);
  line-height: 1;
  margin-bottom: 8px;
}

.step-icon { font-size: 2rem; margin-bottom: 12px; display: block; }

.step-card h3 { margin-bottom: 10px; font-size: 1rem; }

.step-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.step-connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), rgba(232,25,44,0.2));
  margin: 60px 8px 0;
  flex-shrink: 0;
  align-self: center;
}

.how-image-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.how-img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.how-img-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.how-img-card:hover img { transform: scale(1.04); }

.how-img-caption {
  padding: 20px 24px;
}

.how-img-caption strong { display: block; margin-bottom: 6px; }
.how-img-caption p { color: var(--text-muted); font-size: 0.87rem; }

/* ============================================
   BOOKING / RESERVATION
   ============================================ */
.booking-section { background: var(--bg); }

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

/* Form */
.booking-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeInUp 0.4s ease both;
}

/* Step indicator */
.step-indicator {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
}

.step-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: all var(--transition);
}

.step-dot.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: var(--shadow-red);
}

.step-dot.done {
  background: #1a5c2a;
  border-color: #2d8a40;
  color: #5be37d;
}

.step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 8px;
  transition: background var(--transition);
}

.step-line.active { background: var(--red); }

.form-step-title {
  font-size: 1.3rem;
  margin-bottom: 28px;
  color: var(--text);
}

/* Form groups */
.form-group { margin-bottom: 20px; width: 100%; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-control {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.93rem;
  transition: all var(--transition);
  outline: none;
  appearance: none;
}

.form-control:focus {
  border-color: var(--red);
  background: rgba(232,25,44,0.04);
  box-shadow: 0 0 0 3px rgba(232,25,44,0.12);
}

.form-control::placeholder { color: rgba(255,255,255,0.25); }

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px;
  cursor: pointer;
}

select.form-control option {
  background: #1a1a22;
  color: var(--text);
}

textarea.form-control { resize: vertical; min-height: 80px; }

/* Radio cards */
.radio-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.radio-cards.compact {
  grid-template-columns: repeat(2, 1fr);
}

.radio-card { display: block; cursor: pointer; }

.radio-card input { display: none; }

.radio-card-content {
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 12px;
  text-align: center;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.02);
}

.radio-card:hover .radio-card-content {
  border-color: rgba(232,25,44,0.3);
  background: rgba(232,25,44,0.04);
}

.radio-card input:checked + .radio-card-content {
  border-color: var(--red);
  background: rgba(232,25,44,0.08);
  box-shadow: 0 0 0 1px rgba(232,25,44,0.2);
}

.radio-card-icon { font-size: 1.6rem; line-height: 1; }
.radio-card-label { font-size: 0.88rem; font-weight: 600; }
.radio-card-sub { font-size: 0.75rem; color: var(--text-muted); }

/* Price Preview */
.price-preview {
  background: rgba(232,25,44,0.07);
  border: 1px solid rgba(232,25,44,0.2);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.price-preview-label { font-size: 0.85rem; color: var(--text-muted); }
.price-preview-value { font-size: 1.4rem; font-weight: 800; color: var(--red-light); }

/* Recap */
.recap-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  line-height: 1.8;
}

.recap-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.recap-row:last-child { border-bottom: none; }
.recap-row span:first-child { color: var(--text-muted); }
.recap-row span:last-child { font-weight: 600; }
.recap-total { font-size: 1.1rem !important; }
.recap-total span { color: var(--red-light) !important; }

/* CGV */
.cgv-check { margin-bottom: 20px; }
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  cursor: pointer;
}
.checkbox-label input { width: 18px; height: 18px; cursor: pointer; accent-color: var(--red); }
.link-red { color: var(--red-light); text-decoration: underline; }

/* Form Buttons */
.form-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

/* Success */
.success-step {
  text-align: center;
  padding: 48px 16px;
}

.success-icon { font-size: 4rem; margin-bottom: 20px; animation: pop 0.5s ease; }

@keyframes pop {
  0% { transform: scale(0); }
  70% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.success-step h3 { font-size: 1.8rem; margin-bottom: 16px; }
.success-step p { color: var(--text-muted); margin-bottom: 32px; max-width: 460px; margin-left: auto; margin-right: auto; }

.success-contact p { color: var(--text-muted); margin-bottom: 16px; font-size: 0.9rem; }
.success-contact { display: flex; flex-direction: column; align-items: center; gap: 12px; }

/* Sidebar */
.booking-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.sidebar-card h4 { margin-bottom: 12px; font-size: 1rem; }
.sidebar-card p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 4px; }

.sidebar-phone {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--red-light);
  margin-top: 8px;
  transition: color var(--transition);
}

.sidebar-phone:hover { color: var(--red); }

.sidebar-card.reassurance ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-card.reassurance li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.sidebar-card.reassurance li:last-child { border-bottom: none; }

/* ============================================
   ZONES
   ============================================ */
.zones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.zone-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
  cursor: default;
}

.zone-card:hover {
  border-color: rgba(232,25,44,0.3);
  transform: translateY(-3px);
  background: rgba(232,25,44,0.04);
}

.zone-card.accent {
  border-color: rgba(232,25,44,0.2);
  background: rgba(232,25,44,0.04);
}

.zone-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}

.zone-name {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================
   FAQ
   ============================================ */
.faq-section { background: var(--bg-2); }

.faq-container { max-width: 800px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: rgba(232,25,44,0.25);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 16px;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--red-light); }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--red);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  padding: 4px 24px 22px;
  color: var(--text-muted);
  font-size: 0.91rem;
  line-height: 1.75;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}

.contact-card:hover {
  border-color: rgba(232,25,44,0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.contact-icon { font-size: 2.2rem; margin-bottom: 14px; }
.contact-card h4 { margin-bottom: 8px; font-size: 1rem; }
.contact-card p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 10px; }
.contact-link { color: var(--red-light); font-weight: 700; font-size: 0.9rem; transition: color var(--transition); }
.contact-link:hover { color: var(--red); }
a.contact-link:hover { text-decoration: underline; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 24px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-tagline { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}

.footer-socials a:hover {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
}

.footer-links {
  display: contents;
}

.footer-col h5 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.footer-col li a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--text); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .step-connector { display: none; }
  
  .contact-grid { grid-template-columns: 1fr 1fr; }
  
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-links { display: contents; }
}

@media (max-width: 900px) {
  .nav-call { display: none !important; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  
  .nav-links, .nav-actions { display: none; }
  
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
    padding: 4px;
  }
  
  .hamburger span {
    width: 24px; height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all var(--transition);
    display: block;
    transform-origin: 1px 1px;
  }
  
  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .services-grid { grid-template-columns: 1fr; }
  .vehicles-grid { grid-template-columns: 1fr; }
  .zones-grid { grid-template-columns: 1fr 1fr 1fr; }
  
  .booking-wrapper { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  
  .booking-form { padding: 28px 20px; }
  
  .radio-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
  
  .how-image-row { grid-template-columns: 1fr; }
  
  .contact-grid { grid-template-columns: 1fr 1fr; }
  
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-links { display: contents; }
}

@media (max-width: 560px) {
  .zones-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}


/* HERO GHOST BUTTON FIX */
.hero .btn-ghost, .local-hero .btn-ghost {
  color: #ffffff !important;
  background: rgba(255,255,255,0.15) !important;
  border-color: rgba(255,255,255,0.3) !important;
}
.hero .btn-ghost:hover, .local-hero .btn-ghost:hover {
  background: rgba(255,255,255,0.25) !important;
  border-color: rgba(255,255,255,0.4) !important;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.wa-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 14px rgba(37,211,102,0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.wa-float:hover {
  transform: scale(1.1);
  background-color: #20b858;
  color: #FFF;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 800px;
}

.cookie-text a {
  color: var(--red);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.cookie-accept {
  background: var(--red);
  color: #FFF;
}
.cookie-accept:hover {
  background: var(--red-dark);
}

.cookie-decline {
  background: rgba(0,0,0,0.06);
  color: var(--text);
}
.cookie-decline:hover {
  background: rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }
  .cookie-btn {
    width: 100%;
    padding: 12px;
  }
}

