/* Language Switcher Styles */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
}

.language-switcher button {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.language-switcher button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.language-switcher button.active {
    background: #0c86ff;
    border-color: #0c86ff;
    color: white;
}

/* Mobile responsive */
@media (max-width: 991px) {
    .language-switcher {
        margin-left: 0;
        margin-top: 15px;
        justify-content: center;
        padding-bottom: 10px;
    }

    .navbar-collapse .language-switcher {
        width: 100%;
    }
}

/* Footer address section */
.footer_address_phone {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer_address_phone p {
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer_address_phone .address-icon,
.footer_address_phone .phone-icon {
    display: inline-block;
    margin-right: 8px;
    color: #0c86ff;
}

.footer_address_phone a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer_address_phone a:hover {
    color: #0c86ff;
}