/* Floating Action Button */
.service-category {
    position: relative;
    bottom: 2rem;
    /*right: 2rem;*/
    /*width: 120px;*/
    /*height: 120px;*/
    border-radius: 50%;
    background: var(--accent-gradient);
    border: none;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    cursor: pointer;
}
.service-category:hover {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 6px 30px rgba(170, 189, 241, 0.6);
    /*animation: cubic-bezier(0.175, 0.885, 0.32, 1.275);*/
    animation: bounceRotate 0.6s ease-in-out;
}

/* Animation de rotation + rebond */
@keyframes bounceRotate {
    0% {
        transform: rotate(0deg) scale(1);
    }
    30% {
        transform: rotate(10deg) scale(1.05);
    }
    60% {
        transform: rotate(-8deg) scale(1.1);
    }
    100% {
        transform: rotate(0deg) scale(1);
    }
}

