 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        /* MENU DE NAVIGATION */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            z-index: 1000;
            padding: 0.8rem 0;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            padding: 0.6rem 0;
        }

        /* NOTIFICATION BANNER - CSS CORRIGÉ */
        .notification-banner {
            position: fixed;
            top: 70px; /* Position juste sous le navbar */
            left: 0;
            right: 0;
            background: linear-gradient(45deg, #ff6b35, #e55a2e);
            color: white;
            text-align: center;
            padding: 0.8rem;
            font-weight: 600;
            z-index: 999; /* Juste en dessous du navbar */
            animation: slideDownBanner 0.5s ease-out;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        @keyframes slideDownBanner {
            from {
                transform: translateY(-100%);
            }
            to {
                transform: translateY(0);
            }
        }

        .notification-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: bannerShine 4s infinite;
        }

        @keyframes bannerShine {
            0% { left: -100%; }
            100% { left: 100%; }
        }

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

        .nav-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

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

        .logo-image {
            height: clamp(32px, 5vw, 40px);
            width: auto;
            object-fit: contain;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: clamp(15px, 3vw, 30px);
            margin: 0;
            padding: 0;
        }

        .nav-menu li a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            position: relative;
            font-size: clamp(0.9rem, 1.5vw, 1rem);
            white-space: nowrap;
        }

        .nav-menu li a:hover {
            color: #ff6b35;
            background: rgba(255, 107, 53, 0.1);
        }

        .nav-menu li a.active {
            color: #ff6b35;
            background: rgba(255, 107, 53, 0.15);
        }

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

        .nav-toggle span {
            width: 25px;
            height: 3px;
            background: #333;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

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

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

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

        .nav-cta {
            background: #ff6b35;
            color: white;
            padding: 0.6rem 1.2rem;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
            font-size: clamp(0.85rem, 1.2vw, 0.95rem);
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-cta:hover {
            background: #e55a2e;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
        }

        /* CONTAINER RESPONSIVE */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 clamp(1rem, 3vw, 2rem);
        }

        .signature-orange {
            color: #ff6b35;
        }

        /* HERO SECTION avec ajustement dynamique */
        .hero {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 2rem 0;
        }

        /* Classes pour ajuster le margin-top du hero en fonction de la présence du banner */
        .hero.with-banner {
            padding-top: 140px; /* navbar (70px) + banner (≈60px) + padding */
        }

        .hero.without-banner {
            padding-top: 90px; /* navbar (70px) + padding */
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="tools" patternUnits="userSpaceOnUse" width="100" height="100"><g opacity="0.1"><path d="M20,20 L25,15 L30,20 L25,25 Z" fill="white"/><circle cx="70" cy="30" r="3" fill="white"/><rect x="15" y="70" width="10" height="3" fill="white"/></g></pattern></defs><rect width="100" height="100" fill="url(%23tools)"/></svg>') repeat;
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .hero-content {
            position: relative;
            z-index: 1;
            width: 100%;
        }

        .hero-logo {
            display: block;
            max-width: 100%;
            width: auto;
            height: auto;
            max-height: clamp(60px, 12vw, 150px);
            margin: 0 0 1rem 0;
            animation: slideInLeft 1s ease-out;
            object-fit: contain;
        }
		
		.services-description {
            font-size: 26px;
            color: rgba(255, 107, 54, 0.9);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            margin-bottom: 12px;
            position: relative;
        }

        .hero h1 {
            font-size: clamp(2rem, 6vw, 3.5rem);
            margin-bottom: 1rem;
            animation: slideInLeft 1s ease-out;
            line-height: 1.2;
        }

        .hero .subtitle {
            font-size: clamp(1.1rem, 3vw, 1.5rem);
            margin-bottom: 1.5rem;
            opacity: 0.9;
            animation: slideInLeft 1s ease-out 0.3s both;
        }

        .hero .description {
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            margin-bottom: 2rem;
            animation: slideInLeft 1s ease-out 0.6s both;
            line-height: 1.6;
        }

        .hero .description p {
            margin-bottom: 1rem;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .cta-button {
            display: inline-block;
            background: #ff6b35;
            color: white;
            padding: clamp(12px, 2.5vw, 15px) clamp(20px, 4vw, 30px);
            text-decoration: none;
            border-radius: 50px;
            font-size: clamp(1rem, 2.2vw, 1.1rem);
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
            animation: slideInLeft 1s ease-out 0.9s both;
            text-align: center;
        }

        .cta-button:hover {
            background: #e55a2e;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
        }

        /* SERVICES SECTION */
        .services {
            padding: clamp(3rem, 8vw, 5rem) 0;
            background: white;
        }

        .section-title {
            text-align: center;
            font-size: clamp(2rem, 5vw, 2.5rem);
            color: #333;
            margin-bottom: 1.25rem;
            line-height: 1.2;
        }

        .section-subtitle {
            text-align: center;
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            color: #666;
            margin-bottom: clamp(2.5rem, 6vw, 3.75rem);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
            gap: clamp(1.5rem, 4vw, 2rem);
            width: 100%;
        }

        .service-card {
            background: #f8f9fa;
            padding: clamp(1.5rem, 4vw, 2rem);
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            width: 100%;
        }

        .service-card:hover {
            background: white;
            border-color: #2a5298;
            box-shadow: 0 10px 30px rgba(42, 82, 152, 0.1);
            transform: translateY(-5px);
        }

        .service-card .service-icon {
            background: linear-gradient(135deg, #ff6b35, #e55a2e);
            color: white;
            width: clamp(60px, 10vw, 80px);
            height: clamp(60px, 10vw, 80px);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.25rem;
            box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
            transition: all 0.3s ease;
            font-size: clamp(2rem, 4vw, 3rem);
        }

        .service-card:hover .service-icon {
            transform: translateY(-5px) rotate(5deg);
            box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
        }

        .service-title {
            font-size: clamp(1.2rem, 3vw, 1.5rem);
            margin-bottom: 1rem;
            color: #333;
            line-height: 1.3;
        }

        .service-description {
            color: #666;
            line-height: 1.6;
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        /* GALERIE */
        .gallery {
            padding: clamp(3rem, 8vw, 4rem) 0;
            background: #f8f9fa;
        }

        .horizontal-gallery {
            background: white;
            border-radius: 20px;
            padding: clamp(1.5rem, 4vw, 2rem);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            max-width: min(1000px, 95vw);
            margin: 0 auto;
        }

        .gallery-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .gallery-title {
            font-size: clamp(1.2rem, 3vw, 1.4rem);
            color: #333;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .view-all-btn {
            background: #ff6b35;
            color: white;
            padding: 0.5rem 1.25rem;
            border: none;
            border-radius: 20px;
            font-size: clamp(0.8rem, 1.8vw, 0.9rem);
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .view-all-btn:hover {
            background: #e55a2e;
            transform: translateY(-1px);
        }

        .scroll-container {
            position: relative;
            overflow: hidden;
            padding: 0 clamp(25px, 8vw, 60px);
        }

        .gallery-track {
            display: flex;
            gap: clamp(10px, 2.5vw, 15px);
            overflow-x: auto;
            padding-bottom: 10px;
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .gallery-track::-webkit-scrollbar {
            display: none;
        }

        .gallery-card {
            flex-shrink: 0;
            width: clamp(140px, 25vw, 200px);
            height: clamp(100px, 18vw, 140px);
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .gallery-card:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }

        .gallery-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .gallery-card:hover img {
            transform: scale(1.1);
        }

        .card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: clamp(8px, 2vw, 15px) clamp(8px, 2vw, 12px) clamp(6px, 1.5vw, 10px);
            transform: translateY(10px);
            opacity: 0;
            transition: all 0.3s ease;
        }

        .gallery-card:hover .card-overlay {
            transform: translateY(0);
            opacity: 1;
        }

        .card-title {
            font-size: clamp(0.75rem, 1.8vw, 0.9rem);
            font-weight: 600;
            line-height: 1.2;
        }

        .scroll-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 107, 53, 0.9);
            border: 2px solid #ff6b35;
            width: clamp(35px, 6vw, 45px);
            height: clamp(35px, 6vw, 45px);
            border-radius: 50%;
            cursor: pointer;
            font-size: clamp(1.2rem, 2.5vw, 1.5rem);
            color: white;
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
            transition: all 0.3s ease;
            z-index: 10;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .scroll-btn:hover {
            background: #e55a2e;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
        }

        .scroll-prev {
            left: clamp(5px, 2vw, 10px);
        }

        .scroll-next {
            right: clamp(5px, 2vw, 10px);
        }

        /* LIGHTBOX */
        .simple-lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.9);
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .simple-lightbox.active {
            opacity: 1;
        }

        .lightbox-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            max-width: 95%;
            max-height: 95%;
        }

        .lightbox-content img {
            max-width: 100%;
            max-height: 80vh;
            border-radius: 10px;
        }

        .lightbox-info {
            background: white;
            padding: clamp(15px, 4vw, 20px);
            border-radius: 0 0 10px 10px;
            text-align: center;
        }

        .lightbox-close,
        .lightbox-nav {
            position: absolute;
            background: rgba(255,255,255,0.9);
            border: none;
            width: clamp(35px, 6vw, 50px);
            height: clamp(35px, 6vw, 50px);
            border-radius: 50%;
            cursor: pointer;
            font-size: clamp(1.2rem, 2.5vw, 1.5rem);
            color: #333;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-close {
            top: 20px;
            right: 20px;
        }

        .lightbox-nav {
            top: 50%;
            transform: translateY(-50%);
        }

        .lightbox-nav:hover,
        .lightbox-close:hover {
            background: #ff6b35;
            color: white;
        }

        .lightbox-prev {
            left: 20px;
        }

        .lightbox-next {
            right: 20px;
        }

        /* TESTIMONIALS */
        .testimonials {
            padding: clamp(3rem, 8vw, 5rem) 0;
            background: white;
        }

        .testimonials-container {
            background: #f8f9fa;
            border-radius: 20px;
            padding: clamp(1.5rem, 4vw, 2rem);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            max-width: min(1000px, 95vw);
            margin: 0 auto;
        }

        .testimonials-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .testimonials-title {
            font-size: clamp(1.2rem, 3vw, 1.4rem);
            color: #333;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .testimonials-scroll-container {
            position: relative;
            overflow: hidden;
            padding: 0 clamp(25px, 8vw, 60px);
        }

        .testimonials-track {
            display: flex;
            gap: clamp(15px, 3vw, 20px);
            overflow-x: auto;
            padding-bottom: 10px;
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .testimonials-track::-webkit-scrollbar {
            display: none;
        }

        .testimonial-card {
            flex-shrink: 0;
            width: clamp(280px, 45vw, 320px);
            background: white;
            padding: clamp(20px, 4vw, 25px);
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            position: relative;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
            border-color: #ff6b35;
        }

        .testimonial-card::before {
            content: '"';
            font-size: clamp(2.5rem, 5vw, 3rem);
            color: #ff6b35;
            position: absolute;
            top: clamp(-8px, -1.5vw, -5px);
            left: clamp(15px, 3vw, 20px);
            opacity: 0.3;
            font-family: serif;
        }

        .rating {
            color: #ff6b35;
            margin-bottom: 1rem;
            font-size: clamp(1rem, 2vw, 1.1rem);
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.25rem;
            color: #666;
            line-height: 1.6;
            position: relative;
            z-index: 1;
            font-size: clamp(0.9rem, 1.8vw, 1rem);
        }

        .testimonial-author {
            font-weight: bold;
            color: #333;
            text-align: right;
            position: relative;
            z-index: 1;
            font-size: clamp(0.9rem, 1.8vw, 1rem);
        }

        .testimonial-author::before {
            content: '— ';
            color: #ff6b35;
        }

        .testimonials-scroll-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 107, 53, 0.9);
            border: 2px solid #ff6b35;
            width: clamp(35px, 6vw, 45px);
            height: clamp(35px, 6vw, 45px);
            border-radius: 50%;
            cursor: pointer;
            font-size: clamp(1.2rem, 2.5vw, 1.5rem);
            color: white;
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
            transition: all 0.3s ease;
            z-index: 10;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .testimonials-scroll-btn:hover {
            background: #e55a2e;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
        }

        .testimonials-scroll-prev {
            left: clamp(5px, 2vw, 10px);
        }

        .testimonials-scroll-next {
            right: clamp(5px, 2vw, 10px);
        }

        /* ZONE INTERVENTION */
        .zone-intervention {
            padding: clamp(3rem, 8vw, 5rem) 0;
            background: #f8f9fa;
        }

        .map-container {
            background: white;
            border-radius: 15px;
            padding: clamp(1.5rem, 4vw, 2rem);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-top: 2.5rem;
        }

        #map {
            height: clamp(300px, 50vw, 400px);
            border-radius: 10px;
            width: 100%;
        }

        /* CONTACT - VERSION MODÉRÉMENT COMPACTE ET ULTRA-RESPONSIVE */
        .contact {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: clamp(3rem, 8vw, 5rem) 0;
            text-align: center;
        }

        .contact .section-title,
        .contact .section-subtitle {
            color: #ffffff;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
            font-weight: 600;
        }

        .contact .section-title {
            font-weight: 700;
        }

        .contact-form-container {
            max-width: min(480px, 92vw);
            margin: clamp(1.2rem, 3vw, 1.8rem) auto 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            padding: clamp(1.2rem, 3.5vw, 1.8rem);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.8);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .contact-form {
            display: grid;
            gap: clamp(0.6rem, 2vw, 0.8rem);
        }

        .form-group {
            text-align: left;
        }

        .form-group label {
            display: block;
            margin-bottom: clamp(0.2rem, 0.5vw, 0.3rem);
            font-weight: 500;
            color: #2a5298;
            font-size: clamp(0.85rem, 1.8vw, 0.9rem);
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: clamp(6px, 1.5vw, 8px) clamp(8px, 2vw, 10px);
            border: 1px solid #ddd;
            border-radius: 6px;
            background: #ffffff;
            color: #333;
            font-size: clamp(0.85rem, 1.8vw, 0.9rem);
            transition: all 0.3s ease;
        }

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

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #ff6b35;
            background: #ffffff;
            box-shadow: 0 0 15px rgba(255, 107, 53, 0.2);
            transform: translateY(-1px);
        }

        .form-group textarea {
            min-height: clamp(60px, 12vw, 80px);
            resize: vertical;
        }

        .form-group select {
            cursor: pointer;
        }

        .form-group select option {
            background: #ffffff;
            color: #333;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(0.6rem, 2vw, 0.8rem);
        }

        .form-row-names {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(0.6rem, 2vw, 0.8rem);
        }

        .form-row-selects {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(0.6rem, 2vw, 0.8rem);
        }

        /* Styles pour reCAPTCHA */
        .recaptcha-container {
            display: flex;
            justify-content: center;
            margin: clamp(0.8rem, 2vw, 1rem) 0;
            transform: scale(0.85);
            transform-origin: center;
        }

        .recaptcha-error {
            color: #dc3545;
            font-size: clamp(0.8rem, 1.6vw, 0.85rem);
            margin-top: 0.3rem;
            text-align: center;
            background: rgba(220, 53, 69, 0.1);
            padding: 0.4rem;
            border-radius: 4px;
            border: 1px solid rgba(220, 53, 69, 0.3);
        }

        .submit-btn {
            background: #ff6b35;
            color: white;
            padding: clamp(8px, 2vw, 10px) clamp(14px, 3vw, 18px);
            border: none;
            border-radius: 20px;
            font-size: clamp(0.9rem, 2vw, 0.95rem);
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: clamp(0.4rem, 1vw, 0.6rem);
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
            width: 100%;
        }

        .submit-btn:hover {
            background: #e55a2e;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
        }

        .submit-btn:disabled {
            background: #ccc;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        /* FOOTER */
        .footer {
            background: #1a1a1a;
            color: white;
            padding: clamp(2rem, 5vw, 2.5rem) 0;
            text-align: center;
        }

        .footer-signature {
            border-top: 3px solid #ff6b35;
            margin-top: 1.25rem;
            padding-top: 1.25rem;
        }

        .footer-signature .signature-text {
            color: #ff6b35;
            font-weight: bold;
            font-style: italic;
            margin-bottom: 0.6rem;
            font-size: clamp(1rem, 2.2vw, 1.1rem);
        }

        .footer p {
            font-size: clamp(0.9rem, 1.8vw, 1rem);
        }

        /* ANIMATIONS */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }

        .bounce-emoji {
            display: inline-block;
            animation: bounce 2s infinite;
        }

        /* MEDIA QUERIES */
        @media (max-width: 1024px) {
            .nav-menu {
                gap: 20px;
            }
            
            .nav-menu li a {
                padding: 0.4rem 0.8rem;
            }
            
            .nav-cta {
                padding: 0.5rem 1rem;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 0.8rem 0;
            }

            .nav-logo {
                z-index: 1001;
                position: relative;
            }

            .logo-image {
                height: clamp(28px, 4vw, 35px);
            }

            .nav-menu {
                position: fixed;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100vh;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                padding-top: 0;
                gap: 1.5rem;
                transition: left 0.3s ease;
                z-index: 1000;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu li a {
                font-size: 1.2rem;
                padding: 1rem 2rem;
                width: 200px;
                text-align: center;
            }

            .nav-toggle {
                display: flex;
                z-index: 1001;
                position: relative;
            }

            .nav-cta {
                display: none;
            }

            .hero {
                min-height: 80vh;
                padding: 1rem 0;
            }

            .hero.with-banner {
                padding-top: 120px; /* Ajusté pour mobile */
            }

            .hero.without-banner {
                padding-top: 80px; /* Ajusté pour mobile */
            }

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

            .gallery-header,
            .testimonials-header {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .scroll-btn,
            .testimonials-scroll-btn {
                display: none;
            }

            .scroll-container,
            .testimonials-scroll-container {
                padding: 0;
            }

            .gallery-track,
            .testimonials-track {
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }

            .contact-form-container {
                max-width: 95vw;
                padding: 1.5rem;
            }

            .form-row-selects {
                grid-template-columns: 1fr;
                gap: clamp(0.6rem, 2vw, 0.8rem);
            }

            /* Ajustement du banner sur mobile */
            .notification-banner {
                top: 60px; /* Navbar plus petite sur mobile */
            }

            /* Ajustement reCAPTCHA sur mobile */
            .recaptcha-container {
                transform: scale(0.75);
            }
        }

        @media (max-width: 580px) {
            .form-row,
            .form-row-names {
                grid-template-columns: 1fr;
                gap: clamp(0.5rem, 2vw, 0.7rem);
            }
            
            .contact-form-container {
                padding: 1.2rem;
            }

            .recaptcha-container {
                transform: scale(0.7);
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }

            .navbar {
                padding: 0.6rem 0;
            }

            .hero {
                min-height: 70vh;
            }

            .services,
            .gallery,
            .testimonials,
            .zone-intervention,
            .contact {
                padding: 2.5rem 0;
            }

            .contact-form-container {
                margin: 1rem auto 0;
                padding: 1rem;
                max-width: 96vw;
            }

            .form-row,
            .form-row-names,
            .form-row-selects {
                grid-template-columns: 1fr;
                gap: clamp(0.4rem, 1.5vw, 0.6rem);
            }

            .horizontal-gallery,
            .testimonials-container {
                padding: 1.25rem;
                margin: 0 0.5rem;
            }

            .gallery-card {
                width: 120px;
                height: 85px;
            }

            .testimonial-card {
                width: 250px;
                padding: 1.25rem;
            }

            .recaptcha-container {
                transform: scale(0.65);
            }
        }

        @media (max-width: 360px) {
            .container {
                padding: 0 0.75rem;
            }

            .gallery-card {
                width: 100px;
                height: 70px;
            }

            .testimonial-card {
                width: 220px;
                padding: 1rem;
            }

            .horizontal-gallery,
            .testimonials-container {
                padding: 1rem;
                margin: 0 0.25rem;
            }

            .hero {
                padding: 1.5rem 0;
            }

            .cta-button {
                padding: 10px 20px;
                font-size: 0.95rem;
            }

            .contact-form-container {
                padding: 0.8rem;
                max-width: 98vw;
            }

            .form-group label {
                font-size: 0.8rem;
            }

            .form-group input,
            .form-group textarea,
            .form-group select {
                font-size: 0.8rem;
                padding: 5px 7px;
            }

            .submit-btn {
                font-size: 0.85rem;
                padding: 7px 12px;
            }

            .recaptcha-container {
                transform: scale(0.6);
            }
        }

        @media (orientation: landscape) and (max-height: 500px) {
            .hero {
                min-height: 100vh;
                padding: 1rem 0;
            }
            
            .hero .description {
                margin-bottom: 1.5rem;
            }
            
            .navbar {
                padding: 0.5rem 0;
            }
        }

        @media print {
            .navbar,
            .nav-toggle,
            .scroll-btn,
            .testimonials-scroll-btn,
            .lightbox-close,
            .lightbox-nav,
            .notification-banner {
                display: none !important;
            }
            
            .hero,
            .contact {
                background: white !important;
                color: black !important;
            }
            
            .services,
            .gallery,
            .testimonials,
            .zone-intervention {
                page-break-inside: avoid;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        @media (prefers-contrast: high) {
            .service-card,
            .gallery-card,
            .testimonial-card {
                border: 2px solid #333;
            }
            
            .nav-menu li a:hover,
            .nav-menu li a.active {
                background: #000;
                color: #fff;
            }
        }

        *:focus-visible {
            outline: 3px solid #ff6b35;
            outline-offset: 2px;
        }

        @media (pointer: coarse) {
            .nav-menu li a,
            .cta-button,
            .submit-btn,
            .view-all-btn {
                min-height: 44px;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            .gallery-card,
            .testimonial-card {
                min-height: 44px;
            }
        }