:root {
  /* Theme: Deep Aubergine & Amethyst (Luxury Modern) */
  --vert: #4C1D95; 
  --vert-vif: #8B5CF6;
  --vert-dark: #2E1065;
  --vert-bg: #F5F3FF;
  
  --blanc: #ffffff;
  --blanc-2: #f9fafb;
  --gris-clair: #f3f4f6;
  --gris: #6b7280;
  --gris-border: #e5e7eb;
  --noir: #0F172A;
  --noir-2: #020617;
  --gradient-vert: linear-gradient(135deg, var(--vert-dark) 0%, var(--vert) 50%, var(--vert-vif) 100%);
  --shadow-vert: 0 4px 14px rgba(76, 29, 149, 0.25);
  --shadow-card: 0 8px 30px rgba(15, 23, 42, 0.06);
  --radius: 6px;
}

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

*,
*::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);
}

/* ─── MOBILE NAV — Flexbox (remplace l'ancien grid conflictuel) ─── */

.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: 120px 2.5rem 60px;
  overflow: hidden;
  background: radial-gradient(circle at 10% 20%, rgba(245, 243, 255, 0.8) 0%, rgba(255, 255, 255, 1) 90%);
}

.hero-grid {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  z-index: 4;
}

.hero-bg {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 4;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 4;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(76, 29, 149, 0.15);
  border: 4px solid var(--blanc);
  transform: rotate(-1.5deg);
  transition: transform 0.3s ease;
}

.hero-image-wrapper:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(76, 29, 149, 0.1) 0%, rgba(46, 16, 101, 0.2) 100%);
  pointer-events: none;
}

.floating-badge {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: var(--blanc);
  border-radius: 8px;
  padding: 0.8rem 1.2rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--gris-border);
  animation: floatAnim 4s ease-in-out infinite alternate;
  z-index: 5;
}

@keyframes floatAnim {
  0% { transform: translateY(0px) rotate(-1deg); }
  100% { transform: translateY(-10px) rotate(1deg); }
}

.fb-stars {
  color: #fbbc05;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.fb-text {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--noir);
  margin-top: 0.2rem;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-visual {
    order: -1; /* Image on top on mobile */
  }
  .hero-image-wrapper {
    max-width: 100%;
    transform: none;
  }
  .hero-image-wrapper:hover {
    transform: none;
  }
  .floating-badge {
    left: 20px;
    bottom: -10px;
  }
}

.hero-accent {
  display: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--vert-bg);
  border: 1px solid rgba(139, 92, 246, 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);
  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(139, 92, 246, 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 (INTERACTIVE SLIDER) ─── */
#realisations {
  padding: 80px 2.5rem;
  background: var(--blanc-2);
}

.ba-slider-container {
  max-width: 900px;
  margin: 2rem auto 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.1);
  border: 4px solid var(--blanc);
}

.ba-slider {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* Ratio 16:9 */
  height: 0;
  overflow: hidden;
}

.ba-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ba-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-before {
  z-index: 1;
}

.ba-after {
  z-index: 2;
  width: 50%; /* Modifié par le JS */
  overflow: hidden;
}

.ba-after img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
}

.ba-range {
  position: absolute;
  z-index: 5;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: transparent;
  opacity: 0;
  cursor: ew-resize;
  margin: 0;
  -webkit-appearance: none;
}

.ba-handle {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--blanc);
  pointer-events: none;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.ba-handle-line {
  flex: 1;
  width: 2px;
  background: var(--blanc);
}

.ba-handle-button {
  width: 44px;
  height: 44px;
  background: var(--gradient-vert);
  color: var(--blanc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(76, 29, 149, 0.4);
}

.badge-before,
.badge-after {
  position: absolute;
  bottom: 1.5rem;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
  color: #fff;
  z-index: 3;
  pointer-events: none;
}

.badge-before {
  right: 1.5rem;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
}

.badge-after {
  left: 1.5rem;
  background: rgba(76, 29, 149, 0.85);
  backdrop-filter: blur(4px);
}

.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.png') 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: 90px;
  right: 25px;
  width: 44px;
  height: 44px;
  background: var(--blanc);
  color: var(--vert);
  border: 1px solid var(--gris-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s, transform 0.2s;
  z-index: 9998;
  font-size: 1.2rem;
  box-shadow: var(--shadow-card);
}

#scrollTop.visible {
  opacity: 1;
}

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

/* ─── CHAT WIDGET ─── */
#chat-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366; /* Vibrant call green */
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s;
}

#chat-toggle:hover {
  background: #128c7e;
  transform: scale(1.08);
}

