/* ========================================
   MOBILE FLOATING CONTACT BUBBLES
   Boutons flottants discrets en bas d'écran
   ======================================== */

.mobile-sticky-bar {
    display: none;
    /* Caché par défaut sur desktop */
    position: fixed;
    bottom: 2rem;
    right: 1.5rem;
    z-index: 1000;
    flex-direction: column;
    gap: 1rem;
    pointer-events: none;
    /* Permet de cliquer à travers le container */
}

/* Affichage uniquement sur mobile */
@media (max-width: 768px) {
    .mobile-sticky-bar {
        display: flex;
    }
}

.sticky-btn {
    pointer-events: auto;
    /* Réactive les clics sur les boutons */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.sticky-btn span {
    display: none;
    /* Supprimer les textes pour les "bulles" */
}

.sticky-btn:active {
    transform: scale(0.9);
}

.sticky-btn svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

/* Bouton Appeler - En bas */
.sticky-btn-call {
    background: var(--primary-cyan);
    color: white;
}

/* Bouton WhatsApp - Au dessus */
.sticky-btn-whatsapp {
    background: #25D366;
    color: white;
}

/* Mode haut contraste */
body.high-contrast .sticky-btn {
    border: 2px solid #FFFF00;
    background: #000;
}

body.high-contrast .sticky-btn-whatsapp {
    border-color: #00FF00;
}

body.high-contrast .sticky-btn svg {
    fill: #FFFF00;
}

body.high-contrast .sticky-btn-whatsapp svg {
    fill: #00FF00;
}