/* Floating WhatsApp Icon Styles */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: box-shadow 0.2s;
}
.floating-whatsapp:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    background: #128c7e;
}
.floating-whatsapp img {
    width: 32px;
    height: 32px;
}
