/* ============================================================
   style.css — Site HTML statique MonPlombierDeboucheur.fr

   Feuille de styles pour site HTML statique (non-WordPress)
   Design moderne et responsive
   Police Inter (Google Fonts) chargée dans chaque <head>
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.65;
  font-size: 15px;
}

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

a {
  text-decoration: none;
  color: inherit;
}

:root {
  --bleu: #1b3f6e;
  --bleu-clair: #2355a0;
  --bleu-vif: #1976d2;
  --gris-bg: #f4f5f7;
  --gris-bord: #dde1e7;
  --texte: #2d2d2d;
  --texte-doux: #5a6370;
  --blanc: #ffffff;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-pad {
  padding: 72px 0;
}

.bg-gris {
  background: var(--gris-bg);
}

.label-section {
  color: var(--bleu-vif);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.centré {
  text-align: center;
}

/* ===== HEADER ===== */
#main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s;
}

#main-header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.28);
}

/* Barre top (urgence) */
.header-top-bar {
  background: var(--bleu-vif);
  padding: 6px 0;
}

.header-top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.header-top-bar span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.header-top-bar a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
  opacity: 0.95;
  transition: opacity 0.15s;
}

.header-top-bar a:hover {
  opacity: 1;
}

/* Barre principale */
.header-main {
  background: var(--bleu);
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: auto;
  min-height: 64px;
  gap: 24px;
}

/* Logo */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  padding: 8px 0;
}

/* Logo header calibré comme serrureprotect.com : max-height 70px pour s'adapter à la barre de navigation sans déformer, width:auto pour préserver le ratio d'aspect */
.logo-wrap img {
  height: auto;
  width: auto;
  max-height: 70px;
  max-width: none;
}

.logo-text strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.logo-text strong span {
  color: #6fa3e0; /* s'applique à logo-dot par défaut */
}

/* Sur desktop : le <br> dans le logo est masqué, tout sur une ligne */
.logo-br { display: none; }
/* Spécificité renforcée pour écraser .logo-text strong span */
.logo-text strong .logo-line1,
.logo-text strong .logo-line2 { display: inline; color: #fff; }
.logo-line1::after { content: ' '; }
.logo-dot { color: #6fa3e0; }

.logo-text>span {
  color: #7fa8cc;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Nav desktop */
#main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

#main-nav a {
  color: #b8cfe8;
  font-size: 0.84rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  position: relative;
  transition: color 0.18s, background 0.18s;
  white-space: nowrap;
}

#main-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--bleu-vif);
  border-radius: 2px;
  transition: transform 0.22s ease;
}

#main-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

#main-nav a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

#main-nav a.active {
  color: #fff;
  background: rgba(25, 118, 210, 0.18);
}

#main-nav a.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* Masquer l'élément "avis" du menu desktop */
#main-nav a[data-section="avis"] {
  display: none;
}

/* CTA téléphone */
.header-tel {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bleu-vif);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 9px 18px;
  border-radius: 6px;
  transition: background 0.18s, transform 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.01em;
}

.header-tel:hover {
  background: #1255a8;
  transform: translateY(-1px);
}

.header-tel svg {
  flex-shrink: 0;
}

/* Hamburger + actions mobiles (cachés sur desktop) */
.header-mobile-actions {
  display: none;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.header-tel-mobile {
  display: none;
}
.mobile-stars-bar {
  display: none;
}

.header-tel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bleu-vif);
  border-radius: 8px;
  color: #fff;
  transition: background 0.18s;
}

.header-tel-icon:hover {
  background: #1255a8;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  border-radius: 8px;
  flex-shrink: 0;
  transition: background 0.18s;
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  margin: 0 auto;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Menu mobile — slide-down animé */
.mobile-nav {
  display: flex;
  flex-direction: column;
  background: #0f2444;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
}

.mobile-nav.open {
  max-height: 520px;
  opacity: 1;
}

.mobile-nav-links {
  padding: 6px 0 0;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #b8cfe8;
  font-size: 0.93rem;
  padding: 13px 20px;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: color 0.18s, background 0.18s, border-color 0.18s;
  min-height: 48px;
}

.mobile-nav a svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.mobile-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border-left-color: rgba(25, 118, 210, 0.5);
}