#chat-toggle svg {
  width: 24px;
  height: 24px;
  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; }
}

/* ─── Lien Google Maps dans la nav ─── */
.nav-gmaps {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--vert-bg);
  color: var(--vert) !important;
  padding: 6px 12px;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--vert);
  transition: all 0.3s ease;
}
.nav-gmaps:hover {
  background: var(--vert);
  color: var(--blanc) !important;
}
@media (max-width: 900px) {
  .nav-gmaps {
    display: none !important;
  }
}

.main-gmaps-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #8B5CF6; /* Améthyste */
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}
.main-gmaps-link:hover {
  text-decoration: underline;
  opacity: 0.8;
}

/* ─── BODY PADDING TO PREVENT OVERLAP ─── */
body {
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  body {
    padding-bottom: 140px;
  }
}
/* ==========================================================================
   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;
  margin-top: 70px !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;
  right: 20px !important;
  bottom: 85px !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.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;
  padding: 0.9rem !important;
  border-radius: 8px !important;
  font-family: inherit !important;
  width: 100% !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;
  padding: 2rem !important;
  border-radius: 12px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
  width: 100% !important;
}
.contact-form-bottom h3 {
  color: #1E3A5F !important;
}
.contact-form-bottom .btn-primary {
  width: 100% !important;
  justify-content: center !important;
  border: none !important;
  cursor: pointer !important;
  padding: 1rem !important;
  font-size: 1.1rem !important;
  border-radius: 8px !important;
  font-weight: bold !important;
}
.contact-content {
  display: flex !important;
  flex-direction: column !important;
  gap: 1.5rem !important;
  justify-content: center !important;
  margin: 0 !important;
  width: 100% !important;
}
.contact-block {
  width: 100% !important;
}

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

/* ── FAQ Magnifiques Cartes ── */
.faq-section { background: transparent !important; }
.faq-item {
    background: #FFFFFF !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(30,58,95,0.05) !important;
    margin-bottom: 1rem !important;
    padding: 1.5rem !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}
.faq-item:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(30,58,95,0.1) !important;
    border-color: #2563EB !important;
}
.faq-item summary { 
    color: #1E3A5F !important; 
    font-weight: 700; 
    font-size: 1.1rem;
    cursor: pointer;
    outline: none;
}
.faq-item summary::marker {
    color: #2563EB;
}
.faq-answer { 
    color: #4B5563 !important; 
    margin-top: 1rem !important;
    line-height: 1.6;
    border-top: 1px dashed #E2E8F0;
    padding-top: 1rem;
}


/* ── Floating Help Button ── */
.help-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #2563EB !important;
    color: #FFFFFF !important;
    padding: 14px 28px;
    border-radius: 8px !important;
    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;
    aspect-ratio: 1 / 1;
    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: auto;
    }
}

/* ═══════════════════════════════════════════════════════
   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: 3rem !important; /* Reduced padding since ticker clears header */
    padding-bottom: 3rem !important;
    min-height: 100vh;
}
@media (max-width: 992px) {
    .hero-split-left {
        padding-top: 2rem !important; /* Reduced padding on mobile */
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
        min-height: auto !important;
    }
    .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-phone-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
        white-space: nowrap;
        border-radius: 8px;
    }
    .nav-phone-btn .phone-icon { display: none; }
    .nav-phone-btn .phone-text { display: inline; }
}
@media (max-width: 768px) {
    
    .operator-widget { display: none !important; }
    .fixed-action-stack { gap: 1.5rem !important; }
}

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

/* ═══════════════════════════════════════════════════════════
   MOBILE HAMBURGER MENU & OVERLAY SYSTEM
   ═══════════════════════════════════════════════════════════ */

/* ─── HAMBURGER MENU BUTTON ─── */
.menu-toggle {
  display: none;
  background: rgba(30, 58, 95, 0.05) !important;
  border: 1px solid rgba(30, 58, 95, 0.1) !important;
  cursor: pointer;
  padding: 0.8rem;
  z-index: 201;
  border-radius: var(--theme-radius-btn, 8px) !important;
  width: 44px;
  height: 44px;
  transition: all 0.3s ease;
  position: relative;
}

.menu-toggle:hover {
  background: rgba(37, 99, 235, 0.1) !important;
  border-color: rgba(37, 99, 235, 0.3) !important;
}

.hamburger {
  display: block;
  width: 20px;
  height: 2px;
  background: #1E3A5F !important;
  border-radius: 2px;
  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: #1E3A5F !important;
  border-radius: 2px;
  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 !important;
}

