.glass-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Active Link State */
.nav-active {
    color: #CE033A !important;
    /* Secondary Brand Color */
    position: relative;
}

/* Subtle underline for desktop active link */
@media (min-width: 1024px) {
    .nav-active::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 100%;
        height: 2px;
        background: #CE033A;
        transform: scaleX(1);
    }
}

/* Mobile Menu Staggered Animation Classes */
.menu-item-anim {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.menu-item-anim.active {
    opacity: 1;
    transform: translateY(0);
}