/* ============================================================
   Contact Us page  (page-contact-us.php)
   Follows the hero + white-panel pattern (welfare / pesan-pesan).
   ============================================================ */

.contact-page {
    background: #EAF6EE;
    min-height: 100vh;
}

/* Hero handled by .pa-page-hero — see home-v2.css */

/* ── BODY / WHITE CARD ──────────────────────────────────────── */

.contact-page__body {
    position: relative;
    margin-top: -10rem;
    padding-bottom: 4.5rem;
}

.contact-page__panel {
    background: #ffffff;
    border-radius: 28px;
    padding: 4.8rem;
}

.contact-page__title {
    text-align: center;
    color: #1f2937;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 1.6rem;
    font-family: var(--pa-font-headline) !important;
}

.contact-page__title-highlight {
    color: #049551;
}

.contact-page__intro {
    text-align: center;
    color: #333;
    font-size: 1.8rem;
    line-height: 1.6;
    margin: 0 auto 4rem;
    max-width: 760px;
}

/* ── LOCATIONS LIST ────────────────────────────────────────── */

.contact-page__locations {
    display: flex;
    flex-direction: column;
    gap: 3.2rem;
}

.contact-loc {
    background: #F1F8F3;
    border-radius: 24px;
    padding: 3.2rem;
    scroll-margin-top: 90px;
}

.contact-loc__name {
    color: #0a2f1f;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1.4rem;
    font-family: var(--pa-font-headline, inherit);
}

.contact-loc__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem;
    align-items: stretch;
}

/* ── LEFT COLUMN (title + info) ────────────────────────────── */

.contact-loc__main {
    display: flex;
    flex-direction: column;
}

/* ── INFO COLUMN ───────────────────────────────────────────── */

.contact-loc__info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-loc__row {
    display: flex;
    gap: .5rem;
    align-items: stretch;
}

.contact-loc__icon {
    flex: 0 0 auto;
    width: 40px;
    height: 30px;
    border-radius: 12px;
    color: #049551;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-loc__icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.contact-loc__row-text {
    flex: 1 1 auto;
    min-width: 0;
}

.contact-loc__label {
    color: #333;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin: 0 0 0.4rem;
}

.contact-loc__value {
    color: #333;
    font-size: 1.6rem;
    line-height: 1.55;
    margin: 0 0 0.4rem;
}

.contact-loc__value:last-child {
    margin-bottom: 0;
}

.contact-loc__value a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.15s ease;
}

.contact-loc__value a:hover {
    color: var(--pa-primary) !important;
}

.contact-loc__value--whatsapp a {
    color: #333 !important;
}

.contact-loc__whatsapp-tag {
    color: #333;
    font-size: 1.6rem;
    margin-left: 0.4rem;
}

/* ── MAP ───────────────────────────────────────────────────── */

.contact-loc__map {
    position: relative;
    width: 100%;
    min-height: 280px;
    border-radius: 18px;
    overflow: hidden;
    background: #E6F0E9;
}

.contact-loc__map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ── SOCIALS ───────────────────────────────────────────────── */

.contact-page__socials {
    margin-top: 4rem;
    text-align: center;
}

.contact-page__socials-label {
    color: #6b7280;
    font-size: 1.4rem;
    margin: 0 0 1.2rem;
}

.contact-page__socials-row {
    display: inline-flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-page__social-link {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: #F1F8F3;
    color: #049551;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, color 0.15s ease;
}

.contact-page__social-link svg {
    width: 20px;
    height: 20px;
}

.contact-page__social-link:hover {
    background: #049551;
    color: #ffffff;
}

/* ── MOBILE (≤640px) ───────────────────────────────────────── */

@media (max-width: 1230px) {
    .contact-loc__grid {
        grid-template-columns: 1fr;
    }

    .contact-page__body {
        margin-top: -2rem;
        padding-bottom: 3rem;
    }

    .contact-loc__row {
        align-items: flex-start;
        flex-direction: row;
        justify-content: flex-start;
        gap: 1rem;
    }

    .contact-page__panel {
        padding: 2.4rem;
        border-radius: 28px;
    }

    .contact-page__title {
        font-size: 2.2rem;
    }

    .contact-page__intro {
        font-size: 1.4rem;
        margin-bottom: 2.4rem;
    }

    .contact-loc {
        padding: 1.8rem 1.4rem;
        border-radius: 18px;
    }

    .contact-loc__name {
        font-size: 1.8rem;
        margin-bottom: 1.6rem;
        text-align: center;
    }

    .contact-loc__icon {
        width: 24px;
        height: 24px;
    }

    .contact-loc__icon svg {
        width: 18px;
        height: 18px;
    }

    .contact-loc__value,
    .contact-loc__value a {
        font-size: 1.5rem;
    }

    .contact-loc__map {
        min-height: 220px;
        border-radius: 14px;
    }
}