.mobile-nav a:hover svg {
  opacity: 1;
}

.mobile-nav a.active {
  color: #fff;
  background: rgba(25, 118, 210, 0.12);
  border-left-color: var(--bleu-vif);
}

.mobile-nav a.active svg {
  opacity: 1;
}

.mobile-nav-footer {
  padding: 10px 16px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 4px;
}

.mobile-nav a.mobile-tel {
  background: var(--bleu-vif);
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  justify-content: center;
  font-size: 0.96rem;
  padding: 14px 20px;
  border-left: none;
  min-height: 50px;
  transition: background 0.18s, transform 0.15s;
}

.mobile-nav a.mobile-tel:hover {
  background: #1255a8;
  border-left-color: transparent;
  transform: translateY(-1px);
}

/* Masquer l'élément "avis" du menu mobile */
.mobile-nav a[data-section="avis"] {
  display: none;
}

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14, 28, 52, 0.72);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 28, 52, 0.72);
  z-index: 0;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
  width: 100%;
}

.hero-inner h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-inner p {
  color: #b8cce0;
  font-size: 1rem;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-rouge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bleu-vif);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 24px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.18s;
}

.btn-rouge:hover {
  background: #1255a8;
}

.btn-outline-blanc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 4px;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s;
}

.btn-outline-blanc:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* ===== BOUTON FLOTTANT (call button) ===== */
.btn-flottant {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bleu-vif);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 20px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  z-index: 1000;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  animation: pulseBlue 2s infinite;
}
.btn-flottant svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  animation: ring 1.5s ease-in-out infinite;
}
.btn-flottant:hover {
  background: #1255a8;
  transform: translateY(-3px);
  animation: none;
  box-shadow: 0 6px 30px rgba(25, 118, 210, 0.6);
}

@keyframes pulseBlue {
  0% {
    box-shadow: 0 0 0 0px rgba(25, 118, 210, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(25, 118, 210, 0);
  }
  100% {
    box-shadow: 0 0 0 0px rgba(25, 118, 210, 0);
  }
}
@keyframes ring {
  0%, 100% { transform: rotate(0deg); }
  10%, 30% { transform: rotate(-10deg); }
  20%, 40% { transform: rotate(10deg); }
  50% { transform: rotate(0deg); }
}
/* Mobile - icône seulement (plus compact) */
@media (max-width: 768px) {
  .btn-flottant {
    bottom: 20px;
    right: 20px;
    padding: 12px 18px;
    min-width: 60px;
    justify-content: center;
  }
  .btn-flottant span {
    display: none;
  }
  .btn-flottant svg {
    width: 22px;
    height: 22px;
  }
}

.hero-points {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-point {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #c5d5ea;
  font-size: 0.85rem;
  font-weight: 500;
}

.hero-point svg {
  color: #7fb3e8;
  flex-shrink: 0;
}

/* Formulaire hero */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #555;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--gris-bord);
  border-radius: 3px;
  padding: 9px 11px;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  color: var(--texte);
  background: #fff;
  outline: none;
  transition: border-color 0.18s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--bleu);
}

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

.hero-form-wrap {
  background: #fff;
  border-radius: 4px;
  padding: 28px 26px;
}

.hero-form-wrap h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bleu);
  margin-bottom: 4px;
}

.hero-form-wrap p {
  font-size: 0.78rem;
  color: var(--texte-doux);
  margin-bottom: 18px;
}

.hero-form-wrap .champ {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}

.hero-form-wrap .champ label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #555;
}

.hero-form-wrap .champ input,
.hero-form-wrap .champ select {
  border: 1px solid var(--gris-bord);
  border-radius: 3px;
  padding: 9px 11px;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  color: var(--texte);
  background: #fff;
  outline: none;
  transition: border-color 0.18s;
}

