/* ═══════════════════════════════════════════
   LE THOR AUTO — Global Styles
   ═══════════════════════════════════════════ */

:root {
  --navy: #1e2a4a;
  --navy-light: #2c3e6a;
  --navy-dark: #141d35;
  --gold: #b8952a;
  --gold-light: #d4b045;
  --gold-pale: #f5ecd5;
  --white: #ffffff;
  --cream: #f7f3ea;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --green: #16a34a;
  --red: #dc2626;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --transition: all 0.3s ease;
  --max-width: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* ── NAVBAR ── */
.navbar {
  background: var(--navy);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 700;
  font-size: 1.3rem;
}

.navbar-brand span { color: var(--gold); font-size: 0.7rem; display: block; font-weight: 400; letter-spacing: 1px; }

.navbar-links { display: flex; align-items: center; gap: 4px; list-style: none; }

.navbar-links a {
  color: var(--gray-200);
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--gold);
  background: rgba(184, 149, 42, 0.1);
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

@media (max-width: 768px) {
  .navbar-toggle { display: block; }
  .navbar-links {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .navbar-links.open { display: flex; }
  .navbar-links a { padding: 12px 16px; width: 100%; }
}

/* ── CARROUSEL VÉHICULES (Swiper) ── */
.swiper-vehicle-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition: box-shadow 0.2s, transform 0.2s;
}
.swiper-vehicle-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.svc-img {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--gray-100);
  overflow: hidden;
}
.svc-img img { width: 100%; height: 100%; object-fit: cover; }
.svc-placeholder { display: flex; align-items: center; justify-content: center; height: 100%; font-size: 3rem; color: var(--gray-300); }
.svc-fuel, .svc-year {
  position: absolute; top: 10px; padding: 3px 10px; border-radius: 20px;
  font-size: 0.72rem; font-weight: 600;
}
.svc-fuel { left: 10px; background: var(--navy); color: #fff; }
.svc-year { right: 10px; background: var(--gold); color: #fff; }
.svc-body { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.svc-name { font-size: 1.1rem; color: var(--navy); margin-bottom: 2px; line-height: 1.3; }
.svc-version { font-size: 0.82rem; color: var(--gray-500); margin-bottom: 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.svc-specs { display: flex; gap: 12px; font-size: 0.8rem; color: var(--gray-500); margin-bottom: 10px; flex-wrap: wrap; }
.svc-garantie { margin-bottom: 12px; }
.svc-garantie .badge { font-size: 0.72rem; padding: 3px 10px; }
.svc-garantie small { font-size: 0.7rem; color: var(--gray-500); }
.svc-footer { display: flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--gray-100); }
.svc-price { font-size: 1.2rem; font-weight: 800; color: var(--navy); }
.svc-frais { font-size: 0.72rem; color: var(--gray-500); }
.svc-btn { margin-left: auto; }

/* Swiper overrides */
#vehicles-swiper { padding-bottom: 44px; }
#vehicles-swiper .swiper-slide { height: auto; }
.swiper-pagination-bullet { width: 10px; height: 10px; background: var(--gray-300); opacity: 1; }
.swiper-pagination-bullet-active { background: var(--gold); }
.swiper-button-prev, .swiper-button-next {
  color: var(--navy); width: 40px; height: 40px;
  background: rgba(255,255,255,0.9); border-radius: 50%; box-shadow: var(--shadow);
}
.swiper-button-prev:hover, .swiper-button-next:hover { background: var(--gold); color: #fff; }
.swiper-button-prev::after, .swiper-button-next::after { font-size: 18px; }

@media (max-width: 767px) {
  .swiper-nav-desktop { display: none !important; }
  .svc-body { padding: 14px; }
  .svc-name { font-size: 1.15rem; }
  .svc-price { font-size: 1.25rem; }
  .svc-btn { min-height: 44px; display: flex; align-items: center; padding: 0 16px; }
  .swiper-pagination-bullet { width: 12px; height: 12px; margin: 0 5px !important; }
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b8952a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }

.hero h1 {
  color: var(--white);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.hero h1 em { font-style: normal; color: var(--gold); }

.hero .subtitle {
  color: var(--gold-light);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.hero .slogan {
  color: var(--gray-300);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  line-height: 1;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(184, 149, 42, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--gold);
}
.btn-secondary:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-gold {
  background: linear-gradient(135deg, #b8912d, #d4a843);
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #a07e24, #c49b38);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184,145,45,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

/* ── SECTIONS ── */
.section { padding: 80px 0; }
.section-gray { background: var(--gray-50); }
.section-navy { background: var(--navy); color: var(--white); }
.section-cream { background: var(--cream); }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.section-navy .section-header h2 { color: var(--white); }

.section-header .gold-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 12px auto 0;
  border-radius: 2px;
}

.section-header p {
  color: var(--gray-500);
  font-size: 1.05rem;
  margin-top: 12px;
}

/* ── ENGAGEMENT CARDS ── */
.engagements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.engagement-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}

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

.engagement-card .icon {
  width: 56px;
  height: 56px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
}

.engagement-card h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.engagement-card p {
  color: var(--gray-500);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ── VEHICLE CARDS ── */
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.vehicle-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  cursor: pointer;
}

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

.vehicle-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.vehicle-card-img .placeholder-icon {
  font-size: 3.5rem;
  opacity: 0.3;
}

.vehicle-card-img .fuel-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--navy);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.vehicle-card-img .year-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(30, 42, 74, 0.85);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.vehicle-card-body { padding: 20px; }

.vehicle-card-body h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.vehicle-card-body .version {
  color: var(--gray-500);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.vehicle-card-specs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.vehicle-card-specs .spec {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--gray-500);
  font-size: 0.8rem;
}

.vehicle-card-specs .spec .icon { font-size: 0.9rem; }

.vehicle-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--gray-200);
  padding-top: 16px;
}

.vehicle-card-footer .price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}

.vehicle-card-footer .price small {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--gray-500);
}

/* ── FILTERS ── */
.filters-bar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 32px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: end;
  border: 1px solid var(--gray-200);
}

