
/* WhatsApp Floating Button */
.whatsapp-btn {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
    background-color: #20bd5a;
    color: white;
}

.whatsapp-btn i {
    font-size: 28px;
}

/* Mobile Menu Social Icons */
#mobile-menu-container .social-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
}
