/* ============================================================
   DriveX Sarl — style.css
   Nettoyage Auto Professionnel · Luxembourg
   ============================================================ */

/* ── VARIABLES ── */
:root {
  --black:   #05060a;
  --black-2: #0a0c12;
  --card:    #0e1018;
  --border:  rgba(255,255,255,.07);
  --text:    #eef0f6;
  --muted:   #8a91a8;
  --gold:    #e8a020;
  --gold-2:  #ffc94d;
  --white:   #ffffff;
  --r:       20px;
  --r2:      28px;
  --max:     1220px;
  --sh:      0 20px 60px rgba(0,0,0,.5);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 99px; }

/* ── LAYOUT ── */
.wrap { width: min(var(--max), calc(100% - 40px)); margin: auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: .95rem;
  letter-spacing: .3px; border: 1.5px solid transparent;
  cursor: pointer; transition: all .22s ease; white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #0a0800;
  box-shadow: 0 8px 28px rgba(232,160,32,.3);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(232,160,32,.4); }
.btn-outline {
  border-color: rgba(255,255,255,.18); color: var(--text);
  background: rgba(255,255,255,.04);
}
.btn-outline:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.3); }
.btn-wa {
  background: #128c3e; color: #fff;
  box-shadow: 0 8px 28px rgba(18,140,62,.3);
}
.btn-wa:hover { background: #1aad50; transform: translateY(-2px); }
.btn-wa svg { width: 17px; height: 17px; fill: #fff; }

/* ── TAGS ── */
.tag {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px; border-radius: 999px;
  font-size: .82rem; font-weight: 700; letter-spacing: .4px; text-transform: uppercase;
}
.tag-gold  { background: rgba(232,160,32,.12); color: var(--gold);   border: 1px solid rgba(232,160,32,.22); }
.tag-blue  { background: rgba(60,120,255,.10); color: #7eb0ff;       border: 1px solid rgba(60,120,255,.2);  }
.tag-green { background: rgba(20,180,80,.10);  color: #50d68a;       border: 1px solid rgba(20,180,80,.2);   }

/* ── SECTION TITLES ── */
.s-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  letter-spacing: 1px; line-height: 1; color: var(--white);
}
.s-title span { color: var(--gold); }
.s-sub { color: var(--muted); font-size: 1.05rem; max-width: 660px; margin-top: 12px; }

/* ============================================================
   HEADER
   ============================================================ */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 90px;
  backdrop-filter: blur(18px);
  background: rgba(5,6,10,0);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s;
}
header.scrolled {
  background: rgba(5,6,10,.95);
  border-bottom-color: rgba(255,255,255,.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 90px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
}
.logo img {
  height: 75px;
  filter: none;
  transition: opacity .2s;
  object-fit: contain;
}
.logo img:hover { opacity: .85; }
nav ul { display: flex; gap: 26px; list-style: none; }
nav a { font-weight: 600; color: rgba(255,255,255,.7); font-size: .9rem; transition: color .2s; }
nav a:hover { color: #fff; }
.nav-actions { display: flex; gap: 10px; }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider {
  position: relative; width: 100%; height: 100vh; min-height: 600px;
  overflow: hidden;
}

/* Individual slide */
.slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1s ease;
}
.slide.active { opacity: 1; z-index: 1; }
.slide.prev   { opacity: 0; z-index: 0; }

/* Background image with Ken Burns */
.slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.06);
  transition: transform 8s ease;
}
.slide.active .slide-bg { transform: scale(1); }

/* Dark overlay */
.slide-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(5,6,10,.88) 0%,
    rgba(5,6,10,.55) 45%,
    rgba(5,6,10,.18) 100%
  );
}

/* Content positioning */
.slide-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  height: 100%; padding: 0 0 90px;
}

/* Text animation */
.slide-inner {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease .35s, transform .7s ease .35s;
}
.slide.active .slide-inner { opacity: 1; transform: none; }

