/* ═══════════════════════════════════════════════════
   PAGE CONTACT — Le Domaine de Négan
═══════════════════════════════════════════════════ */

.negan-page-contact { background: #F9E9E2; }

/* ─── Section principale ─── */
.contact-section {
    background: #FAF8F4;
    margin: 0 24px 28px;
    border-radius: 20px;
    border: 1px solid #E8E4DF;
    box-shadow: 0 4px 24px rgba(160,150,140,0.09);
    overflow: hidden;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    min-height: 600px;
}
@media (max-width: 860px) {
    .contact-grid { grid-template-columns: 1fr; }
}

/* ─── Colonne infos (gauche) ─── */
.contact-infos {
    background: #F0E8E2;
    padding: 56px 44px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-infos__label {
    font-family: 'Bolina', cursive;
    font-size: 1.1rem;
    color: #9a8070;
    margin: 0;
}
.contact-infos__title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 700;
    color: #3a2c24;
    line-height: 1.2;
    margin: 0 0 4px;
}
.contact-infos__desc {
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: #6b5448;
    line-height: 1.75;
    margin: 0 0 8px;
}

/* ─── Cards coordonnées ─── */
.contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid #EBE0D9;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(160,130,110,0.12);
    border-color: #C4717A;
}
.contact-card--location { cursor: default; }
.contact-card--location:hover { transform: none; box-shadow: none; border-color: #EBE0D9; }

.contact-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-card--tel .contact-card__icon     { background: #FEF0F0; color: #C4717A; }
.contact-card--whatsapp .contact-card__icon { background: #E8F8EE; color: #25D366; }
.contact-card--email .contact-card__icon    { background: #EEF4FF; color: #4A90E2; }
.contact-card--location .contact-card__icon { background: #FFF6E8; color: #E8933A; }

.contact-card__label {
    display: block;
    font-family: 'Nunito', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    color: #9a8070;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 3px;
}
.contact-card__value {
    display: block;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #3a2c24;
    line-height: 1.4;
}

/* ─── Réseaux sociaux ─── */
.contact-socials {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}
.contact-social {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1.5px solid #EBE0D9;
    background: #fff;
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #5a4640;
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.contact-social:hover { border-color: #C4717A; color: #C4717A; }

/* ─── Colonne formulaire (droite) ─── */
.contact-form-wrap {
    padding: 56px 48px;
    background: #FAF8F4;
}
@media (max-width: 640px) {
    .contact-form-wrap { padding: 36px 24px; }
    .contact-infos { padding: 40px 24px; }
}

/* ─── Formulaire ─── */
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 560px) { .contact-form__row { grid-template-columns: 1fr; } }

.contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.contact-form__field--full { grid-column: 1 / -1; }
.contact-form__field label {
    font-family: 'Nunito', sans-serif;
    font-size: 0.83rem;
    font-weight: 700;
    color: #7a6050;
}
.contact-form__field label span { color: #C4717A; }
.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
    font-family: 'Nunito', sans-serif;
    font-size: 0.93rem;
    color: #3a2c24;
    background: #fff;
    border: 1.5px solid #EBE0D9;
    border-radius: 10px;
    padding: 11px 14px;
    transition: border-color 0.15s, box-shadow 0.15s;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}
.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
    border-color: #C4717A;
    box-shadow: 0 0 0 3px rgba(196,113,122,0.12);
}
.contact-form__field textarea { resize: vertical; min-height: 140px; }

.contact-form__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 4px;
}
.contact-form__rgpd {
    font-family: 'Nunito', sans-serif;
    font-size: 0.75rem;
    color: #9a8070;
    line-height: 1.5;
    margin: 0;
    max-width: 340px;
}

/* ─── Bouton envoi ─── */
.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: #C4717A;
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.18s, transform 0.12s;
    white-space: nowrap;
}
.contact-btn:hover { background: #B8696E; }
.contact-btn:active { transform: scale(0.98); }

/* ─── Messages succès / erreur ─── */
.contact-success {
    text-align: center;
    padding: 48px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.contact-success h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.6rem;
    color: #2d9e6b;
    margin: 0;
}
.contact-success p {
    font-family: 'Nunito', sans-serif;
    color: #6b5448;
    margin: 0;
}
.contact-error {
    background: #FFF0F0;
    border: 1px solid #F0C0C0;
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 16px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    color: #C05060;
}

/* ─── Section FAQ ─── */
.contact-faq {
    background: #FBF2EE;
    margin: 0 24px 28px;
    border-radius: 20px;
    border: 1px solid #E8E4DF;
    box-shadow: 0 4px 24px rgba(160,150,140,0.09);
    padding: 48px 40px;
}
.contact-faq__title {
    font-family: 'Bolina', 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 400;
    color: #2C2C2C;
    letter-spacing: 0.01em;
    text-align: center;
    margin: 0 0 36px;
}
.contact-faq__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
@media (max-width: 640px) {
    .contact-faq__grid { grid-template-columns: 1fr; }
    .contact-faq { padding: 36px 24px; }
}
.contact-faq__item {
    background: #fff;
    border: 1px solid #EBE0D9;
    border-radius: 14px;
    padding: 22px 24px;
}
.contact-faq__item strong {
    display: block;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1rem;
    color: #3a2c24;
    margin-bottom: 8px;
}
.contact-faq__item p {
    font-family: 'Nunito', sans-serif;
    font-size: 0.88rem;
    color: #6b5448;
    line-height: 1.7;
    margin: 0;
}
