/* ============================================
   AUTOLOC GENEVA — Stylesheet principal
   Couleurs : Rouge / Jaune / Noir
   ============================================ */

:root {
  --red: #E1251B;
  --red-dark: #B81E16;
  --yellow: #FFD500;
  --yellow-dark: #E6C000;
  --black: #0A0A0A;
  --white: #FFFFFF;
  --grey-50: #FAFAFA;
  --grey-100: #F5F5F5;
  --grey-200: #E5E5E5;
  --grey-400: #A3A3A3;
  --grey-600: #525252;
  --grey-800: #262626;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --container: 1200px;
  --transition: 0.25s ease;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

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

/* Typography */
h1, h2, h3, h4 { font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; }
p { color: var(--grey-600); }

/* Editorial headlines — italic serif on hero, page header, section header */
.hero h1,
.page-header h1,
.section-header h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.05;
}
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
.page-header h1 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); }
.section-header h2 { font-size: clamp(2rem, 4.5vw, 3rem); }
.hero h1 .accent,
.page-header h1 .accent,
.section-header h2 .accent {
  font-style: italic;
  background: linear-gradient(120deg, var(--yellow) 0%, #FFC107 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 0.75rem;
}

/* Boutons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--yellow); color: var(--black); }
.btn-secondary:hover { background: var(--yellow-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; border-color: var(--black); color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.logo-img {
  height: 52px;
  width: auto;
  display: block;
  transition: transform var(--transition);
}
.logo:hover .logo-img { transform: scale(1.03); }
.logo img { height: 48px; width: auto; }
.logo-text { display: flex; align-items: baseline; gap: 4px; }
.logo-text .auto { color: var(--red); }
.logo-text .loc { color: var(--yellow-dark); }
.logo-text .geneva { font-size: 0.7em; color: var(--black); margin-left: 4px; }

.nav-main {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-main a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--grey-800);
  position: relative;
  padding: 8px 0;
}
.nav-main a:hover { color: var(--red); }
.nav-main a.active { color: var(--red); }
.nav-main a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang-toggle {
  display: flex;
  background: var(--grey-100);
  border-radius: 8px;
  padding: 4px;
  font-size: 0.85rem;
  font-weight: 700;
}
.lang-toggle button {
  padding: 6px 12px;
  border-radius: 6px;
  color: var(--grey-600);
  transition: all var(--transition);
}
.lang-toggle button.active {
  background: var(--white);
  color: var(--black);
  box-shadow: var(--shadow-sm);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  position: relative;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--black);
  transition: transform var(--transition);
}
.menu-toggle span::before { top: -8px; }
.menu-toggle span::after { top: 8px; }

/* Hero */
.hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(10,10,10,0.78) 0%, rgba(10,10,10,0.55) 50%, rgba(10,10,10,0.78) 100%),
    url('images/hero-bg.jpg') center/cover no-repeat,
    linear-gradient(135deg, var(--black) 0%, var(--grey-800) 100%);
  color: var(--white);
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(60px);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(80px);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 .accent { color: var(--yellow); }
.hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  max-width: 600px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stats .stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--yellow);
  display: block;
}
.hero-stats .stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

/* Sections */
section { padding: 80px 0; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-header p { font-size: 1.1rem; }

/* ===== Bouton flottant WhatsApp Business ===== */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45), 0 2px 6px rgba(0,0,0,0.15);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: whatsapp-pulse 2.4s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55), 0 4px 10px rgba(0,0,0,0.2);
  animation-play-state: paused;
}
.whatsapp-float svg { width: 34px; height: 34px; fill: #fff; }
.whatsapp-float .wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: #1a1a1a;
  color: white;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}
.whatsapp-float .wa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #1a1a1a;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }
@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45), 0 0 0 14px rgba(37, 211, 102, 0); }
}
@media (max-width: 600px) {
  .whatsapp-float { width: 54px; height: 54px; bottom: 16px; right: 16px; }
  .whatsapp-float svg { width: 30px; height: 30px; }
  .whatsapp-float .wa-tooltip { display: none; }
}

