/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:      #1A1A1A;
  --accent:       #FDB819;
  --accent-hover: #FFA800;
  --accent-dark:  #E5A200;
  --accent-glow:  rgba(253, 184, 25, 0.2);
  --bg:           #FFFFFF;
  --bg-alt:       #F5F5F5;
  --bg-dark:      #1A1A1A;
  --bg-darker:    #111111;
  --text:         #212121;
  --text-light:   #666666;
  --text-muted:   #999999;
  --border:       #E8E8E8;
  --white:        #FFFFFF;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:    0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:    0 8px 32px rgba(0,0,0,0.12);
  --radius:       4px;
  --radius-lg:    8px;
  --transition:   0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }

/* ===== EDITORIAL LINKS (liens dans le contenu) ===== */
.section p a:not(.btn-cta):not(.btn-outline):not(.btn-outline-dark):not(.card-link),
.hero p a,
.faq-answer a,
.why-card a,
.pricing-card p a,
.about-grid p a {
  color: #2563EB;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.section p a:not(.btn-cta):not(.btn-outline):not(.btn-outline-dark):not(.card-link):hover,
.hero p a:hover,
.faq-answer a:hover,
.why-card a:hover,
.pricing-card p a:hover,
.about-grid p a:hover {
  color: #1D4ED8;
}
/* Dark sections: liens en accent jaune */
.section-dark p a,
.section-dark .why-card a,
.cta-mid a:not(.cta-mid__phone) {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.section-dark p a:hover,
.section-dark .why-card a:hover {
  color: var(--accent-hover);
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  color: var(--primary);
}
h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 20px;
}
h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.25;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
p { margin-bottom: 14px; }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 8px;
  display: inline-block;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== BUTTONS ===== */
.btn-cta {
  background: var(--accent);
  color: var(--primary);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Rubik', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--accent);
  cursor: pointer;
}
.btn-cta:hover {
  background: var(--primary);
  color: var(--accent);
  border-color: var(--primary);
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Rubik', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

/* ===== HEADER DARK (bande noire — logo + tel + adresse + CTA) ===== */
.header-dark {
  background: var(--bg-dark);
  padding: 20px 0;
}
.header-dark .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.logo span { color: var(--accent); }

.header-info-blocks {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.header-svg-icon {
  flex-shrink: 0;
}
.header-info-label {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.header-info-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition);
}
a.header-info-value:hover { color: var(--accent); }
/* Red CTA button (like Auto Repair Service) */
.btn-cta-red {
  background: #E74C3C;
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #E74C3C;
  white-space: nowrap;
}
.btn-cta-red:hover {
  background: #C0392B;
  border-color: #C0392B;
}

.hamburger {
  display: none;
  background: var(--accent);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--primary);
  font-weight: 700;
  transition: all var(--transition);
}
.hamburger:hover { background: var(--accent-hover); }

/* ===== MAIN NAV (bande blanche sous le header) ===== */
.main-nav {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.main-nav .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-links > li > a {
  font-weight: 500;
  font-size: 0.92rem;
  padding: 16px 24px;
  color: var(--text);
  transition: all var(--transition);
  display: block;
  position: relative;
}
.nav-links > li > a:hover { color: var(--accent-dark); }
.nav-links > li > a.active { color: var(--accent-dark); font-weight: 600; }
.nav-links > li > a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  min-width: 260px;
  padding: 8px 0;
  z-index: 200;
  border-radius: 0 0 var(--radius) var(--radius);
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.88rem;
  color: var(--text-light);
  transition: all 0.15s;
}
.dropdown-menu li a:hover {
  background: var(--bg-alt);
  color: var(--accent-dark);
}

/* Header CTA in nav */
.nav-links .btn-cta { display: none; }

/* ===== HERO ===== */
.hero {
  min-height: 560px;
  background: linear-gradient(135deg, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.6) 60%, rgba(26,26,26,0.8) 100%),
              url('/images/real/exterior.jpg') center 15%/cover no-repeat;
  display: flex;
  align-items: center;
  color: var(--white);
  position: relative;
}
.hero .container { position: relative; z-index: 2; max-width: 700px; margin: 0; margin-left: max(24px, calc((100vw - 1200px) / 2 + 24px)); }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}
.hero h1 strong { color: var(--accent); }
.hero p {
  font-size: 1.05rem;
  margin-bottom: 28px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.3);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-scroll .line {
  width: 2px;
  height: 32px;
  background: var(--accent);
  animation: scrollDown 2s ease infinite;
}
@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Stats bar under hero */
.hero-stats {
  background: var(--primary);
  padding: 0;
  border-bottom: 3px solid var(--accent);
}
.hero-stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1.2;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  display: block;
}

