/* WhatsApp Floating Button CSS */
        /* WhatsApp Floating Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 100;
        }

        .whatsapp-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            height: 56px;
            background-color: #25D366;
            border-radius: 50%;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: visible;
            text-decoration: none;
        }

        .whatsapp-link:hover {
            background-color: #128C7E;
            transform: scale(1.05);
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
        }

        .whatsapp-icon {
            color: white;
            font-size: 28px;
            transition: transform 0.3s ease;
        }

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

        /* WhatsApp Badge */
        .whatsapp-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background: #FF4757;
            color: white;
            font-size: 11px;
            font-weight: 600;
            padding: 4px 8px;
            border-radius: 12px;
            line-height: 1;
            box-shadow: 0 2px 8px rgba(255, 71, 87, 0.3);
            animation: badge-pulse 2s infinite;
        }

        @keyframes badge-pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        /* WhatsApp Label untuk Desktop */
        .whatsapp-label {
            position: absolute;
            right: 70px;
            background: #1A1A1A;
            color: white;
            padding: 12px 20px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            white-space: nowrap;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
            opacity: 0;
            transform: translateX(10px) scale(0.95);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
        }

        .whatsapp-label::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -6px;
            transform: translateY(-50%);
            border-width: 6px 0 6px 6px;
            border-style: solid;
            border-color: transparent transparent transparent #1A1A1A;
        }

        .whatsapp-link:hover .whatsapp-label {
            opacity: 1;
            transform: translateX(0) scale(1);
        }

        /* WhatsApp Ripple Effect */
        .whatsapp-ripple {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background-color: #25D366;
            opacity: 0;
            animation: ripple 2s infinite;
        }

        @keyframes ripple {
            0% {
                transform: scale(1);
                opacity: 0.5;
            }

            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }

        /* WhatsApp Online Status */
        .whatsapp-status {
            position: absolute;
            bottom: -2px;
            right: -2px;
            width: 14px;
            height: 14px;
            background: #4CAF50;
            border: 2px solid white;
            border-radius: 50%;
        }

        /* Responsive untuk Tablet dan Mobile */
        @media (max-width: 1024px) {
            .whatsapp-float {
                bottom: 25px;
                right: 25px;
            }

            .whatsapp-link {
                width: 52px;
                height: 52px;
            }

            .whatsapp-icon {
                font-size: 24px;
            }
        }

        @media (max-width: 768px) {
            .whatsapp-float {
                bottom: 20px;
                right: 20px;
            }

            .whatsapp-link {
                width: 56px;
                height: 56px;
                box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            }

            .whatsapp-icon {
                font-size: 26px;
            }

            .whatsapp-label {
                display: none;
            }

            .whatsapp-badge {
                top: -6px;
                right: -6px;
                font-size: 10px;
                padding: 3px 6px;
            }

            .whatsapp-status {
                width: 12px;
                height: 12px;
            }
        }

        @media (max-width: 480px) {
            .whatsapp-float {
                bottom: 16px;
                right: 16px;
            }

            .whatsapp-link {
                width: 50px;
                height: 50px;
            }

            .whatsapp-icon {
                font-size: 22px;
            }
        }

        /* Animasi masuk yang halus */
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(20px) scale(0.8);
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .whatsapp-float {
            animation: slideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Dark mode support */
        @media (prefers-color-scheme: dark) {
            .whatsapp-label {
                background: #2D3748;
                color: #E2E8F0;
            }

            .whatsapp-label::after {
                border-color: transparent transparent transparent #2D3748;
            }
        }

        /* Print styles - sembunyikan saat print */
        @media print {
            .whatsapp-float {
                display: none !important;
            }
        }