/* ═══════════════════════════════════════════════════════════════
   COUVREUR ROSNY-SOUS-BOIS — CSS PRINCIPAL
   ═══════════════════════════════════════════════════════════════ */

/* ─── VARIABLES & DESIGN TOKENS ─── */
:root {
  /* Theme: Midnight Mauve (Premium Professional) */
  --accent: #9B51B8;
  --accent-vif: #E1BEE7;
  --accent-dark: #6C3082;
  --primary: #1C0824;
  --radius: 0px;

  --secondary: #047857;
  --noir: #050A14;
  --noir-2: #101B2D;
  --anthracite: #101B2D;
  --anthracite-2: #1A2638;
  --anthracite-3: #243042;
  --gris: #A0AEC0;
  --blanc: #FFFFFF;
  --blanc-pur: #ffffff;
  
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, #1A365D 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 50%, var(--accent-vif) 100%);
  
  --shadow-primary: 0 10px 25px rgba(10, 25, 47, 0.2);
  --shadow-card: 0 0 20px rgba(0,0,0,0.05);

  /* Spacing */
  --space-xs: 0.4rem;
  --space-s: 0.75rem;
  --space-m: 1.25rem;
  --space-l: 2rem;
  --space-xl: 3.5rem;
}

/* ─── BASE & RESET (RGAA 10.1, 10.7) ─── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px; /* RGAA Base */
}

body {
  font-family: 'Rajdhani', 'Inter', sans-serif;
  background: var(--noir);
  color: var(--blanc);
  overflow-x: hidden;
  cursor: default;
  line-height: 1.6;
}

body.no-scroll {
  overflow: hidden;
}

/* Keyboard Focus (RGAA 10.7) */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
  filter: contrast(1.1) brightness(0.95) sepia(0.1);
}

/* ─── ACCESSIBILITY: SKIP LINK (RGAA 12.7) ─── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 10px;
  background: var(--accent);
  color: var(--noir);
  padding: 0.75rem 1.5rem;
  z-index: 9999;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius);
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 10px;
  outline: none; /* Already highlighted by background change */
}

/* ─── NAV ─── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 70px;
  background: rgba(5, 10, 20, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  transition: box-shadow 0.3s ease;
}

header.scrolled nav {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-icon {
  width: clamp(32px, 10vw, 44px);
  height: clamp(32px, 10vw, 44px);
  background: var(--gradient-accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(245, 184, 0, 0.3);
  transition: transform 0.3s ease;
}

.logo-icon:hover {
  transform: scale(1.05);
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--blanc-pur);
  text-decoration: none;
  transition: all 0.2s ease;
  opacity: 0.9;
}

.nav-links a:hover {
  color: var(--accent);
}

/* ─── Lien Google Maps dans la nav ─── */
.nav-gmaps {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(245, 184, 0, 0.15);
  border: 1.5px solid rgba(245, 184, 0, 0.5);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  color: #FFD700 !important;
  font-size: 0.82rem !important;
  font-weight: 800;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.nav-gmaps:hover {
  background: rgba(245, 184, 0, 0.2) !important;
  border-color: rgba(245, 184, 0, 0.6) !important;
  color: #F5B800 !important;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-call {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-accent);
  color: var(--blanc-pur);
  border: none;
  border-radius: 6px;
  padding: 0.55rem 1.2rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-accent);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(245, 184, 0, 0.7);
}

/* ─── HAMBURGER MENU — Premium Style ─── */
.menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  padding: 0.8rem;
  z-index: 201;
  border-radius: var(--radius);
  width: 44px;
  height: 44px;
  transition: all 0.3s ease;
  position: relative;
}

.menu-toggle:hover {
  background: rgba(245, 184, 0, 0.1);
  border-color: rgba(245, 184, 0, 0.3);
}

.hamburger {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--blanc-pur);
  border-radius: var(--radius);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  position: relative;
  margin: 0 auto;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--blanc-pur);
  border-radius: var(--radius);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  left: 0;
}

.hamburger::before {
  top: -6px;
}

