﻿:root {
  --navy:        #0f172a;
  --navy-dark:   #020617;
  --navy-light:  #f0f9ff;
  --accent:      #0891b2;
  --accent-dark: #0e7490;
  --accent-bg:   #ecfeff;
  --accent-mid:  #22d3ee;

  --white:       #ffffff;
  --gray-50:     #f8fafc;
  --gray-100:    #f1f5f9;
  --gray-200:    #e2e8f0;
  --gray-400:    #94a3b8;
  --gray-600:    #475569;
  --gray-800:    #1e293b;
  --green:       #059669;
  --red:         #dc2626;

  --font-main:  'Inter', system-ui, -apple-system, sans-serif;

  --radius-s:  8px;
  --radius-m:  14px;
  --radius-l:  20px;
  --shadow-s:  0 1px 3px rgba(15,23,42,.08), 0 1px 2px rgba(15,23,42,.05);
  --shadow-m:  0 4px 16px rgba(15,23,42,.10), 0 2px 6px rgba(15,23,42,.06);
  --shadow-l:  0 20px 40px rgba(15,23,42,.12), 0 8px 16px rgba(15,23,42,.08);

  --max-w: 1140px;
  --transition: .2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--gray-800);
  background: #ffffff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; }
input, select, textarea { font-family: inherit; }

h1, h2, h3, h4 { line-height: 1.15; color: var(--navy); }
h1 { font-size: clamp(28px, 5vw, 48px); font-weight: 800; letter-spacing: -.025em; }
h2 { font-size: clamp(22px, 3.5vw, 36px); font-weight: 700; letter-spacing: -.02em; }
h3 { font-size: 18px; font-weight: 600; }
h4 { font-size: 15px; font-weight: 600; }
p  { color: var(--gray-600); }
p strong { color: var(--navy); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-alt { background: var(--gray-50); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy p  { color: rgba(255,255,255,.72); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-bg);
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  border: 1px solid rgba(8,145,178,.18);
}
.section-navy .section-label { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.2); }
.section-title { margin-bottom: 12px; }
.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 99px;
  margin: 16px auto 0;
}
.section-title[style*="text-align:left"]::after { margin-left: 0; }
.section-sub   { font-size: 17px; color: var(--gray-600); max-width: 540px; margin: 0 auto; line-height: 1.7; }
.section-navy .section-sub { color: rgba(255,255,255,.65); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-s);
  font-size: 15px;
  font-weight: 600;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--accent-dark);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(14,116,144,.35);
}
.btn-primary:hover { background: #0a5f75; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(14,116,144,.42); }
.btn-outline {
  background: rgba(255,255,255,.94);
  color: var(--navy);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline:hover { border-color: var(--accent); background: var(--white); color: var(--accent); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(15,23,42,.2);
}
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-1px); }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-sm { padding: 9px 16px; font-size: 13px; }

.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  font-size: 13px;
  padding: 9px 0;
  position: sticky;
  top: 0;
  z-index: 201;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar-left { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.topbar-badge {
  background: var(--accent-dark);
  color: #fff;
  padding: 3px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity var(--transition);
}
.topbar-badge:hover { opacity: .85; }
.topbar-phone {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--transition);
}
.topbar-phone:hover { color: var(--accent-mid); }
.topbar-sep { color: rgba(255,255,255,.2); }

.navbar {
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 37px;
  z-index: 200;
  box-shadow: var(--shadow-s);
  backdrop-filter: blur(12px);
  transition: box-shadow .25s ease;
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.13);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: padding .25s ease;
}
.navbar.scrolled .container {
  padding-top: 5px;
  padding-bottom: 5px;
}
.logo-img {
  transition: width .25s ease, height .25s ease;
}
.navbar.scrolled .logo-img {
  width: 36px;
  height: 36px;
}
.logo-sub {
  transition: opacity .2s ease, max-height .25s ease;
  max-height: 20px;
  overflow: hidden;
}
.navbar.scrolled .logo-sub {
  opacity: 0;
  max-height: 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex-shrink: 0;
}
.logo-name  { font-size: 15px; font-weight: 700; color: var(--navy); line-height: 1.2; }
.logo-sub   { font-size: 11px; color: var(--gray-600); }
.nav-menu {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.nav-link {
  padding: 14px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--accent-dark); border-bottom-color: var(--accent-dark); }
