/* ========== BANDEAU PROMO DEFILANT ========== */
.promo-banner {
    background: #F0A500;
    color: #0a0a0a;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 9998;
    height: 36px;
    display: flex;
    align-items: center;
}

.promo-track {
    display: inline-flex;
    align-items: center;
    animation: promo-scroll 25s linear infinite;
    gap: 0;
}

.promo-item {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0 24px;
    font-family: 'Montserrat', sans-serif;
}

.promo-sep {
    font-size: 0.6rem;
    opacity: 0.5;
}

@keyframes promo-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========== AVIS CLIENTS ========== */
.avis {
    background: #0d0d0d;
}

.avis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.avis-card {
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.3s;
}

.avis-card:hover {
    border-color: rgba(240, 165, 0, 0.2);
    transform: translateY(-4px);
}

.avis-stars {
    color: #F0A500;
    font-size: 1.3rem;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.avis-text {
    color: #bbb;
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}

.avis-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avis-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F0A500, #CC8800);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
}

.avis-author strong {
    display: block;
    color: #fff;
    font-size: 0.95rem;
}

.avis-author span {
    color: #999;
    font-size: 0.82rem;
}

.avis-cta {
    text-align: center;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.avis-google-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.avis-google-btn svg {
    flex-shrink: 0;
}

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

/* ========== SPLASH SCREEN ========== */
.splash-screen {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d0d0d 100%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

.splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.splash-container {
    text-align: center;
    padding: 40px 30px;
    max-width: 500px;
    width: 100%;
}

.splash-logo {
    height: 90px;
    width: auto;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 8px 30px rgba(232, 168, 0, 0.3);
}

.splash-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.splash-title span {
    color: #e8a800;
}

.splash-subtitle {
    color: #999;
    font-size: 1rem;
    margin-bottom: 30px;
    font-family: 'Open Sans', sans-serif;
}

.splash-text {
    color: #ccc;
    font-size: 1.05rem;
    margin-bottom: 30px;
    font-family: 'Open Sans', sans-serif;
}

.splash-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.splash-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 35px;
    border: 2px solid #333;
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
    cursor: pointer;
    transition: all 0.3s;
    flex: 1;
    min-width: 180px;
    max-width: 220px;
}

.splash-btn:hover {
    border-color: #e8a800;
    background: rgba(232, 168, 0, 0.08);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(232, 168, 0, 0.15);
}

.splash-btn-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.splash-btn-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 6px;
}

.splash-btn-desc {
    color: #888;
    font-size: 0.8rem;
    font-family: 'Open Sans', sans-serif;
}

/* Admin login form */
.splash-admin-login {
    display: none;
    margin-top: 30px;
    animation: fadeIn 0.3s;
}

.splash-admin-login.show {
    display: block;
}

.splash-admin-login input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #333;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    margin-bottom: 12px;
    transition: border-color 0.3s;
}

.splash-admin-login input:focus {
    outline: none;
    border-color: #e8a800;
}

.splash-admin-login input::placeholder {
    color: #666;
}

.splash-btn-connect {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: #e8a800;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    margin-bottom: 10px;
}

.splash-btn-connect:hover {
    background: #c98f00;
}

.splash-btn-back {
    background: none;
    border: none;
    color: #888;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s;
}

.splash-btn-back:hover {
    color: #e8a800;
}

