.whatsapp-contact-wrapper {
    position: fixed;
    z-index: 9999;
}

.whatsapp-contact-wrapper.whatsapp-right {
    bottom: 70px;
    right: 20px;
}

.whatsapp-contact-wrapper.whatsapp-left {
    bottom: 20px;
    left: 20px;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    background-color: #25d366;
    color: #fff;
    padding: 10px 15px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    transform: scale(1.05);
    color: #fff;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.whatsapp-btn svg {
    margin-right: 8px;
    width: 24px;
    height: 24px;
    fill: #fff;
}

.whatsapp-text {
    font-weight: 600;
    font-size: 14px;
    font-family: inherit;
}

/* Pulse Animation */
@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-btn {
    animation: pulse-whatsapp 2s infinite;
}

@media (max-width: 768px) {
    .whatsapp-contact-wrapper {
        bottom: 15px;
    }

    .whatsapp-contact-wrapper.whatsapp-right {
        right: 15px;
    }

    .whatsapp-contact-wrapper.whatsapp-left {
        left: 15px;
    }

    .whatsapp-text {
        font-size: 13px;
    }
}