.floating-call {
    position: fixed;
    z-index: 92;
    left: 26px;
    bottom: 26px;
    min-width: 188px;
    height: 62px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 7px 8px 7px 18px;
    border: 1px solid #55d77d80;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(120deg, #20ad55, #0b7f37);
    box-shadow: 0 16px 42px #0008, 0 8px 28px #12974442;
    direction: rtl;
    cursor: pointer;
    isolation: isolate;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 21px 48px #0009, 0 10px 34px #149b4960;
}

.floating-call-icon {
    position: relative;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #11843a;
    background: #fff;
    font-size: 23px;
    box-shadow: 0 5px 18px #063d1940;
    animation: call-ring 2.6s ease-in-out infinite;
}

.floating-call-icon::before,
.floating-call-icon::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: -1px;
    border: 2px solid #4bd276;
    border-radius: 50%;
    opacity: 0;
    animation: call-wave 2.6s ease-out infinite;
}

.floating-call-icon::after {
    animation-delay: .75s;
}

.floating-call-copy {
    min-width: 0;
    display: grid;
    text-align: right;
    line-height: 1.35;
}

.floating-call-copy b {
    font-size: 13px;
}

.floating-call-copy small {
    margin-top: 3px;
    color: #dcffe6;
    font-size: 9px;
}

@keyframes call-ring {
    0%, 9%, 18%, 100% { transform: rotate(0); }
    3%, 12% { transform: rotate(12deg); }
    6%, 15% { transform: rotate(-12deg); }
}

@keyframes call-wave {
    0%, 18% { transform: scale(.92); opacity: 0; }
    24% { opacity: .75; }
    60%, 100% { transform: scale(1.75); opacity: 0; }
}

@media (max-width: 680px) {
    .floating-call {
        left: 15px;
        bottom: calc(154px + env(safe-area-inset-bottom));
        min-width: 58px;
        width: 58px;
        height: 58px;
        padding: 6px;
    }

    .floating-call-copy {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .floating-call-icon,
    .floating-call-icon::before,
    .floating-call-icon::after {
        animation: none;
    }
}
