

/* Image Authentication Filter */
/* ── Responsive images: never overflow their container ── */
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* Prevent horizontal scrollbar from image overflow */
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--blanc);
  color: var(--noir);
  overflow-x: clip; /* clip instead of hidden to avoid clipping positioned elements */
}

/* ─── 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);
}

/* Legacy nav grid rules removed */

.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-bg img {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.85;
}

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

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to right, var(--blanc) 35%, rgba(255, 255, 255, 0.6) 50%, transparent 70%),
    linear-gradient(to bottom, transparent 70%, 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: 1400px;
  margin: 1.5rem auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 0 1rem;
}

.real-divider {
  font-size: 2.5rem;
  color: var(--vert);
  font-family: 'Bebas Neue', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-before,
.badge-after {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: #fff;
  z-index: 2;
}

.badge-before {
  background: var(--noir);
}

.badge-after {
  background: var(--vert);
}

@media(max-width:768px) {
  .real-layout {
    grid-template-columns: 1fr;
  }
  .real-divider {
    transform: rotate(90deg);
    margin: -0.5rem 0;
  }
}

.real-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--gris-clair);
  box-shadow: var(--shadow-card);
}

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

.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('realisation_2.jpg') 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) {
  /* Legacy scrollable mobile links removed */

  .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;
  }
}

/* MELUN THEME: Prestige & Or — Classique Élégant */
:root {
  --vert: #6B1724; /* Burgundy */
  --vert-vif: #A62B3D;
  --vert-dark: #3A0A10;
  --vert-bg: #FAF5F5;
  --blanc: #FAF8F5; /* Warm cream */
  --blanc-2: #F3EFEA;
  --gris-clair: #EADFD3;
  --gris: #736257;
  --gris-border: #D1C4B9;
  --noir: #1F1612;
  --noir-2: #0F0907;
  --gradient-vert: linear-gradient(135deg, var(--vert-dark) 0%, var(--vert) 50%, var(--vert-vif) 100%);
  --shadow-vert: 0 4px 14px rgba(107, 23, 36, 0.25);
  --shadow-card: 0 10px 30px rgba(115, 98, 87, 0.08);
  --radius: 0px; /* Sophisticated sharp corners */
}

img, video {
  filter: none !important;
}

body {
  background: var(--blanc);
  font-family: 'Cormorant Garamond', serif;
  color: var(--noir);
}

p, span, li, a {
  font-family: 'Inter', sans-serif;
}

nav {
  background: var(--vert); /* Burgundy brand color #6B1724 */
  border-bottom: 2px solid #D4AF37; /* Gold accent */
  box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.nav-logo span {
  color: var(--blanc);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 2px;
}

.nav-logo span em {
  color: #D4AF37;
}

.nav-links a {
  color: var(--gris-clair);
  font-family: 'Inter', sans-serif;
  letter-spacing: 1px;
}

.nav-links a:hover {
  color: #D4AF37;
}

.btn-call {
  background: linear-gradient(135deg, #A62B3D, #6B1724);
  color: #fff;
  border: 1px solid #D4AF37;
  border-radius: 0;
  letter-spacing: 2px;
}

#hero {
  background: linear-gradient(rgba(31, 22, 18, 0.85), rgba(31, 22, 18, 0.85)), url('hero_toiture_new.png') center/cover no-repeat;
  min-height: 90vh;
  text-align: center;
  justify-content: center;
  padding: 140px 2.5rem 80px;
}

.hero-bg img {
  display: none; /* We use a background image for hero instead for prestige layout */
}

.hero-bg::after {
  display: none;
}

.hero-content {
  margin: 0 auto;
  max-width: 800px;
}

.hero-badge {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid #D4AF37;
  color: #D4AF37;
  border-radius: 0;
}

.hero-badge .dot {
  background: #D4AF37;
}

.hero-title {
  color: var(--blanc);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 1px;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-title .vert {
  color: #D4AF37;
}

.hero-sub {
  color: var(--gris-clair);
  margin: 1.5rem auto 2.5rem;
  max-width: 650px;
}

.hero-ctas {
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, #D4AF37, #B8922A);
  color: var(--noir);
  border-radius: 0;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  background: var(--blanc);
  color: var(--vert-dark);
  box-shadow: 0 4px 15px rgba(255,255,255,0.4);
}

.btn-outline {
  border-color: var(--blanc);
  color: var(--blanc);
  border-radius: 0;
}

.btn-outline:hover {
  border-color: #D4AF37;
  color: #D4AF37;
  background: rgba(212, 175, 55, 0.1);
}

.hero-stats {
  justify-content: center;
  gap: 4rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 2rem;
  margin-top: 2rem;
}

.stat-number {
  color: #D4AF37;
  font-size: 2.5rem;
}

.stat-label {
  color: var(--gris-clair);
}

.ticker-wrap {
  background: #D4AF37;
}

.ticker-item {
  color: var(--noir);
  font-weight: 700;
}

.ticker-item::after {
  color: var(--noir);
}

.section-tag {
  color: var(--vert);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.5px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-line {
  background: #D4AF37;
  width: 80px;
  height: 2px;
}

#services {
  background: var(--blanc-2);
}

.service-card {
  background: var(--blanc);
  border: 1px solid var(--gris-border);
  border-radius: 0;
  box-shadow: none;
  transition: all 0.4s ease;
  padding: 3rem 2rem;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: #D4AF37;
  transition: height 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  border-color: #D4AF37;
}

.service-card:hover::after {
  height: 4px;
}

.service-card .icon {
  background: var(--vert-bg);
  border: 1px solid rgba(107, 23, 36, 0.15);
  color: var(--vert);
  border-radius: 0;
}

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

.service-badge {
  background: #D4AF37;
  color: var(--noir);
  border-radius: 0;
  border: none;
  font-weight: 700;
}

#realisations {
  background: var(--blanc);
}

.real-card {
  border-radius: 0;
  border: 4px solid var(--blanc-2);
}

.badge-before, .badge-after {
  border-radius: 0;
}

.badge-before {
  background: var(--noir);
}

.badge-after {
  background: #D4AF37;
  color: var(--noir);
}

.real-info h2 {
  font-family: 'Cormorant Garamond', serif;
}

#materiaux {
  background: var(--blanc-2);
}

