/* Mobile Bottom Navigation - Enhanced Premium Look */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.1);
    z-index: 1100;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px 25px 0 0;
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    color: #777;
    font-size: 10px;
    font-weight: 700;
    width: 25%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding-top: 5px;
}

.mobile-bottom-nav .nav-item i {
    font-size: 24px;
    margin-bottom: 6px;
    color: #082d53; /* Pure Blue from your brand */
    background: linear-gradient(135deg, #082d53 0%, #1d69b7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.mobile-bottom-nav .nav-item:active,
.mobile-bottom-nav .nav-item.active {
    color: #082d53;
}

.mobile-bottom-nav .nav-item:active i,
.mobile-bottom-nav .nav-item.active i {
    transform: translateY(-5px) scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(8, 45, 83, 0.3));
}

.mobile-bottom-nav .nav-item span {
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: "Poppins", sans-serif;
}

/* Micro-interaction indicator */
.mobile-bottom-nav .nav-item.active::after {
    content: "";
    position: absolute;
    bottom: 8px;
    width: 4px;
    height: 4px;
    background-color: #082d53;
    border-radius: 50%;
}

@media screen and (min-width: 992px) {
    .mobile-bottom-nav {
        display: none;
    }
}

/* Smooth padding transition for body */
@media screen and (max-width: 991px) {
    body {
        padding-bottom: 75px !important;
    }
}
