/* Modern Footer Styles */
.footer {
    background-color: #FCF5E8 !important;
    width: 100%;
    padding: 2rem 1rem 1.5rem;
    margin-top: auto;
    box-sizing: border-box;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.3rem;
    position: relative;
}

.footer-links a:hover {
    color: #f0a900;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #f0a900;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.footer-links a:hover::after {
    width: 70%;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    padding: 0.3rem 0;
}

.footer-social a {
    color: #666;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    padding: 0.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 2.2rem;
    height: 2.2rem;
    background-color: rgba(240, 169, 0, 0.1);
}

.footer-social a:hover {
    color: #f0a900;
    transform: translateY(-3px);
    background-color: rgba(240, 169, 0, 0.15);
}

.footer-copyright {
    color: #888;
    font-size: 0.85rem;
    text-align: center;
    padding-top: 0.3rem;
    border-top: 1px solid rgba(102, 102, 102, 0.1);
    width: 100%;
    max-width: 600px;
}

@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0.8rem 1rem;
    }

    .footer-content {
        gap: 1.2rem;
    }

    .footer-links {
        gap: 1.2rem;
        padding: 0 0.8rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .footer-social {
        gap: 1.2rem;
    }

    .footer-social a {
        font-size: 1rem;
        width: 2rem;
        height: 2rem;
    }
}

@media (max-width: 480px) {
    .footer-links {
        gap: 0.8rem;
    }

    .footer-social {
        gap: 0.8rem;
    }
}