.hamburger::after {
  top: 6px;
}

/* Menu Ouvert — Animation */
.menu-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .hamburger::before {
  transform: rotate(45deg);
  top: 0;
  background: var(--accent);
}

.menu-toggle[aria-expanded="true"] .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
  background: var(--accent);
}

/* ─── MOBILE NAV — Premium Overlay ─── */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(25px) saturate(180%);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
  display: flex;
  /* Conserve flex for centering but use visibility/opacity for animation */
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-nav a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 4px;
  color: var(--blanc-pur);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.mobile-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.mobile-nav a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.mobile-nav a:hover::after {
  width: 30px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav-logo {
  margin-bottom: 2rem;
}

.logo-icon-large {
  width: 60px;
  height: 60px;
  margin: 0 auto;
}

.logo-icon-large svg {
  width: 36px;
  height: 36px;
}

.logo-icon-large svg path {
  fill: var(--accent);
}

.mobile-nav-btn-call {
  margin-top: 1.5rem;
  padding: 1rem 2.5rem !important;
}

.mobile-nav a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 3px;
  color: var(--blanc-pur);
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-nav a:hover {
  color: var(--accent-vif);
}

/* ─── MAIN CONTENT ─── */
main {
  padding-top: 70px;
}

/* ─── SECTION GLOBAL STYLES (RGAA 10.1) ─── */
section {
  padding: 100px 2.5rem;
  position: relative;
  overflow: hidden;
}

.section-header {
  max-width: 800px;
  margin-bottom: 4rem;
  border-left: 4px solid var(--accent);
  padding-left: 1.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: 3px;
  line-height: 1;
}

/* Background Textures for Visual Differentiation (Regulated) */
section:nth-child(even) {
  background: var(--noir-2);
}

section:nth-child(odd) {
  background: var(--primary);
}

/* ─── HERO ─── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 2.5rem 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--noir);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.9;
  pointer-events: none;
  filter: brightness(0.88) contrast(1.05);
}

@media (max-width: 991px) {
  .hero-video {
    width: 100%;
    opacity: 0.45;
    filter: brightness(0.7);
  }
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      var(--primary) 45%,
      rgba(10, 25, 47, 0.6) 55%,
      transparent 75%),
    linear-gradient(to bottom, transparent 75%, var(--primary) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.hero-accent::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 184, 0, 0.15);
  border: 1px solid rgba(245, 184, 0, 0.4);
  border-radius: var(--radius);
  padding: 0.35rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-vif);
  margin-bottom: 1.5rem;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 1.2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: 3px;
  color: var(--blanc-pur);
  margin-bottom: 0.3rem;
}

.hero-title .saumon {
  color: var(--accent);
}

.hero-location {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  color: var(--gris);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gradient-accent);
  color: var(--blanc-pur);
  padding: 1rem 2rem;
  border-radius: 6px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-decoration: none;
  box-shadow: var(--shadow-accent);
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(245, 184, 0, 0.6);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1.5px solid rgba(245, 245, 245, 0.3);
  color: var(--blanc);
  padding: 1rem 2rem;
  border-radius: 6px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  background: transparent;
  cursor: pointer;
}

.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(245, 184, 0, 0.1);
}

.btn {
  cursor: pointer;
  text-decoration: none;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  color: var(--accent-vif);
  line-height: 1;
}

.stat-stars {
  letter-spacing: 2px;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gris);
}

/* ─── REVIEWS BADGE (hero) ─── */
.reviews-badge {
  position: absolute;
  top: 90px;
  right: 2rem;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(8, 8, 8, 0.85);
  border: 1px solid rgba(245, 184, 0, 0.4);
  border-radius: var(--radius);
  padding: 0.5rem 0.9rem;
  backdrop-filter: blur(8px);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
}

a.reviews-badge:hover {
  border-color: rgba(245, 184, 0, 0.85);
  background: rgba(8, 8, 8, 0.95);
  transform: translateY(-2px);
}

.badge-cta {
  font-size: 0.72rem;
  font-weight: 700;
  color: #F5B800;
  letter-spacing: 0.5px;
  margin-left: 0.15rem;
  opacity: 0.9;
}

.badge-stars {
  font-size: 0.85rem;
  color: #F5B800;
  letter-spacing: 1px;
}

.badge-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.badge-score {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  color: var(--blanc-pur);
}

.badge-count {
  font-size: 0.72rem;
  color: var(--gris);
}

/* ─── TICKER — bandeau infini sans fond jaune ─── */
.ticker-wrap {
  overflow: hidden;
  padding: 0.65rem 0;
  position: relative;
  z-index: 1;
  background: rgba(8, 8, 8, 0.95);
  border-top: 1px solid rgba(245, 184, 0, 0.15);
  border-bottom: 1px solid rgba(245, 184, 0, 0.15);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-infinite 35s linear infinite;
}

.ticker-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.ticker-item {
  flex-shrink: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 3px;
  padding: 0 1.5rem;
  color: rgba(245, 245, 245, 0.8);
  white-space: nowrap;
}

.ticker-sep {
  flex-shrink: 0;
  color: #F5B800;
  font-size: 0.5rem;
  opacity: 0.7;
}

@keyframes ticker-infinite {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ─── GRID (services, matériaux, garantie) ─── */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── CARD ─── */
.card {
  background: var(--noir);
  border: 1px solid var(--anthracite-3);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: inherit;
}

.card:hover::before {
  opacity: 0.05;
}

.card:hover {
  border-color: rgba(245, 184, 0, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  display: block;
  color: var(--accent-vif);
}

.card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 2px;
  color: var(--blanc-pur);
  margin-bottom: 0.6rem;
  position: relative;
}

.card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--gris);
  position: relative;
}

