/* Section Nous Contacter */
.contact-section {
    background-color: #f4f4f4;
    padding: 1rem 0;
    margin-bottom: 0;
}

.contact-form {
    max-width: 450px;
    margin: 1rem auto;
    padding-bottom: 1rem;
}

.form-row {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

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

.form-group label {
    font-family: "Assistant", sans-serif;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: black;
    font-size: 0.8rem;
}

.form-group input,
.form-group textarea {
    font-family: "Assistant", sans-serif;
    padding: 0.35rem;
    border: 1px solid #cbbca0;
    border-radius: 3px;
    font-size: 0.85rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b3a580;
}

.form-group textarea {
    resize: vertical;
    min-height: 60px;
    max-height: 120px;
}

.form-submit {
    text-align: center;
    margin-top: 1rem;
}

.submit-button {
    background-color: #cbbca0;
    color: white;
    font-family: "Assistant", sans-serif;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 0.85rem;
}

.submit-button:hover {
    background-color: #b3a580;
}

/* Message de confirmation */
.form-message {
    text-align: center;
    margin-top: 0.5rem;
    padding: 0.5rem;
    border-radius: 3px;
    font-family: "Assistant", sans-serif;
    font-size: 0.8rem;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .contact-form {
        padding: 0 0.75rem;
        margin: 0.75rem auto;
    }

    .submit-button {
        width: 100%;
        padding: 0.4rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 0.75rem 0;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.3rem;
    }
}