.hero-form-wrap .champ input:focus,
.hero-form-wrap .champ select:focus {
  border-color: var(--bleu);
}

.btn-form-hero {
  width: 100%;
  background: var(--bleu-vif);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  margin-top: 4px;
  transition: background 0.18s;
}

.btn-form-hero:hover {
  background: #1255a8;
}

.hero-form-note {
  font-size: 0.72rem;
  color: #aaa;
  text-align: center;
  margin-top: 8px;
}

/* Hero texte — nouveau design */
.hero-texte {
  position: relative;
  z-index: 1;
}

.hero-surtitre {
  color: #7eb3f5;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.hero-texte h1 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}

.hero-accroche {
  color: #c5d5ea;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.hero-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-checks li {
  color: #c5d5ea;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-checks li::before {
  content: '✓';
  color: #7fb3e8;
  font-weight: 700;
}

/* Formulaire hero — nouveau design */
.form-titre {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--bleu);
  margin-bottom: 4px;
}

.form-note {
  font-size: 0.75rem;
  color: var(--texte-doux);
  text-align: center;
  margin-top: 10px;
}

.form-note a {
  color: var(--bleu);
  text-decoration: none;
  font-weight: 600;
}

.form-note a:hover {
  text-decoration: underline;
}

/* ===== BANDE INFO ===== */
.bande-info {
  background: var(--bleu-vif);
  padding: 13px 0;
}

.bande-inner,
.bande-info-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.bande-inner span,
.bande-info-inner span {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
}

.bande-info p {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
}

.bande-info a {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transition: border-color 0.18s;
}

.bande-info a:hover {
  border-color: #fff;
}

/* ===== PRÉSENTATION ===== */
.presentation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.imgs-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.imgs-group img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.imgs-group img:first-child {
  grid-column: 1 / -1;
  height: 240px;
}

.imgs-group img:not(:first-child) {
  height: 175px;
}

.pres-texte h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--bleu);
  margin-bottom: 14px;
}

.pres-texte p {
  font-size: 0.95rem;
  color: var(--texte-doux);
  line-height: 1.75;
  margin-bottom: 18px;
}

.pres-stats {
  display: flex;
  gap: 32px;
  margin-top: 24px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--bleu-vif);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--texte-doux);
  margin-top: 4px;
}

.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bleu-vif);
  margin-bottom: 12px;
}

h2.titre {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--bleu);
  line-height: 1.25;
  margin-bottom: 16px;
}

.sous-titre {
  color: var(--texte-doux);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.corps {
  color: #444;
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

.chiffres {
  display: flex;
  gap: 28px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--gris-bord);
  flex-wrap: wrap;
}

.chiffre strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--bleu);
  line-height: 1;
}

.chiffre span {
  font-size: 0.8rem;
  color: var(--texte-doux);
  margin-top: 3px;
  display: block;
}

/* ===== SERVICES ===== */
.entete-section {
  margin-bottom: 44px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card-service {
  background: #fff;
  border: 1px solid var(--gris-bord);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.card-service:hover {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.09);
}

.card-service img {
  width: 100%;
  height: 165px;
  object-fit: cover;
}

.card-corps {
  padding: 18px 20px 22px;
}

.card-icone {
  width: 38px;
  height: 38px;
  background: #e8edf5;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--bleu);
}

.card-corps h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--bleu);
  margin-bottom: 6px;
}

.card-corps p {
  font-size: 0.82rem;
  color: var(--texte-doux);
  line-height: 1.65;
}

.prix-service {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--gris-bord);
  font-size: 1rem;
  font-weight: 700;
  color: var(--bleu-vif);
  text-align: center;
}

/* ===== POURQUOI ===== */
#pourquoi {
  position: relative;
  overflow: hidden;
}

.pourquoi-img-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.pourquoi-img-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12, 24, 50, 0.85);
}

.pourquoi-inner {
  position: relative;
  z-index: 1;
}

