.call-btn-container {
    position: fixed;
    left: 20px;
    bottom: 5px;
    z-index: 1000;
}

.call-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 25px;
    background: linear-gradient(135deg, #4e54c8, #8f94fb);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(78, 84, 200, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
    width: 100%;
}

.call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(78, 84, 200, 0.4);
}

.call-btn:active {
    transform: translateY(1px);
}

.call-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8f94fb, #4e54c8);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.call-btn:hover::before {
    opacity: 1;
}

.call-btn .pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    animation: pulse 2s infinite;
    z-index: -2;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.05);
        opacity: 0.2;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.7;
    }
}

.call-btn .icon {
    font-size: 1.5rem;
    animation: ring 1.5s infinite;
}

@keyframes ring {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(15deg);
    }

    20% {
        transform: rotate(-15deg);
    }

    30% {
        transform: rotate(15deg);
    }

    40% {
        transform: rotate(-15deg);
    }

    50% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.btn-text {
    display: inline;
}

/* Mobile styles - hide text and increase icon size */
@media (max-width: 576px) {
    .call-btn {
        width: auto;
        min-width: 70px;
        border-radius: 50%;
    }

    .btn-text {
        display: none;
    }

    .call-btn .icon {
        font-size: 2.2rem;
        margin: 0;
    }

    .call-btn-container {
        bottom: 100px;
        right: 10px;
        max-width: none;
        width: fit-content;
    }
}

.confirmation-dialog {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    /* Higher than button */
    justify-content: center;
    align-items: center;
}

.dialog-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}