/* --- WhatsApp Floating Button: Static Teal Glow --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 18px; 
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    z-index: 2000;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    text-decoration: none;
    transition: background-color 0.3s ease, 
                box-shadow 0.3s ease,
                color 0.3s ease;
}

/* Hover State: Stationary with Enhanced Teal Glow */
.whatsapp-float:hover {
    background-color: var(--teal-glow);
    color: var(--navy);
    box-shadow: 0 0 30px rgba(100, 255, 218, 0.8); 
    transform: none;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 30px;
        bottom: 20px;
        right: 20px;
        border-radius: 14px;
    }
}