.mat-img {
  border-radius: 0;
  border: 8px solid var(--blanc);
}

.mat-img .mat-badge {
  background: #D4AF37;
  border-radius: 0;
}

.mat-badge span {
  color: var(--noir);
}

.mat-badge p {
  color: rgba(0,0,0,0.6);
}

.materials-grid .material {
  border-radius: 0;
  border-color: var(--gris-border);
}

.materials-grid .material:hover {
  background: #D4AF37;
  border-color: #D4AF37;
  color: var(--noir);
}

#zones {
  background: var(--blanc);
}

.dept-card {
  border-radius: 0;
  border: 1px solid var(--gris-border);
  background: var(--blanc-2);
}

.dept-card::before {
  background: #D4AF37;
}

.dept-num {
  color: var(--vert);
}

.dept-dispo {
  background: #D4AF37;
  border: none;
  color: var(--noir);
  border-radius: 0;
}

#garantie {
  background: linear-gradient(rgba(31, 22, 18, 0.95), rgba(31, 22, 18, 0.95)), url('hero-bg.webp') center/cover;
}

.garantie-badge {
  background: rgba(212, 175, 55, 0.15);
  border-color: #D4AF37;
  color: #D4AF37;
  border-radius: 0;
}

.garantie-inner h2 {
  color: var(--blanc);
}

.garantie-inner p {
  color: var(--gris-clair);
}

.g-num {
  border-color: #D4AF37;
  color: #D4AF37;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 0;
}

.g-step span {
  color: var(--gris-clair);
}

.g-arrow {
  color: #D4AF37;
}

#avis {
  background: var(--blanc-2);
}

.avis-score {
  border-radius: 0;
  border: 1px solid var(--gris-border);
}

.avis-fill {
  background: #D4AF37;
}

.avis-card {
  border-radius: 0;
  border: 1px solid var(--gris-border);
}

.avis-avatar {
  background: var(--vert);
  border-radius: 0;
}

.avis-service {
  background: var(--vert-bg);
  color: var(--vert);
  border-radius: 0;
  border: 1px solid rgba(107, 23, 36, 0.2);
}

#contact {
  background: var(--blanc);
  border-top: 1px solid var(--gris-border);
}

.big-phone {
  background: var(--vert);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-wa {
  border-radius: 0;
}

footer {
  background: var(--noir-2);
  border-top: 5px solid #D4AF37;
}

.footer-col h4 {
  color: #D4AF37;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  letter-spacing: 1px;
}

#scrollTop {
  background: #D4AF37;
  color: var(--noir);
  border-radius: 0;
}

#chat-toggle {
  background: #D4AF37;
  border-radius: 0;
}

#chat-toggle svg {
  fill: var(--noir);
}

.chat-header {
  background: var(--noir);
  border-bottom: 2px solid #D4AF37;
}

.cw-avatar {
  background: #D4AF37;
  color: var(--noir);
}

.user .cw-bubble {
  background: var(--vert);
}

.chat-step-dot.active {
  background: #D4AF37;
}

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

/* ─── HAMBURGER & MOBILE NAV OVERLAY ─── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  padding: 0.8rem;
  z-index: 201;
  border-radius: 0px;
  width: 44px;
  height: 44px;
  transition: all 0.3s ease;
  position: relative;
  align-items: center;
  justify-content: center;
}

.menu-toggle:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: #D4AF37;
}

.hamburger {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--blanc);
  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);
  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: #D4AF37;
}

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

/* ─── MOBILE NAV OVERLAY ─── */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(58, 10, 16, 0.98); /* Prestige --vert-dark base (dark Burgundy) */
  backdrop-filter: blur(20px);
  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;
  border-bottom: 3px solid #D4AF37;
}

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

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

.mobile-nav-logo span {
  color: var(--blanc);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 2px;
}

.mobile-nav-logo span em {
  color: #D4AF37;
}

.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--blanc);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  text-transform: uppercase;
}

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

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

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

.mobile-nav-btn-call {
  margin-top: 1.5rem;
  padding: 0.8rem 2.2rem !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
}

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

.nav-gmaps:hover {
  background: rgba(212, 175, 55, 0.25) !important;
  border-color: #D4AF37 !important;
  color: #FFF !important;
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .menu-toggle {
    display: flex;
  }
}

@media (max-width: 900px) {
  #chat-toggle {
    display: none !important;
  }
}

/* ─── EXIT INTENT POPUP (Prestige Theme) ─── */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 9, 7, 0.85);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

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

.exit-popup {
  background: var(--blanc);
  border-radius: var(--radius);
  border: 1px solid var(--gris-border);
  max-width: 480px;
  width: 100%;
  padding: 3rem 2rem 2.5rem;
  text-align: center;
  position: relative;
  animation: popInPrestige 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 50px rgba(31, 22, 18, 0.3);
}

