/* ===================================================
   RS EVENT'S — Feuille de styles partagée
   =================================================== */

/* ===== VARIABLES ===== */
:root {
  --gold: #C8A217;
  --gold-light: #E8C040;
  --gold-dark: #9A7C10;
  --black: #080808;
  --dark: #111111;
  --dark2: #1a1a1a;
  --dark3: #242424;
  --white: #ffffff;
  --gray: #aaaaaa;
  --gray2: #666666;
  --font-title: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--black); color: var(--white); font-family: var(--font-body); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0; transition: var(--transition);
}
#navbar.scrolled, #navbar.solid {
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(200,162,23,0.2);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--font-title); font-size: 1.4rem; font-weight: 900; letter-spacing: 0.08em; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray); transition: color var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { font-size: 0.78rem; padding: 10px 20px !important; }
/* Fix: forcer le texte noir sur le bouton or de la navbar */
.nav-links a.btn-primary { color: var(--black) !important; }
.nav-links a.btn-primary:hover, .nav-links a.btn-primary:active { color: var(--black) !important; background: var(--gold-light); }
.nav-links a.btn-primary::after { display: none !important; }

/* ===== DROPDOWN NAVBAR ===== */
.nav-dropdown { position: relative; }
.nav-drop-trigger { display: flex !important; align-items: center; gap: 5px; cursor: default; }
.nav-drop-icon { font-size: 0.55rem !important; transition: transform 0.25s ease; margin-top: 1px; }
.nav-dropdown:hover .nav-drop-icon { transform: rotate(180deg); }
.nav-drop-menu {
  position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(8,8,8,0.98); backdrop-filter: blur(24px);
  border: 1px solid rgba(200,162,23,0.25); min-width: 230px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  z-index: 200;
}
.nav-dropdown:hover .nav-drop-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-drop-menu a {
  display: block !important; padding: 11px 22px !important;
  font-size: 0.77rem !important; letter-spacing: 0.07em !important;
  text-transform: uppercase; font-weight: 500 !important;
  color: var(--gray) !important; border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color var(--transition), background var(--transition), padding-left var(--transition) !important;
  white-space: nowrap; position: static !important; width: 100%;
}
.nav-drop-menu a:last-child { border-bottom: none !important; }
.nav-drop-menu a:hover { color: var(--gold) !important; background: rgba(200,162,23,0.07); padding-left: 28px !important; }
.nav-drop-menu a::after { display: none !important; }
.nav-drop-menu a.active { color: var(--gold) !important; }
@media (max-width: 1024px) { .nav-drop-menu { display: none !important; } }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-burger span { width: 24px; height: 2px; background: var(--white); transition: var(--transition); display: block; }

/* ===== MOBILE MENU ===== */
#mobile-menu {
  display: none; position: fixed; inset: 0; background: var(--dark);
  z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
#mobile-menu.open { display: flex; }
#mobile-menu a { font-size: 1.4rem; font-family: var(--font-title); color: var(--white); transition: color var(--transition); }
#mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute; top: 24px; right: 24px;
  font-size: 1.6rem; color: var(--gray); cursor: pointer; transition: color var(--transition);
}
.mobile-close:hover { color: var(--gold); }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== UTILITIES ===== */
.gold { color: var(--gold); }
.section-label {
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; text-align: center; margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; text-align: center;
  margin-bottom: 16px; letter-spacing: 0.02em;
  line-height: 1.15;
}
.section-subtitle {
  text-align: center; color: var(--gray); font-size: 1rem;
  max-width: 580px; margin: 0 auto 56px; line-height: 1.75;
}
.gold-line { width: 52px; height: 2px; background: var(--gold); margin: 14px auto 24px; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--black);
  font-weight: 600; font-size: 0.85rem; padding: 14px 30px;
  letter-spacing: 0.08em; text-transform: uppercase; transition: var(--transition);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,162,23,0.3); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--gold); color: var(--gold);
  font-weight: 600; font-size: 0.85rem; padding: 13px 30px;
  letter-spacing: 0.08em; text-transform: uppercase; transition: var(--transition);
}
.btn-outline:hover { background: var(--gold); color: var(--black); transform: translateY(-2px); }

