/* ===== FOOTER STYLES ===== */
.site-footer {
    margin-top: 4rem;
}

.footer-content {
    border-radius: 10px;
    padding: 2rem 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 1400px;
    margin: -10px auto;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.footer-logo-icon {
    font-size: 1.5rem;
    color: rgb(var(--primary-glow));
}

.footer-logo-text {
    font-weight: var(--font-weight-bold);
    font-size: 1.25rem;
    color: rgb(var(--text-primary));
}

.footer-description {
    color: rgb(var(--text-secondary));
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-title {
    font-weight: var(--font-weight-semibold);
    color: rgb(var(--text-primary));
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: rgb(var(--text-secondary));
    text-decoration: none;
    transition: var(--transition-smooth);
    padding: 0.25rem 0;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: rgb(var(--primary-glow));
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(var(--primary-glow), 0.1);
    color: rgb(var(--primary-glow));
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 1.125rem;
}

.social-link:hover {
    background: rgba(var(--primary-glow), 0.2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.footer-bottom {
    border-top: 1px solid rgba(var(--border-light), 0.3);
    padding: 1.5rem;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.copyright {
    color: rgb(var(--text-muted));
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-link {
    color: rgb(var(--text-muted));
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-bottom-link:hover {
    color: rgb(var(--primary-glow));
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 2rem 1rem;
    }
}