.elementor-46820 .elementor-element.elementor-element-194cecf{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-fedbacf *//* Floating Contact Buttons */
        .contact-floating {
            position: fixed;
            bottom: 100px;
            right: 20px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .contact-btn {
            width: auto;
            min-width: 56px;
            height: 56px;
            border-radius: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 15px rgba(107, 70, 193, 0.3);
            position: relative;
            overflow: hidden;
            text-decoration: none;
            transform: scale(1);
            padding: 0 16px;
        }

        .contact-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%) !important;
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .contact-btn:hover::before {
            transform: translateX(100%);
        }

        /* Zalo Button */
        .contact-btn.zalo {
            background: linear-gradient(135deg, #8B5CF6, #6B46C1) !important;
        }
        .contact-btn.zalo svg{
            height: 50px;
        }

        .contact-btn.zalo:hover {
            background: linear-gradient(135deg, #A855F7, #7C3AED) !important;
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(107, 70, 193, 0.4);
        }

        .contact-btn.zalo:active {
            transform: scale(0.95);
        }

        /* Facebook Button */
        .contact-btn.facebook {
            background: linear-gradient(135deg, #9333EA, #7C2D92) !important;
        }

        .contact-btn.facebook:hover {
            background: linear-gradient(135deg, #A855F7, #8B5A94) !important;
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(147, 51, 234, 0.4);
        }

        .contact-btn.facebook:active {
            transform: scale(0.95);
        }

        /* Hotline Button */
        .contact-btn.hotline {
            background: linear-gradient(135deg, #7C3AED, #5B21B6) !important;
        }

        .contact-btn.hotline:hover {
            background: linear-gradient(135deg, #8B5CF6, #6D28D9) !important;
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
        }

        .contact-btn.hotline:active {
            transform: scale(0.95);
        }

        /* Icons */
        .contact-btn svg {
            width: 24px;
            height: 24px;
            fill: white;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .contact-btn:hover svg {
            transform: scale(1.2);
            margin-right: 8px;
        }

        /* Button Text */
        .contact-btn .btn-text {
            color: white;
            font-size: 14px;
            font-weight: 600;
            white-space: nowrap;
            opacity: 0;
            max-width: 0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
        }

        .contact-btn:hover .btn-text {
            opacity: 1;
            max-width: 150px;
        }

        .contact-btn:hover {
            padding-right: 20px;
            justify-content: flex-start;
        }


        /* Pulse Animation */
        @keyframes pulse {
            0% {
                box-shadow: 0 4px 15px rgba(107, 70, 193, 0.3);
            }
            50% {
                box-shadow: 0 4px 15px rgba(107, 70, 193, 0.6), 0 0 0 10px rgba(107, 70, 193, 0.2),0 0 0 20px rgba(107, 70, 193, 0.1);
            }
            100% {
                box-shadow: 0 4px 15px rgba(107, 70, 193, 0.3);
            }
        }



        /* Responsive */
        @media (max-width: 768px) {
            .contact-floating {
                bottom: 15px;
                right: 15px;
                gap: 10px;
            }
            
            .contact-btn {
                min-width: 50px;
                height: 50px;
                border-radius: 25px;
                padding: 0 14px;
            }
            
            .contact-btn svg {
                width: 20px;
                height: 20px;
            }
            
            .contact-btn:hover svg {
                margin-right: 6px;
            }
            
            .contact-btn .btn-text {
                font-size: 12px;
            }
            
            .contact-btn:hover {
                padding-right: 16px;
            }
        }

        @media (max-width: 480px) {
            .contact-floating {
                bottom: 10px;
                right: 10px;
                gap: 8px;
            }
            
            .contact-btn {
                min-width: 45px;
                height: 45px;
                border-radius: 22px;
                padding: 0 12px;
            }
            
            .contact-btn svg {
                width: 18px;
                height: 18px;
            }
            
            .contact-btn:hover svg {
                margin-right: 5px;
            }
            
            .contact-btn .btn-text {
                font-size: 11px;
            }
            
            .contact-btn:hover {
                padding-right: 14px;
            }
        }

        /* Floating Animation */
        @keyframes float {
            0%, 100% {
                transform: translateY(-10px);
            }
            50% {
                transform: translateY(-25px);
            }
        }

        .contact-btn.zalo {
            animation: float 2s ease-in-out infinite, pulse 2s infinite;
            animation-delay: 1s, 0s;
        }

        .contact-btn.facebook {
            animation: float 2s ease-in-out infinite, pulse 2s infinite;
            animation-delay: 1s, 0s;
        }

        .contact-btn.hotline {
            animation: float 2s ease-in-out infinite, pulse 2s infinite;
            animation-delay: 1s, 0s;
        }/* End custom CSS */