/* ============================================
   MODERN FOOTER STYLES
   ============================================ */

/* Footer Base */
.modern-footer {
    background: var(--slate-900);
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid var(--slate-800);
}

.modern-footer .footer-title {
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.modern-footer .footer-description {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9375rem;
}

.modern-footer .footer-heading {
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.modern-footer .footer-link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    transition: color 0.15s ease;
    display: inline-block;
    padding: 0.25rem 0;
}

.modern-footer .footer-link:hover {
    color: white;
}

.modern-footer .footer-divider {
    border-color: var(--slate-800);
    opacity: 1;
}

.modern-footer .footer-copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

/* Footer */
.footer {
    margin-top: auto;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Mobile devices - Center footer content */
@media (max-width: 767.98px) {
    .modern-footer .row > [class*="col-"] {
        text-align: center;
    }

    .modern-footer .footer-title {
        justify-content: center;
    }

    .modern-footer .list-unstyled {
        padding-left: 0;
    }

    /* Add spacing between stacked sections */
    .modern-footer .row > [class*="col-"]:not(:last-child) {
        margin-bottom: 2rem;
    }
}