/* ===== Custom SVG icons (line-style minimal) ===== */
.icon {
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  vertical-align: -0.2em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.icon-lg { width: 36px; height: 36px; stroke-width: 1.4; }
.icon-xl { width: 48px; height: 48px; stroke-width: 1.3; }
h3 .icon, h4 .icon { margin-right: 8px; vertical-align: -0.18em; }

/* === Trust badges (réassurance paiement) — logos officiels === */
.trust-strip {
  background: var(--white);
  padding: 32px 0;
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 32px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--grey-700);
  font-size: 0.86rem;
  font-weight: 600;
}
.trust-badge .brand-logo {
  height: 36px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.08));
  transition: transform var(--transition);
  object-fit: contain;
}
.trust-badge .brand-logo.flag { height: 30px; border: 1px solid var(--grey-200); }
.trust-badge:hover .brand-logo { transform: translateY(-2px); }

.trust-badge .badge-lock {
  font-size: 1.3rem;
  background: #16a34a;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.trust-badge.trust-secure {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 6px 14px 6px 6px;
  border-radius: 24px;
  color: #166534;
  font-weight: 700;
}
.trust-badge.trust-ge .brand-logo { height: 36px; }

@media (max-width: 600px) {
  .trust-strip-inner { gap: 14px 20px; }
  .trust-badge .brand-logo { height: 28px; }
  .trust-badge.trust-ge .brand-logo { height: 32px; }
  .trust-badge { font-size: 0.78rem; }
}

/* Trust line "Inclus" sur fiches véhicules */
.included-line {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  font-size: 0.78rem;
  color: var(--grey-700);
  border-top: 1px dashed var(--grey-200);
  padding-top: 10px;
  margin-top: 10px;
  margin-bottom: 12px;
}
.included-line .incl-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.included-line .incl-item::before {
  content: '✓';
  color: #16a34a;
  font-weight: 800;
  font-size: 0.85rem;
}
.included-line .incl-add {
  background: var(--yellow);
  color: var(--black);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.72rem;
}
.included-line .incl-add::before {
  content: '★';
  color: var(--red);
}

/* Cartes véhicules */
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.vehicle-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  border: 1px solid var(--grey-200);
  display: flex;
  flex-direction: column;
}
.vehicle-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.vehicle-image {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--grey-100), var(--grey-200));
  position: relative;
  overflow: hidden;
}
.vehicle-image img { width: 100%; height: 100%; object-fit: cover; }
.vehicle-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--yellow);
  color: var(--black);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
}
.vehicle-availability {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.95);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 3px rgba(22,163,74,0.2);
}
.dot.dot-yellow { background: #eab308; box-shadow: 0 0 0 3px rgba(234,179,8,0.2); }

.vehicle-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.vehicle-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 4px;
  min-height: 1.4em;
  line-height: 1.2;
}
.vehicle-subtitle {
  color: var(--grey-600);
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.4;
  min-height: 1.4em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vehicle-content > .btn:last-child,
.vehicle-content > a.btn:last-child { margin-top: auto; }
.vehicle-pricing { margin-top: auto; }
.vehicle-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.spec {
  background: var(--grey-100);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--grey-800);
}
.vehicle-pricing {
  border-top: 1px solid var(--grey-200);
  padding-top: 16px;
  margin-bottom: 16px;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 4px 0;
  font-size: 0.95rem;
}
.price-row .price-label { color: var(--grey-600); }
.price-row .price-value { font-weight: 800; color: var(--black); }
.price-row.price-highlight .price-value { color: var(--red); }

/* Comment ça marche */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.step {
  text-align: center;
  position: relative;
}
.step-number {
  width: 64px;
  height: 64px;
  background: var(--black);
  color: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0 auto 20px;
  border: 3px solid var(--yellow);
}
.step h3 { margin-bottom: 8px; }

/* Pourquoi nous */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.feature {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--grey-200);
  transition: all var(--transition);
}
.feature:hover {
  border-color: var(--yellow);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--yellow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 16px;
}
.feature h3 { margin-bottom: 8px; }
.feature p { font-size: 0.95rem; }

