/* Positioned to nest directly above the "smooth-back-to-top-button" plugin
   button (left-side: left:50px, bottom:50px, 46x46px) - centered above it
   with an 8px gap, not stacked on top of it. */
.floating-call-btn {
    position: fixed;
    left: 50px;
    bottom: 114px;
    z-index: 998;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0E0E0F;
    border: 1px solid #D1D2AA;
    cursor: pointer;
    text-decoration: none;
}

.floating-call-btn svg {
    position: relative;
    z-index: 2;
    width: 18px;
    height: 18px;
}

.floating-call-btn__pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid #D1D2AA;
    animation: floatingCallPulse 2.4s ease-out infinite;
}

.floating-call-btn__pulse--delay {
    animation-delay: 1.2s;
}

@keyframes floatingCallPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.floating-call-btn:focus-visible {
    outline: 2px solid #D1D2AA;
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .floating-call-btn__pulse {
        animation: none;
        display: none;
    }
}
