/* WhatsApp Floating Button - SVG Design */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-icon-design {
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.15));
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 60px;
    }
    
    .whatsapp-icon-design svg {
        width: 45px;
        height: 45px;
    }
}
