/* ─────────────────────────────────────────────
   Watturette — Professional White Theme
   ───────────────────────────────────────────── */

/* ── Tokens ── */
:root {
  --cyan:        #00AECB;
  --cyan-dark:   #0090a8;
  --cyan-light:  #e6f7fb;
  --green:       #5BB84C;
  --green-dark:  #4aa03e;
  --green-light: #edf7eb;

  --black:       #111418;
  --gray-800:    #2c3038;
  --gray-600:    #4b5260;
  --gray-400:    #8691a0;
  --gray-200:    #dde2e8;
  --gray-100:    #f3f5f7;
  --gray-50:     #f9fafb;
  --white:       #ffffff;

  --font:        'Space Grotesk', sans-serif;
  --radius-sm:   8px;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow-xs:   0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-sm:   0 2px 8px rgba(0,0,0,.07), 0 1px 3px rgba(0,0,0,.04);
  --shadow-md:   0 4px 20px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.1), 0 4px 10px rgba(0,0,0,.05);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); background: var(--white); color: var(--black); line-height: 1.65; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--gray-50); }
::-webkit-scrollbar-thumb { background: var(--gray-200); border-radius: 3px; }

/* ── Layout ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
section { padding: 96px 0; }

/* ── Typography ── */
.overline {
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--cyan);
  display: flex; align-items: center; gap: 8px;
}
.overline::before { content: ''; display: block; width: 24px; height: 2px; background: var(--cyan); border-radius: 2px; }

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 700; line-height: 1.15;
  color: var(--black); margin-top: 10px;
}
.section-sub {
  color: var(--gray-600); font-size: 1rem;
  max-width: 500px; margin-top: 12px; line-height: 1.7;
}

/* ── Section header ── */
.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-header.center .overline { justify-content: center; }
.section-header.center .overline::before { display: none; }
.section-header.center .section-sub { margin: 12px auto 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--radius-sm);
  font-size: .93rem; font-weight: 600; text-decoration: none;
  border: 1.5px solid transparent; transition: all .18s ease;
  white-space: nowrap;
}
.btn i { font-size: 1.1rem; }
.btn-primary {
  background: var(--cyan); color: var(--white);
  border-color: var(--cyan);
}
.btn-primary:hover { background: var(--cyan-dark); border-color: var(--cyan-dark); }
.btn-secondary {
  background: var(--white); color: var(--black);
  border-color: var(--gray-200); box-shadow: var(--shadow-xs);
}
.btn-secondary:hover { border-color: var(--gray-400); box-shadow: var(--shadow-sm); }
.btn-green { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-green:hover { background: var(--green-dark); border-color: var(--green-dark); }
.btn-ghost { background: transparent; color: var(--cyan); border-color: var(--cyan); }
.btn-ghost:hover { background: var(--cyan-light); }

/* ── Divider ── */
.divider { width: 100%; height: 1px; background: var(--gray-200); }


/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow .3s;
}
#navbar.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; max-width: 1160px; margin: 0 auto; padding: 0 28px;
}
.nav-logo img { height: 32px; }

.nav-links { display: flex; gap: 2px; }
.nav-links a {
  padding: 6px 14px; border-radius: var(--radius-sm);
  font-size: .9rem; font-weight: 500; color: var(--gray-600);
  text-decoration: none; transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--black); background: var(--gray-100); }

.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-actions .btn { padding: 8px 16px; font-size: .82rem; }
.nav-actions .btn i { font-size: .95rem; }

.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px;
}
.burger span { display: block; width: 20px; height: 1.5px; background: var(--black); border-radius: 2px; transition: .25s; }


/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
#hero {
  padding-top: 128px; padding-bottom: 80px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cyan-light); color: var(--cyan-dark);
  border: 1px solid rgba(0,174,203,.2);
  border-radius: var(--radius-sm); padding: 5px 12px;
  font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-tag i { font-size: .9rem; }
