:root {
  /* Theme: Urban Brick (Warm Tradition) */
  --vert: #D35400; 
  --vert-vif: #E67E22;
  --vert-dark: #A04000;
  --vert-bg: #FDF2E9;
  
  --blanc: #ffffff;
  --blanc-2: #f9fafb;
  --gris-clair: #f3f4f6;
  --gris: #6b7280;
  --gris-border: #e5e7eb;
  --noir: #1f2937;
  --noir-2: #111827;
  --gradient-vert: linear-gradient(135deg, var(--vert-dark) 0%, var(--vert) 50%, var(--vert-vif) 100%);
  --shadow-vert: 0 4px 14px rgba(211, 84, 0, 0.3);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
  --radius: 10px;
}

/* Image Authentication Filter */
img, video {
  filter: brightness(0.95) saturate(1.1) sepia(0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--blanc);
  color: var(--noir);
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 70px;
  background: var(--blanc);
  border-bottom: 1px solid var(--gris-border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

@media(max-width:900px) {
  nav {
    height: auto;
    padding: 0.8rem 1rem;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: "brand call" "menu menu";
    gap: 0.6rem;
  }

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

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

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

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

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

.nav-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-vert);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-vert);
}

.nav-logo .logo-icon svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.nav-logo span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--noir);
}

.nav-logo span em {
  color: var(--vert);
  font-style: normal;
}

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

.nav-links a {
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gris);
  text-decoration: none;
  transition: color 0.2s;
}

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

.btn-call {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-vert);
  color: #fff;
  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-vert);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 179, 66, 0.4);
}

.btn-call .pulse {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 1.4s infinite;
}

@keyframes pulse {

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

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

/* ─── HERO ─── */
#hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 100px 2.5rem 60px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(241, 248, 233, 0.9) 0%, rgba(255, 255, 255, 0.85) 50%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 6s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide.active img {
  transform: scale(1.15);
}

@media(max-width:991px) {
  .hero-slide {
    width: 100%;
  }
  .hero-slide img {
    opacity: 0.5;
  }
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(to right, var(--blanc) 30%, rgba(255, 255, 255, 0.5) 45%, transparent 65%),
    linear-gradient(to bottom, transparent 80%, var(--blanc) 100%);
}

.hero-accent {
  display: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--vert-bg);
  border: 1px solid rgba(124, 179, 66, 0.3);
  border-radius: 30px;
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--vert-dark);
  margin-bottom: 1.5rem;
}

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

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1;
  letter-spacing: 2px;
  color: var(--noir);
  margin-bottom: 0.5rem;
}

.hero-title .vert {
  color: var(--vert-vif);
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--gris);
  line-height: 1.7;
  margin: 1rem 0 2rem;
  max-width: 500px;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gradient-vert);
  color: #fff;
  padding: 0.9rem 1.8rem;
  border-radius: 6px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 2px;
  text-decoration: none;
  box-shadow: var(--shadow-vert);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(124, 179, 66, 0.45);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 2px solid var(--gris-border);
  color: var(--noir);
  padding: 0.9rem 1.8rem;
  border-radius: 6px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline:hover {
  border-color: var(--vert);
  color: var(--vert);
  background: var(--vert-bg);
}

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

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

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

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

/* ─── TICKER ─── */
.ticker-wrap {
  background: var(--vert);
  overflow: hidden;
  padding: 0.7rem 0;
}

.ticker {
  display: flex;
  gap: 0;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  flex-shrink: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 3px;
  padding: 0 2.5rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ticker-item::after {
  content: '⬥';
  color: rgba(255, 255, 255, 0.5);
}

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

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

/* ─── SECTIONS ─── */
section {
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--vert);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  letter-spacing: 2px;
  line-height: 1;
  color: var(--noir);
}

.section-line {
  width: 50px;
  height: 3px;
  background: var(--gradient-vert);
  margin: 0.8rem auto 0;
  border-radius: 2px;
}

/* ─── SERVICES ─── */
#services {
  padding: 80px 2.5rem;
  background: var(--blanc-2);
}

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

.service-card {
  background: var(--blanc);
  border: 1px solid var(--gris-border);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition: all 0.3s;
  position: relative;
}

