/* Container */
.wa-icon {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: sans-serif;
    z-index: 9999;
}

/* Text (Hidden default) */
.wa-text {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #0bb649;
    padding: 10px 20px;
    border-radius: 30px;
    margin-right: 12px;
    opacity: 0;
    transform: translateX(10px);
    transition: 0.3s ease;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid rgba(37, 211, 102, 0.4);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* Show text on hover */
.wa-icon:hover .wa-text {
    opacity: 1;
    transform: translateX(0);
}

/* Circle Button */
.wa-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Icon */
.wa-circle img {
    width: 100%;
    z-index: 2;
}

/* Animated Highlight Ring */
.wa-circle::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: pulse 1.8s infinite;
    z-index: 1;
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}