/* ============================================
   OuiTeint - Global Stylesheet
   All shared styles for the entire site
   ============================================ */

/* === CSS VARIABLES === */
:root {
  --red: #C41A1F;
  --red-dark: #9B1419;
  --red-light: #D93038;
  --black: #0A0A0A;
  --dark: #111111;
  --dark-gray: #1A1A1A;
  --medium-gray: #2A2A2A;
  --white: #FFFFFF;
  --text-muted: #999999;
  --gradient-red: linear-gradient(135deg, var(--red-light), var(--red), var(--red-dark));
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.25);
  --shadow-red: 0 4px 20px rgba(196,26,31,0.25);
}

/* === RESET === */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body { font-family:'Inter',sans-serif; background:var(--black); color:var(--white); line-height:1.6; overflow-x:hidden; }
h1,h2,h3,h4,h5,h6 { font-family:'Montserrat',sans-serif; font-weight:700; line-height:1.2; }
a { text-decoration:none; color:inherit; transition:all .3s ease; }
img { max-width:100%; height:auto; }
.container { max-width:1200px; margin:0 auto; padding:0 24px; }

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(30px); }
  to { opacity:1; transform:translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform:scale(1); }
  50% { transform:scale(1.05); }
}
@keyframes slideInLeft {
  from { opacity:0; transform:translateX(-40px); }
  to { opacity:1; transform:translateX(0); }
}
@keyframes bounce {
  0%, 100% { transform:translateY(0); }
  50% { transform:translateY(-10px); }
}
@keyframes marquee { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }
@keyframes slideDown { from { transform:translateY(-100%); } to { transform:translateY(0); } }
.fade-in-scroll { animation:fadeInUp .6s ease forwards; opacity:0; }
.scroll-visible { opacity:1!important; }

/* === TOPBAR === */
.topbar { background:linear-gradient(90deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%); padding:10px 0; font-size:.82rem; font-weight:400; border-bottom:1px solid rgba(196,26,31,.15); letter-spacing:.3px; }
.topbar .container { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:8px; }
.topbar a, .topbar span { color:rgba(255,255,255,.7); transition:color .3s; }
.topbar a:hover { color:var(--red); }
.topbar-left, .topbar-right { display:flex; gap:24px; align-items:center; }
.topbar-left svg { opacity:.5; }
.topbar-separator { width:1px; height:14px; background:rgba(255,255,255,.1); }

/* === NAVBAR === */
.navbar { background:var(--dark); position:sticky; top:0; z-index:1000; border-bottom:1px solid rgba(255,255,255,.05); backdrop-filter:blur(20px); }
.navbar .container { display:flex; justify-content:space-between; align-items:center; height:80px; }
.logo { display:flex; align-items:center; gap:12px; font-family:'Montserrat',sans-serif; font-weight:800; font-size:1.8rem; font-style:italic; letter-spacing:-.5px; cursor:pointer; position:relative; }
.logo-icon { width:48px; height:48px; }
.logo-img { height:40px; width:auto; object-fit:contain; }
.logo .oui { color:var(--white); }
.logo .teint { color:var(--red); }
.logo .sparkle { color:var(--white); font-size:.6em; vertical-align:super; }
.nav-links { display:flex; list-style:none; align-items:center; gap:0; }
.nav-links li a { display:block; padding:28px 18px; font-family:'Montserrat',sans-serif; font-weight:600; font-size:.85rem; text-transform:uppercase; letter-spacing:.5px; color:var(--white); position:relative; cursor:pointer; }
.nav-links li a::after { content:''; position:absolute; bottom:0; left:50%; transform:translateX(-50%); width:0; height:3px; background:var(--red); transition:width .3s ease; }
.nav-links li a:hover::after, .nav-links li a.active::after { width:100%; }
.nav-links li a:hover, .nav-links li a.active { color:var(--red); }
.nav-cta { background:var(--gradient-red)!important; color:var(--white)!important; padding:12px 22px!important; border-radius:6px; margin-left:12px; font-weight:700!important; }
.nav-cta::after { display:none!important; }
.nav-cta:hover { transform:translateY(-2px); box-shadow:var(--shadow-red); }
.hamburger { display:none; flex-direction:column; cursor:pointer; gap:5px; }
.hamburger span { display:block; width:28px; height:3px; background:var(--white); border-radius:3px; transition:.3s; }

/* === URGENCY BAR === */
.urgency-bar { background:rgba(196,26,31,.08); border:1px solid rgba(196,26,31,.15); padding:16px 0; text-align:center; border-radius:8px; margin:-30px 0 40px; animation:slideInLeft .5s ease; }
.urgency-bar-content { display:flex; align-items:center; justify-content:center; gap:12px; font-weight:600; }
.urgency-counter { font-family:'Montserrat',sans-serif; font-size:1.3rem; font-weight:900; color:var(--red); }

/* === STICKY MOBILE BAR === */
.sticky-mobile-bar { position:fixed; bottom:0; left:0; right:0; background:var(--dark); border-top:1px solid rgba(196,26,31,.2); padding:12px; display:none; z-index:999; gap:12px; }
.sticky-mobile-bar.show { display:flex; }
.sticky-mobile-bar button { flex:1; padding:12px 16px; border-radius:6px; font-weight:600; border:none; cursor:pointer; font-size:.9rem; }
.sticky-mobile-bar .call-btn { background:var(--red); color:var(--white); }
.sticky-mobile-bar .rdv-btn { background:transparent; border:1px solid var(--red); color:var(--red); }

/* === HERO === */
.hero-img-section { position:relative; min-height:85vh; display:flex; align-items:center; overflow:hidden; }
.hero-img-bg { position:absolute; inset:0; background-size:cover; background-position:center; z-index:0; }
.hero-img-bg::after { content:''; position:absolute; inset:0; background:linear-gradient(90deg, rgba(10,10,10,.95) 0%, rgba(10,10,10,.8) 45%, rgba(10,10,10,.45) 100%); }
.hero-content { position:relative; z-index:1; max-width:620px; margin:0 auto; text-align:center; }
.hero-badge { display:inline-block; background:rgba(196,26,31,.12); border:1px solid rgba(196,26,31,.25); color:var(--red-light); padding:6px 16px; border-radius:30px; font-size:.78rem; font-weight:600; text-transform:uppercase; letter-spacing:1px; margin-bottom:20px; }
.hero-content h1 { font-size:2.8rem; font-weight:900; line-height:1.1; margin-bottom:18px; }
.highlight { background:var(--gradient-red); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.hero-content p { font-size:1.05rem; color:var(--text-muted); margin-bottom:28px; line-height:1.7; }
.hero-buttons { display:flex; gap:14px; flex-wrap:wrap; justify-content:center; }

/* === BUTTONS === */
.btn { display:inline-flex; align-items:center; gap:8px; padding:13px 28px; border-radius:8px; font-family:'Montserrat',sans-serif; font-weight:700; font-size:.85rem; text-transform:uppercase; letter-spacing:.5px; cursor:pointer; border:none; transition:all .3s ease; }
.btn-primary { background:var(--gradient-red); color:var(--white); box-shadow:var(--shadow-red); }
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 6px 24px rgba(196,26,31,.35); }
.btn-outline { background:transparent; color:var(--white); border:2px solid rgba(255,255,255,.15); }
.btn-outline:hover { border-color:var(--red); color:var(--red); transform:translateY(-2px); }
.btn-white { background:var(--white); color:var(--black); }
.btn-white:hover { transform:translateY(-2px); box-shadow:var(--shadow-lg); }