.splash-login-error {
    display: none;
    color: #e74c3c;
    font-size: 0.9rem;
    margin-bottom: 12px;
    padding: 10px;
    border-radius: 8px;
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.splash-login-error.show {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
    .splash-title { font-size: 2rem; }
    .splash-logo { height: 70px; }
    .splash-buttons { flex-direction: column; align-items: center; }
    .splash-btn { max-width: 280px; width: 100%; }
}

/* ========== RESET & BASE ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue: #1a1a1a;
    --blue-dark: #111111;
    --blue-light: #2d2d2d;
    --orange: #e8a800;
    --orange-dark: #c98f00;
    --orange-light: #f5c518;
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-500: #868e96;
    --gray-700: #495057;
    --gray-900: #212529;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--gray-900);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(17, 17, 17, 0.97);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all var(--transition);
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-lg);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-text strong {
    color: var(--orange);
}

.logo-img {
    height: 45px;
    width: auto;
    border-radius: 6px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition);
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
    background: var(--orange);
    color: var(--white) !important;
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--orange-dark) !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 40%, #2a2a2a 100%);
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 126, 34, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(230, 126, 34, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 120px 20px 80px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.hero-title span {
    color: var(--orange);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 10px;
    opacity: 0.9;
}

.hero-text {
    font-size: 1.1rem;
    opacity: 0.75;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    margin: 5px;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.btn-primary:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/* ========== SECTIONS ========== */
.section {
    padding: 100px 0;
}

.section:nth-child(even) {
    background: var(--gray-50);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-500);
    font-size: 1.1rem;
    margin-bottom: 60px;
}

/* ========== SERVICES ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.2rem;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========== GALERIE ========== */
.galerie-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.galerie-item {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition);
}

.galerie-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.galerie-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-size: 1rem;
}

.galerie-placeholder span {
    font-size: 3rem;
    margin-bottom: 10px;
}

.galerie-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* ========== LIGHTBOX ========== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: var(--radius);
}

/* ========== ACTUALITES ========== */
.actu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.actu-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    position: relative;
}

.actu-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.actu-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--orange);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.actu-placeholder {
    height: 180px;
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.actu-content {
    padding: 25px;
}

.actu-content h3 {
    font-size: 1.15rem;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.actu-content p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.actu-date {
    color: var(--orange);
    font-size: 0.85rem;
    font-weight: 600;
}

/* ========== FORMULAIRE RDV ========== */
.rdv {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue)) !important;
    color: var(--white);
}

.rdv .section-title {
    color: var(--white);
}

.rdv .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.rdv-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    transition: all var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: rgba(255, 255, 255, 0.15);
}

.form-group select option {
    background: var(--blue-dark);
    color: var(--white);
}

.form-full {
    margin-bottom: 30px;
}

.form-grid .form-full {
    grid-column: 1 / -1;
    margin-bottom: 0;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    border: none;
}

.form-success {
    display: none;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
    background: rgba(39, 174, 96, 0.2);
    border: 2px solid rgba(39, 174, 96, 0.4);
    border-radius: var(--radius);
    color: #2ecc71;
    font-weight: 600;
}

.form-success.show {
    display: block;
}

/* ========== CONTACT ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1.05rem;
    color: var(--gray-900);
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-item a {
    color: var(--orange);
}

.contact-item a:hover {
    color: var(--orange-dark);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--blue-dark);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 60px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo-icon,
.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand p {
    margin-top: 10px;
    font-size: 0.9rem;
}

.footer-links h4,
.footer-social h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-links a {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--orange);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.85rem;
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--orange);
    color: var(--white);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
}

/* ========== ANIMATIONS ========== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .services-grid,
    .actu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--blue-dark);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 5px;
        transition: right var(--transition);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    }

    .nav.open {
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: 12px 16px;
        font-size: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid,
    .galerie-grid,
    .actu-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .header-phone {
        display: none;
    }

    .call-float {
        display: flex;
    }
    .counters-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .counter-number {
        font-size: 2.5rem;
    }
    .theme-toggle {
        top: auto;
        bottom: 160px;
        right: 20px;
    }
}

/* ========== HEADER PHONE ========== */
.header-phone {
    color: #F0A500;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s;
}

.header-phone:hover {
    color: #FFB820;
}

/* ========== HERO RDV NOTICE ========== */
.hero-rdv-notice {
    display: inline-block;
    background: rgba(240, 165, 0, 0.15);
    color: #F0A500;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
    border: 1px solid rgba(240, 165, 0, 0.3);
}