.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700; line-height: 1.1; color: var(--black);
  margin-bottom: 20px;
}
.hero-title em { font-style: normal; color: var(--cyan); }
.hero-sub {
  font-size: 1.05rem; color: var(--gray-600);
  line-height: 1.7; margin-bottom: 36px; max-width: 440px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex; gap: 0;
  border: 1px solid var(--gray-200); border-radius: var(--radius);
  overflow: hidden; background: var(--gray-50);
}
.stat-item {
  flex: 1; padding: 18px 20px; text-align: center;
  border-right: 1px solid var(--gray-200);
}
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 1.5rem; font-weight: 700; color: var(--black); }
.stat-label { font-size: .75rem; color: var(--gray-400); margin-top: 2px; font-weight: 500; }

.hero-visual { position: relative; }
.hero-img-wrap {
  border-radius: var(--radius-lg); overflow: visible;
  border: 1px solid var(--gray-200); background: var(--gray-50);
  padding: 24px 16px 0;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.hero-img-wrap img {
  max-width: 100%; margin: 0 auto;
  display: block;
  /* Slight drop shadow to lift the car off the background */
  filter: drop-shadow(0 16px 32px rgba(0,0,0,.18));
}
.hero-badge {
  position: absolute; background: var(--white);
  border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 10px 16px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px;
  font-size: .82rem; font-weight: 600; white-space: nowrap;
}
.badge-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.badge-dot.green { background: var(--green); }
.badge-1 { top: -16px; left: -16px; }
.badge-2 { bottom: 24px; right: -16px; }


/* ══════════════════════════════════════
   ARGUMENTS
══════════════════════════════════════ */
#arguments { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); }
.args-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.arg-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-xs);
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.arg-card:hover { box-shadow: var(--shadow-md); border-color: var(--gray-300, #c8d0da); transform: translateY(-2px); }
.arg-icon-wrap {
  width: 52px; height: 52px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 22px;
}
.arg-icon-wrap.cyan { background: var(--cyan-light); color: var(--cyan-dark); }
.arg-icon-wrap.green { background: var(--green-light); color: var(--green-dark); }
.arg-audience {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 8px;
}
.arg-audience.cyan { color: var(--cyan-dark); }
.arg-audience.green { color: var(--green-dark); }
.arg-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 20px; }
.arg-list { display: flex; flex-direction: column; gap: 12px; }
.arg-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .92rem; color: var(--gray-600);
}
.arg-list li i { font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.arg-list li i.cyan { color: var(--cyan); }
.arg-list li i.green { color: var(--green); }


/* ══════════════════════════════════════
   GAMMES
══════════════════════════════════════ */
#gammes { background: var(--white); border-bottom: 1px solid var(--gray-200); }
.gammes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.gamme-card {
  border-radius: var(--radius-lg); padding: 44px 40px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-xs);
  transition: box-shadow .2s, transform .2s;
  position: relative; overflow: hidden;
}
.gamme-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.gamme-card.liberte { border-top: 3px solid var(--cyan); }
.gamme-card.courtesy { border-top: 3px solid var(--green); }

/* Car image inside gamme card */
.gamme-img-wrap {
  margin: -44px -40px 28px;           /* bleed to card edges */
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 24px 0;
  text-align: center;
  overflow: hidden;
  height: 200px;
  display: flex; align-items: flex-end; justify-content: center;
}
.gamme-car-img {
  max-height: 180px; width: auto;
  display: block; margin: 0 auto;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.15));
  transition: transform .35s ease;
}
.gamme-card:hover .gamme-car-img { transform: scale(1.04) translateY(-4px); }

.gamme-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; padding: 4px 10px;
  border-radius: 100px; display: inline-block; margin-bottom: 16px;
}
.gamme-card.liberte .gamme-label { background: var(--cyan-light); color: var(--cyan-dark); }
.gamme-card.courtesy .gamme-label { background: var(--green-light); color: var(--green-dark); }

.gamme-name { font-size: 1.4rem; font-weight: 700; margin-bottom: 6px; }
.gamme-target { font-size: .85rem; color: var(--gray-400); margin-bottom: 18px; font-weight: 500; }
.gamme-desc { font-size: .93rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 28px; }

