 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --bg-color: #2c2c2c;
            --text-color: #ffffff;
            --accent: #4CAF50;
            --decline: #9e9e9e;
            }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #2175f1 0%, #5b9fecad 100%);
            min-height: 100vh;
        }

        .container {
            max-width: auto;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Header */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            padding: 1rem 0;
            padding-left: 1rem 0;
            gap: 3rem;
        }

        .nav-right {
            margin-left: auto;
            margin-right: 100px;
        }

        .phone-number {
            background: linear-gradient(135deg, #2175f1 0%, #5b9fecad 100%);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
        }

        .phone-number:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(102, 126, 234, 0.5);
        }
        
        .mail {
            background: linear-gradient(45deg, #2175f1 0%, #5b9fecad);
            color: white;
            padding: 0.5rem 1rem;
            margin-left: 10px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
        }

        .mail:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(102, 126, 234, 0.5);
        }
        .logo {
            height: 150px;
            transition: all 0.3s ease;
            margin-bottom: 10px;
            margin-left: 100px;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: larger;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: #667eea;
            transform: translateY(-2px);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: linear-gradient(45deg,#2175f1 0%, #5b9fecad);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            margin-top: 120px;
            padding: 4rem 0;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .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="circuit" patternUnits="userSpaceOnUse" width="100" height="100"><path d="M20 20h60v60H20z" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.2)"/><circle cx="80" cy="20" r="2" fill="rgba(255,255,255,0.2)"/><circle cx="20" cy="80" r="2" fill="rgba(255,255,255,0.2)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.2)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23circuit)"/></svg>');
            opacity: 0.3;
            animation: float 10s ease-in-out infinite;
        }

        .carousel {
            position: relative;
            max-width: 700px;
            margin: 40px auto;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0,0,0,0.3);
            }

        .carousel-images {
            display: flex;
            transition: transform 1s ease-in-out;
            }

        .carousel-images img {
            width: 100%;
            flex-shrink: 0;
            }

        /* Points indicateurs */
        .dots {
            text-align: center;
            margin-top: 10px;
            }

        .dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            margin: 5px;
            background-color: #bbb;
            border-radius: 50%;
            cursor: pointer;
            }

        .dot.active {
            background-color: #717171;
            }
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .hero-content {
            position: relative;
            z-index: 2;            
        }

        .hero-logo {
            max-width: 600px;
            width: auto;
            height: auto;
            margin-bottom: 0rem;
            filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
            
        }

        @keyframes logoFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            animation: slideInUp 1s ease;
        }

        .hero h2 {
            font-size: 2rem;
            margin-bottom: 1rem;            
            animation: slideInUp 1s ease;
        }
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            animation: slideInUp 1s ease 0.3s both;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #ff6b6b, #ee5a52);
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
            animation: slideInUp 1s ease 0.6s both;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
        }

        /* Services Section */
        .services {
            background: white;
            padding: 4rem 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            background: linear-gradient(45deg,#2175f1 0%, #5b9fecad);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-title2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            background: linear-gradient(45deg,#fafafa 0%, #ffffffe0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .service-card {
            background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1rem;
            background: linear-gradient(45deg, #2175f1 0%, #5b9fecad);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .service-card p {
            color: #666;
            line-height: 1.6;
        }

        /* Zone Section */
        .zone-section {
            margin-top: 140px;
            padding: 4rem 0;            
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 4rem 0;
        }

        .zone-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .zone-info  {            
            margin-left: auto;
            margin-right: auto;
            max-width: 500px;
        }

        .zone-list  {            
            margin-right: auto;  
            width: 80%;          
        }        

        .zone-info h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, #2175f1 0%, #5b9fecad);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .zone-info p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 1rem;
        }

        .zone-list {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .zone-list h3 {
            color: #667eea;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .zone-cities {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 0.5rem;
            font-size: 0.9rem;
            color: #666;
        }

        /* Advantages Section */
        .advantages {
            background: white;
            padding: 4rem 0;
        }

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .advantage-item {
            display: flex;
            align-items: center;
            padding: 1.5rem;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .advantage-item:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
        }

        .advantage-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #2175f1 0%, #5b9fecad);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            color: white;
            font-size: 1.2rem;
        }

        /* Contact Section */
        .contact {
            background: linear-gradient(135deg, #2175f1 0%, #5b9fecad);
            color: white;
            padding: 1rem 0;
            text-align: center;
        }

        .contact-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .contact-item {
            background: rgba(114, 166, 243, 0.582);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .contact-item h3 {
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        /* Section Tarifs */
        .tarifs {
            background: #f9f9f9;
            margin-top: 140px;
            padding: 50px 0;
        }

        .tarifs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .tarif-card {
            background: linear-gradient(135deg, #2175f1 0%, #5b9fecad);
            color: white;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .tarif-card h3 {
            margin-bottom: 10px;
            font-size: 1.6em;
        }

           .tarif-card ul {
            list-style: none;
            padding: 0;
            margin: 0 0 15px 0;
            text-align: left;
        }

        .tarif-card ul li {
            margin-bottom: 8px;
            position: relative;
            padding-left: 15px;
             font-size: 1.2em;
        }

        .tarif-card ul li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: white;
        }

        .tarif-btn {
            background: orange;
            color: white;
            padding: 10px 15px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background 0.3s ease;
        }

        .tarif-btn:hover {
            background: #ff8c00;
        }
        /* Section Dépannage */
        .form-depannage {
            padding: 50px 0;
            background: #f5f5f5;
            margin-top: 140px;
        }

        .depannage-form {
            background: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            max-width: 500px;
            margin: auto;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .depannage-form label {
            font-weight: bold;
        }

        .depannage-form input,
        .depannage-form textarea {
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            width: 100%;
        }

        .depannage-form button {
            background: orange;
            color: white;
            padding: 12px;
            border: none;
            border-radius: 5px;
            font-size: 1em;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }

        .depannage-form button:hover {
            background: #ff8c00;
        }
        
        .form-message {
            padding: 12px;
            margin-bottom: 15px;
            border-radius: 5px;
            font-weight: bold;
        }
        .form-message.success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        .form-message.error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        /* Footer */
        footer {
            background: #2c3e50;
            color: white;
            text-align: center;
            padding: 2rem 0;
        }

        footer a {            
            color: white;            
        }

        footer a:visited {            
            color: white;            
        }

        footer a:hover {            
            color: orange;            
        }
        /* Section Dépannage */
        .mentions-legales {
        max-width: 1000px;
        margin: 2rem auto;
        padding: 1.5rem 2rem;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        color: #222;
        background-color: #fafafa;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        line-height: 1.6;
        margin-top: 200px;
        }

        .mentions-legales h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        color: #003366;
        text-align: center;
        }

        .mentions-legales h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 0.75rem;
        color: #0055aa;
        border-bottom: 2px solid #0055aa;
        padding-bottom: 0.25rem;
        }

        .mentions-legales p {
        margin-bottom: 1rem;
        font-size: 1rem;
        }

        .mentions-legales ul {
        margin-left: 1.25rem;
        margin-bottom: 1rem;
        list-style-type: disc;
        color: #444;
        }

        .mentions-legales ul li {
        margin-bottom: 0.5rem;
        font-size: 1rem;
        }

        @media (max-width: 768px) {
        .mentions-legales {
            padding: 1rem 1rem;
            margin: 1rem;
            margin-top: 140px;
        }

        .mentions-legales h1 {
            font-size: 2rem;
        }

        .mentions-legales h2 {
            font-size: 1.25rem;
        }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: block;
            }
            .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: smaller;
            transition: all 0.3s ease;
            position: relative;
        }
            .nav-right {
                display: none!important;
            }
            .logo {
                margin-left: 2px;
                margin-top: 2px;
                height: 100px;
            }
            .hero-logo {                
                width: 300px;
                height: 150px;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .zone-content {
                grid-template-columns: 1fr;
            }
            
            .container {
                padding: 0 1rem;
            }
            .hero {
            margin-top: 60px;            
            }
        }

        #cookie-banner {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: #222;
            color: #fff;
            padding: 15px;
            text-align: center;
            font-size: 14px;
            z-index: 9999;
        }

        #cookie-banner button {
            margin-left: 10px;
            padding: 8px 16px;
            background-color: #4CAF50;
            border: none;
            color: white;
            cursor: pointer;
            border-radius: 4px;
        }

        #cookie-banner button:hover {
            background-color: #45a049;
        }
        /* Responsive */
        @media (max-width: 1216px) {
            
            .nav-right {
                display: none!important;              
        }
        }
        @media (max-width: 1360px) {
            
            .nav-right {
                display: inline-flex;
                font-size: 10px;

        }
        }

        /* Animation on scroll */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @keyframes float-particle {
            0% {
                transform: translateY(0) translateX(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) translateX(100px);
                opacity: 0;
            }
        }