/* ========== SERVICES RDV NOTICE ========== */
.rdv-notice {
    text-align: center;
    color: #F0A500;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: -20px;
    margin-bottom: 40px;
    padding: 12px 24px;
    background: rgba(240, 165, 0, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(240, 165, 0, 0.15);
}

/* ========== FAQ ========== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    text-align: left;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(240, 165, 0, 0.05);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #F0A500;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 24px 18px;
}

.faq-answer p {
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ========== BOUTON RETOUR EN HAUT ========== */
.back-to-top {
    position: fixed;
    bottom: 96px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: #1a1a2e;
    color: #F0A500;
    border: 2px solid #F0A500;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.3s;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #F0A500;
    color: #1a1a2e;
}

/* ========== BANNIERE COOKIE RGPD ========== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    color: #fff;
    padding: 16px 24px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    font-size: 0.9rem;
    color: #ccc;
    flex: 1;
    min-width: 250px;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.cookie-accept {
    background: #F0A500;
    color: #1a1a2e;
}

.cookie-accept:hover {
    background: #d4920a;
    transform: scale(1.05);
}

.cookie-refuse {
    background: transparent;
    color: #ccc;
    border: 1px solid #555;
}

.cookie-refuse:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-content p {
        min-width: auto;
    }
    .faq-question {
        padding: 14px 16px;
        font-size: 0.9rem;
    }
    .faq-item.open .faq-answer {
        padding: 0 16px 14px;
    }
}

/* ========== COMPTEURS ANIMES ========== */
.counters {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%) !important;
    padding: 70px 0;
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.counter-item {
    padding: 30px 20px;
}

.counter-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #e8a800;
    line-height: 1;
}

.counter-plus {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #e8a800;
}

.counter-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-top: 10px;
}

/* ========== AVIS CAROUSEL ========== */
.avis-grid {
    overflow: hidden;
    position: relative;
}

.avis-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    margin-bottom: 24px;
}

.avis-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(240, 165, 0, 0.4);
    background: transparent;
    color: #e8a800;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avis-arrow:hover {
    background: #e8a800;
    color: #000;
    border-color: #e8a800;
}

.avis-dots {
    display: flex;
    gap: 8px;
}

.avis-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.avis-dot.active {
    background: #e8a800;
    transform: scale(1.2);
}

/* ========== BOUTON APPELER MOBILE ========== */
.call-float {
    display: none;
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 60px;
    height: 60px;
    background: #e8a800;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(232, 168, 0, 0.4);
    z-index: 9999;
    transition: transform 0.3s, box-shadow 0.3s;
}

.call-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(232, 168, 0, 0.6);
}

/* ========== THEME TOGGLE ========== */
.theme-toggle {
    position: fixed;
    top: 100px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #333;
    background: rgba(26, 26, 26, 0.9);
    cursor: pointer;
    z-index: 9997;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.theme-toggle:hover {
    border-color: #e8a800;
    transform: scale(1.1);
}

.theme-icon-light,
.theme-icon-dark {
    font-size: 1.2rem;
    position: absolute;
    transition: opacity 0.3s, transform 0.3s;
}

.theme-icon-light {
    color: #e8a800;
    opacity: 1;
}

.theme-icon-dark {
    color: #6c7ce0;
    opacity: 0;
}

/* ========== MODE CLAIR ========== */
body.light-mode {
    background: #ffffff;
}

body.light-mode .hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 40%, #3a3a55 100%);
}

body.light-mode .counters {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%) !important;
}

body.light-mode .section:nth-child(even) {
    background: #f5f5f5;
}

body.light-mode .section-title {
    color: #1a1a2e;
}