.service-card:hover {
  border-color: var(--vert);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.service-card .icon {
  width: 50px;
  height: 50px;
  background: var(--vert-bg);
  border: 1.5px solid rgba(124, 179, 66, 0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  transition: all 0.3s;
}

.service-card:hover .icon {
  background: var(--vert);
  border-color: var(--vert);
}

.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 1.5px;
  color: var(--noir);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--gris);
}

.service-badge {
  display: inline-block;
  background: var(--vert-bg);
  border: 1px solid rgba(124, 179, 66, 0.3);
  color: var(--vert-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  margin-top: 0.8rem;
}

/* ─── RÉALISATIONS ─── */
#realisations {
  padding: 80px 2.5rem;
  background: var(--blanc);
}

.real-layout {
  max-width: 1100px;
  margin: 2.5rem auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  padding: 0 1.5rem;
}

.real-divider {
  font-size: 3rem;
  color: var(--vert);
  font-family: 'Bebas Neue', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border: 1px solid #e2e8f0;
  z-index: 2;
}

.badge-before,
.badge-after {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 1.5px;
  color: #fff;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.badge-before {
  background: #c62828;
}

.badge-after {
  background: #2e7d32;
}

@media(max-width:768px) {
  .real-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .real-divider {
    transform: rotate(90deg);
    margin: 0 auto;
  }
  .real-card {
    max-width: 450px;
    margin: 0 auto;
    width: 100%;
  }
}

.real-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--gris-clair);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 4px solid #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.real-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.real-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.18);
}

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

.real-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.real-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--vert-vif);
  margin-bottom: 0.3rem;
}

.real-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: #fff;
}

.real-info {
  padding: 1rem 0;
}

.real-info h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: 2px;
  line-height: 1.1;
  color: var(--noir);
  margin-bottom: 1rem;
}

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

.real-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.rf-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--noir);
}

.rf-check {
  width: 22px;
  height: 22px;
  background: var(--vert-bg);
  border: 1.5px solid var(--vert);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--vert);
  flex-shrink: 0;
}

/* ─── MATÉRIAUX ─── */
#materiaux {
  padding: 80px 2.5rem;
  background: var(--blanc-2);
  overflow: hidden;
}

.mat-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.mat-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

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

.mat-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(85, 139, 47, 0.15) 0%, transparent 60%);
  border-radius: var(--radius);
}

.mat-img .mat-badge {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  background: var(--vert-dark);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  z-index: 2;
}

.mat-badge span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: #fff;
  display: block;
  line-height: 1;
}

.mat-badge p {
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.15rem;
}

.mat-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  letter-spacing: 2px;
  line-height: 1.1;
  color: var(--noir);
  margin-bottom: 1rem;
}

.mat-content h2 .vert {
  color: var(--vert-vif);
}

.mat-content p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--gris);
  margin-bottom: 1.5rem;
}

.materials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.material {
  background: var(--blanc);
  border: 1px solid var(--gris-border);
  border-radius: 5px;
  padding: 0.35rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gris);
  transition: all 0.2s;
}

.material:hover {
  border-color: var(--vert);
  color: var(--vert);
  background: var(--vert-bg);
}

/* ─── ZONES ─── */
#zones {
  padding: 80px 2.5rem;
  background: var(--blanc);
}

.depts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.dept-card {
  background: var(--blanc);
  border: 1px solid var(--gris-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}

.dept-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient-vert);
}

.dept-card:hover {
  border-color: var(--vert);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.dept-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--vert);
  line-height: 1;
  min-width: 45px;
}

.dept-info {
  flex: 1;
}

.dept-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 1.5px;
  color: var(--noir);
}

.dept-pref {
  font-size: 0.78rem;
  color: var(--gris);
  margin-top: 0.15rem;
}

.dept-dispo {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--vert-dark);
  background: var(--vert-bg);
  border: 1px solid rgba(124, 179, 66, 0.3);
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
}

/* ─── GARANTIE ─── */
#garantie {
  padding: 80px 2.5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)), url('materiaux_toiture.webp') center/cover no-repeat;
}

.garantie-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.garantie-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--vert-bg);
  border: 1.5px solid rgba(124, 179, 66, 0.4);
  border-radius: 40px;
  padding: 0.5rem 1.2rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 2px;
  color: var(--vert-dark);
  margin-bottom: 1.5rem;
}

