/* Force disable JS transforms on mobile for Services Track to prevent scroll locking */
@media (max-width: 768px) {
    #services-track {
        transform: none !important;
        width: auto !important;
        /* Ensure content determines width */
        position: relative !important;
        /* Override potential absolute positioning */
    }
}