
        :root {
            --primary: #080d12;
            --primary-dark: #003d82;
            --primary-light: #e8f0fe;
            --secondary: #ffffff;
            --accent: #ff6b35;
            --whatsapp: #25D366;
            --whatsapp-dark: #1da851;
            --text: #333333;
            --text-light: #666666;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #e9ecef;
            --gray-dark: #dee2e6;
            --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
            --radius: 6px;
            --transition: all 0.3s ease;
            
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text);
            line-height: 1.6;
            font-weight: 400;
            background-color: #fff;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Roboto', sans-serif;
            font-weight: 700;
            line-height: 1.3;
            color: var(--dark);
        }

        /* h2fix */
        .hero-content h2 {
        color: white;
        }

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

        .section-padding {
            padding: 100px 0;
        }

        .section-title {
            margin-bottom: 60px;
            text-align: center;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--accent);
        }

        .section-title p {
            max-width: 700px;
            margin: 0 auto;
            color: var(--text-light);
            font-size: 1.1rem;
        }

        .btn {
            display: inline-block;
            padding: 14px 32px;
            background-color: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: var(--radius);
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 1rem;
            text-align: center;
        }

        .btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .btn-secondary {
            background-color: #0056b3;
            color: white;
        }

        .btn-secondary:hover {
            background-color: #003d82;
        }

        .btn-outline {
            background-color: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-outline:hover {
            background-color: var(--primary);
            color: white;
        }

        .btn-accent {
            background-color: var(--accent);
        }

        .btn-accent:hover {
            background-color: #e55a2b;
        }

        .btn-whatsapp {
            background-color: #25D366;
            color: white;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 38px;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 700;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            text-decoration: none;
            border: none;
        }

        .btn-whatsapp:hover {
            background-color: #1da851;
            transform: translateY(-4px);
            box-shadow: 0 14px 35px rgba(37, 211, 102, 0.5);
        }

        .btn-whatsapp i {
            font-size: 1.8rem;
        }

        /* WHATSAPP FLOATING BUTTON */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 9998;
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            text-decoration: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .whatsapp-float:hover {
            transform: translateY(-6px);
        }
        .whatsapp-float .whatsapp-badge {
            background: white;
            color: #333;
            font-weight: 600;
            font-size: 0.9rem;
            padding: 10px 18px;
            border-radius: 30px;
            box-shadow: 0 4px 18px rgba(0,0,0,0.15);
            white-space: nowrap;
            opacity: 0;
            transform: translateX(20px);
            transition: opacity 0.35s ease, transform 0.35s ease;
            pointer-events: none;
        }
        .whatsapp-float:hover .whatsapp-badge {
            opacity: 1;
            transform: translateX(0);
        }
        .whatsapp-float .whatsapp-circle {
            width: 62px;
            height: 62px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            box-shadow: 0 6px 24px rgba(37,211,102,0.45);
            transition: background 0.3s ease, transform 0.3s ease;
            position: relative;
            animation: whatsappBounce 2.5s ease-in-out infinite;
        }
        .whatsapp-float:hover .whatsapp-circle {
            background: #1da851;
            animation: none;
            transform: scale(1.08);
        }
        .whatsapp-circle::after {
            content: '';
            position: absolute;
            inset: -6px;
            border-radius: 50%;
            border: 3px solid rgba(37,211,102,0.35);
            animation: whatsappRing 2.5s ease-in-out infinite;
        }
        @keyframes whatsappBounce {
            0%,100%{transform:translateY(0);}
            20%{transform:translateY(-8px);}
            40%{transform:translateY(0);}
            60%{transform:translateY(-5px);}
            80%{transform:translateY(0);}
        }
        @keyframes whatsappRing {
            0%,100%{transform:scale(1);opacity:0.5;}
            50%{transform:scale(1.25);opacity:0;}
        }

        /* SLIDER HERO */
        .hero-slider {
            position: relative;
            width: 100%;
            height: 350px;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }
        .hero-slider .slides {
            display: flex;
            transition: transform 0.5s ease;
            height: 100%;
        }
        .hero-slider .slides img {
            min-width: 100%;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            flex-shrink: 0;
        }
        .hero-slider .slide-nav {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 3;
        }
        .hero-slider .slide-nav button {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            border: none;
            cursor: pointer;
            transition: background 0.3s;
        }
        .hero-slider .slide-nav button.active {
            background: var(--accent);
        }

        /* Header */
        header {
            background-color: white;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
            border-bottom: 1px solid var(--gray);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
        }
        .logo {
            display: block;
            transition: transform 0.3s;
            order: 0; /* Logo à gauche */
        }

        /* LOGO - TAILLE BEAUCOUP PLUS GRANDE */
        .logo img {
            height: 160px; /* Taille augmentée significativement */
            width: auto;
            display: block;
            max-width: 450px; /* Largeur max augmentée */
            object-fit: contain;
        }

        .logo:hover img {
            transform: scale(1.02);
        }

        @media (max-width: 768px) {
            .logo img {
                height: 100px; /* Plus grand aussi en mobile */
            }
            .header-container {
                padding: 8px 0;
            }
        }

        @media (max-width: 480px) {
            .logo img {
                height: 90px;
            }
        }

        .nav-desktop {
            display: flex;
            list-style: none;
            order: 1;
        }
        .nav-desktop li {
            margin-left: 35px;
        }
        .nav-desktop a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            font-size: 1rem;
            transition: color 0.3s;
            position: relative;
        }
        .nav-desktop a:hover {
            color: #0056b3;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #0056b3;
            transition: width 0.3s;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .nav-cta {
            background-color: var(--accent);
            color: white !important;
            padding: 10px 24px;
            border-radius: var(--radius);
            transition: var(--transition);
        }
        .nav-cta:hover {
            background-color: #e55a2b;
            color: white;
        }

        /* Mobile toggle - à DROITE avec marge à gauche pour l'écarter du bord */
        .mobile-toggle {
            display: none;
            order: 2; /* Placé à droite */
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary);
            margin-right: 15px; /* Décalage vers la gauche depuis le bord droit */
            padding-left: 0;
        }

        /* MENU MOBILE */
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            .nav-desktop {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: white;
                flex-direction: column;
                padding: 0;
                box-shadow: var(--shadow);
                z-index: 999;
                order: 3;
            }
            .nav-desktop.active {
                display: flex;
            }
            .nav-desktop li {
                margin: 0;
                width: 100%;
            }
            .nav-desktop a {
                display: block;
                width: 100%;
                padding: 15px 25px;
                border-bottom: 1px solid #eee;
                font-size: 1.1rem;
                text-align: left;
            }
            .nav-desktop a.nav-cta {
                background-color: var(--accent);
                color: white !important;
                text-align: center;
                border-bottom: none;
                margin: 10px 25px;
                border-radius: var(--radius);
                padding: 12px;
            }
            
            /* Réorganisation de l'ordre en mobile */
            .header-container {
                flex-wrap: wrap;
            }
            .logo {
                flex: 1;
            }
        }

        /* Hero */
        .hero {
            padding-top: 220px; /* Augmenté pour accommoder le plus grand logo */
            padding-bottom: 100px;
            background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="%230056b3" opacity="0.1"/></svg>');
            background-color: #1a1a1a;
            background-size: cover;
            color: white;
            position: relative;
        }
        .hero-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .hero-content h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            line-height: 1.2;
            color: white;
        }
        .hero-content p {
            font-size: 1.2rem;
            color: rgba(255,255,255,0.9);
            margin-bottom: 35px;
            max-width: 500px;
        }
        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            align-items: center;
        }
        .hero-features {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            margin-top: 40px;
        }
        .hero-feature {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .hero-feature i {
            color: #00a8ff;
            font-size: 1.5rem;
        }
        .hero-feature span {
            font-size: 1rem;
            color: white;
        }
        .hero-image {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Services */
        .services {
            background-color: var(--light);
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .service-card {
            background-color: white;
            border-radius: var(--radius);
            padding: 40px 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
            border-top: 4px solid transparent;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            border-top: 4px solid #0056b3;
        }
        .service-icon {
            width: 80px; height: 80px;
            background-color: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--primary);
            font-size: 2rem;
        }
        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        .service-card p {
            color: var(--text-light);
            margin-bottom: 20px;
        }
        .service-price {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 20px;
        }
        .service-price span {
            font-size: 1rem;
            color: var(--text-light);
            font-weight: 400;
        }

        /* Punti di Forza */
        .punti-forza { background-color: white; }
        .punti-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }
        .punto-item { text-align: center; padding: 30px 20px; }
        .punto-icon { font-size: 3rem; color: var(--accent); margin-bottom: 20px; }
        .punto-item h4 { font-size: 1.5rem; margin-bottom: 15px; }

        /* Brands */
        .brands { background-color: var(--light); }
        .brands-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 30px;
            align-items: center;
        }
        .brand-item {
            background-color: white;
            padding: 30px;
            border-radius: var(--radius);
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .brand-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        .brand-icon { font-size: 3rem; color: var(--text-light); margin-bottom: 15px; }
        .brand-item h4 { font-size: 1.2rem; color: var(--dark); }

        /* About */
        .about { background-color: var(--light); }
        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        .about-image {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            background: linear-gradient(45deg, #0056b3, #00a8ff);
            height: 550px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }
        .about-badge {
            position: absolute;
            top: 20px; right: 20px;
            background-color: var(--accent);
            color: white;
            padding: 10px 20px;
            border-radius: var(--radius);
            font-weight: 600;
            box-shadow: var(--shadow);
        }
        .about-content h2 { font-size: 2.5rem; margin-bottom: 20px; }
        .about-content p { margin-bottom: 25px; color: var(--text-light); }
        .about-features { margin-top: 40px; }
        .about-feature { display: flex; align-items: flex-start; margin-bottom: 25px; }
        .feature-icon {
            width: 50px; height: 50px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: var(--primary);
            flex-shrink: 0;
            box-shadow: var(--shadow);
        }
        .feature-content h4 { font-size: 1.2rem; margin-bottom: 5px; }

        /* Testimonials */
        .testimonials { background-color: white; }
        .testimonials-slider { max-width: 800px; margin: 0 auto; }
        .testimonial {
            background-color: var(--light);
            border-radius: var(--radius);
            padding: 40px;
            box-shadow: var(--shadow);
            margin: 20px auto;
            position: relative;
        }
        .testimonial::before {
            content: '"';
            position: absolute;
            top: 20px; left: 20px;
            font-size: 4rem;
            color: #0056b3;
            opacity: 0.3;
            font-family: serif;
        }
        .testimonial p { font-style: italic; color: var(--text); margin-bottom: 25px; font-size: 1.1rem; }
        .testimonial-author { display: flex; align-items: center; }
        .author-avatar {
            width: 60px; height: 60px;
            border-radius: 50%;
            background-color: var(--gray);
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--primary);
        }
        .author-info h4 { font-size: 1.2rem; margin-bottom: 5px; }
        .author-info p { font-style: normal; font-size: 0.9rem; color: var(--text-light); margin: 0; }

        /* Contact */
        .contact { background-color: var(--light); }
        .contact-container { max-width: 900px; margin: 0 auto; text-align: center; }
        .contact-info h2 { font-size: 2.5rem; margin-bottom: 20px; }
        .contact-info p { color: var(--text-light); margin-bottom: 30px; }
        .contact-details {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin: 50px 0;
            align-items: stretch;
        }
        .contact-item {
            background: white;
            padding: 25px 15px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            text-align: center;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        .contact-icon { font-size: 2rem; color: var(--primary); margin-bottom: 15px; }
        .contact-content h4 { font-size: 1.2rem; margin-bottom: 5px; }
        .contact-content p { color: var(--text-light); margin: 0; }
        .whatsapp-highlight { margin-top: 20px; }

        /* Mappa */
        .map-section { padding: 80px 0; background: white; }
        .map-container { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
        .map-container iframe { width: 100%; height: 450px; border: 0; }

        /* Footer */
        footer { background-color: var(--dark); color: white; padding: 60px 0 0; }
        .footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
        .footer-col h3 { font-size: 1.3rem; margin-bottom: 25px; color: white; position: relative; padding-bottom: 10px; }
        .footer-col h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background-color: #0056b3; }
        .footer-logo { display: flex; flex-direction: column; margin-bottom: 20px; }
        .footer-logo h3 { font-size: 1.8rem; margin-bottom: 5px; }
        .footer-logo span { font-size: 0.9rem; color: #adb5bd; letter-spacing: 1px; }
        .footer-col p { color: #adb5bd; margin-bottom: 25px; }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { color: #adb5bd; text-decoration: none; transition: color 0.3s; }
        .footer-links a:hover { color: white !important; }
        .social-links { display: flex; gap: 15px; margin-top: 20px; }
        .social-links a {
            width: 40px; height: 40px;
            background-color: #343a40;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }
        .social-links a:hover { background-color: #0056b3 !important; transform: translateY(-3px); }
        
        /* SUPPRESSION DE L'IMAGE FOOTER */
        .footer-image {
            display: none; /* Complètement retiré */
        }
        
        .copyright { 
            text-align: center; 
            padding: 30px 20px; 
            border-top: 1px solid #343a40; 
            color: #adb5bd; 
            font-size: 0.9rem;
            background-color: var(--dark);
            margin-top: 20px; /* Petit espace au-dessus du copyright */
        }

        /* Responsive */
        @media (max-width: 1100px) {
            .hero-container, .about-container { grid-template-columns: 1fr; gap: 60px; }
            .hero-content h1 { font-size: 2.8rem; }
            .hero-image { order: -1; }
            .contact-details { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .hero { padding-top: 180px; padding-bottom: 80px; }
            .hero-content h1 { font-size: 2rem; }
            .hero-content p { font-size: 1rem; }
            .hero-features { flex-direction: column; gap: 15px; }
            .services-grid { grid-template-columns: 1fr; }
            .section-padding { padding: 70px 0; }
            .whatsapp-float { bottom: 20px; right: 15px; }
            .whatsapp-float .whatsapp-circle { width: 50px; height: 50px; font-size: 1.4rem; }
            .btn-whatsapp { padding: 14px 28px; font-size: 1rem; }
            .btn-whatsapp i { font-size: 1.4rem; }
            .contact-details { grid-template-columns: 1fr 1fr; gap: 15px; }
            
            /* Ajustement mobile pour le menu hamburger */
            .mobile-toggle {
                margin-right: 5px; /* Un peu moins d'espace sur très petit écran */
            }
        }
        @media (max-width: 480px) {
            .contact-details { grid-template-columns: 1fr; }
        }