@keyframes popInPrestige {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.exit-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: var(--blanc-2);
  border: 1px solid var(--gris-border);
  border-radius: var(--radius);
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--gris);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.exit-popup-close:hover {
  background: var(--gris-clair);
  color: var(--noir);
}

.exit-popup .ep-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid #D4AF37;
  color: #D4AF37;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 0.4rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.exit-popup h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--noir);
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

.exit-popup h3 span {
  color: #D4AF37;
}

.exit-popup .ep-sub {
  font-size: 0.95rem;
  color: var(--gris);
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

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

.exit-popup .ep-form input {
  flex: 1;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--gris-border);
  border-radius: var(--radius);
  background: #FFF;
  color: var(--noir);
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.exit-popup .ep-form input:focus {
  border-color: #D4AF37;
}

.exit-popup .ep-form input.error {
  border-color: var(--vert-vif);
}

.exit-popup .ep-form button {
  background: var(--vert);
  color: #FFF;
  border: 1px solid #D4AF37;
  padding: 0 1.8rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  letter-spacing: 1px;
  transition: all 0.2s;
}

.exit-popup .ep-form button:hover {
  background: var(--vert-vif);
}

.exit-popup .ep-or {
  margin: 1.5rem 0 1rem;
  font-size: 0.8rem;
  color: var(--gris);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.exit-popup .ep-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #D4AF37;
  color: var(--noir);
  width: 100%;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: all 0.2s;
}

.exit-popup .ep-call-btn:hover {
  background: #E5C05B;
  transform: translateY(-1px);
}

.exit-popup .ep-tiny {
  margin-top: 1.2rem;
  font-size: 0.75rem;
  color: var(--gris);
  line-height: 1.4;
}

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

.ep-success-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--vert);
  margin-top: 0.5rem;
}

.exit-popup .ep-success .ep-check {
  width: 64px;
  height: 64px;
  background: var(--vert);
  border: 2px solid #D4AF37;
  border-radius: 50%;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #D4AF37;
}

/* ─── FAQ SECTION (Prestige Theme) ─── */
.faq-section {
  padding: 6rem 1.5rem;
  background: var(--blanc);
  border-top: 1px solid var(--gris-border);
}

.faq-list {
  max-width: 800px;
  margin: 3rem auto 0;
}

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

.faq-header .section-tag {
  color: #D4AF37;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.faq-header .section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--noir);
  margin: 0.5rem 0;
}

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

.faq-item summary {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--noir);
  cursor: pointer;
  padding: 0.6rem 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

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

.faq-item summary::after {
  content: '+';
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  color: #D4AF37;
  font-weight: 300;
  transition: transform 0.2s;
}

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

.faq-item .faq-answer {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gris);
  padding: 0.8rem 0 1.2rem;
}

/* ─── HERO TRUST BAR (Prestige Theme) ─── */
.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2rem;
  margin-top: 2rem;
  padding: 1.2rem 1.5rem;
  background: rgba(15, 9, 7, 0.75); /* Dark translucent background to overlay the hero image and guarantee readability */
  backdrop-filter: blur(5px);
  border-radius: var(--radius);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-left: 4px solid #D4AF37; /* Gold accent border */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--blanc); /* High contrast cream color */
}

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

.trust-item strong {
  color: #D4AF37; /* Gold highlights */
  font-weight: 700;
}

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

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

/* ─── SCARCITY BANNER (Prestige Theme) ─── */
.scarcity-banner {
  background: var(--blanc-2);
  border: 1px solid var(--gris-border);
  border-left: 4px solid var(--vert);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  max-width: 800px;
  margin: 2.5rem auto;
  box-shadow: var(--shadow-card);
}

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

.scarcity-banner .sb-content {
  flex: 1;
  font-size: 0.9rem;
  color: var(--gris);
  line-height: 1.5;
}

.sb-content-sub {
  margin-top: 4px;
  font-size: 0.8rem;
}

.scarcity-banner .sb-content strong {
  color: var(--noir);
  font-weight: 700;
}

.scarcity-banner .sb-bar {
  height: 6px;
  background: var(--gris-clair);
  border-radius: var(--radius);
  margin-top: 0.5rem;
  overflow: hidden;
}

.scarcity-banner .sb-bar-fill {
  height: 100%;
  background: var(--gradient-vert);
  border-radius: var(--radius);
  transition: width 0.5s ease;
}

/* ==========================================================================
   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;
    }
}

/* ═══════════════════════════════════════════════════════
   THEME CLAIR — SURCHARGES POUR PRÉSENTATION SOIGNÉE
   ═══════════════════════════════════════════════════════ */

/* ── Nom de marque dans la navigation ── */
.nav-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 2px;
  color: #1E3A5F;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ── Hero title : sombre sur fond clair ── */
.hero-title {
  color: #1E3A5F !important;
  text-shadow: none !important;
}
.hero-title .saumon {
  color: #2563EB !important;
}
.hero-location {
  color: #4A5568 !important;
}
.hero-sub {
  color: #4A5568 !important;
}

/* ── Body & fond général ── */
body {
  background: #F8FAFC !important;
  color: #111827 !important;
}