/* ===== SERVICE HERO — split layout ===== */
.hero-service {
  background: var(--bg-dark);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hero-service::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(253,184,25,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  min-height: 400px;
  padding: 56px 0;
}
.hero-split .hero-text {
  position: relative;
  z-index: 2;
}
.hero-split .hero-text h1 {
  color: var(--white);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  line-height: 1.2;
  margin-bottom: 18px;
  font-weight: 700;
}
.hero-split .hero-text h1::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent);
  margin-top: 16px;
  border-radius: 2px;
}
.hero-split .hero-text p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 28px;
  font-weight: 300;
}
.hero-split .hero-text .btn-cta {
  margin-top: 4px;
}
.hero-split .hero-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.hero-split .hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(253,184,25,0.15);
  pointer-events: none;
}
.hero-split .hero-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  transition: transform 0.5s ease;
}
.hero-split .hero-img:hover img {
  transform: scale(1.03);
}

/* Mobile */
@media (max-width: 768px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
    padding: 32px 0;
  }
  .hero-split .hero-text {
    order: 1;
  }
  .hero-split .hero-img {
    order: 0;
  }
  .hero-split .hero-img img {
    height: 220px;
  }
  .hero-split .hero-text h1 {
    font-size: 1.5rem;
  }
}

/* ===== PHOTO BREAK between sections ===== */
.photo-break {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.photo-break img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center 60%;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
@media (max-width: 768px) {
  .photo-break img {
    height: 200px;
  }
}

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section > .container { padding: 0 24px; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--bg-dark); color: var(--white); }
.section-dark h2 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.6); }

/* ===== SECTION HEADER WITH LINE ===== */
.section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}
.section-header::after {
  content: "";
  flex: 1;
  height: 2px;
  background: var(--border);
}

/* ===== SERVICE CARDS GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px 24px;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  border-top: 3px solid transparent;
}
.service-card:hover {
  border-top-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  transition: color var(--transition);
}
.service-card:hover h3 { color: var(--accent-dark); }
.service-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.6;
}
.service-card .card-link,
.service-card a:not(.card-link) {
  font-weight: 600;
  color: var(--accent-dark);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-card .card-link::after,
.service-card a:not(.card-link)::after { content: " →"; transition: transform var(--transition); }
.service-card:hover .card-link::after,
.service-card:hover a::after { transform: translateX(4px); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 14px 0;
  padding-top: 14px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.breadcrumb .container { padding: 0 24px; }
.breadcrumb ol {
  display: flex;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.breadcrumb ol li::after { content: "/"; margin-left: 8px; color: var(--border); }
.breadcrumb ol li:last-child::after { content: ""; }
.breadcrumb ol li a { color: var(--text-light); }
.breadcrumb ol li a:hover { color: var(--accent-dark); }

/* ===== SERVICE DETAIL PAGE ===== */
.service-includes ul { list-style: none; padding: 0; }
.service-includes li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  padding-left: 32px;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-light);
}
.service-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 0.9rem;
  width: 22px;
  height: 22px;
  background: var(--accent-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 14px;
}

