/* ============================
   KONTAK KAMI PAGE
   ============================ */
.page-kontak {
    background: var(--color-page-bg);
    padding-top: 150px;
    padding-bottom: 80px;
}

/* ============================
   HUBUNGI KAMI SECTION
   ============================ */
.kontak-form-section {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 80px;
}

.kontak-form-left,
.kontak-form-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.kontak-form-left .divider-vertical {
    display: none;
}

.kontak-form-divider {
    width: 100%;
    height: 0;
    border: none;
    border-top: 1px solid #D2D2D2;
    margin: 24px 0;
}

.kontak-form-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: flex;
    gap: 24px;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-group label {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: #03225D;
    padding-top: 10px;
}

/* ============================
   INFORMASI KONTAK SECTION
   ============================ */
.kontak-info-section {
    text-align: center;
    margin-bottom: 80px;
}

.kontak-info-header {
    margin-bottom: 40px;
}

.kontak-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.kontak-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px;
    border-radius: 32px;
    background: #03225D;
    height: 240px;
}

.kontak-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 35px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kontak-card-icon img {
    width: 32px;
    height: 32px;
    display: block;
}

.kontak-card-text {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
}

.kontak-card-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
}

.kontak-card a {
    color: #FFFFFF;
    text-decoration: none;
}

.kontak-card a:hover {
    text-decoration: underline;
}

/* ============================
   LOKASI KAMI SECTION
   ============================ */
.kontak-lokasi-section {
    display: flex;
    gap: 40px;
    align-items: center;
}

.kontak-lokasi-map {
    flex-shrink: 0;
    width: 606px;
    height: 360px;
    border-radius: 32px;
    overflow: hidden;
}

.kontak-lokasi-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.kontak-lokasi-right {
    flex: 1;
}

.kontak-lokasi-right .divider-vertical {
    margin: 16px 0;
    height: 40px;
}

.kontak-lokasi-right .kontak-form-divider {
    width: 100%;
}

.lokasi-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lokasi-item {
    display: flex;
    gap: 12px;
}

.lokasi-item img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: block;
}

.lokasi-item-content {
    display: flex;
    flex-direction: column;
}

.lokasi-item-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: var(--color-text);
}

.lokasi-item-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: var(--color-text);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 991px) {
    .kontak-form-section {
        flex-direction: column;
    }

    .kontak-form-left,
    .kontak-form-right {
        width: 100%;
    }

    .kontak-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .kontak-lokasi-section {
        flex-direction: column;
    }

    .kontak-lokasi-map,
    .kontak-lokasi-right {
        width: 100%;
    }

    .kontak-lokasi-map {
        height: 300px;
    }
}

@media (max-width: 575px) {
    .form-row {
        flex-direction: column;
    }

    .kontak-cards {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
        line-height: 36px;
    }

    .kontak-lokasi-map {
        height: 240px;
    }
}