.slide-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(232,160,32,.15); color: var(--gold);
  font-weight: 700; font-size: .82rem; letter-spacing: .5px; text-transform: uppercase;
  border: 1px solid rgba(232,160,32,.3);
  margin-bottom: 18px; width: fit-content;
}
.slide-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  line-height: .96; letter-spacing: 1.5px;
  color: #fff; margin-bottom: 18px;
  white-space: pre-line;
}
.slide-desc {
  color: rgba(255,255,255,.72); font-size: 1.05rem;
  max-width: 520px; margin-bottom: 30px;
}
.slide-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Controls ── */
.slider-nav {
  position: absolute; bottom: 90px; right: 60px; z-index: 10;
  display: flex; align-items: center; gap: 12px;
}
.slider-btn {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: #fff; font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
.slider-btn:hover { background: rgba(232,160,32,.25); border-color: rgba(232,160,32,.4); }

/* ── Dots ── */
.slider-dots {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; gap: 10px;
}
.slider-dot {
  width: 28px; height: 4px; border-radius: 99px;
  background: rgba(255,255,255,.25); cursor: pointer;
  transition: background .3s, width .3s;
}
.slider-dot.active { background: var(--gold); width: 44px; }

/* ── Counter ── */
.slide-counter {
  position: absolute; top: 50%; right: 36px; transform: translateY(-50%);
  z-index: 10; writing-mode: vertical-lr;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem;
  letter-spacing: 2px; color: rgba(255,255,255,.3);
  user-select: none;
}
.slide-counter span { color: var(--gold); }

/* ── Thumbnail strip ── */
.thumb-strip {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
  display: flex; height: 88px; overflow: hidden;
}
.thumb {
  flex: 1; cursor: pointer; overflow: hidden;
  position: relative; opacity: .4;
  transition: opacity .3s, flex .35s;
}
.thumb.active { opacity: 1; flex: 2; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,.35);
}
.thumb.active::after { display: none; }

