.kontak-page {
    width: min(1320px, 96vw);
    margin: 0 auto;
    padding: 0 0 40px;
}

.kontak-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    font-size: 12px;
    color: #7a8294;
    margin: 10px 0;
}
.kontak-breadcrumb i { font-size: 9px; color: #a0a8b8; }
.kontak-breadcrumb .current { color: var(--primary); font-weight: 700; }

.kontak-hero {
    position: relative;
    border-radius: 0 0 0 26px;
    overflow: hidden;
    min-height: 168px;
    padding: 26px 28px;
    background:
        linear-gradient(96deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.9) 42%, rgba(255,255,255,.55) 68%, rgba(255,255,255,.08) 94%),
        url("../images/hero.jpg") right center/cover no-repeat;
    border: 1px solid #eceff4;
}
.kontak-hero::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -90px;
    width: 210px;
    height: 210px;
    border-radius: 30px;
    transform: rotate(34deg);
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    z-index: 0;
    pointer-events: none;
}
.kontak-hero-inner { position: relative; z-index: 1; max-width: 640px; }
.kontak-hero h1 {
    margin: 0;
    font-size: clamp(28px, 1.1vw + 22px, 40px);
    color: #1a1f2b;
    font-weight: 800;
}
.kontak-hero h1 span { color: var(--primary); }
.kontak-hero p {
    margin: 10px 0 0;
    color: #40495d;
    line-height: 1.6;
    font-size: 15px;
}

.kontak-info-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.kontak-info-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px 16px;
    box-shadow: 0 4px 18px rgba(20, 24, 36, .04);
}
.kontak-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #fff2f3;
    color: var(--primary);
    display: grid;
    place-items: center;
    font-size: 16px;
    margin-bottom: 12px;
}
.kontak-info-card h3 {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 800;
    color: #1a1f2b;
}
.kontak-info-card p {
    margin: 0;
    font-size: 13px;
    color: #5c6578;
    line-height: 1.55;
}

.kontak-main-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: minmax(0, 500px) minmax(420px, 1fr);
    gap: 18px;
    align-items: start;
}

.kontak-main-grid > .kontak-card:first-child {
    padding: 18px 20px;
}

.kontak-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 4px 18px rgba(20, 24, 36, .04);
}

.kontak-side-stack {
    display: grid;
    gap: 16px;
    min-height: 100%;
}

.kontak-side-stack .kontak-card {
    padding: 24px;
}

.kontak-side-stack .kontak-card-title {
    margin-bottom: 16px;
    font-size: 18px;
}
.kontak-card-title {
    margin: 0 0 18px;
    font-size: 17px;
    font-weight: 800;
    color: #1a1f2b;
    position: relative;
    padding-bottom: 10px;
}
.kontak-card-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42px;
    height: 3px;
    border-radius: 999px;
    background: var(--primary);
}

.kontak-form { display: grid; gap: 12px; }
.kontak-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.kontak-field { display: grid; gap: 6px; }
.kontak-field label {
    font-size: 13px;
    font-weight: 700;
    color: #303a4f;
}
.kontak-field label span { color: var(--primary); }
.kontak-field input,
.kontak-field select,
.kontak-field textarea {
    width: 100%;
    border: 1px solid #e3e7ee;
    border-radius: 9px;
    padding: 10px 12px;
    font: inherit;
    font-size: 13px;
    color: #1a1f2b;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.kontak-field input:focus,
.kontak-field select:focus,
.kontak-field textarea:focus {
    outline: none;
    border-color: #efb8bb;
    box-shadow: 0 0 0 3px rgba(201, 16, 22, .08);
}
.kontak-field textarea {
    min-height: 96px;
    resize: vertical;
}

.kontak-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
}
.kontak-radio {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: #40495d;
    cursor: pointer;
}
.kontak-radio input {
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
    margin: 0;
}

.kontak-notice {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: #fff5f6;
    border: 1px solid #f0d5d8;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 12.5px;
    color: #6b4a4d;
    line-height: 1.55;
}
.kontak-notice i {
    color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.kontak-form-actions {
    display: flex;
    justify-content: flex-end;
}
.btn-kirim-pesan {
    border: 0;
    border-radius: 9px;
    background: var(--primary);
    color: #fff;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    padding: 11px 22px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background .2s ease;
}
.btn-kirim-pesan:hover { background: var(--primary-dark); }

.kontak-map-wrap {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e8ebf0;
    height: 300px;
    background: #f4f5f7;
}
.kontak-map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.kontak-map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #8a93a3;
    font-size: 13px;
    text-align: center;
    padding: 16px;
}

.kontak-map-placeholder i {
    font-size: 28px;
    opacity: 0.6;
}

.btn-maps {
    margin-top: 14px;
    width: 100%;
    height: 44px;
    border-radius: 9px;
    border: 1px solid #e3e7ee;
    background: #fff;
    color: #303a4f;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s ease;
}
.btn-maps:hover { background: #fafbfc; }

.kontak-social-intro {
    margin: 0 0 14px;
    font-size: 14px;
    color: #5c6578;
    line-height: 1.55;
}
.kontak-social-list { display: grid; gap: 10px; }
.kontak-social-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 13px 14px;
    border: 1px solid #eef0f3;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #303a4f;
    transition: background .2s ease;
}
.kontak-social-link:hover { background: #fafbfc; }
.kontak-social-link .left {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.kontak-social-link .left i {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: #fff2f3;
    color: var(--primary);
    display: grid;
    place-items: center;
    font-size: 15px;
}
.kontak-social-link > i:last-child {
    font-size: 11px;
    color: #a0a8b8;
}

.kontak-faq {
    margin-top: 28px;
}
.kontak-faq-header {
    text-align: center;
    margin-bottom: 18px;
}
.kontak-faq-header h2 {
    margin: 0;
    font-size: clamp(22px, .8vw + 18px, 28px);
    font-weight: 800;
    color: #1a1f2b;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}
.kontak-faq-header h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    border-radius: 999px;
    background: var(--primary);
}
.kontak-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
}
.kontak-faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}
.kontak-faq-trigger {
    width: 100%;
    border: 0;
    background: #fff;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font: inherit;
    text-align: left;
    cursor: pointer;
}
.kontak-faq-trigger span {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 700;
    color: #1a1f2b;
    line-height: 1.45;
}
.kontak-faq-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff2f3;
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.kontak-faq-trigger i {
    font-size: 12px;
    color: #9aa3b5;
    transition: transform .25s ease;
    flex-shrink: 0;
}
.kontak-faq-item.open .kontak-faq-trigger i { transform: rotate(180deg); }
.kontak-faq-body {
    display: none;
    padding: 0 16px 14px 50px;
    font-size: 13px;
    color: #5c6578;
    line-height: 1.6;
}
.kontak-faq-item.open .kontak-faq-body { display: block; }

.kontak-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 50;
    background: #1a1f2b;
    color: #fff;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
}
.kontak-toast.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .kontak-info-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
    .kontak-main-grid { grid-template-columns: 1fr; }
    .kontak-faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
    .kontak-info-grid { grid-template-columns: 1fr; }
    .kontak-form-row { grid-template-columns: 1fr; }
}