/* Why choose us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 28px;
}
.why-item {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
  transition: all var(--transition);
}
.why-item:hover { box-shadow: var(--shadow-sm); }
.why-item h3 {
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 1rem;
}
.why-item p { margin-bottom: 0; font-size: 0.9rem; color: var(--text-light); }

/* ===== FAQ — open cards ===== */
.faq-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
}
.faq-question {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
  display: block;
  border: none;
  background: none;
  padding: 0;
  text-align: left;
  cursor: default;
}
.faq-question::after { display: none; }
.faq-answer {
  max-height: none;
  overflow: visible;
}
.faq-answer p {
  padding: 0;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ===== ZONE / LOCAL ===== */
.zone-communes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.zone-communes span {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  transition: all var(--transition);
}
.zone-communes span:hover {
  border-color: var(--accent);
  background: var(--accent-glow);
  color: var(--primary);
}

.local-context { margin-top: 20px; }
.local-context p { color: var(--text-light); font-size: 0.92rem; }

/* ===== OTHER SERVICES ===== */
.other-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.other-service-card {
  border: 1px solid var(--border);
  padding: 20px 24px;
  border-radius: var(--radius);
  transition: all var(--transition);
  background: var(--white);
  border-left: 4px solid var(--accent);
}
.other-service-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.other-service-card a {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.other-service-card a::after { content: "→"; color: var(--accent-dark); transition: transform var(--transition); }
.other-service-card:hover a::after { transform: translateX(4px); }

/* ===== CTA FINAL ===== */
.cta-final {
  text-align: center;
  padding: 80px 24px;
  background: var(--bg-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
}
.cta-final h2 { color: var(--white); margin-bottom: 8px; }
.cta-final > p { color: rgba(255,255,255,0.5); }
.cta-final .phone {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  color: var(--accent);
  display: inline-block;
  margin: 24px 0 12px;
  transition: all var(--transition);
}
.cta-final .phone:hover { color: var(--accent-hover); transform: scale(1.04); }
.cta-final .address { font-size: 0.88rem; color: rgba(255,255,255,0.4); }

/* ===== HIGHLIGHT YELLOW ===== */
.highlight-yellow {
  background: linear-gradient(to top, var(--accent) 40%, transparent 40%);
  padding: 0 4px;
}

/* ===== GOOGLE REVIEWS (style Trustindex) ===== */
.google-reviews {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-top: 32px;
}
.google-reviews-summary {
  text-align: center;
  flex-shrink: 0;
  width: 160px;
  padding-top: 16px;
}
.gr-excellent {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.gr-stars-big {
  font-size: 1.6rem;
  color: #FBBC05;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.gr-based {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.gr-based strong { color: var(--text); }
.gr-google-logo {
  font-size: 1.3rem;
  font-weight: 500;
  font-family: 'Product Sans', 'Rubik', sans-serif;
  letter-spacing: -0.01em;
}
.google-reviews-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  flex: 1;
}
.gr-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.gr-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.gr-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gr-card-info {
  flex: 1;
  min-width: 0;
}
.gr-name {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--primary);
}
.gr-date {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
}
.gr-g-icon {
  flex-shrink: 0;
}
.gr-card-stars {
  color: #FBBC05;
  font-size: 0.82rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.gr-card-text {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 0;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 28px;
}
.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--accent);
}
.about-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center 15%;
  transition: transform 0.5s ease;
}
.about-img:hover img { transform: scale(1.03); }

/* ===== MAPS LINK ===== */
.maps-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-dark);
  font-weight: 600;
  margin-top: 8px;
}
.maps-link:hover { color: var(--accent-hover); text-decoration: underline; }

/* ===== MAP SECTION ===== */
.map-section { line-height: 0; }
.map-section iframe { width: 100%; }

/* ===== FOOTER ===== */
footer {
  background: var(--bg-dark);
  color: var(--white);
  padding: 56px 0 32px;
  border-top: 4px solid var(--accent);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 32px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.footer-logo {
  font-family: 'Rubik', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.footer-logo span { color: var(--accent); }
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: all var(--transition); }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 12px;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a { color: var(--accent); font-weight: 600; }
.footer-contact-item a:hover { color: var(--accent-hover); }
.footer-copy {
  width: 100%;
  text-align: center;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ===== PRICING CARDS ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}
.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.pricing-card--highlight {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-md);
}
.pricing-card__badge {
  background: var(--accent);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius);
  display: inline-block;
  margin-bottom: 16px;
}
.pricing-card h3 {
  font-size: 1.15rem;
  margin-bottom: 16px;
}
.pricing-card__price {
  margin-bottom: 20px;
}
.pricing-card__from {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.pricing-card__amount {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--accent-dark);
  line-height: 1;
}
.pricing-card__amount sup {
  font-size: 1.2rem;
  vertical-align: super;
}
.pricing-card__amount--free {
  color: #27AE60;
  font-size: 2.2rem;
}
.pricing-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}
.btn-outline-dark {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: 'Rubik', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}

