/* ===================================================================
   DDJ RENOV — Premium Stylesheet
   Design: Dark/Light Mode | Gold & Black | Mobile First
   =================================================================== */

/* ─── Variables ─────────────────────────────────────────────────── */
:root {
  --gold:          #C89B52;
  --gold-light:    #D4AD6A;
  --gold-dark:     #A07830;
  --black:         #0B0B0B;
  --anthracite:    #232323;
  --white:         #FFFFFF;
  --gray-light:    #F5F5F5;
  --gray-mid:      #9A9A9A;
  --transition:    all .35s ease;
  --radius:        12px;
  --shadow-sm:     0 4px 15px rgba(0,0,0,.12);
  --shadow-md:     0 8px 30px rgba(0,0,0,.18);
  --shadow-lg:     0 16px 50px rgba(0,0,0,.25);
  --font-primary:  'Poppins', sans-serif;
  --font-heading:  'Playfair Display', serif;
}

/* Dark Mode (default) */
[data-theme="dark"] {
  --bg-body:       #0B0B0B;
  --bg-section:    #111111;
  --bg-card:       #1A1A1A;
  --bg-card-hover: #222222;
  --text-primary:  #FFFFFF;
  --text-secondary:#AAAAAA;
  --text-muted:    #666666;
  --border-color:  rgba(200,155,82,.15);
  --nav-bg:        rgba(11,11,11,.95);
  --overlay:       rgba(0,0,0,.75);
}

/* Light Mode */
[data-theme="light"] {
  --bg-body:       #F5F5F5;
  --bg-section:    #FFFFFF;
  --bg-card:       #FFFFFF;
  --bg-card-hover: #F9F3E8;
  --text-primary:  #111111;
  --text-secondary:#444444;
  --text-muted:    #888888;
  --border-color:  rgba(200,155,82,.25);
  --nav-bg:        rgba(255,255,255,.97);
  --overlay:       rgba(0,0,0,.60);
}

/* ─── Reset & Base ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-primary);
  background-color: var(--bg-body);
  color: var(--text-primary);
  transition: background-color .35s ease, color .35s ease;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; display: block; }

.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 70px 0; }

/* ─── Typography ─────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.25;
  font-weight: 700;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.section-title .highlight {
  color: var(--gold);
  display: block;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-label::before,
.section-label::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 10px;
}

/* ─── Buttons ────────────────────────────────────────────────────── */
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .88rem;
  transition: var(--transition);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(200,155,82,.35);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,155,82,.5);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 12px 34px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .88rem;
  transition: var(--transition);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,155,82,.4);
}

/* ─── Gold Divider ───────────────────────────────────────────────── */
.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.5rem auto;
  border-radius: 2px;
}

/* ─── Navigation ─────────────────────────────────────────────────── */
#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1050;
  padding: 20px 0;
  background: transparent;
  transition: var(--transition);
}

#mainNav.scrolled {
  padding: 12px 0;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,.2);
  border-bottom: 1px solid var(--border-color);
}

.navbar-brand .brand-logo {
  height: 85px;
  width: auto;
  transition: height .3s ease;
}

#mainNav.scrolled .navbar-brand .brand-logo { height: 85px; }

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .05em;
  transition: var(--transition);
}

#mainNav.scrolled .brand-text { color: var(--text-primary); }

.brand-text span { color: var(--gold); }

.navbar-nav .nav-link {
  color: rgba(255,255,255,.9) !important;
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 8px 14px !important;
  position: relative;
  transition: var(--transition);
}

#mainNav.scrolled .navbar-nav .nav-link { color: var(--text-primary) !important; }

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--gold);
  transition: all .3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 70%; }

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--gold) !important; }

/* Theme Toggle */
.theme-toggle {
  background: none;
  border: 1px solid rgba(200,155,82,.4);
  border-radius: 50px;
  padding: 6px 14px;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
}

.theme-toggle:hover { background: rgba(200,155,82,.12); border-color: var(--gold); }

