/* ════════════════════════════════════════════
   ENT. BANARI — Feuille de style commune
   assets/style.css
════════════════════════════════════════════ */

:root {
  --gold:        #C9A24A;
  --gold-light:  #E8C97A;
  --gold-dark:   #8B6B1F;
  --gold-subtle: rgba(201, 162, 74, 0.12);
  --black:       #0A0A0A;
  --dark:        #111111;
  --dark2:       #1A1A1A;
  --dark3:       #242424;
  --white:       #FFFFFF;
  --gray:        #888888;
  --gray-light:  #CCCCCC;
  --border:      rgba(201, 162, 74, 0.18);
  --t:           0.25s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ─── NAVIGATION ─── */
body > nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center;
  padding: 1.1rem 3rem;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.04em;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo span {
  color: var(--gray); font-size: 0.68rem;
  font-family: 'DM Sans', sans-serif;
  display: block; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 300;
}
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; flex: 1; justify-content: center; }
.nav-links a {
  color: var(--gray-light); text-decoration: none;
  font-size: 0.82rem; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 400;
  transition: color var(--t);
  position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.current { color: var(--gold); }
.nav-links a.current::after { transform: scaleX(1); }

/* ─── DROPDOWN SERVICES ─── */
.nav-item-dropdown { position: relative; }
.dropdown-arrow { font-size: 0.65rem; margin-left: 0.2rem; transition: transform var(--t); display: inline-block; }
.nav-item-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
.nav-subnav {
  display: none;
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  background: rgba(10,10,10,0.98);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  min-width: 200px; list-style: none;
  padding: 0.8rem 0 0.4rem; z-index: 1100;
}
.nav-item-dropdown:hover .nav-subnav { display: block; }
.nav-subnav li { border-bottom: 1px solid rgba(255,255,255,0.04); }
.nav-subnav li:last-child { border-bottom: none; }
.nav-subnav a {
  display: block; padding: 0.65rem 1.2rem;
  font-size: 0.78rem; white-space: nowrap;
  color: var(--gray-light); letter-spacing: 0.08em;
}
.nav-subnav a::after { display: none !important; }
.nav-subnav a:hover { color: var(--gold); background: rgba(201,162,74,0.06); }

.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-cta {
  background: var(--gold); color: var(--black);
  padding: 0.55rem 1.4rem; text-decoration: none;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.04em; transition: background var(--t);
  white-space: nowrap; flex-shrink: 0;
}
.nav-cta:hover { background: var(--gold-light); }
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px 10px; background: none;
  border: 1px solid var(--border); flex-shrink: 0;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: var(--gold); border-radius: 2px;
  transition: all var(--t);
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── BREADCRUMB ─── */
.breadcrumb {
  padding: 5.5rem 2rem 0;
  max-width: 1200px; margin: 0 auto;
  font-size: 0.78rem; color: var(--gray);
  display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
}
.breadcrumb a { color: var(--gray); text-decoration: none; transition: color var(--t); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: rgba(201, 162, 74, 0.35); }
.breadcrumb-current { color: var(--gold-light); }

/* ─── BOUTONS ─── */
.btn-gold {
  background: var(--gold); color: var(--black);
  padding: 0.85rem 1.8rem; text-decoration: none;
  font-weight: 600; font-size: 0.9rem; letter-spacing: 0.04em;
  transition: all var(--t); display: inline-block;
  border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  border: 1px solid var(--border); color: var(--gold-light);
  padding: 0.85rem 1.8rem; text-decoration: none;
  font-weight: 400; font-size: 0.9rem; letter-spacing: 0.04em;
  transition: all var(--t); display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); background: var(--gold-subtle); }
.btn-submit {
  background: var(--gold); color: var(--black); border: none;
  padding: 1rem 2rem; font-family: 'DM Sans', sans-serif;
  font-weight: 700; font-size: 0.88rem; letter-spacing: 0.08em;
  cursor: pointer; transition: background var(--t); text-transform: uppercase;
}
.btn-submit:hover { background: var(--gold-light); }

