/* ===================================================
   TINTEN COUVERTURE – CSS COMPLET ET PROPRE v3
   =================================================== */

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: #1a1a1a; background: #fff; line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* VARIABLES */
:root {
  --green: #96bc32;
  --green-dark: #7da028;
  --green-light: #edf5d6;
  --yellow: #ffd700;
  --red: #e53e3e;
  --dark: #1a1a1a;
  --dark2: #2d2d2d;
  --gray: #555;
  --gray-mid: #777;
  --gray-light: #999;
  --border: #e5e7eb;
  --bg: #f8f9fa;
  --white: #fff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.07);
  --shadow: 0 4px 20px rgba(0,0,0,.1);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.15);
  --r: 12px;
  --r-sm: 8px;
  --t: .25s ease;
}

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

/* ===================== URGENCE BAR ===================== */
.urgence-bar { background: #1a1a1a; height: 36px; overflow: hidden; display: flex; align-items: center; position: relative; z-index: 1001; }
.urgence-bar-inner { display: flex; align-items: center; width: 100%; overflow: hidden; padding: 0 16px; gap: 10px; }
.urgence-dot { width: 8px; height: 8px; background: var(--red); border-radius: 50%; flex-shrink: 0; animation: dot-pulse 1.5s infinite; }
@keyframes dot-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.4)} }
.urgence-scroll-wrap { flex: 1; overflow: hidden; }
.urgence-scroll-text { display: inline-block; white-space: nowrap; font-size: 13px; font-weight: 500; color: #fff; animation: marquee 35s linear infinite; }
.urgence-scroll-text a { color: var(--yellow); font-weight: 700; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ===================== HEADER ===================== */
.header { position: sticky; top: 0; z-index: 1000; background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,.1); }

.header-top-bar { background: #f4f4f4; border-bottom: 1px solid #e8e8e8; padding: 7px 0; }
.header-top-inner { display: flex; justify-content: space-between; align-items: center; }
.header-top-left { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #666; }
.header-top-left .sep { color: #ccc; }
.header-top-right { display: flex; align-items: center; gap: 16px; }
.header-top-link { font-size: 13px; color: #666; display: flex; align-items: center; gap: 4px; transition: color var(--t); }
.header-top-link:hover { color: var(--green); }
.header-wa { color: #25d366 !important; font-weight: 600; }

/* NAVBAR */
.navbar { display: flex; align-items: center; height: 70px; padding: 0 24px; max-width: 1200px; margin: 0 auto; gap: 8px; }
.logo-link { flex-shrink: 0; margin-right: 32px; }
.logo { height: 46px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 2px; flex: 1; }
.nav-link {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 8px 13px; border-radius: var(--r-sm);
  font-size: 14.5px; font-weight: 500; color: #333;
  transition: color var(--t), background var(--t); white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--green); background: var(--green-light); }
.nav-link.active { font-weight: 600; }
.dropdown-btn { font-size: 14.5px; font-weight: 500; color: #333; }
.arrow { font-size: 10px; transition: transform var(--t); }
.dropdown.open .arrow { transform: rotate(180deg); }

/* MEGA MENU */
.dropdown { position: relative; }
.mega-menu {
  display: none; position: absolute; top: calc(100% + 10px);
  left: 50%; transform: translateX(-50%);
  width: 740px; background: #fff;
  border-radius: var(--r); box-shadow: var(--shadow-lg);
  border: 1px solid var(--border); border-top: 3px solid var(--green);
  z-index: 2000; overflow: hidden;
}
.dropdown.open .mega-menu { display: block; }
.mega-menu-inner { display: grid; grid-template-columns: 1fr 1fr 1fr 190px; }
.mega-col { padding: 22px 18px; border-right: 1px solid #f0f0f0; }
.mega-col:last-child { border-right: none; background: #f8f9fa; }
.mega-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #999; margin-bottom: 12px; }
.mega-link { display: flex; align-items: flex-start; gap: 10px; padding: 8px; border-radius: var(--r-sm); margin-bottom: 2px; transition: background var(--t); }
.mega-link:hover { background: var(--green-light); }
.mega-icon { font-size: 17px; flex-shrink: 0; margin-top: 1px; }
.mega-link strong { display: block; font-size: 13px; font-weight: 600; color: #1a1a1a; }
.mega-link small { display: block; font-size: 12px; color: #888; margin-top: 1px; }
.mega-link-urgence:hover { background: #fff5f5; }
.mega-link-urgence strong { color: var(--red); }
.mega-cta-box { display: flex; flex-direction: column; gap: 8px; height: 100%; justify-content: center; }
.mega-cta-title { font-size: 14px; font-weight: 700; color: #1a1a1a; }
.mega-cta-text { font-size: 12px; color: #888; }
.mega-cta-btn { display: block; background: var(--green); color: #fff !important; text-align: center; padding: 10px 14px; border-radius: var(--r-sm); font-size: 13px; font-weight: 700; transition: background var(--t); }
.mega-cta-btn:hover { background: var(--green-dark); }
.mega-phone { display: block; text-align: center; font-size: 13px; font-weight: 600; color: var(--green); padding: 6px 0; }

/* NAV CTA */
.nav-cta { display: flex; align-items: center; gap: 10px; margin-left: auto; flex-shrink: 0; }
.btn-phone {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px; border: 2px solid var(--green); color: var(--green);
  border-radius: 50px; font-size: 13.5px; font-weight: 600;
  transition: all var(--t); white-space: nowrap;
}
.btn-phone:hover { background: var(--green); color: #fff; }
.btn-devis {
  display: inline-flex; align-items: center;
  padding: 10px 20px; background: var(--green); color: #fff !important;
  border-radius: 50px; font-size: 13.5px; font-weight: 700;
  transition: background var(--t); white-space: nowrap;
}
.btn-devis:hover { background: var(--green-dark); }

/* MENU TOGGLE */
.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: #1a1a1a; border-radius: 2px; transition: all var(--t); }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== HERO ===================== */
.hero {
  position: relative; min-height: 92vh;
  background: url('/images/hero-bg.jpeg') center center / cover no-repeat;
  display: flex; align-items: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.5) 55%, rgba(0,0,0,.3) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; width: 100%;
  padding: 80px 24px;
  display: grid; grid-template-columns: 1fr 420px; gap: 56px; align-items: center;
}
.hero-trust-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.13); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.22);
  padding: 6px 14px; border-radius: 50px; margin-bottom: 20px;
}
.stars { color: var(--yellow); font-size: 14px; }
.rating-text { color: rgba(255,255,255,.9); font-size: 13px; font-weight: 500; }
.hero h1 { font-size: clamp(2rem, 3.8vw, 3rem); font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 18px; }
.green-text { color: var(--green); }
.hero-desc { font-size: 16.5px; color: rgba(255,255,255,.88); line-height: 1.75; margin-bottom: 30px; max-width: 520px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; background: var(--green); color: #fff;
  border-radius: 50px; font-size: 15px; font-weight: 700;
  box-shadow: 0 4px 20px rgba(150,188,50,.4);
  transition: all var(--t);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(150,188,50,.5); }
.btn-pulse { animation: pulse-anim 2.5s infinite; }
@keyframes pulse-anim { 0%,100%{box-shadow:0 4px 20px rgba(150,188,50,.4)} 50%{box-shadow:0 4px 32px rgba(150,188,50,.7)} }
.btn-outline-phone {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border: 2px solid rgba(255,255,255,.6); color: #fff;
  border-radius: 50px; font-size: 15px; font-weight: 600;
  transition: all var(--t);
}
.btn-outline-phone:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.9); padding: 5px 12px; border-radius: 50px;
  font-size: 13px; font-weight: 500;
}
.badge-icon { color: var(--green); font-weight: 800; }

/* DEVIS CARD */
.devis-card { background: #fff; border-radius: 16px; padding: 28px; box-shadow: 0 20px 60px rgba(0,0,0,.25); }
.devis-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid #eee; }
.artisan-logo { height: 40px; width: auto; }
.devis-card-header h2 { font-size: 16px; font-weight: 800; color: #1a1a1a; margin: 0; }
.devis-subtitle { font-size: 12px; color: #888; margin: 2px 0 0; }
.devis-form { display: flex; flex-direction: column; gap: 12px; }
.form-group input, .form-group select {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid #e5e7eb; border-radius: var(--r-sm);
  font-size: 14px; color: #1a1a1a; font-family: inherit;
  outline: none; background: #fff; transition: border-color var(--t);
}
.form-group input:focus, .form-group select:focus { border-color: var(--green); }
.form-group input::placeholder { color: #bbb; }
.form-check { display: flex; align-items: flex-start; gap: 8px; }
.form-check input[type="checkbox"] { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; accent-color: var(--green); }
.form-check label { font-size: 12px; color: #666; line-height: 1.5; }
.btn-submit {
  width: 100%; padding: 14px; background: var(--green); color: #fff;
  border-radius: var(--r-sm); font-size: 15px; font-weight: 700;
  font-family: inherit; cursor: pointer; transition: background var(--t), transform var(--t);
}
.btn-submit:hover { background: var(--green-dark); transform: translateY(-1px); }
.form-note { font-size: 11px; color: #aaa; text-align: center; }

/* ===================== STATS ===================== */
.stats-bar { background: #1a1a1a; padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { text-align: center; padding: 20px; border-right: 1px solid rgba(255,255,255,.1); }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 2.4rem; font-weight: 900; color: var(--green); line-height: 1; margin-bottom: 6px; }
.stat-suffix { font-size: 1.5rem; font-weight: 700; }
.stat-label { font-size: 13px; color: rgba(255,255,255,.65); }

/* ===================== SECTION HEADER ===================== */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header--left { text-align: left; }
.section-tag {
  display: inline-block; background: var(--green-light); color: var(--green-dark);
  font-size: 11.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; padding: 4px 12px; border-radius: 50px; margin-bottom: 12px;
}
.section-tag--light { background: rgba(255,255,255,.15); color: rgba(255,255,255,.9); }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: #1a1a1a; margin-bottom: 12px; line-height: 1.25; }
.section-subtitle { font-size: 16px; color: #666; max-width: 600px; margin: 0 auto; line-height: 1.7; }
.txt-white { color: #fff !important; }
.txt-muted { color: rgba(255,255,255,.7) !important; }

/* ===================== SERVICES ===================== */
.services-section { padding: 80px 0; background: #f8f9fa; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: #fff; border-radius: var(--r);
  overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid #eee;
  transition: transform var(--t), box-shadow var(--t);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-img { position: relative; overflow: hidden; height: 210px; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-card:hover .service-img img { transform: scale(1.06); }
.service-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 14px;
  opacity: 0; transition: opacity var(--t);
}
.service-card:hover .service-overlay { opacity: 1; }
.service-overlay span { color: #fff; font-weight: 700; font-size: 14px; }
.service-body { padding: 20px 22px 24px; }
.service-icon { font-size: 26px; margin-bottom: 10px; }
.service-body h3 { font-size: 16px; font-weight: 700; color: #1a1a1a; margin-bottom: 8px; }
.service-body p { font-size: 14px; color: #666; line-height: 1.65; margin-bottom: 14px; }
.btn-link { font-size: 14px; font-weight: 600; color: var(--green); display: inline-flex; align-items: center; gap: 4px; transition: gap var(--t); }
.btn-link:hover { gap: 8px; }
.btn-link-red { color: var(--red); }

/* ===================== PROCESSUS ===================== */
.process-section { padding: 80px 0; background: #fff; }
.process-grid { display: flex; align-items: center; gap: 12px; justify-content: center; flex-wrap: wrap; }
.process-step {
  flex: 1; min-width: 180px; max-width: 220px;
  background: #f8f9fa; border-radius: var(--r); padding: 28px 18px;
  text-align: center; position: relative; border: 1px solid #eee;
}
.process-num {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  width: 28px; height: 28px; background: var(--green); color: #fff;
  border-radius: 50%; font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.process-icon { font-size: 32px; margin-bottom: 12px; margin-top: 6px; }
.process-step h3 { font-size: 15px; font-weight: 700; color: #1a1a1a; margin-bottom: 8px; }
.process-step p { font-size: 13px; color: #666; line-height: 1.6; }
.process-arrow { font-size: 22px; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* ===================== RÉALISATIONS ===================== */
.realisations-section { padding: 80px 0; background: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 32px; }
.gallery-item { position: relative; border-radius: var(--r-sm); overflow: hidden; cursor: pointer; aspect-ratio: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 12px;
  opacity: 0; transition: opacity var(--t);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #fff; font-size: 13px; font-weight: 600; }
.gallery-cta { text-align: center; }
.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 28px; border: 2px solid #1a1a1a; color: #1a1a1a;
  border-radius: 50px; font-size: 14px; font-weight: 600; transition: all var(--t);
}
.btn-outline-dark:hover { background: #1a1a1a; color: #fff; }

/* ===================== AVANTAGES ===================== */
.avantages-section { padding: 80px 0; background: #1a1a1a; }
.avantages-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.avantage-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r); padding: 28px 20px; text-align: center;
  transition: background var(--t), transform var(--t);
}
.avantage-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.avantage-icon { font-size: 36px; margin-bottom: 14px; }
.avantage-card h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.avantage-card p { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.65; }

/* ===================== TÉMOIGNAGES ===================== */
.temoignages-section { padding: 80px 0; background: #f8f9fa; }
.temoignages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 32px; }
.temoignage-card { background: #fff; border-radius: var(--r); padding: 24px; box-shadow: var(--shadow-sm); border: 1px solid #eee; }
.temoignage-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.temoignage-avatar {
  width: 44px; height: 44px; background: var(--green); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; flex-shrink: 0;
}
.temoignage-head strong { display: block; font-size: 15px; font-weight: 700; color: #1a1a1a; }
.temoignage-head span { font-size: 13px; color: #888; }
.temoignage-stars { color: var(--yellow); font-size: 15px; margin-bottom: 10px; }
.temoignage-card p { font-size: 14px; color: #555; line-height: 1.7; font-style: italic; }
.temoignages-cta { text-align: center; }


/* ===================== URGENCE CTA ===================== */
.urgence-cta-section { padding: 80px 0; background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%); text-align: center; }
.urgence-cta-inner { max-width: 680px; margin: 0 auto; }
.urgence-cta-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(229,62,62,.15); border: 1px solid rgba(229,62,62,.3);
  color: #fc8181; padding: 6px 16px; border-radius: 50px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 24px;
}
.urgence-cta-section h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; color: #fff; margin-bottom: 16px; line-height: 1.25; }
.urgence-cta-section p { font-size: 16px; color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 32px; }
.urgence-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-red {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; background: var(--red); color: #fff;
  border-radius: 50px; font-size: 15px; font-weight: 700;
  box-shadow: 0 4px 20px rgba(229,62,62,.4); transition: all var(--t);
}
.btn-red:hover { background: #c53030; transform: translateY(-2px); }
.btn-outline-white-sm {
  display: inline-flex; align-items: center;
  padding: 14px 28px; border: 2px solid rgba(255,255,255,.4); color: #fff;
  border-radius: 50px; font-size: 15px; font-weight: 600; transition: all var(--t);
}
.btn-outline-white-sm:hover { background: rgba(255,255,255,.1); border-color: #fff; }

/* ===================== FAQ ===================== */
.faq-section { padding: 80px 0; background: #f8f9fa; }
.faq-inner { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: #fff; border-radius: var(--r-sm); border: 1px solid #e5e7eb; overflow: hidden; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  width: 100%; padding: 18px 20px; text-align: left;
  font-size: 15px; font-weight: 600; color: #1a1a1a;
  background: #fff; cursor: pointer; transition: background var(--t); font-family: inherit;
}
.faq-q:hover { background: #f8f9fa; }
.faq-q[aria-expanded="true"] { background: var(--green-light); color: var(--green-dark); }
.faq-plus { font-size: 22px; font-weight: 300; color: var(--green); flex-shrink: 0; transition: transform var(--t); line-height: 1; }
.faq-q[aria-expanded="true"] .faq-plus { transform: rotate(45deg); }
.faq-a { padding: 0 20px 18px; background: #fff; }
.faq-a p { font-size: 14px; color: #555; line-height: 1.75; }

/* FAQ SIDEBAR */
.faq-cta-box { background: #1a1a1a; border-radius: var(--r); padding: 28px; text-align: center; position: sticky; top: 100px; }
.faq-cta-box h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.faq-cta-box > p { font-size: 13px; color: rgba(255,255,255,.65); margin-bottom: 18px; }
.btn-green {
  display: block; padding: 12px 20px; background: var(--green); color: #fff !important;
  border-radius: var(--r-sm); font-size: 14px; font-weight: 700;
  text-align: center; transition: background var(--t); margin-bottom: 10px;
}
.btn-green:hover { background: var(--green-dark); }
.faq-phone { display: block; font-size: 15px; font-weight: 700; color: var(--green); text-align: center; padding: 8px; margin-bottom: 16px; }
.faq-trust-list { display: flex; flex-direction: column; gap: 6px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 16px; }
.faq-trust-item { font-size: 13px; color: rgba(255,255,255,.75); text-align: left; }

/* ===================== CTA FINAL ===================== */
.cta-final-section { padding: 80px 0; background: var(--green); }
.cta-final-inner { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.cta-final-text h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 800; color: #fff; margin-bottom: 10px; }
.cta-final-text p { font-size: 15px; color: rgba(255,255,255,.85); line-height: 1.7; margin-bottom: 16px; }
.cta-checks { display: flex; flex-wrap: wrap; gap: 14px; }
.cta-checks span { font-size: 13px; color: rgba(255,255,255,.9); font-weight: 500; }
.cta-final-actions { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.btn-white-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; background: #fff; color: var(--green-dark);
  border-radius: 50px; font-size: 15px; font-weight: 700;
  white-space: nowrap; box-shadow: 0 4px 16px rgba(0,0,0,.15); transition: all var(--t);
}
.btn-white-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,.2); }
.btn-outline-white-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border: 2px solid rgba(255,255,255,.7); color: #fff;
  border-radius: 50px; font-size: 14px; font-weight: 600; white-space: nowrap; transition: all var(--t);
}
.btn-outline-white-cta:hover { background: rgba(255,255,255,.15); border-color: #fff; }

/* ===================== ACTUALITÉS ===================== */
.actualites-section { padding: 80px 0; background: #fff; }
.actualites-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.actu-card { background: #fff; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid #eee; transition: transform var(--t), box-shadow var(--t); }
.actu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.actu-img { height: 200px; overflow: hidden; }
.actu-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.actu-card:hover .actu-img img { transform: scale(1.05); }
.actu-body { padding: 20px; }
.actu-tag { display: inline-block; background: var(--green-light); color: var(--green-dark); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 3px 10px; border-radius: 50px; margin-bottom: 10px; }
.actu-body h3 { font-size: 16px; font-weight: 700; color: #1a1a1a; margin-bottom: 8px; line-height: 1.4; }
.actu-body p { font-size: 14px; color: #666; line-height: 1.65; margin-bottom: 16px; }
.actu-footer { display: flex; justify-content: space-between; align-items: center; }
.actu-date { font-size: 12px; color: #aaa; }
.actu-link { font-size: 13px; font-weight: 600; color: var(--green); }

/* ===================== FOOTER ===================== */
.footer { background: #111; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-logo { height: 52px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px; height: 36px; background: rgba(255,255,255,.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65); font-size: 12px; font-weight: 700;
  text-transform: uppercase; transition: background var(--t);
}
.footer-social:hover { background: var(--green); color: #fff; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .07em; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.55); transition: color var(--t); }
.footer-col ul li a:hover { color: var(--green); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; }
.fc-icon { font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.footer-contact-item a, .footer-contact-item span { font-size: 14px; color: rgba(255,255,255,.55); transition: color var(--t); }
.footer-contact-item a:hover { color: var(--green); }
.footer-bottom { padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.35); }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,.35); transition: color var(--t); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.75); }

/* ===================== FLOTTANTS ===================== */
.float-wa {
  position: fixed; bottom: 80px; right: 20px;
  width: 52px; height: 52px; background: #25d366; color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4); z-index: 998;
  transition: transform var(--t), box-shadow var(--t);
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,.5); }
.float-rdv {
  position: fixed; bottom: 20px; right: 20px;
  background: var(--yellow); color: #1a1a1a;
  padding: 12px 18px; border-radius: 50px;
  font-size: 13px; font-weight: 700;
  box-shadow: 0 4px 16px rgba(255,215,0,.4); z-index: 998;
  transition: transform var(--t); white-space: nowrap;
}
.float-rdv:hover { transform: translateY(-2px); }
.back-to-top {
  position: fixed; bottom: 144px; right: 20px;
  width: 44px; height: 44px; background: #1a1a1a; color: #fff;
  border-radius: 50%; font-size: 18px; display: none;
  align-items: center; justify-content: center;
  box-shadow: var(--shadow); z-index: 997; cursor: pointer; transition: background var(--t);
}
.back-to-top.visible { display: flex; }
.back-to-top:hover { background: var(--green); }

/* ===================== LIGHTBOX ===================== */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 2000; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--r-sm); }
.lightbox-close { position: absolute; top: 20px; right: 24px; color: #fff; font-size: 26px; background: rgba(255,255,255,.1); border-radius: 50%; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background var(--t); }
.lightbox-close:hover { background: rgba(255,255,255,.2); }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); color: #fff; font-size: 32px; background: rgba(255,255,255,.1); border-radius: 50%; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background var(--t); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.2); }

/* ===================== SCROLL REVEAL ===================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===================== PAGES SECONDAIRES ===================== */
.page-hero { background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%); padding: 80px 0 60px; text-align: center; }
.page-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900; color: #fff; margin-bottom: 12px; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,.75); max-width: 600px; margin: 0 auto 20px; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.5); }
.breadcrumb a { color: rgba(255,255,255,.5); transition: color var(--t); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { color: rgba(255,255,255,.3); }
.page-content { padding: 64px 0; }
.page-content-grid { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; min-height: 0; }
.page-main h2 { font-size: 1.6rem; font-weight: 800; color: #1a1a1a; margin: 32px 0 12px; }
.page-main h2:first-child { margin-top: 0; }
.page-main p { font-size: 15px; color: #555; line-height: 1.8; margin-bottom: 16px; }
.page-main ul { margin: 0 0 16px 20px; }
.page-main ul li { font-size: 15px; color: #555; line-height: 1.8; margin-bottom: 6px; list-style: disc; }
/* .page-sidebar : voir section SIDEBAR PAGES SERVICES ci-dessous */
.sidebar-devis-box { background: #1a1a1a; border-radius: var(--r); padding: 28px; margin-bottom: 20px; }
.sidebar-devis-box h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.sidebar-devis-box p { font-size: 13px; color: rgba(255,255,255,.65); margin-bottom: 16px; }
.sidebar-phone { display: block; text-align: center; font-size: 15px; font-weight: 700; color: var(--green); padding: 8px; }
.sidebar-trust { background: #f8f9fa; border-radius: var(--r); padding: 20px; }
.sidebar-trust h4 { font-size: 14px; font-weight: 700; color: #1a1a1a; margin-bottom: 12px; }
.sidebar-trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #555; margin-bottom: 8px; }
.sidebar-trust-item::before { content: '✓'; color: var(--green); font-weight: 700; }
.steps-list { display: flex; flex-direction: column; gap: 20px; margin: 24px 0; }
.step-item { display: flex; gap: 16px; align-items: flex-start; }
.step-num { width: 36px; height: 36px; flex-shrink: 0; background: var(--green); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 700; }
/* step-card : override pour la grille */
.step-card .step-num { flex-shrink: unset; width: 40px; height: 40px; margin: 0 auto 12px; }
.step-card h4 { font-size: 14px; font-weight: 700; color: #1a1a1a; margin-bottom: 6px; text-align: center; }
.step-card p { font-size: 13px; color: #666; line-height: 1.6; margin: 0; text-align: center; }
.step-item h4 { font-size: 15px; font-weight: 700; color: #1a1a1a; margin-bottom: 4px; }
.step-item p { font-size: 14px; color: #666; line-height: 1.6; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-form { background: #fff; border-radius: var(--r); padding: 32px; box-shadow: var(--shadow-sm); border: 1px solid #eee; }
.contact-form h2 { font-size: 1.4rem; font-weight: 700; color: #1a1a1a; margin-bottom: 20px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: #444; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 14px; border: 1.5px solid #e5e7eb; border-radius: var(--r-sm); font-size: 14px; color: #1a1a1a; font-family: inherit; outline: none; transition: border-color var(--t); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card { background: #f8f9fa; border-radius: var(--r); padding: 24px; }
.contact-info-card h3 { font-size: 15px; font-weight: 700; color: #1a1a1a; margin-bottom: 12px; }
.contact-info-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; font-size: 14px; color: #555; }
.realisations-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.real-card { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm); }
.real-card img { width: 100%; height: 260px; object-fit: cover; }
.real-card-body { padding: 16px; background: #fff; }
.real-card-body h3 { font-size: 15px; font-weight: 700; color: #1a1a1a; margin-bottom: 4px; }
.real-card-body p { font-size: 13px; color: #888; }
.page-404 { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px 24px; }
.page-404 h1 { font-size: 6rem; font-weight: 900; color: var(--green); line-height: 1; }
.page-404 h2 { font-size: 1.8rem; font-weight: 700; color: #1a1a1a; margin: 12px 0; }
.page-404 p { font-size: 16px; color: #666; margin-bottom: 28px; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .avantages-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.1); }
  .stat-item:last-child, .stat-item:nth-last-child(2) { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mega-menu { width: 560px; }
  .mega-menu-inner { grid-template-columns: 1fr 1fr; }
  .mega-col-cta { display: none; }
  .process-grid { flex-wrap: wrap; }
  .process-arrow { display: none; }
  .cta-final-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-final-actions { flex-direction: row; justify-content: center; }
  .faq-inner { grid-template-columns: 1fr; }
  .faq-cta-box { position: static; }
  .page-content-grid { grid-template-columns: 1fr; }
  .page-sidebar { position: static; align-self: auto; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header-top-bar { display: none; }
  .navbar { padding: 0 16px; }
  .logo { height: 40px; }
  .nav-links {
    display: none; position: fixed; top: 70px; left: 0; right: 0;
    background: #fff; flex-direction: column; align-items: stretch;
    padding: 16px; gap: 4px; box-shadow: var(--shadow-lg); z-index: 998;
    max-height: calc(100vh - 70px); overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 12px 16px; }
  .dropdown-btn { width: 100%; justify-content: space-between; }
  .mega-menu { position: static; transform: none; width: 100%; box-shadow: none; border: none; border-top: 1px solid #eee; border-radius: 0; }
  .mega-menu-inner { grid-template-columns: 1fr; }
  .mega-col { border-right: none; border-bottom: 1px solid #eee; padding: 12px 16px; }
  .mega-col:last-child { border-bottom: none; }
  .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .hero-content { grid-template-columns: 1fr; gap: 32px; padding: 60px 16px; }
  .hero h1 { font-size: 1.8rem; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline-phone { width: 100%; justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .temoignages-grid { grid-template-columns: 1fr; }
  .actualites-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .avantages-grid { grid-template-columns: 1fr; }
  .urgence-cta-btns { flex-direction: column; align-items: center; }
  .cta-final-actions { flex-direction: column; }
  .realisations-full-grid { grid-template-columns: 1fr; }
  .temoignages-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-badges { flex-direction: column; gap: 6px; }
}

/* ===================== STYLES COMPLÉMENTAIRES ===================== */
.hero-left { display: flex; flex-direction: column; }
.hero-right { display: flex; align-items: center; justify-content: center; }

/* Boutons variantes */
.btn-full { width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px; background: var(--green); color: #fff; border-radius: var(--r-sm); font-size: 15px; font-weight: 700; font-family: inherit; cursor: pointer; transition: background var(--t); }
.btn-full:hover { background: var(--green-dark); }
.btn-urgence { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; background: var(--red); color: #fff; border-radius: 50px; font-size: 15px; font-weight: 700; transition: all var(--t); box-shadow: 0 4px 20px rgba(229,62,62,.4); }
.btn-urgence:hover { background: #c53030; transform: translateY(-2px); }
.btn-outline-green { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border: 2px solid var(--green); color: var(--green); border-radius: 50px; font-size: 14px; font-weight: 600; transition: all var(--t); }
.btn-outline-green:hover { background: var(--green); color: #fff; }
.btn-cta-devis { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; background: var(--green); color: #fff; border-radius: 50px; font-size: 15px; font-weight: 700; transition: all var(--t); }
.btn-cta-devis:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-cta-phone { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border: 2px solid rgba(255,255,255,.5); color: #fff; border-radius: 50px; font-size: 15px; font-weight: 600; transition: all var(--t); }
.btn-cta-phone:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-link-urgence { font-size: 14px; font-weight: 600; color: var(--red); display: inline-flex; align-items: center; gap: 4px; transition: gap var(--t); }
.btn-link-urgence:hover { gap: 8px; }
.btn-google-avis { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; background: #fff; color: #1a1a1a; border: 1.5px solid #e5e7eb; border-radius: 50px; font-size: 14px; font-weight: 600; box-shadow: var(--shadow-sm); transition: all var(--t); }
.btn-google-avis:hover { box-shadow: var(--shadow); transform: translateY(-1px); }

/* CTA Section */
.cta-section { padding: 80px 0; background: var(--green); }
.cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.cta-text h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 800; color: #fff; margin-bottom: 10px; }
.cta-text p { font-size: 15px; color: rgba(255,255,255,.85); line-height: 1.7; }
.cta-checklist { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 14px; }
.cta-checklist span { font-size: 13px; color: rgba(255,255,255,.9); font-weight: 500; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: center; }
@media (max-width: 768px) { .cta-inner { grid-template-columns: 1fr; text-align: center; } .cta-actions { flex-direction: row; justify-content: center; flex-wrap: wrap; } }

/* Processus variantes */
.process-steps { display: flex; align-items: center; gap: 12px; justify-content: center; flex-wrap: wrap; }
.process-connector { font-size: 22px; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* FAQ trust */
.faq-cta-icon { font-size: 28px; margin-bottom: 10px; }
.faq-trust-box { border-top: 1px solid rgba(255,255,255,.1); padding-top: 16px; margin-top: 4px; }
.faq-trust-title { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.8); margin-bottom: 8px; }
.faq-trust-stars { color: var(--yellow); font-size: 14px; margin-bottom: 4px; }
.faq-trust-note { font-size: 12px; color: rgba(255,255,255,.55); }

/* Map */
.map-placeholder { background: #e8e8e8; border-radius: var(--r); overflow: hidden; height: 360px; display: flex; align-items: center; justify-content: center; }
.map-subtitle { font-size: 14px; color: #888; margin-top: 8px; }

/* Footer extras */
.footer-certifie { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.certifie-img { height: 40px; width: auto; opacity: .7; }
.footer-devis-btn { display: block; background: var(--green); color: #fff !important; text-align: center; padding: 10px 16px; border-radius: var(--r-sm); font-size: 13px; font-weight: 700; margin-top: 12px; transition: background var(--t); }
.footer-devis-btn:hover { background: var(--green-dark); }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-social-btn { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.55); transition: color var(--t); }
.footer-social-btn:hover { color: var(--green); }
.footer-urgence-note { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 8px; }

/* RDV floating */
.rdv-floating {
  position: fixed; bottom: 20px; right: 20px;
  background: var(--yellow); color: #1a1a1a;
  padding: 12px 18px; border-radius: 50px;
  font-size: 13px; font-weight: 700;
  box-shadow: 0 4px 16px rgba(255,215,0,.4); z-index: 998;
  transition: transform var(--t); white-space: nowrap;
  display: flex; align-items: center; gap: 6px;
}
.rdv-floating:hover { transform: translateY(-2px); }
.rdv-icon { font-size: 14px; }

/* Service urgence */
.service-card-urgence { border: 2px solid rgba(229,62,62,.2); }
.service-card-urgence .service-body h3 { color: var(--red); }

/* Section tag light */
.section-tag--dark { background: rgba(0,0,0,.1); color: rgba(255,255,255,.9); }

/* ===== ZONE D'INTERVENTION REDESIGN ===== */
.zone-section { padding: 5rem 0; background: #f8f9fa; }
.zone-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; margin-top: 2.5rem; }
.zone-map-embed { border-radius: 12px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.zone-villes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.zone-ville-card { display: flex; align-items: center; gap: 0.75rem; background: #fff; border: 1px solid #e8e8e8; border-radius: 10px; padding: 0.85rem 1rem; transition: box-shadow .2s, border-color .2s; }
.zone-ville-card:hover { box-shadow: 0 4px 16px rgba(150,188,50,0.15); border-color: #96bc32; }
.zone-ville-icon { font-size: 1.3rem; flex-shrink: 0; }
.zone-ville-card div { display: flex; flex-direction: column; }
.zone-ville-card strong { font-size: 0.9rem; font-weight: 700; color: #1a1a1a; }
.zone-ville-card span { font-size: 0.75rem; color: #888; }

/* ===== URGENCES REDESIGN ===== */
.urgence-section { position: relative; background: #1a1a1a; overflow: hidden; }
.urgence-section::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%); }
.urgence-overlay { position: relative; z-index: 1; padding: 5rem 0; }
.urgence-inner { display: grid; grid-template-columns: auto 1fr; gap: 3rem; align-items: center; }
.urgence-icon-circle { width: 100px; height: 100px; background: rgba(220,53,69,0.15); border: 2px solid rgba(220,53,69,0.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; animation: pulse-red 2s infinite; }
@keyframes pulse-red { 0%,100%{ box-shadow: 0 0 0 0 rgba(220,53,69,0.4); } 50%{ box-shadow: 0 0 0 16px rgba(220,53,69,0); } }
.urgence-text .urgence-badge-label { display: inline-block; background: rgba(220,53,69,0.2); color: #ff6b6b; border: 1px solid rgba(220,53,69,0.4); border-radius: 50px; padding: 0.3rem 1rem; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 1rem; }
.urgence-text h2 { font-size: 2.2rem; font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 1rem; }
.urgence-text p { color: rgba(255,255,255,0.75); font-size: 1rem; line-height: 1.7; margin-bottom: 1.5rem; }
.urgence-list { list-style: none; padding: 0; margin: 0 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.urgence-list li { color: rgba(255,255,255,0.85); font-size: 0.9rem; display: flex; align-items: center; gap: 0.5rem; }
.urgence-list li::before { content: ''; display: none; }
.urgence-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-urgence { display: inline-flex; align-items: center; gap: 0.5rem; background: #dc3545; color: #fff; padding: 0.9rem 2rem; border-radius: 8px; font-weight: 700; font-size: 1rem; text-decoration: none; transition: background .2s, transform .2s; }
.btn-urgence:hover { background: #c82333; transform: translateY(-2px); }
.btn-outline-white { display: inline-flex; align-items: center; gap: 0.5rem; background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); padding: 0.9rem 2rem; border-radius: 8px; font-weight: 600; font-size: 1rem; text-decoration: none; transition: border-color .2s, background .2s; }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* Responsive zone + urgences */
@media (max-width: 900px) {
  .zone-inner { grid-template-columns: 1fr; }
  .urgence-inner { grid-template-columns: 1fr; text-align: center; }
  .urgence-icon-wrap { display: flex; justify-content: center; }
  .urgence-list { grid-template-columns: 1fr; }
  .urgence-btns { justify-content: center; }
  .zone-villes-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .zone-villes-grid { grid-template-columns: 1fr; }
  .urgence-text h2 { font-size: 1.6rem; }
}

/* ===================== PAGES SERVICES – STYLES COMPLETS ===================== */

/* Image principale */
.page-main-img {
  width: 100%; height: 380px; object-fit: cover;
  border-radius: var(--r); margin-bottom: 32px;
  box-shadow: var(--shadow);
}

/* Titres h3 dans le contenu */
.page-main h3 {
  font-size: 1.25rem; font-weight: 700; color: #1a1a1a;
  margin: 28px 0 14px; padding-bottom: 8px;
  border-bottom: 2px solid var(--green-light);
}

/* Grille des prestations */
.prestations-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin: 20px 0 28px;
}
.prestation-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: #f8f9fa; border-radius: var(--r-sm);
  padding: 16px; border: 1px solid #eee;
  transition: box-shadow var(--t), border-color var(--t);
}
.prestation-item:hover { box-shadow: var(--shadow-sm); border-color: var(--green); }
.prestation-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.prestation-item h4 { font-size: 14px; font-weight: 700; color: #1a1a1a; margin-bottom: 4px; }
.prestation-item p { font-size: 13px; color: #666; line-height: 1.6; margin: 0; }

/* Grille des étapes */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin: 20px 0 28px;
}
.step-card {
  background: #fff; border: 1px solid #eee; border-radius: var(--r-sm);
  padding: 20px 16px; text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t), transform var(--t);
}
.step-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.step-card .step-num {
  width: 40px; height: 40px; background: var(--green); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; margin: 0 auto 12px;
}
.step-card h4 { font-size: 14px; font-weight: 700; color: #1a1a1a; margin-bottom: 6px; }
.step-card p { font-size: 13px; color: #666; line-height: 1.6; margin: 0; }

/* Grille des matériaux */
.materiaux-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  margin: 20px 0 28px;
}
.materiau-card {
  background: #fff; border: 1px solid #eee; border-radius: var(--r-sm);
  padding: 20px; text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t), border-color var(--t);
}
.materiau-card:hover { box-shadow: var(--shadow); border-color: var(--green); }
.materiau-icon { font-size: 28px; display: block; margin-bottom: 10px; }
.materiau-card h4 { font-size: 14px; font-weight: 700; color: #1a1a1a; margin-bottom: 6px; }
.materiau-card p { font-size: 13px; color: #666; line-height: 1.6; margin: 0; }

/* Boîte garanties */
.garanties-box {
  background: var(--green-light); border: 1px solid rgba(150,188,50,.3);
  border-radius: var(--r); padding: 24px 28px; margin: 28px 0;
}
.garanties-box h3 {
  font-size: 1.1rem; font-weight: 700; color: #1a1a1a;
  margin: 0 0 14px; padding-bottom: 0; border-bottom: none;
}
.garanties-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.garanties-list li { font-size: 14px; color: #444; font-weight: 500; display: flex; align-items: center; gap: 8px; }
.garanties-list li::before { content: ''; display: none; }

/* Boîte info */
.info-box {
  background: #fff3cd; border: 1px solid #ffc107;
  border-radius: var(--r); padding: 20px 24px; margin: 24px 0;
}
.info-box h3 { font-size: 15px; font-weight: 700; color: #856404; margin-bottom: 8px; border: none; padding: 0; }
.info-box p { font-size: 14px; color: #664d03; line-height: 1.7; margin: 0; }

/* Grille aides financières */
.aides-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  margin: 20px 0 28px;
}
.aide-card {
  background: #fff; border: 2px solid var(--green-light); border-radius: var(--r-sm);
  padding: 20px; transition: border-color var(--t), box-shadow var(--t);
}
.aide-card:hover { border-color: var(--green); box-shadow: var(--shadow-sm); }
.aide-card h4 { font-size: 14px; font-weight: 700; color: var(--green); margin-bottom: 6px; }
.aide-card p { font-size: 13px; color: #555; line-height: 1.6; margin: 0; }

/* Avantages liste (pose-velux) */
.avantages-liste { display: flex; flex-direction: column; gap: 16px; margin: 20px 0 28px; }
.avantage-row {
  display: flex; align-items: flex-start; gap: 14px;
  background: #f8f9fa; border-radius: var(--r-sm); padding: 16px;
  border-left: 3px solid var(--green);
}
.avantage-row-icon { font-size: 22px; flex-shrink: 0; }
.avantage-row h4 { font-size: 14px; font-weight: 700; color: #1a1a1a; margin-bottom: 4px; }
.avantage-row p { font-size: 13px; color: #666; line-height: 1.6; margin: 0; }

/* ===================== SIDEBAR PAGES SERVICES ===================== */
.page-sidebar {
  position: sticky; top: 90px;
  display: flex; flex-direction: column; gap: 20px;
  align-self: start;
}

/* Boîte devis sidebar */
.sidebar-devis {
  background: #1a1a1a; border-radius: var(--r);
  padding: 28px; color: #fff;
}
.sidebar-devis h3 {
  font-size: 18px; font-weight: 700; color: #fff;
  margin-bottom: 8px;
}
.sidebar-devis p {
  font-size: 13px; color: rgba(255,255,255,.65);
  margin-bottom: 16px; line-height: 1.6;
}
.btn-phone-full {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 12px; margin-top: 10px;
  background: transparent; border: 1.5px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.85); border-radius: var(--r-sm);
  font-size: 14px; font-weight: 600; font-family: inherit;
  transition: all var(--t); cursor: pointer;
}
.btn-phone-full:hover { border-color: var(--green); color: var(--green); }

/* Boîte info sidebar */
.sidebar-info {
  background: #f8f9fa; border-radius: var(--r);
  padding: 22px; border: 1px solid #eee;
}
.sidebar-info h4 {
  font-size: 15px; font-weight: 700; color: #1a1a1a;
  margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 2px solid var(--green-light);
}
.sidebar-info ul { list-style: none; padding: 0; margin: 0; }
.sidebar-info ul li {
  font-size: 14px; color: #444; padding: 6px 0;
  border-bottom: 1px solid #eee; display: flex; align-items: center; gap: 8px;
}
.sidebar-info ul li:last-child { border-bottom: none; }
.sidebar-info ul li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* Boîte services sidebar */
.sidebar-services {
  background: #fff; border-radius: var(--r);
  padding: 22px; border: 1px solid #eee;
  box-shadow: var(--shadow-sm);
}
.sidebar-services h4 {
  font-size: 15px; font-weight: 700; color: #1a1a1a;
  margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 2px solid var(--green-light);
}
.sidebar-services ul { list-style: none; padding: 0; margin: 0; }
.sidebar-services ul li { margin-bottom: 4px; }
.sidebar-services ul li a {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: #555; padding: 8px 10px;
  border-radius: var(--r-sm); transition: all var(--t);
}
.sidebar-services ul li a:hover { background: var(--green-light); color: var(--green); }

/* Sidebar urgence */
.sidebar-urgence {
  background: #fff5f5; border: 2px solid rgba(229,62,62,.2);
  border-radius: var(--r); padding: 22px;
}
.sidebar-urgence h4 { font-size: 15px; font-weight: 700; color: var(--red); margin-bottom: 10px; }
.btn-urgence-sidebar {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 12px; background: var(--red); color: #fff;
  border-radius: var(--r-sm); font-size: 14px; font-weight: 700;
  transition: background var(--t); cursor: pointer;
}
.btn-urgence-sidebar:hover { background: #c53030; }
.urgence-disponible {
  text-align: center; font-size: 12px; color: #888; margin-top: 8px;
}

/* ===================== DROPDOWN MENU PAGES SECONDAIRES ===================== */
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 220px; background: #fff;
  border-radius: var(--r-sm); box-shadow: var(--shadow-lg);
  border: 1px solid var(--border); border-top: 3px solid var(--green);
  z-index: 2000; padding: 8px 0;
}
.dropdown.open .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block; padding: 10px 18px;
  font-size: 14px; color: #333; font-weight: 500;
  transition: background var(--t), color var(--t);
}
.dropdown-menu li a:hover { background: var(--green-light); color: var(--green); }

/* Responsive pages services */
@media (max-width: 1024px) {
  .page-content-grid { grid-template-columns: 1fr; }
  .page-sidebar { position: static; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .prestations-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .page-main-img { height: 240px; }
  .steps-grid { grid-template-columns: 1fr; }
  .materiaux-grid { grid-template-columns: 1fr; }
  .aides-grid { grid-template-columns: 1fr; }
  .garanties-list { grid-template-columns: 1fr; }
  .dropdown-menu { position: static; box-shadow: none; border: none; border-top: 1px solid #eee; border-radius: 0; }
}