.feature-ge { background: linear-gradient(135deg, #fffbeb 0%, #fff5d6 100%); border-color: var(--yellow); }
.feature-flag {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
  border: 2px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
}
.feature-flag img { width: 100%; height: 100%; object-fit: cover; }

/* Tarifs section preview */
.bg-grey { background: var(--grey-50); }
.pricing-cta {
  text-align: center;
  margin-top: 40px;
}

/* Tableaux tarifs */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
}
.pricing-table thead {
  background: var(--black);
  color: var(--white);
}
.pricing-table th, .pricing-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--grey-200);
}
.pricing-table th { font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tbody tr:hover { background: var(--grey-50); }
.pricing-table .category-name { font-weight: 700; }
.pricing-table .price { font-weight: 700; color: var(--red); white-space: nowrap; }

.pricing-section { margin-bottom: 60px; }
.pricing-section h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info-card {
  background: var(--black);
  color: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
}
.contact-info-card h2 { color: var(--white); }
.contact-info-card p { color: rgba(255,255,255,0.8); }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.contact-detail-content { flex: 1; }
.contact-detail-content strong {
  display: block;
  color: var(--yellow);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.contact-detail-content a { color: var(--white); font-weight: 600; }
.contact-detail-content a:hover { color: var(--yellow); }

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-200);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--grey-800);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--grey-200);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* Footer */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 0 30px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  color: var(--yellow);
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.footer-col a:hover { color: var(--yellow); }
.footer-col p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* Bandeau infos pratiques */
.banner-info {
  background: var(--yellow);
  color: var(--black);
  text-align: center;
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Page tarifs - cartes formules */
.formulas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.formula-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  border: 2px solid var(--grey-200);
  text-align: center;
  transition: all var(--transition);
}
.formula-card:hover { border-color: var(--yellow); box-shadow: var(--shadow-md); }
.formula-card.featured { border-color: var(--red); position: relative; }
.formula-card.featured::before {
  content: 'Le plus populaire';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.formula-name { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; }
.formula-km { color: var(--grey-600); margin-bottom: 16px; font-size: 0.9rem; }
.formula-price { font-size: 2.5rem; font-weight: 900; color: var(--black); }
.formula-price small { font-size: 1rem; color: var(--grey-600); font-weight: 600; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  padding: 20px 24px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  font-size: 1rem;
}
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--red);
  font-weight: 900;
  transition: transform var(--transition);
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition), padding var(--transition);
  padding: 0 24px;
  color: var(--grey-600);
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
}

/* Page header */
.page-header {
  background:
    linear-gradient(135deg, rgba(10,10,10,0.82) 0%, rgba(38,38,38,0.7) 100%),
    url('images/page-bg.jpg') center/cover no-repeat,
    linear-gradient(135deg, var(--black) 0%, var(--grey-800) 100%);
  color: var(--white);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(60px);
}
.page-header h1 { color: var(--white); margin-bottom: 16px; }
.page-header p { color: rgba(255,255,255,0.85); font-size: 1.15rem; max-width: 600px; margin: 0 auto; }

/* === Cartes Upsell / Options à la carte === */
.upsells-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 16px;
}
.upsell-card {
  background: var(--white);
  border: 2px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  transition: all var(--transition);
}
.upsell-card:hover {
  border-color: var(--yellow);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.upsell-popular {
  background: linear-gradient(135deg, #fff8e1 0%, #fff3c4 100%);
  border-color: var(--yellow);
}
.upsell-bundle {
  background: linear-gradient(135deg, var(--black) 0%, var(--grey-800) 100%);
  color: var(--white);
  border-color: var(--black);
}
.upsell-bundle h4 { color: var(--yellow) !important; }
.upsell-bundle p { color: rgba(255,255,255,0.85) !important; }
.upsell-bundle .upsell-price { color: var(--white); }
.upsell-bundle .upsell-price strong { color: var(--yellow); }
.upsell-warning {
  background: #fffbe5;
  border-color: #fbbf24;
}
.upsell-badge {
  position: absolute;
  top: -12px;
  left: 16px;
  background: var(--red);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 14px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.upsell-badge.bundle {
  background: var(--yellow);
  color: var(--black);
}
.upsell-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.upsell-card h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px;
}
.upsell-card p {
  font-size: 0.88rem;
  color: var(--grey-600);
  margin-bottom: 16px;
  line-height: 1.5;
}
.upsell-price {
  font-size: 0.95rem;
  color: var(--black);
  line-height: 1.7;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 12px;
}
.upsell-bundle .upsell-price { border-top-color: rgba(255,255,255,0.15); }
.upsell-price strong {
  font-size: 1.2rem;
  color: var(--red);
  font-family: 'Courier New', monospace;
}
.upsell-price small {
  font-size: 0.85em;
  color: var(--grey-600);
}
.upsell-bundle .upsell-price small { color: rgba(255,255,255,0.7); }

/* === Bon à savoir (avant paiement) === */
.bon-a-savoir {
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  border: 1px solid var(--grey-200);
  border-radius: 14px;
  padding: 24px;
  margin: 24px 0;
}
.bon-a-savoir h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 16px;
}
.bons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}
.bon-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  padding: 12px 14px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--grey-200);
  align-items: start;
}
.bon-item.bon-warning {
  background: #fef2f2;
  border-color: #fca5a5;
}
.bon-emoji {
  font-size: 1.4rem;
  line-height: 1;
  margin-top: 2px;
}
.bon-item div { display: flex; flex-direction: column; gap: 2px; }
.bon-item strong { font-size: 0.9rem; color: var(--black); font-weight: 800; }
.bon-item span { font-size: 0.82rem; color: var(--grey-600); line-height: 1.4; }
.bon-item.bon-warning strong { color: #991b1b; }

/* === Acceptation CGV === */
.cgv-acceptance {
  background: #fff8e1;
  border: 2px solid var(--yellow);
  border-radius: 10px;
  padding: 14px 16px;
  margin: 16px 0;
}
.cgv-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.cgv-check input[type="checkbox"] {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--red);
  cursor: pointer;
}
.cgv-text {
  font-size: 0.88rem;
  color: var(--grey-800);
  line-height: 1.5;
}
.cgv-text a {
  color: var(--red);
  font-weight: 600;
  text-decoration: underline;
}

