/* ─── FOOTER.CSS ─── */

footer {
    background: #111111;
    padding: 3rem 5% 1.5rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .nav-logo {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.footer-desc {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.footer-links > li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--yellow); }

.footer-contact-item {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.footer-contact-item > * {
    margin-right: 0.5rem;
}

.footer-contact-item strong { color: var(--white); }

.footer-contact-item i { color: var(--white); }

.footer-icon {
    width: 1.2rem;
    height: 1.2rem;
    display: inline-block;
    filter: brightness(0) invert(1);
}

.footer-contact-item[href]:hover {
    color: var(--yellow);
}

.footer-contact-item[href]:hover strong {
    color: var(--yellow);
}

.footer-contact-item[href]:hover i {
    color: var(--yellow);
}

.footer-contact-item[href]:hover .footer-icon {
    filter: brightness(0) invert(0.9) drop-shadow(0 0 2px var(--yellow));
}

.footer-bottom {
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom > * {
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.footer-copy {
    color: rgba(255,255,255,0.35);
    font-size: 0.82rem;
}

@media (max-width: 768px) {
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}