.contact-container {
    max-width: 1100px;
    margin: 6rem auto 4rem;
    padding: 0 2rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

/* ── Infos gauche ──────────────────────────────────────────── */
.contact-info h2 {
    font-size: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #444;
    font-size: 0.9rem;
}

.contact-item svg {
    color: #007B5A;
    flex-shrink: 0;
}

.contact-item a {
    color: #444;
    text-decoration: none;
}

.contact-item a:hover {
    color: #007B5A;
    text-decoration: underline;
}

/* ── Réseaux sociaux ───────────────────────────────────────── */
.contact-socials {
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
    margin-top: 0.5rem;
}

.contact-socials__label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #999;
    margin-bottom: 0.85rem;
}

.contact-socials__links {
    display: flex;
    gap: 0.6rem;
}

.contact-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #f0f0f0;
    color: #444;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.contact-social-btn:hover {
    background: #007B5A;
    color: white;
    transform: translateY(-2px);
}

/* ── Formulaire ────────────────────────────────────────────── */
.contact-form-wrapper {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    border: 1px solid #e5e7e9;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    font-weight: 600;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.char-counter {
    font-size: 0.78rem;
    font-weight: 400;
    color: #888;
    text-transform: none;
    letter-spacing: 0;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1.2rem;
    border: 2px solid #e5e7e9;
    border-radius: 10px;
    font-size: 0.95rem;
    outline: none;
    background: #f8f9fa;
    color: #2c3e50;
    transition: all 0.3s ease;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #007B5A;
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 123, 90, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%23006644'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-color: #f8f9fa;
    cursor: pointer;
}

/* ── Bouton submit ─────────────────────────────────────────── */
.btn-contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1rem 2rem;
    background: #004d33;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-contact-submit:hover:not(:disabled) {
    background: #006644;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 68, 0.25);
}

.btn-contact-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

/* ── Message de succès ─────────────────────────────────────── */
.contact-success {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    gap: 1rem;
}

.contact-success h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-success p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info h2 {
        font-size: 1.3rem;
        display: block;
        margin: 4rem auto 2rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}