/* === Couverture / Pack (radios) === */
.coverage-radios {
  display: grid;
  gap: 10px;
}
.coverage-option {
  display: block;
  cursor: pointer;
  position: relative;
}
.coverage-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.coverage-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px 16px;
  padding: 14px 18px;
  background: var(--white);
  border: 2px solid var(--grey-200);
  border-radius: 10px;
  transition: all var(--transition);
}
.coverage-option:hover .coverage-card { border-color: var(--yellow); background: #fffdf5; }
.coverage-option input:checked + .coverage-card {
  background: linear-gradient(135deg, #fff8e1, #fff3c4);
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225, 37, 27, 0.1);
}
.coverage-option.pack input:checked + .coverage-card {
  background: linear-gradient(135deg, #0a0a0a, #262626);
  color: var(--white);
}
.coverage-option.pack input:checked + .coverage-card .coverage-name { color: var(--yellow); }
.coverage-option.pack input:checked + .coverage-card .coverage-desc { color: rgba(255,255,255,0.85); }
.coverage-option.pack input:checked + .coverage-card .coverage-price { color: var(--yellow); }

.coverage-name { font-weight: 800; font-size: 1rem; color: var(--black); }
.coverage-desc { font-size: 0.85rem; color: var(--grey-600); grid-column: 1; }
.coverage-price {
  font-weight: 800;
  color: var(--red);
  font-family: 'Courier New', monospace;
  font-size: 1rem;
  white-space: nowrap;
  text-align: right;
}

.badge-incl, .badge-pop, .badge-deal {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  vertical-align: middle;
  margin-right: 6px;
}
.badge-incl { background: #16a34a; color: white; }
.badge-pop { background: var(--red); color: white; }
.badge-deal { background: var(--yellow); color: var(--black); }

@media (max-width: 600px) {
  .coverage-card { grid-template-columns: 1fr; }
  .coverage-price { text-align: left; }
}

/* === Cases à cocher upsells (page contact) — flex layout propre === */
.upsell-checkboxes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}
.upsell-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  background: var(--white);
  border: 2px solid var(--grey-200);
  border-radius: 14px;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}
.upsell-check:hover {
  border-color: var(--yellow);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.06);
}
.upsell-check.is-checked {
  background: linear-gradient(135deg, #fff8e1 0%, #fffaf0 100%);
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225, 37, 27, 0.1);
}
.upsell-check input[type="checkbox"] {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  accent-color: var(--red);
  cursor: pointer;
  margin-top: 4px;
}
.check-icon {
  flex-shrink: 0;
  font-size: 2.2rem;
  line-height: 1;
  width: 48px;
  text-align: center;
}
.check-content {
  flex: 1;
  min-width: 0;
  display: block;
}
.check-content strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1.3;
  margin-bottom: 4px;
}
.check-content small {
  display: block;
  font-size: 0.85rem;
  color: var(--grey-600);
  line-height: 1.45;
  margin-bottom: 8px;
  text-decoration: none;
}
.check-price {
  display: block;
  margin-top: 8px;
  font-weight: 800;
  color: var(--red);
  font-family: 'Courier New', monospace;
  font-size: 1.05rem;
}
.upsell-check.is-checked .check-price { color: var(--red-dark); }

