/* CSS VARIABLES - THEME CLAIR & EPURE */
:root {
    --color-primary: #C5A880;
    --color-primary-dark: #A38760;
    --color-bg-main: #FFFFFF;
    --color-bg-alt: #F9F8F6;
    --color-text: #4A4A4A;
    --color-heading: #1A1A1A;
    --color-border: #EFEFEF;
    --color-white: #FFFFFF;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background-color: var(--color-bg-main); color: var(--color-text); line-height: 1.6; font-size: 16px; overflow-x: hidden; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--color-heading); text-decoration: none; transition: var(--transition); }

/* TYPOGRAPHY LUXE */
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-heading); font-weight: 400; margin-bottom: 1rem; }
h1 { font-size: 2.8rem; line-height: 1.2; letter-spacing: 2px; color: var(--color-white); }
h2 { font-size: 2.5rem; color: var(--color-heading); margin-bottom: 3rem; text-align: center; letter-spacing: 1px; word-wrap: break-word; overflow-wrap: break-word; }
h2::after { content: ''; display: block; width: 40px; height: 1px; background-color: var(--color-primary); margin: 1.5rem auto 0; }
h3 { font-size: 1.5rem; letter-spacing: 1px; }
.text-accent { color: var(--color-primary); font-style: italic; }

/* BUTTONS */
.btn { display: inline-block; padding: 1rem 2.5rem; background-color: transparent; border: 1px solid var(--color-heading); color: var(--color-heading); font-family: var(--font-body); font-weight: 400; text-transform: uppercase; letter-spacing: 2px; cursor: pointer; transition: var(--transition); font-size: 0.9rem; }
.btn:hover, .btn-primary { background-color: var(--color-heading); color: var(--color-white); }
.btn-primary:hover { background-color: transparent; color: var(--color-heading); border-color: var(--color-heading); }

/* BOUTONS HERO SPECIFIQUES */
.hero .btn { border-color: var(--color-white); color: var(--color-white); }
.hero .btn:hover { background: var(--color-white) !important; color: var(--color-heading) !important; }
.hero .btn-primary { background-color: var(--color-primary); border-color: var(--color-primary); color: var(--color-white); }
.hero .btn-primary:hover { background: transparent !important; border-color: var(--color-white) !important; color: var(--color-white) !important; }

/* HEADER */
header { position: fixed; width: 100%; top: 0; left: 0; z-index: 1000; background-color: rgba(10, 10, 10, 0.95); backdrop-filter: blur(15px); border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding: 1.5rem 0; transition: var(--transition); }
.nav-container { width: 95%; max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; color: var(--color-white); letter-spacing: 2px; text-transform: uppercase; white-space: nowrap; }
.logo span { color: var(--color-primary); font-weight: 400; font-style: italic; text-transform: lowercase; font-size: 1rem; }
.nav-links { display: none; }
.mobile-menu-btn { display: block; background: none; border: none; color: var(--color-white); font-size: 1.5rem; cursor: pointer; }

/* MENU DEROULANT (DROPDOWN) */
.dropdown { position: relative; }
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background-color: rgba(10, 10, 10, 0.98); min-width: 280px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); padding: 1rem 0; list-style: none; border-top: 2px solid var(--color-primary); border-radius: 0 0 4px 4px; z-index: 1001; }
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li { margin: 0 !important; }
.dropdown-menu a { padding: 0.8rem 1.5rem !important; display: block; white-space: normal !important; text-transform: none !important; letter-spacing: 1px !important; font-size: 0.9rem !important; color: var(--color-white) !important; }
.dropdown-menu a:hover { background-color: rgba(255,255,255,0.05); color: var(--color-primary) !important; }
.dropdown-menu a::after { display: none !important; }

