/* ============================= */
/* MOBILE BOTTOM NAVIGATION BAR  */
/* ============================= */

.mobile-bottom-bar {
    display: none;
}

/* Mobile only */
@media (max-width: 768px) {

    body {
        padding-bottom: 90px;
        /* supaya konten tidak ketutup */
    }

    .mobile-bottom-bar {
        border-top: 3px solid #68c3a2;
        display: flex;
        position: fixed;
        bottom: env(safe-area-inset-bottom, 0);
        left: 0;
        width: 100%;
        background: #306db5;
        z-index: 9999;
        justify-content: space-around;
        align-items: center;
        padding: 8px 6px;
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    }

    .mobile-bottom-bar .menu-item {
        flex: 1;
        text-align: center;
        color: #ffffff;
        text-decoration: none;
        font-size: 16px;
        padding: 5px 6px;
        border-radius: 4px;
        transition: all 0.25s ease;
    }

    .mobile-bottom-bar .menu-item .icon {
        font-size: 22px;
        display: block;
        margin-bottom: 2px;
        transition: color 0.25s ease;
    }

    .mobile-bottom-bar .menu-item small {
        line-height: 1.1;
        display: block;
        transition: color 0.25s ease;
    }

    /* HOVER / ACTIVE EFFECT */
    .mobile-bottom-bar .menu-item:hover,
    .mobile-bottom-bar .menu-item:active {
        background: #68c3a2;
        color: #ffffff;
        transform: scale(1.05);
    }

    .mobile-bottom-bar .menu-item:hover .icon,
    .mobile-bottom-bar .menu-item:active .icon,
    .mobile-bottom-bar .menu-item:hover small,
    .mobile-bottom-bar .menu-item:active small {
        color: #ffffff;
    }

    /* ========================= */
    /* CONTACT US (CENTER BUTTON)*/
    /* ========================= */

    .mobile-bottom-bar .contact-btn {
        position: relative;
        top: -20px;
        background: #ffffff;
        color: #306db5;
        border-radius: 80%;
        width: 64px;
        height: 64px;
        padding: 6px;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    }

    .mobile-bottom-bar .contact-btn img {
        width: 38px;
        height: 38px;
        margin-top: 4px;
    }

    .mobile-bottom-bar .contact-btn small {
        display: none;
    }

    .mobile-bottom-bar .contact-btn:hover,
    .mobile-bottom-bar .contact-btn:active {
        background: #f2f2f2;
        transform: scale(1.08);
    }
}