        /* Стили для кнопки связи */
        .contact-widget {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
        }

        .contact-button {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
            transition: all 0.3s ease;
            position: relative;
            transform-origin: center bottom;
        }

        .contact-button:hover {
            transform: scale(1.1);
            box-shadow: 0 12px 30px rgba(102, 126, 234, 0.6);
        }

        /* Анимация подпрыгивания */
.contact-button.jump {
    animation: jumpAnimation 1s cubic-bezier(0.175, 0.885, 0.32, 1.5);
}

@keyframes jumpAnimation {
    0% {
        transform: translateY(0);
    }
    35% {
        transform: translateY(-180px);
    }
    50% {
        transform: translateY(0);
    }
    65% {
        transform: translateY(-90px);
    }
    80% {
        transform: translateY(0);
    }
    90% {
        transform: translateY(-45px);
    }
    100% {
        transform: translateY(0);
    }
}

        /* Анимация пульсации */
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
            }
            70% {
                box-shadow: 0 0 0 12px rgba(102, 126, 234, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(102, 126, 234, 0);
            }
        }

        .contact-button.pulse {
            animation: pulse 2s infinite;
        }

        .contact-button i {
            color: white;
            font-size: 28px;
        }

        .contact-button .badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background: #e74c3c;
            color: white;
            font-size: 12px;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        .contact-panel {
            position: absolute;
            bottom: 70px;
            right: 0;
            background: white;
            border-radius: 5px;
            padding: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            min-width: 220px;
            transform: translateY(20px);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .contact-panel.show {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

        .contact-panel::after {
            content: '';
            position: absolute;
            bottom: -8px;
            right: 25px;
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-top: 8px solid white;
        }

        .contact-header {
            text-align: center;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }

        .contact-header h3 {
            color: #2c3e50;
            font-size: 16px;
            font-weight: 600;
        }

        .contact-list {
            list-style: none;
        }

        .contact-item {
            display: flex;
            align-items: center;
            padding: 12px 15px;
            border-radius: 10px;
            margin-bottom: 8px;
            text-decoration: none;
            color: #333;
            transition: all 0.2s ease;
        }

        .contact-item:hover {
            background: #f8f9fa;
            transform: translateX(-5px);
        }

        .contact-item i {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 20px;
            color: white;
        }

        .contact-item span {
            font-size: 14px;
            font-weight: 500;
        }

        .telegram {
            background: #0088cc;
        }

        .whatsapp {
            background: #25D366;
        }

        .phone {
            background: #667eea;
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            .contact-widget {
                bottom: 20px;
                right: 20px;
            }

            .contact-button {
                width: 56px;
                height: 56px;
            }

            .contact-panel {
                right: -10px;
                min-width: 200px;
            }
        }

        @media (max-width: 480px) {
            .contact-widget {
                bottom: 15px;
                right: 15px;
            }

            .contact-panel {
                right: 0px;
                min-width: 180px;
            }
        }