/* Style pour la section "Zone d'intervention" */
.intervention-section {
    width: 80%;
    max-width: 1000px;
    margin: 100px auto;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.intervention-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.intervention-map {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 100px;
    /* marge à droite sur desktop */
}

.intervention-title {
    color: #004ee3;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.intervention-description {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.intervention-description strong {
    color: #004ee3;
}

.intervention-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #555;
}

.intervention-info i {
    color: #004ee3;
    margin-right: 10px;
    font-size: 1.2rem;
}

.intervention-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    background-color: #004ee3;
    color: white;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

/* Carte (image ou iframe) */
.map-container img,
.map-container iframe {
    width: 100%;
    height: auto;
    transform: scale(1.5) translateX(-50px);
    /* zoom plus grand sur desktop */
    transform-origin: center;
    border-radius: 15px;
    max-width: 100%;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 768px) {
    .intervention-section {
        width: 95%;
        margin: 60px auto;
        flex-direction: column;
        /* texte + carte empilés */
        text-align: center;
        gap: 30px;
    }

    .intervention-content {
        text-align: center;
        /* centrer le texte */
    }

    .intervention-title {
        font-size: 2rem;
        /* réduire la taille */
    }

    .intervention-description {
        font-size: 1rem;
    }

    .intervention-info {
        justify-content: center;
        /* icône + texte centrés */
    }

    .intervention-btn {
        width: 100%;
        /* bouton prend toute la largeur */
        max-width: 280px;
        margin: 0 auto;
    }

    .intervention-map {
        margin-right: 0;
        /* plus de marge sur mobile */
    }

    /* Carte ajustée pour mobile */
    .map-container img,
    .map-container iframe {
        margin-bottom: 40px;
        transform: none;
        transform: scale(1.1); 
        width: 100%;
        max-height: 400px;
        height: auto;
        border-radius: 10px;
    }
}