.nav-cta {
  background: var(--accent-dark);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-s);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  flex-shrink: 0;
  border: none;
  box-shadow: 0 2px 8px rgba(14,116,144,.3);
}
.nav-cta svg { display: none; }
.nav-cta:hover { background: #0a5f75; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(14,116,144,.42); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  background:
    linear-gradient(135deg, rgba(2,6,23,.96) 0%, rgba(15,23,42,.92) 42%, rgba(8,100,132,.88) 72%, rgba(14,116,144,.92) 100%),
    url("../img/fond-ouest-plomberie-chauffage.webp") center/cover;
  color: var(--white);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.flame-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.flame-particle {
  position: absolute;
  bottom: -28px;
  width: var(--flame-size, 10px);
  height: calc(var(--flame-size, 10px) * 1.6);
  border-radius: 72% 28% 62% 38% / 72% 42% 58% 28%;
  background:
    radial-gradient(ellipse at 52% 76%, rgba(255,255,255,.95) 0 10%, rgba(255,226,95,.9) 11% 24%, transparent 25%),
    radial-gradient(ellipse at 45% 52%, rgba(255,210,56,.95), rgba(255,130,18,.86) 48%, rgba(194,70,18,.58) 72%, transparent 74%);
  box-shadow:
    0 0 16px rgba(255,146,32,.35),
    0 0 34px rgba(217,111,34,.18);
  opacity: 0;
  transform: translate3d(0, 0, 0) rotate(-18deg) scale(.7);
  animation: flameFloat var(--flame-duration, 7s) ease-in forwards;
  animation-delay: var(--flame-delay, 0s);
  filter: blur(.1px);
}
.flame-particle::before {
  content: '';
  position: absolute;
  inset: 20% 28% 12%;
  border-radius: 68% 32% 58% 42% / 70% 44% 56% 30%;
  background: linear-gradient(160deg, rgba(255,255,255,.9), rgba(255,221,84,.82) 48%, rgba(255,143,25,.1));
  transform: rotate(10deg);
}
.ember-particle {
  height: var(--flame-size, 6px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,238,170,.95) 0 22%, rgba(239,123,21,.75) 38%, transparent 70%);
  box-shadow: 0 0 14px rgba(255,146,32,.46);
}
.ember-particle::before { display: none; }
.hero > .container,
.page-hero > .container { position: relative; z-index: 1; }
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  right: -150px; bottom: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(8,145,178,.22) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.08);
  color: #fff;
  padding: 6px 18px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .4px;
  margin-bottom: 12px;
}
.hero-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 20px;
}
.hero-name strong { color: #7dd3fc; }
.hero h1 {
  color: #fff;
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -.03em;
  text-shadow: 0 2px 12px rgba(0,0,0,.2);
  max-width: 860px;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.88);
  margin-bottom: 16px;
  max-width: 560px;
  line-height: 1.72;
}
.hero-since { font-size: 14px; color: rgba(255,255,255,.65); margin-bottom: 36px; }
.hero-urgence {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 16px;
}
.hero-urgence a { color: var(--accent-mid); font-weight: 700; text-decoration: none; }
.hero-urgence a:hover { text-decoration: underline; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.9);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 12px;
}
.trust-dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; flex-shrink: 0; }
.hero-card {
  background: rgba(255,255,255,.98);
  border-radius: var(--radius-l);
  padding: 28px;
  box-shadow: var(--shadow-l);
}
.hero-card h3 { color: var(--navy); font-size: 17px; margin-bottom: 4px; }
.hero-card .card-sub { font-size: 13px; color: var(--gray-400); margin-bottom: 20px; }
.hero-card .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }

.urgence-bar {
  background: linear-gradient(90deg, #fef9c3, #fefce8);
  border-left: 4px solid #f59e0b;
  padding: 12px 0;
}
.urgence-bar .container {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: #78350f;
  line-height: 1.5;
}

.breadcrumb {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 10px 0;
  font-size: 12px;
  color: var(--gray-400);
}
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 4px; list-style: none; }
.breadcrumb li + li::before { content: '›'; margin-right: 4px; }
.breadcrumb a { color: var(--navy); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb li:last-child { color: var(--gray-600); font-weight: 600; }

.page-hero {
  background:
    linear-gradient(135deg, rgba(2,6,23,.97) 0%, rgba(15,23,42,.94) 50%, rgba(8,100,132,.82) 100%),
    url("../img/fond-ouest-plomberie-chauffage.webp") center/cover;
  color: var(--white);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.page-hero-label { background: rgba(255,255,255,.12); color: #fff; margin-bottom: 14px; border-color: rgba(255,255,255,.2); }
.page-hero h1 { color: var(--white); margin-bottom: 12px; max-width: 640px; }
.page-hero p { font-size: 15px; color: rgba(255,255,255,.85); max-width: 600px; line-height: 1.65; }
.page-hero .urg-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-top: 14px;
}

.accent-link {
  color: var(--accent) !important;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.image-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: 28px;
  align-items: center;
  margin: 0 0 42px;
  padding: 20px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-m);
  overflow: hidden;
}
.image-strip.reverse { grid-template-columns: minmax(280px, .95fr) minmax(0, 1.05fr); }
.image-strip.reverse .image-strip-media { order: -1; }
.image-strip-media {
  min-height: 260px;
  border-radius: var(--radius-m);
  overflow: hidden;
  background: var(--gray-100);
}
.image-strip-media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}
.image-strip-copy { padding: 10px 6px; }
.image-strip-copy h2,
.image-strip-copy h3 { margin-bottom: 10px; }
.image-strip-copy h2::after,
.image-strip-copy h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 99px;
  margin-top: 12px;
}
.image-strip-copy p { font-size: 15px; line-height: 1.75; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-l);
  padding: 0 0 24px;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.svc-header {
  height: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 58px;
  margin-bottom: 22px;
  border-radius: var(--radius-l) var(--radius-l) 0 0;
  transition: transform .3s ease;
}
.svc-header.blue   { background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%); }
.svc-header.orange { background: linear-gradient(135deg, #0c4a6e 0%, var(--accent) 100%); }
.service-card:hover .svc-header { transform: scale(1.02); }
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--navy);
  transform: scaleX(0);
  transition: transform .25s ease;
  transform-origin: left;
}
.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-m);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card.orange::before { background: var(--accent); }
.svc-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-s);
  display: flex; align-items: center; justify-content: center;
  margin: 0 22px 16px;
  font-size: 22px;
}
.svc-name,
.svc-desc,
.svc-urgence,
.svc-link { margin-left: 22px; margin-right: 22px; }
.svc-icon.blue   { background: var(--navy-light); }
.svc-icon.orange { background: var(--accent-bg); }
.svc-name  { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.svc-desc  { font-size: 13px; color: var(--gray-600); line-height: 1.55; }
.svc-urgence { font-size: 12px; color: var(--accent-dark); font-weight: 700; margin-top: 10px; }
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 12px;
  transition: color var(--transition), gap var(--transition);
}
.svc-link:hover { color: var(--accent); gap: 8px; }

.interventions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.intervention-item {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-m);
  padding: 22px;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}
.intervention-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-s);
  transform: translateY(-2px);
}
.intervention-icon { font-size: 32px; margin-bottom: 12px; }
.intervention-item h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.intervention-item p  { font-size: 13px; color: var(--gray-600); line-height: 1.5; }

.stats-bar { background: var(--navy); padding: 48px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.stat-num {
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -.025em;
}
.stat-num em { color: var(--accent-mid); font-style: normal; }
.stat-label { font-size: 13px; color: rgba(255,255,255,.5); }

.certif-bar { background: var(--white); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); padding: 20px 0; }
.certif-inner { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.certif-label { font-size: 11px; font-weight: 700; color: var(--gray-600); text-transform: uppercase; letter-spacing: .8px; flex-shrink: 0; }
.certif-logo { height: 60px; width: auto; display: block; object-fit: contain; }

.brands-bar { background: var(--gray-100); border-bottom: 1px solid var(--gray-200); padding: 16px 0; }
.brands-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.brands-label { font-size: 11px; font-weight: 700; color: var(--gray-600); text-transform: uppercase; letter-spacing: .8px; flex-shrink: 0; }
.brand-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  color: var(--navy);
  padding: 6px 14px;
  border-radius: var(--radius-s);
  font-size: 13px;
  font-weight: 600;
  transition: border-color var(--transition), box-shadow var(--transition);
  cursor: pointer;
  min-height: 44px;
}
.brand-chip:hover { border-color: var(--accent); box-shadow: var(--shadow-s); }
.brand-chip img { height: 28px; width: auto; display: block; object-fit: contain; }

.zone-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-l);
  padding: 28px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.zone-pills { display: flex; flex-wrap: wrap; gap: 8px; flex: 1; }
