/* Modern WhatsApp Floating Button - Global Styles */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 
        0 8px 25px rgba(37, 211, 102, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: modernWhatsappPulse 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 12px 30px rgba(37, 211, 102, 0.4),
        0 6px 15px rgba(0, 0, 0, 0.3);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.whatsapp-float svg {
    width: 24px;
    height: 24px;
}

@keyframes modernWhatsappPulse {
    0%, 100% {
        box-shadow: 
            0 8px 25px rgba(37, 211, 102, 0.3),
            0 4px 12px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 
            0 8px 25px rgba(37, 211, 102, 0.4),
            0 4px 12px rgba(0, 0, 0, 0.2),
            0 0 25px rgba(37, 211, 102, 0.2);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        left: 15px;
        border-radius: 12px;
    }
    
    .whatsapp-float svg {
        width: 20px;
        height: 20px;
    }
}

/* WhatsApp Icon SVG Path */
.whatsapp-float svg path {
    fill: currentColor;
}