/* ── Slide progress bar ── */
.slide-progress {
  position: absolute; bottom: 88px; left: 0; right: 0;
  height: 2px; background: rgba(255,255,255,.08); z-index: 10;
}
.slide-progress-bar {
  height: 100%; background: var(--gold);
  width: 0%; transition: width linear;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrap {
  padding: 16px 0;
  background: rgba(232,160,32,.06);
  border-top: 1px solid rgba(232,160,32,.12);
  border-bottom: 1px solid rgba(232,160,32,.12);
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 48px; width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-track span {
  font-size: .84rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--gold);
  white-space: nowrap; opacity: .7;
}
.marquee-track .dot { opacity: .35; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   PACKS
   ============================================================ */
.packs-section { padding: 100px 0; }
.section-head { margin-bottom: 56px; }

.packs-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; align-items: start;
}
.pack {
  border-radius: var(--r2); padding: 28px;
  position: relative; overflow: hidden;
  border: 1px solid var(--border); background: var(--card);
  display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.pack:hover { transform: translateY(-6px); box-shadow: 0 30px 70px rgba(0,0,0,.5); }
.pack-gold-card {
  background: linear-gradient(165deg, rgba(232,160,32,.14) 0%, var(--card) 55%);
  border-color: rgba(232,160,32,.25);
  transform: translateY(-14px);
}
.pack-gold-card:hover { transform: translateY(-20px); }
.pack-premium {
  background: linear-gradient(165deg, rgba(180,140,255,.08) 0%, var(--card) 50%);
  border-color: rgba(180,140,255,.18);
}

.pack-icon {
  width: 48px; height: 48px; border-radius: 16px;
  margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.pi-basic   { background: rgba(140,160,200,.1);  border: 1px solid rgba(140,160,200,.15); }
.pi-gold    { background: rgba(232,160,32,.15);  border: 1px solid rgba(232,160,32,.25);  }
.pi-premium { background: rgba(180,140,255,.12); border: 1px solid rgba(180,140,255,.2);  }

.pack-name {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem;
  letter-spacing: 2px; color: var(--white); line-height: 1; margin-bottom: 6px;
}
.pack-tagline { font-size: .88rem; color: var(--muted); font-weight: 500; }

.pack-top-badge {
  position: absolute; top: 16px; right: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #0a0800; font-size: .75rem; font-weight: 800;
  letter-spacing: .5px; padding: 6px 12px;
  border-radius: 999px; text-transform: uppercase;
}

.pack-price-block {
  margin: 18px 0; padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pack-price-block.gold-border { border-color: rgba(232,160,32,.2); }
.pack-from { font-size: .8rem; color: var(--muted); font-weight: 500; margin-bottom: 2px; }
.pack-price-row { display: flex; align-items: flex-end; gap: 8px; }
.pack-price-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem; color: var(--white); line-height: 1;
}
.pack-price-num.gold-p  { color: var(--gold);   }
.pack-price-num.purp-p  { color: #c4a8ff;       }
.pack-price-note { font-size: .8rem; color: var(--muted); padding-bottom: 4px; }

.pack-table { margin-top: 10px; width: 100%; border-collapse: collapse; }
.pack-table td {
  font-size: .82rem; padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  color: var(--muted);
}
.pack-table td:last-child { text-align: right; font-weight: 700; color: var(--white); }
.pack-table tr:last-child td { border-bottom: none; }

.pack-features { list-style: none; margin: 18px 0; display: grid; gap: 8px; flex: 1; }
.pack-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .88rem; color: var(--muted);
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.04);
}
.pack-features li:last-child { border-bottom: none; }

.feat-check {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  background: rgba(232,160,32,.1); border: 1px solid rgba(232,160,32,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: .65rem; font-weight: 900;
}
.feat-check.prem {
  background: rgba(180,140,255,.1); border-color: rgba(180,140,255,.25); color: #c4a8ff;
}

.pack-cta { margin-top: auto; padding-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.pack-note { font-size: .78rem; color: var(--muted); text-align: center; }

/* ============================================================
   OPTIONS
   ============================================================ */
.options-section { padding: 80px 0; }
.options-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }

.opt-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 24px;
  transition: border-color .2s, transform .25s;
}
.opt-card:hover { border-color: rgba(232,160,32,.25); transform: translateY(-4px); }
.opt-icon  { font-size: 1.8rem; margin-bottom: 12px; }
.opt-name  { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.opt-desc  { font-size: .85rem; color: var(--muted); }
.opt-price { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: var(--gold); margin-top: 12px; letter-spacing: 1px; }

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(232,160,32,.05), rgba(60,100,255,.04));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat-card {
  text-align: center; padding: 32px 20px;
  background: rgba(255,255,255,.02); border-radius: var(--r2);
  border: 1px solid var(--border);
}
.stat-num   { font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem; color: var(--gold); letter-spacing: 1px; line-height: 1; }
.stat-label { font-size: .85rem; color: var(--muted); margin-top: 6px; font-weight: 500; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { padding: 80px 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }

.gal-card {
  border-radius: var(--r2); overflow: hidden;
  position: relative; min-height: 280px; cursor: pointer;
}
.gal-card.tall { grid-row: span 2; min-height: 576px; }
.gal-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.gal-card:hover img { transform: scale(1.06); }
.gal-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: linear-gradient(0deg, rgba(0,0,0,.85), transparent);
  z-index: 1;
}
.gal-label strong { display: block; font-weight: 700; color: #fff; font-size: .9rem; }
.gal-label span   { font-size: .78rem; color: rgba(255,255,255,.6); }

/* ── Lightbox ── */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,.92); backdrop-filter: blur(12px);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 16px; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  background: rgba(255,255,255,.1); border: none; color: #fff;
  width: 44px; height: 44px; border-radius: 50%; font-size: 1.3rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lightbox-close:hover { background: rgba(232,160,32,.3); }

/* ============================================================
   PROCESS
   ============================================================ */
.process-section { padding: 100px 0; }
.process-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; margin-top: 56px; position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; top: 36px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  opacity: .25;
}
.step { text-align: center; padding: 0 20px; }
.step-num {
  width: 72px; height: 90px; border-radius: 50%; margin: 0 auto 20px;
  background: var(--card); border: 1px solid rgba(232,160,32,.2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: var(--gold);
  position: relative; z-index: 1;
}
.step-title { font-weight: 700; color: var(--white); margin-bottom: 8px; }
.step-desc  { font-size: .85rem; color: var(--muted); }

/* ============================================================
   LOCATION
   ============================================================ */
.location-section { padding: 100px 0; }
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }

.loc-features { display: grid; gap: 14px; margin: 28px 0 32px; }
.loc-feat {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 16px;
}
.loc-feat-icon { font-size: 1.4rem; flex-shrink: 0; }
.loc-feat-body strong { display: block; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.loc-feat-body span   { font-size: .84rem; color: var(--muted); }

.loc-card {
  background: linear-gradient(145deg, #0f1219, #0b0e14);
  border: 1px solid var(--border); border-radius: var(--r2);
  padding: 32px; box-shadow: var(--sh);
}
.loc-card-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 2rem;
  letter-spacing: 1.5px; color: var(--white); margin-bottom: 6px;
}
.loc-card p { color: var(--muted); font-size: .9rem; margin-bottom: 24px; }
.loc-cats { display: grid; gap: 10px; }
.loc-cat {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; background: rgba(255,255,255,.03);
  border-radius: 12px; border: 1px solid var(--border);
}
.loc-cat strong { color: var(--white); font-weight: 600; }
.loc-cat span   { color: var(--gold); font-weight: 700; font-size: .9rem; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section { padding: 100px 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.review-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 26px;
  transition: border-color .2s;
}
.review-card:hover { border-color: rgba(232,160,32,.2); }
.review-stars { display: flex; gap: 4px; margin-bottom: 14px; }
.star { color: var(--gold); font-size: 1rem; }
.review-text {
  font-size: .92rem; color: var(--muted);
  line-height: 1.65; margin-bottom: 18px; font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), rgba(232,160,32,.3));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .9rem; color: #0a0800; flex-shrink: 0;
}
.reviewer-name { font-weight: 700; color: var(--white); font-size: .88rem; }
.reviewer-pack { font-size: .78rem; color: var(--muted); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { padding: 80px 0; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 24px;
  cursor: pointer; transition: border-color .2s;
}
.faq-item:hover { border-color: rgba(232,160,32,.2); }
.faq-q { font-weight: 700; color: var(--white); margin-bottom: 10px; font-size: .95rem; }
.faq-a { font-size: .88rem; color: var(--muted); line-height: 1.6; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { padding: 100px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

.contact-info {
  background: linear-gradient(145deg, rgba(232,160,32,.08), rgba(232,160,32,.02));
  border: 1px solid rgba(232,160,32,.15); border-radius: var(--r2); padding: 36px;
}
.contact-list { list-style: none; display: grid; gap: 14px; margin: 24px 0; }
.contact-list li {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.04); border-radius: 14px;
  padding: 14px 16px; border: 1px solid var(--border);
}
.contact-list li .ci { font-size: 1.2rem; }
.contact-list li strong { display: block; font-size: .78rem; color: var(--muted); font-weight: 600; letter-spacing: .3px; margin-bottom: 2px; }
.contact-list li span  { font-size: .92rem; color: var(--white); }
.contact-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }

.contact-form-wrap {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 36px;
}
.contact-form-wrap h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: 2rem;
  letter-spacing: 1px; color: var(--white); margin-bottom: 6px;
}
.contact-form-wrap > p { color: var(--muted); font-size: .88rem; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--muted); letter-spacing: .3px; }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 13px 16px;
  color: var(--white); font-family: 'Outfit', sans-serif; font-size: .9rem;
  outline: none; transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(232,160,32,.4); }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group select option { background: #0e1018; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  padding: 40px 0 60px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.footer-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 2px;
}
.footer-logo img { height: 44px; filter: none; object-fit: contain; }
.footer-tagline { font-size: .84rem; color: var(--muted); margin-top: 4px; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { font-size: .84rem; color: var(--muted); font-weight: 500; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.2); }

