/* Footer Styles */
.site-footer {
    background: var(--primary-deep);
    color: var(--text-inverse);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-brand span {
    color: var(--accent-primary);
}

.footer-logo-img {
    height: 36px !important;
    max-height: 36px !important;
    width: auto !important;
    max-width: 150px !important;
    display: block;
    margin-bottom: 1rem;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin: 0;
    padding: 0;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    padding: 0.375rem 0;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* Footer Language Dropdown */
.footer-language-selector {
    margin-top: 1.5rem;
}

.footer-country-selector {
    position: relative;
    display: inline-block;
}

.footer-country-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    color: white;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.footer-country-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.footer-country-dropdown {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 0;
    min-width: 140px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 1000;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
}

.footer-country-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.footer-lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.75rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.15s;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    text-decoration: none;
}

.footer-lang-option:hover {
    background: rgba(124, 58, 237, 0.2);
    color: white;
}

.footer-language-selector .pll-flag img {
    width: 20px;
    height: auto;
    border-radius: 2px;
    display: block;
}

/* Mobile Responsive Footer */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-logo-img {
        margin: 0 auto 1rem;
    }

    .footer-brand-col {
        order: -1;
    }

    .footer-language-selector {
        display: flex;
        justify-content: center;
    }

    .footer-col h4 {
        margin-bottom: 1rem;
    }

    .footer-col a {
        padding: 0.5rem 0;
    }
}