/* ========================================= */
/* PAGE CONTACT                              */
/* ========================================= */

.page-contact {
    padding: 32px 64px 64px 64px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.contact-container {
    display: flex;
    gap: 64px;
    align-items: flex-start;
    margin-top: 24px;
}

/* --- Colonne de gauche (Textes et Réseaux) --- */
.contact-infos {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-infos h1 {
    text-align: left;
    margin-top: 0;
    margin-bottom: 24px;
}

.contact-accroche {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 40px;
}

.contact-localisation {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0A332F;
    margin-bottom: 48px;
}

.contact-socials h3 {
    font-size: 1.3rem;
    color: #0A332F;
    margin-top: 0;
    margin-bottom: 24px;
}

.socials-liens {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* --- Colonne de droite (Formulaire) --- */
.contact-form-wrapper {
    flex: 1;
    width: 100%;
}

form {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #9cc97f 0%, #90B7BF 100%);
    padding: 40px 48px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    color: #0A332F;
}

.form_elt {
    display: flex;
    flex-direction: column;
}

input[type="text"],
input[type="email"],
textarea {
    padding: 16px 20px;
    border: none;
    border-radius: 12px;
    font-family: 'Urbanist', sans-serif;
    font-size: 1rem;
    margin-bottom: 24px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(10, 51, 47, 0.2);
}

label {
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    padding-top: 24px;
}

.mention-obligatoire {
    font-size: 0.85rem;
    color: #0A332F;
    font-style: italic;
    opacity: 0.8;
}

/* --- Responsive Mobile --- */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        gap: 48px;
    }
    .page-contact {
        padding: 24px;
    }
    form {
        padding: 32px 24px;
    }
}