.zpill {
  background: var(--gray-100);
  color: var(--gray-600);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
  padding: 5px 13px;
  border-radius: 20px;
  font-size: 12px;
}
.zpill.main { background: var(--navy); color: #fff; font-weight: 700; }
a.zpill:hover { background: var(--accent-bg); color: var(--accent-dark); }
a.zpill.main:hover { background: var(--accent); color: #fff; }

.avis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.avis-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-l);
  padding: 24px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.avis-card:hover { box-shadow: var(--shadow-m); transform: translateY(-2px); }
.avis-card::before {
  content: '\201C';
  font-size: 80px;
  color: var(--gray-100);
  position: absolute;
  top: 4px; left: 18px;
  line-height: 1;
  pointer-events: none;
  font-weight: 800;
}
.avis-stars  { color: #f59e0b; font-size: 15px; margin-bottom: 8px; padding-top: 24px; }
.avis-text   { font-size: 14px; font-style: italic; color: var(--gray-600); line-height: 1.65; margin-bottom: 16px; }
.avis-author { display: flex; align-items: center; gap: 10px; }
.avis-avatar {
  width: 38px; height: 38px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.avis-name { font-size: 13px; font-weight: 700; color: var(--navy); }
.avis-loc  { font-size: 11px; color: var(--gray-600); }

.google-badge-wrap { text-align: center; margin-bottom: 40px; }
.google-badge-card {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-l);
  padding: 18px 28px;
  box-shadow: var(--shadow-s);
  text-decoration: none;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.google-badge-card:hover { box-shadow: var(--shadow-m); transform: translateY(-2px); border-color: #4285F4; }
.google-badge-name  { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.google-badge-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 5px; }
.google-badge-score { font-size: 24px; font-weight: 800; color: var(--navy); line-height: 1; }
.google-badge-stars { color: #FBBC05; font-size: 20px; letter-spacing: 2px; }
.google-badge-cta   { font-size: 12px; color: #4285F4; font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-m);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item:hover { border-color: var(--accent); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
  text-align: left;
  border: none;
  transition: background var(--transition);
}
.faq-q:hover { background: var(--gray-50); }
.faq-icon {
  width: 22px; height: 22px;
  border: 2px solid var(--gray-200);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gray-600);
  font-size: 11px;
  transition: transform .25s, background var(--transition), color var(--transition), border-color var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(180deg); background: var(--accent); color: #fff; border-color: var(--accent); }
.faq-a {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 22px 18px; }

.devis-section {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.devis-section::after {
  content: '';
  position: absolute;
  right: -120px; top: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(8,145,178,.18) 0%, transparent 65%);
  pointer-events: none;
}
.devis-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
  position: relative;
}
.devis-info h2 { color: var(--white); margin-bottom: 14px; }
.devis-info p  { color: rgba(255,255,255,.68); margin-bottom: 24px; line-height: 1.65; }
.devis-bullets { list-style: none; }
.devis-bullets li {
  font-size: 14px;
  color: rgba(255,255,255,.78);
  padding: 7px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.devis-bullets li::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--accent-mid);
  border-radius: 50%;
  flex-shrink: 0;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-l);
  padding: 32px;
  box-shadow: var(--shadow-l);
}
.form-card-title { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.form-card-sub   { font-size: 13px; color: var(--gray-600); margin-bottom: 22px; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--gray-800);
  margin-bottom: 5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-s);
  font-size: 14px;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
/* Les cases à cocher et boutons radio doivent garder leur rendu natif :
   sans ça, appearance:none supprime la coche et la case reste vide. */
.form-group input[type="checkbox"],
.form-group input[type="radio"] {
  -webkit-appearance: auto;
  appearance: auto;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
  accent-color: var(--accent);
  cursor: pointer;
}
.form-group input[type="checkbox"]:focus,
.form-group input[type="radio"]:focus {
  border: none;
  box-shadow: 0 0 0 3px rgba(8,145,178,.25);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(8,145,178,.12);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--red);
}
.form-group .error-msg {
  font-size: 11px;
  color: var(--red);
  margin-top: 4px;
  display: none;
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit { width: 100%; margin-top: 6px; }
.form-privacy { font-size: 11px; color: var(--gray-400); text-align: center; margin-top: 10px; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.form-success {
  display: none;
  background: #f0fdf4;
  border: 1.5px solid #22c55e;
  border-radius: var(--radius-s);
  padding: 14px 18px;
  font-size: 14px;
  color: #15803d;
  font-weight: 600;
  text-align: center;
  margin-top: 14px;
}
.form-error {
  display: none;
  background: #fef2f2;
  border: 1.5px solid var(--red);
  border-radius: var(--radius-s);
  padding: 14px 18px;
  font-size: 14px;
  color: var(--red);
  font-weight: 600;
  text-align: center;
  margin-top: 14px;
}

.plist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 20px 0;
}
.pitem {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-m);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.pitem:hover { border-color: var(--accent); box-shadow: var(--shadow-s); }
.pcheck {
  width: 24px; height: 24px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.ptxt strong { display: block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.ptxt span   { font-size: 13px; color: var(--gray-600); line-height: 1.5; }

.cta-bar {
  background: var(--accent);
  border-radius: var(--radius-l);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-bar-left h3 { color: #fff; font-size: 20px; margin-bottom: 4px; }
.cta-bar-left p  { color: rgba(255,255,255,.88); font-size: 14px; }
.cta-bar .btn-white {
  background: #fff;
  color: var(--accent-dark);
  padding: 12px 24px;
  border-radius: var(--radius-s);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 2px solid rgba(255,255,255,.9);
  cursor: pointer;
}
.cta-bar .btn-white:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,0,0,.18); }

.info-box {
  background: var(--accent-bg);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-s) var(--radius-s) 0;
  padding: 16px 20px;
  font-size: 13px;
  color: #164e63;
  line-height: 1.65;
}
.info-box strong { color: var(--accent-dark); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-m);
  overflow: hidden;
  background: var(--gray-100);
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
}
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--gray-400);
  font-size: 13px;
  background: var(--gray-100);
}
.gallery-placeholder .ph-icon { font-size: 32px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; align-items: start; }
.contact-grid > * { min-width: 0; }
.contact-hero-actions { margin-top: 24px; text-align: center; }
.contact-hero-call { font-size: 18px; padding: 12px 24px; }
.contact-hero-note { font-size: 14px; color: #4a6278; margin-top: 8px; }
.contact-info-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-l);
  padding: 28px;
}
.contact-info-card h3 { font-size: 16px; color: var(--navy); margin-bottom: 20px; }
.c-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.c-icon {
  width: 42px; height: 42px;
  background: var(--accent-bg);
  border-radius: var(--radius-s);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.c-label { font-size: 11px; text-transform: uppercase; letter-spacing: .4px; font-weight: 700; color: var(--gray-400); }
.c-value { font-size: 14px; font-weight: 700; color: var(--navy); margin-top: 1px; }
.c-value.phone { font-size: 20px; color: var(--accent); }
.c-value a { color: inherit; }
.c-value a:hover { text-decoration: underline; }
.horaires-table { width: 100%; font-size: 13px; border-collapse: collapse; margin-top: 6px; }
.horaires-table td { padding: 5px 0; }
.horaires-table td:first-child { color: var(--gray-600); width: 160px; }
.horaires-table td:last-child { font-weight: 700; color: var(--navy); }
.h-open   { color: var(--green) !important; }
.h-closed { color: var(--red) !important; font-weight: 400 !important; }
.h-orange { color: var(--accent) !important; }

.legal-content h3  { font-size: 18px; color: var(--navy); margin: 28px 0 8px; }
.legal-content h4  { font-size: 14px; font-weight: 700; color: var(--navy); margin: 16px 0 5px; }
.legal-content p,
.legal-content li  { font-size: 14px; color: var(--gray-600); line-height: 1.7; }
.legal-content ul  { list-style: disc; padding-left: 20px; margin: 8px 0; }
.legal-content a   { color: var(--navy); text-decoration: underline; }
.legal-divider     { border: none; border-top: 1.5px solid var(--gray-200); margin: 36px 0; }

.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 0; bottom: 0;
  width: 2px;
  background: var(--gray-200);
}
.timeline-item { position: relative; margin-bottom: 28px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px; top: 5px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--accent);
}
.timeline-year { font-size: 12px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.timeline-item h4 { font-size: 15px; color: var(--navy); margin-bottom: 4px; }
.timeline-item p  { font-size: 13px; color: var(--gray-600); }

.footer {
  background: var(--navy);
  color: rgba(255,255,255,.6);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.footer h4 { color: rgba(255,255,255,.9); font-size: 12px; font-weight: 700; margin-bottom: 16px; letter-spacing: .5px; text-transform: uppercase; }
.footer p  { font-size: 12px; line-height: 1.7; color: rgba(255,255,255,.7); }
.footer-link {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-bottom: 8px;
  transition: color var(--transition);
}
.footer-link:hover { color: var(--accent-mid); }
.footer-phone {
  display: block;
  font-size: 19px;
  font-weight: 700;
  color: var(--accent-mid);
  margin: 10px 0 5px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 20px;
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,.55);
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-m);
  cursor: pointer;
  border: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease, background var(--transition);
  z-index: 299;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--accent); transform: translateY(-2px); }

