/* Language Switcher Styles */
.language-switcher {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

/* Header Language Switcher */
.header-top {
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 1000;
}

.header-language-switcher {
    display: flex;
    gap: 5px;
}

.header-language-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #2C296F;
    border-radius: 25px;
    color: #2C296F;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-language-link:hover {
    background: #2C296F;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(44, 41, 111, 0.3);
}

.header-language-link.active {
    background: #2C296F;
    color: #fff;
}

.header-language-link span {
    font-weight: 600;
}

.language-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.language-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

.language-link.active {
    background: #2C296F;
    border-color: #2C296F;
    color: #fff;
}

.language-link img {
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .language-switcher {
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
    }
    
    .language-link {
        flex: 1;
        justify-content: center;
        max-width: 120px;
    }
}

/* Contact section language switcher */
.contact-section .contact-language-switcher {
    margin-top: 0;
}

.contact-language-link {
    background: #f8fafc !important;
    border: 2px solid #2C296F !important;
    color: #333 !important;
    font-weight: 600;
    padding: 12px 16px !important;
    border-radius: 8px !important;
    margin-bottom: 8px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(44, 41, 111, 0.15);
}

.contact-language-link:hover {
    background: #2C296F !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 41, 111, 0.25);
}

.contact-language-link.active {
    background: #2C296F !important;
    border-color: #2C296F !important;
    color: #fff !important;
}

.contact-language-link span {
    margin-left: 8px;
    font-weight: 600;
}

/* Footer language switcher */
.footer-language-switcher {
    gap: 10px;
}

.footer-language-link {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-language-link:hover {
    background: rgba(255, 255, 255, 0.2);
    text-decoration: none;
    transform: translateY(-2px);
}

.footer-language-link.active {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Footer Bottom Language Switcher */
.footer-language-switcher {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    align-items: center;
}

.footer-lang-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-lang-link:hover {
    color: #fff;
    text-decoration: none;
    opacity: 1;
    transform: translateY(-1px);
}

.footer-lang-link.active {
    color: #fff;
    opacity: 1;
}

.footer-lang-link img {
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* Mobile responsiveness for footer language switcher */
@media (max-width: 768px) {
    .footer-language-switcher {
        justify-content: center;
        margin-top: 15px;
    }
    
    .col-md-6.text-end {
        text-align: center !important;
    }
} 