/* Bouton social navbar */
.nav-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50px;
  border: 1px solid rgba(200,155,82,.4);
  color: var(--gold);
  font-size: 1rem;
  transition: var(--transition);
  background: none;
  flex-shrink: 0;
}
.nav-social-btn:hover { background: rgba(200,155,82,.12); border-color: var(--gold); color: var(--gold); }

/* Logo droit navbar */
.navbar-logo-right {
  height: 36px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  display: block;
}

.icon-sun, .icon-moon { line-height: 1; }

[data-theme="dark"]  .icon-sun  { display: inline; }
[data-theme="dark"]  .icon-moon { display: none; }
[data-theme="light"] .icon-sun  { display: none; }
[data-theme="light"] .icon-moon { display: inline; }

/* Toggler mobile */
.navbar-toggler {
  border: 1px solid rgba(200,155,82,.4);
  border-radius: 6px;
  padding: 6px 10px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(200, 155, 82, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ─── Hero Section ───────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

#hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,11,11,.88) 0%,
    rgba(11,11,11,.65) 50%,
    rgba(11,11,11,.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,155,82,.15);
  border: 1px solid rgba(200,155,82,.35);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  animation: fadeInDown .8s ease both;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1rem;
  animation: fadeInUp .8s ease .2s both;
}

.hero-title .brand { color: var(--gold); }

.hero-tagline {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,.8);
  font-weight: 300;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  animation: fadeInUp .8s ease .35s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeInUp .8s ease .5s both;
}

.hero-reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 3rem;
  animation: fadeInUp .8s ease .65s both;
}

.hero-reassurance-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
}

.hero-reassurance-item i { color: var(--gold); font-size: 1.1rem; }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
  animation: bounce 2s infinite;
  cursor: pointer;
}

.hero-scroll i { display: block; font-size: 1.5rem; margin-bottom: 4px; color: var(--gold); }

.hero-stats {
  position: absolute;
  bottom: 0; right: 0;
  display: flex;
  gap: 1px;
  background: var(--border-color);
}

.hero-stat-item {
  background: rgba(11,11,11,.85);
  backdrop-filter: blur(10px);
  padding: 20px 28px;
  text-align: center;
  border-top: 2px solid var(--gold);
}

.hero-stat-item .num {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-heading);
  display: block;
}

.hero-stat-item .lbl {
  font-size: .7rem;
  color: rgba(255,255,255,.7);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ─── Services Section ───────────────────────────────────────────── */
#services { background: var(--bg-section); }

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform .4s ease;
}

.service-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, rgba(200,155,82,.15), rgba(200,155,82,.05));
  border: 1px solid rgba(200,155,82,.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  color: var(--gold);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(200,155,82,.4);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-family: var(--font-primary);
  font-weight: 600;
}

.service-card p { color: var(--text-secondary); font-size: .92rem; line-height: 1.65; }

/* ─── Services Infographic ──────────────────────────────────────── */
.services-infographic {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(200,155,82,.3);
  box-shadow: 0 8px 48px rgba(0,0,0,.45);
  background: var(--bg-card);
}

.infographic-img {
  width: 100%;
  height: auto;
  display: block;
}

.infographic-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 20px 24px;
  background: var(--bg-card);
  border-top: 1px solid rgba(200,155,82,.2);
}

.infographic-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: rgba(200,155,82,.08);
  border: 1px solid rgba(200,155,82,.35);
  border-radius: 50px;
  color: var(--text-primary);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background .25s, border-color .25s;
}

.infographic-badge i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.infographic-badge:hover {
  background: rgba(200,155,82,.18);
  border-color: var(--gold);
}

/* ─── Why Us Section ─────────────────────────────────────────────── */
#whyus { background: var(--bg-body); }

/* Image wrap */
.whyus-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  border: 1px solid rgba(200,155,82,.25);
}

.whyus-photo {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform .6s ease;
}

.whyus-img-wrap:hover .whyus-photo { transform: scale(1.03); }

.whyus-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #000;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 10px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(200,155,82,.5);
}

.whyus-img-badge i { font-size: 1rem; }

/* Feature list */
.whyus-feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
}

.whyus-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(200,155,82,.2), rgba(200,155,82,.08));
  border: 1px solid rgba(200,155,82,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: background .25s, transform .25s;
}