.filter-group { flex: 1; min-width: 150px; }

.filter-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-group select,
.filter-group input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--gray-700);
  background: var(--white);
  transition: var(--transition);
}

.filter-group select:focus,
.filter-group input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 149, 42, 0.15);
}

/* ── FORMS ── */
.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--gray-700);
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 149, 42, 0.15);
}

.form-group textarea { resize: vertical; min-height: 100px; }

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

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ── VEHICLE DETAIL ── */
.vehicle-detail { padding-top: 90px; }

.vehicle-gallery {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  font-size: 5rem;
  opacity: 0.3;
}

.vehicle-info-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
}

@media (max-width: 900px) {
  .vehicle-info-grid { grid-template-columns: 1fr; }
}

.vehicle-specs-table {
  width: 100%;
  border-collapse: collapse;
}

.vehicle-specs-table tr { border-bottom: 1px solid var(--gray-200); }

.vehicle-specs-table td {
  padding: 12px 0;
  font-size: 0.9rem;
}

.vehicle-specs-table td:first-child {
  font-weight: 600;
  color: var(--navy);
  width: 45%;
}

.vehicle-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 16px;
}

.vehicle-features .feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--gray-700);
}

.vehicle-features .feature::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
}

.vehicle-price-card {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 90px;
}

.vehicle-price-card .price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.vehicle-price-card .frais {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 20px;
}

/* Tooltip frais de dossier */
.tooltip-wrap {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.tooltip-wrap .info-icon {
  font-size: 0.9rem;
  vertical-align: middle;
}
.tooltip-wrap .tooltip-text {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  background: var(--navy, #1e2a4a);
  color: #fff;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  line-height: 1.45;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: opacity 0.2s;
  z-index: 100;
}
.tooltip-wrap .tooltip-text::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--navy, #1e2a4a);
}
.tooltip-wrap:hover .tooltip-text,
.tooltip-wrap:focus .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.vehicle-price-card .guarantee {
  background: var(--green);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}

/* ── BOOKING TUNNEL ── */
.booking-page { padding-top: 90px; min-height: 100vh; background: var(--gray-50); }

.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  padding: 24px 0;
}

.step-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid var(--gray-300);
  background: var(--white);
  color: var(--gray-500);
  transition: var(--transition);
}

.step-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.step-dot.completed {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.step-line {
  width: 80px;
  height: 2px;
  background: var(--gray-300);
  transition: var(--transition);
}

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

.step-content {
  display: none;
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

.step-content.active { display: block; }

.step-content h2 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 24px;
}

/* Calendar */
.calendar-container { margin-bottom: 24px; }

.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.calendar-nav h3 { font-size: 1rem; color: var(--navy); }

.calendar-nav button {
  background: var(--navy);
  color: var(--white);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition);
}

.calendar-nav button:hover { background: var(--navy-light); }

.calendar-days {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.calendar-day {
  padding: 12px 8px;
  text-align: center;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.85rem;
}

.calendar-day:hover { border-color: var(--gold); }

.calendar-day.selected {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  font-weight: 700;
}

.calendar-day .day-name {
  font-size: 0.7rem;
  color: var(--gray-500);
  text-transform: uppercase;
}

.calendar-day.selected .day-name { color: var(--navy); }

.calendar-day .day-num {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 2px;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 8px;
}

.time-slot {
  padding: 10px;
  text-align: center;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}

.time-slot:hover { border-color: var(--gold); }

.time-slot.selected {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* Stripe element */
#card-element {
  padding: 14px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  margin-bottom: 16px;
  transition: var(--transition);
}

#card-element.StripeElement--focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 149, 42, 0.15);
}

#card-errors {
  color: var(--red);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.payment-summary {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
}