.gamme-perks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
.gamme-perks li {
  display: flex; align-items: center; gap: 10px;
  font-size: .88rem; color: var(--gray-700, var(--gray-600));
}
.gamme-perks li i { font-size: 1rem; flex-shrink: 0; }
.gamme-card.liberte .gamme-perks li i { color: var(--cyan); }
.gamme-card.courtesy .gamme-perks li i { color: var(--green); }

.gamme-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px; border-top: 1px solid var(--gray-200);
  gap: 12px; flex-wrap: wrap;
}
.gamme-model { font-size: .78rem; color: var(--gray-400); font-weight: 500; }
.gamme-model strong { color: var(--gray-600); }


/* ══════════════════════════════════════
   PROCESSUS
══════════════════════════════════════ */
#processus { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); }
.steps-wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }

/* Connecting line */
.steps-wrap::before {
  content: ''; position: absolute;
  top: 32px; left: calc(12.5% + 12px); right: calc(12.5% + 12px);
  height: 1px; background: var(--gray-200); z-index: 0;
}

.step {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 0 16px; position: relative; z-index: 1;
}
.step-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; color: var(--cyan);
  box-shadow: var(--shadow-sm); margin-bottom: 24px;
  flex-shrink: 0;
}
.step-icon { font-size: 1.5rem; color: var(--cyan); }
.step-title { font-size: .95rem; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.step-desc { font-size: .83rem; color: var(--gray-400); line-height: 1.6; }


/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
#contact { background: var(--white); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }

.contact-info-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; }
.contact-info-sub { font-size: .93rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 36px; }

.contact-perks { display: flex; flex-direction: column; gap: 18px; }
.contact-perk { display: flex; align-items: flex-start; gap: 14px; }
.perk-icon {
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  background: var(--gray-50); border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--cyan); flex-shrink: 0;
}
.perk-text strong { font-size: .9rem; font-weight: 700; display: block; margin-bottom: 2px; }
.perk-text span { font-size: .83rem; color: var(--gray-400); }
.reveal-email-btn {
  background: none; border: none; padding: 0; cursor: pointer;
  font-size: .83rem; color: var(--cyan); font-family: inherit;
  display: inline-flex; align-items: center; gap: 5px;
  text-decoration: underline; text-underline-offset: 3px;
}
.reveal-email-btn:hover { color: var(--cyan-dark); }
.reveal-email-addr { font-size: .83rem; color: var(--cyan); }

/* Form card */
.form-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 44px;
  box-shadow: var(--shadow-md);
}

.segment-toggle {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--gray-100); border-radius: var(--radius-sm);
  padding: 4px; gap: 4px; margin-bottom: 32px;
}
.seg-btn {
  padding: 10px 16px; border: none; border-radius: var(--radius-sm);
  background: transparent; color: var(--gray-600);
  font-size: .88rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  transition: all .18s;
}
.seg-btn i { font-size: 1rem; }
.seg-btn.active { background: var(--white); color: var(--black); box-shadow: var(--shadow-xs); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--gray-600); }

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--gray-200); border-radius: var(--radius-sm);
  padding: 10px 14px; font-family: var(--font); font-size: .9rem;
  color: var(--black); background: var(--white);
  transition: border-color .15s, box-shadow .15s; outline: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,174,203,.1);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select { cursor: pointer; }

.form-section { }
.hidden { display: none !important; }
.form-section.hidden { display: none; }

.form-error {
  background: #fff5f5; border: 1px solid #feb2b2; color: #c53030;
  border-radius: var(--radius-sm); padding: 10px 14px;
  font-size: .88rem; margin-top: 16px;
}
.form-captcha input { max-width: 120px; }
.form-actions { margin-top: 24px; }
.form-actions .btn { width: 100%; justify-content: center; font-size: .95rem; padding: 14px; }
.form-note {
  font-size: .75rem; color: var(--gray-400); text-align: center;
  margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 5px;
}
.form-note i { font-size: .9rem; }

.success-msg {
  display: none; text-align: center; padding: 48px 32px;
}
.success-msg.show { display: block; }
.success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--green-light); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 20px;
}
.success-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.success-sub { font-size: .9rem; color: var(--gray-600); }

