/* FIX POUR SAFARI iOS - background-attachment: fixed ne fonctionne pas */
@media (max-width: 768px) {
    /* Alternative pour Safari iOS */
    #features,
    #mobile-section,
    #quantum-section,
    #contact {
        background-attachment: scroll !important;
        background-size: 100% auto !important;
        background-position: center top !important;
        position: relative !important;
    }
    
    /* Créer un pseudo-élément pour l'effet parallax sur iOS */
    #features::before,
    #mobile-section::before,
    #quantum-section::before,
    #contact::before {
        content: '' !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url(/static/client/images/contact-bg.png) center/cover no-repeat !important;
        z-index: -1 !important;
        will-change: transform !important;
    }
}
