/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    cursor: pointer;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
}

/* Wiggle Animation */
@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
    75% { transform: rotate(-5deg); }
}

.wiggle {
    animation: wiggle 0.5s ease-in-out;
}

.whatsapp-float:hover {
    background-color: #1ebe57;
}

/* Popup Menu */
.whatsapp-menu {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    padding: 10px;
    width: 220px;
    display: none;
    flex-direction: column;
    z-index: 1001;
}

.whatsapp-menu a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: black;
    padding: 8px 10px;
    border-radius: 5px;
    transition: 0.3s;
}

.whatsapp-menu a:hover {
    background: #f1f1f1;
}

.whatsapp-menu img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