.service-badge {
  display: inline-block;
  background: rgba(245, 184, 0, 0.2);
  border: 1px solid rgba(245, 184, 0, 0.4);
  color: var(--accent-vif);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  position: relative;
}

/* ─── SERVICES SECTION ─── */
#services {
  background: var(--anthracite);
}

/* ─── RÉALISATIONS ─── */
#realisations {
  background: var(--blanc);
}

.real-card {
  background: var(--anthracite);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(245, 184, 0, 0.1);
}

.real-card video {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* ─── Conteneur image réalisation ─── */
.real-visual {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  background: var(--anthracite-2);
}

.real-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.real-card:hover .real-visual img {
  transform: scale(1.05);
}

/* ─── Placeholder pour vidéos manquantes (conservé en fallback) ─── */
.real-visual-placeholder {
  width: 100%;
  height: 200px;
  background: var(--anthracite-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 3rem;
  border-bottom: 1px solid rgba(245, 184, 0, 0.15);
}

.rvp-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: rgba(245, 245, 245, 0.4);
  text-transform: uppercase;
}

.real-info {
  padding: 1.25rem 1.5rem;
}

.real-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 1.5px;
  color: var(--blanc-pur);
  margin-bottom: 0.4rem;
}

.real-info p {
  font-size: 0.85rem;
  color: var(--gris);
  line-height: 1.5;
}

/* ─── MATÉRIAUX ─── */
#materiaux {
  background: var(--anthracite);
}

/* ─── ZONES D'INTERVENTION ─── */
#zones {
  background: var(--anthracite);
}

.zones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.zone-card {
  background: var(--anthracite);
  border: 1px solid rgba(245, 184, 0, 0.1);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: border-color 0.3s, transform 0.3s;
}

.zone-card:hover {
  border-color: rgba(245, 184, 0, 0.35);
  transform: translateY(-3px);
}

.zone-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.zone-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--blanc-pur);
  margin-bottom: 0.5rem;
}

.zone-card p {
  font-size: 0.85rem;
  color: rgba(245, 245, 245, 0.5);
  line-height: 1.5;
}

/* ─── GARANTIE ─── */
#garantie {
  background: var(--anthracite);
}