/* ── Formulaire WIP ── */
.form-wip {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 48px 32px; gap: 16px;
}
.form-wip-icon {
  width: 68px; height: 68px; border-radius: 50%;
  background: #fff8e1; color: #e67e22;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem;
}
.form-wip-title {
  font-size: 1.15rem; font-weight: 700; color: var(--black); margin: 0;
}
.form-wip-text {
  font-size: .92rem; color: var(--gray-600); line-height: 1.6; margin: 0;
}


/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  padding: 48px 0 28px;
}
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 40px; flex-wrap: wrap; margin-bottom: 40px;
}
.footer-brand .nav-logo img { height: 28px; margin-bottom: 10px; }
.footer-tagline { font-size: .85rem; color: var(--gray-400); }
.footer-nav-title { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 12px; }
.footer-nav { display: flex; flex-direction: column; gap: 8px; }
.footer-nav a { font-size: .88rem; color: var(--gray-600); text-decoration: none; transition: color .15s; }
.footer-nav a:hover { color: var(--black); }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid var(--gray-200);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: .8rem; color: var(--gray-400); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: .8rem; color: var(--gray-400); text-decoration: none; transition: color .15s; }
.footer-legal a:hover { color: var(--black); }


/* ══════════════════════════════════════
   GALERIE
══════════════════════════════════════ */
#galerie { background: var(--white); border-bottom: 1px solid var(--gray-200); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}
.gallery-featured { grid-row: span 2; }

.gallery-item {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 20px;
  transition: box-shadow .25s, transform .25s;
}
.gallery-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.gallery-item img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.14));
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-cta {
  background: linear-gradient(135deg, var(--cyan-light) 0%, #e0f5fa 100%);
  border: 1px solid rgba(0,174,203,.2);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px; padding: 32px; text-align: center;
  transition: box-shadow .25s, transform .25s;
}
.gallery-cta:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.gallery-cta-icon {
  width: 52px; height: 52px; border-radius: var(--radius);
  background: var(--white); color: var(--cyan);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; box-shadow: var(--shadow-sm);
}
.gallery-cta-title { font-size: .95rem; font-weight: 700; color: var(--black); }
.gallery-cta-sub { font-size: .8rem; color: var(--gray-600); line-height: 1.5; }

@media (max-width: 960px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .gallery-featured { grid-row: span 1; }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
}


/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
#faq { background: var(--gray-50); }

.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item[open] { box-shadow: var(--shadow-md); border-color: rgba(0,174,203,.3); }

.faq-item summary {
  padding: 18px 22px;
  font-size: .93rem; font-weight: 700; color: var(--black);
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  user-select: none;
  transition: color .15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { color: var(--cyan); border-bottom: 1px solid var(--gray-200); }

.faq-icon { font-size: 1.1rem; color: var(--gray-400); flex-shrink: 0; transition: transform .2s, color .15s; }
.faq-item[open] .faq-icon { transform: rotate(45deg); color: var(--cyan); }

.faq-answer {
  padding: 18px 22px;
  font-size: .88rem; color: var(--gray-600); line-height: 1.8;
}
.faq-answer strong { color: var(--black); }


/* ══════════════════════════════════════
   POINTS DE VENTE
══════════════════════════════════════ */
#revendeurs { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); }

.pdv-search-wrap { margin-bottom: 32px; }
.pdv-search-inner { position: relative; max-width: 520px; margin: 0 auto; }
.pdv-search-icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  font-size: 1.1rem; color: var(--gray-400); pointer-events: none;
}
.pdv-search-input {
  width: 100%; padding: 13px 110px 13px 44px;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  font-family: var(--font); font-size: .93rem; color: var(--black);
  background: var(--white); outline: none;
  box-shadow: var(--shadow-sm); transition: border-color .15s, box-shadow .15s;
}
.pdv-search-input:focus {
  border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,174,203,.1);
}
.pdv-count {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  font-size: .75rem; font-weight: 600; color: var(--gray-400); white-space: nowrap;
}

.pdv-layout { display: grid; grid-template-columns: 1fr 360px; gap: 20px; align-items: start; }

.pdv-map-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm);
  position: sticky; top: 84px;
}
#pdv-map { height: 560px; width: 100%; }