/* HERO */
.hero { height: 100vh; min-height: 700px; display: flex; align-items: center; justify-content: center; text-align: center; padding: 0 1rem; }
.hero-content { max-width: 900px; animation: fadeIn 1.5s ease-out; }
.hero p { font-size: 1.1rem; margin-bottom: 3rem; color: #F5F5F5; font-weight: 300; letter-spacing: 2px; text-transform: uppercase; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* HERO PAGE INTERNE */
.hero-page { height: 60vh; min-height: 450px; display: flex; align-items: center; justify-content: center; text-align: center; padding: 0 1rem; }
.hero-page .container { width: 90%; max-width: 900px; }
.hero-page p { color: var(--color-primary); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 1rem; font-weight: 600; }
.hero-page h1 { color: var(--color-white); }

/* LAYOUT & SECTIONS */
section { padding: 8rem 1rem; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* ABOUT / VIDEO SECTION */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
.about-text { min-width: 0; }
.about-text p { margin-bottom: 1.5rem; font-size: 1.05rem; font-weight: 300; color: var(--color-text); word-wrap: break-word; overflow-wrap: break-word; }
.about-video-wrapper { position: relative; display: flex; justify-content: center; }
.vertical-video { width: 100%; max-width: 340px; aspect-ratio: 9/16; object-fit: cover; border-radius: 2px; box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
.about-stats { display: flex; width: 100%; min-width: 0; gap: 3rem; margin-top: 3rem; border-top: 1px solid var(--color-border); padding-top: 2rem; }
.stat-item { min-width: 0; }
.stat-item h4 { color: var(--color-primary); font-size: 2.5rem; margin-bottom: 0; font-weight: 400; word-wrap: break-word; overflow-wrap: break-word; width: 100%; font-family: var(--font-body); letter-spacing: 1px; background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-item p { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: #888; }

/* SERVICES SECTION */
.services { background-color: var(--color-bg-alt); }
.services-intro { text-align: center; max-width: 800px; margin: 0 auto 4rem auto; font-weight: 300; }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.service-card { background-color: var(--color-bg-main); padding: 4rem 2rem; border: 1px solid var(--color-border); transition: var(--transition); text-align: center; position: relative; overflow: hidden; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.04); }
.service-number { font-family: var(--font-heading); font-size: 4rem; color: rgba(0, 0, 0, 0.03); position: absolute; top: 10px; right: 20px; font-weight: 700; line-height: 1; transition: var(--transition); }
.service-card:hover .service-number { color: rgba(197, 168, 128, 0.15); }
.service-card h3 { position: relative; z-index: 1; margin-top: 1rem; }
.service-card p { font-weight: 300; color: var(--color-text); font-size: 0.95rem; }

/* GALERIE SECTION */
.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.gallery-item { position: relative; overflow: hidden; aspect-ratio: 1/1; border-radius: 2px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.gallery-item:hover img { transform: scale(1.05); }

/* AVIS SECTION */
.testimonials { background-color: var(--color-bg-alt); }
.avis-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.avis-card { padding: 4rem 3rem; background: var(--color-bg-main); border: 1px solid var(--color-border); text-align: center; position: relative; transition: var(--transition); }
.avis-card:hover { box-shadow: 0 15px 30px rgba(0,0,0,0.03); }
.quote-icon { color: var(--color-primary); font-size: 4rem; font-family: var(--font-heading); line-height: 0; margin-bottom: 2rem; opacity: 0.4; display: block; }
.avis-text { font-style: italic; font-weight: 300; margin-bottom: 2rem; font-size: 1.05rem; color: var(--color-text); }
.avis-author { font-family: var(--font-body); text-transform: uppercase; font-size: 0.85rem; font-weight: 600; color: var(--color-heading); letter-spacing: 1px; }

/* EQUIPMENT SECTION */
.equipment-list { list-style: none; display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.equipment-list li { position: relative; padding-left: 2.5rem; font-size: 1.05rem; font-weight: 300; color: var(--color-text); }
.equipment-list li::before { content: ''; position: absolute; left: 0; top: 12px; width: 15px; height: 1px; background-color: var(--color-primary); }
.brands-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 3rem; margin-top: 3rem; opacity: 0.4; font-family: var(--font-body); font-size: 1rem; letter-spacing: 3px; font-weight: 600; color: var(--color-heading); }
.equipment-image { width: 100%; height: 600px; background-position: center; background-size: cover; border-radius: 2px; box-shadow: 0 20px 40px rgba(0,0,0,0.08); }

/* CONTACT SECTION */
.contact { background-color: var(--color-bg-main); text-align: center; border-top: 1px solid var(--color-border); }
.contact-intro { max-width: 600px; margin: 0 auto; font-weight: 300; }
.contact-info { margin: 3rem 0; }
.contact-link { display: block; font-family: var(--font-heading); font-size: 3rem; color: var(--color-primary); margin: 1rem 0; transition: var(--transition); }
.contact-link:hover { color: var(--color-heading); }
.contact-link-small { font-size: 1.5rem; text-transform: lowercase; font-family: var(--font-body); letter-spacing: 0; }
.map-wrapper { margin-top: 4rem; border-radius: 4px; overflow: hidden; max-width: 900px; margin-left: auto; margin-right: auto; border: 1px solid var(--color-border); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.map-wrapper iframe { width: 100%; height: 450px; border: 0; display: block; }

/* FOOTER */
footer { background-color: var(--color-bg-alt); text-align: center; padding: 3rem 1rem; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: #888; border-top: 1px solid var(--color-border); }
.footer-secondary { text-transform: none; color: #aaa; margin-top: 0.5rem; }

/* SEO CONTENT PAGE */
.seo-content { padding: 6rem 1rem; }
.seo-content .container { max-width: 900px; }
.seo-text { font-size: 1.1rem; color: var(--color-text); font-weight: 300; margin-bottom: 2rem; text-align: justify; }
.seo-text strong { color: var(--color-heading); font-weight: 600; }
.highlight-box { background-color: var(--color-bg-alt); padding: 3rem; border-left: 4px solid var(--color-primary); margin: 3rem 0; }
.highlight-box h3 { margin-top: 0; color: var(--color-heading); }

/* MEDIA SECTION */
.media-section { padding: 2rem 0; margin: 4rem 0; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.media-section-title { text-align: center; margin-top: 0; color: var(--color-heading); }
.media-section-intro { text-align: center; font-size: 0.95rem; margin-bottom: 2rem; }
.media-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; padding: 2rem 0; }
.media-video video { width: 100%; max-width: 320px; aspect-ratio: 9/16; object-fit: cover; margin: 0 auto; display: block; border-radius: 2px; box-shadow: 0 20px 40px rgba(0,0,0,0.08); border: 1px solid var(--color-border); }
.media-images { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.media-item { overflow: hidden; border-radius: 2px; box-shadow: 0 10px 20px rgba(0,0,0,0.03); }
.media-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform 0.7s ease; }
.media-item:hover img { transform: scale(1.05); }

/* CTA CENTER */
.cta-center { text-align: center; margin-top: 4rem; }

/* ================= MEDIA QUERIES ================= */
@media (min-width: 768px) {
    h1 { font-size: 4rem; }
    h2 { font-size: 2.8rem; }
    .services-grid, .avis-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .equipment-list { grid-template-columns: repeat(2, 1fr); }
    .media-grid { grid-template-columns: 1fr 2fr; gap: 3rem; }
    .media-images { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
    .mobile-menu-btn { display: none; }
    .nav-links { display: flex; gap: 1.5rem; list-style: none; }
    .nav-links a { font-weight: 400; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; position: relative; color: var(--color-white); white-space: nowrap; }
    .nav-links a::after { content: ''; position: absolute; width: 0; height: 1px; bottom: -5px; left: 0; background-color: var(--color-primary); transition: width 0.3s ease; }
    .nav-links a:hover::after { width: 100%; }
    .about-grid { grid-template-columns: 1fr 1fr; gap: 6rem; }
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .avis-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1023px) {
    .nav-links { position: absolute; top: 100%; left: 0; width: 100%; background-color: rgba(10,10,10,0.98); flex-direction: column; align-items: center; padding: 2rem 0; border-bottom: 1px solid var(--color-primary); box-shadow: 0 10px 20px rgba(0,0,0,0.5); }
    .nav-links li { margin: 1.5rem 0; width: 100%; text-align: center; }
    .nav-links a { color: var(--color-white); white-space: nowrap; }

    /* Ajustements Dropdown Mobile */
    .dropdown-menu { position: static; background: transparent; border: none; box-shadow: none; display: none; padding: 0; }
    .dropdown.active .dropdown-menu { display: block; }
    .dropdown-menu a { white-space: normal !important; padding: 1rem !important; color: var(--color-primary) !important; font-size: 0.85rem !important;}
}

@media (max-width: 767px) {
    .hero-page h1 { font-size: 2rem; }
    .contact-link { font-size: 2rem; }
}

/* ================= FORMULAIRE DE CONTACT ================= */
.contact-form-section { background-color: var(--color-bg-alt); border-top: 1px solid var(--color-border); }
.contact-form-intro { text-align: center; max-width: 600px; margin: 0 auto 3rem auto; font-weight: 300; }
.contact-form { max-width: 800px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.form-group { display: flex; flex-direction: column; text-align: left; }
.form-group label { font-family: var(--font-body); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--color-heading); margin-bottom: 0.75rem; }
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid var(--color-border);
    background-color: var(--color-white);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.1);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.btn-submit { width: 100%; border-color: var(--color-heading); margin-top: 1rem; }
.btn-submit:hover { background-color: var(--color-primary); border-color: var(--color-primary); color: var(--color-white); }

.form-message-success,
.form-message-error {
    display: none;
    margin-top: 1.5rem;
    padding: 1.25rem;
    text-align: center;
    font-size: 0.95rem;
}
.form-message-success { background-color: rgba(197, 168, 128, 0.1); border: 1px solid rgba(197, 168, 128, 0.3); color: var(--color-heading); }
.form-message-error { background-color: rgba(180, 80, 80, 0.08); border: 1px solid rgba(180, 80, 80, 0.25); color: #8a3a3a; }

/* ================= ANIMATIONS & DYNAMISME ================= */

/* Révélation au scroll */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delais progressifs pour les éléments d'une liste */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Hero : zoom lent subtil */
.hero,
.hero-page {
    position: relative;
    overflow: hidden;
}
.hero::before,
.hero-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--hero-bg);
    background-position: center;
    background-size: cover;
    animation: heroZoom 20s ease-in-out infinite alternate;
    z-index: -1;
}
.hero::after,
.hero-page::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
    z-index: -1;
}
@keyframes heroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

/* Brillance permanente sur les boutons */
.btn {
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transform: skewX(-20deg);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}
@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* Cartes : glow doré au hover */
.service-card,
.avis-card {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-card:hover,
.avis-card:hover {
    box-shadow: 0 25px 50px rgba(197, 168, 128, 0.12);
}

/* Galerie : zoom plus marqué */
.gallery-item img { transition: transform 0.8s ease; }
.gallery-item:hover img { transform: scale(1.1); }

/* Titres H2 : trait décoratif animé */
h2::after {
    width: 40px;
    transition: width 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
h2.reveal-visible::after {
    width: 60px;
}

/* Stats : grille 2 colonnes mobile, 4 colonnes desktop */
.about-stats {
    display: grid;
    min-width: 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 3rem;
    border-top: 1px solid var(--color-border);
    padding-top: 2rem;
}
.stat-item {
    min-width: 0;
    max-width: 100%;
    padding: 1.5rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    text-align: center;
    border-radius: 2px;
}
.stats-dots { display: none; }

/* Chiffres statistiques — styles fusionnés ci-dessus */

/* Ligne de séparation animée */
.highlight-box {
    position: relative;
    overflow: hidden;
}
.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-primary), var(--color-primary-dark));
}

/* Media items hover */
.media-item img { transition: transform 0.8s ease; }
.media-item:hover img { transform: scale(1.08); }

/* Animation de fondu pour les formulaires */
.contact-form-section {
    position: relative;
}

/* ================= AJUSTEMENTS RESPONSIVE ================= */
@media (min-width: 768px) {
    .form-row { grid-template-columns: repeat(2, 1fr); }
    .btn-submit { width: auto; min-width: 280px; }
    .about-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    .stat-item {
        background: transparent;
        border: none;
        padding: 0;
        text-align: left;
    }
}

/* ================= DYNAMISME FESTIF & LUXE ================= */

/* Pulse subtil sur le CTA principal du hero */
.hero .btn-primary {
    animation: subtlePulse 2.5s ease-in-out infinite;
}
@keyframes subtlePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(197, 168, 128, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(197, 168, 128, 0); }
}

/* Gradient doré au hover sur les boutons */
.btn:hover {
    background: linear-gradient(135deg, var(--color-heading) 0%, #2a2a2a 100%);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-color: var(--color-primary);
    color: var(--color-white);
}

/* Lien contact : effet de brillance */
.contact-link {
    position: relative;
    display: inline-block;
}
.contact-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--color-primary);
    transition: width 0.4s ease, left 0.4s ease;
}
.contact-link:hover::after {
    width: 100%;
    left: 0;
}

/* Effet de lumière sur les cartes au hover */
.service-card::before,
.avis-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(197, 168, 128, 0.05), transparent);
    transition: left 0.8s ease;
    pointer-events: none;
    z-index: 0;
}
.service-card:hover::before,
.avis-card:hover::before {
    left: 100%;
}

/* Apparition progressive du menu au scroll */
header {
    transform: translateY(0);
    transition: transform 0.4s ease, padding 0.4s ease, background-color 0.4s ease;
}
header.is-hidden {
    transform: translateY(-100%);
}

/* Transition fluide sur les images */
img {
    transition: transform 0.6s ease, opacity 0.6s ease;
}

/* ================= BOUTON FLOTTANT CONTACT (MOBILE) ================= */
.fab-contact {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(197, 168, 128, 0.4);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fabPulse 2s ease-in-out infinite;
}
.fab-contact svg {
    width: 24px;
    height: 24px;
}
.fab-contact:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(197, 168, 128, 0.6);
}
@keyframes fabPulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(197, 168, 128, 0.4), 0 0 0 0 rgba(197, 168, 128, 0.4); }
    50% { box-shadow: 0 6px 20px rgba(197, 168, 128, 0.4), 0 0 0 12px rgba(197, 168, 128, 0); }
}