.payment-summary h4 {
  font-size: 0.85rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.payment-summary .line {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.9rem;
}

.payment-summary .line.total {
  border-top: 2px solid var(--navy);
  padding-top: 12px;
  margin-top: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
}

/* Confirmation */
.confirmation-screen {
  text-align: center;
  padding: 40px 20px;
}

.confirmation-screen .check-circle {
  width: 80px;
  height: 80px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  color: var(--white);
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184, 149, 42, 0.2);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.testimonial-card .stars { color: var(--gold); margin-bottom: 12px; font-size: 1.1rem; }
.testimonial-card p { color: var(--gray-200); font-size: 0.95rem; margin-bottom: 16px; font-style: italic; }
.testimonial-card .author { color: var(--gold); font-weight: 600; font-size: 0.9rem; }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
}

.about-image {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg);
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  opacity: 0.5;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}

@media (max-width: 600px) {
  .team-grid { grid-template-columns: 1fr; }
}

.team-card {
  text-align: center;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.team-card .avatar {
  width: 80px;
  height: 80px;
  background: var(--navy);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.8rem;
  font-weight: 700;
}

.team-card h3 { color: var(--navy); font-size: 1.1rem; }
.team-card p { color: var(--gray-500); font-size: 0.9rem; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info-block {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-block .icon-box {
  width: 48px;
  height: 48px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-block h4 {
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.contact-info-block p {
  color: var(--gray-500);
  font-size: 0.9rem;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 32px;
  height: 300px;
}

.map-container iframe { width: 100%; height: 100%; border: 0; }

/* ── SELL FORM ── */
.sell-form-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  padding: 64px 0;
  text-align: center;
}

.cta-section h2 { color: var(--white); font-size: 2rem; margin-bottom: 12px; }
.cta-section p { color: var(--gray-300); font-size: 1.05rem; margin-bottom: 28px; }
.cta-section .btn-primary { font-size: 1.05rem; padding: 16px 36px; }

/* ── FOOTER ── */
.footer {
  background: var(--navy-dark);
  color: var(--gray-300);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer h4 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer p, .footer li {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--gray-300);
}

.footer ul { list-style: none; }
.footer ul a { color: var(--gray-300); }
.footer ul a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ── WHATSAPP FAB ── */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: fabBounce 2s ease infinite;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-fab svg { width: 28px; height: 28px; fill: var(--white); }

@keyframes fabBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* ── PAGE HEADER ── */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 120px 0 48px;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.page-header p {
  color: var(--gold-light);
  font-size: 1rem;
}

/* ── ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── ALERT ── */
.alert {
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ── LOADING ── */
.spinner {
  width: 24px;
  height: 24px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════════
   MODAL — Formulaire d'essai (inputs)
   ═══════════════════════════════════════════ */
.modal-content .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.modal-content .form-group {
  margin-bottom: 14px;
}
.modal-content label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--navy);
}
.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.9rem;
  box-sizing: border-box;
  transition: border-color 0.2s;
}
.modal-content input:focus,
.modal-content textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,145,45,0.15);
}
.modal-content textarea { resize: vertical; }

.alert {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}
.alert-success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}
.alert-error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

@media (max-width: 640px) {
  .modal-content .form-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   SECTION DÉFAUTS — TRANSPARENCE
   ═══════════════════════════════════════════ */
.defauts-section {
  margin-top: 32px;
  border: 2px solid var(--gold, #b8912d);
  border-radius: 12px;
  padding: 24px;
  background: linear-gradient(135deg, #fefcf7, #fff9ed);
}
.defauts-header h3 {
  font-size: 1.15rem;
  color: var(--navy, #1e2a4a);
  margin-bottom: 8px;
}
.defauts-intro {
  font-size: 0.9rem;
  color: var(--gray-600, #4b5563);
  margin-bottom: 20px;
}
.defauts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 20px;
}
.defaut-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border-radius: 10px;
  padding: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border-left: 4px solid var(--gold, #b8912d);
}
.defaut-photo {
  position: relative;
  flex-shrink: 0;
  width: 90px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.defaut-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.defaut-zoom {
  position: absolute;
  bottom: 4px;
  right: 4px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 5px;
  border-radius: 4px;
}
.defaut-desc {
  font-size: 0.9rem;
  color: var(--navy, #1e2a4a);
  line-height: 1.4;
  padding-top: 2px;
}
.defauts-notes {
  font-size: 0.85rem;
  color: var(--gray-600, #4b5563);
  background: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  border-left: 3px solid var(--navy, #1e2a4a);
}
.defauts-engagement {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--navy, #1e2a4a);
  color: #fff;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.88rem;
  line-height: 1.45;
}
.defauts-engagement-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}
.defauts-none {
  text-align: center;
  padding: 10px 0;
}
.defauts-none h3 {
  color: var(--green, #16a34a);
  margin-bottom: 6px;
}
.defauts-none p {
  font-size: 0.9rem;
  color: var(--gray-600, #4b5563);
}

@media (max-width: 640px) {
  .defauts-section { padding: 16px; }
  .defaut-card { flex-direction: column; }
  .defaut-photo { width: 100%; height: 160px; }
}