.mobile-call {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--accent);
  color: #fff;
  width: 100%;
  min-height: 58px;
  border-radius: 0;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0;
  font-weight: 700;
  box-shadow: 0 -4px 20px rgba(8,145,178,.4);
  z-index: 300;
  transition: transform var(--transition);
  border: none;
  text-decoration: none;
  opacity: 1 !important;
  pointer-events: auto !important;
}
.mobile-call svg { display: none; }
.mobile-call::before {
  content: '📞 Appeler maintenant';
  font-size: 16px;
}
.mobile-call:hover { transform: translateY(-1px); }

.real-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-l);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.real-card:hover,
.real-card:focus-visible {
  border-color: var(--accent);
  box-shadow: var(--shadow-m);
  outline: none;
  transform: translateY(-3px);
}
.real-img {
  aspect-ratio: 16/9;
  background: var(--gray-100);
  overflow: hidden;
  position: relative;
}
.real-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.real-card:hover .real-img img,
.real-card:focus-visible .real-img img { transform: scale(1.04); }
.real-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(15,23,42,.55));
  opacity: .82;
  pointer-events: none;
}
.real-photo-count {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  background: rgba(255,255,255,.95);
  color: var(--navy);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
}
.real-body { padding: 18px 20px; }
.real-tag {
  display: inline-block;
  background: var(--accent-bg);
  color: var(--accent-dark);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 3px 9px;
  border-radius: 20px;
  margin-bottom: 6px;
}
.real-body h3 { font-size: 15px; margin-bottom: 5px; }
.real-body p  { font-size: 13px; color: var(--gray-600); }
.real-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
}
.real-link::after {
  content: '›';
  font-size: 18px;
  line-height: 1;
}

