/* ===============================
   KONTAK PREMIUM DESIGN
================================= */

.kontak-section {
    background: linear-gradient(to bottom, #f8f9fc, #ffffff);
    padding: 80px 0;
}

/* heading */
.kontak-section .section-title {
    color: #3d105f;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.kontak-section .text-muted {
    font-size: 1rem;
}

/* card */
.kontak-card {
    border: none;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(61, 16, 95, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.kontak-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #5e1992, #8e3cac, #efa735);
}

.kontak-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 38px rgba(61, 16, 95, 0.14);
}

/* gif */

.kontak-gif {
    width: 140px;
    height: 140px;
    object-fit: contain;
    margin: 0 auto;
    transition: 0.3s ease;
}

.kontak-card:hover .kontak-gif {
    transform: scale(1.08);
}

/* title */
.kontak-card h5 {
    color: #3d105f;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.15rem;
}

/* text */
.kontak-card p {
    color: #6c757d;
    font-size: 0.97rem;
    margin-bottom: 0;
    word-break: break-word;
}

/* jam operasional */
.jam-box {
    background: linear-gradient(135deg, #3d105f, #5e1992, #8e3cac);
    color: white;
    border-radius: 24px;
    padding: 35px 30px;
    box-shadow: 0 18px 40px rgba(61, 16, 95, 0.18);
    position: relative;
    overflow: hidden;
}

.jam-box::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.jam-box h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.jam-box p {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
}

/* animation */
.kontak-card,
.jam-box {
    animation: fadeUp 0.8s ease;
}

.kontak-header {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
    animation: fadeUp 0.8s ease;
}

.kontak-header .section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #3d105f;
    margin-bottom: 14px;
    position: relative;
    display: inline-block;
    letter-spacing: 0.3px;
}

.kontak-header .section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    margin: 12px auto 0;
    border-radius: 30px;
    background: linear-gradient(90deg, #5e1992, #8e3cac, #efa735);
}

.kontak-header p {
    font-size: 1.08rem;
    color: #6c757d;
    line-height: 1.8;
    margin: 18px auto 0;
    max-width: 620px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* responsive */
@media (max-width: 768px) {
    .kontak-section {
        padding: 60px 0;
    }

    .jam-box {
        padding: 28px 20px;
    }
}

/* mobile */
@media (max-width: 768px) {
    .kontak-gif {
        width: 110px;
        height: 110px;
    }
}

/* mobile */
@media (max-width: 768px) {
    .kontak-header {
        margin-bottom: 40px;
    }

    .kontak-header .section-title {
        font-size: 1.9rem;
    }

    .kontak-header p {
        font-size: 0.98rem;
        padding: 0 10px;
    }
}
