/* ========================================
   FOOTER CENTERING NUCLEAR FIX - Based on Actual HTML
   Target: footer.site-footer structure
   ======================================== */

/* Footer bottom section - NUCLEAR FORCE center everything */
html body .site-footer .footer-bottom,
html body footer .footer-bottom,
html body footer.site-footer .footer-bottom {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 2rem !important;
    padding-top: 1.5rem !important;
    border-top: 1px solid #333 !important;
}

html body .site-footer .footer-bottom p,
html body footer .footer-bottom p,
html body footer.site-footer .footer-bottom p {
    text-align: center !important;
    margin: 0.5rem 0 !important;
    color: #ccc !important;
}

html body .site-footer .footer-social,
html body footer .footer-social,
html body footer.site-footer .footer-social {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-bottom: 1rem !important;
}

/* Force center footer menu columns on mobile */
@media (max-width: 768px) {
    .site-footer .footer-columns,
    .site-footer .footer-row {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .site-footer .footer-col {
        text-align: center !important;
        margin-bottom: 2rem !important;
        width: 100% !important;
    }
    
    .site-footer .footer-title {
        text-align: center !important;
        margin-bottom: 1rem !important;
    }
    
    .site-footer ul.footer-links {
        text-align: center !important;
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .site-footer ul.footer-links li {
        text-align: center !important;
        margin: 0.25rem 0 !important;
        list-style: none !important;
    }
    
    .site-footer ul.footer-links li a {
        text-align: center !important;
        display: block !important;
    }
}

/* Desktop footer - keep columns but center bottom */
@media (min-width: 769px) {
    .site-footer .footer-bottom {
        text-align: center !important;
    }
}