.real-lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.real-lightbox.open { display: flex; }
.real-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2,6,23,.85);
  backdrop-filter: blur(6px);
}
.real-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: var(--white);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-l);
}
.real-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(15,23,42,.9);
  color: #fff;
  font-size: 26px;
  line-height: 1;
}
.real-lightbox-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 64px 16px 24px;
}
.real-lightbox-header h2 {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 700;
}
.real-lightbox-header p {
  color: var(--gray-600);
  font-size: 13px;
  margin-top: 2px;
}
#realLightboxCounter {
  flex-shrink: 0;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
}
.real-lightbox-media {
  position: relative;
  background: var(--gray-800);
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.real-lightbox-media img {
  width: 100%;
  max-height: min(66vh, 640px);
  object-fit: contain;
}
.real-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 54px;
  background: rgba(255,255,255,.92);
  color: var(--navy);
  font-size: 38px;
  line-height: 1;
  transition: background var(--transition), color var(--transition);
}
.real-lightbox-nav:hover { background: var(--accent); color: #fff; }
.real-lightbox-prev { left: 14px; }
.real-lightbox-next { right: 14px; }
.real-lightbox-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(74px, 1fr));
  gap: 8px;
  padding: 14px;
  background: var(--gray-50);
}
.real-lightbox-thumb {
  aspect-ratio: 4/3;
  border: 2px solid transparent;
  border-radius: var(--radius-s);
  overflow: hidden;
  background: var(--gray-100);
}
.real-lightbox-thumb.active { border-color: var(--accent); }
.real-lightbox-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.real-lightbox.single .real-lightbox-nav,
.real-lightbox.single .real-lightbox-thumbs { display: none; }

