/**
 * ISPS Theme — components/footer.css
 */
#isps-footer-final {
    background-color: var(--isps-navy);
    color: #ffffff;
    font-family: var(--isps-font-primary);
    padding: 80px 0 0 0;
}
.ft-wrapper {
    max-width: 1200px; margin: 0 auto; padding: 0 24px 60px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}
.ft-brand-logo { max-height: 60px; margin-bottom: 22px; filter: brightness(0) invert(1); }
.ft-brand-name { font-weight: 700; font-size: 1rem; margin-bottom: 14px; color: #fff; line-height: 1.4; }
.ft-brand-desc { color: var(--isps-slate); font-size: 0.88rem; line-height: 1.6; margin-bottom: 22px; }
.ft-social-box { display: flex; gap: 12px; }
.ft-social-icon {
    width: 38px; height: 38px; background: rgba(255,255,255,0.05); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; text-decoration: none; transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}
.ft-social-icon:hover { background: var(--isps-blue); transform: translateY(-3px); border-color: var(--isps-blue); }
.ft-col-title { font-size: 1rem; font-weight: 700; margin-bottom: 22px; position: relative; }
.ft-col-title::after {
    content: ''; position: absolute; left: 0; bottom: -7px;
    width: 28px; height: 3px; background: var(--isps-yellow);
}
.ft-list { list-style: none; padding: 0; margin: 0; }
.ft-list li { margin-bottom: 11px; }
.ft-list a {
    color: var(--isps-slate); text-decoration: none; font-size: 0.9rem;
    transition: 0.3s; display: flex; align-items: center; gap: 8px;
}
.ft-list a:hover { color: var(--isps-yellow); transform: translateX(4px); }
.ft-contact-row { display: flex; gap: 14px; margin-bottom: 18px; }
.ft-contact-icon { color: var(--isps-yellow); font-size: 1rem; flex-shrink: 0; margin-top: 3px; }
.ft-contact-info h5 { margin: 0 0 4px; font-size: 0.88rem; color: #fff; }
.ft-contact-info p, .ft-contact-info a { margin: 0; font-size: 0.85rem; color: var(--isps-slate); text-decoration: none; }
.ft-bottom-bar { background-color: #020617; padding: 22px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.ft-bottom-container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.82rem; color: #64748b;
}
.crecienta-link { color: #94a3b8; text-decoration: none; font-weight: 600; transition: 0.3s; }
.crecienta-link:hover { color: var(--isps-blue); }

@media (max-width: 992px) { .ft-wrapper { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) {
    .ft-wrapper { grid-template-columns: 1fr; gap: 35px; }
    .ft-bottom-container { flex-direction: column; gap: 8px; text-align: center; }
}