@media (max-width: 600px) {
  .upsell-check { grid-template-columns: auto 40px 1fr; }
  .upsell-check .check-price { grid-column: 2 / -1; text-align: right; padding-top: 4px; }
}

/* === Calculateur de prix (page contact) === */
.price-calc {
  background: linear-gradient(135deg, #fff8e1 0%, #fff3c4 100%);
  border: 2px solid var(--yellow);
  border-radius: var(--radius-lg);
  margin: 24px 0;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.price-calc-header {
  background: var(--black);
  color: var(--yellow);
  padding: 14px 20px;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.price-calc-body { padding: 20px 24px; }
.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(10,10,10,0.1);
  font-size: 0.95rem;
}
.calc-row:last-of-type { border-bottom: none; }
.calc-label { color: var(--grey-800); font-weight: 500; }
.calc-value {
  font-weight: 800;
  font-family: 'Courier New', monospace;
  color: var(--black);
  font-size: 1rem;
}
.calc-row.calc-total {
  margin-top: 8px;
  padding: 14px 0 4px;
  border-top: 2px solid var(--black);
  border-bottom: none;
  font-size: 1.15rem;
}
.calc-row.calc-total .calc-label { font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; }
.calc-row.calc-total .calc-value { color: var(--red); font-size: 1.5rem; }
.calc-note {
  font-size: 0.85rem !important;
  color: var(--grey-600) !important;
  margin-top: 12px !important;
  padding-top: 12px;
  border-top: 1px dashed rgba(10,10,10,0.1);
}

.cta-stack { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }

/* === Avis Google === */
.reviews-section {
  background: var(--grey-50);
  padding: 60px 0;
  margin-top: 60px;
}
.reviews-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin: 0 auto 36px;
  max-width: 480px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border: 1px solid var(--grey-200);
}
.rating-stars {
  color: #fbbf24;
  font-size: 2rem;
  letter-spacing: 4px;
  line-height: 1;
}
.rating-score {
  font-size: 1.4rem;
  color: var(--grey-800);
}
.rating-score strong {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--black);
  font-family: 'Inter', sans-serif;
}
.rating-count {
  font-size: 0.95rem;
  color: var(--grey-600);
}
.rating-count strong { color: var(--red); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--grey-200);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 0;
  left: 16px;
  font-size: 4rem;
  color: var(--yellow);
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.5;
}
.review-stars { color: #fbbf24; font-size: 1.1rem; margin-bottom: 10px; }
.review-text { font-style: italic; color: var(--grey-800); margin-bottom: 16px; line-height: 1.6; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
.review-meta { font-size: 0.85rem; color: var(--grey-600); }
.review-meta strong { color: var(--black); display: block; font-size: 0.95rem; }

.google-link-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 12px 20px;
  background: white;
  border: 2px solid var(--grey-200);
  border-radius: 8px;
  font-weight: 600;
  color: var(--grey-800);
  transition: all var(--transition);
}
.google-link-cta:hover { border-color: #4285F4; transform: translateY(-2px); }

/* Section panoramique Genève */
.section-panorama {
  position: relative;
  min-height: 420px;
  padding: 100px 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0.75) 100%),
    url('images/geneva-bg.jpg') center/cover no-repeat,
    linear-gradient(135deg, var(--black) 0%, var(--grey-800) 100%);
  background-attachment: fixed;
  color: var(--white);
  text-align: center;
}
.section-panorama h2 { color: var(--white); }
.section-panorama p { color: rgba(255,255,255,0.9); font-size: 1.15rem; max-width: 600px; margin: 0 auto; }
@media (max-width: 768px) {
  .section-panorama { background-attachment: scroll; min-height: 320px; padding: 70px 0; }
}

/* Drapeau suisse en accent */
.swiss-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--red);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
}
.swiss-accent::before {
  content: '🇨🇭';
  font-size: 1rem;
}

/* Utilities */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-4 { margin-top: 4rem; }

