/* =====================================================================
   contact.css — Styles spécifiques à la page Contact & Devis
   ===================================================================== */

/* ── Onglets type de demande ── */
.type-tab {
    padding: .6rem 1.35rem;
    border: 1.5px solid #d6d0c8;
    border-radius: 2rem;
    background: #fff;
    color: #5a5a5a;
    font-size: .85rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: background .15s, border-color .15s, color .15s, box-shadow .15s;
    white-space: nowrap;
}
.type-tab:hover {
    border-color: #a0a0a0;
    color: #1a1a1a;
}
.type-tab--on {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .18);
}
.type-tab--on:hover {
    border-color: #1a1a1a;
    color: #fff;
}
@media (min-width: 768px) {
    .mobile-select-row { display: none !important; }
}
.type-select {
    max-width: 100%;
    padding: .4rem 2rem .4rem .85rem;
    border: 1.5px solid #d6d0c8;
    border-radius: 2rem;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%235a5a5a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right .75rem center;
    -webkit-appearance: none;
    appearance: none;
    color: #1a1a1a;
    font-size: .8rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    flex-shrink: 0;
}