.garantie-inner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: 2px;
  color: var(--noir);
  line-height: 1;
  margin-bottom: 1rem;
}

.garantie-inner p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--gris);
  max-width: 550px;
  margin: 0 auto 2rem;
}

.garantie-steps {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.g-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  max-width: 150px;
}

.g-num {
  width: 46px;
  height: 46px;
  background: var(--vert-bg);
  border: 2px solid var(--vert);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: var(--vert-dark);
}

.g-step span {
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  color: var(--gris);
}

.g-arrow {
  color: var(--vert);
  font-size: 1.2rem;
  align-self: center;
  margin-top: -10px;
}

/* ─── CONTACT ─── */
#contact {
  padding: 80px 2.5rem;
  background: var(--blanc-2);
  text-align: center;
}

.contact-inner {
  max-width: 700px;
  margin: 0 auto;
}

.contact-inner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: 2px;
  color: var(--noir);
  margin-bottom: 0.6rem;
}

.big-phone {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  letter-spacing: 4px;
  background: var(--gradient-vert);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin: 0.5rem 0 1.5rem;
  text-decoration: none;
}

.contact-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: #25D366;
  color: #fff;
  padding: 0.9rem 1.8rem;
  border-radius: 6px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-wa svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.btn-wa:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* ─── FOOTER ─── */
footer {
  background: var(--noir-2);
  padding: 4rem 2.5rem 2rem;
}

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

.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--vert-vif);
  margin-bottom: 1.2rem;
}

.footer-col p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.2s;
}

.footer-col ul li a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s;
}

.footer-col ul li:hover,
.footer-col ul li a:hover {
  color: var(--vert-vif);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ─── FLOATING ─── */
.float-support {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}

.chat-bubble {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
}

.chat-avatar {
  width: 42px;
  height: 42px;
  background: var(--gradient-vert);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.chat-msg {
  background: var(--blanc);
  border: 1px solid var(--gris-border);
  border-radius: 12px 12px 12px 0;
  padding: 0.6rem 0.9rem;
  max-width: 200px;
  box-shadow: var(--shadow-card);
  animation: pop-in 0.4s 1.5s both;
}

@keyframes pop-in {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(10px);
  }

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

.chat-msg p {
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--noir);
}

.chat-msg strong {
  color: var(--vert);
}

.chat-time {
  font-size: 0.65rem;
  color: var(--gris);
  margin-top: 0.2rem;
  display: block;
  text-align: right;
}

.wa-float {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: #fff;
  padding: 0.6rem 1.2rem 0.6rem 0.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 2px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  transition: transform 0.2s;
}

.wa-float:hover {
  transform: translateY(-2px);
}

.wa-float svg {
  width: 18px;
  height: 18px;
}

#scrollTop {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: var(--vert);
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s, transform 0.2s;
  z-index: 998;
  font-size: 0.9rem;
  color: #fff;
}

#scrollTop.visible {
  opacity: 1;
}

#scrollTop:hover {
  transform: translateY(-2px);
}

/* ─── CHAT WIDGET ─── */
#chat-toggle {
  position: fixed;
  bottom: 5.2rem;
  right: 1.8rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--vert);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(124, 179, 66, 0.4);
  transition: all 0.3s;
}

#chat-toggle:hover {
  background: var(--vert-vif);
  transform: scale(1.05);
}

#chat-toggle svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

#chat-window {
  position: fixed;
  bottom: 9.5rem;
  right: 1.8rem;
  z-index: 998;
  width: 350px;
  max-height: 520px;
  background: var(--blanc);
  border: 1px solid var(--gris-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#chat-window.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}

.chat-header {
  background: var(--vert);
  color: #fff;
  padding: 1rem 1.2rem;
  border-radius: 12px 12px 0 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}

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

.chat-header-text h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 0.1rem;
}

.chat-header-text p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.chat-online-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  display: inline-block;
}

.chat-steps-bar {
  display: flex;
  border-bottom: 1px solid var(--gris-border);
  padding: 0.6rem 1.2rem;
  gap: 0.4rem;
  background: var(--blanc-2);
  flex-shrink: 0;
}

.chat-step-dot {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: var(--gris-border);
  transition: background 0.3s;
}

.chat-step-dot.active {
  background: var(--vert);
}

.chat-step-dot.done {
  background: var(--vert-vif);
}

