/* WhatsApp Button Styles */

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(191, 149, 149, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(191, 149, 149, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(191, 149, 149, 0);
    }
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #bf9595;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    transition: transform 0.3s ease;
    text-decoration: none !important;
    border-bottom: none !important;
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
    text-decoration: none !important;
    border-bottom: none !important;
    animation: none;
}

.whatsapp-button i {
    color: #ffffff;
    font-size: 32px;
}