@media (min-width: 1024px) {
    .fab-contact { display: none; }
}

/* ================= EFFET SHIMMER PERMANENT SUR LES IMAGES ================= */
.gallery-item,
.media-item,
.about-video-wrapper,
.equipment-image {
    position: relative;
    overflow: hidden;
}
.gallery-item::before,
.media-item::before,
.about-video-wrapper::before,
.equipment-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    transform: skewX(-20deg);
    animation: imageShimmer 5s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}
@keyframes imageShimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* ================= BLOC FOND SOMBRE ================= */
.dark-section {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    color: var(--color-white);
    text-align: center;
    overflow: hidden;
    padding: 8rem 1rem;
}
.dark-section-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(197, 168, 128, 0.08) 0%, transparent 60%);
    animation: darkGlow 6s ease-in-out infinite alternate;
    pointer-events: none;
}
@keyframes darkGlow {
    from { transform: scale(1); opacity: 0.6; }
    to { transform: scale(1.2); opacity: 1; }
}
.dark-section .container {
    position: relative;
    z-index: 1;
}
.dark-section h2 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
}
.dark-section h2::after {
    background-color: var(--color-primary);
}
.dark-section p {
    color: rgba(255, 255, 255, 0.75);
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    font-weight: 300;
}
.dark-section .btn {
    border-color: var(--color-white);
    color: var(--color-white);
}
.dark-section .btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}
.dark-section .btn-primary:hover {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    border-color: var(--color-primary);
}

