.footer {
    background-color: #964508;
    color: #F6BB5C;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-section {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.footer-section.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.footer-logo {
    width: 150px;
    margin-bottom: 1rem;
}

.footer-description {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #F6BB5C;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-list a {
    color: #F6BB5C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-list a:hover {
    color: #ffffff;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #F6BB5C;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.social-link i {
    font-size: 1.5rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(246, 187, 92, 0.2);
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 1rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    .contact-list li,
    .social-link {
        justify-content: center;
    }
} 