/* ==========================================================================
   Diantar.id — Halaman Hubungi Kami
   Melengkapi landing-v2.css; hanya komponen khusus halaman ini.
   ========================================================================== */

/* ---------------------------------------------------------------- hero --- */
.contact-hero {
    padding-bottom: clamp(36px, 4vw, 56px);
}

.contact-hero__inner {
    position: relative;
    max-width: 820px;
    text-align: center;
    animation: rv .9s var(--ease) both;
}

.contact-hero .hero-title {
    margin-top: 18px;
}

.contact-hero__sub {
    margin-left: auto;
    margin-right: auto;
    max-width: 620px;
}

.contact-hero .hero-actions {
    justify-content: center;
}

/* -------------------------------------------------------------- kanal --- */
.channels {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
}

.channel-card {
    display: flex;
    flex-direction: column;
    padding: 28px;
    border-radius: 26px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: 0 18px 40px -30px rgba(12, 45, 90, .5);
    transition: transform .35s var(--ease), box-shadow .35s;
}

.channel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 56px -28px rgba(12, 45, 90, .45);
}

.channel-card h3 {
    margin: 20px 0 6px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -.02em;
}

.channel-value {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
    color: var(--ink);
    overflow-wrap: anywhere;
}

.channel-note {
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
}

/* Dorong tautan ke dasar kartu supaya sejajar antar kartu */
.channel-card .link-arrow {
    margin-top: auto;
    align-self: flex-start;
    font-size: 14.5px;
}

/* ------------------------------------------------------- topik bantuan --- */
.topic-q {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--ink);
}

.topic-ico {
    flex: none;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--blue-50);
    color: var(--blue);
    font-size: 19px;
}

.faq-item.open .topic-ico {
    background: linear-gradient(135deg, var(--blue-200), var(--blue));
    color: #fff;
}

/* Sejajarkan teks jawaban dengan judul, bukan dengan ikon */
#topik .faq-a p {
    padding-left: 66px;
}

@media (max-width:479px) {
    #topik .faq-a p {
        padding-left: 20px;
    }
}