.home-gallery {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 16px;
}
.home-gallery-item {
  position: relative;
  min-height: 230px;
  border-radius: var(--radius-l);
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow-m);
}
.home-gallery-item:first-child {
  grid-row: span 2;
  min-height: 476px;
}
.home-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.home-gallery-item:hover img { transform: scale(1.05); }
.home-gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(2,6,23,.88));
}
.home-gallery-caption strong {
  display: block;
  color: #fff;
  font-size: 15px;
}
.home-gallery-caption span {
  display: block;
  color: rgba(255,255,255,.7);
  font-size: 12px;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .navbar .nav-menu,
  .navbar .nav-cta { display: none; }
  .hamburger { display: flex; }

  .nav-menu.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    border-top: 2px solid var(--accent);
    padding: 12px 0;
    box-shadow: var(--shadow-m);
    z-index: 199;
    gap: 0;
  }
  .nav-menu.mobile-open .nav-link {
    padding: 13px 20px;
    border-bottom: 1px solid var(--gray-100);
    border-left: none;
    margin-bottom: 0;
    font-size: 14px;
  }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card  { display: none; }
  .hero       { padding: 64px 0 56px; text-align: center; }
  .hero-btns, .hero-trust { justify-content: center; }
  .section-title::after { margin-left: auto; margin-right: auto; }
  .image-strip,
  .image-strip.reverse { grid-template-columns: 1fr; }
  .image-strip.reverse .image-strip-media { order: 0; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .interventions-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .avis-grid  { grid-template-columns: 1fr; }
  .plist { grid-template-columns: 1fr; }
  .devis-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .home-gallery { grid-template-columns: 1fr 1fr; }
  .home-gallery-item:first-child { grid-column: 1 / -1; min-height: 320px; }
  .mobile-call { display: flex; }
  body { padding-bottom: 58px; }
  .back-to-top { bottom: 70px; right: 16px; }
}

