/* Основной стиль кнопки */
.animated-call-btn {
    position: fixed;
    top: 60px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #007bff; /* Синий цвет */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.4);
    z-index: 9999;
    text-decoration: none;
    animation: jump 2s infinite;
}

/* Иконка телефона */
.phone-icon {
    font-size: 24px;
    color: #ffffff;
}

/* Анимация пульсации (первый круг) */
.pulse-ring {
    position: absolute;
    width: 70px;
    height: 70px;
    border: 2px solid #007bff;
    border-radius: 50%;
    animation: pulsate 2s ease-out infinite;
}

/* Анимация пульсации (второй круг) */
.pulse-ring-2 {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid #007bff;
    border-radius: 50%;
    animation: pulsate 2s ease-out infinite;
    animation-delay: 0.5s;
}

/* Ключевые кадры для пульсации */
@keyframes pulsate {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Ключевые кадры для подпрыгивания кнопки */
@keyframes jump {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}