/* ─── SECTIONS COMMUNES ─── */
section { padding: 5.5rem 0; }
.section-tag {
  font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.9rem; display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 700; line-height: 1.18; color: var(--white);
  margin-bottom: 0.9rem;
}
.section-desc {
  color: var(--gray); font-size: 1rem; line-height: 1.72;
  max-width: 560px; font-weight: 300;
}

/* ─── HOMEPAGE HERO ─── */
#accueil {
  min-height: 100vh;
  padding: 9rem 0 5rem;
  position: relative; overflow: hidden;
}
#accueil .container { position: relative; z-index: 1; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 70% at 75% 50%, rgba(201,162,74,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 30% 40% at 20% 80%, rgba(201,162,74,0.04) 0%, transparent 60%);
}
.hero-content {
  position: relative; z-index: 1;
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.hero-content.fading { opacity: 0; transform: translateY(12px); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--border);
  padding: 0.4rem 1rem; margin-bottom: 1.8rem;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  font-weight: 900; line-height: 1.05; color: var(--white);
}
.hero-title em { color: var(--gold); font-style: normal; }
.hero-subtitle {
  font-size: 1.05rem; color: var(--gray); line-height: 1.75;
  margin: 1.4rem 0 2.2rem; max-width: 500px; font-weight: 300;
}
.hero-actions {
  display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
}
.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.06);
}
/* ─── HERO SLIDER DOTS ─── */
.hero-dots {
  display: flex; gap: 0.55rem; margin-top: 2.2rem; align-items: center;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 4px;
  background: rgba(201,162,74,0.3); border: none;
  cursor: pointer; transition: all 0.35s ease; padding: 0;
}
.hero-dot.active { width: 26px; background: var(--gold); }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; color: var(--gold); font-weight: 700; line-height: 1;
}
.stat-label {
  font-size: 0.72rem; color: var(--gray);
  letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.3rem;
}
.hero-visual {
  position: relative; z-index: 1;
  display: flex; justify-content: center; align-items: center;
}
.hero-ring {
  width: 360px; height: 360px;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: pulse-ring 5s ease-in-out infinite;
}
.hero-ring-inner {
  width: 275px; height: 275px;
  background: var(--dark2); border-radius: 50%;
  border: 1px solid rgba(201,162,74,0.28);
  transition: opacity 0.3s ease;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.4rem;
}
.ring-icon { font-size: 5rem; line-height: 1; }
.ring-name { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--gold); font-weight: 700; }
.ring-sub { font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gray); }

/* ─── HOME : GRILLE SERVICES ─── */
#services { background: var(--dark); padding: 5.5rem 0; }
.services-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2.5rem; align-items: end; margin-bottom: 3rem;
}
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
}
.service-card {
  background: var(--dark2); padding: 2rem 1.5rem;
  text-decoration: none; color: inherit; display: block;
  transition: background var(--t); position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
}
.service-card:hover { background: var(--dark3); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon { font-size: 2rem; margin-bottom: 0.9rem; display: block; }
.service-name { font-weight: 600; font-size: 1rem; color: var(--white); margin-bottom: 0.45rem; }
.service-desc { font-size: 0.82rem; color: var(--gray); line-height: 1.62; }
.service-arrow {
  display: inline-block; font-size: 0.78rem; color: var(--gold);
  margin-top: 0.9rem; opacity: 0;
  transition: opacity var(--t), transform var(--t);
}
.service-card:hover .service-arrow { opacity: 1; transform: translateX(4px); }

/* ─── HOME : À PROPOS ─── */
#apropos { background: var(--black); padding: 5.5rem 0; }

.about-img-box {
  width: 100%; aspect-ratio: 4/5;
  background: var(--dark2); border: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.about-img-box img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.about-img-box:hover img { transform: scale(1.04); }
.about-img-box::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,162,74,0.04) 0%, transparent 65%);
}
.about-wrap { position: relative; }
.about-accent {
  position: absolute; bottom: -1.2rem; right: -1.2rem;
  width: 170px; height: 110px; background: var(--gold); z-index: -1;
}
.about-badge {
  position: absolute; top: 1.5rem; left: -1.5rem;
  background: var(--gold); color: var(--black);
  padding: 0.9rem 1.1rem; font-weight: 700; font-size: 0.82rem; line-height: 1.4;
}
.about-features { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2.2rem; }
.about-feat {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 1.1rem; border: 1px solid rgba(255,255,255,0.05);
  transition: border-color var(--t);
}
.about-feat:hover { border-color: var(--border); }
.feat-icon { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; margin-top: 0.2rem; }
.feat-title { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.3rem; }
.feat-text { font-size: 0.82rem; color: var(--gray); line-height: 1.55; }