.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  scroll-behavior: smooth;
}

.chat-body::-webkit-scrollbar {
  width: 5px;
}

.chat-body::-webkit-scrollbar-thumb {
  background: var(--gris-border);
  border-radius: 3px;
}

.cw-msg {
  max-width: 90%;
  display: flex;
  flex-direction: column;
  animation: msgIn 0.3s ease;
  margin-bottom: 0.4rem;
}

.cw-msg.bot {
  align-self: flex-start;
  align-items: flex-start;
}

.cw-msg.user {
  align-self: flex-end;
  align-items: flex-end;
}

@keyframes msgIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

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

.cw-bubble {
  display: block;
  padding: 0.8rem 1rem;
  font-size: 0.85rem;
  line-height: 1.5;
  border-radius: 12px;
  word-break: break-word;
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
}

.bot .cw-bubble {
  background: var(--gris-clair);
  color: var(--noir);
  border-bottom-left-radius: 2px;
}

.user .cw-bubble {
  background: var(--vert);
  color: #fff;
  border-bottom-right-radius: 2px;
}

.chat-suggestion {
  font-size: 0.8rem;
  color: var(--noir);
  cursor: pointer;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--gris-border);
  background: var(--blanc);
  text-align: left;
  display: block;
  border-radius: 8px;
  transition: all 0.2s;
  width: 100%;
}

.chat-suggestion:hover {
  background: var(--vert-bg);
  border-color: var(--vert);
  color: var(--vert-dark);
}

.chat-input-area {
  border-top: 1px solid var(--gris-border);
  padding: 0.7rem 1rem;
  background: var(--blanc-2);
  border-radius: 0 0 12px 12px;
  flex-shrink: 0;
}

.chat-input-row {
  display: flex;
  gap: 0.5rem;
}

.chat-input-row input {
  flex: 1;
  background: var(--blanc);
  border: 1px solid var(--gris-border);
  border-radius: 8px;
  color: var(--noir);
  padding: 0.65rem 0.9rem;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s;
}

.chat-input-row input:focus {
  border-color: var(--vert);
}

.chat-input-row button {
  background: var(--gradient-vert);
  border: none;
  border-radius: 8px;
  width: 38px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.chat-input-row button:hover {
  transform: scale(1.05);
}

.chat-input-row button svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

/* ─── COMPLETION ─── */
.cw-completion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cw-completion .recap-block {
  background: var(--vert-bg);
  border: 1px solid rgba(124, 179, 66, 0.2);
  border-radius: 8px;
  padding: 0.7rem;
  margin-top: 0.3rem;
}

.cw-completion .recap-line {
  font-size: 0.8rem;
  color: var(--gris);
  padding: 0.15rem 0;
  display: flex;
  gap: 0.4rem;
}

.cw-completion .recap-line strong {
  color: var(--vert-dark);
  min-width: 65px;
}

.cw-completion .wa-final-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  margin-top: 0.3rem;
  transition: opacity 0.2s, transform 0.2s;
}

.cw-completion .wa-final-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ─── FADE ─── */
.fade-up {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */

/* ─── AVIS ─── */
#avis {
  background: var(--blanc-2);
  padding: 5rem 2rem;
}

.avis-score {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 700px;
  margin: 0 auto 3.5rem;
  background: var(--blanc);
  border: 1px solid var(--gris-border);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow-card);
}

.avis-score-left {
  text-align: center;
  flex-shrink: 0;
}

.avis-note {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--noir-2);
}

.avis-stars {
  font-size: 1.5rem;
  color: #f59e0b;
  letter-spacing: 2px;
  margin: 0.2rem 0;
}

.avis-total {
  font-size: 0.8rem;
  color: var(--gris);
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}

.avis-score-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.avis-bar-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-family: 'Inter', sans-serif;
  color: var(--gris);
}

.avis-bar-row>span:first-child {
  width: 26px;
  flex-shrink: 0;
  text-align: right;
  color: var(--noir);
  font-weight: 500;
}

.avis-bar-row>span:last-child {
  width: 28px;
  flex-shrink: 0;
}

.avis-bar {
  flex: 1;
  height: 7px;
  background: var(--gris-clair);
  border-radius: 99px;
  overflow: hidden;
}

