/* =================================================
   CHAUFFEURS-VTC.PARIS — Design refonte v2 (premium)
   ================================================= */

/* Fonts (chargées via @import pour autonomie du CSS) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700;800&display=swap');

:root {
  /* Palette premium */
  --bg:         #ffffff;
  --bg-dark:    #0a0d12;
  --bg-night:   #14181f;
  --bg-charcoal:#1c2027;
  --fg:         #0a0d12;
  --fg-inv:     #ffffff;
  --muted:      #6b7280;
  --muted-soft: #9ca3af;

  --primary:    #0a0d12;
  --primary-h:  #1c2027;

  --accent:     #c9a961;       /* champagne or */
  --accent-h:   #b89849;
  --accent-soft:#e8d9a8;

  --whatsapp:   #25d366;
  --error:      #dc2626;
  --success:    #059669;

  --border:     #e5e7eb;
  --border-dark:rgba(255,255,255,.1);
  --surface:    #fafafa;
  --surface-2:  #f5f5f5;

  --radius:     10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --shadow:     0 2px 8px rgba(10,13,18,.04);
  --shadow-md:  0 8px 24px rgba(10,13,18,.08);
  --shadow-lg:  0 16px 48px rgba(10,13,18,.14);
  --shadow-glow:0 0 32px rgba(201,169,97,.25);

  --max:        1240px;
  --transition: cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  margin: 0;
  font-feature-settings: "kern";
}

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

/* TYPOGRAPHIE */
a { color: var(--fg); text-decoration: none; transition: color .2s var(--transition); }
a:hover { color: var(--accent-h); }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 700;
  margin: 0 0 .8rem;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-top: 3rem; }
h3 { font-size: 1.3rem; font-family: 'Inter', sans-serif; font-weight: 700; }
h4 { font-size: 1.05rem; font-family: 'Inter', sans-serif; font-weight: 700; }

p { margin: .8rem 0; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 700px; }

.muted    { color: var(--muted); }
.text-center { text-align: center; }
.text-accent { color: var(--accent); }

/* ============================================
   HEADER PREMIUM (sticky + backdrop-blur)
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all .3s var(--transition);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}
.logo::before {
  content: '✦';
  color: var(--accent);
  font-size: 1.4rem;
}

.main-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.main-nav a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--fg);
  position: relative;
  padding: .25rem 0;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .3s var(--transition);
}
.main-nav a:hover::after { width: 100%; }

.header-right { display: flex; gap: 1rem; align-items: center; }
.lang-switch { display: flex; gap: .2rem; }
.lang-switch a {
  font-size: .8rem;
  padding: .3rem .55rem;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--muted);
}
.lang-switch a.active {
  background: var(--primary);
  color: #fff;
}

.cta-phone {
  background: var(--primary);
  color: #fff !important;
  padding: .65rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: all .2s var(--transition);
}
.cta-phone:hover {
  background: var(--accent);
  color: var(--primary) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Burger menu mobile */
.burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: .5rem;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg);
  margin: 5px 0;
  transition: .3s var(--transition);
}

/* ============================================
   HERO (homepage)
   ============================================ */
.hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(10,13,18,.85) 0%, rgba(28,32,39,.92) 100%),
    radial-gradient(circle at 30% 50%, rgba(201,169,97,.15), transparent 60%);
  background-color: var(--bg-night);
  color: #fff;
  padding: 6rem 0 5rem;
  margin: -2rem -1.5rem 3rem;          /* déborde du container */
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(201,169,97,.08), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(201,169,97,.06), transparent 40%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--accent); }
.hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  margin-bottom: 1.5rem;
  max-width: 800px;
}
.hero h1 .accent { color: var(--accent); font-style: italic; }
.hero .lead {
  color: rgba(255,255,255,.85);
  font-size: 1.15rem;
  max-width: 580px;
  margin-bottom: 2rem;
}
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  padding: .5rem 1rem;
  border-radius: 999px;
  font-size: .85rem;
  color: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
}
.hero-rating .stars { color: var(--accent); }