.pourquoi-inner .section-label {
  color: #8ab0d8;
}

.pourquoi-inner h2.titre {
  color: #fff;
}

.pourquoi-inner .sous-titre {
  color: #8ab0d8;
  margin-bottom: 0;
}

.engagements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.engagement,
.engagement-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  padding: 26px 20px;
}

.engagement-icone,
.eng-icone {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8ab0d8;
  margin-bottom: 14px;
  font-size: 1.5rem;
}

.engagement h3,
.engagement-item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.engagement p,
.engagement-item p {
  font-size: 0.82rem;
  color: #8ab0d8;
  line-height: 1.65;
}

/* ===== ZONE ===== */
.zone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.zone-texte h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--bleu);
  margin-bottom: 14px;
}

.zone-texte p {
  font-size: 0.95rem;
  color: var(--texte-doux);
  line-height: 1.75;
  margin-bottom: 18px;
}

.zone-img-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.zone-img,
.zone-img-wrap img {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.zone-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.zone-img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bleu);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 10px 16px;
  text-align: center;
}

.villes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin: 20px 0 24px;
}

.ville {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--texte);
  font-weight: 500;
}

.ville-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bleu);
  flex-shrink: 0;
}

.note-zone {
  background: #eef2f8;
  border-left: 3px solid var(--bleu);
  padding: 12px 16px;
  font-size: 0.83rem;
  color: var(--bleu);
  font-weight: 500;
  border-radius: 0 4px 4px 0;
}

/* ===== AVIS ===== */
.note-globale {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.note-chiffre {
  font-size: 3rem;
  font-weight: 700;
  color: var(--bleu);
  line-height: 1;
}

.note-etoiles {
  color: #c8901a;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.note-meta {
  font-size: 0.8rem;
  color: var(--texte-doux);
  margin-top: 3px;
}

.avis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.avis-card {
  background: #fff;
  border: 1px solid var(--gris-bord);
  border-radius: 4px;
  padding: 22px;
}

.avis-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.avis-initiales {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bleu);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avis-meta-auth strong {
  font-size: 0.9rem;
  font-weight: 700;
  display: block;
}

.avis-meta-auth span {
  font-size: 0.75rem;
  color: var(--texte-doux);
}

.etoiles-sm {
  color: #c8901a;
  font-size: 0.8rem;
  margin-bottom: 8px;
}

.avis-card p {
  font-size: 0.83rem;
  color: #444;
  line-height: 1.7;
}

.mention-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  font-size: 0.8rem;
  color: var(--texte-doux);
}

.badge-google {
  border: 1px solid var(--gris-bord);
  border-radius: 3px;
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #333;
}

/* ===== FAQ ===== */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.faq-content h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--bleu);
  margin-bottom: 14px;
}

.faq-img {
  border-radius: 4px;
  overflow: hidden;
}

.faq-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.accordeon {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--gris-bord);
}

.acc-item {
  border-bottom: 1px solid var(--gris-bord);
}

.acc-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 0;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--texte);
  transition: color 0.18s;
}

.acc-btn:hover {
  color: var(--bleu);
}

.acc-btn.ouvert {
  color: var(--bleu);
}

.acc-chevron {
  flex-shrink: 0;
  transition: transform 0.22s;
  color: var(--texte-doux);
}

.acc-btn.ouvert .acc-chevron {
  transform: rotate(180deg);
  color: var(--bleu);
}

.acc-corps {
  display: none;
  padding: 0 0 16px;
  font-size: 0.84rem;
  color: var(--texte-doux);
  line-height: 1.75;
}

.acc-corps.ouvert {
  display: block;
}