.whyus-feature:hover .whyus-feature-icon {
  background: var(--gold);
  color: #000;
  transform: scale(1.08);
}

.whyus-feature h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  line-height: 1.3;
}

.whyus-feature p {
  font-size: .88rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* Counters */
.counters-band {
  background: linear-gradient(135deg, var(--anthracite) 0%, #1A1500 100%);
  border-top: 1px solid rgba(200,155,82,.2);
  border-bottom: 1px solid rgba(200,155,82,.2);
  padding: 60px 0;
}

[data-theme="light"] .counters-band { background: linear-gradient(135deg, #1a1a1a 0%, #2a2000 100%); }

.counter-item { text-align: center; }

.counter-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.counter-label {
  font-size: .85rem;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 6px;
  display: block;
}

/* ─── Réalisations ───────────────────────────────────────────────── */
#realisations { background: var(--bg-section); }

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-primary);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(200,155,82,.35);
}

.gallery-grid {
  position: relative;
}

.gallery-item {
  width: calc(33.33% - 11px);
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: default;
  background: var(--bg-card);
}

@media (max-width: 992px) { .gallery-item { width: calc(50% - 8px); } }
@media (max-width: 576px) { .gallery-item { width: 100%; } }

.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform .5s ease;
  display: block;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay-inner { color: var(--white); }
.gallery-overlay-inner h4 { font-size: 1rem; margin-bottom: 4px; font-family: var(--font-primary); }
.gallery-overlay-inner span { font-size: .8rem; color: var(--gold); text-transform: uppercase; letter-spacing: .05em; }

.gallery-placeholder {
  background: var(--bg-card);
  border: 1px dashed var(--border-color);
  border-radius: var(--radius);
  padding: 60px 20px;
  text-align: center;
  color: var(--text-muted);
}

/* ─── Avant / Après ──────────────────────────────────────────────── */
#before-after { background: var(--bg-body); }

.before-after-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  user-select: none;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.before-after-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.before-after-after {
  position: absolute;
  inset: 0;
  overflow: hidden;
  width: 50%;
  transition: width 0s;
}

.before-after-after img { position: absolute; inset: 0; width: inherit; max-width: none; }

.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--gold);
  cursor: ew-resize;
  transform: translateX(-50%);
  z-index: 10;
}

.ba-handle-circle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(200,155,82,.5);
}

.ba-label {
  position: absolute;
  top: 16px;
  background: rgba(0,0,0,.7);
  color: var(--white);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
}

.ba-label.before { left: 16px; }
.ba-label.after  { right: 16px; }

/* ─── Reviews ────────────────────────────────────────────────────── */
#avis { background: var(--bg-section); }

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 36px;
  height: 100%;
  position: relative;
  transition: var(--transition);
}

.review-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-quote {
  font-size: 3.5rem;
  color: var(--gold);
  opacity: .25;
  line-height: .6;
  font-family: Georgia, serif;
  margin-bottom: 12px;
}

.review-stars { margin-bottom: 16px; }
.review-stars i { font-size: .95rem; }

.review-text {
  color: var(--text-secondary);
  font-size: .95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.review-author { display: flex; align-items: center; gap: 12px; }

.review-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.review-author-name { font-weight: 600; font-size: .95rem; }
.review-author-detail { color: var(--gold); font-size: .8rem; }

/* Carousel controls */
.reviews-carousel .carousel-control-prev,
.reviews-carousel .carousel-control-next {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(200,155,82,.15);
  border: 1px solid rgba(200,155,82,.3);
  top: auto; bottom: -60px;
  position: relative;
  opacity: 1;
}

.reviews-carousel .carousel-control-prev { margin-right: 8px; }
.reviews-carousel .carousel-indicators { bottom: -52px; }
.reviews-carousel .carousel-indicators [data-bs-target] { background: var(--gold); }

/* ─── Zone d'intervention ────────────────────────────────────────── */
#zone { background: var(--bg-body); }

.zone-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
}

.zone-map {
  height: 100%;
  min-height: 320px;
  background: #d8d0c4;
  position: relative;
  overflow: hidden;
}

.zone-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.zone-cities {
  padding: 32px;
}