.avis-fill {
  height: 100%;
  background: var(--gradient-vert);
  border-radius: 99px;
}

.avis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.avis-card {
  background: var(--blanc);
  border: 1px solid var(--gris-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.avis-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.avis-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.avis-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-vert);
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avis-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--noir);
}

.avis-date {
  font-size: 0.72rem;
  color: var(--gris);
  font-family: 'Inter', sans-serif;
}

.avis-stars-sm {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-left: auto;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.avis-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #374151;
  line-height: 1.6;
  flex: 1;
}

.avis-service {
  display: inline-block;
  background: var(--vert-bg);
  color: var(--vert-dark);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  padding: 0.2rem 0.7rem;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
}

.avis-cta {
  text-align: center;
  margin-top: 3rem;
}

.stat-stars {
  color: #f59e0b !important;
  font-size: 1.1rem !important;
  letter-spacing: 2px;
  font-family: inherit !important;
}

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

  .avis-score {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

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

  .avis-score {
    padding: 1.5rem;
  }
}

@media(max-width:900px) {
  .nav-links {
    grid-area: menu;
    display: flex;
    width: 100vw;
    margin-left: -1rem;
    padding: 0.5rem 1rem;
    overflow-x: auto;
    gap: 1.5rem;
    scrollbar-width: none;
    border-top: 1px solid var(--gris-border);
    background: var(--blanc-2);
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links li {
    flex-shrink: 0;
  }

  .nav-links a {
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .real-layout,
  .mat-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mat-img {
    display: none;
  }
}

@media(max-width:600px) {
  .hero-stats {
    gap: 1.5rem;
  }

  .hero-ctas {
    flex-direction: column;
  }
}

/* ─── GLOBAL RESPONSIVE FIXES ─── */
@media (max-width: 768px) {
  nav { padding: 0.8rem 1rem !important; }
  .nav-links { display: none; }
  
  section { padding: 60px 1.5rem !important; }
  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem) !important; }
  
  /* Chat Window Mobile Fix */
  #chat-window {
    width: 100% !important;
    height: 100% !important;
    bottom: 0 !important;
    right: 0 !important;
    border-radius: 0 !important;
  }
}

/* ═══════════ GOOGLE MAPS FIXED WIDGET ═══════════ */
.gmaps-fixed-widget {
  position: fixed;
  bottom: 80px;
  right: -320px;
  z-index: 99999;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border: 1px solid #e2e8f0;
  padding: 0.9rem 1.3rem;
  transition: right 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 250px;
}

.gmaps-fixed-widget.visible {
  right: 20px;
}

.gmaps-widget-close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: none;
  border: none;
  font-size: 0.8rem;
  cursor: pointer;
  color: var(--gris);
  padding: 2px 4px;
  line-height: 1;
  transition: color 0.2s;
}

.gmaps-widget-close:hover {
  color: #ea4335;
}

.gmaps-widget-link {
  text-decoration: none;
  color: var(--noir);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.gmaps-widget-logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.gmaps-widget-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #4285F4;
}

.gmaps-widget-stars {
  font-size: 1.4rem;
  color: #fbbc05;
  letter-spacing: 1.5px;
  line-height: 1;
  animation: widgetStarPulse 2.5s infinite ease-in-out;
}

@keyframes widgetStarPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.gmaps-widget-cta {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
  color: #fff !important;
  background: #34a853;
  padding: 5px 12px;
  border-radius: 6px;
  margin-top: 3px;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 10px rgba(52, 168, 83, 0.2);
}

.gmaps-widget-cta:hover {
  background: #2b8c45;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .gmaps-fixed-widget {
    bottom: 140px;
    max-width: 180px;
    padding: 0.7rem 0.9rem;
  }
  .gmaps-widget-stars {
    font-size: 1.1rem;
  }
  .gmaps-widget-title {
    font-size: 0.95rem;
  }
  .gmaps-widget-cta {
    font-size: 0.9rem;
    padding: 4px 10px;
  }
}\n
/* ─── 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, #1A2638);
  border: 1px solid var(--anthracite-3, #243042);
  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, #E1BEE7);
  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;
  border: 2px solid var(--anthracite-3, #243042);
  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);
}

.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;
}
.badge-after {
  background: var(--secondary, #047857);
}

@media (max-width: 900px) {
  .real-layout-v2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

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