/* ==========================================================================
   Styles pour la page Contact
   ========================================================================== */

.contact-layout {
    display: flex;
    gap: 5rem;
    margin-top: 3rem;
    margin-bottom: 5rem;
}

.contact-layout__left,
.contact-layout__right {
    flex: 1;
}

.contact-title {
    text-align: left;
    color: var(--color-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-subtitle {
    color: black;
    font-size: 1.2rem;
    font-weight: 600; /* h2 est devenu h3, on garde le poids */
    text-align: left;
    margin-bottom: 1rem;
}

.contact-intro p {
    line-height: 1.6;
}

/* --- Styles du Formulaire --- */
.form-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.form-section-title {
    color: black;
    font-size: 1.2rem;
    font-weight: 600; /* h2 est devenu h3, on garde le poids */
    text-align: left;
    margin-bottom: 0;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-weight: 600;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 1rem;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999;
    font-size: 0.9rem;
}

.form-actions {
    margin-top: 1rem;
    text-align: left;
}