/* === GLOBAL SELECT FIX === */
select option { background:#1a1a1a !important; color:#ffffff !important; }
select optgroup { background:#1a1a1a !important; color:#ffffff !important; }

/* === SECTIONS === */
section { padding:72px 0; }
.section-header { text-align:center; margin-bottom:48px; }
.section-label { display:inline-block; color:var(--red); font-family:'Montserrat',sans-serif; font-weight:700; font-size:.75rem; text-transform:uppercase; letter-spacing:2px; margin-bottom:12px; }
.section-header h2 { font-size:2.2rem; margin-bottom:14px; }
.section-header p { color:var(--text-muted); font-size:1rem; max-width:560px; margin:0 auto; }

/* === FLOATING RDV BUTTON === */
.floating-rdv { position:fixed; bottom:32px; right:32px; background:var(--gradient-red); color:var(--white); border:none; padding:16px 32px; border-radius:50px; font-weight:700; font-family:'Montserrat',sans-serif; cursor:pointer; z-index:998; box-shadow:var(--shadow-red); animation:bounce 2s infinite; transition:all .3s; }
.floating-rdv:hover { transform:scale(1.08); box-shadow:0 8px 30px rgba(196,26,31,.4); animation:none; }
@media (max-width:768px) { .floating-rdv { bottom:20px; right:16px; padding:14px 24px; font-size:.9rem; } .sticky-mobile-bar { display:none !important; } .topbar-left { display:none; } }

/* === BOOKING MODAL === */
.modal { display:none; position:fixed; top:0; left:0; right:0; bottom:0; background:rgba(0,0,0,.85); z-index:2000; align-items:center; justify-content:center; padding:20px; backdrop-filter:blur(4px); -webkit-backdrop-filter:blur(4px); }
.modal.show { display:flex; }
.modal-content { background:var(--dark); border:1px solid rgba(255,255,255,.06); border-radius:18px; max-width:520px; width:100%; max-height:90vh; overflow-y:auto; padding:36px 32px; position:relative; box-shadow:0 24px 64px rgba(0,0,0,.6); }
.modal-content::-webkit-scrollbar { width:5px; }
.modal-content::-webkit-scrollbar-thumb { background:rgba(255,255,255,.08); border-radius:3px; }
.modal-close { position:absolute; top:16px; right:16px; background:rgba(255,255,255,.05); border:none; color:var(--text-muted); width:32px; height:32px; border-radius:8px; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:all .2s; }
.modal-close:hover { background:rgba(255,255,255,.1); color:var(--white); }
.modal-header-icon { width:44px; height:44px; border-radius:12px; background:rgba(196,26,31,.1); display:flex; align-items:center; justify-content:center; margin-bottom:14px; }
.modal h2 { font-size:1.5rem; margin-bottom:6px; }

/* --- Modal steps (une seule visible à la fois) --- */
.modal-step { display:none; }
.modal-step.active { display:block; }

/* --- Progress indicator (numbered steps) --- */
.progress-indicator { display:flex; align-items:center; gap:0; margin-bottom:28px; margin-top:14px; }
.progress-step { width:28px; height:28px; border-radius:50%; background:rgba(255,255,255,.06); display:flex; align-items:center; justify-content:center; font-size:.72rem; font-weight:700; color:var(--text-muted); transition:all .3s; flex-shrink:0; }
.progress-step.done { background:var(--red); color:var(--white); }
.progress-connector { flex:1; height:2px; background:rgba(255,255,255,.06); margin:0 6px; transition:background .3s; }
.progress-connector.done { background:var(--red); }

/* --- Step titles --- */
.step-title { display:flex; align-items:center; gap:10px; margin-bottom:22px; }
.step-title h3 { font-size:1.05rem; margin:0; }

/* --- Form groups --- */
.form-group { margin-bottom:18px; }
.form-group label { display:flex; align-items:center; margin-bottom:8px; font-weight:600; font-size:.88rem; line-height:1; }
.form-group input, .form-group select, .form-group textarea { width:100%; padding:12px 14px; background:var(--medium-gray); border:1px solid rgba(255,255,255,.08); border-radius:10px; color:var(--white); font-family:'Inter',sans-serif; font-size:.9rem; transition:border-color .2s, background .2s; }
.form-group select { -webkit-appearance:none; -moz-appearance:none; appearance:none; background-image:url('data:image/svg+xml;utf8,<svg width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1.5L6 6.5L11 1.5" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>'); background-repeat:no-repeat; background-position:right 14px center; padding-right:36px; cursor:pointer; }
.form-group select option { background:#1a1a1a; color:#ffffff; padding:10px; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline:none; border-color:var(--red); background:rgba(196,26,31,.04); }
.form-group input::placeholder { color:var(--text-muted); }

/* --- Time slots --- */
.time-slots { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.time-slot { padding:10px; border:1px solid rgba(255,255,255,.08); border-radius:8px; text-align:center; cursor:pointer; transition:all .2s; font-size:.84rem; }
.time-slot:hover { border-color:rgba(196,26,31,.4); background:rgba(196,26,31,.06); }
.time-slot.selected { border-color:var(--red); background:rgba(196,26,31,.12); color:var(--white); font-weight:600; }
.time-slot.time-slot-past { opacity:.25; color:var(--text-muted); cursor:not-allowed; text-decoration:line-through; border-color:rgba(255,255,255,.04); }
.time-slot.time-slot-past:hover { border-color:rgba(255,255,255,.04); background:transparent; }

/* --- Modal buttons --- */
.modal-buttons { display:flex; gap:10px; margin-top:26px; }
.modal-buttons button { display:inline-flex; align-items:center; justify-content:center; gap:6px; flex:1; padding:13px 16px; border-radius:10px; border:none; font-weight:600; font-size:.9rem; cursor:pointer; transition:all .2s; font-family:'Inter',sans-serif; }
.modal-buttons .prev { background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1); color:var(--text-muted); flex:0 0 auto; }
.modal-buttons .prev:hover { background:rgba(255,255,255,.08); color:var(--white); }
.modal-buttons .next { background:var(--gradient-red); color:var(--white); }
.modal-buttons .next:hover { opacity:.9; }

/* --- Calendar widget --- */
.calendar-widget { background:var(--medium-gray); border:1px solid rgba(255,255,255,.08); border-radius:10px; padding:16px; user-select:none; }
.calendar-nav { display:flex; justify-content:space-between; align-items:center; margin-bottom:14px; }
.cal-nav-btn { background:none; border:none; color:var(--white); cursor:pointer; font-size:1.3rem; padding:4px 12px; border-radius:6px; transition:background .2s; }
.cal-nav-btn:hover { background:rgba(255,255,255,.08); }
.cal-month-label { font-family:'Montserrat',sans-serif; font-weight:700; font-size:.95rem; }
.calendar-weekdays { display:grid; grid-template-columns:repeat(7,1fr); gap:4px; text-align:center; margin-bottom:8px; }
.calendar-weekdays span { font-size:.7rem; color:var(--text-muted); font-weight:600; }
.calendar-days { display:grid; grid-template-columns:repeat(7,1fr); gap:4px; text-align:center; }

/* --- Booking summary --- */
.booking-summary { background:rgba(196,26,31,.04); border:1px solid rgba(196,26,31,.1); border-radius:10px; padding:16px; margin:20px 0; }
.booking-summary-title { display:flex; align-items:center; gap:8px; font-weight:700; font-size:.9rem; margin-bottom:8px; }
.booking-summary p { color:var(--text-muted); font-size:.88rem; line-height:1.5; margin:0; }

/* === SELECTED CENTRE CARD === */
.selected-centre-card { background:var(--medium-gray); border:1px solid rgba(34,197,94,.15); border-radius:12px; padding:16px; }
.selected-centre-top { display:flex; align-items:flex-start; gap:12px; }
.selected-centre-icon { flex-shrink:0; width:36px; height:36px; border-radius:10px; background:rgba(34,197,94,.08); display:flex; align-items:center; justify-content:center; }
.selected-centre-details { flex:1; min-width:0; }
.selected-centre-name { font-weight:700; font-size:.92rem; color:var(--white); margin-bottom:3px; }
.selected-centre-address { display:flex; align-items:flex-start; gap:5px; font-size:.8rem; color:var(--text-muted); line-height:1.3; margin-bottom:3px; }
.selected-centre-phone { display:flex; align-items:center; gap:5px; font-size:.78rem; color:var(--text-muted); }
.selected-centre-dist { flex-shrink:0; font-size:.72rem; font-weight:600; color:var(--red); background:rgba(196,26,31,.08); padding:4px 10px; border-radius:20px; white-space:nowrap; align-self:flex-start; margin-top:2px; }
.selected-centre-services { display:flex; gap:5px; flex-wrap:wrap; margin-top:10px; padding-top:10px; border-top:1px solid rgba(255,255,255,.05); }
.selected-centre-tag { font-size:.72rem; padding:3px 10px; border-radius:12px; background:rgba(196,26,31,.08); color:#C41A1F; font-weight:500; }
.change-centre-link { display:inline-flex; align-items:center; gap:5px; margin-top:12px; background:none; border:none; color:var(--text-muted); font-size:.82rem; cursor:pointer; padding:0; font-family:'Inter',sans-serif; transition:color .2s; }
.change-centre-link:hover { color:var(--red); }

/* === NEARBY CENTRES LIST === */
.nearby-centres-list { flex-direction:column; gap:10px; max-height:360px; overflow-y:auto; padding:12px 6px 4px 2px; margin-top:12px; }
.nearby-centres-list::-webkit-scrollbar { width:4px; }
.nearby-centres-list::-webkit-scrollbar-thumb { background:rgba(255,255,255,.08); border-radius:3px; }
.nearby-centre-item { background:var(--medium-gray); border:1px solid rgba(255,255,255,.06); border-radius:12px; padding:14px 16px; transition:all .2s; }
.nearby-centre-item:hover { border-color:rgba(196,26,31,.2); }
.nearby-centre-item.selected { border-color:rgba(34,197,94,.3); background:rgba(34,197,94,.04); }
.nearby-centre-body { display:flex; align-items:flex-start; justify-content:space-between; gap:10px; margin-bottom:10px; }
.nearby-centre-info { display:flex; flex-direction:column; gap:3px; min-width:0; flex:1; }
.nearby-centre-info strong { font-size:.88rem; color:var(--white); }
.nearby-centre-name-row { display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
.nearby-centre-address { display:flex; align-items:flex-start; gap:4px; font-size:.78rem; color:var(--text-muted); line-height:1.3; }
.nearby-centre-tags { display:flex; gap:4px; flex-wrap:wrap; margin-top:4px; }
.nearby-tag { font-size:.68rem; padding:2px 8px; border-radius:10px; background:rgba(255,255,255,.05); color:var(--text-muted); font-weight:500; }
.nearby-centre-distance { flex-shrink:0; display:flex; align-items:center; gap:4px; font-size:.75rem; font-weight:600; color:var(--red); white-space:nowrap; }
.nearby-select-btn { display:flex; align-items:center; justify-content:center; gap:6px; width:100%; padding:9px 14px; background:#C41A1F; border:1px solid #C41A1F; border-radius:8px; color:#fff; font-size:.82rem; font-weight:600; cursor:pointer; font-family:'Inter',sans-serif; transition:all .2s; }
.nearby-select-btn:hover { background:#a8161a; border-color:#a8161a; }
.nearby-btn-disabled { cursor:not-allowed !important; background:rgba(255,255,255,.03) !important; border-color:rgba(255,255,255,.06) !important; color:var(--text-muted) !important; opacity:.6; }
.nearby-btn-disabled:hover { background:rgba(255,255,255,.03) !important; border-color:rgba(255,255,255,.06) !important; }
.nearby-item-disabled { opacity:.7; }
.nearby-badge-open { font-size:.6rem; background:rgba(34,197,94,.15); color:#22C55E; padding:1px 7px; border-radius:8px; font-weight:600; vertical-align:middle; }
.nearby-badge-opening { font-size:.6rem; background:rgba(245,158,11,.15); color:#F59E0B; padding:1px 7px; border-radius:8px; font-weight:600; vertical-align:middle; }
.nearby-badge-closed { font-size:.6rem; background:rgba(107,114,128,.15); color:#9CA3AF; padding:1px 7px; border-radius:8px; font-weight:600; vertical-align:middle; }
.nearby-loading { padding:32px 20px; text-align:center; color:var(--text-muted); font-size:.85rem; display:flex; flex-direction:column; align-items:center; gap:12px; }
.nearby-spinner { width:24px; height:24px; border:2px solid rgba(255,255,255,.08); border-top-color:#C41A1F; border-radius:50%; animation:spin .7s linear infinite; margin:0 auto 10px; }
.nearby-empty { padding:28px 20px; text-align:center; color:var(--text-muted); font-size:.88rem; line-height:1.5; }
.nearby-empty-state { padding:16px 20px; text-align:center; display:flex; flex-direction:column; align-items:center; gap:6px; }
.nearby-empty-icon { width:44px; height:44px; border-radius:50%; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.06); display:flex; align-items:center; justify-content:center; margin-bottom:2px; }
.nearby-empty-title { font-size:.95rem; font-weight:600; color:var(--white); }
.nearby-empty-desc { font-size:.82rem; color:var(--text-muted); line-height:1.5; max-width:280px; }
.nearby-empty-link { display:inline-flex; align-items:center; gap:6px; margin-top:8px; padding:8px 18px; background:rgba(196,26,31,.1); border:1px solid rgba(196,26,31,.2); border-radius:8px; color:#FF6B6B; font-size:.82rem; font-weight:600; text-decoration:none; transition:all .2s; }
.nearby-empty-link:hover { background:rgba(196,26,31,.18); border-color:rgba(196,26,31,.35); text-decoration:none; }
.nearby-results-header { display:flex; align-items:center; gap:6px; font-size:.78rem; font-weight:500; color:var(--text-muted); padding:4px 2px 8px; border-bottom:1px solid rgba(255,255,255,.05); margin-bottom:4px; }

/* --- Booking search input with icon --- */
.booking-search-wrap { position:relative; }
.booking-search-icon-left { position:absolute; left:14px; top:50%; transform:translateY(-50%); pointer-events:none; z-index:1; }
.search-input-with-icon { padding-left:40px !important; }
.city-suggestions-dropdown { display:none; position:absolute; top:100%; left:0; right:0; z-index:10001; background:#1a1a2e; border:1px solid rgba(255,255,255,.1); border-top:none; border-radius:0 0 12px 12px; box-shadow:0 12px 32px rgba(0,0,0,.5); max-height:220px; overflow-y:auto; }
.city-suggestions-dropdown::-webkit-scrollbar { width:4px; }
.city-suggestions-dropdown::-webkit-scrollbar-thumb { background:rgba(255,255,255,.1); border-radius:3px; }
.city-suggestion-item { display:flex; align-items:center; gap:10px; padding:12px 14px; cursor:pointer; font-size:.86rem; color:var(--white); transition:background .15s; border-bottom:1px solid rgba(255,255,255,.03); }
.city-suggestion-item:last-child { border-bottom:none; }
.city-suggestion-item:hover { background:rgba(196,26,31,.08); }
.city-suggestion-item svg { flex-shrink:0; opacity:.45; }
@keyframes spin { to { transform:rotate(360deg); } }

/* Google Places Autocomplete dropdown — doit être AU-DESSUS du modal (z-index:2000) */
.pac-container { z-index:10002 !important; background:#1a1a2e !important; border:1px solid rgba(255,255,255,.1) !important; border-radius:0 0 12px 12px !important; box-shadow:0 12px 32px rgba(0,0,0,.5) !important; font-family:'Inter',sans-serif !important; }
.pac-item { padding:10px 14px !important; cursor:pointer !important; color:rgba(255,255,255,.85) !important; border-top:1px solid rgba(255,255,255,.04) !important; font-size:.86rem !important; line-height:1.4 !important; background:transparent !important; }
.pac-item:hover, .pac-item.pac-item-selected { background:rgba(196,26,31,.08) !important; }
.pac-item-query { color:#fff !important; font-weight:600 !important; }
.pac-icon { display:none !important; }
.pac-item .pac-item-query + span { color:rgba(255,255,255,.5) !important; }
.pac-logo::after { display:none !important; }

/* === BOOKING TOAST NOTIFICATIONS === */
.booking-toast { display:flex; align-items:center; gap:10px; padding:14px 18px; border-radius:10px; font-size:.88rem; font-weight:500; font-family:'Inter',sans-serif; margin:0 0 16px; animation:fadeInUp .3s ease; }
.booking-toast svg { flex-shrink:0; }
.booking-toast-error { background:rgba(239,68,68,.12); border:1px solid rgba(239,68,68,.25); color:#F87171; }
.booking-toast-success { background:rgba(34,197,94,.12); border:1px solid rgba(34,197,94,.25); color:#22C55E; }

/* === BOOKING SUBMIT LOADING === */
.btn-loading { opacity:.85; cursor:wait !important; pointer-events:none; }
.btn-spinner { display:inline-block; width:16px; height:16px; border:2.5px solid rgba(255,255,255,.3); border-top-color:#fff; border-radius:50%; animation:spin .6s linear infinite; vertical-align:middle; margin-right:6px; }

/* === BOOKING RESULT MESSAGE === */
.booking-result-msg { display:flex; align-items:center; gap:14px; padding:18px 20px; border-radius:12px; margin-top:16px; animation:fadeInUp .4s ease; }
.booking-result-success { background:rgba(34,197,94,.08); border:1px solid rgba(34,197,94,.2); }
.booking-result-icon { flex-shrink:0; }
.booking-result-text { font-size:.9rem; line-height:1.5; color:var(--white); }

/* === COMPACT BOOKING WIDGET === */
.quick-booking { background:var(--dark); border:1px solid rgba(196,26,31,.15); border-radius:14px; padding:28px 28px 24px; margin:40px 0; }
.quick-booking h3 { margin-bottom:18px; font-size:1.15rem; }
.quick-booking-form { display:grid; grid-template-columns:1.4fr .8fr 1fr auto; gap:12px; align-items:flex-end; }
.quick-booking-form input, .quick-booking-form select { padding:13px 14px; background:var(--medium-gray); border:1px solid rgba(255,255,255,.1); border-radius:8px; color:var(--white); font-family:'Inter',sans-serif; font-size:.9rem; transition:border-color .25s ease; }
.quick-booking-form input:focus, .quick-booking-form select:focus { outline:none; border-color:var(--red); }
.quick-booking-form select { -webkit-appearance:none; -moz-appearance:none; appearance:none; background-image:url('data:image/svg+xml;utf8,<svg width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1.5L6 6.5L11 1.5" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>'); background-repeat:no-repeat; background-position:right 14px center; padding-right:36px; cursor:pointer; }
.quick-booking-form select option { background:#1a1a1a; color:#ffffff; }
.quick-booking-form input::placeholder { color:var(--text-muted); }
.quick-booking-form input[type="date"] { color-scheme:dark; }
.quick-booking-form input[type="date"]::-webkit-calendar-picker-indicator { filter:invert(.5); cursor:pointer; }
.quick-booking-form button { padding:13px 24px; background:var(--gradient-red); color:var(--white); border:none; border-radius:8px; font-weight:600; cursor:pointer; font-size:.9rem; white-space:nowrap; transition:transform .2s, box-shadow .2s; }
.quick-booking-form button:hover { transform:translateY(-1px); box-shadow:var(--shadow-red); }

/* === QUICK CALLBACK FORM === */
.callback-widget { background:rgba(196,26,31,.05); border:1px solid rgba(196,26,31,.15); border-radius:12px; padding:20px; margin:32px 0; }
.callback-fields { display:flex; gap:12px; align-items:flex-end; flex-wrap:wrap; }
.callback-widget input { flex:1; min-width:180px; padding:12px; background:var(--medium-gray); border:1px solid rgba(255,255,255,.1); border-radius:6px; color:var(--white); font-family:'Inter',sans-serif; }
.callback-widget input::placeholder { color:var(--text-muted); }
.callback-widget button { padding:12px 20px; background:var(--red); color:var(--white); border:none; border-radius:6px; font-weight:600; cursor:pointer; white-space:nowrap; transition:transform .2s,box-shadow .2s; }
.callback-widget button:hover { transform:translateY(-2px); box-shadow:var(--shadow-red); }

/* === EXIT INTENT BANNER === */
.exit-intent-banner { position:fixed; top:0; left:0; right:0; background:var(--gradient-red); padding:20px; text-align:center; z-index:1999; animation:slideDown .3s ease; display:none; }
.exit-intent-banner.show { display:block; }
.exit-intent-banner h3 { font-size:1.3rem; margin-bottom:8px; }
.exit-intent-banner .code { background:rgba(255,255,255,.2); padding:6px 12px; border-radius:4px; font-weight:700; font-family:monospace; }
.exit-intent-banner .close { position:absolute; top:15px; right:20px; background:transparent; border:none; color:var(--white); font-size:1.2rem; cursor:pointer; }

/* === TRUST BADGES === */
.trust-badges { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin:0; }
.trust-badge { text-align:center; padding:20px 16px; background:var(--dark); border:1px solid rgba(255,255,255,.04); border-radius:10px; transition:all .3s; }
.trust-badge:hover { border-color:rgba(196,26,31,.2); transform:translateY(-2px); }
.trust-badge-icon { margin-bottom:8px; }
.trust-badge h4 { font-size:.85rem; margin-bottom:2px; }
.trust-badge p { color:var(--text-muted); font-size:.78rem; }

/* === PROFESSIONAL LOGOS === */
.pro-logos { margin:0; padding:32px 0; border-top:1px solid rgba(255,255,255,.04); border-bottom:1px solid rgba(255,255,255,.04); overflow:hidden; }
.pro-logos-title { text-align:center; font-size:.75rem; color:var(--text-muted); text-transform:uppercase; letter-spacing:1.5px; margin-bottom:20px; font-weight:500; }
.logos-marquee { display:flex; gap:64px; animation:marquee 20s linear infinite; }
.logos-marquee:hover { animation-play-state:paused; }
.logo-item { font-family:'Montserrat',sans-serif; font-weight:700; font-size:.95rem; color:rgba(255,255,255,.25); white-space:nowrap; transition:color .3s; }
.logo-item:hover { color:rgba(255,255,255,.6); }

/* === RATING DISPLAY === */
.rating-display { display:inline-flex; align-items:center; gap:10px; background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.08); padding:8px 16px; border-radius:30px; }
.rating-stars { color:#FFB800; font-size:.9rem; letter-spacing:1px; display:flex; gap:2px; align-items:center; }
.rating-text { font-size:.82rem; color:var(--text-muted); }
.rating-text strong { color:var(--white); }

/* === SERVICES GRID === */
.services-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(320px,1fr)); gap:24px; }
.service-card-img { background:var(--dark); border:1px solid rgba(255,255,255,.05); border-radius:12px; overflow:hidden; transition:all .3s ease; cursor:pointer; }
.service-card-img:hover { transform:translateY(-4px); border-color:rgba(196,26,31,.15); box-shadow:var(--shadow-lg); }
.service-card-img .card-img { width:100%; height:200px; object-fit:cover; }
.service-card-img .card-body { padding:24px; }
.service-card-img h3 { font-size:1.2rem; margin-bottom:10px; }
.service-card-img p { color:var(--text-muted); line-height:1.6; margin-bottom:16px; font-size:.92rem; }
.service-link { color:var(--red); font-weight:600; font-size:.85rem; display:inline-flex; align-items:center; gap:6px; }

/* === ADVANTAGES === */
.advantages { background:var(--dark); padding:56px 0; }
.advantages-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.advantage-item { text-align:center; padding:24px 16px; }
.advantage-number { font-family:'Montserrat',sans-serif; font-size:2.4rem; font-weight:900; background:var(--gradient-red); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; margin-bottom:8px; }
.advantage-item h4 { font-size:.95rem; margin-bottom:4px; }
.advantage-item p { color:var(--text-muted); font-size:.82rem; }

/* === SPLIT SECTION === */
.split-section { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center; }
.split-img { width:100%; height:380px; object-fit:cover; border-radius:16px; border:1px solid rgba(255,255,255,.05); }
.franchise-features { list-style:none; margin-bottom:32px; }
.franchise-features li { display:flex; align-items:center; gap:12px; padding:10px 0; font-weight:500; }
.franchise-features li::before { content:''; display:flex; align-items:center; justify-content:center; width:28px; height:28px; background:rgba(196,26,31,.15); color:var(--red); border-radius:50%; font-weight:700; font-size:.8rem; flex-shrink:0; background-image:url('data:image/svg+xml;utf8,<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="rgb(227,30,36)" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><polyline points="20 6 9 17 4 12"/></svg>'); background-repeat:no-repeat; background-position:center; background-size:16px; }

/* === IMG GRID === */
.img-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.img-grid img { width:100%; height:250px; object-fit:cover; border-radius:12px; transition:transform .3s; }
.img-grid img:hover { transform:scale(1.03); }

/* === TINTS === */
.tints-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:20px; }
.tint-item { text-align:center; cursor:pointer; transition:transform .3s ease; }
.tint-item:hover { transform:scale(1.05); }
.tint-swatch { width:100%; aspect-ratio:1; border-radius:16px; margin-bottom:12px; border:2px solid rgba(255,255,255,.1); transition:border-color .3s; }
.tint-item:hover .tint-swatch { border-color:var(--red); }
.tint-item h4 { font-size:.95rem; margin-bottom:4px; }
.tint-item p { color:var(--text-muted); font-size:.85rem; }

/* === PRICING === */
.pricing-urgency { font-size:.75rem; background:rgba(196,26,31,.15); color:var(--red); padding:8px 12px; border-radius:4px; margin-top:8px; font-weight:600; }
.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.pricing-card { background:var(--dark); border:1px solid rgba(255,255,255,.05); border-radius:14px; padding:32px 26px; text-align:center; transition:all .3s ease; position:relative; }
.pricing-card.featured { border-color:var(--red); transform:scale(1.04); }
.pricing-card.featured::before { content:'Populaire'; position:absolute; top:-1px; left:50%; transform:translateX(-50%); background:var(--gradient-red); padding:5px 20px; border-radius:0 0 8px 8px; font-size:.75rem; font-weight:700; text-transform:uppercase; letter-spacing:1px; }
.pricing-card:hover { transform:translateY(-6px); border-color:rgba(196,26,31,.3); }
.pricing-card.featured:hover { transform:scale(1.04) translateY(-6px); }
.pricing-card h3 { font-size:1.15rem; margin-bottom:6px; }
.pricing-card .price { font-family:'Montserrat',sans-serif; font-size:2.2rem; font-weight:900; margin:16px 0; }
.pricing-card .price span { font-size:.9rem; font-weight:400; color:var(--text-muted); }
.pricing-features { list-style:none; margin:20px 0; text-align:left; }
.pricing-features li { padding:7px 0; color:var(--text-muted); display:flex; align-items:center; gap:8px; font-size:.88rem; }
.pricing-features li::before { content:''; color:var(--red); font-weight:700; display:inline-block; width:20px; height:20px; background-image:url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="rgb(227,30,36)" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><polyline points="20 6 9 17 4 12"/></svg>'); background-repeat:no-repeat; background-position:center; background-size:20px; margin-right:8px; }

/* === TESTIMONIALS === */
.testimonials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.testimonial-card { background:var(--dark); border:1px solid rgba(255,255,255,.04); border-radius:12px; padding:28px; }
.testimonial-stars { color:#FFB800; font-size:1rem; margin-bottom:12px; letter-spacing:1px; display:flex; gap:2px; }
.testimonial-card p { color:var(--text-muted); font-style:italic; line-height:1.6; margin-bottom:16px; font-size:.9rem; }
.testimonial-author { display:flex; align-items:center; gap:10px; }
.testimonial-avatar { width:38px; height:38px; border-radius:50%; background:var(--gradient-red); display:flex; align-items:center; justify-content:center; font-weight:700; font-size:.8rem; }
.testimonial-author h5 { font-size:.88rem; }
.testimonial-author span { color:var(--text-muted); font-size:.78rem; }

/* === CTA BANNER === */
.cta-banner { background:var(--gradient-red); padding:56px 0; text-align:center; position:relative; overflow:hidden; }
.cta-banner::before { content:''; position:absolute; top:-50%; right:-10%; width:300px; height:300px; background:rgba(255,255,255,.04); border-radius:50%; }
.cta-banner h2 { font-size:2rem; margin-bottom:12px; position:relative; }
.cta-banner p { font-size:1rem; opacity:.9; margin-bottom:24px; position:relative; }

/* === WHY CARD IMG === */
.why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.why-card-img { background:var(--dark); border:1px solid rgba(255,255,255,.04); border-radius:12px; overflow:hidden; transition:all .3s ease; }
.why-card-img:hover { border-color:rgba(196,26,31,.15); transform:translateY(-3px); }
.why-card-img img { width:100%; height:150px; object-fit:cover; }
.why-card-img .card-content { padding:20px; text-align:center; }
.why-card-img h4 { font-size:.95rem; margin-bottom:4px; }
.why-card-img p { color:var(--text-muted); font-size:.85rem; }

/* === WHY CARD (no img) === */
.why-card { background:var(--dark); border:1px solid rgba(255,255,255,.04); border-radius:12px; padding:32px 24px; text-align:center; transition:all .3s ease; }
.why-card:hover { border-color:rgba(196,26,31,.15); transform:translateY(-3px); }
.why-icon { font-size:2rem; margin-bottom:16px; }
.why-card h4 { font-size:1.05rem; margin-bottom:8px; }
.why-card p { color:var(--text-muted); font-size:.88rem; }

/* === PROCESS STEPS === */
.process-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; counter-reset:step; }
.process-step { text-align:center; padding:24px 16px; position:relative; counter-increment:step; }
.process-step::before { content:counter(step, decimal-leading-zero); display:block; font-family:'Montserrat',sans-serif; font-size:2.2rem; font-weight:900; background:var(--gradient-red); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; margin-bottom:12px; }
.process-step h4 { margin-bottom:6px; font-size:.95rem; }
.process-step p { color:var(--text-muted); font-size:.82rem; }

/* === LEGAL TABLE === */
.legal-table { width:100%; border-collapse:collapse; background:var(--dark); border-radius:12px; overflow:hidden; }
.legal-table th { background:var(--medium-gray); padding:14px 20px; text-align:left; font-weight:700; font-size:.82rem; text-transform:uppercase; letter-spacing:.5px; }
.legal-table td { padding:14px 20px; border-bottom:1px solid rgba(255,255,255,.05); color:var(--text-muted); font-size:.88rem; }
.legal-table tr:last-child td { border-bottom:none; }

/* === FAQ === */
.faq-list { max-width:760px; margin:0 auto; }
.faq-item { background:var(--dark); border:1px solid rgba(255,255,255,.05); border-radius:10px; margin-bottom:12px; overflow:hidden; }
.faq-question { padding:16px 20px; cursor:pointer; display:flex; justify-content:space-between; align-items:center; font-weight:600; font-size:.88rem; transition:color .3s; }
.faq-question:hover { color:var(--red); }
.faq-question .icon { font-size:1.3rem; transition:transform .3s; color:var(--red); }
.faq-item.open .faq-question .icon { transform:rotate(45deg); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height .3s ease; }
.faq-answer-inner { padding:0 20px 16px; color:var(--text-muted); line-height:1.7; font-size:.88rem; }
.faq-item.open .faq-answer { max-height:300px; }

/* === SEARCH === */
.search-box { max-width:640px; margin:32px auto 0; display:flex; gap:0; border-radius:10px; overflow:hidden; box-shadow:var(--shadow-lg); }
.search-box input { flex:1; padding:16px 20px; background:var(--white); border:none; font-size:.95rem; font-family:'Inter',sans-serif; color:var(--black); }
.search-box input::placeholder { color:#999; }
.search-box input:focus { outline:none; }
.search-box button { padding:16px 32px; background:var(--gradient-red); color:var(--white); border:none; font-family:'Montserrat',sans-serif; font-weight:700; font-size:.88rem; cursor:pointer; white-space:nowrap; }
.filter-btn { padding:8px 18px; border-radius:30px; border:1px solid rgba(255,255,255,.15); background:transparent; color:var(--white); font-family:'Inter',sans-serif; font-size:.85rem; cursor:pointer; transition:all .3s; }
.filter-btn:hover, .filter-btn.active { background:var(--red); border-color:var(--red); }

/* === CENTRES === */
.centres-layout { display:grid; grid-template-columns:340px 1fr; gap:0; min-height:520px; }
.centres-list { background:var(--dark); border-right:1px solid rgba(255,255,255,.05); overflow-y:auto; max-height:520px; }
.centre-item { padding:20px; border-bottom:1px solid rgba(255,255,255,.05); cursor:pointer; transition:all .3s; }
.centre-item:hover, .centre-item.active { background:var(--medium-gray); border-left:4px solid var(--red); }
.centre-item h3 { font-size:.88rem; margin-bottom:5px; display:flex; align-items:center; gap:8px; }
.badge-open { font-size:.68rem; background:#22C55E; color:white; padding:2px 8px; border-radius:10px; font-weight:600; }
.centre-item .address { color:var(--text-muted); font-size:.82rem; margin-bottom:6px; }
.service-tag { font-size:.72rem; padding:3px 9px; border-radius:12px; background:rgba(196,26,31,.1); color:var(--red-light); font-weight:500; display:inline-block; margin-right:4px; }
.centre-action-btn { font-size:.82rem; color:var(--red); font-weight:600; cursor:pointer; margin-right:12px; }
.centres-map { background:var(--medium-gray); display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden; }
.map-dot { fill:var(--red); cursor:pointer; transition:all .3s; }
.map-dot:hover { r:8; fill:var(--red-light); }

/* === REGION GRID === */
.region-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:20px; }
.region-card { background:var(--dark); border:1px solid rgba(255,255,255,.05); border-radius:12px; padding:24px; }
.region-card h3 { font-size:1rem; margin-bottom:14px; display:flex; align-items:center; gap:8px; }
.region-count { font-size:.75rem; background:rgba(196,26,31,.15); color:var(--red); padding:2px 10px; border-radius:10px; }
.region-centres { list-style:none; }
.region-centres li { padding:5px 0; border-bottom:1px solid rgba(255,255,255,.03); color:var(--text-muted); font-size:.85rem; }

/* === FRANCHISE === */
.franchise-hero-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; background:var(--dark); border:1px solid rgba(255,255,255,.05); border-radius:14px; padding:32px; }
.franchise-stat { text-align:center; }
.franchise-stat .number { font-family:'Montserrat',sans-serif; font-size:2.2rem; font-weight:900; background:var(--gradient-red); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.franchise-stat p { color:var(--text-muted); font-size:.85rem; margin-top:4px; }
.key-figures { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; margin-top:40px; }
.key-figure { background:var(--dark); border:1px solid rgba(255,255,255,.05); border-radius:14px; padding:28px 20px; text-align:center; transition:all .3s; }
.key-figure:hover { border-color:rgba(196,26,31,.2); transform:translateY(-3px); }
.key-figure .label { color:var(--red); font-weight:700; font-size:.75rem; text-transform:uppercase; letter-spacing:1px; margin-bottom:10px; }
.key-figure .value { font-family:'Montserrat',sans-serif; font-size:1.8rem; font-weight:900; }
.key-figure .desc { color:var(--text-muted); font-size:.85rem; margin-top:6px; }
.advantages-franchise { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.advantage-franchise-card { background:var(--dark); border:1px solid rgba(255,255,255,.05); border-radius:14px; padding:26px; display:flex; gap:18px; align-items:flex-start; transition:all .3s; }
.advantage-franchise-card:hover { border-color:rgba(196,26,31,.2); }
.advantage-franchise-icon { width:48px; height:48px; background:rgba(196,26,31,.1); border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:1.3rem; flex-shrink:0; }
.advantage-franchise-card h4 { margin-bottom:6px; font-size:1rem; }
.advantage-franchise-card p { color:var(--text-muted); font-size:.88rem; line-height:1.6; }

/* === TIMELINE === */
.steps-timeline { max-width:740px; margin:0 auto; }
.timeline-item { display:flex; gap:24px; margin-bottom:36px; align-items:flex-start; }
.timeline-number { width:52px; height:52px; background:var(--gradient-red); border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:'Montserrat',sans-serif; font-weight:900; font-size:1.3rem; flex-shrink:0; }
.timeline-content h3 { margin-bottom:6px; font-size:1.05rem; }
.timeline-content p { color:var(--text-muted); line-height:1.7; font-size:.9rem; }

/* === CONTACT === */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:48px; }
.contact-info-card { background:var(--dark); border:1px solid rgba(255,255,255,.05); border-radius:12px; padding:20px; margin-bottom:20px; display:flex; gap:14px; align-items:flex-start; }
.contact-info-icon { display:flex; align-items:center; justify-content:center; }
.contact-info-icon svg { margin-right:4px; }
.contact-info-card h4 { margin-bottom:5px; font-size:.95rem; }
.contact-info-card p { color:var(--text-muted); font-size:.85rem; }
.success-message { display:none; background:rgba(34,197,94,.1); border:1px solid rgba(34,197,94,.3); border-radius:12px; padding:28px; text-align:center; }
.success-message h3 { color:#22C55E; font-size:1.15rem; margin-bottom:10px; }

/* === FOOTER === */
.footer { background:var(--dark); border-top:1px solid rgba(255,255,255,.05); padding:48px 0 18px; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr 1fr; gap:32px; margin-bottom:32px; }
.footer-brand p { color:var(--text-muted); font-size:.85rem; line-height:1.7; margin-top:10px; }
.footer h4 { font-size:.88rem; margin-bottom:16px; font-weight:600; }
.footer-links { list-style:none; }
.footer-links li { margin-bottom:10px; }
.footer-links a { color:var(--text-muted); font-size:.85rem; transition:color .3s; }
.footer-links a:hover { color:var(--red); }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; padding-top:18px; border-top:1px solid rgba(255,255,255,.05); }
.footer-bottom span { color:var(--text-muted); font-size:.8rem; }
.footer-social { display:flex; gap:14px; }
.footer-social a { display:flex; align-items:center; justify-content:center; width:30px; height:30px; background:rgba(196,26,31,.1); border-radius:50%; color:var(--red); font-weight:600; transition:all .3s; }
.footer-social a:hover { background:var(--red); color:var(--white); }

/* === CENTRE SEARCH DROPDOWN === */
#centreDropdown, #contactCentreDropdown { box-shadow:0 8px 32px rgba(0,0,0,.4); }
#centreDropdown::-webkit-scrollbar, #contactCentreDropdown::-webkit-scrollbar { width:6px; }
#centreDropdown::-webkit-scrollbar-thumb, #contactCentreDropdown::-webkit-scrollbar-thumb { background:rgba(255,255,255,.1); border-radius:3px; }

/* === SVG ICON ALIGNMENT === */
.btn svg, .floating-rdv svg, .call-btn svg, .rdv-btn svg, .service-link svg { vertical-align:middle; margin-right:4px; }
.trust-badge-icon svg { display:block; margin:0 auto 12px; }
.contact-info-icon { display:flex; align-items:center; justify-content:center; }
.contact-info-icon svg { margin-right:4px; }
.advantage-franchise-icon { display:flex; align-items:center; justify-content:center; }
.advantage-franchise-icon svg { margin-right:0; }
.testimonial-stars svg, .rating-stars svg { vertical-align:middle; margin-right:2px; }

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */
@media (max-width:1024px) {
  .container { padding:0 24px; }
  .section { padding:56px 0; }
  .advantages-grid { grid-template-columns:repeat(2,1fr); }
  .process-steps { grid-template-columns:repeat(2,1fr); }
  .why-grid { grid-template-columns:repeat(2,1fr); }
  .testimonials-grid { grid-template-columns:repeat(2,1fr); }
  .trust-badges { grid-template-columns:repeat(2,1fr); }
  .pricing-grid { gap:20px; }
  .split-section { grid-template-columns:1fr; gap:28px; }
  .split-img { height:280px; }
  .quick-booking-form { grid-template-columns:1fr 1fr; }
  .franchise-hero-stats { padding:28px; }
  .key-figures { grid-template-columns:repeat(2,1fr); gap:20px; }
  .footer-grid { grid-template-columns:1fr 1fr 1fr; gap:24px; }
}

@media (max-width:768px) {
  .hero { height:75vh; }
  .hero-content h1 { font-size:2rem; }
  .hero-content p { font-size:.92rem; }
  .section { padding:48px 0; }
  .section-header h2 { font-size:1.6rem; }
  .advantages-grid { grid-template-columns:1fr; }
  .process-steps { grid-template-columns:1fr 1fr; gap:16px; }
  .why-grid { grid-template-columns:1fr; }
  .testimonials-grid { grid-template-columns:1fr; }
  .pricing-grid { grid-template-columns:1fr; max-width:400px; margin:0 auto; }
  .pricing-card.featured { transform:none; }
  .pricing-card.featured:hover { transform:translateY(-6px); }
  .trust-badges { grid-template-columns:repeat(2,1fr); gap:12px; }
  .nav-links { display:none !important; position:fixed; top:80px; left:0; right:0; background:rgba(10,10,10,.98); backdrop-filter:blur(20px); border-top:1px solid rgba(255,255,255,.08); flex-direction:column; padding:20px 0; z-index:9999; box-shadow:0 12px 40px rgba(0,0,0,.6); }
  .nav-links.show { display:flex !important; }
  .nav-links li { text-align:center; border-bottom:1px solid rgba(255,255,255,.04); }
  .nav-links li:last-child { border-bottom:none; }
  .nav-links li a { display:block; padding:16px 24px; font-size:.95rem; }
  .nav-links li a::after { display:none; }
  .nav-links li a.active { color:var(--red); }
  .nav-links .nav-cta { margin:12px 24px; display:block; text-align:center; border-radius:8px; }
  .hamburger { display:flex; }
  .centres-layout { grid-template-columns:1fr; }
  .centres-list { max-height:280px; }
  .contact-grid { grid-template-columns:1fr; gap:32px; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:20px; }
  .quick-booking-form { grid-template-columns:1fr; }
  .modal-content { padding:20px 16px; }
  .modal-header-icon { width:38px; height:38px; }
  .modal h2 { font-size:1.25rem; }
  .step-title h3 { font-size:.95rem; }
  .nearby-centre-body { flex-direction:column; gap:6px; }
  .nearby-centre-distance { align-self:flex-start; }
  .tints-grid { grid-template-columns:repeat(3,1fr); }
  .key-figures { grid-template-columns:repeat(2,1fr); gap:16px; }
  .key-figure { padding:22px 16px; }
  .advantages-franchise { grid-template-columns:1fr; }
  .franchise-hero-stats { grid-template-columns:1fr; gap:16px; padding:24px; }
  #franchiseCandidatureForm div[style*="grid-template-columns:1fr 1fr"] { grid-template-columns:1fr !important; }
  #franchiseCandidatureForm { padding:24px 18px !important; }
  .franchise-stat .number { font-size:1.8rem; }
  .search-box { flex-direction:column; border-radius:10px; }
  .search-box button { border-radius:0; }
  .timeline-item { gap:18px; }
  .timeline-number { width:44px; height:44px; font-size:1.1rem; }
  .region-grid { grid-template-columns:1fr; }
  .cta-banner h2 { font-size:1.5rem; }
}

/* === REVIEWS MODAL (global pour fiabilité) === */
.reviews-modal-overlay { display:none; position:fixed; inset:0; background:rgba(0,0,0,.75); backdrop-filter:blur(4px); z-index:10000; justify-content:center; align-items:center; padding:24px; }
.reviews-modal-overlay.open { display:flex !important; }
.reviews-modal { background:#0f0f0f; border:1px solid rgba(255,255,255,.06); border-radius:16px; width:100%; max-width:960px; max-height:85vh; display:flex; flex-direction:column; animation:reviewsModalIn .3s ease; box-shadow:0 24px 80px rgba(0,0,0,.5); }
.reviews-modal-header { display:flex; justify-content:space-between; align-items:center; padding:24px 28px 16px; border-bottom:1px solid rgba(255,255,255,.06); }
.reviews-modal-header h3 { font-size:1.15rem; margin:0; color:#fff; }
.reviews-modal-subtitle { font-size:.8rem; color:rgba(255,255,255,.45); margin:4px 0 0; }
.reviews-modal-close { width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.08); color:#fff; display:flex; align-items:center; justify-content:center; cursor:pointer; transition:all .2s; flex-shrink:0; }
.reviews-modal-close:hover { background:#C41A1F; border-color:#C41A1F; }
.reviews-modal-body { flex:1; overflow-y:auto; padding:24px 28px; scrollbar-width:thin; scrollbar-color:rgba(255,255,255,.1) transparent; }
.reviews-modal-body::-webkit-scrollbar { width:6px; }
.reviews-modal-body::-webkit-scrollbar-thumb { background:rgba(255,255,255,.1); border-radius:3px; }
.reviews-modal-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.reviews-modal-grid .testimonial-card { animation:fadeInUp .35s ease backwards; }
.reviews-modal-loader { text-align:center; padding:20px; color:rgba(255,255,255,.45); font-size:.85rem; display:flex; align-items:center; justify-content:center; gap:8px; }
.spinner-sm { width:18px; height:18px; border:2px solid rgba(255,255,255,.1); border-top-color:#C41A1F; border-radius:50%; animation:spin .6s linear infinite; }
.reviews-modal-footer { display:flex; justify-content:center; align-items:center; gap:16px; padding:16px 28px 20px; border-top:1px solid rgba(255,255,255,.06); }
.reviews-modal-count { font-size:.78rem; color:rgba(255,255,255,.45); }
@keyframes reviewsModalIn { from { opacity:0; transform:translateY(24px) scale(.97); } to { opacity:1; transform:translateY(0) scale(1); } }

@media (max-width:1024px) {
  .reviews-modal-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:768px) {
  .reviews-modal-grid { grid-template-columns:1fr; }
  .reviews-modal { max-height:90vh; border-radius:12px; }
  .reviews-modal-header { padding:18px 20px 14px; }
  .reviews-modal-body { padding:18px 20px; }
  .reviews-modal-footer { padding:14px 20px 16px; }
  .reviews-modal-overlay { padding:12px; }
}

@media (max-width:480px) {
  .hero-content h1 { font-size:1.7rem; }
  .process-steps { grid-template-columns:1fr; }
  .trust-badges { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .topbar-left { display:none; }
}

/* ============================================
   QUICK BOOKING — Select + Modal
   ============================================ */

/* Quick booking modal overlay */
.qb-modal-overlay { display:none; position:fixed; inset:0; background:rgba(0,0,0,.7); z-index:10001; align-items:center; justify-content:center; padding:20px; }
.qb-modal-overlay.open { display:flex !important; }

/* Quick booking modal */
.qb-modal { background:#1a1a1a; border-radius:16px; width:100%; max-width:460px; position:relative; animation:qbModalIn .3s ease; overflow:hidden; }
@keyframes qbModalIn { from { opacity:0; transform:translateY(20px) scale(.97); } to { opacity:1; transform:translateY(0) scale(1); } }
.qb-modal-close { position:absolute; top:14px; right:16px; background:none; border:none; color:rgba(255,255,255,.5); font-size:1.6rem; cursor:pointer; z-index:2; line-height:1; }
.qb-modal-close:hover { color:var(--white); }

.qb-modal-header { padding:28px 28px 0; }
.qb-modal-header h3 { font-size:1.2rem; margin-bottom:4px; }
.qb-modal-centre { color:var(--red); font-size:.9rem; font-weight:600; }
.qb-modal-recap { color:var(--text-muted); font-size:.8rem; margin-top:4px; }

#qbForm { padding:20px 28px 28px; }
.qb-form-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.qb-form-group { margin-bottom:14px; }
.qb-form-group label { display:block; font-size:.8rem; color:var(--text-muted); margin-bottom:5px; font-weight:500; }
.qb-form-group label .required { color:var(--red); }
.qb-optional { color:var(--text-muted); font-weight:400; font-size:.75rem; }
.qb-form-group input { width:100%; padding:11px 14px; background:var(--medium-gray); border:1px solid rgba(255,255,255,.1); border-radius:8px; color:var(--white); font-family:'Inter',sans-serif; font-size:.9rem; transition:border-color .2s; }
.qb-form-group input:focus { outline:none; border-color:var(--red); }
.qb-form-group input::placeholder { color:rgba(255,255,255,.3); }

.qb-form-error { background:rgba(239,68,68,.1); border:1px solid rgba(239,68,68,.3); color:#f87171; padding:10px 14px; border-radius:8px; font-size:.85rem; margin-bottom:14px; }

.qb-submit-btn { width:100%; justify-content:center; padding:13px; font-size:.95rem; border-radius:8px; display:flex; align-items:center; gap:8px; }
.qb-submit-btn:disabled { opacity:.6; cursor:not-allowed; }
.qb-btn-loader { display:inline-flex; align-items:center; gap:6px; }

/* Success state */
.qb-success { text-align:center; padding:40px 28px; }
.qb-success-icon { width:56px; height:56px; border-radius:50%; background:rgba(34,197,94,.12); color:#22c55e; display:flex; align-items:center; justify-content:center; font-size:1.6rem; margin:0 auto 16px; }
.qb-success h4 { font-size:1.15rem; margin-bottom:8px; }
.qb-success p { color:var(--text-muted); font-size:.9rem; line-height:1.5; }
.qb-success-ref { color:var(--white); font-weight:600; margin-top:10px; }
.qb-success-reload { color:var(--text-muted); font-size:.8rem; margin-top:12px; }

/* Responsive */
@media (max-width:768px) {
  .qb-centres-list { grid-template-columns:repeat(2, 1fr); }
  .qb-form-row { grid-template-columns:1fr; }
  .qb-modal { max-width:100%; }
}
@media (max-width:480px) {
  .qb-centres-list { grid-template-columns:1fr; }
  .quick-booking-section { padding:20px; }
}
