/* ================================================================
   ADPAC - Feuille de style principale
   ================================================================ */

/* ===== VARIABLES ===== */
:root {
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --dark: #0f172a;
  --dark-2: #1e293b;
  --dark-3: #334155;
  --orange: #ea580c;
  --orange-hover: #c2410c;
  --orange-light: #f97316;
  --orange-bg: #fff7ed;
  --orange-border: rgba(234, 88, 12, 0.2);
  --text: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 30px rgba(0,0,0,0.1), 0 4px 8px rgba(0,0,0,0.06);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: all 0.28s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  color: var(--dark);
}
h1 { font-size: clamp(2.6rem, 6vw, 5.5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
p { color: var(--text-muted); line-height: 1.72; }

/* ===== LAYOUT ===== */
.container { width: min(1180px, 100% - 2.5rem); margin-inline: auto; }
.section { padding: 5.5rem 0; }
.section-alt { background: var(--bg-alt); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 0.975rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: white; }
.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(234,88,12,0.35);
}
.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
}
.btn-dark { background: var(--dark); color: white; }
.btn-dark:hover { background: var(--dark-2); transform: translateY(-2px); }
.btn-white { background: white; color: var(--orange); font-weight: 700; }
.btn-white:hover { background: #fef3e8; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-outline-white { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.55); font-weight: 600; }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: white; }
.btn-orange-outline { background: transparent; color: var(--orange); border: 2px solid var(--orange-border); font-weight: 600; }
.btn-orange-outline:hover { background: var(--orange-bg); border-color: var(--orange); }
.btn i { font-size: 0.875rem; }

/* ===== BADGE ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange-bg);
  color: var(--orange);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  border: 1px solid var(--orange-border);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.badge-white {
  background: rgba(255,255,255,0.15);
  color: white;
  border-color: rgba(255,255,255,0.3);
}

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; max-width: 620px; margin-inline: auto; margin-bottom: 3.5rem; }
.section-header .badge { margin-bottom: 1rem; }
.section-header h2 { margin-bottom: 0.875rem; }
.section-header p { font-size: 1.05rem; }

/* ===== TOP BANNER ===== */
.top-banner {
  background: var(--orange);
  padding: 0.65rem 1rem;
  text-align: center;
}
.top-banner p {
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
}
.top-banner strong { font-weight: 700; }

/* ===== NAVIGATION ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}
.navbar-logo { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  color: white;
  letter-spacing: 3px;
}
.logo-name span { color: var(--orange-light); }
.logo-sub {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 0;
}
.navbar-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  transition: var(--transition);
}
.navbar-links a:hover,
.navbar-links a.active { color: white; background: rgba(255,255,255,0.1); }
.navbar-right { display: flex; align-items: center; gap: 1rem; }
.navbar-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--orange-light);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: rgba(234,88,12,0.12);
  border: 1px solid rgba(234,88,12,0.25);
  transition: var(--transition);
}
.navbar-phone:hover { background: rgba(234,88,12,0.2); color: white; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,0.1); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 82px;
  left: 0;
  right: 0;
  background: #162032;
  padding: 1.25rem;
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  flex-direction: column;
  gap: 0.25rem;
  animation: slideDown 0.2s ease;
}
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.8);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 500;
  transition: var(--transition);
}
.mobile-menu a:hover { background: rgba(255,255,255,0.08); color: white; }
.mobile-menu .mobile-phone {
  color: var(--orange-light);
  font-weight: 700;
  padding: 0.875rem 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.18;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(15,23,42,0.97) 0%,
    rgba(15,23,42,0.75) 55%,
    rgba(234,88,12,0.08) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem 0 4rem;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.hero-line { width: 36px; height: 3px; background: var(--orange); border-radius: 2px; }
.hero-eyebrow span {
  color: var(--orange-light);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.hero h1 { color: white; margin-bottom: 1.5rem; font-weight: 800; max-width: 800px; }
.hero h1 em { color: var(--orange-light); font-style: normal; }
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4.5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.hero-stat {}
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.stat-num span { color: var(--orange-light); }
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 0.3rem;
}

/* ===== SERVICES GRID ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.service-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--orange-border); }
.service-card-head {
  padding: 2rem 1.75rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.service-card-head::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.07;
}
.service-card-head .big-icon {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4rem;
  opacity: 0.12;
  color: currentColor;
}
.service-card-body { padding: 0 1.75rem 1.75rem; display: flex; flex-direction: column; flex: 1; }

/* Couleurs par service */
.service-card-head.plomberie { background: linear-gradient(135deg, #dbeafe, #bfdbfe); color: #1d4ed8; }
.service-card-head.electricite { background: linear-gradient(135deg, #fef3c7, #fde68a); color: #92400e; }
.service-card-head.pac { background: linear-gradient(135deg, #d1fae5, #a7f3d0); color: #065f46; }
.service-card-head.climatisation { background: linear-gradient(135deg, #e0f2fe, #bae6fd); color: #075985; }

.service-icon-wrap {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.7);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.875rem;
  backdrop-filter: blur(4px);
}
.service-icon-wrap i { font-size: 1.35rem; }
.service-card h3 { color: var(--dark); margin-bottom: 0.6rem; }
.service-card > p { display: none; } /* description dans le header suffit */
.service-list { margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 0.45rem; flex: 1; }
.service-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--bg-alt);
}
.service-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.service-link {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
  margin-top: auto;
  padding-top: 0.5rem;
}
.service-link:hover { gap: 0.7rem; }

/* Honeypot anti-spam */
.hp-field { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ===== LOGO IMAGE ===== */
.navbar-logo-img {
  height: 62px;
  width: auto;
  object-fit: contain;
  background: white;
  border-radius: 6px;
  padding: 4px 10px;
  display: block;
}
.navbar-address {
  display: block;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.navbar-address i { color: var(--orange); margin-right: 3px; font-size: 0.65rem; }

/* Double téléphone navbar */
.navbar-phones {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.navbar-phone-mobile {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--orange-light);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.4rem 0.9rem 0.2rem;
  border-radius: 8px 8px 0 0;
  background: rgba(234,88,12,0.12);
  border: 1px solid rgba(234,88,12,0.25);
  border-bottom: none;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.navbar-phone-mobile:hover { background: rgba(234,88,12,0.22); color: white; }
.navbar-phone-fixe {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  font-size: 0.78rem;
  padding: 0.2rem 0.9rem 0.4rem;
  border-radius: 0 0 8px 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: none;
  transition: var(--transition);
}
.navbar-phone-fixe:hover { color: white; background: rgba(255,255,255,0.1); }
.navbar-phone-fixe i { font-size: 0.7rem; }

/* ===== SERVICE CARDS AVEC VRAIES PHOTOS ===== */
.service-card-img-wrap {
  position: relative;
  overflow: hidden;
}
.service-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card-img { transform: scale(1.04); }
.service-card-badge {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.plomberie-badge  { background: rgba(30,64,175,0.85);  color: white; }
.electricite-badge { background: rgba(120,53,15,0.85);  color: white; }
.pac-badge         { background: rgba(6,78,59,0.85);    color: white; }
.clim-badge        { background: rgba(12,74,110,0.85);  color: white; }

.service-card-body { padding: 1.5rem 1.75rem 1.75rem; display: flex; flex-direction: column; flex: 1; }
.service-card-body h3 { color: var(--dark); margin-bottom: 0.75rem; font-size: 1.25rem; }

/* ===== SERVICE VISUAL PANELS (conservé comme fallback) ===== */
.service-visual {
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  min-height: 320px;
  font-family: 'Barlow Condensed', sans-serif;
}
.service-visual i { font-size: 5rem; opacity: 0.7; }
.service-visual-label { font-size: 1.6rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; text-align: center; opacity: 0.75; }
.plomberie-visual  { background: linear-gradient(135deg, #dbeafe, #93c5fd); color: #1e40af; }
.electricite-visual { background: linear-gradient(135deg, #fef3c7, #fbbf24); color: #78350f; }
.pac-visual        { background: linear-gradient(135deg, #d1fae5, #6ee7b7); color: #064e3b; }
.clim-visual       { background: linear-gradient(135deg, #e0f2fe, #7dd3fc); color: #0c4a6e; }

/* Entretien card : remplace photo par panel orange */
.entretien-visual {
  background: linear-gradient(135deg, var(--orange), var(--orange-hover));
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem;
  min-height: 220px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.entretien-visual i { font-size: 4rem; opacity: 0.8; }

/* ===== RGE / AVANTAGE SECTION ===== */
.avantage-section { background: var(--dark); }
.avantage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.avantage-content .badge { margin-bottom: 1.5rem; }
.avantage-content h2 { color: white; margin-bottom: 1.25rem; }
.avantage-content > p { color: rgba(255,255,255,0.85); margin-bottom: 2rem; font-size: 1.05rem; }
.avantage-points { display: flex; flex-direction: column; gap: 1.25rem; }
.av-point { display: flex; gap: 1rem; align-items: flex-start; }
.av-icon {
  width: 42px;
  height: 42px;
  background: rgba(234,88,12,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(234,88,12,0.2);
}
.av-icon i { color: var(--orange-light); font-size: 1.1rem; }
.av-text h4 { color: white; font-size: 1rem; font-weight: 600; margin-bottom: 0.3rem; font-family: 'Barlow', sans-serif; }
.av-text p { font-size: 0.9rem; color: rgba(255,255,255,0.8); margin: 0; line-height: 1.6; }

.compare-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.compare-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: center;
}
.compare-col-head {
  padding: 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.compare-col-head.other { background: rgba(148,163,184,0.1); color: #94a3b8; }
.compare-col-head.adpac { background: rgba(234,88,12,0.2); color: var(--orange-light); }
.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.compare-cell {
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}
.compare-cell:first-child { border-right: 1px solid rgba(255,255,255,0.07); }
.compare-cell i.fa-times { color: #f87171; }
.compare-cell i.fa-check { color: #4ade80; }
.compare-note {
  padding: 1rem 1.25rem;
  background: rgba(234,88,12,0.1);
  border-top: 1px solid rgba(234,88,12,0.2);
  font-size: 0.8rem;
  color: var(--orange-light);
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

/* ===== WHY US ===== */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.why-card { text-align: center; padding: 2.5rem 1.5rem; }
.why-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.why-icon-wrap {
  width: 68px;
  height: 68px;
  background: var(--orange-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  border: 2px solid var(--orange-border);
}
.why-icon-wrap i { font-size: 1.7rem; color: var(--orange); }
.why-card h3 { color: var(--dark); font-size: 1.1rem; margin-bottom: 0.5rem; }
.why-card p { font-size: 0.85rem; }

/* ===== ENTRETIEN ===== */
.entretien-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: var(--shadow);
}
.entretien-img {
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.entretien-content { padding: 3rem; }
.entretien-content .badge { margin-bottom: 1.25rem; }
.entretien-content h2 { margin-bottom: 1rem; font-size: clamp(1.5rem, 3vw, 2rem); }
.entretien-content p { margin-bottom: 1.5rem; }
.entretien-list { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.entretien-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text);
}
.entretien-list li i { color: var(--orange); font-size: 0.875rem; width: 16px; }

/* ===== AVIS / REVIEWS ===== */
.avis-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.avis-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.avis-card:hover { box-shadow: var(--shadow); border-color: var(--orange-border); }
.avis-stars { color: #f59e0b; margin-bottom: 1rem; font-size: 0.9rem; letter-spacing: 2px; }
.avis-text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.avis-text::before { content: '"'; color: var(--orange); font-size: 1.5rem; font-style: normal; line-height: 0; vertical-align: -0.3em; margin-right: 0.2em; }
.avis-author { display: flex; align-items: center; gap: 0.75rem; }
.avis-avatar {
  width: 40px;
  height: 40px;
  background: var(--dark-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}
.avis-name { font-weight: 600; font-size: 0.875rem; color: var(--dark); }
.avis-location { font-size: 0.75rem; color: var(--text-muted); }
.avis-service-tag {
  display: inline-block;
  background: var(--orange-bg);
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  margin-top: 0.3rem;
  border: 1px solid var(--orange-border);
}

/* ===== CTA BANNER ===== */
.cta-section {
  background: linear-gradient(135deg, #ea580c 0%, #9a3412 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.cta-section h2 { color: white; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.82); font-size: 1.1rem; margin-bottom: 2.5rem; max-width: 520px; margin-inline: auto; margin-bottom: 2.5rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-phone-big {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.12);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.05rem;
  border: 2px solid rgba(255,255,255,0.3);
  transition: var(--transition);
}
.cta-phone-big:hover { background: rgba(255,255,255,0.2); }

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--dark);
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(234,88,12,0.06) 0%, transparent 60%);
}
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.25rem; font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.breadcrumb a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.breadcrumb a:hover { color: white; }
.breadcrumb i { font-size: 0.6rem; }
.page-hero h1 { color: white; font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 1.05rem; max-width: 560px; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; }
.contact-info h3 { font-size: 1.5rem; color: var(--dark); margin-bottom: 1rem; }
.contact-info > p { margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--orange-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon i { color: var(--orange); font-size: 1.1rem; }
.contact-item-content h4 { font-size: 0.875rem; font-weight: 700; color: var(--dark); margin-bottom: 0.2rem; font-family: 'Barlow', sans-serif; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-item-content a, .contact-item-content p { color: var(--text-muted); font-size: 0.9rem; margin: 0; transition: color 0.2s; }
.contact-item-content a:hover { color: var(--orange); }
.form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.form-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.form-card > p { font-size: 0.875rem; margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.45rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-alt);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); background: white; box-shadow: 0 0 0 3px rgba(234,88,12,0.1); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.75rem; }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: #f0fdf4;
  border-radius: var(--radius);
  border: 1px solid #bbf7d0;
}
.form-success i { font-size: 2.5rem; color: #16a34a; margin-bottom: 0.75rem; }
.form-success h4 { color: #15803d; margin-bottom: 0.5rem; }
.form-success p { color: #166534; font-size: 0.9rem; margin: 0; }

/* ===== ABOUT VISUAL PANEL ===== */
.about-visual {
  width: 100%;
  height: 420px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 60%, rgba(234,88,12,0.15) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.about-visual::before {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(234,88,12,0.08);
}
.about-visual-logo {
  height: 80px;
  width: auto;
  background: white;
  border-radius: 10px;
  padding: 8px 16px;
  object-fit: contain;
}
.about-visual-tagline {
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 1px;
  line-height: 1.6;
  text-transform: uppercase;
}
.about-visual-since {
  font-size: 0.8rem;
  color: var(--orange-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-badge-float {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--orange);
  color: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge-float .big-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}
.about-badge-float p { color: rgba(255,255,255,0.85); font-size: 0.75rem; margin: 0; text-transform: uppercase; letter-spacing: 1px; }
.about-content .badge { margin-bottom: 1.25rem; }
.about-content h2 { margin-bottom: 1.25rem; }
.about-content p { margin-bottom: 1rem; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.about-val {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.about-val i { color: var(--orange); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.about-val h4 { font-size: 0.9rem; color: var(--dark); margin-bottom: 0.15rem; font-family: 'Barlow', sans-serif; font-weight: 600; }
.about-val p { font-size: 0.78rem; margin: 0; }

/* ===== MAP ===== */
.map-section { padding: 0; }
.map-section iframe { width: 100%; height: 360px; border: 0; }

/* ===== CGV ===== */
.cgv-content { max-width: 800px; margin-inline: auto; }
.cgv-content h2 { font-size: 1.4rem; color: var(--dark); margin: 2.5rem 0 1rem; border-left: 3px solid var(--orange); padding-left: 0.875rem; }
.cgv-content h2:first-child { margin-top: 0; }
.cgv-content p { margin-bottom: 1rem; font-size: 0.95rem; }
.cgv-content ul { margin: 0.75rem 0 1rem 1.25rem; list-style: disc; }
.cgv-content ul li { font-size: 0.925rem; color: var(--text-muted); margin-bottom: 0.4rem; }

/* ===== FOOTER ===== */
footer { background: #08101c; color: white; padding: 4.5rem 0 2rem; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 4rem; margin-bottom: 3.5rem; }
.footer-brand .logo-name { font-size: 2rem; }
.footer-brand > p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin: 1.25rem 0; max-width: 260px; line-height: 1.65; }
.footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-list a, .footer-contact-list span {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-contact-list a:hover { color: white; }
.footer-contact-list i { color: var(--orange); width: 16px; flex-shrink: 0; font-size: 0.875rem; }
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.25rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul a { color: rgba(255,255,255,0.72); font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul a:hover { color: white; }
.footer-hours { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-hour-row { display: flex; justify-content: space-between; font-size: 0.875rem; color: rgba(255,255,255,0.72); padding-bottom: 0.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-hour-row span:last-child { color: white; font-weight: 500; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.8rem; margin: 0; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); font-size: 0.8rem; transition: color 0.2s; }
.footer-bottom-links a:hover { color: white; }

/* ===== ANIMATIONS (AOS fallback) ===== */
[data-aos] { opacity: 0; transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos="fade-up"] { transform: translateY(24px); }
[data-aos="fade-right"] { transform: translateX(-24px); }
[data-aos="fade-left"] { transform: translateX(24px); }
[data-aos].aos-animate { opacity: 1 !important; transform: none !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .avantage-grid { gap: 3.5rem; }
}
@media (max-width: 768px) {
  .navbar-links, .navbar-right { display: none; }
  .navbar-address { display: none; }
  .hamburger { display: flex; }
  .section { padding: 4rem 0; }
  .hero { min-height: 100svh; }
  .hero-stats { gap: 1.5rem; }
  .avantage-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-badge-float { right: 1rem; }
  .entretien-card { grid-template-columns: 1fr; }
  .entretien-img { height: 220px; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2.5rem; }
  .hero-stats { flex-direction: column; gap: 1.25rem; }
  .cta-btns { flex-direction: column; align-items: center; }
  .about-values { grid-template-columns: 1fr; }
}

/* ===== CLASSES UTILITAIRES (remplacement styles inline) ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  text-align: center;
}
.stat-block { padding: 2.5rem 1rem; }
.stat-big {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.stat-big-label { font-weight: 600; color: var(--dark); margin-top: 0.5rem; }
.stat-big-sub   { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.25rem; }

.rating-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 680px;
  margin-inline: auto;
}
.rating-score { text-align: center; }
.rating-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 5rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}
.rating-num span { font-size: 2rem; color: var(--text-muted); }
.rating-stars { color: #f59e0b; font-size: 1.5rem; letter-spacing: 4px; margin: 0.5rem 0; }
.rating-source { font-size: 0.85rem; color: var(--text-muted); }

.bar-row { display: flex; align-items: center; gap: 0.75rem; }
.bar-label { font-size: 0.85rem; color: var(--text-muted); width: 22px; }
.bar-track { flex: 1; background: var(--border); border-radius: 100px; height: 8px; overflow: hidden; }
.bar-fill  { height: 100%; background: #f59e0b; border-radius: 100px; }
.bar-pct   { font-size: 0.85rem; color: var(--text-muted); }

.info-box {
  padding: 1rem;
  background: var(--orange-bg);
  border-radius: var(--radius);
  border: 1px solid var(--orange-border);
  margin-bottom: 1.5rem;
}
.info-box p { font-size: 0.9rem; color: var(--text); margin: 0; }

.pro-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin-inline: auto;
}
.pro-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
