/* Language Switcher Dropdown Styles */
.lang-switcher {
    position: relative;
}

.lang-current {
    padding: 0.7rem 1.5rem;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
    justify-content: center;
}

.header-transparent.scrolled .lang-current {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.lang-current:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary);
}

.lang-current i {
    font-size: 0.75rem;
    transition: transform 0.3s;
}

.lang-switcher.active .lang-current i {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(30, 42, 58, 0.98);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.lang-switcher.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    padding: 1rem 1.5rem;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    font-size: 0.95rem;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lang-option.active {
    background: rgba(0, 212, 255, 0.25);
    color: var(--secondary);
}

.lang-option i {
    color: var(--secondary);
    font-size: 1rem;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .lang-switcher {
        position: fixed;
        top: 15px;
        left: 15px;
        z-index: 1001;
    }

    .lang-current {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .lang-dropdown {
        right: auto;
        left: 0;
    }
}