/* ===== CONTACT ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.contact-form-wrap h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--bleu);
  margin-bottom: 20px;
}

.contact-infos {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-ligne {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.info-icone {
  width: 40px;
  height: 40px;
  background: #e8edf5;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bleu);
  flex-shrink: 0;
}

.info-texte strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--texte-doux);
  margin-bottom: 2px;
}

.info-texte span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--texte);
}

.urgence-encart {
  background: var(--bleu);
  border-radius: 4px;
  padding: 22px;
  margin-top: 8px;
}

.urgence-encart h3,
.urgence-encart h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.urgence-encart p {
  color: #8ab0d8;
  font-size: 0.83rem;
  margin-bottom: 16px;
}

.urgence-encart a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--bleu-vif);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 20px;
  border-radius: 4px;
  transition: background 0.18s;
}

.urgence-encart a:hover {
  background: #1255a8;
}

/* Formulaire standard */
.formulaire {
  background: #fff;
  border: 1px solid var(--gris-bord);
  border-radius: 4px;
  padding: 32px;
}

.formulaire h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bleu);
  margin-bottom: 24px;
}

.champ-rangee {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.champ {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}

.champ label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #555;
}

.champ input,
.champ select,
.champ textarea {
  border: 1px solid var(--gris-bord);
  border-radius: 3px;
  padding: 10px 12px;
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  color: var(--texte);
  background: #fff;
  outline: none;
  transition: border-color 0.18s;
}

.champ input:focus,
.champ select:focus,
.champ textarea:focus {
  border-color: var(--bleu);
}

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

.btn-envoyer {
  width: 100%;
  background: var(--bleu);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.18s;
}

.btn-envoyer:hover {
  background: #152e52;
}

.note-form {
  font-size: 0.75rem;
  color: var(--texte-doux);
  text-align: center;
  margin-top: 8px;
}

/* Page contact — coordonnées */
.contact-coords {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 24px;
}

.coord-item {
  background: #fff;
  border: 1px solid var(--gris-bord);
  border-radius: 4px;
  padding: 28px 24px;
  text-align: center;
}

.coord-icone {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.coord-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bleu);
  margin-bottom: 8px;
}

.coord-item p {
  font-size: 0.875rem;
  color: var(--texte-doux);
  line-height: 1.6;
}

.coord-item a {
  color: var(--bleu);
  text-decoration: none;
  transition: color 0.18s;
}

.coord-item a:hover {
  color: var(--bleu-vif);
}

/* Page contact — urgence large */
.urgence-full {
  background: var(--bleu);
  border-radius: 4px;
  padding: 36px 40px;
  text-align: center;
}

.urgence-full h2 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.urgence-full p {
  color: #8ab0d8;
  font-size: 0.95rem;
  margin-bottom: 16px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.urgence-depts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.dept-tag {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 6px 14px;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Page contact — formulaire complet */
.contact-form-full {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--gris-bord);
  border-radius: 4px;
  padding: 36px 40px;
}

.contact-form-full .form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.contact-form-full .form-group {
  margin-bottom: 14px;
}

.contact-form-full .form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #555;
  margin-bottom: 4px;
}

.contact-form-full .form-group input,
.contact-form-full .form-group select,
.contact-form-full .form-group textarea {
  width: 100%;
  border: 1px solid var(--gris-bord);
  border-radius: 3px;
  padding: 10px 12px;
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  color: var(--texte);
  background: #fff;
  outline: none;
  transition: border-color 0.18s;
}

.contact-form-full .form-group input:focus,
.contact-form-full .form-group select:focus,
.contact-form-full .form-group textarea:focus {
  border-color: var(--bleu);
}

.contact-form-full .form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-form-full .btn-envoyer {
  width: 100%;
  background: var(--bleu);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.18s;
}

.contact-form-full .btn-envoyer:hover {
  background: #152e52;
}

/* Page contact — horaires */
.horaires-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.horaire-item {
  background: #fff;
  border: 1px solid var(--gris-bord);
  border-radius: 4px;
  padding: 24px 20px;
  text-align: center;
}

.horaire-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--bleu);
  margin-bottom: 4px;
}

.horaire-heures {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--texte);
  margin: 6px 0;
}

.horaire-desc {
  font-size: 0.8rem;
  color: var(--texte-doux);
}