/* ─── CONTACT ─── */
#contact {
  background: var(--noir);
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.contact-block {
  background: var(--anthracite);
  border: 1px solid var(--anthracite-3);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.contact-block h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 1.5px;
  color: var(--accent-vif);
  margin-bottom: 0.75rem;
}

.contact-block a {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-vif);
  text-decoration: none;
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}

.contact-block a:hover {
  color: var(--accent);
}

.contact-block p {
  font-size: 0.85rem;
  color: var(--gris);
}

/* ─── FOOTER ─── */
footer {
  background: var(--primary);
  color: #fff;
  padding: 60px 2.5rem 30px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto 2.5rem;
}

.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-vif);
  margin-bottom: 1rem;
}

.footer-col p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(245, 245, 245, 0.5);
}

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

.footer-links a {
  font-size: 0.88rem;
  color: rgba(245, 245, 245, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(245, 245, 245, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── HELP POPUP ─── */
#help-popup {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: min(360px, calc(100vw - 48px));
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem 1.25rem;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.25);
  z-index: 999;
  display: none;
  flex-direction: column;
  gap: 0.5rem;
}

#help-popup.open {
  display: flex;
}



















/* ─── OPERATOR WIDGET (chat bubble) ─── */


.operator-widget 



@keyframes chatBubbleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.operator-widget:hover {
  transform: scale(1.05);
}

.operator-widget:hover 

.operator-widget svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

/* ─── CHAT HEADER ─── */


.cw-avatar {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}











/* ─── CHAT STEPS BAR ─── */






/* ─── CHAT INPUT ─── */




#chat-input {
  flex: 1;
  padding: 0.65rem 1rem;
  border: 1.5px solid #e0e0e0;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

#chat-input:focus {
  border-color: var(--accent);
}







/* ─── SCROLL TOP ─── */
#scrollTop {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: rgba(245, 184, 0, 0.85);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 996;
  font-size: 1rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
  opacity: 0;
  pointer-events: none;
}

#scrollTop.visible {
  opacity: 1;
  pointer-events: auto;
}

#scrollTop:hover {
  background: var(--accent-vif);
  transform: translateY(-2px);
}

/* ─── SCREEN READER ONLY ─── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  nav {
    height: 75px;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "brand toggle call";
    gap: 1.5rem;
    align-items: center;
  }

  .nav-logo {
    grid-area: brand;
  }

  .nav-actions {
    grid-area: call;
    justify-self: end;
  }

  .menu-toggle {
    grid-area: toggle;
    display: block;
    justify-self: end;
  }

  .nav-links {
    display: none;
  }

  .btn-call {
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }

  .btn-call .btn-text {
    display: none;
  }

  .btn-call::after {
    content: 'Appeler';
    margin-left: 0.3rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
  }

  section {
    padding: 80px 1.25rem;
  }

  #hero {
    padding: 110px 1.25rem 60px;
  }

  .hero-stats {
    gap: 1.5rem;
    justify-content: center;
  }

  .stat-number {
    font-size: 2rem;
  }

  .reviews-badge {
    top: auto;
    bottom: calc(85px + env(safe-area-inset-bottom, 0px));
    right: 1.25rem;
    left: 1.25rem;
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .availability-badge {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

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

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

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


/* ═══════════════════════════════════════════════════════════════
   CONVERSION BOOST — Couvreur Rosny-sous-Bois
   ═══════════════════════════════════════════════════════════════ */


/* ───────────────────────────────────────────────────────────────
   1. BADGE DISPONIBILITÉ DYNAMIQUE (dans le header)
   ─────────────────────────────────────────────────────────────── */
.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  letter-spacing: 0.01em;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.availability-badge.online {
  background: rgba(46, 200, 102, 0.2);
  color: #4ade80;
  border: 1.5px solid rgba(46, 200, 102, 0.4);
}

.availability-badge.offline {
  background: rgba(245, 184, 0, 0.2);
  color: #fde047;
  border: 1.5px solid rgba(245, 184, 0, 0.5);
}

.availability-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2s infinite;
}

.availability-badge.online .dot {
  background: #2ea043;
}

.availability-badge.offline .dot {
  background: #F5B800;
}