body.light-mode .service-card {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

body.light-mode .service-card h3 {
    color: #1a1a2e;
}

body.light-mode .avis {
    background: #f0f0f0;
}

body.light-mode .avis-card {
    background: #fff;
    border-color: #e0e0e0;
}

body.light-mode .avis-text {
    color: #555;
}

body.light-mode .avis-author strong {
    color: #1a1a2e;
}

body.light-mode .faq-item {
    border-color: #ddd;
}

body.light-mode .faq-question {
    color: #1a1a2e;
}

body.light-mode .actu-card {
    background: #fff;
}

body.light-mode .actu-content h3 {
    color: #1a1a2e;
}

body.light-mode .theme-toggle {
    background: rgba(255, 255, 255, 0.95);
    border-color: #ddd;
}

body.light-mode .theme-icon-light {
    opacity: 0;
}

body.light-mode .theme-icon-dark {
    opacity: 1;
}

body.light-mode .cookie-banner {
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

body.light-mode .cookie-content p {
    color: #555;
}

body.light-mode .back-to-top {
    background: #fff;
    border-color: #e8a800;
}

/* ========== LOADER ========== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    margin-bottom: 24px;
    animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(232, 168, 0, 0.2);
    border-top-color: #e8a800;
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

/* ========== PROGRAMME FIDELITE ========== */
.fidelite {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%) !important;
}

.fidelite-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.fidelite-card {
    background: rgba(232, 168, 0, 0.05);
    border: 1px solid rgba(232, 168, 0, 0.15);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s ease;
}

.fidelite-card:hover {
    border-color: #e8a800;
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(232, 168, 0, 0.15);
}

.fidelite-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.fidelite-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: #e8a800;
}

.fidelite-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.fidelite-card p strong {
    color: #e8a800;
}

/* ========== CALCULATEUR DEVIS ========== */
.devis {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 100%) !important;
}

.devis-calculator {
    max-width: 550px;
    margin: 0 auto;
    background: rgba(232, 168, 0, 0.04);
    border: 1px solid rgba(232, 168, 0, 0.15);
    border-radius: 16px;
    padding: 32px;
}

.devis-select-group label {
    display: block;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.devis-select-group select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: border-color 0.3s;
}

.devis-select-group select:focus {
    border-color: #e8a800;
    outline: none;
}

.devis-result {
    margin-top: 24px;
    text-align: center;
    animation: promoSlideIn 0.4s ease;
}

.devis-price-range {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.devis-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

.devis-amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #e8a800;
}

.devis-sep {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
}

.devis-note {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
    margin-top: 16px;
    line-height: 1.5;
}

.devis-note strong {
    color: rgba(255, 255, 255, 0.8);
}

body.light-mode .devis {
    background: linear-gradient(135deg, #f0f0f5 0%, #e8e8f0 100%) !important;
}

body.light-mode .devis-calculator {
    background: #fff;
    border-color: #e0d5b8;
}

body.light-mode .devis-select-group select {
    background: #f8f8f8;
    border-color: #ddd;
    color: #333;
}

body.light-mode .devis-select-group label,
body.light-mode .devis-note {
    color: #666;
}

/* ========== FORMULAIRE AVIS INTEGRE ========== */
.avis-form-container {
    margin-top: 40px;
    background: rgba(232, 168, 0, 0.04);
    border: 1px solid rgba(232, 168, 0, 0.15);
    border-radius: 16px;
    padding: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.avis-form-container h3 {
    font-family: 'Montserrat', sans-serif;
    color: #e8a800;
    margin-bottom: 20px;
    text-align: center;
}

.avis-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.avis-form .form-group {
    margin-bottom: 16px;
}

.avis-form label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.7);
}

