    /* ============================================
   WhatsApp Floating Button
   ============================================ */

    .whatsapp-float {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #25D366, #128C7E);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
        z-index: 9999;
        transition: all 0.3s ease;
        animation: whatsapp-pulse 2s infinite;
    }

    .whatsapp-float:hover {
        transform: scale(1.1) translateY(-5px);
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
    }

    @keyframes whatsapp-pulse {

        0%,
        100% {
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
        }

        50% {
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7),
                0 0 0 10px rgba(37, 211, 102, 0.1);
        }
    }

    /* Mobile */
    @media (max-width: 768px) {
        .whatsapp-float {
            width: 50px;
            height: 50px;
            bottom: 20px;
            right: 20px;
        }

        .whatsapp-float svg {
            width: 26px;
            height: 26px;
        }
    }