@media (max-width: 640px) {
  .hero, .page-hero {
    background-image:
      linear-gradient(135deg, rgba(2,6,23,.96) 0%, rgba(15,23,42,.92) 42%, rgba(8,100,132,.88) 72%, rgba(14,116,144,.92) 100%),
      url("../img/fond-ouest-plomberie-chauffage-mobile.webp");
  }
  .section { padding: 52px 0; }
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .interventions-grid { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid  { grid-template-columns: 1fr; }
  .home-gallery { grid-template-columns: 1fr; }
  .home-gallery-item,
  .home-gallery-item:first-child { min-height: 260px; grid-column: auto; grid-row: auto; }
  .cta-bar { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info-card,
  .form-card { min-width: 0; overflow-wrap: anywhere; }
  .page-hero .btn { max-width: 100%; white-space: normal; justify-content: center; text-align: center; }
  .contact-hero-call {
    width: 100%;
    min-width: 0;
    padding: 13px 12px;
    gap: 6px;
    font-size: 15px;
    line-height: 1.35;
  }
  .contact-hero-call span:last-child { min-width: 0; overflow-wrap: anywhere; }
  .image-strip { padding: 12px; gap: 18px; }
  .image-strip-media,
  .image-strip-media img { min-height: 210px; }
  .real-lightbox { padding: 10px; }
  .real-lightbox-dialog { max-height: calc(100vh - 20px); }
  .real-lightbox-header { padding: 18px 58px 14px 16px; }
  .real-lightbox-header { flex-direction: column; gap: 6px; }
  .real-lightbox-media { min-height: 210px; }
  .real-lightbox-nav {
    width: 36px;
    height: 46px;
    font-size: 32px;
  }
  .real-lightbox-prev { left: 8px; }
  .real-lightbox-next { right: 8px; }
  .real-lightbox-thumbs { grid-template-columns: repeat(auto-fill, minmax(58px, 1fr)); }
  .topbar-left > *:not(:first-child) { display: none; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes flameFloat {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(-18deg) scale(.62);
  }
  14% { opacity: .72; }
  38% {
    transform: translate3d(calc(var(--flame-drift, 24px) * .25), -78px, 0) rotate(8deg) scale(.92);
  }
  72% { opacity: .34; }
  100% {
    opacity: 0;
    transform: translate3d(var(--flame-drift, 24px), -235px, 0) rotate(22deg) scale(1.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  .flame-particle { animation: none; display: none; }
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.text-center { text-align: center; }
.text-orange { color: var(--accent); }
.text-navy   { color: var(--navy); }
.mt-4  { margin-top: 16px; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mb-4  { margin-bottom: 16px; }
.mb-6  { margin-bottom: 24px; }
.mb-8  { margin-bottom: 32px; }
.fw-700 { font-weight: 700; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* Hero — mini badge Google */
.hero-google-mini {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 8px 16px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  margin-top: 16px;
  transition: background var(--transition), border-color var(--transition);
  width: fit-content;
}
.hero-google-mini:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.38); }
.hgm-score { font-size: 17px; font-weight: 800; color: #fff; line-height: 1; }
.hgm-score span { font-size: 12px; font-weight: 400; opacity: .75; }
.hgm-stars { color: #FBBC05; font-size: 14px; letter-spacing: 1px; }
.hgm-label { font-size: 12px; color: rgba(255,255,255,.68); border-left: 1px solid rgba(255,255,255,.2); padding-left: 10px; }

/* Bandeau 3 bénéfices */
.benefits-bar {
  background: linear-gradient(90deg, #e0f2fe, #f0f9ff 50%, #e0f7fa);
  border-bottom: 1px solid rgba(8,145,178,.2);
  padding: 16px 0;
}
.benefits-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 36px;
  font-size: 14px;
  color: var(--navy);
}
.benefit-item svg { flex-shrink: 0; color: var(--accent-dark); }
.benefit-item strong { color: var(--navy); }
.benefit-sep {
  width: 1px;
  height: 34px;
  background: rgba(8,145,178,.28);
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .benefit-item { padding: 8px 20px; }
  .hero-google-mini { font-size: 12px; }
}
@media (max-width: 640px) {
  .benefit-sep { display: none; }
  .benefit-item { padding: 7px 16px; font-size: 13px; }
  .benefits-inner { justify-content: flex-start; }
  .hero-google-mini { flex-wrap: wrap; margin: 16px auto 0; }
}

/* ── Bouton flottant "Laisser un avis Google" ── */
.btn-avis-float {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 890;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #FBBC05;
  color: #1a1200;
  font-weight: 700;
  font-size: 13px;
  padding: 11px 18px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(251,188,5,.5), 0 2px 6px rgba(0,0,0,.15);
  transition: transform .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn-avis-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(251,188,5,.65), 0 3px 8px rgba(0,0,0,.18);
  color: #1a1200;
  text-decoration: none;
}
@media (max-width: 767px) {
  .btn-avis-float { display: none; }
}

/* ── Bandeau avis Google (index) ── */
.review-band {
  background: linear-gradient(90deg, #fffbea 0%, #fff8d6 50%, #fffbea 100%);
  border-top: 1px solid #f0c030;
  border-bottom: 1px solid #f0c030;
  padding: 14px 0;
}
.review-band-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.review-band-stars { font-size: 20px; color: #FBBC05; letter-spacing: 2px; }
.review-band-score { font-size: 22px; font-weight: 800; color: #0b2d5e; line-height: 1; }
.review-band-score span { font-size: 13px; font-weight: 400; color: #6b7280; }
.review-band-label { font-size: 14px; color: #4a6278; }
.review-band-sep { width: 1px; height: 32px; background: #e0c040; }
.btn-avis-band {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FBBC05;
  color: #1a1200;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(251,188,5,.4);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-avis-band:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251,188,5,.55);
  color: #1a1200;
  text-decoration: none;
}
@media (max-width: 640px) {
  .review-band-sep { display: none; }
  .review-band-inner { gap: 12px; }
  .review-band-score { font-size: 18px; }
}
/* ---- Bandeau de consentement (RGPD / Consent Mode) ------------------- */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 300;
  max-width: 760px;
  margin: 0 auto;
  display: none;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-l);
}
.cookie-banner.is-open { display: flex; }
.cookie-banner p {
  flex: 1;
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-600);
}
.cookie-banner a { color: var(--accent-dark); text-decoration: underline; }
.cookie-settings {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-decoration: underline;
}
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-actions button {
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-s);
  transition: var(--transition);
}
.btn-google-review {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  background: #fbbc05;
  color: #1a1200;
  box-shadow: 0 4px 16px rgba(251,188,5,.45);
  font-size: 16px;
  font-weight: 800;
  transition: transform .2s, box-shadow .2s;
}
.btn-google-review:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(251,188,5,.6); }
.cookie-refuse {
  background: var(--gray-100);
  color: var(--navy);
  border: 1.5px solid var(--gray-200);
}
.cookie-refuse:hover { background: var(--gray-200); }
.cookie-accept { background: var(--accent); color: var(--white); }
.cookie-accept:hover { background: var(--accent-dark); }

@media (max-width: 640px) {
  .cookie-banner { flex-direction: column; align-items: stretch; gap: 14px; padding: 16px; bottom: 70px; }
  .cookie-actions button { flex: 1; }
}