/* ============================================================
   WA FLOAT
   ============================================================ */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 200;
  display: flex; align-items: center; gap: 10px;
  padding: 14px 20px; border-radius: 999px;
  background: #128c3e; color: #fff; font-weight: 800; font-size: .9rem;
  box-shadow: 0 10px 36px rgba(18,140,62,.4); cursor: pointer;
  animation: wa-pulse 3s ease-in-out infinite;
}
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 10px 36px rgba(18,140,62,.4); }
  50%      { box-shadow: 0 10px 52px rgba(18,140,62,.6); }
}
.wa-float svg { width: 20px; height: 20px; fill: #fff; }
.wa-label { display: flex; flex-direction: column; line-height: 1.1; }
.wa-sub   { font-size: .72rem; font-weight: 400; opacity: .8; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .packs-grid, .options-grid, .stats-grid, .reviews-grid { grid-template-columns: 1fr 1fr; }
  .pack-gold-card { transform: none; }
  .pack-gold-card:hover { transform: translateY(-6px); }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gal-card.tall { grid-row: auto; min-height: 280px; }
  .loc-grid, .contact-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  nav ul { display: none; }
  .nav-actions .btn-outline { display: none; }
  .packs-grid, .options-grid, .reviews-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .slide-counter { display: none; }
  .slide-content { padding: 0 0 120px; }
  .wa-float .wa-label { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

/* ============================================================
   FORMULAIRE INTERACTIF — Pack selector + Suppléments
   ============================================================ */

/* ── Pack selector ── */
.pack-selector {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 10px;
  margin-top: 6px;
}
.pack-option {
  cursor: pointer; position: relative;
}
.pack-option input[type="radio"] {
  position: absolute; opacity: 0; width: 0; height: 0;
}
.pack-option-inner {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 12px; border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(255,255,255,.1);
  transition: border-color .2s, background .2s, transform .15s;
  position: relative;
}
.pack-option:hover .pack-option-inner {
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.07);
}
.pack-option input:checked ~ .pack-option-inner {
  border-color: var(--gold);
  background: rgba(232,160,32,.12);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,160,32,.18);
}
.pack-option[data-pack="premium"] input:checked ~ .pack-option-inner {
  border-color: #c4a8ff;
  background: rgba(180,140,255,.12);
  box-shadow: 0 8px 24px rgba(180,140,255,.15);
}
.po-icon { font-size: 1.4rem; flex-shrink: 0; }
.po-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; letter-spacing: 1px; color: var(--white); line-height: 1; }
.po-price { font-size: .75rem; color: var(--muted); margin-top: 2px; font-weight: 500; }
.po-badge {
  position: absolute; top: -8px; right: -6px;
  font-size: .75rem;
  background: var(--gold); color: #0a0800;
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ── Supplements ── */
.supplements-block {
  animation: fadeSlideIn .35s ease;
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: none; }
}
.supp-header {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-bottom: 10px;
}
.supp-header label { font-size: .8rem; font-weight: 600; color: var(--muted); letter-spacing: .3px; margin-bottom: 0 !important; }
.supp-hint { font-size: .75rem; color: rgba(255,255,255,.3); font-weight: 400; }