@media (max-width: 1100px) {
  .availability-badge, .nav-gmaps {
    display: none !important;
  }
}



/* ───────────────────────────────────────────────────────────────
   2. HERO TRUST BAR (sous les stats)
   ─────────────────────────────────────────────────────────────── */
.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--anthracite);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(245, 245, 245, 0.7);
}

.trust-item .tb-icon {
  font-size: 1.15rem;
}

.trust-item strong {
  color: var(--accent-vif);
  font-weight: 700;
}

@media (max-width: 640px) {
  .hero-trust-bar {
    gap: 0.7rem 1rem;
    padding: 0.8rem 1rem;
  }

  .trust-item {
    font-size: 0.76rem;
  }
}


/* ───────────────────────────────────────────────────────────────
   3. STICKY CALL BAR MOBILE
   ─────────────────────────────────────────────────────────────── */
.sticky-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 997;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #1a1a1a;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
}

.sticky-call-bar a,
.sticky-call-bar button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 0.5rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.sticky-call-bar .stk-call {
  background: var(--accent);
  color: #1a1a1a;
}

.sticky-call-bar .stk-call:hover {
  background: var(--accent-dark);
}

.sticky-call-bar .stk-wa {
  background: #25D366;
  color: #fff;
}

.sticky-call-bar .stk-wa:hover {
  background: #1ca851;
}

.sticky-call-bar .stk-email {
  background: #1A365D;
  color: #fff;
}

.sticky-call-bar .stk-icon {
  font-size: 1.1rem;
}

@media (max-width: 900px) {
  .sticky-call-bar {
    display: grid;
  }

  body.has-sticky-bar {
    padding-bottom: 62px;
  }
}


/* ───────────────────────────────────────────────────────────────
   4. SECTION AVIS GOOGLE
   ─────────────────────────────────────────────────────────────── */
.reviews-section {
  padding: 4rem 1.5rem;
  background: #fafaf8;
}

.reviews-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.reviews-header .rh-stars {
  font-size: 1.5rem;
  color: #F5B800;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.reviews-header .rh-score {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1;
}

.reviews-header .rh-label {
  font-size: 0.95rem;
  color: #666;
  margin-top: 0.5rem;
}

.reviews-header .rh-google {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.8rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #4285F4;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
  border: 1px solid #f0f0f0;
  transition: transform 0.2s, box-shadow 0.2s;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

.review-card .rc-stars {
  color: #F5B800;
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 0.7rem;
}

.review-card .rc-text {
  font-size: 0.92rem;
  line-height: 1.55;
  color: #333;
  margin-bottom: 1rem;
  font-style: italic;
}

.review-card .rc-author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding-top: 0.8rem;
  border-top: 1px solid #f0f0f0;
}

.review-card .rc-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.review-card .rc-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: #1a1a1a;
}

.review-card .rc-city {
  font-size: 0.78rem;
  color: #888;
}


/* ───────────────────────────────────────────────────────────────
   5. EXIT INTENT POPUP
   ─────────────────────────────────────────────────────────────── */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .7);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.exit-popup-overlay.visible {
  display: flex;
}

.exit-popup {
  background: #fff;
  border-radius: var(--radius);
  max-width: 460px;
  width: 100%;
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  position: relative;
  animation: popIn 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .4);
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.exit-popup-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 32px;
  height: 32px;
  background: #f3f3f3;
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  color: #666;
}