/* ─── ZONE D'INTERVENTION ─── */
#zone, .zone-section {
  background: var(--dark); text-align: center; padding: 5.5rem 0;
}
#zone .section-title, #zone .section-desc,
.zone-section .section-title, .zone-section .section-desc {
  margin-left: auto; margin-right: auto;
}
.zone-cities {
  display: flex; flex-wrap: wrap; gap: 0.7rem;
  justify-content: center; margin-top: 2.5rem;
}
.city-tag {
  border: 1px solid var(--border); color: var(--gold-light);
  padding: 0.45rem 1.1rem; font-size: 0.85rem;
  transition: all var(--t); cursor: pointer;
  text-decoration: none; display: inline-block;
}
.city-tag:hover { background: var(--gold-subtle); border-color: var(--gold); color: var(--gold); }
.city-tag.main { background: var(--gold); color: var(--black); font-weight: 600; border-color: var(--gold); }
.city-tag.main:hover { background: var(--gold-light); color: var(--black); }

/* ─── SERVICE PAGE : HERO ─── */
.svc-hero {
  padding: 3.5rem 0 5rem;
  background: var(--dark);
  position: relative; overflow: hidden;
}
.svc-hero .container { position: relative; z-index: 1; }
.svc-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(201,162,74,0.06) 0%, transparent 70%);
}
.svc-hero-content { position: relative; z-index: 1; }
.svc-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 900; line-height: 1.1; color: var(--white); margin-bottom: 1.2rem;
}
.svc-hero h1 em { color: var(--gold); font-style: normal; }
.svc-hero p {
  font-size: 1.05rem; color: var(--gray); line-height: 1.72;
  max-width: 580px; font-weight: 300; margin-bottom: 2rem;
}
.svc-hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.svc-hero-visual {
  width: 210px; height: 210px; flex-shrink: 0;
  background: var(--dark2); border: 1px solid var(--border); border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  animation: pulse-ring 5s ease-in-out infinite;
}
.svc-hero-icon { font-size: 4rem; line-height: 1; }
.svc-hero-label {
  font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-top: 0.6rem; text-align: center;
}

/* ─── SERVICE PAGE : DÉTAIL PRESTATIONS ─── */
.svc-detail { padding: 5.5rem 0; background: var(--black); }
.svc-detail-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.svc-detail-card {
  background: var(--dark2); padding: 1.8rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.05);
  transition: border-color var(--t);
}
.svc-detail-card:hover { border-color: var(--border); }
.svc-detail-icon { font-size: 1.8rem; margin-bottom: 0.8rem; display: block; }
.svc-detail-card h3 { font-weight: 600; font-size: 1rem; margin-bottom: 0.5rem; color: var(--white); }
.svc-detail-card p { font-size: 0.83rem; color: var(--gray); line-height: 1.62; }

/* ─── SERVICE PAGE : POURQUOI NOUS ─── */
.svc-why { padding: 5.5rem 0; background: var(--dark); }
.svc-why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 3rem;
}
.svc-why-card {
  background: var(--dark2); padding: 2rem;
  border-left: 2px solid var(--gold);
}
.svc-why-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; color: var(--gold); font-weight: 700; margin-bottom: 0.8rem;
}
.svc-why-card h3 { font-weight: 600; font-size: 1rem; margin-bottom: 0.5rem; }
.svc-why-card p { font-size: 0.83rem; color: var(--gray); line-height: 1.6; }

