/* Contact page — built from the redesign components (cover-card, section-head
   from main.css). Only contact-specific bits live here. */

/* Office block (icon + address next to the map) — framed card matching the
   redesign .cover-card look, stretched to the map's height. */
.offices .office {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border: 1px solid #eef0f3;
    border-radius: 14px;
    padding: 40px 28px;
    box-shadow: 0 16px 40px rgba(15, 45, 70, 0.12);
}

.offices .office .office-icon {
    display: block;
    font-size: 44px;
    color: var(--evo-blue);
    margin-bottom: 16px;
}

.offices .office h3 {
    margin-bottom: 10px;
}

.offices .office p {
    margin: 0;
}

/* Embedded maps */
.contact-map {
    display: block;
    width: 100%;
    height: 320px;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 16px 40px rgba(15, 45, 70, 0.12);
}

/* Billing — grey band with a clean white "business card" on top. */
.billing {
    background-color: #f1f1f1;
}

.billing-card {
    max-width: 720px;
    margin: 0 auto;
    background-color: #ffffff;
    border: 1px solid #e3ebf6;
    border-radius: 14px;
    padding: 40px 32px;
    box-shadow: 0 24px 60px rgba(15, 45, 70, 0.18);
    text-align: center;
}

.billing-company {
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--evo-navy);
    margin: 0 0 6px;
}

.billing-address {
    margin: 0 0 28px;
    color: var(--evo-text, #55606e);
}

/* legal identifiers — a clean inline row split by thin dividers */
.billing-facts {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #eef0f3;
}

.billing-facts .fact {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 4px 34px;
    border-left: 1px solid #eef0f3;
}

.billing-facts .fact:first-child {
    border-left: 0;
}

.billing-facts .label {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 600;
    color: #8a94a3;
}

.billing-facts .value {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--evo-navy);
}

@media (max-width: 575px) {
    .billing-facts .fact {
        border-left: 0;
        padding: 10px 0;
    }
}
