/* ============================================
   LES GENTLEMEN - STYLE CSS PRINCIPAL
   Site Moderne & Coloré - Show Chippendales
   ============================================ */

/* --- Variables --- */
:root {
    --primary: #e91e63;
    --primary-dark: #c2185b;
    --secondary: #ff6f00;
    --accent: #ffd600;
    --gold: #f5c518;
    --dark: #0d0d1a;
    --dark-2: #1a1a2e;
    --dark-3: #16213e;
    --text: #e0e0e0;
    --text-light: #9e9e9e;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-gold: linear-gradient(135deg, var(--gold), var(--secondary));
    --shadow: 0 10px 40px rgba(0,0,0,0.3);
    --shadow-hover: 0 20px 60px rgba(233, 30, 99, 0.25);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Montserrat', sans-serif;
    --font-display: 'Playfair Display', serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font);
    background: var(--dark);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

/* --- Navbar --- */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(13, 13, 26, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}
.navbar.scrolled { background: rgba(13, 13, 26, 0.97); box-shadow: var(--shadow); }
.nav-container {
    max-width: 1400px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between; height: 70px;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.3rem; }
.logo-icon { color: var(--gold); font-size: 1.5rem; }
.logo-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
    padding: 8px 16px; border-radius: var(--radius-sm);
    font-size: 0.9rem; font-weight: 500; color: var(--text-light);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.08); }
.btn-nav {
    background: var(--gradient) !important; color: var(--white) !important;
    font-weight: 600 !important; padding: 10px 24px !important; border-radius: 50px !important;
}
.btn-nav:hover { box-shadow: 0 4px 20px rgba(233, 30, 99, 0.5); transform: translateY(-2px); }
.btn-nav-secondary {
    background: linear-gradient(135deg, var(--secondary), var(--gold)) !important;
}
.btn-nav-secondary:hover { box-shadow: 0 4px 20px rgba(255, 111, 0, 0.5); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
    position: absolute; top: 100%; left: 0; min-width: 200px;
    background: var(--dark-2); border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm); padding: 8px 0;
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: var(--transition); box-shadow: var(--shadow);
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 10px 20px; font-size: 0.85rem; }
.dropdown-menu a:hover { background: rgba(233, 30, 99, 0.15); color: var(--primary); }

/* Mobile Nav Toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: var(--transition); }

/* --- Hero --- */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
    text-align: center; overflow: hidden;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-3) 100%);
}

/* Hero — Photos avec contour néon festif */
.hero-neon-photos {
    display: flex;
    gap: 28px;
    justify-content: center;
    margin-bottom: 36px;
}
.neon-frame {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    width: 360px;
    height: 480px;
    flex-shrink: 0;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.neon-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    border-radius: 14px;
}
/* Bordure intérieure pour laisser voir le glow */
.neon-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 3px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    z-index: 2;
    pointer-events: none;
}
.neon-pink::before {
    background: linear-gradient(135deg, #e91e63, #ff4081, #f50057, #ff80ab, #e91e63);
    background-size: 300% 300%;
    animation: neonShift 3s ease-in-out infinite;
}
.neon-orange::before {
    background: linear-gradient(135deg, #ff6f00, #ffc107, #ff9800, #ffd54f, #ff6f00);
    background-size: 300% 300%;
    animation: neonShift 3s ease-in-out infinite 0.5s;
}
/* Glow extérieur */
.neon-pink {
    box-shadow: 0 0 15px rgba(233, 30, 99, 0.5),
                0 0 40px rgba(233, 30, 99, 0.25),
                0 0 80px rgba(233, 30, 99, 0.1),
                inset 0 0 15px rgba(233, 30, 99, 0.15);
}
.neon-orange {
    box-shadow: 0 0 15px rgba(255, 111, 0, 0.5),
                0 0 40px rgba(255, 111, 0, 0.25),
                0 0 80px rgba(255, 111, 0, 0.1),
                inset 0 0 15px rgba(255, 111, 0, 0.15);
}
.neon-frame:hover {
    transform: translateY(-8px) scale(1.03);
}
.neon-pink:hover {
    box-shadow: 0 0 25px rgba(233, 30, 99, 0.7),
                0 0 60px rgba(233, 30, 99, 0.4),
                0 0 120px rgba(233, 30, 99, 0.15),
                inset 0 0 20px rgba(233, 30, 99, 0.2);
}
.neon-orange:hover {
    box-shadow: 0 0 25px rgba(255, 111, 0, 0.7),
                0 0 60px rgba(255, 111, 0, 0.4),
                0 0 120px rgba(255, 111, 0, 0.15),
                inset 0 0 20px rgba(255, 111, 0, 0.2);
}
/* Label sous la photo */
.neon-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 0 8px;
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    z-index: 3;
}
/* Animation du gradient néon */
@keyframes neonShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
/* Pulsation douce */
.neon-frame { animation: neonPulse 2.5s ease-in-out infinite; }
.neon-frame:nth-child(2) { animation-delay: 0.8s; }
@keyframes neonPulse {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.08); }
}

