        #navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: var(--primary-blue);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }

        #navbar.scrolled {
            background: rgba(30, 58, 138, 0.98);
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 5px;
            cursor: pointer;
            transition: transform 0.3s ease;
            z-index: 1001;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            animation: pulse 3s infinite;
        }

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

        .logo-text h1 {
            font-size: clamp(20px, 3vw, 24px);
            color: var(--white);
            margin: 0;
        }

        .logo-text p {
            font-size: clamp(10px, 2vw, 12px);
            color: var(--yellow);
            margin: 0;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: clamp(15px, 3vw, 30px);
            align-items: center;
        }

        .nav-menu a {
            color: var(--white);
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-weight: 500;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .nav-menu a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--yellow);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
            z-index: -1;
            border-radius: 8px;
        }

        .nav-menu a:hover::before,
        .nav-menu a.active::before {
            transform: scaleX(1);
        }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: var(--primary-blue);
            transform: translateY(-2px);
        }

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

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

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

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

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


        /* Footer */
        .footer {
            background: var(--primary-blue);
            padding: 60px 0 20px;
            border-top: 4px solid var(--yellow);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3, .footer-section h4 {
            color: var(--yellow);
            margin-bottom: 20px;
            animation: glow 2s infinite;
        }

        @keyframes glow {
            0%, 100% { text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
            50% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.8); }
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 12px;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            display: inline-block;
        }

        .footer-section a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--yellow);
            transition: width 0.3s;
        }

        .footer-section a:hover::after {
            width: 100%;
        }

        .footer-section a:hover {
            color: var(--yellow);
            transform: translateX(5px);
        }

        .social-links {
            display: flex;
            gap: 15px;
            font-size: 1.8rem;
        }

        .social-links a {
            transition: all 0.3s ease;
            display: inline-block;
        }

        .social-links a:hover {
            transform: translateY(-5px) rotate(10deg) scale(1.2);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.7);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .nav-menu {
                gap: 20px;
            }
            
            .nav-menu a {
                padding: 8px 15px;
                font-size: 0.95rem;
            }
        }

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

            .nav-menu {
                display: none;
                flex-direction: column;
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                max-width: 300px;
                height: 100vh;
                background: var(--primary-blue);
                padding: 100px 30px 30px;
                gap: 20px;
                transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
            }

            .nav-menu.active {
                display: flex;
                right: 0;
            }

            .nav-menu a {
                text-align: left;
                padding: 15px 20px;
                width: 100%;
                border-radius: 10px;
                font-size: 1.1rem;
            }

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

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

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .social-links {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .logo-text h1 {
                font-size: 18px;
            }

            .logo-icon {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }

            .service-image {
                width: 120px;
                height: 120px;
            }
        }


        .testimonial-author {
            color: #6B7280;
            font-weight: 600;
            font-size: 0.95rem;
        }

        .testimonial-author {
            color: #6B7280;
            font-weight: 600;
            font-size: 0.95rem;
        }

    /* ================= COOKIE BANNER ================= */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 100px;
    width: 100%;
    background: #111827;
    color: #ffffff;
    padding: 16px;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.3);
}

.cookie-consent p {
    margin: 0;
    max-width: 70%;
    font-size: 0.85rem;
}

.cookie-consent a {
    color: #facc15;
    text-decoration: none;
}

.cookie-actions button {
    margin-left: 10px;
    padding: 8px 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

#accept-cookies {
    background: #22c55e;
    color: white;
}

#refuse-cookies {
    background: #ef4444;
    color: white;
}

/* ===== MODAL BACKGROUND ===== */
.modal {
    display: none; /* caché par défaut */
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* scroll si contenu long */
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(2px);
}

/* ===== MODAL CONTENT ===== */
.modal-content {
    background-color: #fff;
    margin: 50px auto;
    padding: 20px;
    border-radius: 12px;
    width: 90%;
    max-width: 700px;
    max-height: 80%;
    overflow-y: auto; /* scroll vertical */
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* ===== CLOSE BUTTON ===== */
.close {
    color: #333;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #facc15;
}

/* ===== BODY MODAL ===== */
.modal-body p {
    margin-bottom: 1rem;
    line-height: 1.5;
    color: #475b81;
    font-size: 0.8rem;
}

.modal-content h2 {
    color: #facc15;
    font-size: 1.0rem;
}