/* ============================================
   STATS BAR (trust signals)
   ============================================ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  background: var(--primary);
  color: #fff;
  margin: 0 -1.5rem 3rem;
  padding: 2.5rem 1.5rem;
}
.stat {
  text-align: center;
  padding: .5rem;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat:last-child { border-right: 0; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  margin-top: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: all .2s var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff !important;
}
.btn-primary:hover {
  background: var(--accent);
  color: var(--primary) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  border-color: var(--primary);
  color: var(--primary) !important;
  background: transparent;
}
.btn-secondary:hover {
  background: var(--primary);
  color: #fff !important;
}
.btn-accent {
  background: var(--accent);
  color: var(--primary) !important;
}
.btn-accent:hover { background: var(--accent-h); }
.btn-whatsapp { background: var(--whatsapp); color: #fff !important; }
.btn-whatsapp:hover { background: #1ebe57; transform: translateY(-2px); }
.btn-lg { padding: 1.05rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* ============================================
   CARDS / GRIDS
   ============================================ */
.card {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  transition: all .3s var(--transition);
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card h3 { margin: 0 0 .5rem; }
.card p { color: var(--muted); margin: .3rem 0; }

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.section { margin: 4rem 0; }
.section-title {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}
.section-title h2 { margin-top: 0; }
.section-title p  { color: var(--muted); font-size: 1.05rem; }

/* Cards spéciales : services avec icône */
.service-card { padding: 2rem 1.5rem; }
.service-card .icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 1rem;
  transition: all .3s var(--transition);
}
.service-card:hover .icon {
  background: var(--accent);
  color: #fff;
  transform: scale(1.05);
}

/* Cards route avec prix mis en avant */
.route-card {
  border-left: 3px solid var(--accent);
}
.route-card h3 { font-size: 1.1rem; }
.route-card .price {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  margin: .5rem 0 .2rem;
}

/* BREADCRUMB */
.breadcrumb { font-size: .85rem; color: var(--muted); margin: 1.5rem 0 2rem; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent-h); }
.breadcrumb span { color: var(--fg); }

/* ============================================
   BOOKING WIDGET (élégant)
   ============================================ */