/* Page contact — mentions légales */
.mentions-block {
  background: #fff;
  border: 1px solid var(--gris-bord);
  border-radius: 4px;
  padding: 28px 32px;
  max-width: 760px;
  margin: 0 auto;
}

.mentions-block h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bleu);
  margin-bottom: 16px;
}

.mentions-block p {
  font-size: 0.83rem;
  color: var(--texte);
  line-height: 1.75;
  margin-bottom: 10px;
}

.mentions-block a {
  color: var(--bleu);
  text-decoration: none;
}

.mentions-block a:hover {
  text-decoration: underline;
}

/* ===== FOOTER ===== */
footer {
  background: #0f1e36;
  color: #7a94b4;
  padding: 52px 0 22px;
}

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

.footer-brand {
  align-self: start;
}

.footer-brand img {
  height: auto;
  width: auto;
  max-width: 115px;
  max-height: none;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.83rem;
  line-height: 1.75;
  color: #5a7490;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col ul li a {
  font-size: 0.83rem;
  color: #5a7490;
  transition: color 0.18s;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-col ul li {
  font-size: 0.83rem;
  color: #5a7490;
}

.footer-bas {
  border-top: 1px solid #1e3050;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bas p {
  font-size: 0.75rem;
  color: #3e5470;
}

.footer-bas-links {
  display: flex;
  gap: 18px;
}

.footer-bas-links a {
  font-size: 0.75rem;
  color: #3e5470;
  transition: color 0.18s;
}

.footer-bas-links a:hover {
  color: #7a94b4;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .engagements-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 0 16px;
  }

  .header-top-bar {
    display: none;
  }

  #main-nav {
    display: none;
  }

  /* Cacher seulement l'icône téléphone seule dans header-mobile-actions */
  .header-mobile-actions .header-tel-icon {
    display: none;
  }

  .header-tel-mobile {
    display: inline-flex !important;
    background-color: var(--bleu-vif) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 11px !important;
    padding: 8px 12px !important;
    border-radius: 4px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    margin-right: 12px !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .mobile-stars-bar {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background-color: var(--bleu-vif);
    padding: 7px 0 !important;
    width: 100%;
    position: relative !important;
    z-index: 99;
    margin-top: -1px !important;
  }
  .mobile-stars-bar .stars-row {
    color: #FFD700;
    font-size: 15px;
    letter-spacing: 2px;
    line-height: 1;
  }
  .mobile-stars-bar .stars-label {
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
  }
  .mobile-stars-bar svg,
  .mobile-stars-bar span[style] {
    display: none !important;
  }

  .header-mobile-actions {
    display: flex !important;
    align-items: center;
    z-index: 11;
    position: relative;
  }

  .logo-text {
    display: flex;
    flex-direction: column;
    z-index: 12;
  }

  .logo-text span {
    display: none; /* Masque la description secondaire trop longue sur mobile */
  }

  .logo-text strong {
    display: block;
    font-size: 0.85rem;
    white-space: normal;
    word-break: break-word;
    line-height: 1.15;
  }

  /* Taille ajustée du logo sur mobile et tablette */
  .logo-wrap img {
    max-height: 50px;
    width: auto;
  }

  .header-inner {
    gap: 0;
    min-height: 58px;
    height: auto;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 6px 8px;
  }

  /* Masquer le bouton d'appel central sur mobile */
  .header-tel {
    display: none;
  }

  /* Logo empilé sur 2 lignes sur mobile — spécificité renforcée pour rester blanc */
  /* Le <br> reste caché : les spans display:block suffisent à l'empilage */
  .logo-br { display: none; }
  .logo-line1::after { content: ''; }
  .logo-text strong .logo-line1,
  .logo-text strong .logo-line2 { display: block; color: #fff; }
  .logo-text strong {
    font-size: 0.82rem;
    line-height: 1.1;
    letter-spacing: -0.01em;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Chiffres centrés sur mobile dans la section à propos */
  .chiffres {
    justify-content: center;
    text-align: center;
  }

  #hero {
    min-height: auto;
    padding: 60px 0;
  }

  .presentation-grid,
  .zone-grid,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .avis-grid {
    grid-template-columns: 1fr;
  }

  .engagements-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-cols {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Logo du footer même taille que le header sur mobile */
  .footer-brand img {
    max-width: none;
    max-height: 60px;
    width: auto;
  }

  .champ-rangee {
    grid-template-columns: 1fr;
  }

  .villes {
    grid-template-columns: 1fr;
  }

  .footer-bas {
    flex-direction: column;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center; /* Centre les boutons horizontalement */
    justify-content: center;
    width: 100%;
  }

  .hero-inner {
    text-align: center;
  }

  .hero-inner h1 br {
    display: none;
  }

  .hero-actions a {
    width: 100%; /* Largeur complète pour un meilleur rendu tactile sur mobile */
    max-width: 280px; /* Largeur uniforme pour tous les boutons */
    text-align: center;
    justify-content: center; /* Centre le texte et l'icône dans le bouton */
  }

  /* Alignement et uniformisation de tous les CTA sur mobile */
  .pres-actions,
  .middle-actions,
  .engagements-actions,
  .zone-actions,
  .faq-actions {
    justify-content: center !important;
    width: 100%;
  }

  .hero-actions a,
  .pres-actions a,
  .middle-actions a,
  .engagements-actions a,
  .zone-actions a,
  .faq-actions a {
    width: 100%;
    max-width: 280px; /* Largeur uniforme pour tous les boutons */
    text-align: center;
    justify-content: center;
  }

  .hero-points {
    flex-direction: column;
    gap: 12px;
    align-items: center; /* Centre les 3 puces/avantages sur mobile */
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-img {
    display: none;
  }

  .contact-coords {
    grid-template-columns: 1fr;
  }

  .contact-form-full {
    padding: 24px 20px;
  }

  .contact-form-full .form-row {
    grid-template-columns: 1fr;
  }

  .horaires-grid {
    grid-template-columns: 1fr;
  }

  .urgence-full {
    padding: 24px 20px;
  }
}

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

  .engagements-grid {
    grid-template-columns: 1fr;
  }

  .avis-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== MASQUER SECTION AVIS ===== */
#avis {
  display: none !important;
}

/* ===== MASQUER SECTIONS AVIS - Toutes les pages ===== */
/* Masquer les sections qui contiennent note-globale (section avis) */
section:has(.note-globale) {
  display: none !important;
}

/* Masquer spécifiquement la section avec ID avis */
#avis {
  display: none !important;
}

/* Masquer également les éléments internes de la section avis */
.note-globale,
.note-etoiles,
.note-texte,
.note-chiffre,
.avis-grid,
.avis-card,
.avis-top,
.avis-initiales,
.avis-meta-auth,
.etoiles-sm,
.avis-header,
.mention-google {
  display: none !important;
}

/* ===== MASQUER SECTION TARIFS - Toutes les pages ===== */
#tarifs {
  display: none !important;
}

/* ===== VOIR PLUS / VOIR MOINS VILLES ===== */
.ville-hidden {
  display: none;
}

/* ===== CHAMP FORMULAIRE POPUP ===== */
#devis-popup .champ {
  margin-bottom: 14px;
}
#devis-popup .champ label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}
#devis-popup .champ input,
#devis-popup .champ select,
#devis-popup .champ textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid #dde1e7;
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  color: #222;
  background: #f9fafb;
  transition: border-color 0.2s;
}
#devis-popup .champ input:focus,
#devis-popup .champ select:focus,
#devis-popup .champ textarea:focus {
  outline: none;
  border-color: var(--bleu-vif);
}
#devis-popup .champ textarea {
  resize: vertical;
  min-height: 80px;
}
#devis-popup .btn-envoyer {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--bleu-vif);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s;
  margin-top: 8px;
}
#devis-popup .btn-envoyer:hover {
  background: #1255a8;
}
