html {
            scroll-behavior: smooth;
        }

        .floating-contact-wrapper {
            position: fixed;
            left: 20px;
            bottom: 20px;
            z-index: 99;
            font-family: sans-serif;
        }

        .main-trigger-btn {
            width: 72px;
            height: 72px;
            background-color: #f97316;
            border-radius: 50%;
            border: none;
            color: white;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
            position: relative;
            animation: floating-pulse 2s infinite;
        }

        @keyframes floating-pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(249, 115, 22, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
            }
        }

        .main-trigger-btn:hover {
            background-color: #ea580c;
            transform: scale(1.05);
            animation: none;
        }

        .main-trigger-btn .icon-chat,
        .main-trigger-btn .icon-close {
            position: absolute;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .main-trigger-btn .icon-chat {
            transform: rotate(0) scale(1);
            opacity: 1;
        }

        .main-trigger-btn .icon-close {
            opacity: 0;
            transform: rotate(-90deg) scale(0.5);
        }

        .floating-contact-wrapper.is-open .main-trigger-btn .icon-chat {
            opacity: 0;
            transform: rotate(90deg) scale(0.5);
        }
        .floating-contact-wrapper.is-open .main-trigger-btn .icon-close {
            opacity: 1;
            transform: rotate(0) scale(1);
        }
        .floating-contact-wrapper.is-open .main-trigger-btn {
            background-color: #ea580c;
            animation: none;
        }

        .contact-links-list {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            position: absolute;
            bottom: 82px;
            left: 0;
            width: 72px;
            pointer-events: none;
        }

        .floating-contact-wrapper.is-open .contact-links-list {
            pointer-events: auto;
        }

        .contact-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px) scale(0.8);
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
            position: relative;
        }

        .floating-contact-wrapper.is-open .contact-btn {
            visibility: visible;
        }

        .contact-btn svg {
            width: 32px;
            height: 32px;
        }

		.contact-btn.telegram svg,
        .contact-btn.viber svg {
			width: 45px;
			height: 45px;
        }
        .contact-btn.telegram { background-color: #0088cc; }
        .contact-btn.viber { background-color: #665cac; }
        .contact-btn.whatsapp { background-color: #25D366; }
        .contact-btn.phone { background-color: #f39c12; }
        .contact-btn.form { background-color: #f97316; }
        .contact-btn.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
        .contact-btn.facebook { background-color: #1877F2; }
        .contact-btn.linkedin { background-color: #0A66C2; }
        .contact-btn.tiktok { background-color: #000000; }

        .tooltip-text {
            position: absolute;
            left: 75px;
            top: 50%;
            transform: translateY(-50%) translateX(-10px);
            background-color: rgba(0, 0, 0, 0.85);
            color: white;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 14px;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            pointer-events: none;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            font-weight: 500;
            z-index: 100;
        }

        .tooltip-text::before {
            content: '';
            position: absolute;
            top: 50%;
            right: 100%;
            margin-top: -6px;
            border-width: 6px;
            border-style: solid;
            border-color: transparent rgba(0, 0, 0, 0.85) transparent transparent;
        }

        .contact-btn:hover .tooltip-text,
        .main-trigger-btn:hover .tooltip-text {
            opacity: 1;
            visibility: visible;
            transform: translateY(-50%) translateX(0);
        }

        .contact-btn:hover {
            color: white !important;
            transform: scale(1.1) !important;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            z-index: 10;
        }

        .floating-contact-wrapper.is-open .contact-btn {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .floating-contact-wrapper.is-open .contact-btn:nth-last-child(1) { transition-delay: 0.05s; }
        .floating-contact-wrapper.is-open .contact-btn:nth-last-child(2) { transition-delay: 0.1s; }
        .floating-contact-wrapper.is-open .contact-btn:nth-last-child(3) { transition-delay: 0.15s; }
        .floating-contact-wrapper.is-open .contact-btn:nth-last-child(4) { transition-delay: 0.2s; }
        .floating-contact-wrapper.is-open .contact-btn:nth-last-child(5) { transition-delay: 0.25s; }
        .floating-contact-wrapper.is-open .contact-btn:nth-last-child(6) { transition-delay: 0.3s; }
        .floating-contact-wrapper.is-open .contact-btn:nth-last-child(7) { transition-delay: 0.35s; }
        .floating-contact-wrapper.is-open .contact-btn:nth-last-child(8) { transition-delay: 0.4s; }
        .floating-contact-wrapper.is-open .contact-btn:nth-last-child(9) { transition-delay: 0.45s; }