/* ================= VIDEO SHOWCASE ================= */
.video-showcase {
    background-color: var(--color-bg-alt);
    padding: 8rem 1rem;
    text-align: center;
}
.video-showcase-intro {
    max-width: 700px;
    margin: 0 auto 3rem auto;
    font-weight: 300;
}
.video-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.video-wrapper video {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

/* ================= RESPONSIVE BLOC À PROPOS ================= */
@media (max-width: 767px) {
    .about-grid { gap: 2.5rem; }
    .vertical-video { max-width: 260px; }
    .about-stats {
        margin-top: 2rem;
        padding-top: 1.5rem;
        gap: 0.75rem;
    }
    .stat-item { padding: 0.5rem; }
    .stat-item h4 { font-size: 1.35rem; letter-spacing: 0.5px; }
    .stat-item p { font-size: 0.6rem; letter-spacing: 0.5px; }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .vertical-video { max-width: 300px; }
    .about-stats { grid-template-columns: repeat(4, 1fr); }
}

/* ================= BLOC MATÉRIEL EN FOND SOMBRE ================= */
.dark-section#materiel,
#materiel.dark-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
}
.dark-section#materiel .about-text p,
.dark-section#materiel .equipment-list li {
    color: rgba(255, 255, 255, 0.75);
}
.dark-section#materiel .equipment-list li strong {
    color: var(--color-white);
}
.dark-section#materiel .brands-container {
    color: rgba(255, 255, 255, 0.5);
}
.dark-section#materiel .equipment-list li::before {
    background-color: var(--color-primary);
}