.booking-widget {
  background: linear-gradient(135deg, #fff 0%, var(--surface) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin: 2.5rem 0;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.booking-widget::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-soft) 100%);
}
.booking-widget h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: .5rem;
  margin-bottom: 1.5rem;
}
.booking-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: flex; flex-direction: column; gap: .3rem; }
.form-row label {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
}
.form-row input, .form-row select {
  padding: .9rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  transition: all .2s var(--transition);
}
.form-row input:focus, .form-row select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,169,97,.15);
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.bw-result {
  margin-top: 1.2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.bw-prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin-bottom: 1rem;
}
.bw-price-card {
  border: 2px solid var(--border);
  background: #fff;
  border-radius: var(--radius);
  padding: 1rem;
  cursor: pointer;
  text-align: center;
  font-family: inherit;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  transition: all .2s var(--transition);
}
.bw-price-card:hover { border-color: var(--accent); }
.bw-price-card.selected {
  border-color: var(--accent);
  background: #fff;
  box-shadow: var(--shadow-md);
}
.bw-veh-label { font-size: .85rem; font-weight: 600; color: var(--muted); }
.bw-veh-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary);
}
.bw-veh-cap { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.bw-info { text-align: center; color: var(--muted); font-size: .9rem; margin: .8rem 0; }
.bw-actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.bw-actions .btn { flex: 1; min-width: 130px; }
.bw-error { background: #fee2e2; color: var(--error); padding: .8rem 1rem; border-radius: var(--radius); font-size: .9rem; }

/* MODAL */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(10,13,18,.7);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem; z-index: 1000;
  backdrop-filter: blur(8px);
  animation: fadeIn .25s var(--transition);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  max-width: 480px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.modal-close {
  position: absolute; top: 1rem; right: 1.2rem;
  background: var(--surface);
  border: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--muted);
  transition: all .2s var(--transition);
}
.modal-close:hover { background: var(--primary); color: #fff; }
.modal h3 { margin-top: 0; }
.modal input {
  width: 100%; padding: .9rem 1rem;
  margin: .4rem 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
}
.modal-summary {
  background: var(--surface);
  padding: 1.2rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
  margin-bottom: 1rem;
}
.price-final {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}
.modal-info {
  font-size: .8rem;
  color: var(--muted);
  text-align: center;
  margin: .8rem 0 0;
}

/* ============================================
   FAQ (accordion élégant)
   ============================================ */
.faq-section { background: var(--surface); padding: 3rem 2rem; border-radius: var(--radius-xl); margin: 4rem 0; }
.faq-section h2 { margin-top: 0; text-align: center; }
.faq-list { display: flex; flex-direction: column; gap: .75rem; max-width: 800px; margin: 2rem auto 0; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  transition: all .2s var(--transition);
}
.faq-item:hover { border-color: var(--accent); }
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  line-height: 1;
  color: var(--accent);
  transition: transform .3s var(--transition);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-answer { margin-top: 1rem; color: var(--muted); line-height: 1.65; }

/* ============================================
   TRIP INFO (route detail)
   ============================================ */
.trip-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background: linear-gradient(135deg, var(--bg-night) 0%, var(--bg-charcoal) 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 2.5rem 1.5rem;
  margin: 2rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.trip-info::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
}
.trip-stat {
  display: flex; flex-direction: column; gap: .3rem;
  border-right: 1px solid rgba(255,255,255,.1);
  padding: 0 1rem;
}
.trip-stat:last-child { border-right: 0; }
.trip-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.trip-label {
  display: block;
  color: rgba(255,255,255,.7);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ============================================
   REVIEWS (élégants)
   ============================================ */
.reviews-section {
  background: var(--surface);
  padding: 4rem 2rem;
  margin: 4rem -1.5rem;
  border-radius: 0;
}
.rating-summary {
  text-align: center;
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2rem;
}
.rating-summary .stars { color: var(--accent); font-size: 1.4rem; }
.review-card {
  background: #fff;
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: -10px; left: 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--accent);
  opacity: .25;
}
.review-rating { color: var(--accent); font-size: 1.1rem; margin-bottom: .8rem; }
.review-text { font-style: italic; color: var(--fg); margin: 0 0 1rem; line-height: 1.7; }
.review-author { font-size: .85rem; color: var(--muted); font-weight: 600; }

/* ============================================
   BLOG / DRIVERS / EVENTS
   ============================================ */
.blog-card {
  display: flex; flex-direction: column;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all .3s var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 1.5rem; }
.blog-cat {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: .25rem .7rem;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .8rem;
}
.blog-card h2, .blog-card h3 { font-family: 'Inter', sans-serif; font-size: 1.15rem; line-height: 1.35; margin: 0 0 .5rem; }
.blog-card p { color: var(--muted); font-size: .9rem; }
.blog-meta { font-size: .8rem; color: var(--muted); margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); }

.driver-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); transition: all .3s var(--transition); }
.driver-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.driver-card img { width: 100%; height: 280px; object-fit: cover; }
.driver-card-body { padding: 1.5rem; }
.driver-exp { font-size: .85rem; color: var(--accent); font-weight: 600; margin: .5rem 0; }
.driver-spec { font-size: .9rem; font-style: italic; color: var(--muted); }
.driver-hero { display: grid; grid-template-columns: 220px 1fr; gap: 2rem; align-items: center; margin: 2rem 0; padding: 2rem; background: var(--surface); border-radius: var(--radius-xl); }
.driver-hero img { width: 220px; height: 220px; object-fit: cover; border-radius: 50%; box-shadow: var(--shadow-md); }
.driver-stats { font-size: 1.05rem; color: var(--muted); margin: .5rem 0; }
.driver-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin: 2rem 0; }

.event-card { background: #fff; border: 1px solid var(--border); padding: 1.8rem; border-radius: var(--radius-lg); transition: all .3s var(--transition); }
.event-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow); }
.event-dates {
  display: inline-block;
  font-weight: 600;
  color: var(--accent);
  background: var(--surface);
  padding: .3rem .8rem;
  border-radius: 999px;
  font-size: .85rem;
  margin: .5rem 0 1rem;
}

