/* --- STYLES DE BASE & VARIABLES --- */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --primary-blue: #1E3A8A;
            --secondary-blue: #1E40AF;
            --light-blue: #3B82F6;
            --yellow: #FFD700;
            --orange: #FFA500;
            --white: #FFFFFF;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--white);
            background: rgb(255, 255, 255);
            overflow-x: hidden;
        }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

        /* --- ANIMATIONS --- */
        .reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
        .reveal.active { opacity: 1; transform: translateY(0); }

        /* --- HERO --- */
        .hero-contact {
            padding: 125px 0 20px;
            text-align: center;
        }
        .hero-contact h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); color: var(--yellow); margin-bottom: 20px; }

        /* --- SECTION CONTACT GRID --- */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            padding-bottom: 60px;
        }

        /* --- FORMULAIRE --- */
        .contact-form-container {
            padding: 10px;
        }
        .form-group { margin-bottom: 20px; }
        label { display: block; margin-bottom: 8px; margin-left: 5px; color: var(--primary-blue); font-weight: 500; }
        input, select, textarea {
            width: 100%;
            padding: 12px 15px;
            border-radius: 12px;
            border: 1px solid rgb(255, 217, 0);
            background: rgba(255, 255, 255);
            color: rgb(49, 56, 88);
            font-size: 0.8rem;
            transition: 0.3s;
        }
        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: var(--yellow);
        }
        .btn-submit {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, var(--yellow), var(--orange));
            color: var(--primary-blue);
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: 0.3s;
            margin-top: 10px;
        }
        .btn-submit:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255, 165, 0, 0.3); }

        /* --- COORDONNÉES --- */
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
            justify-content: center;
        }
        .info-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 25px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            gap: 20px;
            transition: 0.3s;
            border: 1px solid rgba(255,255,255,0.05);
        }
        .info-card:hover { transform: translateX(10px); background: rgba(255, 255, 255, 0.1); border-color: var(--yellow); }
        .info-icon { font-size: 2rem; color: var(--yellow); }
        .info-details h3 { font-size: 1.1rem; color: var(--yellow); margin-bottom: 5px; }
        .info-details p { color: #cbd5e1; }


        .carousel-section {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 20px;
    padding-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

/* Overlay pour assombrir */
.carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
    rgba(30, 58, 138, 0.25),
    rgba(30, 58, 138, 0.4)
    );
    pointer-events: none;
    z-index: 2;
}

/* Contenu texte - Centré */
.carousel-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 20px;
    max-width: 90%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Titre principal avec animation - POLICES RÉDUITES */
.carousel-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: bold;
    margin-bottom: 15px;
    color: #FFD700;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
    animation: fadeInDown 1.2s ease-out;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.2;
}

/* Sous-titre avec animation - POLICES RÉDUITES */
.carousel-subtitle {
    font-size: clamp(1rem, 2vw, 1.4rem);
    margin-bottom: 25px;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1.2s ease-out 0.3s backwards;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

/* Ligne décorative avec animation */
.carousel-divider {
    width: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, #FFD700, #FFA500, #FFD700, transparent);
    margin: 0 auto;
    border-radius: 2px;
    animation: expandWidth 1.5s ease-out 0.6s forwards;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 200px;
    }
}

/* Responsive - Tablettes */
@media (max-width: 1024px) {
    .carousel-section {
        height: 180px;
    }
    
    .carousel-title {
        font-size: clamp(1.5rem, 3.0vw, 2.3rem);
        letter-spacing: 1px;
    }
    
    .carousel-subtitle {
        font-size: clamp(0.95rem, 1.8vw, 1.2rem);
    }

    .contact p {font-size: 0.8rem;}
    .contact h2 {font-size: 1.5rem;}
    label { margin-bottom: 5px; font-size: 0.84rem; }
    
    @keyframes expandWidth {
        to {
            width: 180px;
        }
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .carousel-section {
        height: 180px;
    }
    
    .carousel-title {
        font-size: clamp(1.3rem, 4vw, 1.8rem);
        letter-spacing: 0.5px;
        margin-bottom: 12px;
    }
    
    .carousel-subtitle {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        margin-bottom: 20px;
    }
    
    .carousel-divider {
        height: 2px;
    }
    
    @keyframes expandWidth {
        to {
            width: 150px;
        }
    }

    .contact p {font-size: 0.8rem;}
    .contact h2 {font-size: 1.5rem;}
    label { margin-bottom: 5px; font-size: 0.84rem; }
}

/* Responsive - Petit Mobile */
@media (max-width: 480px) {
    .carousel-section {
        height: 180px;
    }
    
    .carousel-title {
        font-size: 1.0rem;
        letter-spacing: 0.3px;
        margin-bottom: 10px;
    }
    
    .carousel-subtitle {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    @keyframes expandWidth {
        to {
            width: 120px;
        }
    }

    .contact p {font-size: 0.8rem;}
    .contact h2 {font-size: 1.5rem;}
    label { margin-bottom: 5px; font-size: 0.84rem; }
}

/* Responsive - Très petit écran */
@media (max-width: 360px) {
    .carousel-section {
        height: 180px;
    }
    
    .carousel-title {
        font-size: 1.0rem;
    }
    
    .carousel-subtitle {
        font-size: 0.8rem;
    }
    
    @keyframes expandWidth {
        to {
            width: 100px;
        }
    }

    
    .contact p {font-size: 0.8rem;}
    .contact h2 {font-size: 1.5rem;}
    label { margin-bottom: 5px; font-size: 0.84rem; }
}