/* ===================================
   BOTTOM NAVIGATION (MOBILE MENU)
=================================== */
.bottom-nav {
    display: none; /* Sembunyikan di Desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background: #FFFFFF;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    border-top: 3px solid var(--primary-blue);
    justify-content: space-around;
    align-items: center;
    padding: 0 5px;
}

.bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #64748B;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    flex: 1;
    height: 100%;
    transition: all 0.2s ease;
}

.bottom-nav .nav-item i {
    font-size: 18px;
    margin-bottom: 3px;
}

/* State Aktif dan Hover di HP */
.bottom-nav .nav-item.active,
.bottom-nav .nav-item:hover {
    color: var(--primary-blue);
}

.bottom-nav .nav-item.active i {
    color: var(--accent-red);
    transform: translateY(-2px);
}