/* Boutons flottants CTA */
.floating-cta-buttons {
    user-select: none;
}

.floating-cta-buttons .btn:hover {
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Animation de pulsation pour le bouton rond */
@keyframes pulse-orange {
    0% {
        box-shadow: 0 0 0 0 rgba(240, 131, 58, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(240, 131, 58, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(240, 131, 58, 0);
    }
}

.floating-cta-buttons .btn-orange {
    animation: pulse-orange 2s infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .floating-cta-buttons {
        bottom: 15px;
        right: 8px;
    }
    
    .floating-cta-buttons .btn-orange {
        width: 60px;
        height: 60px;
        font-size: 12px;
    }
}

/* Très petits écrans */
@media (max-width: 576px) {
    .floating-cta-buttons {
        bottom: 15px;
        right: 8px;
    }
    
    .floating-cta-buttons .btn-orange {
        width: 55px;
        height: 55px;
        font-size: 11px;
    }
}