@media (max-width: 768px) {
    .hero-neon-photos { gap: 16px; }
    .neon-frame { width: 260px; height: 350px; border-radius: 14px; }
}
@media (max-width: 480px) {
    .neon-frame { width: 160px; height: 220px; }
}
.hero-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(233,30,99,0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 50%, rgba(255,111,0,0.1) 0%, transparent 60%);
}
.hero-particles {
    position: absolute; inset: 0;
    background-image: radial-gradient(2px 2px at 20px 30px, rgba(255,214,0,0.3), transparent),
                      radial-gradient(2px 2px at 40px 70px, rgba(233,30,99,0.2), transparent),
                      radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.2), transparent),
                      radial-gradient(1px 1px at 130px 80px, rgba(255,111,0,0.2), transparent);
    background-size: 200px 100px;
    animation: particles 20s linear infinite;
}
@keyframes particles { to { transform: translateY(-100px); } }
.hero-content { position: relative; z-index: 2; padding: 0 24px; max-width: 900px; }
.hero-subtitle {
    font-size: 0.95rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 20px;
}
.hero-title {
    font-family: var(--font-display); font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 700; line-height: 1.1; margin-bottom: 24px; color: var(--white);
}
.hero-location { font-size: 0.6em; font-family: var(--font); font-weight: 300; letter-spacing: 5px; text-transform: uppercase; }
.gradient-text {
    background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-desc { font-size: 1.15rem; color: var(--text-light); max-width: 600px; margin: 0 auto 32px; line-height: 1.8; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; }
.trust-item { font-size: 0.85rem; color: var(--text-light); display: flex; align-items: center; gap: 8px; }
.trust-item i { color: var(--gold); }
.hero-scroll {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    animation: bounce 2s infinite;
}
.hero-scroll a { color: var(--text-light); font-size: 1.5rem; }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(10px); } }

/* --- Buttons --- */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border-radius: 50px; font-weight: 600;
    font-size: 0.95rem; transition: var(--transition); cursor: pointer; border: none;
}
.btn-primary { background: var(--gradient); color: var(--white); }
.btn-primary:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.btn-outline { border: 2px solid rgba(255,255,255,0.2); color: var(--white); background: transparent; }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: rgba(233,30,99,0.08); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }

/* --- Sections --- */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
    display: inline-block; padding: 6px 20px; border-radius: 50px;
    background: rgba(233, 30, 99, 0.12); color: var(--primary);
    font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 16px;
}
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem); color: var(--white); margin-bottom: 16px; }
.section-desc { font-size: 1.05rem; color: var(--text-light); max-width: 600px; margin: 0 auto; }

/* --- Grid --- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* --- Cards --- */
.card {
    background: var(--dark-2); border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius); padding: 36px 28px;
    transition: var(--transition); display: block;
}
.card-hover:hover {
    transform: translateY(-8px); border-color: rgba(233, 30, 99, 0.3);
    box-shadow: var(--shadow-hover);
}
.card-icon {
    width: 60px; height: 60px; border-radius: 16px; background: var(--gradient);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--white); margin-bottom: 20px;
}
.card h3 { font-size: 1.2rem; color: var(--white); margin-bottom: 12px; }
.card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.card-link { font-size: 0.85rem; font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 6px; }
.card:hover .card-link { gap: 12px; }