/* ── Navigation (bandeau blanc épuré) ── */
nav {
  background: rgba(255,255,255,0.97) !important;
  border-bottom: 1px solid rgba(30,58,95,0.1) !important;
  box-shadow: 0 1px 8px rgba(30,58,95,0.06);
}
header.scrolled nav {
  box-shadow: 0 2px 20px rgba(30,58,95,0.12) !important;
}
.nav-links a {
  color: #1E3A5F !important;
}
.nav-links a:hover {
  color: #2563EB !important;
}
.logo-icon {
  background: linear-gradient(135deg, #1E3A5F 0%, #2563EB 100%) !important;
}

/* ── Sections : fond blanc / gris alternés + texte noir ── */
section:nth-child(odd) {
  background: #FFFFFF !important;
}
section:nth-child(even) {
  background: #F1F5F9 !important;
}
section h2, section h3, section p, section span {
  color: inherit;
}
.section-title {
  color: #1E3A5F !important;
}
.section-tag {
  color: #2563EB !important;
}
.section-header {
  border-left: 4px solid #2563EB !important;
}

/* ── Cards épurées ── */
.card {
  background: #FFFFFF !important;
  border: 1.5px solid #E2E8F0 !important;
  border-radius: 12px !important;
  box-shadow: 0 2px 12px rgba(30,58,95,0.07) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}
.card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 30px rgba(30,58,95,0.13) !important;
  border-color: #2563EB !important;
}
.card h3 {
  color: #1E3A5F !important;
}
.card p {
  color: #4B5563 !important;
}

/* ── Zone cards ── */
.zone-card {
  background: #FFFFFF !important;
  border: 1.5px solid #E2E8F0 !important;
  border-radius: 12px !important;
  box-shadow: 0 2px 12px rgba(30,58,95,0.07) !important;
}
.zone-card h3 {
  color: #1E3A5F !important;
}
.zone-card p {
  color: #4B5563 !important;
}
.zone-number {
  color: #2563EB !important;
  border-color: rgba(37,99,235,0.25) !important;
}

/* ── Boutons principaux ── */
.btn-primary {
  background: linear-gradient(135deg, #1E3A5F 0%, #2563EB 100%) !important;
  color: #FFFFFF !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 16px rgba(37,99,235,0.3) !important;
  font-weight: 700 !important;
}
.btn-primary:hover {
  box-shadow: 0 8px 28px rgba(37,99,235,0.45) !important;
  transform: translateY(-2px) !important;
}
.btn-outline {
  border: 2px solid #2563EB !important;
  color: #2563EB !important;
  background: transparent !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
}
.btn-outline:hover {
  background: rgba(37,99,235,0.08) !important;
}

/* ── Bouton hero outline sombre (hero a un fond clair) ── */
#hero .btn-outline {
  border: 2px solid #1E3A5F !important;
  color: #1E3A5F !important;
  background: transparent !important;
}
#hero .btn-outline:hover {
  background: #1E3A5F !important;
  color: #FFFFFF !important;
}

/* ── Contact section ── */
#contact {
  background: #F8FAFC !important;
}
#contact .section-title {
  color: #1E3A5F !important;
}
/* Contact blocks with dark background need light text */
.contact-block { background: #1E3A5F !important; border: none !important; }
.contact-block h3 { color: #60A5FA !important; }
.contact-block p { color: rgba(255,255,255,0.7) !important; }
.contact-block a { color: #FFFFFF !important; font-weight: bold !important; }
.contact-block a:hover { color: #93C5FD !important; }

/* ── Footer ── */
footer {
  background: #1E3A5F !important;
  color: #F8FAFC !important;
}
footer h4 {
  color: #FFFFFF !important;
}
footer a {
  color: #CBD5E1 !important;
}
footer a:hover {
  color: #FFFFFF !important;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12) !important;
  color: rgba(255,255,255,0.6) !important;
}

/* ── Ticker bandeau ── */
.ticker-wrap {
  background: #1E3A5F !important;
  border-top: none !important;
  border-bottom: none !important;
}
.ticker-item {
  color: rgba(255,255,255,0.9) !important;
}
.ticker-sep {
  color: #2563EB !important;
}

/* ── Scroll-to-top ── */
#scrollTop {
  background: linear-gradient(135deg, #1E3A5F, #2563EB) !important;
  color: #FFF !important;
}

/* ── Service badges ── */
.service-badge {
  background: rgba(37,99,235,0.1) !important;
  color: #2563EB !important;
  border: 1px solid rgba(37,99,235,0.25) !important;
}

/* ── Floating devis btn ── */
#floating-devis-btn {
  background: linear-gradient(135deg, #1E3A5F, #2563EB) !important;
  color: #FFF !important;
  box-shadow: 0 4px 20px rgba(37,99,235,0.4) !important;
}

/* ── Trust bar ── */
.hero-trust-bar {
  background: transparent !important;
  border-left-color: #2563EB !important;
}
.trust-item {
  color: #4A5568 !important;
}
.trust-item strong {
  color: #1E3A5F !important;
}

/* ── Section garantie cards ── */
#garantie .card h3 {
  color: #1E3A5F !important;
}

/* ── Images : pas de filtre sombre ── */
img, video {
  filter: none !important;
}

/* ── Hero badge ── */
.hero-badge {
  background: rgba(255,255,255,0.15) !important;
  border-color: rgba(255,255,255,0.4) !important;
  color: rgba(255,255,255,0.95) !important;
}

/* ── Availability badge ── */
.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid transparent;
}
.availability-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}
.availability-badge.online {
  background: rgba(22,163,74,0.15) !important;
  color: #15803D !important;
  border-color: rgba(22,163,74,0.3) !important;
}
.availability-badge.offline {
  background: rgba(100,116,139,0.1) !important;
  color: #374151 !important;
}

/* ── Contact form inputs sur fond blanc ── */
.contact-form-bottom input,
.contact-form-bottom textarea,
.contact-form-bottom select {
  background: #F8FAFC !important;
  color: #111827 !important;
  border: 1.5px solid #CBD5E1 !important;
}
.contact-form-bottom input::placeholder,
.contact-form-bottom textarea::placeholder {
  color: #9CA3AF !important;
}
.contact-form-bottom {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  box-shadow: 0 2px 12px rgba(30,58,95,0.07) !important;
}
.contact-form-bottom h3 {
  color: #1E3A5F !important;
}

/* ── Undo primary bg on odd sections ── */
#hero {
  background: transparent !important;
}