.exit-popup .ep-badge {
  display: inline-block;
  background: var(--gradient-accent);
  color: #1a1a1a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.exit-popup h3 {
  font-size: 1.65rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.exit-popup h3 span {
  color: var(--accent);
}

.exit-popup .ep-sub {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.exit-popup .ep-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.exit-popup .ep-form input {
  flex: 1;
  padding: 0.85rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.exit-popup .ep-form input:focus {
  border-color: var(--accent);
}

.exit-popup .ep-form input.error {
  border-color: #F5B800;
}

.exit-popup .ep-form button {
  background: #1a1a1a;
  color: #fff;
  border: none;
  padding: 0 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  white-space: nowrap;
}

.exit-popup .ep-form button:hover {
  background: var(--accent);
  color: #1a1a1a;
}

.exit-popup .ep-or {
  margin: 1.2rem 0 0.8rem;
  font-size: 0.78rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.exit-popup .ep-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #1a1a1a;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.2s;
}

.exit-popup .ep-call-btn:hover {
  background: var(--accent-dark);
}

.exit-popup .ep-tiny {
  margin-top: 1rem;
  font-size: 0.74rem;
  color: #888;
  line-height: 1.4;
}

.exit-popup.submitted .ep-success {
  display: block;
}

.ep-success-title {
  color: #2ea043;
}

.exit-popup .ep-success .ep-check {
  width: 64px;
  height: 64px;
  background: #2ea043;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
}


/* ───────────────────────────────────────────────────────────────
   6. URGENCE MODE
   ─────────────────────────────────────────────────────────────── */
.urgency-override {
  display: none;
  background: var(--gradient-accent);
  color: #1a1a1a;
  padding: 1.25rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  text-align: center;
}

.urgency-override.visible {
  display: block;
  animation: pulseOnce 0.6s ease;
}

@keyframes pulseOnce {
  0% {
    transform: scale(0.92);
    opacity: 0;
  }

  60% {
    transform: scale(1.03);
    opacity: 1;
  }

  100% {
    transform: scale(1);
  }
}

.urgency-override h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.urgency-override p {
  font-size: 0.85rem;
  margin-bottom: 0.9rem;
  opacity: 0.95;
}

.urgency-override a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: var(--accent);
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .2);
  transition: transform 0.15s;
}

.urgency-override a:hover {
  transform: scale(1.04);
}


/* ─── FAQ SECTION (RGAA 10.1, 10.7) ─── */
.faq-section {
  padding: 6rem 1.5rem;
  background: var(--noir);
  position: relative;
  border-top: 1px solid rgba(245, 184, 0, 0.1);
}

.faq-list {
  max-width: 780px;
  margin: 2rem auto 0;
}

.faq-header {
  text-align: center;
  margin-bottom: 2rem;
}

.faq-header .section-tag {
  color: #F5B800;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.faq-header .section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0.5rem 0;
}

.faq-item {
  border-bottom: 1px solid var(--anthracite-3);
  padding: 1rem 0;
}

.faq-item summary {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blanc); /* High Contrast */
  cursor: pointer;
  padding: 0.8rem 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  letter-spacing: 0.5px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 300;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item .faq-answer {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gris);
  padding: 0.5rem 0 1.5rem;
}


/* ───────────────────────────────────────────────────────────────
   8. SCARCITY BANNER
   ─────────────────────────────────────────────────────────────── */
.scarcity-banner {
  background: linear-gradient(90deg, rgba(245, 184, 0, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(245, 184, 0, 0.35);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 700px;
  margin: 1.5rem auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
}

.scarcity-banner .sb-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.scarcity-banner .sb-content {
  flex: 1;
  font-size: 0.88rem;
  color: rgba(245, 245, 245, 0.7);
  line-height: 1.4;
}

.sb-content-sub {
  margin-top: 2px;
}

.scarcity-banner .sb-content strong {
  color: var(--blanc-pur, #F5F5F5);
  font-weight: 700;
}

.scarcity-banner .sb-bar {
  height: 5px;
  background: rgba(245, 184, 0, 0.2);
  border-radius: var(--radius);
  margin-top: 0.45rem;
  overflow: hidden;
}

/* ─── CHAT WINDOW OVERRIDES ─── */








@media (max-width: 500px) {
  
  
  .cw-bubble, 
  
}

/* ─── SHARED UTILS & INTERACTIVE FIXES ─── */
.card:hover,
.zone-card:hover,
.real-card:hover {
  border-color: rgba(245, 184, 0, 0.5);
}

#scrollTop {
  background: var(--accent);
  color: var(--noir);
  bottom: 90px; /* Elevated to avoid chat widget overlap */
  right: 25px;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 999;
}

#scrollTop:hover {
  background: var(--accent-vif);
  transform: translateY(-5px);
}

/* ─── HELP POPUP PRE-QUALIF ─── */
.help-prequal-block {
  margin: 0.85rem 0;
  text-align: left;
}

.help-prequal-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.help-prequal-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
















.scarcity-banner .sb-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #F5B800, #D99E00);
  border-radius: var(--radius);
  transition: width 0.5s ease;
}