.avis-form input,
.avis-form textarea {
    width: 100%;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.avis-form input:focus,
.avis-form textarea:focus {
    border-color: #e8a800;
    outline: none;
}

.star-rating {
    display: flex;
    gap: 4px;
}

.star-rating .star {
    font-size: 1.8rem;
    color: #444;
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
}

.star-rating .star:hover,
.star-rating .star.active {
    color: #fbbc04;
    transform: scale(1.15);
}

.avis-form-success {
    display: none;
    background: rgba(39, 174, 96, 0.15);
    border: 1px solid rgba(39, 174, 96, 0.3);
    color: #27ae60;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    margin-top: 12px;
}

.avis-form-success.show {
    display: block;
}

body.light-mode .avis-form-container {
    background: rgba(232, 168, 0, 0.04);
    border-color: #e0d5b8;
}

body.light-mode .avis-form input,
body.light-mode .avis-form textarea {
    background: #fff;
    border-color: #ddd;
    color: #333;
}

body.light-mode .avis-form label {
    color: #555;
}

@media (max-width: 576px) {
    .avis-form-row { grid-template-columns: 1fr; }
    .avis-form-container { padding: 20px; }
}

/* ========== NOTATION GOOGLE ========== */
.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(232, 168, 0, 0.08);
    border: 1px solid rgba(232, 168, 0, 0.2);
    border-radius: 50px;
    padding: 12px 28px;
    margin: 0 auto 32px;
    width: fit-content;
}

.google-rating-stars {
    color: #fbbc04;
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.google-rating-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.google-rating-text strong {
    color: #e8a800;
    font-size: 1.2rem;
}

.google-logo {
    height: 20px;
    width: 20px;
}

body.light-mode .google-rating {
    background: rgba(232, 168, 0, 0.06);
    border-color: #e0d5b8;
}

body.light-mode .google-rating-text {
    color: #555;
}

/* ========== PARTAGE RESEAUX SOCIAUX ========== */
.share-buttons {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.share-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s;
    color: #fff;
}

.share-fb {
    background: #1877f2;
}

.share-fb:hover {
    background: #0d65d9;
    transform: scale(1.15);
}

.share-wa {
    background: #25D366;
}

.share-wa:hover {
    background: #1da851;
    transform: scale(1.15);
}

/* ========== POP-UP PROMO ========== */
.promo-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99998;
    backdrop-filter: blur(4px);
}

.promo-popup.show {
    display: flex;
}

.promo-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border: 2px solid #e8a800;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 420px;
    width: 90%;
    position: relative;
    animation: promoSlideIn 0.4s ease;
}

@keyframes promoSlideIn {
    from { transform: scale(0.8) translateY(30px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}

.promo-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: #999;
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.3s;
}

.promo-close:hover {
    color: #fff;
}

.promo-icon {
    font-size: 4rem;
    margin-bottom: 12px;
}

.promo-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    color: #e8a800;
    margin-bottom: 12px;
}

.promo-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    margin-bottom: 8px;
    line-height: 1.5;
}

.promo-content p strong {
    color: #e8a800;
    font-size: 1.3rem;
}

.promo-cta {
    display: inline-block;
    margin-top: 16px;
    padding: 14px 36px;
    font-size: 1rem;
    text-decoration: none;
}

.promo-note {
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.4) !important;
    margin-top: 12px !important;
}

/* ========== LIGHT MODE ADDITIONS ========== */
body.light-mode .fidelite {
    background: linear-gradient(135deg, #f0f0f5 0%, #e8e8f0 100%) !important;
}

body.light-mode .fidelite-card {
    background: #fff;
    border-color: #e0e0e0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

body.light-mode .fidelite-card h3 {
    color: #c79100;
}

body.light-mode .fidelite-card p {
    color: #555;
}

body.light-mode .promo-content {
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
    border-color: #e8a800;
}

body.light-mode .promo-content p {
    color: #555;
}

body.light-mode .page-loader {
    background: #fff;
}

@media (max-width: 992px) {
    .fidelite-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .fidelite-grid { grid-template-columns: 1fr; }
    .promo-content { padding: 30px 20px; }
}

/* ========== LANGUAGE SWITCHER ========== */
.nav-lang {
    border: 1px solid rgba(240,165,0,0.4);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 0.8rem;
    color: #e8a800;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
}

.nav-lang:hover {
    background: rgba(240,165,0,0.15);
    border-color: #F0A500;
    color: #F0A500;
}

/* ========== WHATSAPP FLOATING BUTTON ========== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}