.menu-toggle[aria-expanded="true"] .hamburger::before {
  transform: rotate(45deg);
  top: 0;
  background: #2563EB !important;
}

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

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

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

.mobile-nav a {
  font-family: 'Outfit', sans-serif !important;
  font-size: 2rem !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  color: #FFFFFF !important;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

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

.mobile-nav a:hover {
  color: #2563EB !important;
  transform: translateY(-2px);
}

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

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

.mobile-nav-logo-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1E3A5F 0%, #2563EB 100%) !important;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.mobile-nav-logo-icon svg path {
  fill: #FFFFFF !important;
}

.mobile-nav-btn-call {
  margin-top: 1.5rem;
  padding: 1rem 2.5rem !important;
  background: linear-gradient(135deg, #1E3A5F 0%, #2563EB 100%) !important;
  color: #FFFFFF !important;
  border-radius: var(--theme-radius-btn, 8px) !important;
}

/* ─── MOBILE MEDIA QUERIES FOR LAYOUT ─── */
@media (max-width: 991px) {
  nav {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    height: 70px !important;
    padding: 0 1.5rem !important;
  }
  .nav-logo {
    display: flex !important;
    align-items: center !important;
  }
  .nav-actions {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
  }
  .menu-toggle {
    display: block !important;
  }
}

/* ══ SITE-SPECIFIC DESIGN THEME ══ */
/* ══════════════════════════════════════════════════════════
   THÈME DESIGN : EVRY-COURCOURONNES — "Urbain Dynamique"
   Typographie : Outfit bold / gros tracking
   Radius : 12px (équilibré, urbain)
   Shadow : bleues/violettes modernes
   Style : ville nouvelle, énergie, modernité
   ══════════════════════════════════════════════════════════ */
:root {
    --primary: #1E3A5F;
    --secondary: #2563EB;
    --theme-radius-card: 12px;
    --theme-radius-btn: 8px;
    --theme-shadow-card: 0 4px 20px rgba(37,99,235,0.10), 0 2px 8px rgba(0,0,0,0.08);
    --theme-font-heading: 'Outfit', sans-serif;
    --theme-font-body: 'Inter', sans-serif;
    --theme-letter-spacing: 0.04em;
}
body { font-family: var(--theme-font-body); }
h1, h2, h3, .section-title { 
    font-family: var(--theme-font-heading);
    font-weight: 800;
    letter-spacing: var(--theme-letter-spacing);
}
.card { 
    border-radius: var(--theme-radius-card) !important; 
    box-shadow: var(--theme-shadow-card) !important;
    border-left: 4px solid var(--primary);
}
.btn { border-radius: var(--theme-radius-btn) !important; font-weight: 700; }
.zone-card { border-radius: 12px !important; }
.section-line { background: linear-gradient(90deg, var(--primary), transparent); }

/* ─── OPTIMISATION DES IMAGES RESPONSIVES ─── */

/* 1. Section Services : Image containers et images */
.service-img-container {
  width: 100%;
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  background-color: #f1f5f9;
}

.service-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  display: block !important;
}

.service-card:hover .service-img {
  transform: scale(1.05) !important;
}

/* 2. Section Matériaux : Récupération de l'image sur mobile & tablette */
@media (max-width: 900px) {
  .mat-img {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 1.5rem !important;
  }
  .mat-img img {
    height: 280px !important;
    width: 100% !important;
    object-fit: cover !important;
    border-radius: 12px !important;
  }
}

/* 3. Ajustement de la grille des Services (Mobile) */
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr !important;
  }
}

/* 4. Ajustement de la grille des Avis (Mobile) */
@media (max-width: 480px) {
  .reviews-grid {
    grid-template-columns: 1fr !important;
  }
}

/* 5. Taille du titre Hero sur petits écrans */
@media (max-width: 480px) {
  .hero-split-left .hero-title {
    font-size: 2.5rem !important;
  }
}

/* 6. Section Garantie : Empilement des étapes et masquage des flèches */
@media (max-width: 768px) {
  .g-arrow {
    display: none !important;
  }
  .garantie-steps {
    flex-direction: column !important;
    align-items: center !important;
    gap: 2rem !important;
  }
  .g-step {
    max-width: 250px !important;
  }
}

/* 7. Sublimation de la barre de réassurance Hero */
.hero-trust-bar {
  background: #F8FAFC !important;
  border: 1px solid #E2E8F0 !important;
  border-left: 4px solid #2563EB !important;
  border-radius: 12px !important;
  padding: 1rem 1.5rem !important;
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.03) !important;
}

.trust-item {
  color: #4A5568 !important;
}

.trust-item strong {
  color: #1E3A5F !important;
}