/* --- Artist Cards --- */
.artist-card { display: block; text-align: center; transition: var(--transition); }
.artist-card:hover { transform: translateY(-8px); }
.artist-img {
    width: 100%; aspect-ratio: 3/4; background-size: cover; background-position: center top;
    border-radius: var(--radius); overflow: hidden; position: relative; margin-bottom: 16px;
}
.artist-overlay {
    position: absolute; inset: 0; background: rgba(233,30,99,0.5);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition);
}
.artist-card:hover .artist-overlay { opacity: 1; }
.artist-cta {
    padding: 10px 24px; border: 2px solid var(--white); border-radius: 50px;
    color: var(--white); font-weight: 600; font-size: 0.85rem;
}
.artist-card h4 { font-size: 1.1rem; color: var(--white); margin-bottom: 4px; }
.artist-card p { font-size: 0.8rem; color: var(--text-light); }

/* --- Tabs --- */
.equipe-tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 40px; }
.tab-btn {
    padding: 12px 32px; border-radius: 50px; border: 2px solid rgba(255,255,255,0.1);
    background: transparent; color: var(--text-light); font-weight: 600;
    font-size: 0.95rem; cursor: pointer; transition: var(--transition);
    font-family: var(--font);
}
.tab-btn.active { background: var(--gradient); border-color: transparent; color: var(--white); }
.tab-btn:hover:not(.active) { border-color: var(--primary); color: var(--primary); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* --- Zones Section --- */
.zones-section { background: var(--dark-2); }
.zones-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 30px; }
.zone-card {
    padding: 14px 24px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.08);
    background: var(--dark); display: flex; align-items: center; gap: 8px;
    font-size: 0.9rem; color: var(--text-light); transition: var(--transition);
}
.zone-card:hover { border-color: var(--primary); color: var(--primary); }
.zone-card i { color: var(--primary); font-size: 0.8rem; }
.zone-primary { background: var(--gradient); color: var(--white); border-color: transparent; }
.zone-primary i { color: var(--white); }
.zone-primary h3, .zone-card h3 { font-size: 0.9rem; font-weight: 600; }
.zone-primary p { font-size: 0.75rem; opacity: 0.8; }
.zones-note { text-align: center; color: var(--text-light); font-size: 0.9rem; }

/* --- CTA Section --- */
.cta-section { padding: 60px 0; }
.cta-box {
    background: var(--dark-2); border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius); padding: 60px 40px; text-align: center;
    position: relative; overflow: hidden;
}
.cta-box::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(233,30,99,0.08) 0%, transparent 70%);
}
.cta-box h2 { font-family: var(--font-display); font-size: 2rem; color: var(--white); margin-bottom: 16px; position: relative; }
.cta-box > p { color: var(--text-light); margin-bottom: 32px; position: relative; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; position: relative; }
.payment-badges { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }
.badge {
    display: flex; align-items: center; gap: 6px; padding: 8px 16px;
    border-radius: 50px; background: rgba(255,255,255,0.06);
    color: var(--text-light); font-size: 0.8rem; font-weight: 500;
}
.badge i { color: var(--gold); }

/* --- Footer --- */
.footer { background: var(--dark-2); padding: 80px 0 0; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 60px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-size: 1.2rem; font-weight: 700; margin-bottom: 16px; }
.footer-col p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; }
.footer-col h4 { font-size: 1rem; color: var(--white); margin-bottom: 20px; font-weight: 600; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 0.9rem; color: var(--text-light); }
.footer-col ul a:hover { color: var(--primary); }
.contact-list li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-light); }
.contact-list i { color: var(--primary); width: 16px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
    width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: center; color: var(--text-light);
    transition: var(--transition);
}
.social-links a:hover { background: var(--gradient); color: var(--white); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05); padding: 24px 0;
    text-align: center; font-size: 0.8rem; color: var(--text-light);
}
.footer-seo { margin-top: 8px; font-size: 0.7rem; opacity: 0.4; }

/* --- Utilities --- */
.text-center { text-align: center; }
.mt-1 { margin-top: 16px; }
.mt-2 { margin-top: 32px; }

