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

        body {
            font-family:  'Space Grotesk', sans-serif;
            background: transparent;
            min-height: 100vh;
            justify-content: center;
            padding: 20px;
             display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

              .navbar {
    background: #ffcc00;
    position: fixed;
    top: 0;
    left: 50px; /* Réduit de 75px */
    right: 50px; /* Réduit de 75px */
    z-index: 1000;
    padding: 0 24px; /* Réduit de 36px */
    height: 60px; /* Réduit de 75px */
}

.nav-container {
    max-width: 1400px; /* Réduit de 1800px */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px; /* Réduit de 90px */
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
}


.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 32px; /* Réduit de 48px */
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #425466;
    font-weight: 500;
    font-size: 18px; /* Réduit de 24px */
    padding: 8px 0; /* Réduit de 12px */
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px; /* Réduit de 6px */
}

.nav-link:hover {
    color: #635bff;
}

.dropdown-arrow {
    width: 14px; /* Réduit de 18px */
    height: 14px; /* Réduit de 18px */
    transition: transform 0.2s ease;
}

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: -40px; /* Réduit de -60px */
    background: white;
    border-radius: 12px; /* Réduit de 18px */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15); /* Réduit */
    padding: 20px; /* Réduit de 30px */
    min-width: 360px; /* Réduit de 480px */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px); /* Réduit de -15px */
    transition: all 0.3s ease;
    border: 1px solid #e3e8ee;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px; /* Réduit de 24px */
}

.dropdown-item {
    padding: 12px; /* Réduit de 18px */
    border-radius: 8px; /* Réduit de 12px */
    transition: background 0.2s ease;
    cursor: pointer;
}

.dropdown-item:hover {
    background: #f6f9fc;
}

.dropdown-item h4 {
    color: #1a1f36;
    font-size: 16px; /* Réduit de 21px */
    font-weight: 600;
    margin-bottom: 4px; /* Réduit de 6px */
}

.dropdown-item p {
    color: #6b7c93;
    font-size: 14px; /* Réduit de 19.5px */
    line-height: 1.4;
}

/* .nav-buttons {
    display: flex;
    align-items: center;
    gap: 16px; 
} */.dropdown-item img {
    width: 60px;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
    display: block;
}





.btn {
  display: inline-flex;
  align-items: center;
  /* gap: 15px; */
  padding: 10px 24px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 20px;
  color: white;
  background-color: #25d366; /* Vert WhatsApp */
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.btn-primary {
    background: #635bff;
    color: white;
}

.btn-primary:hover {
    background: #5a54e5;
    transform: translateY(-1px);
}
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px; /* Réduit de 6px */
    cursor: pointer;
}