/* ===== PAGE HEADER (sous-pages) ===== */
.page-header {
  position: relative; height: 340px; display: flex; align-items: flex-end; padding-bottom: 60px;
  margin-top: 0; overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
}
.page-header-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0.35;
}
.page-header-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.9) 0%, rgba(8,8,8,0.4) 100%);
}
.page-header-content { position: relative; z-index: 2; }
.page-header-content .breadcrumb {
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gray); margin-bottom: 16px;
}
.page-header-content .breadcrumb a { color: var(--gold); }
.page-header-content h1 {
  font-family: var(--font-title); font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 700; line-height: 1.08; letter-spacing: 0.005em;
}
.page-header-content h1 span { color: var(--gold); font-style: italic; font-weight: 700; }
.page-header-content h1::after {
  content: ''; display: block; width: 46px; height: 2px;
  background: var(--gold); margin-top: 20px;
}

/* ===== STATS ===== */
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(200,162,23,0.1); }
.stat-item { background: var(--dark); padding: 40px 20px; text-align: center; }
.stat-number { font-family: var(--font-title); font-size: 3rem; font-weight: 900; color: var(--gold); line-height: 1; }
.stat-suffix { color: var(--gold); }
.stat-label { font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray); margin-top: 8px; }

/* ===== CARDS ===== */
.eq-card {
  background: var(--dark); border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden; transition: var(--transition);
}
.eq-card:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.eq-img {
  height: 220px; overflow: hidden; position: relative;
  background: #ffffff; display: flex; align-items: center; justify-content: center;
}
.eq-img img { width: 100%; height: 100%; object-fit: contain; padding: 10px; transition: transform 0.5s ease; }
.eq-card:hover .eq-img img { transform: scale(1.05); }
.eq-img .eq-icon { font-size: 4rem; color: rgba(200,162,23,0.25); transition: var(--transition); }
.eq-card:hover .eq-icon { color: rgba(200,162,23,0.5); }
.eq-body { padding: 24px; }
.eq-tag { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; font-weight: 500; }
.eq-name { font-family: var(--font-title); font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.eq-desc { font-size: 0.88rem; color: var(--gray); line-height: 1.6; margin-bottom: 20px; }
.eq-reserve-btn {
  width: 100%; padding: 11px; background: transparent;
  border: 1px solid var(--gold); color: var(--gold);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  transition: var(--transition); cursor: pointer;
}
.eq-reserve-btn:hover { background: var(--gold); color: var(--black); }

/* ===== EQUIPMENT GRID ===== */
.equipment-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }

/* ===== CAT TABS ===== */
.cat-tabs { display: flex; gap: 4px; justify-content: center; margin-bottom: 48px; flex-wrap: wrap; }
.cat-tab {
  padding: 11px 22px; font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid rgba(200,162,23,0.3); color: var(--gray);
  cursor: pointer; transition: var(--transition); background: none;
}
.cat-tab.active, .cat-tab:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.cat-panel { display: none; }
.cat-panel.active { display: block; }

/* ===== REVIEW CARDS ===== */
.review-card {
  background: var(--dark); border: 1px solid rgba(255,255,255,0.06);
  padding: 28px; transition: var(--transition);
}
.review-card:hover { border-color: rgba(200,162,23,0.3); }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--dark2); border: 2px solid rgba(200,162,23,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-title); font-size: 1.1rem; font-weight: 700; color: var(--gold);
  flex-shrink: 0;
}
.review-author h4 { font-size: 0.9rem; font-weight: 600; }
.review-author span { font-size: 0.75rem; color: var(--gray); }
.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 10px; letter-spacing: 2px; }
.review-text { font-size: 0.88rem; color: var(--gray); line-height: 1.75; font-style: italic; }
.review-platform { display: flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 0.75rem; color: var(--gray2); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }

/* ===== PRESTA CARDS ===== */
.presta-card {
  background: var(--dark2); border: 1px solid rgba(200,162,23,0.12);
  padding: 36px 24px; text-align: center; transition: var(--transition);
  position: relative; overflow: hidden;
}
.presta-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gold); transform: scaleX(0); transition: var(--transition);
}
.presta-card:hover::before { transform: scaleX(1); }
.presta-card:hover { transform: translateY(-4px); border-color: rgba(200,162,23,0.35); }
.presta-card i { font-size: 2.2rem; color: var(--gold); margin-bottom: 18px; }
.presta-card h3 { font-family: var(--font-title); font-size: 1.15rem; margin-bottom: 10px; }
.presta-card p { font-size: 0.87rem; color: var(--gray); line-height: 1.65; }
.presta-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }

/* ===== STEPS ===== */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 38px; left: 12%; right: 12%;
  height: 1px; background: rgba(200,162,23,0.25); z-index: 0;
}
.step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-number {
  width: 76px; height: 76px; border-radius: 50%;
  border: 2px solid var(--gold); background: var(--black);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-title); font-size: 1.7rem; font-weight: 700; color: var(--gold);
}
.step h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; }
.step p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }

