.background-image {
    width: 100%;
    height: 455px;
    object-fit: cover;      
    object-position: center; 
    display: block;
}

/* ================= SECTION CONTACT ================= */
.contact-agency {
    padding: 30px 0;
    background-color: #f5f6fa;
    font-family: 'Mulish', sans-serif;
}

.contact-agency h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 10px;
}

.contact-description {
    text-align: center;
    font-size: 18px;
    color: #1b1da2;
    margin-bottom: 60px;
}

/* ================= CONTENU ================= */
.contact-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* ================= INFOS CONTACT ================= */
.contact-info {
    flex: 1;
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    font-size: 22px;
    color: #1E3A8A;
    margin-right: 15px;
    margin-top: 4px;
}

.contact-item p {
    margin: 0;
    color: #1b1da2;
    font-size: 16px;
}

/* ================= FORMULAIRE ================= */
.contact-form {
    flex: 1.3;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.contact-form .form-control {
    border-radius: 8px;
    border: 1px solid #3f2281;
}

.contact-form .form-control:focus {
    border-color: #1E3A8A;
    box-shadow: 0 0 0 0.2rem rgba(30,58,138,0.15);
}

.contact-form label {
    color: #666;
    font-size: 14px;
}

/* ================= BOUTON ================= */
.contact-form .btn-primary {
    background-color: #ff0000;
    border-color: #ff0000;
    padding: 12px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    transition: background-color 0.3s, transform 0.2s;
}

.contact-form .btn-primary:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .contact-content {
        flex-direction: column;
    }

    .contact-form,
    .contact-info {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .contact-agency h2 {
        font-size: 28px;
    }

    .contact-description {
        font-size: 16px;
    }

    .contact-form {
        padding: 25px;
    }
}