.city-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: .95rem;
  transition: var(--transition);
}

.city-item:last-child { border-bottom: none; }
.city-item:hover { color: var(--gold); padding-left: 6px; }
.city-item i { color: var(--gold); }

/* ─── Devis Section ──────────────────────────────────────────────── */
#devis { background: var(--bg-section); }

.devis-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: calc(var(--radius) * 1.5);
  padding: 50px;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) { .devis-card { padding: 30px 20px; } }

.form-label {
  color: var(--text-primary);
  font-weight: 500;
  font-size: .9rem;
  margin-bottom: 6px;
}

.form-control,
.form-select {
  background: var(--bg-body);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: .95rem;
  transition: var(--transition);
  font-family: var(--font-primary);
}

.form-control:focus,
.form-select:focus {
  background: var(--bg-body);
  border-color: var(--gold);
  color: var(--text-primary);
  box-shadow: 0 0 0 3px rgba(200,155,82,.15);
}

.form-control::placeholder { color: var(--text-muted); }

.form-select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

/* Drop zone */
.drop-zone {
  border: 2px dashed var(--border-color);
  border-radius: 8px;
  padding: 36px 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
}

.drop-zone.dragover,
.drop-zone:hover {
  border-color: var(--gold);
  background: rgba(200,155,82,.06);
}

.drop-zone i { font-size: 2.5rem; color: var(--gold); margin-bottom: 10px; display: block; }
.drop-zone p { color: var(--text-secondary); margin: 0; font-size: .9rem; }
.drop-zone strong { color: var(--gold); }

#fileList { margin-top: 10px; }

.file-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: rgba(200,155,82,.08);
  border-radius: 6px;
  font-size: .82rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.file-item i { color: var(--gold); }
.file-item .remove-file { margin-left: auto; cursor: pointer; color: var(--text-muted); }
.file-item .remove-file:hover { color: #e05252; }

.devis-info { padding: 20px 0; }

.devis-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.devis-info-item i {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.devis-info-item h5 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; font-family: var(--font-primary); }
.devis-info-item p { color: var(--text-secondary); font-size: .9rem; margin: 0; }

.guarantee-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }

.guarantee-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,155,82,.1);
  border: 1px solid rgba(200,155,82,.25);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: .82rem;
  color: var(--gold);
  font-weight: 500;
}

/* ─── Contact ────────────────────────────────────────────────────── */
#contact { background: var(--bg-body); }

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 40px;
  height: 100%;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
  text-decoration: none;
}

.contact-info-item:last-child { border-bottom: none; }

.contact-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(200,155,82,.15), rgba(200,155,82,.08));
  border: 1px solid rgba(200,155,82,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-info-item:hover .contact-icon {
  background: var(--gold);
  color: var(--white);
}

.contact-info-text { flex: 1; }
.contact-info-text small { color: var(--text-muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; display: block; margin-bottom: 3px; }
.contact-info-text strong { color: var(--text-primary); font-size: 1.05rem; }

/* ─── Footer ─────────────────────────────────────────────────────── */
#footer {
  background: #070707;
  border-top: 1px solid rgba(200,155,82,.15);
}

.footer-top { padding: 70px 0 40px; }

.footer-brand { margin-bottom: 24px; }

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--white);
  font-weight: 700;
}

.footer-brand-name span { color: var(--gold); }

.footer-tagline { color: rgba(255,255,255,.5); font-size: .85rem; margin-top: 4px; }

.footer-desc { color: rgba(255,255,255,.55); font-size: .9rem; line-height: 1.75; max-width: 320px; }

.footer-title {
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--gold);
}

.footer-links { list-style: none; padding: 0; }

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a i { color: var(--gold); font-size: .75rem; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  color: rgba(255,255,255,.55);
  font-size: .9rem;
}

.footer-contact-item i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }

.social-links { display: flex; gap: 10px; margin-top: 24px; }

.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-copy { color: rgba(255,255,255,.4); font-size: .82rem; }
.footer-copy span { color: var(--gold); }

.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { color: rgba(255,255,255,.4); font-size: .82rem; }
.footer-legal-links a:hover { color: var(--gold); }