/* ── FAQ text colors ── */
.faq-section { background: transparent !important; }
.faq-item summary { color: #1E3A5F !important; font-weight: 600; }
.faq-answer { color: #4B5563 !important; }
.faq-item { border-bottom: 1px solid #CBD5E1 !important; }


/* ── Floating Help Button ── */
.help-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #2563EB !important;
    color: #FFFFFF !important;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: transform 0.3s, background 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}
.help-btn:hover {
    background: #1E3A5F !important;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* ── Fix stretched badges ── */
.badge-before, .badge-after {
    top: auto !important;
    bottom: 10px !important;
    left: 10px !important;
    padding: 6px 14px !important;
    height: auto !important;
    display: inline-block !important;
}

/* ═══════════════════════════════════════════════════════
   HERO 50/50 SPLIT DESIGN
   ═══════════════════════════════════════════════════════ */
#hero.hero-split {
    display: flex;
    flex-direction: row;
    min-height: 100vh;
    padding-top: 80px; /* Espace pour la nav */
    background: #FFFFFF !important;
}

.hero-split-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 10%;
    background: #FFFFFF;
    position: relative;
    z-index: 2;
}

.hero-split-left .hero-title {
    color: #1E3A5F !important;
    text-shadow: none !important;
    font-size: 3.5rem !important; /* Slightly smaller to fit "ENTREPRISE A.F" */
}

.hero-split-left .hero-badge {
    background: #F1F5F9 !important;
    color: #1E3A5F !important;
    border-color: #E2E8F0 !important;
    align-self: flex-start;
    margin-bottom: 2rem;
}

.hero-split-left .hero-sub {
    color: #4B5563 !important;
}

.hero-split-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-split-right .hero-slider {
    width: 100% !important;
    height: 100% !important;
    position: absolute !important;
    inset: 0 !important;
    aspect-ratio: auto !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.hero-split-right .hero-slider::after {
    display: none !important;
}

@media (max-width: 992px) {
    #hero.hero-split {
        flex-direction: column;
    }
    .hero-split-left {
        padding: 6rem 5% 3rem 5%;
        min-height: 60vh;
    }
    .hero-split-right {
        min-height: 40vh;
        width: 100%;
        position: relative;
    }
}

/* ═══════════════════════════════════════════════════════
   REALISATIONS CONTAINER (AVANT / APRES)
   ═══════════════════════════════════════════════════════ */
.real-pair {
    background: #1E293B;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 0 auto;
    max-width: 1000px;
}
.real-pair-title {
    color: #F8FAFC !important;
    text-align: center !important;
    margin-bottom: 2rem !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    font-family: 'Bebas Neue', 'Inter', sans-serif !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
}
.real-pair-images {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
}
.real-img-box {
    flex: 1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 350px;
    border: 3px solid #334155;
    background: #0F172A;
}
.real-img-box img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.4s ease !important;
    display: block !important;
}
.real-img-box:hover img {
    transform: scale(1.05) !important;
}
.badge-before, .badge-after {
    position: absolute !important;
    top: auto !important;
    bottom: 15px !important;
    left: 15px !important;
    padding: 6px 14px !important;
    border-radius: 6px !important;
    font-family: 'Bebas Neue', 'Inter', sans-serif !important;
    font-size: 1.1rem !important;
    font-weight: bold !important;
    letter-spacing: 1px !important;
    color: #fff !important;
    z-index: 2 !important;
    height: auto !important;
    display: inline-block !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4) !important;
    text-transform: uppercase !important;
    line-height: 1 !important;
}
.badge-before { background: #dc2626 !important; }
.badge-after { background: #16a34a !important; }

@media (max-width: 768px) {
    .real-pair {
        padding: 1.5rem;
    }
    .real-pair-images {
        flex-direction: column;
    }
    .real-img-box {
        height: 250px;
    }
}

/* ═══════════════════════════════════════════════════════
   HERO FORM & SLIDER FIXES
   ═══════════════════════════════════════════════════════ */
.hero-fast-form {
    background: #F8FAFC;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.hero-fast-form .form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}
.hero-fast-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid #CBD5E1;
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
}
.hero-fast-form input:focus {
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}
@media (max-width: 600px) {
    .hero-fast-form .form-row {
        flex-direction: column;
    }
}

.hero-split-right .hero-slider img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    position: absolute !important;
    top: 0; left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.hero-split-right .hero-slider img.active {
    opacity: 1 !important;
}

/* ── FIX HERO CLIPPING & RESPONSIVE ── */
#hero.hero-split {
    min-height: auto !important; /* Allow content to dictate height on small screens */
    padding-top: 0 !important;
}
.hero-split-left {
    justify-content: flex-start !important;
    padding-top: 140px !important; /* Clear the header securely */
    padding-bottom: 3rem !important;
    min-height: 100vh;
}
@media (max-width: 992px) {
    .hero-split-left {
        padding-top: 90px !important; /* Reduced from 120px to remove useless gap under fixed navbar */
        padding-bottom: 2rem !important;
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
        min-height: auto !important;
    }
    .hero-split-left .hero-badge {
        margin-bottom: 1rem !important; /* Tighter margin */
    }
    .hero-split-left .hero-title {
        font-size: 1.6rem !important; /* Scale down to prevent overflow clipping */
        word-wrap: normal !important;
        overflow-wrap: normal !important;
        word-break: keep-all !important;
        white-space: normal !important;
        margin-bottom: 0.8rem !important; /* Tighter margin */
    }
    .hero-split-left .hero-sub {
        margin-bottom: 1.2rem !important; /* Tighter margin */
    }
    .hero-fast-form {
        margin-bottom: 1.2rem !important; /* Tighter margin */
        padding: 1.2rem !important; /* Tighter padding */
    }
    .hero-split-right {
        min-height: 350px !important; /* Fixed height for image on mobile */
    }
}
@media (min-width: 993px) {
    .hero-split-left {
        justify-content: center !important;
    }
}


/* ─── RESPONSIVE NAV FIX (auto-applied) ─── */
@media (max-width: 991px) {
    .nav-links { display: none !important; }
    nav {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        height: 70px !important;
        padding: 0.8rem 1rem !important;
    }
    .nav-logo {
        display: flex !important;
        align-items: center !important;
        gap: 0.4rem !important;
        white-space: nowrap !important;
    }
    .nav-logo .logo-icon {
        width: 32px !important;
        height: 32px !important;
        box-shadow: none !important;
    }
    .nav-logo .logo-icon svg {
        width: 18px !important;
        height: 18px !important;
    }
    .nav-logo span {
        font-size: 1rem !important;
        white-space: nowrap !important;
    }
    .nav-actions {
        display: flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
        margin-left: auto !important; /* Push it to the far right side */
    }
    .btn-call {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 36px !important;
        height: 36px !important;
        padding: 0 !important;
        font-size: 1rem !important;
        background: var(--primary) !important;
        color: #FFFFFF !important;
        border-radius: 4px !important;
        border: 1px solid var(--accent) !important;
    }
    .menu-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 36px !important;
        height: 36px !important;
        padding: 0 !important;
        background: transparent !important;
        border: 1px solid rgba(107, 23, 36, 0.2) !important;
        border-radius: 4px !important;
    }
    .hamburger {
        background: var(--primary) !important;
    }
    .hamburger::before,
    .hamburger::after {
        background: var(--primary) !important;
    }
    .availability-badge {
        display: none !important; /* Hide badge on mobile to prevent layout overflow deformation */
    }
}
@media (max-width: 768px) {
    
    .operator-widget { display: none !important; }
    .fixed-action-stack { gap: 1.5rem !important; }
}