/* ===== CTA MID (bande avec stats) ===== */
.cta-mid {
  background: linear-gradient(135deg, rgba(26,26,26,0.9) 0%, rgba(26,26,26,0.75) 100%),
              url('/images/real/ferrari.jpg') center/cover no-repeat;
  padding: 60px 0;
  color: var(--white);
}
.cta-mid .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.cta-mid__content { flex: 1; }
.cta-mid__content h2 {
  color: var(--white);
  margin-bottom: 24px;
}
.cta-mid__stats {
  margin-bottom: 24px;
}
.cta-mid__stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.cta-mid__stat-label {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.cta-mid__list {
  list-style: none;
  padding: 0;
}
.cta-mid__list li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}
.cta-mid__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.cta-mid__action {
  text-align: center;
  flex-shrink: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}
.cta-mid__action p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  margin-bottom: 4px;
}
.cta-mid__action span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}
.cta-mid__phone {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 8px;
  transition: all var(--transition);
}
.cta-mid__phone:hover { color: var(--accent-hover); transform: scale(1.04); }

/* ===== BRANDS CAROUSEL ===== */
.brands-carousel {
  overflow: hidden;
  width: 100%;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.brands-track {
  display: flex;
  gap: 48px;
  animation: scrollBrands 40s linear infinite;
  width: max-content;
}
.brands-track:hover {
  animation-play-state: paused;
}
.brand-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 120px;
  flex-shrink: 0;
  opacity: 0.75;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.brand-slide:hover {
  opacity: 1;
  transform: scale(1.12);
}
.brand-slide img {
  width: 80px;
  height: 60px;
  object-fit: contain;
}
.brand-slide span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}
.brand-slide:hover span {
  color: var(--primary);
}
@keyframes scrollBrands {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Legacy brands-grid fallback */
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.brand-item {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.brand-item:hover {
  transform: scale(1.1);
}
.brand-item svg circle { transition: stroke var(--transition); }
.brand-item:hover svg circle { stroke: var(--accent); }
.brand-item:hover svg text { fill: var(--primary); }

/* ===== STEPS (3 étapes) ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step-card {
  text-align: center;
  padding: 40px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.step-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--accent);
  transform: translateY(-4px);
}
.step-card__number {
  width: 56px;
  height: 56px;
  background: var(--accent);
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step-card h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 12px;
}
.step-card p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ===== FOOTER SOCIAL ===== */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--accent);
}
.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: rgba(255,255,255,0.6);
  transition: fill var(--transition);
}
.footer-social a:hover svg {
  fill: var(--primary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hamburger { display: flex; align-items: center; justify-content: center; }
  .main-nav { display: none; }
  .main-nav.open { display: block; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 999; overflow-y: auto; }
  .nav-links {
    flex-direction: column;
    padding: 16px 0;
  }
  .nav-links > li { width: 100%; }
  .nav-links > li > a {
    padding: 14px 24px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-top: none;
    display: none;
    padding: 0;
    background: rgba(0,0,0,0.06);
  }
  .dropdown.open .dropdown-menu { display: block; }
  .dropdown-menu li a {
    padding: 10px 24px 10px 40px;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    color: var(--primary);
  }
  .header-info-blocks { display: none; }
  .top-bar { display: none; }
  .hero-stats .container { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .steps-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .cta-mid .container { flex-direction: column; text-align: center; }
  .cta-mid__list li { text-align: left; }
}

@media (max-width: 768px) {
  .hero { min-height: 480px; }
  .hero .container { margin-left: 0; }
  .hero-service { min-height: auto; }
  .hero-scroll { display: none; }
  .section { padding: 60px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-img img { height: 260px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons a { text-align: center; justify-content: center; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats .container { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 1.4rem; }
  .google-reviews { flex-direction: column; gap: 24px; }
  .google-reviews-summary { width: 100%; display: flex; flex-wrap: wrap; align-items: center; gap: 12px; justify-content: center; padding-top: 0; }
  .google-reviews-cards { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .brands-grid { gap: 12px; }
  .brand-item { width: 64px; height: 64px; }
  .brands-track { gap: 32px; animation-duration: 30s; }
  .brand-slide { min-width: 85px; }
  .brand-slide svg { transform: scale(0.8); }
}

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