/* Whatsapp floating styles */
.wa-container {
    position: fixed;
    right: 30px;
    bottom: 100px;
    z-index: 9999;
}

.wa-tooltip {
    position: absolute;
    width: 200px;
    bottom: 70px;
    right: 0;
    max-width: 240px;
    background: #fff;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.wa-container:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.wa-title {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    margin-bottom: 4px;
}

.wa-text {
    font-size: 12px;
    color: #666;
    margin-bottom: 0;
}

.wa-button {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0.6;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.wa-button:hover {
    opacity: 1;
    transform: scale(1.1);
}

.wa-icon {
    border-radius: 50%;
    width: 100%;
    height: 100%;
}

.wa-dot {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 14px;
    height: 14px;
    background: #22c55e;
    border-radius: 50%;
    border: 2px solid #fff;
}

.wa-ping {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 14px;
    height: 14px;
    background: #4ade80;
    border-radius: 50%;
    animation: ping 1.5s infinite;
}

@keyframes ping {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    70% {
        transform: scale(2);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 575.98px) {
    .wa-container {
        right: 30px;
        bottom: 80px;
    }

    .wa-button {
        width: 46px;
        height: 46px;
    }

    .wa-tooltip {
        width: 180px;
        max-width: 180px;
        bottom: 62px;
    }

    .wa-title {
        font-size: 13px;
    }

    .wa-text {
        font-size: 11px;
    }
}