.supplements-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.supp-item {
  cursor: pointer; position: relative;
}
.supp-item input[type="checkbox"] {
  position: absolute; opacity: 0; width: 0; height: 0;
}
.supp-inner {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 12px; border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 1.5px solid rgba(255,255,255,.08);
  transition: border-color .2s, background .2s;
  position: relative; overflow: hidden;
}
.supp-item:hover .supp-inner {
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.06);
}
.supp-item input:checked ~ .supp-inner {
  border-color: var(--gold);
  background: rgba(232,160,32,.1);
}
.supp-icon { font-size: 1.2rem; flex-shrink: 0; }
.supp-name { font-size: .82rem; font-weight: 600; color: var(--white); }
.supp-price { font-size: .72rem; color: var(--gold); font-weight: 700; margin-top: 1px; }
.supp-check {
  margin-left: auto; width: 20px; height: 20px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; color: transparent;
  transition: all .2s; flex-shrink: 0;
}
.supp-item input:checked ~ .supp-inner .supp-check {
  background: var(--gold); border-color: var(--gold);
  color: #0a0800; font-weight: 900;
}

/* ── Supplément cuir désactivé sur basic/gold ── */
.supp-item.disabled {
  opacity: .35; pointer-events: none;
}
.supp-item.disabled .supp-inner::after {
  content: 'Premium uniquement';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 600; color: var(--muted);
  background: rgba(0,0,0,.6); border-radius: 14px;
}

/* ── Tout sélectionner ── */
.btn-select-all {
  margin-top: 10px; width: 100%;
  padding: 10px; border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px dashed rgba(255,255,255,.15);
  color: var(--muted); font-family: 'Outfit', sans-serif;
  font-weight: 600; font-size: .82rem; cursor: pointer;
  transition: all .2s; letter-spacing: .3px;
}
.btn-select-all:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(232,160,32,.08);
}
.btn-select-all.active {
  border-color: var(--gold); color: var(--gold);
  background: rgba(232,160,32,.08);
}

/* ── Récap ── */
.form-recap {
  margin-bottom: 14px;
  animation: fadeSlideIn .3s ease;
}
.recap-inner {
  padding: 12px 16px; border-radius: 14px;
  background: rgba(232,160,32,.08);
  border: 1px solid rgba(232,160,32,.2);
  display: flex; flex-wrap: wrap; gap: 8px; align-items: flex-start;
}
.recap-label {
  font-size: .78rem; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: .4px; flex-shrink: 0;
}
.recap-value {
  font-size: .82rem; color: var(--text); line-height: 1.5;
}

