/* ─────────────────────────────
   GLOBAL FOOTER STYLES
───────────────────────────── */
.site-footer {
    background-color: #050f20; /* Deepest brand navy */
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: auto; /* Pushes footer to the bottom of short pages */
}

.footer-brand {
    letter-spacing: -0.5px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-link:hover {
    color: #ffffff;
}

/* Make sure the green safety link keeps its color on hover but glows slightly */
.footer-link.text-success:hover {
    color: #2ecc71 !important;
    text-shadow: 0 0 8px rgba(46, 204, 113, 0.4);
}