/* ===== SECTION CONTACT ===== */
.contact-section {
    padding: 50px 20px 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-wrapper {
    display: flex;
    gap: 0;
    align-items: stretch;
}

/* ===== FORMULAIRE ===== */
.contact-form {
    flex: 1;
    padding-right: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 30px;
}

.form-row .form-field {
    flex: 1;
}

.form-field label {
    display: block;
    font-family: 'Mukta Mahee', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--noir);
    margin-bottom: 6px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid #ccc;
    border-radius: 0;
    font-family: 'Mukta Mahee', sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
    color: var(--noir);
    background-color: var(--blanc);
    transition: border-color 0.3s ease;
    outline: none;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--vert-fonce);
}

.form-field textarea {
    resize: vertical;
    min-height: 180px;
}

.contact-submit {
    align-self: flex-start;
    padding: 10px 35px;
    background-color: var(--vert-fonce);
    color: var(--blanc);
    border: none;
    font-family: 'Mukta Mahee', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.contact-submit:hover {
    opacity: 0.85;
}

/* ===== INFOS CONTACT ===== */
.contact-info {
    flex: 0 0 300px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.contact-info-separator {
    width: 1.5px;
    align-self: stretch;
    background-color: var(--vert-clair);
    opacity: 0.7;
}

.contact-info-content {
    flex: 1;
}

.contact-info-content h1 {
    font-family: 'Optima', 'Mukta Mahee', sans-serif;
    color: var(--vert-fonce);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.contact-info-content p {
    font-family: 'Mukta Mahee', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--noir);
    line-height: 1.6;
}

.contact-name {
    margin-bottom: 2px;
}

.contact-phone {
    margin-top: 15px;
}

.contact-email {
    margin-top: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .contact-form {
        padding-right: 0;
    }

    .contact-info {
        flex: 0 0 auto;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-info-separator {
        width: 60px;
        height: 1.5px;
        align-self: auto;
    }

    .contact-info-content h1 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .contact-submit {
        width: 100%;
        text-align: center;
    }
}