.pdv-list-wrap {
  max-height: 560px; overflow-y: auto;
  padding: 4px 2px;
}
#pdvList { display: flex; flex-direction: column; gap: 12px; }
.pdv-list-wrap::-webkit-scrollbar { width: 4px; }
.pdv-list-wrap::-webkit-scrollbar-track { background: transparent; }
.pdv-list-wrap::-webkit-scrollbar-thumb { background: var(--gray-200); border-radius: 2px; }

.pdv-card {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius); padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  cursor: pointer; transition: border-color .15s, box-shadow .15s, transform .15s;
  box-shadow: var(--shadow-xs);
}
.pdv-card:hover { border-color: var(--cyan); box-shadow: var(--shadow-md); transform: translateX(2px); }
.pdv-card.active { border-color: var(--cyan); background: var(--cyan-light); }

.pdv-card-icon {
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  background: var(--cyan-light); color: var(--cyan);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.pdv-card.active .pdv-card-icon { background: var(--cyan); color: var(--white); }

.pdv-card-info { flex: 1; min-width: 0; }
.pdv-card-name  { font-size: .86rem; font-weight: 700; color: var(--black); display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pdv-card-addr  { font-size: .76rem; color: var(--gray-400); display: block; margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pdv-card-city  { font-size: .76rem; color: var(--cyan-dark); font-weight: 600; display: block; margin-top: 1px; }

.pdv-card-arrow { font-size: 1rem; color: var(--gray-400); flex-shrink: 0; transition: color .15s; }
.pdv-card:hover .pdv-card-arrow, .pdv-card.active .pdv-card-arrow { color: var(--cyan); }

.pdv-empty { text-align: center; padding: 40px 20px; color: var(--gray-400); font-size: .9rem; }
.pdv-empty i { font-size: 2rem; display: block; margin-bottom: 10px; }

/* Leaflet custom marker */
.pdv-marker-inner {
  width: 30px; height: 30px;
  border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
  background: var(--cyan); border: 2px solid var(--white);
  box-shadow: 0 2px 8px rgba(0,174,203,.45);
  display: flex; align-items: center; justify-content: center;
}
.pdv-marker-inner i { transform: rotate(45deg); font-size: .8rem; color: var(--white); }
.pdv-marker-inner.pdv-marker-active { background: var(--green); box-shadow: 0 2px 8px rgba(91,184,76,.5); }

/* Leaflet popup */
.pdv-popup strong { font-size: .88rem; font-weight: 700; display: block; margin-bottom: 5px; }
.pdv-popup-addr { font-size: .8rem; color: var(--gray-600); display: block; line-height: 1.5; }
.pdv-popup-city { font-size: .8rem; color: var(--cyan-dark); font-weight: 600; display: block; margin-top: 4px; }
.leaflet-popup-content-wrapper { border-radius: var(--radius) !important; box-shadow: var(--shadow-lg) !important; }
.leaflet-popup-content { margin: 14px 16px !important; }
.leaflet-popup-tip-container { display: none; }


/* ══════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }


/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 960px) {
  .pdv-layout { grid-template-columns: 1fr; }
  .pdv-map-wrap { position: static; }
  #pdv-map { height: 420px; }
  .pdv-list-wrap { max-height: 380px; }

  .hero-inner,
  .args-grid,
  .gammes-grid,
  .contact-wrap { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .steps-wrap { grid-template-columns: 1fr 1fr; }
  .steps-wrap::before { display: none; }
  .nav-links { display: none; }
  .nav-actions .btn-secondary { display: none; }
  .burger { display: flex; }

  /* Mobile nav open */
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0;
    background: var(--white); padding: 16px 28px 24px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md); gap: 2px;
  }
}

@media (max-width: 600px) {
  #pdv-map { height: 300px; }
  .pdv-list-wrap { max-height: 320px; }
  .pdv-search-input { padding-right: 14px; }
  .pdv-count { display: none; }

  section { padding: 64px 0; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 0; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--gray-200); }
  .stat-item:last-child { border-bottom: none; }
  .steps-wrap { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
  .footer-top { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gamme-img-wrap { margin: -28px -20px 20px; height: 160px; }
  .gamme-car-img { max-height: 140px; }
}
