.site-footer {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 0 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.footer-section {
    padding: 0 1rem;
}

.footer-section h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 0.2rem 0;
}

.footer-section ul a:hover {
    color: white;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-link:hover {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 3rem;
    padding: 2rem 0;
    background-color: rgba(0, 0, 0, 0.1);
}

.footer-bottom-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.copyright {
    margin-bottom: 1rem;
}

.copyright p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.language-selector {
    display: flex;
    gap: 1rem;
}

.language-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.legal-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.legal-links a:hover {
    color: white;
}

.separator {
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom-links {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-section {
        padding: 0;
    }
    
    .footer-bottom-links {
        gap: 1rem;
    }
    
    .legal-links {
        flex-direction: column;
    }
}

/* Icon Styles */
.footer-section i {
    width: 20px;
    margin-right: 10px;
    color: var(--accent-color);
} 

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-section .contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-section .contact-info i {
    font-size: 18px;
    color: #fff;
    width: 20px;
}

.footer-section .contact-details {
    flex: 1;
}

.footer-section .contact-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-section .contact-link:hover {
    color: #fff;
    opacity: 1;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-section .contact-info {
        flex-direction: row;
        align-items: center;
    }
    
    .footer-section .contact-info i {
        margin-bottom: 0;
    }
} 