/* WhatsApp Floating Button - 2Wheels4Rent by LuAlpha */
.wal-floating-button {
    position: fixed;
    bottom: 30px;
    z-index: 9999;
}

.wal-position-right {
    right: 30px;
}

.wal-position-left {
    left: 30px;
}

.wal-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    border: none;
}

.wal-button:hover {
    transform: scale(1.08);
    background-color: #20b859;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.wal-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wal-tooltip {
    position: absolute;
    right: 70px;
    background-color: #1c1c1c;
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.wal-position-left .wal-tooltip {
    right: auto;
    left: 70px;
}

.wal-button:hover .wal-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes wal-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes wal-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes wal-shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}

.wal-animation-pulse .wal-button {
    animation: wal-pulse 2s infinite;
}

.wal-animation-bounce .wal-button {
    animation: wal-bounce 1s ease infinite;
}

.wal-animation-shake .wal-button:hover {
    animation: wal-shake 0.5s ease;
}

@media (max-width: 768px) {
    .wal-floating-button {
        bottom: 20px;
    }
    
    .wal-position-right {
        right: 20px;
    }
    
    .wal-position-left {
        left: 20px;
    }
    
    .wal-button {
        width: 55px;
        height: 55px;
    }
    
    .wal-tooltip {
        display: none;
    }
}