.bantuan-page {
    padding: 60px 20px 100px;
    background: #ffffff;

    display: flex;
    justify-content: center;
}

.bantuan-container {
    width: 100%;
    max-width: 800px;
}

/* TITLE */
.bantuan-container h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

/* SUBTITLE */
.subtitle {
    color: #777;
    margin-bottom: 20px;
}

/* WHATSAPP BUTTON */
.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    background: #25D366;
    color: #fff;

    padding: 12px 20px;
    border-radius: 30px;

    text-decoration: none;
    font-weight: 600;

    margin-bottom: 25px;
    transition: 0.3s;
}

.btn-wa img {
    width: 20px;
}

.btn-wa:hover {
    transform: scale(1.05);
}

/* ATAU */
.atau {
    margin: 20px 0;
    color: #999;
}

/* EMAIL BOX */
.email-box {
    text-align: center;
    margin: 30px 0;
}

.email-box img {
    width: 80px;
    margin-bottom: 10px;
}

.email-box p {
    font-weight: 600;
}

/* JAM */
.jam {
    margin-top: 20px;
    color: #777;
}

/* ROW CONTACT */
.contact-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* 🔥 ini penting */
    justify-content: flex-start;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

/* EMAIL BUTTON */
.btn-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    background: #fff;
    border: 2px solid #ddd;

    padding: 12px 20px;
    border-radius: 30px;

    text-decoration: none;
    color: #333;
    font-weight: 500;

    transition: 0.3s;
}

.btn-email img {
    width: 20px;
}

.btn-email:hover {
    border-color: #e91e63;
    color: #e91e63;
    transform: scale(1.05);
}

.btn-wa,
.btn-email {
    height: 48px;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 10px;
}

@media (max-width: 480px) {
    .contact-row {
        flex-direction: column;
        align-items: flex-start;
    }
}