/* ─── Toast Notifications ────────────────────────────────────────── */
.toast-container-custom {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast-msg {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 14px 20px;
  min-width: 280px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  animation: slideInRight .3s ease;
  color: var(--text-primary);
  font-size: .9rem;
}

.toast-msg.success { border-left-color: #28a745; }
.toast-msg.error   { border-left-color: #e05252; }
.toast-msg i { font-size: 1.2rem; }
.toast-msg.success i { color: #28a745; }
.toast-msg.error   i { color: #e05252; }
.toast-msg i:not(.toast-type) { color: var(--gold); }

/* ─── Floating CTA ───────────────────────────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: 24px; left: 24px;
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.floating-cta.visible { opacity: 1; pointer-events: all; }

.floating-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.floating-btn:hover { transform: scale(1.1); }

.floating-btn.phone { background: #25D366; color: var(--white); }
.floating-btn.whatsapp { background: #25D366; color: var(--white); }
.floating-btn.scroll-top { background: var(--gold); color: var(--white); opacity: 0; pointer-events: none; }
.floating-btn.scroll-top.visible { opacity: 1; pointer-events: all; }

.floating-cta-right {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  left: auto !important;
  z-index: 800;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.floating-btn-theme {
  background: var(--bg-card);
  color: var(--gold);
  border: 1px solid rgba(200,155,82,.35) !important;
  font-size: 1.2rem;
}

/* ─── Pages légales (contenu édité via Quill) ───────────────────── */
.page-content h2 {
  color: var(--gold);
  font-size: 1.1rem;
  font-family: var(--font-primary);
  margin: 24px 0 12px;
}
.page-content h2:first-child { margin-top: 0; }
.page-content h3 {
  color: var(--text-primary);
  font-size: 1rem;
  margin: 20px 0 10px;
}
.page-content p  { margin-bottom: .85rem; }
.page-content ul, .page-content ol { padding-left: 1.4rem; margin-bottom: .85rem; }
.page-content a  { color: var(--gold); }
.page-content strong { color: var(--text-primary); }

/* ─── Page Loader ────────────────────────────────────────────────── */
#pageLoader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity .5s ease;
}

#pageLoader.hidden { opacity: 0; pointer-events: none; }

.loader-logo {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--white);
  font-weight: 700;
}

.loader-logo span { color: var(--gold); }

.loader-logo img {
  max-width: 280px;
  max-height: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar-inner {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  width: 0%;
  animation: loadProgress 1.5s ease forwards;
}

/* ─── Animations ─────────────────────────────────────────────────── */
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeInUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
@keyframes bounce { 0%,100% { transform:translateX(-50%) translateY(0); } 50% { transform:translateX(-50%) translateY(-8px); } }
@keyframes slideInRight { from { opacity:0; transform:translateX(30px); } to { opacity:1; transform:translateX(0); } }
@keyframes loadProgress { 0% { width:0%; } 100% { width:100%; } }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }
.reveal-delay-6 { transition-delay: .6s; }

/* ─── Utility ────────────────────────────────────────────────────── */
.text-gold { color: var(--gold) !important; }
.bg-gold   { background: var(--gold) !important; }
.border-gold { border-color: var(--gold) !important; }

.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }

/* ─── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    padding: 20px;
    border-radius: 12px;
    margin-top: 10px;
    border: 1px solid var(--border-color);
  }

  /* Texte lisible quelle que soit le thème (clair ou sombre) */
  .navbar-collapse .navbar-nav .nav-link {
    color: var(--text-primary) !important;
  }
  .navbar-collapse .navbar-nav .nav-link:hover,
  .navbar-collapse .navbar-nav .nav-link.active { color: var(--gold) !important; }

  .hero-stats { display: none; }
  .devis-card { padding: 30px; }
  .section-pad { padding: 70px 0; }
}

@media (max-width: 576px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-gold,
  .hero-actions .btn-outline-gold { width: 100%; justify-content: center; }
  .section-pad { padding: 50px 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal-links { flex-wrap: wrap; justify-content: center; }
}

/* ─── Admin override (import admin CSS separately) ───────────────── */
