/* ═══════════════════════════════════════════════
   footer.css – Site Footer
   ═══════════════════════════════════════════════ */

.site-footer {
    background: var(--theme-heading);
    color: rgba(255, 255, 255, 0.7);
    padding: 30px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ─── Footer Brand ─── */
.footer-brand {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.footer-brand>a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.footer-brand img {
    max-height: 180px;
    width: auto;
    max-width: 100%;
    filter: brightness(10);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.footer-social a:hover {
    background: var(--theme-primary);
    color: #fff;
    transform: translateY(-3px);
}

/* ─── Footer Column ─── */
.footer-col h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--theme-accent);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: ">>";
    font-family: inherit !important;
    color: var(--theme-accent);
    font-size: 0.75rem;
    font-weight: 700;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(4px);
}

/* ─── Footer Contact ─── */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.88rem;
}

.footer-contact-item i {
    color: var(--theme-accent);
    font-size: 1.1rem;
    margin-top: 3px;
    min-width: 20px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

.footer-contact-item a:hover {
    color: #fff;
}

/* ─── Footer Bottom ─── */
.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
    color: #fff;
}

/* ─── Responsive ─── */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .site-footer {
        padding: 10px 0 0;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-brand img {
        margin: 0 auto 10px;
        transform: scale(1.4);
        transform-origin: center center;
    }

    .footer-social {
        justify-content: center;
    }
}