/* ══ CONTRAST FIX — texte sombre sur fond clair ══ */
body {
    color: #111827 !important;
}

/* Sections : fond blanc/gris clair, texte sombre */
section {
    color: #111827 !important;
}
section h1, section h2, section h3, section h4, section p, section span, section li {
    color: inherit;
}
.section-title {
    color: #1E3A5F !important;
}
.section-tag {
    color: var(--accent, #2563EB) !important;
}
.hero-title {
    color: #1E3A5F !important;
}
.hero-sub {
    color: #4A5568 !important;
    opacity: 1 !important;
}
.hero-location {
    color: #6B7280 !important;
}

/* Cards : fond blanc, texte sombre */
.card {
    background: #FFFFFF !important;
    color: #111827 !important;
}
.card::before {
    display: none !important;
}
.card h3 {
    color: #1E3A5F !important;
}
.card p {
    color: #4B5563 !important;
    opacity: 1 !important;
}
.card-icon {
    color: var(--accent, #2563EB) !important;
}

/* Services section */
#services {
    background: #FFFFFF !important;
}
#realisations {
    background: #F8FAFC !important;
}
#materiaux {
    background: #FFFFFF !important;
}
#zones {
    background: #F1F5F9 !important;
}
#garantie {
    background: #FFFFFF !important;
}
#contact {
    background: #F8FAFC !important;
}