/* ─── SERVICE PAGE : AUTRES SERVICES ─── */
.svc-other { padding: 5.5rem 0; background: var(--black); }
.svc-other-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border); margin-top: 3rem;
}
.svc-other-link {
  background: var(--dark2); padding: 1.5rem 1.2rem;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: 0.5rem;
  transition: background var(--t); position: relative; overflow: hidden;
}
.svc-other-link::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
}
.svc-other-link:hover { background: var(--dark3); }
.svc-other-link:hover::after { transform: scaleX(1); }
.svc-other-icon { font-size: 1.5rem; }
.svc-other-name { font-weight: 600; font-size: 0.9rem; color: var(--white); }
.svc-other-arr {
  font-size: 0.75rem; color: var(--gold); margin-top: auto;
  opacity: 0; transition: opacity var(--t), transform var(--t);
}
.svc-other-link:hover .svc-other-arr { opacity: 1; transform: translateX(4px); }

/* ─── SECTION AVIS GOOGLE ─── */
.avis-section { padding: 5rem 0; background: var(--dark); text-align: center; }
.avis-inner { display: flex; align-items: center; justify-content: center; gap: 4rem; margin-top: 2.5rem; flex-wrap: wrap; }
.avis-qr { width: 220px; height: auto; border-radius: 12px; flex-shrink: 0; }
.avis-cta-wrap { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.stars-display { color: var(--gold); font-size: 2.2rem; letter-spacing: 4px; }
.avis-note { color: var(--gray-light); font-size: 0.95rem; }
.btn-avis {
  display: inline-block; background: var(--gold); color: var(--black);
  font-weight: 700; padding: 0.9rem 2.2rem; border-radius: 6px;
  text-decoration: none; font-size: 1rem;
  transition: opacity var(--t); letter-spacing: 0.03em;
}
.btn-avis:hover { opacity: 0.78; }
.avis-hint { font-size: 0.78rem; color: var(--gray); }

/* ─── BANDEAU CTA ─── */
.cta-band { background: var(--gold); padding: 3rem 0; }
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-band-text { color: var(--black); }
.cta-band-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem; font-weight: 700; margin-bottom: 0.3rem;
}
.cta-band-text p { font-size: 0.95rem; opacity: 0.72; }
.cta-band-phone {
  color: var(--black); text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 900; white-space: nowrap;
  transition: opacity var(--t);
}
.cta-band-phone:hover { opacity: 0.65; }

/* ─── FORMULAIRE DE CONTACT ─── */
#contact { padding: 5.5rem 0; background: var(--black); }
.contact-section { padding: 5.5rem 0; background: var(--black); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.4rem; margin-top: 2rem; }
.contact-item {
  display: flex; gap: 1.1rem; align-items: flex-start;
  padding: 1.3rem 1.2rem; background: var(--dark2);
  border-left: 2px solid var(--gold);
}
.contact-icon { color: var(--gold); font-size: 1.3rem; flex-shrink: 0; margin-top: 0.15rem; }
.contact-label {
  font-size: 0.68rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gray); margin-bottom: 0.3rem;
}
.contact-value { font-size: 1.05rem; font-weight: 500; }
.contact-value a { color: var(--white); text-decoration: none; transition: color var(--t); }
.contact-value a:hover { color: var(--gold); }
.contact-form { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label {
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--dark2); border: 1px solid rgba(255,255,255,0.07);
  color: var(--white); padding: 0.82rem 1rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  transition: border-color var(--t); resize: none;
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { outline: none; border-color: rgba(201, 162, 74, 0.45); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.18); }
.form-group select option { background: var(--dark2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.form-note { font-size: 0.74rem; color: var(--gray); margin-top: 0.4rem; }

/* ─── FOOTER ─── */
footer {
  background: var(--dark); padding: 2rem 0;
  border-top: 1px solid rgba(201,162,74,0.08);
}
.footer-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--gold); text-decoration: none;
}
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a {
  font-size: 0.8rem; color: var(--gray);
  text-decoration: none; transition: color var(--t);
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.2rem; font-size: 0.78rem; color: var(--gray);
  gap: 1rem; flex-wrap: wrap;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,162,74,0.08); }
  50%      { box-shadow: 0 0 0 22px rgba(201,162,74,0.03); }
}

