/* Navigation Styles */

.nav-links {
    list-style: none;
    gap: 32px;
}

.nav-item a {
    position: relative;
    color: #1A1A1A;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 300ms ease;
}

.nav-item a:hover {
    color: #00D4FF;
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00D4FF;
    transition: width 300ms ease;
}

.nav-item a:hover::after {
    width: 100%;
}

/* Mega Menu Deep Glass Effect */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 0;
    overflow: hidden;
}

.nav-item.has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 600px;
}

.mega-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1A1A1A;
    margin-bottom: 16px;
}

.mega-list {
    list-style: none;
    padding: 0;
}

.mega-list li {
    margin-bottom: 8px;
}

.mega-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1A1A1A;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 200ms ease;
}

.mega-list a:hover {
    background: rgba(0, 212, 255, 0.1);
    color: #00D4FF;
    transform: translateX(4px);
}

.mega-list a::after {
    display: none;
}

.mega-list i {
    width: 16px;
    height: 16px;
    color: #00D4FF;
}