.mobile-menu span {
    width: 28px; /* Réduit de 36px */
    height: 2px; /* Réduit de 3px */
    background: #425466;
    transition: all 0.3s ease;
}


        .quote-form {
            
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
            padding: 40px;
            max-width: 1800px;
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .quote-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
        }

        .form-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .form-header h2 {
            color: #333;
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 10px;
            background: linear-gradient(135deg, #ffd700, #ffb000);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .form-header p {
            color: #666;
            font-size: 1.1rem;
            font-weight: 300;
        }

        .form-group {
            margin-bottom: 25px;
            position: relative;
        }

        label {
            display: block;
            color: #333;
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 0.95rem;
        }

        input, textarea {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e8e8e8;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s ease;
            background: #fafafa;
        }

        input:focus, textarea:focus {
            outline: none;
            border-color: #ffd700;
            background: white;
            box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
            transform: translateY(-2px);
        }

        textarea {
            height: 120px;
            resize: vertical;
            min-height: 80px;
        }

        .submit-btn {
            width: 100%;
            background: linear-gradient(135deg, #ffd700, #ffb000);
            color: #333;
            border: none;
            padding: 18px;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
        }

        .submit-btn:active {
            transform: translateY(-1px);
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s;
        }

        .submit-btn:hover::before {
            left: 100%;
        }

        /* Animation d'entrée */
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .quote-form {
            animation: slideIn 0.6s ease-out;
        }

        .form-group {
            animation: slideIn 0.6s ease-out;
            animation-fill-mode: both;
        }

        .form-group:nth-child(1) { animation-delay: 0.1s; }
        .form-group:nth-child(2) { animation-delay: 0.2s; }
        .form-group:nth-child(3) { animation-delay: 0.3s; }
        .form-group:nth-child(4) { animation-delay: 0.4s; }
        .submit-btn { animation-delay: 0.5s; }

        /* Responsive */
        @media (max-width: 600px) {
            .quote-form {
                padding: 30px 20px;
                margin: 10px;
            }
            
            .form-header h2 {
                font-size: 1.8rem;
            }
            
            input, textarea {
                padding: 12px 16px;
            }
            
            .submit-btn {
                padding: 15px;
                font-size: 1rem;
            }
        }

        /* États de validation */
        input:valid, textarea:valid {
            border-color: #4CAF50;
        }

        input:invalid:not(:focus):not(:placeholder-shown),
        textarea:invalid:not(:focus):not(:placeholder-shown) {
            border-color: #0c0c0c;
        }

        /* Effet de pulse sur le bouton */
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
            }
        }

        .submit-btn:focus {
            animation: pulse 1.5s infinite;
        }

        .footer {
            background: linear-gradient(135deg, #ffcc00 0%, #daae00 100%);
            color: rgb(0, 0, 0);
            padding: 60px 0 20px;
            margin-top: auto;
        }

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

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

        .footer-section h3 {
            font-size: 1.4em;
            margin-bottom: 20px;
            color: #000000;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-section h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, #969595, #2980b9);
            border-radius: 2px;
        }

        .footer-links {
            list-style: none;
        }

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

        .footer-links a {
            color: #000000;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            padding: 5px 0;
        }

        .footer-links a:hover {
            color: #3498db;
            padding-left: 10px;
            transform: translateX(5px);
        }

        .footer-links svg {
            width: 16px;
            height: 16px;
            margin-right: 10px;
            opacity: 0.7;
        }

        .company-info p {
            color: #000000;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            color: #000000;
            transition: color 0.3s ease;
        }

        .contact-item:hover {
            color: #3498db;
        }

        .contact-item svg {
            width: 20px;
            height: 20px;
            margin-right: 15px;
            opacity: 0.8;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(0, 0, 0, 0.1);
            border-radius: 50%;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .social-link:hover {
            background: #3498db;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
        }

        .social-link svg {
            width: 20px;
            height: 20px;
            fill: rgb(0, 0, 0);
        }

        /* .newsletter {
            background: rgba(255, 255, 255, 0.1);
            padding: 25px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

        .newsletter h4 {
            margin-bottom: 15px;
            color: #fff;
        }

        .newsletter p {
            color: #bdc3c7;
            margin-bottom: 20px;
            font-size: 0.9em;
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 25px;
            background: rgba(255, 255, 255, 0.9);
            font-size: 0.9em;
            outline: none;
        }

        .newsletter-form button {
            padding: 12px 25px;
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .newsletter-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
        } */

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

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-logo {
            font-size: 1.5em;
            font-weight: bold;
            color: #000000;
        }

        .footer-bottom p {
            color: #000000;
            font-size: 0.9em;
        }

        .footer-bottom-links {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        .footer-bottom-links a {
            color: #000000;
            text-decoration: none;
            font-size: 0.9em;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: #3498db;
        }

        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }

            .newsletter-form {
                flex-direction: column;
            }

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

        .btn-primary {
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
        }


        .support-banner-gradient-container {
    position: relative;
    width: 100%;
    height: 12px;
    overflow: hidden;
}

.support-banner-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 300%;
    height: 12px;
    background: linear-gradient(
        90deg,
        #fab000,
        #ff7600 6.25%,
        #ff5996 12.5%,
        #635bff 18.75%,
        #02bcf5 25%,
        #635bff 31.25%,
        #ff5996 37.5%,
        #ff7600 43.75%,
        #fab000 50%,
        #ff7600 56.25%,
        #ff5996 62.5%,
        #635bff 68.75%,
        #02bcf5 75%,
        #635bff 81.25%,
        #ff5996 87.5%,
        #ff7600 93.75%,
        #fab000
    );
    animation: support-banner-gradient-scroll 6s linear infinite;
}

@keyframes support-banner-gradient-scroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-66.66%);
    }
}
        body.mobile-mode .company-info p {
  color: #000000 !important;
  font-size: 0.5em !important;
}