/* =========================================
   CONTACT US PAGE
   Reuses .sd2-header (banner) from
   service-detail2.css, and .cform-header/
   .cform-body/.cf-group/.cf-submit (the proven
   contact form fields) from style.css. This file
   covers what's unique here: the info card, map,
   and the two-column layout.
   ========================================= */

.cu-section {
    padding: 90px 0 110px;
    background: var(--offwhite);
}

.cu-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 32px;
    align-items: start;
}

/* ---- INFO CARD ---- */
.cu-info-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--sh);
}

.cu-card-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 24px;
}

.cu-facts {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
}

.cu-fact {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-decoration: none;
    color: inherit;
}

.cu-fact-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--blue-lg);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--t);
}

a.cu-fact:hover .cu-fact-icon {
    background: var(--blue);
    color: #fff;
}

.cu-fact-icon svg {
    width: 19px;
    height: 19px;
}

.cu-fact-label {
    display: block;
    font-size: 0.75rem;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 2px;
}

.cu-fact-val {
    display: block;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.5;
}

.cu-fact-sub {
    display: block;
    font-size: 0.85rem;
    color: var(--grey);
    margin-top: 2px;
}

.cu-socials {
    display: flex;
    gap: 10px;
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.cu-socials a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--offwhite);
    border: 1px solid var(--border);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--t);
}

.cu-socials a:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

.cu-socials svg {
    width: 18px;
    height: 18px;
}

.cu-map {
    width: 100%;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
}

/* ---- FORM CARD ---- */
.cu-form-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--sh);
    scroll-margin-top: 100px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    .cu-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .cu-section {
        padding: 60px 0 70px;
    }

    .cu-info-card {
        padding: 28px 24px;
    }
}
