/* ============================= */
/*   PAGE DE CONTACT – HUMAN FIRST EUROPE   */
/* ============================= */

/* Fond blanc propre pour la section formulaire */
.contact-section {
    padding: 3rem 0;
    background-color: #ffffff;
}

/* Conteneur centré du formulaire */
.contact-wrapper {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

@media (max-width: 900px) {
    .contact-wrapper {
        max-width: 100%;
        padding: 1rem;
    }
}

/* Titres & intro */
.contact-wrapper h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0b1f33;
}

.form-intro {
    color: #444;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: #0b1f33;
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #c8d3df;
    outline: none;
    box-sizing: border-box;
    background: #f9fafb;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #8c9aac;
    font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #133b5c;
    box-shadow: 0 0 0 2px rgba(19, 59, 92, 0.15);
    background: #fff;
}

textarea {
    min-height: 160px;
    resize: vertical;
}

/* Qualité */
.qualite-group p {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #0b1f33;
}
.qualite-group label { margin-right: 1.5rem; font-weight: 500; color: #333; }
.qualite-group input[type="checkbox"] { margin-right: 0.35rem; }

/* Alertes */
.alert {
    padding: 1rem 1.2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 15px;
    line-height: 1.5;
}
.alert-success { background-color: #e8f7ef; border-left: 4px solid #2bb673; color: #146b3a; }
.alert-error   { background-color: #fde8e8; border-left: 4px solid #e53e3e; color: #9b2c2c; }

/* Bouton */
.btn-submit {
    background-color: #0b1f33;
    color: #fff;
    border: none;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: fit-content;
    transition: 0.25s ease-in-out;
}
.btn-submit:hover { background-color: #14395a; }

/* Hero */
.hero-contact .hero-content h1 { font-size: 32px; font-weight: 700; }
.hero-contact .hero-content p  { font-size: 17px; max-width: 700px; margin: 1rem auto; line-height: 1.6; }