/* 8. Contact Row Styles (Déplacement depuis l'inline) */
.contact-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 3rem !important;
  max-width: 1200px !important;
  margin: 2rem auto !important;
  padding: 0 1.5rem !important;
}

@media (max-width: 900px) {
  .contact-row {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}

/* ─── TICKER AVIS INFINI ─── */
.reviews-ticker-wrap {
  width: 100% !important;
  overflow: hidden !important;
  background: #1E3A5F !important;
  padding: 2.5rem 0 !important;
  position: relative !important;
  z-index: 10 !important;
  display: flex !important;
}

/* Gradient overlays on the sides for soft fade effect */
.reviews-ticker-wrap::before,
.reviews-ticker-wrap::after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 150px !important;
  z-index: 2 !important;
  pointer-events: none !important;
}

.reviews-ticker-wrap::before {
  left: 0 !important;
  background: linear-gradient(to right, #1E3A5F 0%, transparent 100%) !important;
}

.reviews-ticker-wrap::after {
  right: 0 !important;
  background: linear-gradient(to left, #1E3A5F 0%, transparent 100%) !important;
}

.reviews-ticker {
  display: flex !important;
  width: max-content !important;
  gap: 2rem !important;
  animation: ticker-slide 35s linear infinite !important;
}

.reviews-ticker:hover {
  animation-play-state: paused !important;
}

.reviews-ticker-card {
  background: #FFFFFF !important;
  border-radius: 16px !important;
  padding: 1.5rem !important;
  width: 320px !important;
  flex-shrink: 0 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

.rtc-stars {
  color: #F5B800 !important;
  font-size: 1.1rem !important;
  margin-bottom: 0.5rem !important;
}

.rtc-text {
  font-size: 0.88rem !important;
  line-height: 1.6 !important;
  color: #334155 !important;
  margin-bottom: 1rem !important;
  font-style: italic !important;
  font-weight: 500 !important;
}

.rtc-author {
  font-size: 0.82rem !important;
  color: #64748B !important;
  border-top: 1px solid #E2E8F0 !important;
  padding-top: 0.75rem !important;
  margin-top: auto !important;
}

.rtc-author strong {
  color: #1E3A5F !important;
}

@keyframes ticker-slide {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Pause animations if user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reviews-ticker {
    animation: none !important;
    overflow-x: auto !important;
    width: 100% !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
  }
  .reviews-ticker-wrap::before,
  .reviews-ticker-wrap::after {
    display: none !important;
  }
}

/* ── Cookie Consent Banner Premium Styling ── */
.cookie-banner-wrap {
  position: fixed !important;
  bottom: 95px !important; /* Float above the floating call bar / Google badge */
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 90% !important;
  max-width: 580px !important;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(30, 58, 95, 0.15) !important;
  box-shadow: 0 10px 30px rgba(30, 58, 95, 0.12) !important;
  border-radius: 16px !important;
  padding: 1.25rem 1.75rem !important;
  z-index: 999999 !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.cookie-banner-content {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 1.5rem !important;
  justify-content: space-between !important;
}

.cookie-banner-content p {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.9rem !important;
  line-height: 1.5 !important;
  color: #334155 !important;
  margin: 0 !important;
  text-align: left !important;
}

.cookie-banner-actions {
  display: flex !important;
  gap: 0.75rem !important;
  flex-shrink: 0 !important;
}

.btn-cookie {
  font-family: 'Rajdhani', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  padding: 0.6rem 1.2rem !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.btn-cookie-accept {
  background: linear-gradient(135deg, #1E3A5F 0%, #2563EB 100%) !important;
  color: #FFFFFF !important;
  border: none !important;
  box-shadow: 0 3px 10px rgba(37,99,235,0.2) !important;
}

.btn-cookie-accept:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 5px 15px rgba(37,99,235,0.3) !important;
}

.btn-cookie-reject {
  background: transparent !important;
  color: #475569 !important;
  border: 1px solid #CBD5E1 !important;
}

.btn-cookie-reject:hover {
  background: rgba(30, 58, 95, 0.05) !important;
  border-color: #94A3B8 !important;
  color: #1E3A5F !important;
}

@media (max-width: 640px) {
  .cookie-banner-wrap {
    bottom: 80px !important;
    padding: 1.25rem !important;
    left: 5% !important;
    transform: none !important;
    width: 90% !important;
  }
  .cookie-banner-content {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 1rem !important;
  }
  .cookie-banner-actions {
    justify-content: flex-end !important;
  }
  .btn-cookie {
    flex: 1 !important;
    text-align: center !important;
  }
}
