/* Language Toggle Styles */
.language-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    margin-left: 20px;
    background: linear-gradient(135deg, #F28123 0%, #ff9142 100%);
    border: 2px solid #F28123;
    border-radius: 25px;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 129, 35, 0.3);
}

.language-toggle:hover {
    background: linear-gradient(135deg, #fff 0%, #fff 100%);
    color: #F28123;
    border-color: #F28123;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 129, 35, 0.4);
}

.language-toggle i {
    margin-right: 8px;
    font-size: 16px;
}

.language-toggle:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(242, 129, 35, 0.3);
}

/* Responsive adjustments */
@media only screen and (max-width: 991px) {
    .language-toggle {
        margin-left: 0;
        margin-top: 10px;
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* Mobile menu language toggle */
.mobile-menu .language-toggle {
    display: block;
    margin: 10px auto;
    text-align: center;
    width: fit-content;
}