/* Responsive */
@media (max-width: 900px) {
  .nav-main { display: none; }
  .menu-toggle { display: flex; }
  .nav-main.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--grey-200);
  }
  .nav-main.open a { padding: 12px 0; font-size: 1.1rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  section { padding: 60px 0; }
  .hero { padding: 60px 0 80px; }
  .footer-grid { grid-template-columns: 1fr; }
  .pricing-table { font-size: 0.78rem; }
  .pricing-table th, .pricing-table td { padding: 8px 6px; }
  .contact-info-card, .contact-form { padding: 20px 16px; }
  .container { padding: 0 16px; }

  /* Cartes véhicules sur mobile */
  .vehicles-grid { grid-template-columns: 1fr; gap: 16px; }
  .vehicle-image { aspect-ratio: 16 / 11; }

  /* Formulaire */
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-group input, .form-group select, .form-group textarea { font-size: 16px; /* éviter zoom iOS */ }

  /* Flatpickr */
  .flatpickr-calendar { width: calc(100vw - 32px) !important; max-width: 360px; }
  .flatpickr-days { width: 100% !important; }
  .dayContainer { width: 100% !important; min-width: 0 !important; max-width: none !important; }

  /* Couverture cards */
  .coverage-card { grid-template-columns: 1fr; gap: 4px; padding: 12px 14px; }
  .coverage-price { text-align: left; font-size: 0.95rem; }
  .coverage-name { font-size: 0.95rem; }
  .coverage-desc { font-size: 0.82rem; }

  /* Upsells mobile : 1 colonne */
  .upsell-checkboxes { grid-template-columns: 1fr; }
  .upsell-check { padding: 14px 16px; gap: 10px; }
  .check-icon { font-size: 1.8rem; width: 38px; }
  .check-content strong { font-size: 0.95rem; }
  .check-content small { font-size: 0.82rem; }

  /* Calculateur prix */
  .price-calc-body { padding: 16px; }
  .calc-row { font-size: 0.88rem; }
  .calc-row.calc-total .calc-value { font-size: 1.25rem; }

  /* CGV */
  .cgv-text { font-size: 0.82rem; }

  /* Boutons */
  .btn-lg { padding: 14px 18px; font-size: 0.98rem; }

  /* Page header */
  .page-header { padding: 50px 0 40px; }

  /* Hero stats */
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .hero-stats .stat-num { font-size: 1.6rem; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* Iframe map */
  iframe { max-width: 100%; }
}

/* iOS zoom prevention */
@media (max-width: 768px) {
  input, select, textarea { font-size: 16px !important; }
}

/* === Animations === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.fade-in { animation: fadeInUp 0.6s ease forwards; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}
/* Stagger pour grilles */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.45s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.55s; opacity: 1; transform: translateY(0); }

/* Hero stat numbers count-up state */
.hero-stats .stat-num {
  display: inline-block;
  transition: transform 0.4s ease;
}

/* Boutons : effet brillance au hover (subtil) */
.btn-primary, .btn-secondary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-primary::after, .btn-secondary::after {
  content: '';
  position: absolute;
  top: 0; left: -150%;
  width: 80%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  transition: left 0.7s ease;
  pointer-events: none;
  z-index: 0;
}
.btn-primary:hover::after, .btn-secondary:hover::after {
  left: 150%;
}
.btn-primary > *, .btn-secondary > * { position: relative; z-index: 1; }

/* Cards lift au hover */
.vehicle-card, .feature, .review-card {
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

/* Pulse subtle sur le badge "Disponible" */
.dot {
  position: relative;
}
.dot::after {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0;
  animation: pulseRing 2s ease-out infinite;
}
@keyframes pulseRing {
  0% { transform: scale(0.5); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Réduit motion si utilisateur préfère */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-scale, .reveal-stagger > * {
    opacity: 1; transform: none;
  }
}

/* Bascule de langue — !important pour battre les sélecteurs plus spécifiques (.form-group label, etc.) */
[data-lang="en"] { display: none !important; }
[data-lang="fr"] { display: inline !important; }
body.lang-en [data-lang="fr"] { display: none !important; }
body.lang-en [data-lang="en"] { display: inline !important; }

[data-lang-block="en"] { display: none !important; }
[data-lang-block="fr"] { display: block !important; }
body.lang-en [data-lang-block="fr"] { display: none !important; }
body.lang-en [data-lang-block="en"] { display: block !important; }
