.page-hero {
    background: linear-gradient(135deg, var(--color-beige) 0%, #e8f0e9 100%);
    padding: 6.5rem 0 4rem;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '💬';
    position: absolute;
    font-size: 16rem;
    opacity: .05;
    right: -2rem;
    bottom: -3rem;
    line-height: 1;
}

.contact-form-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(0,0,0,.09);
    padding: 2.5rem 2.25rem;
}
.form-label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: .4rem;
}
.form-control, .form-select {
    border-color: #e5e5e5;
    border-radius: 12px;
    padding: .7rem 1rem;
    font-size: .92rem;
    transition: border-color .2s, box-shadow .2s;
}
.form-control:focus, .form-select:focus {
    border-color: var(--color-sage);
    box-shadow: 0 0 0 3px rgba(122,158,126,.15);
}
.form-control.is-invalid { border-color: #dc3545; }
.invalid-feedback { font-size: .78rem; }

textarea.form-control { resize: vertical; min-height: 148px; }

/* Sujet chips */
.subject-chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.subject-chip {
    border: 1.5px solid #e0e0e0;
    border-radius: 20px;
    padding: .3rem .95rem;
    font-size: .82rem;
    font-weight: 500;
    color: var(--color-muted);
    cursor: pointer;
    transition: all .18s;
    background: #fff;
    user-select: none;
}
.subject-chip:hover  { border-color: var(--color-sage); color: var(--color-sage); }
.subject-chip.active { border-color: var(--color-sage); background: var(--color-sage); color: #fff; }

/* Fichier joint */
.file-drop {
    border: 2px dashed #ddd;
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    cursor: pointer;
    transition: border-color .2s, background .2s;
    font-size: .85rem;
    color: var(--color-muted);
}
.file-drop:hover, .file-drop.drag-over { border-color: var(--color-sage); background: #f0f6f1; }
#file-list { margin-top: .6rem; font-size: .8rem; }
.file-tag {
    display: inline-flex; align-items: center; gap: .35rem;
    background: var(--color-beige);
    border-radius: 20px;
    padding: .2rem .65rem;
    margin: .15rem;
    font-size: .78rem;
    font-weight: 500;
}
.file-tag button { background: none; border: none; color: #aaa; font-size: .75rem; cursor: pointer; padding: 0; line-height: 1; }

/* ── Infos contact ── */
.contact-info-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    padding: 2rem 1.75rem;
    height: 100%;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f5f5f5;
}
.contact-info-item:last-of-type { border-bottom: none; }
.ci-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: var(--color-beige);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.ci-label { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .4px; color: var(--color-muted); }
.ci-value { font-size: .92rem; font-weight: 600; color: var(--color-dark); margin-top: .1rem; }
.ci-sub   { font-size: .78rem; color: var(--color-muted); }

/* Horaires */
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .4rem .5rem; font-size: .82rem; }
.hours-day { color: var(--color-muted); font-weight: 500; }
.hours-time { color: var(--color-dark); font-weight: 600; }
.hours-closed { color: #ccc; }

/* FAQ rapide */
.faq-quick { background: var(--color-beige); border-radius: 16px; padding: 1.5rem; margin-top: 1.5rem; }
.faq-quick-item { display: flex; align-items: flex-start; gap: .7rem; padding: .6rem 0; border-bottom: 1px solid rgba(0,0,0,.06); font-size: .88rem; cursor: pointer; }
.faq-quick-item:last-child { border-bottom: none; }
.faq-quick-item:hover .faq-link { color: var(--color-terra); }
.faq-link { color: var(--color-sage); font-weight: 600; transition: color .2s; }

/* Réseaux sociaux */
.social-btn {
    display: flex; align-items: center; gap: .7rem;
    padding: .7rem 1rem;
    border-radius: 12px;
    font-size: .88rem; font-weight: 600;
    text-decoration: none;
    transition: opacity .2s, transform .2s;
    color: #fff;
}
.social-btn:hover { opacity: .88; transform: translateY(-2px); color: #fff; }
.social-btn.fb   { background: #1877f2; }
.social-btn.ig   { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-btn.tw   { background: #000; }

/* Success overlay */
#success-overlay {
    text-align: center;
    padding: 2rem 1rem;
    animation: fadeIn .4s ease;
}
.success-check { font-size: 4rem; animation: checkPop .5s cubic-bezier(.34,1.56,.64,1) .1s both; }
@keyframes checkPop { from{opacity:0;transform:scale(.5)} to{opacity:1;transform:scale(1)} }
@keyframes fadeIn   { from{opacity:0} to{opacity:1} }

/* Compteur caractères */
#char-counter { font-size: .75rem; color: var(--color-muted); text-align: right; margin-top: .25rem; }
#char-counter.warn  { color: #fd7e14; }
#char-counter.limit { color: #dc3545; }

/* Satisfaction rapide */
.mood-btns { display: flex; gap: .75rem; }
.mood-btn { font-size: 1.6rem; cursor: pointer; filter: grayscale(1) opacity(.4); transition: all .18s; background:none; border:none; padding:0; }
.mood-btn.active, .mood-btn:hover { filter: none; transform: scale(1.2); }