@import url('base.css');
@import url('layout.css');
@import url('nav.css');
@import url('hero.css');
@import url('components.css');
@import url('loader.css');
@import url('responsive.css');
@import url('footer.css');

.section-divider-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0px auto 24px;
    /* jarak atas bawah */
}

.section-divider-icon span {
    width: 50px;
    height: 2px;
    background-color: rgba(0, 0, 0, 0.18);
    border-radius: 10px;
}

.section-divider-icon img {
    width: 22px;
    /* ukuran ideal leaf */
    opacity: 0.85;
    display: block;
}

/* ========== Floating WhatsApp Button ========== */
.floating-wa {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 62px;
    height: 62px;
    background: #00adcc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 40px rgba(0, 173, 204, 0.28);
    cursor: pointer;
    z-index: 999;
    transition: transform .2s ease, box-shadow .2s ease;
}

.floating-wa:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 55px rgba(0, 173, 204, 0.35);
}

.floating-wa img {
    width: 32px;
    height: 32px;

}

/* Mobile adjust */
@media(max-width: 540px) {
    .floating-wa {
        width: 54px;
        height: 54px;
        right: 18px;
        bottom: 18px;
    }

    .floating-wa img {
        width: 28px;
        height: 28px;
    }
}