/* ===== OPTION CARDS ===== */
.option-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 820px; margin: 0 auto; }
.option-card {
  background: var(--dark); border: 1px solid rgba(200,162,23,0.18);
  padding: 32px; display: flex; gap: 18px; align-items: flex-start;
  transition: var(--transition);
}
.option-card:hover { border-color: var(--gold); }
.option-card > i { font-size: 1.8rem; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.option-card h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; }
.option-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }
.option-badge {
  display: inline-block; background: var(--gold); color: var(--black);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 8px; margin-bottom: 6px;
}

/* ===== FORM ===== */
.form-wrap { background: var(--dark); border: 1px solid rgba(200,162,23,0.15); padding: 44px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-group label { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--dark2); border: 1px solid rgba(255,255,255,0.1);
  color: var(--white); padding: 13px 14px; font-size: 0.9rem; font-family: var(--font-body);
  outline: none; transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { height: 130px; resize: vertical; }
.form-group select option { background: var(--dark2); }
.form-submit { width: 100%; }
.success-msg {
  display: none; text-align: center; padding: 20px;
  border: 1px solid rgba(200,162,23,0.3); margin-top: 16px;
}
.success-msg i { font-size: 1.8rem; color: var(--gold); margin-bottom: 10px; }
.success-msg p { color: var(--gray); font-size: 0.88rem; }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.88);
  backdrop-filter: blur(8px); z-index: 2000;
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--dark); border: 1px solid rgba(200,162,23,0.3);
  max-width: 580px; width: 100%; padding: 44px;
  position: relative; max-height: 90vh; overflow-y: auto;
  animation: modalIn 0.3s ease;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(20px) scale(0.97); } to { opacity: 1; transform: none; } }
.modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2); color: var(--gray);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition); font-size: 1rem;
}
.modal-close:hover { border-color: var(--gold); color: var(--gold); }
.modal h3 { font-family: var(--font-title); font-size: 1.5rem; margin-bottom: 4px; }
.modal-eq-name { color: var(--gold); font-size: 0.85rem; margin-bottom: 24px; display: block; }

/* ===== GALLERY ===== */
.gallery-masonry {
  columns: 4 220px; gap: 10px;
}
.gallery-masonry .gal-item {
  break-inside: avoid; margin-bottom: 10px;
  overflow: hidden; position: relative; cursor: pointer;
  background: var(--dark2);
}
.gallery-masonry .gal-item img { width: 100%; display: block; transition: transform 0.5s ease; }
.gallery-masonry .gal-item:hover img { transform: scale(1.05); }
.gal-overlay {
  position: absolute; inset: 0; background: rgba(200,162,23,0.08);
  opacity: 0; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.gal-overlay i { font-size: 1.8rem; color: var(--gold); }
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 12px; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray); opacity: 0; transition: var(--transition);
}
.gal-item:hover .gal-label { opacity: 1; }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.95);
  z-index: 3000; display: none; align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 20px; right: 20px;
  font-size: 1.6rem; color: var(--gray); cursor: pointer; transition: color var(--transition);
}
.lightbox-close:hover { color: var(--gold); }