/* ─── BANDEAU APPEL MOBILE (CALL-FIXED) ─── */
.call-fixed-wrap {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 998;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #1a1a1a;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
  font-weight: 700;
}

.call-fixed-wrap.visible {
  display: flex;
}

.call-fixed-msg {
  font-size: 0.95rem;
  line-height: 1.2;
}

.call-fixed-wrap .btn-call {
  background: #1a1a1a;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  font-size: 1rem;
  text-decoration: none;
}


/* ─── GLOBAL RESPONSIVE FIXES ─── */
@media (max-width: 768px) {
  nav {
    padding: 0 1rem;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  section {
    padding: 60px 1.5rem;
  }

  /* Chat label responsiveness */
  @media (max-width: 500px) {
    
  }

  .hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem) !important;
  }

  /* Help Popup Mobile Fix */
  #help-popup {
    bottom: 20px;
    right: 15px;
    left: 15px;
    width: auto;
    padding: 1.25rem;
    max-height: 90vh;
    overflow-y: auto;
  }

  .help-prequal-chips {
    gap: 0.25rem;
  }

  

  
}

/* ─── CHAT MESSAGES (REPLACING JS INLINE STYLES) ─── */











/* ─── LAYOUT UTILITIES (CLEANUP) ─── */
.u-btn-lg { padding: 1rem 2rem !important; font-size: 1.4rem !important; }
.u-accent-outline { border: 2px solid var(--accent) !important; color: var(--accent) !important; border-radius: 6px; font-weight: 700; text-decoration: none; display: inline-block; }
.u-grid-1 { grid-template-columns: 1fr !important; }
.u-text-center { text-align: center !important; }
.u-mt-1 { margin-top: 1rem !important; }
.u-mb-1 { margin-bottom: 1rem !important; }
.u-mb-1-5 { margin-bottom: 1.5rem !important; }
.u-w-100 { width: 100% !important; }
.u-flex-center { display: flex !important; justify-content: center !important; align-items: center !important; gap: 1rem !important; }
.u-bebas { font-family: 'Bebas Neue', sans-serif !important; }
.u-font-lg { font-size: 2rem !important; font-family: 'Bebas Neue', sans-serif !important; }
.u-font-sm { font-size: 0.9rem !important; }
.u-opacity-8 { opacity: 0.8 !important; }


/* ─── GMB TICKER ─── */
.gmb-ticker-fixed {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    background: #ffffff;
    border-radius: var(--radius);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    gap: 0.8rem;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}
.gmb-ticker-fixed:hover {
    transform: translateY(-3px);
}
.gmb-ticker-fixed a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #1f2937;
    font-weight: 700;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}
.gmb-stars {
    color: #fbbc05;
    font-size: 1.1rem;
    letter-spacing: 1px;
}
.gmb-logo {
    width: 20px;
    height: 20px;
}
@media (max-width: 768px) {
    .gmb-ticker-fixed {
        bottom: 80px; /* Above standard mobile elements */
        left: 10px;
        padding: 0.4rem 0.8rem;
    }
    .gmb-ticker-fixed a {
        font-size: 0.8rem;
    }
}

/* ─── HERO SPLIT GRID ─── */
.intro-row {
  position: relative;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.intro-text-column {
  flex: 1 1 600px;
  max-width: 650px;
}

.intro-lead-form {
  flex: 1 1 350px;
  background: var(--anthracite-2);
  padding: 2.2rem 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--anthracite-3);
  border-top: 4px solid var(--accent);
  box-shadow: var(--shadow-primary);
  max-width: 420px;
  width: 100%;
}