@media (max-width: 720px) {
  .pack-selector { grid-template-columns: 1fr; }
  .supplements-grid { grid-template-columns: 1fr; }
}

/* ── Lien WhatsApp discret sous les packs ── */
.pack-wa-link {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-size: .78rem; font-weight: 600; color: var(--muted);
  text-decoration: none; transition: color .2s;
  padding: 4px 0;
}
.pack-wa-link:hover { color: #50d68a; }
.pack-wa-link svg { width: 13px; height: 13px; flex-shrink: 0; }

/* ============================================================
   PWA + RESPONSIVE — Tous écrans
   ============================================================ */

/* ── Viewport & base ── */
html { -webkit-text-size-adjust: 100%; }
body { -webkit-tap-highlight-color: transparent; }
img, svg { max-width: 100%; }

/* ── Header mobile ── */
@media (max-width: 480px) {
  header { height: 70px; }
  .logo img { height: 52px; }
  .nav-inner { padding: 0 16px; }
  .nav-actions { gap: 6px; }
  .nav-actions .btn { padding: 8px 14px; font-size: .8rem; }
}

/* ── Hero slider mobile ── */
@media (max-width: 480px) {
  .slide-title { font-size: 2.6rem; }
  .slide-desc  { font-size: .9rem; }
  .slide-actions { flex-direction: column; gap: 8px; }
  .slide-actions .btn { width: 100%; justify-content: center; }
  .slide-content { padding: 0 0 120px; }
  .thumb-strip { height: 64px; }
  .slider-dots { bottom: 68px; }
  .slide-progress { bottom: 64px; }
}

/* ── Sections padding mobile ── */
@media (max-width: 480px) {
  .packs-section, .process-section, .location-section,
  .reviews-section, .contact-section { padding: 60px 0; }
  .options-section, .stats-section,
  .faq-section, .gallery-section { padding: 50px 0; }
  .section-head { margin-bottom: 32px; }
  .s-title { font-size: 2.2rem; }
  .s-sub   { font-size: .92rem; }
}

/* ── Packs mobile ── */
@media (max-width: 480px) {
  .packs-grid { grid-template-columns: 1fr; gap: 16px; }
  .pack { padding: 20px; }
  .pack-price-num { font-size: 2.4rem; }
  .pack-gold-card { transform: none; }
}

/* ── Options mobile ── */
@media (max-width: 480px) {
  .options-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .opt-card { padding: 16px; }
  .opt-price { font-size: 1.4rem; }
}

/* ── Stats mobile ── */
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-card { padding: 20px 12px; }
  .stat-num  { font-size: 2.4rem; }
}

/* ── Process mobile ── */
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; gap: 28px; margin-top: 32px; }
  .step-num { width: 56px; height: 56px; font-size: 1.4rem; }
}

/* ── Location mobile ── */
@media (max-width: 480px) {
  .loc-grid { grid-template-columns: 1fr; gap: 20px; }
  .loc-card { padding: 20px; }
  .loc-features { margin: 20px 0 24px; }
}

/* ── Reviews mobile ── */
@media (max-width: 480px) {
  .reviews-grid { grid-template-columns: 1fr; gap: 14px; }
  .review-card  { padding: 18px; }
}

/* ── FAQ mobile ── */
@media (max-width: 480px) {
  .faq-grid { grid-template-columns: 1fr; gap: 12px; }
  .faq-item { padding: 18px; }
}