/* Zone cards */
.zone-card {
    background: #FFFFFF !important;
    color: #111827 !important;
}
.zone-card h3 {
    color: #1E3A5F !important;
}
.zone-card p {
    color: #4B5563 !important;
    opacity: 1 !important;
}
.zone-number {
    color: var(--accent, #2563EB) !important;
    opacity: 1 !important;
}

/* Stat numbers dans hero */
.stat-number {
    color: var(--accent, #2563EB) !important;
}
.stat-label {
    color: #6B7280 !important;
    opacity: 1 !important;
}

/* Service badges */
.service-badge {
    color: var(--accent-dark, #1E40AF) !important;
    background: rgba(37,99,235,0.1) !important;
    border-color: rgba(37,99,235,0.25) !important;
}

/* Mobile nav text */
.mobile-nav a {
    color: #FFFFFF !important;
}

/* Ticker : conserver fond sombre */
.ticker-wrap {
    color: rgba(245,245,245,0.9) !important;
}
.ticker-item {
    color: rgba(245,245,245,0.9) !important;
}

/* Grain overlay : désactiver sur fond clair */
body::before {
    opacity: 0 !important;
}

/* Real pair container */
.real-pair {
    background: #1E293B !important;
}
.real-pair-title {
    color: #F8FAFC !important;
}

/* Contact blocks */
.contact-block a {
    color: #FFFFFF !important;
}

/* Help popup */
.help-popup-title, .help-popup-sub {
    color: #111827 !important;
}

/* ══ SITE-SPECIFIC DESIGN THEME ══ */
/* ══════════════════════════════════════════════════════════
   THÈME DESIGN : MELUN — "Majestueux Large - Chulapa Style"
   Typographie : Space Grotesk / Inter
   Radius : 2-4px (look classique & autorité historique de Melun)
   Shadow : subtiles et épurées
   Style : autorité, modernité, épuré, translucide, avec tag lists
   ══════════════════════════════════════════════════════════ */
:root {
    --theme-radius-card: 2px;
    --theme-radius-btn: 4px;
    --theme-shadow-card: 0 10px 30px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(0,0,0,0.05);
    --theme-font-heading: 'Space Grotesk', sans-serif;
    --theme-font-body: 'Inter', sans-serif;
    --theme-letter-spacing: 0.04em;
    --primary: #6B1724;
    --primary-light: #A62B3D;
    --primary-dark: #3A0A10;
    --accent: #D4AF37;
    --slate-bg: #FAF8F5;
    --slate-text: #1F1612;
}

body {
    font-family: var(--theme-font-body);
    background: var(--slate-bg) !important;
    color: var(--slate-text) !important;
    line-height: 1.8;
}

h1, h2, h3, h4, .section-title, .hero-title {
    font-family: var(--theme-font-heading) !important;
    font-weight: 700 !important;
    letter-spacing: var(--theme-letter-spacing) !important;
    text-transform: uppercase !important;
}

/* Navbar */
nav {
    background: #FFFFFF !important;
    border-bottom: 1px solid rgba(107, 23, 36, 0.1) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
    position: fixed !important;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 70px !important;
    padding: 0 2.5rem !important;
}
@media (max-width: 991px) {
    nav {
        padding: 0 1rem !important;
    }
    .nav-links { display: none !important; }
    .nav-actions {
        display: flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
        flex-shrink: 0 !important;
    }
    .btn-call {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 38px !important;
        height: 38px !important;
        padding: 0 !important;
        font-size: 1.1rem !important;
        background: var(--primary) !important;
        color: #FFFFFF !important;
        border-radius: 4px !important;
        border: none !important;
        flex-shrink: 0 !important;
    }
    .btn-call .btn-text { display: none !important; }
    .btn-call .pulse { display: none !important; }
    .menu-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 38px !important;
        height: 38px !important;
        padding: 0 !important;
        background: transparent !important;
        border: 1.5px solid var(--primary) !important;
        border-radius: 4px !important;
        flex-shrink: 0 !important;
    }
    .hamburger,
    .hamburger::before,
    .hamburger::after {
        background: var(--primary) !important;
    }
    .availability-badge {
        display: none !important;
    }
    .nav-logo {
        flex: 1 !important;
        min-width: 0 !important;
    }
    .nav-logo span {
        font-size: 0.95rem !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
}
.nav-logo span {
    font-family: var(--theme-font-heading) !important;
    color: var(--primary-dark) !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    white-space: nowrap !important;
}
.nav-logo span em {
    color: var(--primary-light) !important;
    font-style: normal !important;
}
.nav-links a {
    color: var(--slate-text) !important;
    font-family: var(--theme-font-body) !important;
    font-weight: 500 !important;
    transition: color 0.3s ease !important;
}
.nav-links a:hover {
    color: var(--primary-light) !important;
}

/* Hero Section */
#hero.hero-split {
    background: #FFFFFF !important;
    padding-top: 100px !important;
}
.hero-split-left {
    background: #FFFFFF !important;
}
.hero-split-left .hero-title {
    font-family: var(--theme-font-heading) !important;
    color: var(--primary-dark) !important;
    font-weight: 700 !important;
    font-size: clamp(1.6rem, 5vw, 3.5rem) !important; /* Responsive: 1.6rem mobile → 3.5rem desktop */
    line-height: 1.15 !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    white-space: normal !important;
}
.hero-split-left .hero-title .saumon {
    color: var(--primary-light) !important;
}
.hero-split-left .hero-badge {
    background: rgba(166, 43, 61, 0.08) !important;
    border: 1px solid rgba(166, 43, 61, 0.25) !important;
    color: var(--primary-light) !important;
    border-radius: 4px !important;
}
.hero-split-left .hero-sub {
    color: #555555 !important;
}
.hero-fast-form {
    background: #FAF8F5 !important;
    border: 1px solid #EADFD3 !important;
    border-radius: 6px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03) !important;
}
.hero-fast-form h3 {
    color: var(--primary-dark) !important;
    font-family: var(--theme-font-heading) !important;
    font-weight: 600 !important;
}
.hero-fast-form input {
    border: 1px solid var(--gris-border) !important;
    border-radius: 4px !important;
    font-family: var(--theme-font-body) !important;
}
.hero-fast-form button {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%) !important;
    border-radius: 4px !important;
    font-family: var(--theme-font-heading) !important;
    letter-spacing: 1px !important;
    font-weight: 600 !important;
    color: #FFFFFF !important;
}
.hero-contact-bar {
    background: #FAF8F5 !important;
    border: 1px solid #EADFD3 !important;
    border-radius: 6px !important;
}
.hero-slider {
    border-radius: 8px !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12) !important;
}