/* ===== FIREWORKS PACK CARDS ===== */
.fw-pack {
  background: var(--black); border: 1px solid rgba(200,162,23,0.15);
  overflow: hidden; transition: var(--transition);
}
.fw-pack:hover { border-color: var(--gold); transform: translateY(-4px); }
.fw-pack-header {
  background: linear-gradient(135deg, rgba(200,162,23,0.12), rgba(200,162,23,0.04));
  padding: 28px; text-align: center;
}
.fw-pack-header i { font-size: 2.6rem; color: var(--gold); margin-bottom: 10px; }
.fw-pack-header h3 { font-family: var(--font-title); font-size: 1.15rem; }
.fw-pack-body { padding: 24px; }
.fw-pack-body p { font-size: 0.87rem; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }
.fw-pack-body ul { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.fw-pack-body li { font-size: 0.84rem; color: var(--gray); display: flex; align-items: center; gap: 9px; }
.fw-pack-body li i { color: var(--gold); font-size: 0.65rem; }
.fw-contact-btn {
  width: 100%; padding: 11px; background: transparent;
  border: 1px solid var(--gold); color: var(--gold);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; transition: var(--transition);
}
.fw-contact-btn:hover { background: var(--gold); color: var(--black); }

/* ===== FOOTER ===== */
footer {
  background: var(--dark); border-top: 1px solid rgba(200,162,23,0.12);
  padding: 56px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 44px; }
.footer-logo { font-family: var(--font-title); font-size: 1.5rem; font-weight: 900; margin-bottom: 12px; }
.footer-logo span { color: var(--gold); }
.footer-brand-text { font-size: 0.85rem; color: var(--gray); line-height: 1.7; margin-bottom: 18px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a { color: var(--gray); font-size: 1.1rem; transition: color var(--transition); }
.footer-socials a.fb:hover { color: #1877f2; }
.footer-socials a.ig:hover { color: #e4405f; }
.footer-socials a.tt:hover { color: #fff; }
.footer-socials a.gm:hover { color: #4285f4; }
.footer-socials a.mn:hover { color: #e91e63; }
.footer-col h4 { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 0.84rem; color: var(--gray); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.84rem; color: var(--gray); margin-bottom: 9px; }
.footer-contact li i { color: var(--gold); margin-top: 2px; flex-shrink: 0; width: 14px; }
.footer-contact li a { color: var(--gray); transition: color var(--transition); }
.footer-contact li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 0.78rem; color: var(--gray2); }

/* ===== FADE-UP ANIMATION ===== */
.fade-up { opacity: 0; transform: translateY(36px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: 0.1s; }
.fade-up.d2 { transition-delay: 0.2s; }
.fade-up.d3 { transition-delay: 0.3s; }
.fade-up.d4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .steps-grid::before { display: none; }
  .steps-grid { gap: 28px; }
  .option-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .modal { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .page-header { height: 240px; padding-bottom: 36px; }
  .form-wrap { padding: 28px 20px; }
  .gallery-masonry { columns: 2; gap: 8px; }
  /* Grids */
  .reviews-full-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .container { padding: 0 18px; }
  .hero-sub { line-height: 1.7; }
}

/* ===== ANTI-DÉBORDEMENT MOBILE ===== */
@media (max-width: 560px) {
  html, body { max-width: 100%; overflow-x: hidden; }
  .stats-row { grid-template-columns: 1fr; }
  .platform-bar { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
}

/* ===== CAROUSEL "EXCELLENT" (style l-db.fr) ===== */
#avis-excellent { padding: 0 0 60px; }
.exc-heading {
  font-family: var(--font-title); font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 700; text-align: center; margin-bottom: 48px;
  text-transform: uppercase; line-height: 1.2;
}
.exc-heading span { color: var(--gold); }
/* Layout: flexbox (plus fiable que grid) */
.exc-layout {
  display: flex; gap: 28px; align-items: flex-start;
}
.exc-score-panel {
  flex: 0 0 230px; min-width: 230px;
  background: var(--dark); border: 1px solid rgba(200,162,23,0.2);
  padding: 36px 28px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.exc-score-label { font-family: var(--font-title); font-size: 1.5rem; font-weight: 700; color: var(--white); }
.exc-score-stars { color: var(--gold); font-size: 1.4rem; letter-spacing: 2px; }
.exc-score-count { font-size: 0.8rem; color: var(--gray); line-height: 1.6; }
.exc-google-logo { font-size: 1.15rem; font-weight: 700; margin-top: 4px; }
.exc-right { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 14px; }
.exc-carousel-outer { overflow: hidden; width: 100%; }
.exc-cards-track {
  display: flex; gap: 16px;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
/* Fixed width cards — width set by JS, fallback below */
.exc-card {
  flex: 0 0 280px;
  width: 280px;
  background: var(--dark); border: 1px solid rgba(255,255,255,0.07);
  padding: 22px 20px; display: flex; flex-direction: column; gap: 10px;
  transition: border-color 0.3s; position: relative;
}

.exc-card:hover { border-color: rgba(200,162,23,0.3); }
.exc-card-glogo { position: absolute; top: 14px; right: 14px; font-size: 0.78rem; font-weight: 700; }
.exc-card-top { display: flex; align-items: center; gap: 12px; }
.exc-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: rgba(200,162,23,0.12); border: 1px solid rgba(200,162,23,0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-title); font-size: 1rem; color: var(--gold);
}
.exc-name { font-size: 0.86rem; font-weight: 600; color: var(--white); display: block; }
.exc-date { font-size: 0.73rem; color: var(--gray); display: block; margin-top: 1px; }
.exc-stars-row { display: flex; align-items: center; gap: 8px; }
.exc-stars { color: var(--gold); font-size: 0.88rem; letter-spacing: 1px; }
.exc-verified { color: #4285f4; font-size: 0.78rem; }
.exc-text { font-size: 0.84rem; color: rgba(255,255,255,0.7); line-height: 1.75; font-style: italic; flex: 1; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.exc-nav { display: flex; gap: 8px; justify-content: flex-end; }
.exc-nav-btn {
  width: 42px; height: 42px; border: 1px solid rgba(200,162,23,0.3);
  background: transparent; color: var(--gold); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); font-size: 0.85rem;
}
.exc-nav-btn:hover { background: var(--gold); color: var(--black); }
.exc-nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.exc-nav-btn:disabled:hover { background: transparent; color: var(--gold); }
.btn-google-cta {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--gold); color: var(--black); font-weight: 700;
  font-size: 0.88rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 16px 34px; transition: var(--transition);
}
.btn-google-cta:hover { background: var(--gold-light); transform: translateY(-2px); color: var(--black); }
.exc-cta { text-align: center; margin-top: 36px; }
@media (max-width: 880px) {
  .exc-layout { flex-direction: column; }
  .exc-score-panel { flex: none; width: 100%; flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 18px; padding: 22px; }
  .exc-card { flex: 0 0 calc(50% - 8px); width: calc(50% - 8px); }
}

@media (max-width: 560px) {
  .exc-card { flex: 0 0 260px; width: 260px; }
  .exc-heading { font-size: 1.2rem; margin-bottom: 28px; }
}

/* ===== FORM CONSENT (RGPD) ===== */
.form-consent { margin-top: 8px; }
.consent-label { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.consent-label input[type=checkbox] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--gold); cursor: pointer; }
.consent-label span { font-size: 0.82rem; color: var(--gray); line-height: 1.6; }
.consent-label span a { color: var(--gold); text-decoration: underline; }
.consent-label span a:hover { color: var(--gold-light); }

/* Privacy modal */
.privacy-modal {
  display: none; position: fixed; inset: 0; z-index: 9998;
  background: rgba(0,0,0,0.85); align-items: flex-start; justify-content: center;
  padding: 40px 16px; overflow-y: auto;
}
.privacy-modal.open { display: flex; }
.privacy-modal-box {
  background: var(--dark); border: 1px solid rgba(200,162,23,0.25);
  max-width: 760px; width: 100%; padding: 48px 44px; position: relative;
  max-height: 80vh; overflow-y: auto;
}
.privacy-modal-close {
  position: absolute; top: 16px; right: 20px; font-size: 1.4rem;
  color: var(--gray); cursor: pointer; background: none; border: none; transition: color var(--transition);
}
.privacy-modal-close:hover { color: var(--gold); }
.privacy-modal-box h2 { font-family: var(--font-title); font-size: 1.5rem; margin-bottom: 24px; }
.privacy-modal-box h3 { font-size: 0.92rem; font-weight: 700; color: var(--gold); margin: 22px 0 10px; text-transform: uppercase; letter-spacing: 0.07em; }
.privacy-modal-box p, .privacy-modal-box li { font-size: 0.85rem; color: var(--gray); line-height: 1.8; margin-bottom: 8px; }
.privacy-modal-box ol { padding-left: 20px; }
@media (max-width: 600px) { .privacy-modal-box { padding: 32px 20px; } }

/* ===== AVIS GOOGLE — CARROUSEL MAISON (style Google) ===== */
.gr-reviews { width: 100%; }
.gr-bar {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
  background: var(--dark); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px; padding: 16px 22px; margin-bottom: 18px;
}
.gr-bar-left { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.gr-wordmark { font-family: var(--font-body); font-weight: 600; font-size: 1.35rem; letter-spacing: -0.5px; display: inline-flex; }
.gr-excellent { font-size: 0.95rem; color: var(--white); font-weight: 500; }
.gr-bar-stars { color: #FBBC05; font-size: 1.05rem; letter-spacing: 1px; }
.gr-bar-score { color: var(--white); font-weight: 700; }
.gr-bar-count { color: var(--gray); font-size: 0.92rem; }
.gr-write {
  border: 1px solid rgba(255,255,255,0.25); color: var(--white);
  padding: 10px 22px; border-radius: 8px; font-size: 0.85rem; font-weight: 500;
  transition: var(--transition); white-space: nowrap;
}
.gr-write:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.gr-track-wrap { position: relative; }
.gr-track {
  display: flex; gap: 16px; overflow-x: auto;
  scroll-behavior: smooth; padding: 4px 2px 14px; scrollbar-width: none;
  cursor: grab; -webkit-overflow-scrolling: touch;
}
.gr-track.gr-grabbing { cursor: grabbing; scroll-behavior: auto; user-select: none; }
.gr-track::-webkit-scrollbar { display: none; }
.gr-card {
  flex: 0 0 calc((100% - 32px) / 3);
  background: var(--dark2); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px; padding: 20px; display: flex; flex-direction: column; gap: 10px;
  transition: border-color 0.3s;
}
.gr-card:hover { border-color: rgba(200,162,23,0.3); }
.gr-card-top { display: flex; align-items: flex-start; gap: 12px; position: relative; }
.gr-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: rgba(200,162,23,0.12); border: 1px solid rgba(200,162,23,0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-title); font-size: 1.05rem; color: var(--gold);
}
.gr-meta { display: flex; flex-direction: column; min-width: 0; }
.gr-name { font-size: 0.92rem; font-weight: 600; color: var(--white); }
.gr-date { font-size: 0.76rem; color: var(--gray); margin-top: 1px; }
.gr-card-top .gr-gicon { position: absolute; top: 2px; right: 0; }
.gr-cstars { display: flex; align-items: center; gap: 8px; color: #FBBC05; font-size: 0.98rem; letter-spacing: 1px; }
.gr-verified { color: #4285F4; font-size: 0.85rem; }
.gr-text { font-size: 0.88rem; color: rgba(255,255,255,0.75); line-height: 1.65; }
.gr-text.clamp { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.gr-more { color: var(--gray); font-size: 0.82rem; cursor: pointer; margin-top: 2px; }
.gr-more:hover { color: var(--gold); }
.gr-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(200,162,23,0.35); background: rgba(8,8,8,0.92);
  color: var(--gold); font-size: 0.9rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  position: absolute; top: 42%; transform: translateY(-50%); z-index: 5; transition: var(--transition);
}
.gr-btn:hover { background: var(--gold); color: var(--black); }
.gr-prev { left: -10px; }
.gr-next { right: -10px; }
@media (max-width: 900px) { .gr-card { flex: 0 0 calc((100% - 16px) / 2); } .gr-btn { display: none; } }
@media (max-width: 600px) { .gr-card { flex: 0 0 86%; } }

/* SociableKit — rendre le fond transparent pour coller au thème sombre.
   (Le thème du widget se règle aussi dans le tableau de bord SociableKit → Customize → Background) */
#avis-google-widget { background: var(--black); }
.sk-ww-google-reviews,
.sk-ww-google-reviews > div,
.sk-ww-google-reviews [class*="powered"],
.sk-ww-google-reviews [class*="container"],
.sk-ww-google-reviews [class*="widget"] { background: transparent !important; }

/* ===================================================
   BOUTON THÈME (jour / nuit)
   =================================================== */
.theme-toggle {
  display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0;
  height: 38px; padding: 0 16px; border-radius: 20px;
  border: 1px solid rgba(200,162,23,0.4); background: transparent; color: var(--gold);
  cursor: pointer; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.05em;
  text-transform: uppercase; transition: var(--transition);
  order: 9; margin-left: 14px;
}
.theme-toggle:hover { background: var(--gold); color: var(--black); }
.nav-logo { margin-right: auto; order: 0; }
.nav-links { order: 1; }
.nav-burger { order: 10; }
@media (max-width: 480px) { .theme-toggle { padding: 0 12px; font-size: 0.72rem; } }

/* ===================================================
   MODE JOUR (thème clair)
   =================================================== */
html[data-theme="light"] {
  --black: #ffffff;
  --dark: #f4f4f5;
  --dark2: #ececed;
  --dark3: #e2e2e5;
  --white: #17181a;
  --gray: #55585e;
  --gray2: #83868d;
  --gold: #9A7C10;
  --gold-light: #b8940f;
}
html[data-theme="light"] body { background: #ffffff; color: #17181a; }

/* Navbar & menu clairs */
html[data-theme="light"] #navbar.scrolled,
html[data-theme="light"] #navbar.solid {
  background: rgba(255,255,255,0.92); border-bottom: 1px solid rgba(0,0,0,0.08);
}
html[data-theme="light"] .nav-burger span { background: #17181a; }
html[data-theme="light"] #mobile-menu { background: #ffffff; }

/* Bordures blanches translucides -> sombres */
html[data-theme="light"] .eq-card,
html[data-theme="light"] .info-card,
html[data-theme="light"] .review-card,
html[data-theme="light"] .review-full,
html[data-theme="light"] .platform-card,
html[data-theme="light"] .about-card-mini,
html[data-theme="light"] .gr-card,
html[data-theme="light"] .gr-bar,
html[data-theme="light"] .cta-leave-review,
html[data-theme="light"] .contact-form-wrap,
html[data-theme="light"] .info-band-item,
html[data-theme="light"] .stat-item,
html[data-theme="light"] .service-link-card,
html[data-theme="light"] .exc-card,
html[data-theme="light"] .exc-score-panel,
html[data-theme="light"] .filter-btn,
html[data-theme="light"] .cat-tab,
html[data-theme="light"] .masonry-item,
html[data-theme="light"] .form-group input,
html[data-theme="light"] .form-group select,
html[data-theme="light"] .form-group textarea,
html[data-theme="light"] .cal-trigger,
html[data-theme="light"] .wiz-chip { border-color: rgba(0,0,0,0.14); }

/* Textes blancs translucides -> sombres */
html[data-theme="light"] .gr-text,
html[data-theme="light"] .review-text,
html[data-theme="light"] .exc-text { color: rgba(0,0,0,0.68) !important; }

/* Séparateurs (lignes) */
html[data-theme="light"] .footer-bottom { border-top-color: rgba(0,0,0,0.1); }
html[data-theme="light"] .review-detail { border-top-color: rgba(0,0,0,0.08); }
html[data-theme="light"] .section-divider::before,
html[data-theme="light"] .section-divider::after { background: rgba(0,0,0,0.1); }

/* Textes qui restent BLANCS car posés sur des photos sombres */
html[data-theme="light"] .hero-title,
html[data-theme="light"] .page-header-content h1 { color: #ffffff; }
html[data-theme="light"] .hero-sub,
html[data-theme="light"] .hero-tag,
html[data-theme="light"] .scroll-down,
html[data-theme="light"] .page-header-content .breadcrumb { color: rgba(255,255,255,0.8); }
html[data-theme="light"] .page-header-content .breadcrumb a { color: var(--gold-light); }

/* Le catalogue garde ses vignettes blanches (déjà fond blanc) — OK */

/* Sections à fond sombre codé en dur (prestations & feux) -> clair */
html[data-theme="light"] #steps-section,
html[data-theme="light"] #options-section,
html[data-theme="light"] #packs-section,
html[data-theme="light"] #faq-section,
html[data-theme="light"] #infos-section { background: #f4f4f5; }

/* Textes blancs codés en dur dans ces sections -> sombres */
html[data-theme="light"] .option-list li,
html[data-theme="light"] .pack-features li { color: rgba(0,0,0,0.74); }
html[data-theme="light"] .step-item p,
html[data-theme="light"] .step-item h4,
html[data-theme="light"] .option-card > p,
html[data-theme="light"] .option-card h3,
html[data-theme="light"] .pack-body > p,
html[data-theme="light"] .pack-body h3,
html[data-theme="light"] .faq-q span,
html[data-theme="light"] .faq-a p { color: #17181a; }
html[data-theme="light"] .step-item p,
html[data-theme="light"] .option-card > p,
html[data-theme="light"] .pack-body > p,
html[data-theme="light"] .faq-a p { color: #55585e; }

/* Bordures & fonds de cartes de ces sections */
html[data-theme="light"] .presta-card,
html[data-theme="light"] .option-card,
html[data-theme="light"] .pack-card,
html[data-theme="light"] .faq-item,
html[data-theme="light"] .step-num { border-color: rgba(0,0,0,0.14); }
html[data-theme="light"] .step-num { background: #ffffff; }
html[data-theme="light"] .faq-q:hover { background: rgba(0,0,0,0.03); }
html[data-theme="light"] .faq-item.open .faq-q { background: rgba(200,162,23,0.08); }

/* ===================================================
   NAVIGATION & MENU — améliorations UX
   =================================================== */
/* Onglets desktop : cibles plus grandes, hover en pastille discrète */
.nav-links a:not(.btn-primary) {
  padding: 8px 12px; border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:not(.btn-primary):hover { background: rgba(200,162,23,0.08); }
.nav-links a:not(.btn-primary)::after { bottom: 2px; left: 12px; }
.nav-links a:not(.btn-primary):hover::after,
.nav-links a:not(.btn-primary).active::after { width: calc(100% - 24px); }
.nav-cta { border-radius: 8px; }

/* Espace entre le bouton thème et le burger (tablette + mobile) */
@media (max-width: 1024px) { .theme-toggle { margin-right: 16px; } }

/* Menu mobile : liste plein écran, cibles larges, séparateurs discrets */
#mobile-menu {
  justify-content: flex-start; gap: 0; padding: 96px 26px 40px;
}
#mobile-menu a {
  width: 100%; max-width: 360px; text-align: center;
  padding: 18px 0; font-size: 1.3rem;
  border-bottom: 1px solid rgba(200,162,23,0.12);
}
#mobile-menu a:last-child { border-bottom: none; }
html[data-theme="light"] #mobile-menu a { border-bottom-color: rgba(0,0,0,0.08); }

/* Feux d'artifice : textes blancs codés en dur -> lisibles en thème clair */
html[data-theme="light"] .agrement-band p { color: rgba(0,0,0,0.78); }
html[data-theme="light"] .pack-duration { color: rgba(255,255,255,0.85); }

/* ===== CARROUSEL PACKS AUTONOMES (location) ===== */
.pc { position: relative; height: 260px; overflow: hidden; background: #fff; }
.pc-track { display: flex; height: 100%; transition: transform .5s cubic-bezier(0.4,0,0.2,1); }
.pc-track img { min-width: 100%; width: 100%; height: 100%; object-fit: contain; padding: 12px; }
.pc-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; border-radius: 50%; background: rgba(8,8,8,0.55); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; border: none; z-index: 2; font-size: .85rem; transition: background .2s; }
.pc-arrow:hover { background: var(--gold); color: #000; }
.pc-prev { left: 10px; }
.pc-next { right: 10px; }
.pc-dots { position: absolute; bottom: 10px; left: 0; right: 0; display: flex; gap: 6px; justify-content: center; z-index: 2; }
.pc-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(0,0,0,0.28); cursor: pointer; transition: background .2s; }
.pc-dots span.active { background: var(--gold); }
.pack-list { list-style: none; margin: 0 0 16px; display: flex; flex-direction: column; gap: 6px; }
.pack-list li { font-size: .84rem; color: var(--gray); display: flex; gap: 9px; align-items: flex-start; line-height: 1.5; }
.pack-list li i { color: var(--gold); font-size: .6rem; margin-top: 5px; flex-shrink: 0; }
.pack-price { font-family: var(--font-title); color: var(--gold); font-size: 1.5rem; font-weight: 700; margin-bottom: 14px; }

/* Carrousel cliquable + fiche caractéristiques (catalogue Son) */
.pc-track[onclick] { cursor: pointer; }
.pc-zoom { position: absolute; top: 10px; right: 10px; width: 32px; height: 32px; border: none; border-radius: 50%; background: rgba(8,8,8,0.6); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .74rem; z-index: 3; cursor: pointer; transition: background .2s; }
.pc-zoom:hover { background: var(--gold); color: #000; }

/* Visionneuse photo plein écran */
.img-lb { position: fixed; inset: 0; z-index: 4000; background: rgba(0,0,0,0.94); display: none; align-items: center; justify-content: center; padding: 72px 20px 88px; }
.img-lb.open { display: flex; }
.img-lb img { max-width: 92vw; max-height: 76vh; object-fit: contain; border-radius: 6px; }
.img-lb-close { position: absolute; top: 18px; right: 18px; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); color: #fff; font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.img-lb-close:hover { background: var(--gold); color: #000; border-color: var(--gold); }
.img-lb-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); color: #fff; font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.img-lb-arrow:hover { background: var(--gold); color: #000; }
.img-lb-prev { left: 16px; }
.img-lb-next { right: 16px; }
.img-lb-spec { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #000; border: none; font-weight: 700; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; padding: 12px 22px; border-radius: 6px; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; }
.img-lb-spec:hover { background: var(--gold-light); }
/* Titre des fiches : ne pas passer sous la croix de fermeture (surtout mobile) */
.modal h3 { padding-right: 42px; }
@media (max-width: 600px) {
  .img-lb-arrow { width: 40px; height: 40px; }
  .img-lb img { max-height: 66vh; }
  .modal-close { top: 14px; right: 14px; }
}
.eq-spec-btn { width: 100%; padding: 10px; background: transparent; border: 1px solid rgba(200,162,23,0.35); color: var(--gold); font-size: .74rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: var(--transition); margin-bottom: 10px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.eq-spec-btn:hover { background: rgba(200,162,23,0.1); }
.spec-qty { display: inline-block; background: var(--gold); color: var(--black); font-weight: 700; font-size: .8rem; padding: 5px 13px; border-radius: 4px; margin-bottom: 18px; letter-spacing: 0.03em; }
.spec-list { list-style: none; margin: 0; }
.spec-list li { display: flex; justify-content: space-between; gap: 18px; padding: 8px 0; border-bottom: 1px solid rgba(200,162,23,0.12); font-size: .85rem; line-height: 1.5; }
.spec-list li b { color: var(--gray); font-weight: 400; flex-shrink: 0; }
.spec-list li span { color: var(--white); text-align: right; }
.spec-bullets { margin: 4px 0 0 18px; }
.spec-bullets li { font-size: .85rem; color: var(--gray); line-height: 1.6; margin-bottom: 6px; }