/* ── Contact mobile ── */
@media (max-width: 480px) {
  .contact-grid { grid-template-columns: 1fr; gap: 20px; }
  .contact-info { padding: 24px; }
  .contact-form-wrap { padding: 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* ── Pack selector mobile ── */
@media (max-width: 480px) {
  .pack-selector { grid-template-columns: 1fr; gap: 8px; }
  .pack-option-inner { padding: 12px; }
  .supplements-grid { grid-template-columns: 1fr; gap: 8px; }
}

/* ── Footer mobile ── */
@media (max-width: 480px) {
  footer { padding: 30px 0 80px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-logo img { height: 44px; }
  .footer-links { flex-wrap: wrap; gap: 14px; }
}

/* ── WA Float mobile ── */
@media (max-width: 480px) {
  .wa-float { bottom: 16px; right: 16px; padding: 12px 16px; }
}

/* ── Tablet (481px – 768px) ── */
@media (min-width: 481px) and (max-width: 768px) {
  .packs-grid  { grid-template-columns: 1fr; }
  .options-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid   { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .pack-selector { grid-template-columns: repeat(3,1fr); }
  .slide-title   { font-size: 3rem; }
}

/* ── Tablet large (769px – 1080px) ── */
@media (min-width: 769px) and (max-width: 1080px) {
  .packs-grid  { grid-template-columns: repeat(3,1fr); }
  .stats-grid  { grid-template-columns: repeat(4,1fr); }
  .loc-grid    { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Safe area iPhone (notch / Dynamic Island) ── */
@supports (padding-top: env(safe-area-inset-top)) {
  header {
    padding-top: env(safe-area-inset-top);
    height: calc(90px + env(safe-area-inset-top));
  }
  .hero-slider { padding-top: calc(90px + env(safe-area-inset-top)); }
  .wa-float {
    bottom: calc(22px + env(safe-area-inset-bottom));
    right:  calc(22px + env(safe-area-inset-right));
  }
  footer { padding-bottom: calc(60px + env(safe-area-inset-bottom)); }
}

/* ── Touch targets (accessibilité mobile) ── */
@media (hover: none) {
  .btn         { min-height: 44px; }
  .slider-btn  { width: 52px; height: 52px; }
  .supp-inner  { min-height: 48px; }
  .pack-option-inner { min-height: 56px; }
  nav a        { padding: 8px 4px; }
}

/* ── Smooth scroll momentum iOS ── */
html { scroll-behavior: smooth; -webkit-overflow-scrolling: touch; }

/* ── Prevent zoom on inputs iOS ── */
input, select, textarea {
  font-size: 16px !important;
}
@media (min-width: 768px) {
  input, select, textarea { font-size: .9rem !important; }
}

/* ============================================================
   BOTTOM NAV MOBILE
   ============================================================ */
.bottom-nav {
  display: none; /* caché par défaut sur desktop */
}

@media (max-width: 768px) {

  /* Masquer nav header */
  nav ul        { display: none !important; }
  .nav-actions  { display: none !important; }

  /* Afficher bottom nav */
  .bottom-nav {
    display: block;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 999; /* au-dessus de tout */
    background: rgba(6, 7, 12, 0.97);
    backdrop-filter: blur(20px) saturate(200%);
    -webkit-backdrop-filter: blur(20px) saturate(200%);
    border-top: 1px solid rgba(255,255,255,.1);
    padding-bottom: env(safe-area-inset-bottom, 0);
    box-shadow: 0 -8px 32px rgba(0,0,0,.5);
  }

  .bottom-nav ul {
    display: flex; list-style: none; margin: 0; padding: 0;
    height: 60px;
  }
  .bottom-nav li { flex: 1; }

  .bottom-nav a {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 3px; height: 100%; width: 100%;
    color: rgba(255,255,255,.4);
    text-decoration: none;
    font-size: .6rem; font-weight: 700; letter-spacing: .4px;
    text-transform: uppercase; transition: color .18s;
    -webkit-tap-highlight-color: transparent;
    position: relative;
  }

  .bottom-nav a.active  { color: var(--gold); }
  .bottom-nav a:active  { color: var(--gold); opacity: .7; }

  .bottom-nav a.active::after {
    content: '';
    position: absolute; top: 0; left: 25%; right: 25%;
    height: 2px; border-radius: 0 0 4px 4px;
    background: var(--gold);
  }

  .bottom-nav .bn-icon {
    font-size: 1.25rem; line-height: 1;
    display: block;
  }

  /* Décalages pour ne pas être masqués par la bottom nav */
  footer      { padding-bottom: calc(60px + env(safe-area-inset-bottom, 0) + 20px); }
  .wa-float   { bottom: calc(60px + env(safe-area-inset-bottom, 0) + 14px); right: 16px; }

  /* Masquer flèches slider sur mobile — thumbnails suffisent */
  .slider-nav { display: none; }

  /* Thumbnail strip moins haute */
  .thumb-strip { height: 56px; }
  .slider-dots { bottom: 60px; }
  .slide-progress { bottom: 56px; }
}