/* --- Animations --- */
.animate-fade-up { opacity: 0; transform: translateY(30px); animation: fadeUp 0.8s ease forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* --- Reservation Page --- */
.reservation-hero {
    padding: 140px 0 60px; background: var(--dark-2); text-align: center;
}
.form-section { padding: 60px 0 100px; }
.reservation-form {
    max-width: 700px; margin: 0 auto; background: var(--dark-2);
    border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius);
    padding: 48px; box-shadow: var(--shadow);
}
.form-group { margin-bottom: 24px; }
.form-group label {
    display: block; font-size: 0.9rem; font-weight: 600; color: var(--white);
    margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 14px 18px; border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.1); background: var(--dark);
    color: var(--white); font-family: var(--font); font-size: 0.95rem;
    transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(233,30,99,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.payment-section {
    margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.06);
}
.payment-section h3 { font-size: 1.2rem; color: var(--white); margin-bottom: 20px; text-align: center; }
.payment-options { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.payment-option {
    padding: 24px; border: 2px solid rgba(255,255,255,0.08); border-radius: var(--radius);
    text-align: center; cursor: pointer; transition: var(--transition); background: var(--dark);
}
.payment-option:hover, .payment-option.selected {
    border-color: var(--primary); background: rgba(233,30,99,0.08);
}
.payment-option i { font-size: 2rem; margin-bottom: 12px; display: block; }
.payment-option .paypal-icon { color: #0070ba; }
.payment-option .wero-icon { color: var(--gold); }
.payment-option h4 { font-size: 1rem; color: var(--white); margin-bottom: 4px; }
.payment-option p { font-size: 0.8rem; color: var(--text-light); }

.amount-display {
    text-align: center; padding: 20px; background: rgba(233,30,99,0.08);
    border-radius: var(--radius-sm); margin-bottom: 24px;
}
.amount-display .label { font-size: 0.85rem; color: var(--text-light); }
.amount-display .amount { font-size: 1.8rem; font-weight: 800; color: var(--gold); }

.form-submit { text-align: center; }
.form-submit .btn { width: 100%; justify-content: center; font-size: 1.1rem; padding: 18px; }

.form-note { text-align: center; margin-top: 16px; font-size: 0.8rem; color: var(--text-light); }
.form-note i { color: var(--gold); }

/* --- Page Hero (inner pages) --- */
.page-hero {
    padding: 140px 0 60px; text-align: center;
    background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
}
.page-hero h1 { font-family: var(--font-display); font-size: 2.5rem; color: var(--white); margin-bottom: 16px; }
.page-hero p { font-size: 1.05rem; color: var(--text-light); max-width: 600px; margin: 0 auto; }
.breadcrumb { font-size: 0.85rem; color: var(--text-light); margin-bottom: 20px; }
.breadcrumb a { color: var(--primary); }

/* --- Gallery Grid --- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.gallery-item {
    aspect-ratio: 4/3; border-radius: var(--radius-sm); overflow: hidden;
    position: relative; cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.1); }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-links {
        position: fixed; top: 70px; left: 0; right: 0; bottom: 0;
        background: var(--dark); flex-direction: column; padding: 40px 24px;
        transform: translateX(100%); transition: var(--transition);
    }
    .nav-links.active { transform: translateX(0); }
    .nav-links a { font-size: 1.1rem; padding: 16px; }
    .dropdown-menu {
        position: static; opacity: 1; visibility: visible; transform: none;
        background: rgba(255,255,255,0.03); border: none; box-shadow: none;
    }
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.5rem; }
    .hero-cta { flex-direction: column; align-items: center; }
    .hero-trust { flex-direction: column; align-items: center; gap: 12px; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .payment-options { grid-template-columns: 1fr; }
    .reservation-form { padding: 28px; }
    .cta-box { padding: 40px 24px; }
    .testimonials-grid { grid-template-columns: 1fr !important; }
    .promo-bar p { font-size: 0.75rem; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 56px; height: 56px; }
    .whatsapp-label { display: none; }
    .faq-grid { grid-template-columns: 1fr !important; }
    .tarifs-table { font-size: 0.85rem; }
    .tarifs-table th, .tarifs-table td { padding: 12px 10px; }
    .trust-badges { flex-direction: column; }
}

/* ============================================
   COMPOSANTS COMMERCIAUX
   ============================================ */

/* --- Bandeau Promo --- */
.promo-bar {
    background: var(--gradient);
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 0.85rem;
    position: relative;
    z-index: 1001;
}
.promo-bar p { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }
.promo-bar a { color: #fff; text-decoration: underline; font-weight: 700; }
.promo-bar a:hover { color: var(--accent); }
.promo-close {
    background: none; border: none; color: #fff; font-size: 1.3rem;
    cursor: pointer; margin-left: 16px; opacity: 0.8; line-height: 1;
}
.promo-close:hover { opacity: 1; }
.promo-bar.hidden { display: none; }
body:has(.promo-bar:not(.hidden)) .navbar { top: 38px; }

/* --- Témoignages --- */
.testimonials-section { background: var(--dark-2); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.testimonial-card {
    background: var(--dark);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
    position: relative;
}
.testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 4rem;
    font-family: var(--font-display);
    color: var(--primary);
    opacity: 0.15;
    line-height: 1;
}
.testimonial-card:hover {
    border-color: rgba(233, 30, 99, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.testimonial-stars {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 14px;
    display: flex;
    gap: 3px;
}
.testimonial-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}
.testimonial-author strong {
    display: block;
    color: var(--white);
    font-size: 0.9rem;
}
.testimonial-author span {
    color: var(--text);
    font-size: 0.8rem;
}

/* Trust badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 12px;
}
.trust-badge {
    background: rgba(233, 30, 99, 0.1);
    border: 1px solid rgba(233, 30, 99, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* --- Bouton WhatsApp Flottant --- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    background: #25d366;
    color: #fff;
    width: auto;
    height: 60px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 22px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}
.whatsapp-float i {
    font-size: 1.7rem;
    flex-shrink: 0;
}
.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
    color: #fff;
}
.whatsapp-float .whatsapp-label {
    font-size: 0.85rem;
    white-space: nowrap;
}

/* --- FAQ --- */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}
.faq-item {
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover { border-color: rgba(233,30,99,0.2); }
.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    user-select: none;
}
.faq-question i { color: var(--primary); transition: transform 0.3s; font-size: 0.8rem; flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
    max-height: 400px;
    padding: 0 24px 20px;
}
.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.9rem;
}

/* --- Tableau Tarifs --- */
.tarifs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 32px;
    background: var(--dark-2);
    border-radius: var(--radius);
    overflow: hidden;
}
.tarifs-table thead { background: var(--gradient); }
.tarifs-table th {
    padding: 16px 20px;
    text-align: left;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
}
.tarifs-table td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    color: var(--text-light);
    font-size: 0.9rem;
}
.tarifs-table tbody tr:hover { background: rgba(233,30,99,0.05); }
.tarifs-table .price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
}
.tarifs-table .popular-tag {
    background: var(--gradient);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    margin-left: 8px;
    text-transform: uppercase;
}