.intro-lead-form h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  color: var(--blanc-pur);
  letter-spacing: 1.5px;
  text-align: center;
}

.intro-lead-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.intro-lead-form input,
.intro-lead-form textarea {
  padding: 0.9rem;
  background: var(--noir);
  color: var(--blanc-pur);
  border: 1px solid var(--anthracite-3);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  width: 100%;
  font-size: 0.9rem;
  transition: border-color 0.2s;
}

.intro-lead-form input:focus,
.intro-lead-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.intro-lead-form button {
  width: 100%;
  justify-content: center;
  border: none;
  cursor: pointer;
  padding: 1rem;
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

/* ─── REALISATIONS V2 (BEFORE/AFTER SIDE-BY-SIDE) ─── */
.real-layout-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 2.5rem auto;
  padding: 0 1.5rem;
}

.real-pair {
  background: var(--anthracite-2);
  border: 1px solid var(--anthracite-3);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.real-pair-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 1.5px;
  color: var(--accent-vif);
  margin: 0;
  text-align: center;
}

.real-pair-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.real-img-box {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 220px; /* Restreint la hauteur pour ne pas être trop haut */
  border: 2px solid var(--anthracite-3);
  box-shadow: var(--shadow-card);
}

.real-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.real-img-box:hover img {
  transform: scale(1.05);
}

/* Badges BEFORE/AFTER on top of images */
.badge-before,
.badge-after {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: bold;
  font-family: 'Inter', sans-serif;
  z-index: 2;
  letter-spacing: 1px;
}
.badge-before {
  background: #dc2626; /* red */
}
.badge-after {
  background: var(--secondary); /* green */
}

/* ─── RESPONSIVE OVERRIDES ─── */
@media (max-width: 900px) {
  .real-layout-v2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .intro-row {
    flex-direction: column;
    align-items: stretch;
  }
  .intro-text-column {
    max-width: 100%;
  }
  .intro-lead-form {
    max-width: 100%;
  }
}

@media (max-width: 500px) {
  .real-pair-images {
    grid-template-columns: 1fr;
  }
  .real-img-box {
    height: 180px;
  }
}


/* ─── RESPONSIVE NAV FIX (auto-applied) ─── */
@media (max-width: 991px) {
    .nav-links { display: none !important; }
    .nav-phone-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
        white-space: nowrap;
        border-radius: 8px;
    }
    .nav-phone-btn .phone-icon { display: none; }
    .nav-phone-btn .phone-text { display: inline; }
}
@media (max-width: 768px) {
    
    .operator-widget { display: none !important; }
    .fixed-action-stack { gap: 1.5rem !important; }
}

/* ==========================================================================
   FIX GMB TICKER DISPLAY (UNIFIED STYLE - OVERRIDES DEFAULT BLUE LINKS)
   ========================================================================== */
.gmb-ticker-fixed {
    position: fixed !important;
    bottom: 20px !important;
    left: 20px !important;
    z-index: 99999 !important;
    background: #ffffff !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
    display: flex !important;
    align-items: center !important;
    padding: 8px 16px !important;
    gap: 8px !important;
    border: 1px solid #e2e8f0 !important;
    transition: transform 0.3s ease !important;
    pointer-events: auto !important;
}
.gmb-ticker-fixed:hover {
    transform: translateY(-3px) !important;
}
.gmb-ticker-fixed a {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    text-decoration: none !important;
    color: #1f2937 !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    font-family: 'Inter', sans-serif !important;
}
.gmb-stars {
    color: #fbbc05 !important;
    font-size: 1rem !important;
    letter-spacing: 1px !important;
    text-decoration: none !important;
    display: inline-block !important;
}
.gmb-logo {
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0 !important;
}
@media (max-width: 900px) {
    .gmb-ticker-fixed {
        bottom: 80px !important; /* Above standard mobile elements */
        left: 10px !important;
        padding: 6px 12px !important;
    }
    .gmb-ticker-fixed a {
        font-size: 0.78rem !important;
    }
}
