/* Supprime les marges/paddings globaux du body pour la page contact */
.contact-page, body {
    margin: 0;
    padding: 0;
}

/* Bannière en horizontal, couvre toute la largeur et proche du Hider */
.contact-banner {
    width: 100vw; /* largeur complète de la fenêtre */
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw; /* force l'image à dépasser tout padding parent */
    margin-right: -50vw;
    height: 250px; /* hauteur fixe raisonnable */
    overflow: hidden;
}

.contact-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* remplit entièrement la bannière */
    display: block;
}

/* Titre Contact Us */
.contact-title {
    text-align: center;
    font-weight: 900; /* RENFORCÉ LE GRAS pour effet rembourré */
    font-size: 32px;
    margin: 20px 0 40px 0;
    letter-spacing: 1px; /* effet rembourré */
    font-family: Arial, Helvetica, sans-serif;
}

/* Formulaire avec fond blanc renforcé et coins arrondis */
.contact-form {
    max-width: 800px;
    margin: 40px auto;
    background-color: #ffffff; /* renforce le blanc */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.form-row {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-row label {
    font-weight: bold;
    margin-bottom: 5px;
}

.form-row input,
.form-row textarea {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
    background-color: #fff;
}

.send-btn {
    display: inline-block;
    background-color: #000;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.send-btn:hover {
    background-color: #333;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .contact-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .contact-banner {
        height: 180px; /* réduit sur mobile */
    }
    .contact-form {
        padding: 20px;
    }
}