/* Yumshoqroq bog'lanish tugmasi va menyusi */
        .contact-wrapper {
            position: fixed;
            bottom: 25px;
            right: 25px;
            z-index: 1000;
            opacity: 0;
            transform: translateY(100px);
            transition: all 0.5s ease;
        }
        
        .contact-wrapper.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .contact-button {
            width: 65px;
            height: 65px;
              background-image: -moz-linear-gradient( -51deg, rgb(235,18,10) 0%, rgb(153,0,0) 99%);
    background-image: -webkit-linear-gradient( -51deg, rgb(235,18,10) 0%, rgb(153,0,0) 99%);
    background-image: -ms-linear-gradient( -51deg, rgb(235,18,10) 0%, rgb(153,0,0) 99%);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            box-shadow: 0 6px 20px rgba(211, 47, 47, 0.3);
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            position: relative;
            z-index: 2;
        }
        
        .contact-button:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(211, 47, 47, 0.4);
        }
        
        .contact-button i {
            font-size: 26px;
            color: white;
            transition: transform 0.2s ease;
        }
        
        .contact-menu {
            position: absolute;
            bottom: 80px;
            right: 0;
            background: white;
            border-radius: 18px;
            padding: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px) scale(0.95);
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            width: 270px;
        }
        
        .contact-menu.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }
        
        .contact-menu:after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 20px;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-top: 10px solid white;
        }
        
        .contact-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .contact-header img {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
        
        .contact-header h3 {
            color: #333;
            font-size: 1.1rem;
            margin: 0;
            font-weight: 600;
        }
        
        .contact-header p {
            font-size: 0.8rem;
            margin: 3px 0 0;
            color: #777;
        }
        
        .online-status {
            display: inline-block;
            width: 10px;
            height: 10px;
            background: #4caf50;
            border-radius: 50%;
            margin-left: 8px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            padding: 12px;
            border-radius: 12px;
            margin-bottom: 10px;
            transition: all 0.2s ease;
            color: #333;
            text-decoration: none;
            background: #f9f9f9;
        }
        
        .contact-item:last-child {
            margin-bottom: 0;
        }
        
        .contact-item:hover {
            background: #ffebee;
            transform: translateX(5px);
        }
        
        .contact-item i {
            margin-right: 15px;
            font-size: 20px;
            width: 25px;
            text-align: center;
            transition: transform 0.2s ease;
        }
        
        .contact-item:hover i {
            transform: scale(1.15);
        }
        
        .telegram {
            color: #0088cc;
        }
        
        .whatsapp {
            color: #25D366;
        }
        
        .wechat {
            color: #07C160;
        }
        
        .phone {
            color: #d32f2f;
        }
        
        .email {
            color: #ea4335;
        }
        
        .contact-text {
            flex: 1;
        }
        
        .contact-text h4 {
            margin-bottom: 4px;
            font-size: 0.95rem;
            color: #333;
            font-weight: 600;
        }
        
        .contact-text p {
            font-size: 0.8rem;
            color: #777;
            margin: 0;
        }
        
        /* Yangi kichik xabarnoma */
        .notification {
            position: fixed;
            bottom: 100px;
            right: 25px;
            background: white;
            padding: 15px;
            border-radius: 14px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            z-index: 999;
            max-width: 260px;
            opacity: 0;
            transform: translateY(20px) scale(0.95);
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            display: flex;
            align-items: flex-start;
            border-left: 4px solid #d32f2f;
        }
        
        .notification.active {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
        
        .notification-icon {
            font-size: 20px;
            color: #d32f2f;
            margin-right: 12px;
            animation: gentlePulse 2s ease-in-out infinite;
        }
        
        @keyframes gentlePulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
        
        .notification-content h4 {
            color: #333;
            margin-bottom: 5px;
            font-size: 1rem;
            font-weight: 600;
        }
        
        .notification-content p {
            color: #666;
            margin: 0;
            font-size: 0.85rem;
            line-height: 1.4;
        }
        
        .notification-close {
            position: absolute;
            top: 8px;
            right: 8px;
            background: #f5f5f5;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s;
            font-size: 0.7rem;
            color: #888;
        }
        
        .notification-close:hover {
            background: #ffcdd2;
            color: #d32f2f;
        }
        
        /* Mobil moslashuvchanlik */
        @media (max-width: 768px) {

            .contact-wrapper {
                bottom: 20px;
                right: 20px;
            }
            
            .contact-button {
                width: 60px;
                height: 60px;
            }
            
            .contact-menu {
                width: 250px;
                right: 0;
                bottom: 70px;
            }
            
            .notification {
                bottom: 90px;
                right: 20px;
                max-width: 240px;
            }
            
            .features {
                flex-direction: column;
            }
        }
        
        @media (max-width: 480px) {
            
            .contact-wrapper {
                bottom: 15px;
                right: 15px;
            }
            
            .contact-button {
                width: 55px;
                height: 55px;
            }
            
            .contact-button i {
                font-size: 22px;
            }
            
            .contact-menu {
                width: 230px;
                padding: 18px;
                bottom: 65px;
            }
            
            .contact-item {
                padding: 10px;
            }
            
            .contact-header img {
                width: 40px;
                height: 40px;
            }
            
            .contact-header h3 {
                font-size: 1rem;
            }
            
            .notification {
                bottom: 80px;
                right: 15px;
                max-width: 220px;
                padding: 12px;
            }
            
            .notification-content h4 {
                font-size: 0.95rem;
            }
            
            .notification-content p {
                font-size: 0.8rem;
            }
        }