/* ============================================================
   FOOTER.CSS
   ============================================================ */

.site-footer {
    background: var(--gradient-brand);
    color: var(--text-2);
    padding: 60px 20px 30px;
    font-family: var(--font-body);
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--space-10);
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand img {
    width: 150px;
    margin-bottom: var(--space-4);
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: var(--leading-relaxed);
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    font-size: 1.1rem;
    margin-bottom: var(--space-4);
    color: white;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: var(--space-3);
}

.footer-links ul li a {
    color: var(--text-2);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: var(--g-top);
}

.footer-contact p {
    margin-bottom: var(--space-3);
    font-size: 0.95rem;
}

.footer-social .social-icons {
    display: flex;
    gap: var(--space-4);
}

.footer-social .social-icons img {
    width: 24px;
    transition: transform 0.3s;
}

.footer-social .social-icons img:hover {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    margin-top: var(--space-10);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-5);
    font-size: 0.85rem;
    color: var(--text-3);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-social .social-icons {
        justify-content: center;
    }
}
