.footer {
    background: var(--wfs-darker);
    border-top: 1px solid rgba(229, 199, 56, 0.1);
    padding: 60px 20px 30px;
    margin-top: 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--wfs-light-gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: var(--wfs-light-gray);
    text-decoration: none;
    padding: 8px 15px;
    background: rgba(229, 199, 56, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(229, 199, 56, 0.1);
    transition: all 0.3s;
    font-size: 0.9rem;
}

.footer-social a:hover {
    color: var(--wfs-yellow);
    border-color: var(--wfs-yellow);
    background: rgba(229, 199, 56, 0.1);
}

.footer-section h4 {
    color: var(--wfs-white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--wfs-light-gray);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--wfs-yellow);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(229, 199, 56, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-info p {
    color: var(--wfs-gray);
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.footer-badges {
    display: flex;
    gap: 15px;
}

.footer-badges .badge {
    padding: 5px 12px;
    background: rgba(229, 199, 56, 0.05);
    border: 1px solid rgba(229, 199, 56, 0.1);
    border-radius: 15px;
    color: var(--wfs-light-gray);
    font-size: 0.8rem;
    font-weight: 600;
}

/* Footer Language Switcher */
.footer-language-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-language-switcher .lang-label {
    color: var(--wfs-gray);
    font-size: 0.9rem;
}

.footer-lang-flag {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(229, 199, 56, 0.15);
    text-decoration: none;
    color: var(--wfs-light-gray);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.footer-lang-flag:hover {
    background: rgba(229, 199, 56, 0.08);
    border-color: rgba(229, 199, 56, 0.3);
    color: var(--wfs-white);
}

.footer-lang-flag svg {
    display: block;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Footer Company Links */
.footer-company {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(229, 199, 56, 0.05);
    font-size: 0.85rem;
}

.footer-company a {
    color: var(--wfs-yellow);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.footer-company a:hover {
    color: var(--wfs-white);
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-section:first-child {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-section:first-child {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-badges {
        flex-wrap: wrap;
        justify-content: center;
    }
}