/* ─── FAQ ─── */
.svc-faq { padding: 5.5rem 0; background: var(--black); }
.faq-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 1px; background: var(--border); }
.faq-item { background: var(--dark2); padding: 1.8rem 2rem; transition: background var(--t); }
.faq-item:hover { background: var(--dark3); }
.faq-q {
  font-weight: 600; font-size: 0.98rem; color: var(--white);
  margin-bottom: 0.7rem; padding-left: 1rem;
  border-left: 2px solid var(--gold);
}
.faq-a { font-size: 0.88rem; color: var(--gray); line-height: 1.72; padding-left: 1rem; }


/* ─── RESPONSIVE 1024px ─── */
@media (max-width: 1024px) {
  body > nav { padding: 1rem 2rem; }
  .nav-links { gap: 1.5rem; }

  .services-grid, .svc-other-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-detail-grid, .svc-why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { gap: 3rem; }
  .cta-band { padding: 2rem 0; }
  footer { padding: 1.5rem 0; }

  .hero-ring { width: 300px; height: 300px; }
  .hero-ring-inner { width: 230px; height: 230px; }
}

/* ─── RESPONSIVE 768px ─── */
@media (max-width: 768px) {
  body > nav { padding: 1rem 1.2rem; }
  .nav-links {
    display: flex;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    flex-direction: column; gap: 0;
    border-bottom: 1px solid var(--border);
    opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }
  .nav-links.open {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateY(0);
  }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.04); }
  .nav-links a {
    display: block; padding: 1rem 1.5rem; font-size: 0.9rem;
    padding-bottom: 1rem; /* reset underline padding for mobile */
  }
  .nav-links a::after { display: none; } /* pas d'underline sur mobile */
  .nav-burger { display: flex; }

  #accueil { padding: 7rem 0 3.5rem; }
  .hero-visual { display: none; }
  .hero-stats { gap: 1.8rem; }

  .avis-inner { gap: 2rem; }
  .avis-qr { width: 180px; }
  .cta-band { padding: 1.5rem 0; }
  .services-header { grid-template-columns: 1fr; gap: 1rem; margin-bottom: 2rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-other-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-hero { padding-top: 3rem; }
  .svc-hero-visual { display: none; }
  .svc-detail-grid, .svc-why-grid { grid-template-columns: 1fr; }
  .about-accent { display: none; }
  .about-badge { left: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band .container { flex-direction: column; text-align: center; }
  .cta-band-phone { font-size: 1.6rem; }
  footer { padding: 1.5rem 0; }
  .footer-top { flex-direction: column; text-align: center; gap: 1rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .breadcrumb { padding: 5.5rem 1.2rem 0; }

  /* Dropdown mobile : inline dans le menu burger */
  .nav-item-dropdown:hover .nav-subnav { display: none; }
  .nav-item-dropdown.open .nav-subnav { display: block; }
  .nav-subnav {
    position: static; transform: none;
    background: rgba(5,5,5,0.98); border: none;
    border-top: 1px solid rgba(255,255,255,0.04);
    min-width: 0; width: 100%;
  }
  .nav-subnav a { padding: 0.8rem 2.5rem; }
  .nav-item-dropdown.open .dropdown-arrow { transform: rotate(180deg); }
}

/* ─── GALERIE RÉALISATIONS ─── */
.gallery-section { padding: 5.5rem 0; background: var(--dark); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.gallery-card {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3; background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.05);
}
.gallery-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.gallery-card:hover img { transform: scale(1.06); }
.gallery-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0.7rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: var(--gold-light); font-size: 0.82rem;
  font-weight: 500; letter-spacing: 0.06em;
  transform: translateY(100%); transition: transform 0.3s ease;
}
.gallery-card:hover .gallery-label { transform: translateY(0); }



/* ─── RESPONSIVE 480px ─── */
@media (max-width: 480px) {
  .services-grid, .svc-other-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 1.2rem; }
  .svc-hero-ctas, .hero-actions { flex-direction: column; align-items: flex-start; }
}
