
footer {
    background: linear-gradient(to bottom, var(--light-bg), #f5f1e8);
    border-top: 1px solid var(--card-border-hover);
    padding: 80px 40px 60px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -300px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 127, 143, 0.05), transparent);
    border-radius: 50%;
    pointer-events: none;
}

footer::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -300px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 69, 19, 0.04), transparent);
    border-radius: 50%;
    pointer-events: none;
}

/* Footer Top Section */
.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-left {
    font-size: 11px;
    color: var(--text-primary);
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
}

.footer-center {
    text-align: center;
}

.footer-center h3 {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.footer-right {
    font-size: 11px;
    color: var(--text-primary);
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Footer Divider */
.footer-divider {
    max-width: 1200px;
    margin: 0 auto 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--card-border-hover), transparent);
    position: relative;
    z-index: 1;
}

/* Footer Bottom Section */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-links {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-link {
    font-size: 13px;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 0.5px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    footer {
        padding: 60px 20px 40px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-logo img {
        width: 70px;
        height: 70px;
    }

    .footer-links {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
}