/* Cache et déplace le panneau Get In Touch hors de l'écran par défaut */
.get-in-touch-v2, 
.side-menu-wrapper, 
#get_in_touch_block {
    display: none !important; /* On l'enlève du flux */
    transform: translateX(-100%) !important; /* On le pousse loin à gauche */
    visibility: hidden !important;
    opacity: 0 !important;
}

/* L'affiche UNIQUEMENT si tu cliques et que la classe 'active' est ajoutée */
.get-in-touch-v2.active, 
.side-menu-wrapper.active,
.get-in-touch-v2.show {
    display: block !important;
    transform: translateX(0) !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 9999 !important;
}