.contact-widget {
            position: fixed;
            left: 20px;
            bottom: 20px;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        /* Main Button */
        .contact-main-btn {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            background: linear-gradient(135deg, #2a9d8f 0%, #21867a 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 25px rgba(42, 157, 143, 0.4);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            z-index: 10;
            border: none;
            outline: none;
        }

        .contact-main-btn::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, #2a9d8f, #21867a, #2a9d8f);
            border-radius: 50%;
            z-index: -1;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .contact-main-btn:hover::before {
            opacity: 1;
            animation: rotate 2s linear infinite;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .contact-main-btn i {
            color: white;
            font-size: 26px;
            transition: all 0.3s ease;
        }

        .contact-main-btn:hover {
            transform: scale(1.1) translateY(-2px);
            box-shadow: 0 12px 35px rgba(42, 157, 143, 0.6);
        }

        .contact-main-btn.active i {
            transform: rotate(45deg);
        }

        /* Contact Options Container */
        .contact-options {
            position: absolute;
            bottom: 100%;
            left: 0;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(30px);
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            pointer-events: none;
        }

        .contact-options.active {
            opacity: 1;
            transform: translateY(0);
            visibility: visible;
            pointer-events: auto;
        }

        /* Individual Contact Options */
        .contact-option {
            display: flex;
            align-items: center;
            margin-bottom: 18px;
            transform: scale(0) rotate(180deg);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            pointer-events: none;
        }

        .contact-options.active .contact-option {
            transform: scale(1) rotate(0deg);
            pointer-events: auto;
        }

        /* Staggered animation delays */
        .contact-options.active .contact-option:nth-child(1) { transition-delay: 0.1s; }
        .contact-options.active .contact-option:nth-child(2) { transition-delay: 0.2s; }
        .contact-options.active .contact-option:nth-child(3) { transition-delay: 0.3s; }

        .contact-option-btn {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            text-decoration: none;
        }

        .contact-option-btn::before {
            content: '';
            position: absolute;
            width: 0;
            height: 0;
            background-color: rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            border-radius: 50%;
            z-index: -1;
            transform: translate(-50%, -50%);
        }

        .contact-option-btn:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
        }

        .contact-option-btn:hover::before {
            width: 100%;
            height: 100%;
        }

        .contact-option-btn i {
            font-size: 22px;
            color: white;
            transition: all 0.3s ease;
        }

        .contact-option-btn:hover i {
            transform: scale(1.1);
        }

        /* Button Colors */
        .contact-whatsapp {
            background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
        }

        .contact-messenger {
            background: linear-gradient(135deg, #0084ff 0%, #0066cc 100%);
        }

        .contact-call {
            background: linear-gradient(135deg, #4CAF50 0%, #388e3c 100%);
        }

        /* Enhanced Labels */
        .contact-option-label {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            color: #333;
            padding: 8px 16px;
            border-radius: 25px;
            margin-left: 15px;
            font-weight: 500;
            font-size: 14px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateX(-15px);
            white-space: nowrap;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .contact-option:hover .contact-option-label {
            opacity: 1;
            transform: translateX(0);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

        /* Enhanced Pulse Animation */
        .pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 8px 25px rgba(42, 157, 143, 0.4), 0 0 0 0 rgba(42, 157, 143, 0.7);
            }
            50% {
                box-shadow: 0 8px 25px rgba(42, 157, 143, 0.4), 0 0 0 10px rgba(42, 157, 143, 0.3);
            }
            100% {
                box-shadow: 0 8px 25px rgba(42, 157, 143, 0.4), 0 0 0 20px rgba(42, 157, 143, 0);
            }
        }

        /* Floating Animation */
        .floating {
            animation: floating 3s ease-in-out infinite;
        }

        @keyframes floating {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .contact-widget {
                left: 15px;
                bottom: 15px;
            }

            .contact-main-btn {
                width: 60px;
                height: 60px;
            }

            .contact-main-btn i {
                font-size: 24px;
            }

            .contact-option-btn {
                width: 50px;
                height: 50px;
            }

            .contact-option-btn i {
                font-size: 20px;
            }

            .contact-option-label {
                font-size: 13px;
                padding: 6px 12px;
                margin-left: 12px;
            }

            .contact-options {
                margin-bottom: 15px;
            }

            .contact-option {
                margin-bottom: 15px;
            }
        }

        @media (max-width: 480px) {
            .contact-widget {
                left: 10px;
                bottom: 10px;
            }

            .contact-main-btn {
                width: 55px;
                height: 55px;
            }

            .contact-main-btn i {
                font-size: 22px;
            }

            .contact-option-btn {
                width: 45px;
                height: 45px;
            }

            .contact-option-btn i {
                font-size: 18px;
            }

            .contact-option-label {
                font-size: 12px;
                padding: 5px 10px;
                margin-left: 10px;
            }
        }

        /* Accessibility */
        .contact-option-btn:focus,
        .contact-main-btn:focus {
            outline: 3px solid rgba(42, 157, 143, 0.5);
            outline-offset: 2px;
        }

        /* Smooth Transitions for All Elements */
        * {
            transition: all 0.3s ease;
        }