/* ============================================
   SECTION VIDÉO SHOWCASE (Accueil)
   ============================================ */
.video-showcase-section { background: var(--dark-2); }
.video-showcase-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 24px;
    align-items: start;
}
.video-showcase-main {
    background: var(--dark);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    overflow: hidden;
}
.video-showcase-main h3 {
    padding: 20px 24px;
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 600;
}
.video-showcase-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.video-showcase-mini {
    background: var(--dark);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.video-showcase-mini:hover {
    border-color: rgba(233, 30, 99, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.video-showcase-mini h4 {
    padding: 14px 18px;
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 600;
}
/* Embed responsive générique */
.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: var(--dark);
}
.video-embed iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}

/* Scroll reveal animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Bandeau cookies RGPD */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--dark-2);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
}
.cookie-text {
    color: var(--text-light);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}
.cookie-text i { color: var(--gold); font-size: 1.1rem; }
.cookie-text a { color: var(--primary); font-weight: 600; }
.cookie-buttons { display: flex; gap: 8px; }

/* YouTube facade lazy loading */
.youtube-facade {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: var(--dark);
    cursor: pointer;
    border-radius: var(--radius-sm);
}
.youtube-facade img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.youtube-facade iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}
.youtube-play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 68px; height: 48px;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}
.youtube-facade:hover .youtube-play-btn { opacity: 1; }

@media (max-width: 768px) {
    .video-showcase-grid { grid-template-columns: 1fr; }
}
