/* Ultra-specific centering fix for mobile menu links */

/* Mobile menu links centering fix */
@media (max-width: 768px) {
    /* Target specifically the footer links */
    .nav-links .footer-links {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        text-align: center !important;
    }
    
    /* Target specifically each list item */
    .nav-links .footer-links li {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        margin: 8px 0 !important;
        padding: 0 !important;
    }
    
    /* Target specifically each link */
    .nav-links .footer-links a {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Target the specific sections in your screenshot */
    .footer-section:nth-of-type(2) .footer-links a,
    .footer-section:nth-of-type(3) .footer-links a {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Override any possible conflicting styles */
    .nav-links [href="#services"],
    .nav-links [href="#process"],
    .nav-links [href="#expertise"],
    .nav-links [href="#gallery"],
    .nav-links [href="#testimonials"],
    .nav-links [href="#contact"],
    .nav-links [href="privacy-policy.html"],
    .nav-links [href="terms-of-service.html"],
    .nav-links [href="faq.html"] {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}