.event-meta {
  background: var(--surface);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius);
  margin: 1.5rem 0;
  border-left: 3px solid var(--accent);
}

/* ============================================
   CHATBOT
   ============================================ */
.chatbot-toggle {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: 0;
  font-size: 1.6rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 100;
  transition: all .2s var(--transition);
}
.chatbot-toggle:hover { background: var(--accent); transform: scale(1.08); }

.chatbot-widget {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  width: 380px;
  max-width: calc(100vw - 2rem);
  height: 560px;
  max-height: calc(100vh - 3rem);
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 101;
}
.chatbot-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--bg-charcoal) 100%);
  color: #fff;
  padding: 1.2rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chatbot-title { font-weight: 600; display: flex; align-items: center; gap: .5rem; }
.chatbot-title::before { content: '✦'; color: var(--accent); }
.chatbot-close { background: rgba(255,255,255,.1); border: 0; color: #fff; font-size: 1.4rem; cursor: pointer; width: 32px; height: 32px; border-radius: 50%; line-height: 1; }
.chatbot-close:hover { background: rgba(255,255,255,.2); }
.chatbot-body { flex: 1; overflow-y: auto; padding: 1.2rem; display: flex; flex-direction: column; gap: .8rem; background: var(--surface); }
.chatbot-msg { padding: .8rem 1rem; border-radius: 14px; max-width: 85%; font-size: .92rem; white-space: pre-wrap; line-height: 1.55; }
.chatbot-msg.user      { background: var(--primary); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.chatbot-msg.assistant { background: #fff; align-self: flex-start; border-bottom-left-radius: 4px; box-shadow: var(--shadow); }
.chatbot-msg.typing    { opacity: .5; }
.chatbot-form { display: flex; gap: .4rem; padding: .8rem; border-top: 1px solid var(--border); background: #fff; }
.chatbot-form input { flex: 1; padding: .7rem 1rem; border: 1px solid var(--border); border-radius: 999px; font-size: .9rem; }
.chatbot-form input:focus { outline: none; border-color: var(--accent); }
.chatbot-form button { background: var(--primary); color: #fff; border: 0; padding: 0 1.1rem; border-radius: 999px; cursor: pointer; font-size: 1rem; transition: all .2s var(--transition); }
.chatbot-form button:hover { background: var(--accent); }
.chatbot-voice { background: var(--surface) !important; color: var(--primary) !important; }
.chatbot-voice.listening { background: var(--error) !important; color: #fff !important; animation: pulse 1.2s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: .5; transform: scale(1.05); } }

/* ============================================
   CONTENT (généré par Haiku)
   ============================================ */
.content { font-size: 1.05rem; line-height: 1.8; max-width: 760px; }
.content h2 {
  margin: 2.5rem 0 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  position: relative;
  padding-left: 1.2rem;
}
.content h2::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 70%;
  background: var(--accent);
  border-radius: 2px;
}
.content h3 { margin: 1.8rem 0 .7rem; font-size: 1.2rem; }
.content p { margin: 1rem 0; color: var(--fg); }
.content ul, .content ol { margin: 1rem 0 1rem 1.5rem; padding-left: .5rem; }
.content li { margin: .5rem 0; }
.content strong { font-weight: 700; color: var(--primary); }

.content-cta {
  display: flex; gap: .6rem; flex-wrap: wrap; justify-content: center;
  margin: 2.5rem 0;
  padding: 1.8rem;
  background: linear-gradient(135deg, var(--bg-night) 0%, var(--bg-charcoal) 100%);
  border-radius: var(--radius-lg);
  color: #fff;
}
.content-cta .btn { flex: 1 1 220px; }
.content-cta .btn-primary { background: var(--accent); color: var(--primary) !important; }
.content-cta .btn-primary:hover { background: #fff; }

.content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.8rem 0;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.content thead { background: var(--primary); color: #fff; }
.content th { font-family: 'Inter', sans-serif; font-weight: 600; font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; padding: 1rem; text-align: left; }
.content td { padding: 1rem; border-top: 1px solid var(--border); }
.content tbody tr:hover { background: var(--surface); }

.content-faq {
  margin: 2.5rem 0;
  padding: 2rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
}
.content-faq h2 { margin-top: 0; }
.content-faq h3 {
  font-size: 1.05rem;
  margin: 1.4rem 0 .5rem;
  color: var(--primary);
  font-family: 'Inter', sans-serif;
}
.content-faq p { margin: 0 0 .8rem; color: var(--muted); }

/* ============================================
   FOOTER (4 colonnes propres)
   ============================================ */
.site-footer {
  background: var(--bg-night);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 1.5rem;
  margin-top: 5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-col h4 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 1.2rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: .35rem 0; font-size: .9rem; }
.footer-col a { color: rgba(255,255,255,.6); transition: color .2s; }
.footer-col a:hover { color: var(--accent); }

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  display: flex; align-items: center; gap: .5rem;
  margin-bottom: 1rem;
}
.footer-brand::before { content: '✦'; color: var(--accent); font-size: 1.6rem; }
.footer-tagline { color: rgba(255,255,255,.6); font-size: .9rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-contact { display: flex; flex-direction: column; gap: .5rem; }
.footer-contact a { color: #fff; font-weight: 600; }

.copyright {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.cities-cta {
  display: inline-block;
  margin-top: 1rem;
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

/* CTA BOX legacy */
.cta-box {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin: 2rem 0;
}

/* ============================================
   CITY LIST (listing groupé par département)
   Grid 4 colonnes responsive
   ============================================ */
.city-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .6rem;
}
.city-list li {
  margin: 0;
  padding: 0;
}
.city-list a {
  display: block;
  padding: .8rem 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .92rem;
  font-weight: 500;
  color: var(--fg);
  transition: all .2s var(--transition);
  text-decoration: none;
  position: relative;
}
.city-list a::before {
  content: '→';
  color: var(--accent);
  margin-right: .4rem;
  opacity: 0;
  transition: opacity .2s var(--transition);
}
.city-list a:hover {
  border-color: var(--accent);
  background: var(--surface);
  color: var(--primary);
  transform: translateX(4px);
}
.city-list a:hover::before { opacity: 1; }

/* Responsive : 3 col tablette, 2 col mobile */
@media (max-width: 1100px) {
  .city-list { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .city-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .city-list { grid-template-columns: 1fr; }
}

/* Heading du département au-dessus de chaque grille */
.section h3 + .city-list { margin-top: .8rem; }
.section > h3 {
  margin-top: 2.5rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--accent);
  color: var(--primary);
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination { display: flex; gap: .4rem; justify-content: center; margin: 3rem 0; }
.pagination a {
  padding: .6rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .9rem;
  color: var(--fg);
}
.pagination a:hover { border-color: var(--accent); color: var(--accent); }
.pagination a.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ============================================
   ANIMATIONS scroll-reveal
   ============================================ */
.reveal { opacity: 0; transform: translateY(20px); transition: all .8s var(--transition); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .burger { display: block; }

  .site-header .container { padding-top: .8rem; padding-bottom: .8rem; }
  .hero { padding: 4rem 0 3rem; }
  .stats-bar { padding: 2rem 1rem; }
  .stat-num { font-size: 1.8rem; }

  .form-row-2 { grid-template-columns: 1fr; }
  .bw-prices { grid-template-columns: 1fr; }
  .bw-actions .btn { flex-basis: 100%; }

  .driver-hero { grid-template-columns: 1fr; text-align: center; }
  .driver-hero img { margin: 0 auto; }

  .trip-info { grid-template-columns: 1fr; gap: 1.5rem; }
  .trip-stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 1rem; }
  .trip-stat:last-child { border-bottom: 0; }

  .chatbot-widget { right: 1rem; bottom: 1rem; width: calc(100vw - 2rem); }
  .footer-grid { grid-template-columns: 1fr; }

  .reviews-section, .faq-section { padding: 2.5rem 1.5rem; margin-left: -1.5rem; margin-right: -1.5rem; border-radius: 0; }
}

@media (max-width: 480px) {
  .header-right .cta-phone span { display: none; }
  .header-right .cta-phone { padding: .5rem .7rem; font-size: 1rem; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
}