/* ==========================================
   TOP NAVIGATION BAR STYLES
   ========================================== */

/* Language Switcher Buttons - Top */
.lang-btn-top {
    transition: all 0.3s ease;
    font-weight: 600;
}

.lang-btn-top.active,
.lang-btn-top:hover {
    background: rgba(0, 255, 209, 0.2);
    color: var(--primary);
}

/* Mobile Language Buttons */
.lang-btn-mobile {
    transition: all 0.3s ease;
    font-weight: 600;
}

.lang-btn-mobile.active,
.lang-btn-mobile:hover {
    background: rgba(0, 255, 209, 0.2);
    color: var(--primary);
    border-color: var(--primary);
}

/* Navigation Active State */
nav a.active {
    color: var(--primary);
    position: relative;
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

/* Mobile Menu Animation */
#mobileMenu {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Schedule Call Button Hover Effect */
nav a[href="contact.html"] {
    position: relative;
    overflow: hidden;
}

nav a[href="contact.html"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

nav a[href="contact.html"]:hover::before {
    left: 100%;
}

/* Responsive Nav */
@media (max-width: 1024px) {
    nav .hidden.lg\\:flex {
        display: none !important;
    }
}