/* Cards & Sections */
section {
    padding: 5rem 2rem !important;
}
section:nth-child(odd) {
    background: #FFFFFF !important;
}
section:nth-child(even) {
    background: #FAF8F5 !important;
}
.section-title {
    color: var(--primary-dark) !important;
    font-family: var(--theme-font-heading) !important;
}
.section-tag {
    color: var(--primary-light) !important;
    font-family: var(--theme-font-heading) !important;
    font-weight: 600 !important;
}
.section-line {
    background: var(--primary-light) !important;
    height: 3px !important;
    width: 60px !important;
}

.card, .service-card, .dept-card, .zone-card {
    border-radius: var(--theme-radius-card) !important;
    background: #FFFFFF !important;
    border: 1px solid #EADFD3 !important;
    box-shadow: var(--theme-shadow-card) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
    border-top: 4px solid var(--primary) !important;
    position: relative !important;
    overflow: hidden !important;
}
.card:hover, .service-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 40px rgba(107, 23, 36, 0.08) !important;
    border-color: var(--primary-light) !important;
}
.service-card::after {
    display: none !important;
}
.service-card h3 {
    color: var(--primary-dark) !important;
    font-family: var(--theme-font-heading) !important;
    font-size: 1.3rem !important;
    margin-bottom: 0.8rem !important;
}
.service-card p {
    color: #555555 !important;
    font-family: var(--theme-font-body) !important;
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
}
.service-badge {
    background: rgba(166, 43, 61, 0.08) !important;
    color: var(--primary-light) !important;
    border: 1px solid rgba(166, 43, 61, 0.2) !important;
    border-radius: 4px !important;
    font-family: var(--theme-font-body) !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.5px !important;
}

/* Card tags */
.card-tags {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    margin: 1.2rem 0 !important;
}
.tag-pill {
    background: #F1F5F9 !important;
    color: #475569 !important;
    font-size: 0.72rem !important;
    font-weight: 500 !important;
    padding: 4px 10px !important;
    border-radius: 50px !important;
    font-family: var(--theme-font-body) !important;
    border: 1px solid #E2E8F0 !important;
    transition: background 0.2s ease, color 0.2s ease !important;
}
.tag-pill:hover {
    background: var(--primary-light) !important;
    color: #FFFFFF !important;
    border-color: var(--primary-light) !important;
}

/* Contact & Footer */
#contact {
    background: #FAF8F5 !important;
}
.contact-form-bottom {
    background: #FFFFFF !important;
    border: 1px solid #EADFD3 !important;
    border-radius: 6px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
}
.contact-form-bottom h3 {
    color: var(--primary-dark) !important;
    font-family: var(--theme-font-heading) !important;
}
.contact-form-bottom input, .contact-form-bottom textarea {
    border: 1px solid var(--gris-border) !important;
    border-radius: 4px !important;
}
.contact-form-bottom button {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%) !important;
    color: #FFFFFF !important;
    border-radius: 4px !important;
    font-family: var(--theme-font-heading) !important;
    font-weight: 700 !important;
}
.contact-block {
    background: var(--primary-dark) !important;
    border-radius: 6px !important;
}
.contact-block h3 {
    color: var(--accent) !important;
    font-family: var(--theme-font-heading) !important;
}

footer {
    background: var(--primary-dark) !important;
    color: #CBD5E1 !important;
    padding: 5rem 2rem 2rem !important;
}
footer h4 {
    color: #FFFFFF !important;
    font-family: var(--theme-font-heading) !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
}
footer a {
    color: #94A3B8 !important;
    transition: color 0.2s ease !important;
}
footer a:hover {
    color: #FFFFFF !important;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* Buttons & UI elements */
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%) !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 14px rgba(166, 43, 61, 0.2) !important;
    border: none !important;
}
.btn-primary:hover {
    background: var(--primary-dark) !important;
    color: #FFFFFF !important;
    box-shadow: 0 6px 20px rgba(58, 10, 16, 0.3) !important;
    transform: translateY(-1px) !important;
}
.btn-outline {
    border: 2px solid var(--primary-light) !important;
    color: var(--primary-light) !important;
    background: transparent !important;
}
.btn-outline:hover {
    background: var(--primary-light) !important;
    color: #FFFFFF !important;
}
.btn-call {
    background: var(--primary) !important;
    border: 1px solid var(--accent) !important;
    border-radius: 4px !important;
    font-family: var(--theme-font-heading) !important;
    font-weight: 600 !important;
    color: #FFFFFF !important;
}

.help-btn {
    background: var(--primary-light) !important;
    border-radius: 4px !important;
    font-family: var(--theme-font-heading) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
}
.help-btn:hover {
    background: var(--primary-dark) !important;
}
.gmb-ticker-fixed {
    border-radius: 4px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}
#scrollTop {
    background: var(--primary-light) !important;
    border-radius: 4px !important;
}

/* Guarantee Section (Fix white text on white background) */
#garantie {
    background: linear-gradient(rgba(58, 10, 16, 0.92), rgba(31, 22, 18, 0.95)), url('hero-bg.webp') center/cover !important;
    color: #FFFFFF !important;
}
.garantie-inner h2 {
    color: #FFFFFF !important;
}
.garantie-inner p {
    color: rgba(255, 255, 255, 0.85) !important;
}
.g-num {
    border-color: var(--accent) !important;
    color: var(--accent) !important;
    background: rgba(212, 175, 55, 0.1) !important;
}
.g-step span {
    color: #FFFFFF !important;
}
.g-arrow {
    color: var(--accent) !important;
}
