footer {
    background: var(--section-bg-medium);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    text-align: center;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}



/* Social Links Styling */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 10px 16px;
    border: 2px solid transparent;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.5);
}

.social-links a:hover {
    color: #4a90e2;
    border-color: #4a90e2;
    background: rgba(74, 144, 226, 0.1);
    transform: translateY(-2px);
}

.social-links a.linkedin:hover {
    color: #0077b5;
    border-color: #0077b5;
    background: rgba(0, 119, 181, 0.1);
}

.social-links a.facebook:hover {
    color: #1877f2;
    border-color: #1877f2;
    background: rgba(24, 119, 242, 0.1);
}

.social-links a.cv:hover {
    color: #28a745;
    border-color: #28a745;
    background: rgba(40, 167, 69, 0.1);
}

/* Simple SVG Icons */
.icon-social {
    width: 20px;
    height: 20px;
    fill: currentColor;
}



.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 0;
}

.footer-links a:hover {
    color: #4a90e2;
    transform: translateX(5px);
}

.language-switcher {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.language-switcher a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 16px;
    border: 2px solid transparent;
    border-radius: 6px;
}

.language-switcher a:hover,
.language-switcher a.active {
    color: #4a90e2;
    border-color: #4a90e2;
    background: rgba(74, 144, 226, 0.05);
}

.footer-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 14px;
}

/* Responsive Design */
@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 60px;
    }

    .footer-section {
        text-align: left;
    }

    .footer-links {
        align-items: flex-start;
    }

    .language-switcher {
        justify-content: flex-start;
    }

    .social-links {
        justify-content: flex-start;
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 80px;
    }
}