/* 
        =====================================================================
        CSS ПЕРЕМЕННЫЕ (Custom Properties)
        =====================================================================
        */
        :root {
            --primary-color: #dc3545;      /* Основной красный цвет */
            --secondary-color: #fd7e14;    /* Оранжевый акцент */
            --dark-color: #2c3e50;         /* Темный цвет для текста и фона */
            --light-color: #f8f9fa;        /* Светлый цвет для фона */
            --hero-overlay: rgba(0, 0, 0, 0.6); /* Затемнение для героя */
            --transition: all 0.3s ease;   /* Стандартная анимация переходов */
        }
		
		 /* 
        =====================================================================
        ОБЩИЕ СТИЛИ
        =====================================================================
        */
        body {
            font-family: 'Segoe UI', system-ui, sans-serif; /* Современный стек шрифтов */
            line-height: 1.6; /* Межстрочный интервал для лучшей читаемости */
            padding-top: 0; /* Убираем отступ сверху для фиксированной навигации */
        }
		
		/* 
        =====================================================================
        СЕКЦИЯ ГЕРОЯ (Hero Section)
        =====================================================================
        */
        .hero-section {
            height: 100vh; /* 100% высоты окна браузера */
            /* Градиент поверх фонового изображения для лучшей читаемости текста */
            background: linear-gradient(var(--hero-overlay), var(--hero-overlay)), 
                        url('../img/22.jpg') center/cover no-repeat;
            display: flex; /* Flexbox для вертикального центрирования контента */
            align-items: center; /* Вертикальное центрирование */
            color: white; /* Белый текст для контраста */
            position: relative; /* Для позиционирования псевдоэлементов */
        }
        
        .hero-content {
            text-align: center; /* Центрирование текста */
            max-width: 1200px; /* Ограничение ширины для лучшей читаемости */
            margin: 0 auto; /* Центрирование блока */
        }
        
        .hero-title {
            font-size: 3.5rem; /* Крупный размер шрифта */
            font-weight: 700; /* Жирное начертание */
            margin-bottom: 1.5rem; /* Отступ снизу */
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5); /* Тень текста для лучшей читаемости */
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            font-weight: 300; /* Тонкое начертание для контраста */
            opacity: 0.9; /* Легкая прозрачность */
        }
        
        .hero-description {
            font-size: 1.5rem;
            margin-bottom: 2.5rem;
            opacity: 0.8;
            max-width: 800px; /* Уже основного контейнера */
            margin-left: auto;
            margin-right: auto; /* Центрирование */
        }
        
        .hero-buttons .btn {
            margin: 0 10px; /* Горизонтальные отступы между кнопками */
            padding: 12px 30px; /* Внутренние отступы */
            font-weight: 500;
            border-radius: 50px; /* Скругленные углы (капсульная форма) */
            transition: var(--transition); /* Плавный переход при наведении */
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border: none;
            padding: 1rem 2.5rem;
            font-weight: 600;
            font-size: 1.1rem;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(220, 53, 69, 0.4);
        }
        
        .btn-outline-light:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
        }
		
		
		  /* 
        =====================================================================
        НАВИГАЦИЯ (Navigation)
        =====================================================================
        */
        .navbar {
            transition: var(--transition);
            padding: 20px 0;
            background-color: rgba(255, 255, 255, 0.98) !important;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            transform: translateY(-100%); /* Изначально скрыто за верхним краем */
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1030;
        }
        
        .navbar.scrolled {
            transform: translateY(0); /* Появляется при скролле */
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--dark-color) !important; /* Темный цвет всегда */
        }
        
        .nav-link {
            font-weight: 500;
            margin: 0 8px;
            position: relative;
            transition: var(--transition);
            color: var(--dark-color) !important; /* Темный цвет всегда */
        }
        
        /* Стрелки для выпадающих меню */
        .dropdown-toggle::after {
            margin-left: 8px;
            vertical-align: middle;
            border-top: 0.3em solid;
            border-right: 0.3em solid transparent;
            border-left: 0.3em solid transparent;
        }
        
        /* Кнопка гамбургера всегда темная */
        .navbar-toggler {
            border: none;
            padding: 5px 10px;
            color: var(--dark-color) !important; /* Темный цвет всегда */
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
       
        
        
        
      
       
        
        /* 
        =====================================================================
        СЕКЦИИ КОНТЕНТА (Content Sections)
        =====================================================================
        */
        .content-section {
            padding: 0 0; /* Большие вертикальные отступы */
        }
        
        /* Заголовки секций */
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 3rem; /* Большой отступ снизу */
            text-align: center; /* Центрирование */
            color: #2c3e50;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            margin: 20px auto 0;
            border-radius: 2px;
        }
        
        .section-subtitle {
            font-size: 1.3rem;
            line-height: 1.7;
            color: #6c757d;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem;
        }
        
        /* 
        =====================================================================
        СЕКЦИЯ "О КОМПАНИИ"
        =====================================================================
        */
        .about-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            position: relative;
			margin-top: 60px;
            overflow: hidden;
        }
        
        .about-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(220, 53, 69, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }
        
        /* Полноширинный контент */
        .full-width-content {
            position: relative;
            z-index: 1;
            margin-bottom: 4rem;
        }
        
        .section-header {
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Преимущества в строку */
        .advantages-row {
            margin-top: 3rem;
        }
        
        .advantage-item {
            padding: 2rem 1.5rem;
            border-radius: 16px;
            transition: all 0.3s ease;
            background: white;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .advantage-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .advantage-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }
        
        .advantage-content h5 {
            color: #2c3e50;
            margin-bottom: 0.8rem;
            font-weight: 600;
            font-size: 1.2rem;
        }
        
        .advantage-content p {
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        /* Полноширинная карточка услуг */
        .full-width-services {
            position: relative;
            z-index: 1;
        }
        
        .services-card {
            background: white;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            position: relative;
        }
        
        .services-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
            background-size: 200% 100%;
            animation: gradientShift 3s ease infinite;
        }
        
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .card-header {
            padding: 3rem 2rem;
            background: linear-gradient(135deg, #2c3e50, #34495e);
            color: white;
        }
        
        .card-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .card-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 0;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .card-body {
            padding: 2.5rem;
        }
        
        /* Сетка услуг 3 колонки */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }
        
        .service-item {
            display: flex;
            align-items: flex-start;
            gap: 1.2rem;
            padding: 1.5rem;
            border-radius: 12px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            background: #f8f9fa;
        }
        
        .service-item:hover {
            background: white;
            border-color: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(220, 53, 69, 0.15);
        }
        
       .service-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #198754 !important; /* Зеленый цвет Bootstrap */
    font-weight: 700;
    font-size: 2rem; /* Увеличиваем размер иконки */
    
}
        
        .service-content h6 {
            color: #2c3e50;
            margin-bottom: 0.5rem;
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .service-content p {
            font-size: 1rem;
            line-height: 1.5;
            margin-bottom: 0;
        }
        
        /* Кнопки CTA */
        .cta-buttons {
            margin-top: 2rem;
			margin-bottom: 80px;
        }
        
        .btn-outline-primary {
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            padding: 1rem 2.5rem;
            font-weight: 600;
            font-size: 1.1rem;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .btn-outline-primary:hover {
            background: var(--primary-color);
            border-color: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(220, 53, 69, 0.3);
        }
        
        /* Компактные стили для блока услуг */
        .services-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }

        .card-header {
            padding: 2rem 2rem 1rem !important;
            background: linear-gradient(135deg, #2c3e50, #34495e);
        }

        .card-title {
            font-size: 1.8rem !important;
            font-weight: 700;
            margin-bottom: 0.5rem !important;
        }

        .card-subtitle {
            font-size: 1.1rem !important;
            opacity: 0.9;
        }

        .card-body {
            padding: 1.8rem !important;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1rem;
        }

        .service-item {
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
            padding: 1rem;
            border-radius: 12px;
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
            background: #fafafa;
            min-height: 80px;
        }

        .service-item:hover {
            background: white;
            border-color: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(220, 53, 69, 0.1);
        }

        .service-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #198754 !important; /* Зеленый цвет Bootstrap */
    font-weight: 700;
    font-size: 2rem; /* Увеличиваем размер иконки */
    
}

        .service-content h6 {
            color: #2c3e50;
            margin-bottom: 0.3rem !important;
            font-weight: 600;
            font-size: 1.1rem;
            line-height: 1.3;
        }

        .service-content p {
            font-size: 1rem !important;
            line-height: 1.4;
            margin-bottom: 0;
        }
        
       
        
        /* 
        =====================================================================
        СЕКЦИЯ СРАВНЕНИЯ
        =====================================================================
        */
        .comparison-section {
            padding: 0 0;
			margin-bottom: 80px;
            background-color: #f8f9fa;
        }
        
        .comparison-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .comparison-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 20px;
            position: relative;
            color: #2c3e50;
        }
        
        .comparison-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            margin: 20px auto 0;
            border-radius: 2px;
        }
        
        .comparison-subtitle {
            text-align: center;
            margin-bottom: 40px;
            color: #6c757d;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            font-size: 1.2rem;
        }
        
        /* Десктопная версия (вкладки) */
        .comparison-desktop {
            display: none;
        }
        
        .comparison-tabs {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 30px;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .comparison-tab {
            padding: 12px 24px;
            background: none;
            border: none;
            cursor: pointer;
            font-weight: 500;
            font-size: 16px;
            color: #666;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
        }
        
        .comparison-tab.active {
            color: var(--primary-color);
            border-bottom-color: var(--primary-color);
        }
        
        .comparison-tab-content {
            width: 100%;
        }
        
        .comparison-tab-pane {
            display: none;
            animation: fadeIn 0.5s ease;
        }
        
        .comparison-tab-pane.active {
            display: block;
        }
        
        .comparison-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        
        /* Мобильная версия (аккордеон) */
        .comparison-mobile {
            display: block;
        }
        
        .comparison-accordion {
            width: 100%;
        }
        
        .comparison-accordion-item {
            margin-bottom: 15px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .comparison-accordion-header {
            padding: 18px 20px;
            background-color: white;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 500;
            transition: background-color 0.3s ease;
            position: relative;
            border: 1px solid #e9ecef;
        }
        
        .comparison-accordion-header:hover {
            background-color: #f8f9fa;
        }
        
 /*       .comparison-accordion-header.active {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
        } */
        
        .comparison-accordion-icon {
            transition: transform 0.3s ease;
        }
        
        .comparison-accordion-header.active .comparison-accordion-icon {
            transform: rotate(180deg);
        }
        
        .comparison-accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
        }
        
        .comparison-accordion-content.active {
            max-height: 1000px;
        }
        
        .comparison-cards {
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        /* Общие стили для карточек сравнения */
        .comparison-card {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .comparison-card.good {
            border-top: 4px solid #28a745;
        }
        
        .comparison-card.bad {
            border-top: 4px solid var(--primary-color);
        }
        
        .comparison-card-header {
            padding: 15px 20px;
            display: flex;
            align-items: center;
            background-color: #f8f9fa;
        }
        
        .comparison-card-icon {
            font-size: 24px;
            margin-right: 15px;
        }
        
        .comparison-card-body {
            padding: 20px;
        }
        
        /* Анимация */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        /* 
        =====================================================================
        КРАСИВЫЕ КНОПКИ МЕССЕНДЖЕРОВ
        =====================================================================
        */
        .compact-contact-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .btn-telegram, .btn-whatsapp, .btn-phone {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            text-decoration: none;
            position: relative;
        }
        
        .btn-telegram {
            background: #0088cc;
            color: white;
        }
        
        .btn-telegram:hover {
            background: #0077b3;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 136, 204, 0.4);
        }
        
        .btn-whatsapp {
            background: #25D366;
            color: white;
        }
        
        .btn-whatsapp:hover {
            background: #20bd5a;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
        }
        
        .btn-phone {
            background: var(--primary-color);
            color: white;
        }
        
        .btn-phone:hover {
            background: #c82333;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
        }
        
        /* Текст в кнопках скрываем, оставляем только иконки */
        .btn-telegram span, .btn-whatsapp span, .btn-phone span {
            display: none;
        }
        
       /* 
=====================================================================
ИСПРАВЛЕНИЯ ДЛЯ ФУТЕРА НА ВСЮ ШИРИНУ
=====================================================================
*/


/* Альтернативный вариант - если предыдущий не работает */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Ссылки в футере без подчеркивания */
.footer-links a {
    text-decoration: none !important;
    color: rgba(255, 255, 255, 0.8) !important;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white !important;
}

/* Центрирование кнопок мессенджеров в футере */
footer.compact-contact-buttons {
    display: flex;
    justify-content: center !important;
    gap: 1rem;
    margin-top: 1rem;
}
        
		/* Адаптивность для мобильных */
@media (max-width: 576px) {
    footer .compact-contact-buttons {
        gap: 0.8rem;
    }
    
    footer .compact-contact-buttons .btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}
        /* 
        =====================================================================
        АДАПТИВНОСТЬ (Responsive Design)
        =====================================================================
        */
        
        /* Планшеты и маленькие десктопы (≤ 768px) */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .hero-description {
                font-size: 1rem;
            }
            
            .hero-buttons .btn {
                display: block;
                width: 80%;
                margin: 10px auto;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .navbar {
                padding: 15px 0;
            }
            
            .about-section::before {
                display: none;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .section-subtitle {
                font-size: 1.1rem;
            }
            
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.8rem;
            }
            
            .service-item {
                padding: 0.8rem;
                min-height: 70px;
                margin: 0 !important;
            }
            
            .service-content h6 {
                font-size: 1rem;
            }
            
            .service-content p {
                font-size: 1rem !important;
            }
            
            .service-number {
                width: 35px;
                height: 35px;
                font-size: 1.7rem;
            }
            
            .advantage-item {
                padding: 1.5rem 1rem;
            }
            
            .advantage-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
            
            .card-header {
                padding: 2rem 1.5rem;
            }
            
            .card-title {
                font-size: 1.5rem;
            }
            
            .card-body {
                padding: 1.5rem;
            }
            
            .cta-buttons {
                display: flex;
                flex-direction: column;
                gap: 1rem;
                align-items: center;
            }
            
            .btn-primary,
            .btn-outline-primary {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 1.5rem;
            }
            
            .gallery-overlay {
                padding: 1.5rem;
            }
            
            .fullscreen-nav {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
                margin: 0 10px;
            }
            
            .btn-zoom-out {
                width: 45px;
                height: 45px;
            }
            
            .comparison-cards {
                padding: 15px;
                gap: 15px;
            }
            
            .comparison-card-header {
                padding: 12px 15px;
            }
            
            .comparison-card-body {
                padding: 15px;
            }
            
            .comparison-title {
                font-size: 1.8rem;
            }
        }
        
        /* Мобильные телефоны (≤ 576px) */
        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .hero-buttons .btn {
                width: 90%;
            }
            
            .offcanvas-body {
                padding: 1rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr !important;
            }
            
            .service-item {
                text-align: center;
                gap: 1rem;
            }
            
            .service-number {
                align-self: center;
            }
            
            .advantage-content h5 {
                font-size: 1.1rem;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .btn-view {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }
            
            .fullscreen-nav {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
                margin: 0 5px;
            }
            
            .btn-zoom-out {
                width: 40px;
                height: 40px;
            }
            
            .compact-contact-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .compact-contact-buttons .btn {
                width: 60px;
                height: 60px;
            }
        }
        
        /* Десктопы (≥ 768px) */
        @media (min-width: 768px) {
            .comparison-mobile {
                display: none;
            }
            
            .comparison-desktop {
                display: block;
            }
        }
        
        /* Десктопы (≥ 1200px) */
        @media (max-width: 1200px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        /* Offcanvas адаптивность */
        @media (max-width: 576px) {
            .offcanvas {
                width: 100% !important;
            }
            
            .offcanvas-body .nav-link {
                font-size: 1.1rem;
                padding: 12px 0;
            }
            
            .offcanvas-body .dropdown-item {
                font-size: 1rem;
                padding: 10px 20px;
            }
        }
        
        /* 
        =====================================================================
        АНИМАЦИИ ДЛЯ ПЛАВНЫХ СВАЙПОВ
        =====================================================================
        */
        .fullscreen-image-container {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .fullscreen-carousel {
            display: flex;
            transition: transform 0.3s ease;
            height: 100%;
        }

        .fullscreen-slide {
            flex: 0 0 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .fullscreen-slide img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: opacity 0.3s ease;
        }

        /* Индикатор загрузки */
        .loading-spinner {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s ease-in-out infinite;
            z-index: 10;
        }

        @keyframes spin {
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        /* 
        =====================================================================
        СТИЛИ ДЛЯ АКТИВНОГО СОСТОЯНИЯ ЛУПЫ
        =====================================================================
        */
        .btn-view.active {
            background: var(--primary-color) !important;
            border-color: var(--primary-color) !important;
            transform: scale(1.1);
        }

        .btn-view.active i {
            transform: rotate(45deg);
            transition: transform 0.3s ease;
        }
		
		/* 
    =====================================================================
    КРАСИВЫЕ ЗНАЧКИ МЕССЕНДЖЕРОВ
    =====================================================================
    */
    .compact-contact-buttons {
        display: flex;
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .btn-telegram, .btn-whatsapp, .btn-phone {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        transition: all 0.3s ease;
        text-decoration: none;
        position: relative;
        color: white;
        background: transparent;
        border: none;
    }
    
    .btn-telegram {
        background: #0088cc;
    }
    
    .btn-telegram:hover {
        background: #0077b3;
        transform: translateY(-3px) scale(1.1);
        box-shadow: 0 5px 15px rgba(0, 136, 204, 0.4);
    }
    
    .btn-whatsapp {
        background: #25D366;
    }
    
    .btn-whatsapp:hover {
        background: #20bd5a;
        transform: translateY(-3px) scale(1.1);
        box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    }
    
    .btn-phone {
        background: var(--primary-color);
    }
    
    .btn-phone:hover {
        background: #c82333;
        transform: translateY(-3px) scale(1.1);
        box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
    }
    
    /* Текст в кнопках скрываем, оставляем только иконки */
    .btn-telegram span, .btn-whatsapp span, .btn-phone span {
        display: none;
    }
    
    /* Адаптивность для значков */
    @media (max-width: 576px) {
        .compact-contact-buttons {
        gap: 1rem;
        flex-direction: row !important; /* Горизонтальное расположение */
        justify-content: center;
    }
    
    .compact-contact-buttons .btn-telegram,
    .compact-contact-buttons .btn-whatsapp,
    .compact-contact-buttons .btn-phone {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
    }
	
	
	/* 
=====================================================================
СЕКЦИЯ ВОПРОС-ОТВЕТ (FAQ)
=====================================================================
*/
.faq-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
	margin-top: 80px;
}

.faq-section::before {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(253, 126, 20, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.faq-accordion {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    background: white;
}

.faq-item {
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-header {
    padding: 0;
}

.faq-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.5rem 2rem;
    background: white;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.1rem;
    color: #2c3e50;
}

.faq-button:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
}

.faq-button:not(.collapsed) {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    color: var(--primary-color);
    box-shadow: inset 4px 0 0 var(--primary-color);
}

.faq-question {
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    position: relative;
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.plus-icon, .minus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

/* По умолчанию показываем плюс, скрываем минус */
.minus-icon {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-90deg);
}

/* Когда аккордеон открыт - показываем минус, скрываем плюс */
.faq-button:not(.collapsed) .plus-icon {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-button:not(.collapsed) .minus-icon {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-body {
    padding: 1.5rem 2rem;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.faq-body p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #495057;
}

.faq-body ul, .faq-body ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.faq-body li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.faq-body strong {
    color: var(--primary-color);
}

/* Альтернативный вариант с использованием псевдоэлементов (если не хотите использовать иконки Bootstrap) */
.faq-icon.alternative {
    position: relative;
    width: 20px;
    height: 20px;
}

.faq-icon.alternative::before,
.faq-icon.alternative::after {
    content: '';
    position: absolute;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.faq-icon.alternative::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.faq-icon.alternative::after {
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.faq-button:not(.collapsed) .faq-icon.alternative::after {
    opacity: 0;
    transform: translateX(-50%) rotate(90deg);
}

/* Адаптивность для FAQ */
@media (max-width: 768px) {
    .faq-button {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-body {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-question {
        padding-right: 0.75rem;
    }
}

@media (max-width: 576px) {
    .faq-button {
        padding: 1rem 1.25rem;
    }
    
    .faq-body {
        padding: 1rem 1.25rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* 
=====================================================================
СТИЛИ ДЛЯ КНОПКИ МЕССЕНДЖЕРОВ - ИСПРАВЛЕННЫЕ
=====================================================================
*/
.btn-messengers-dropdown {
    position: relative;
    display: inline-block;
}

.messengers-toggle {
    position: relative;
    padding-right: 2.5rem !important;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.messengers-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Состояние когда выпадающее меню открыто */
.messengers-toggle.active {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
}

.messengers-toggle.active .dropdown-arrow {
    transform: rotate(180deg);
}

.messengers-toggle:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

.messengers-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 8px;
    overflow: hidden;
}

/* Показываем выпадающее меню когда кнопка активна */
.btn-messengers-dropdown.active .messengers-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.messenger-option {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: #495057;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f8f9fa;
    background: white;
}

.messenger-option:last-child {
    border-bottom: none;
}

.messenger-option:hover {
    background-color: #f8f9fa;
    color: #495057;
    text-decoration: none;
}

.messenger-option.telegram:hover {
    background-color: rgba(0, 136, 204, 0.1);
    color: #0088cc;
}

.messenger-option.whatsapp:hover {
    background-color: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.messenger-option i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

/* Адаптивность для кнопки мессенджеров */
@media (max-width: 576px) {
    .btn-messengers-dropdown {
        width: 100%;
        max-width: 300px;
    }
    
    .messengers-toggle {
        width: 100%;
        justify-content: center;
    }
    
    .messengers-dropdown-menu {
        left: 0;
        right: 0;
        width: 100%;
    }
}

/* 
=====================================================================
СЕКЦИЯ ПОЛЕЗНОЙ ИНФОРМАЦИИ
=====================================================================
*/
.useful-info-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.useful-info-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(253, 126, 20, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.section-badge {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Карточки особенностей */
.info-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
	
}


.feature-icon-wrapper {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.feature-content h4 {
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-weight: 600;
    font-size: 1.3rem;
}

.feature-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.feature-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.feature-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Статистика */
.info-stats-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.info-stats-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    flex: 1;
}

.stats-title {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    text-align: center;
}

.stats-grid {
    display: grid;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.stat-bar {
    width: 100%;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
}

.stat-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    transition: width 1s ease-in-out;
}

/* Гарантия */
.info-guarantee {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.guarantee-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.guarantee-content h4 {
    color: white;
    margin-bottom: 0.8rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.guarantee-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.guarantee-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.guarantee-badge {
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* CTA блок */
.info-cta {
    position: relative;
    z-index: 1;
}

.cta-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.cta-card h3 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.cta-card p {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Адаптивность */
@media (max-width: 768px) {
    .info-feature-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon-wrapper {
        align-self: center;
    }
    
    .info-guarantee {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .info-feature-card {
        padding: 1.25rem;
    }
    
    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }
    
    .cta-card {
        padding: 1.5rem;
    }
    
    .cta-card h3 {
        font-size: 1.5rem;
    }
    
    .guarantee-badges {
        justify-content: center;
    }
}


/* 
=====================================================================
МИНИМАЛИСТИЧНОЕ МОБИЛЬНОЕ МЕНЮ С АНИМАЦИЕЙ КРЕСТИКА
=====================================================================
*/


/* Ссылки в мобильном меню темные */
        .offcanvas-body .nav-link {
            color: var(--dark-color) !important;
            padding: 15px 0;
            font-size: 1.2rem;
            border-bottom: 1px solid #dee2e6;
            margin: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
		
.offcanvas {
    background: #ffffff !important;
    border-left: 1px solid #e5e5e5;
    width: 100vw !important;
    transform: translateX(100%);
}

.offcanvas-header {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    background: #ffffff;
}

.offcanvas-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: #1a1a1a !important;
}

/* Анимированный крестик */
.btn-close {
    opacity: 0.7;
    transition: all 0.3s ease;
    position: relative;
    width: 10px;
    height: 10px;
}

.btn-close::before,
.btn-close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: all 0.3s ease;
}

.btn-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.btn-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Анимация при наведении */
.btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

/* Анимация при закрытии */
.btn-close:not(.collapsing) {
    transition: all 0.3s ease;
}

/* Аккордеон Bootstrap */
.offcanvas-body .accordion {
    --bs-accordion-border-color: #f0f0f0;
    --bs-accordion-border-width: 0px;
    --bs-accordion-border-radius: 0px;
    --bs-accordion-inner-border-radius: 0px;
    --bs-accordion-btn-padding-x: 1.5rem;
    --bs-accordion-btn-padding-y: 1rem;
    --bs-accordion-body-padding-x: 1.5rem;
    --bs-accordion-body-padding-y: 0;
}

.offcanvas-body .accordion-button {
    color: #333333;
    font-size: 1rem;
    font-weight: 400;
    border-bottom: 1px solid #f8f8f8;
    background: #ffffff;
}

.offcanvas-body .accordion-button:not(.collapsed) {
    color: #000000;
    background: #f8f9fa;
    box-shadow: none;
}

.offcanvas-body .accordion-button::after {
    background-size: 0.8rem;
}

.offcanvas-body .accordion-body {
    padding: 0;
    background: #f8f9fa;
}

.offcanvas-body .accordion-item {
    border: none;
    border-bottom: 1px solid #f8f8f8;
}

/* Простые ссылки (не аккордеон) */
.offcanvas-body .nav-link {
    color: #333333 !important;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 400;
    border: none;
    display: block;
    transition: all 0.2s ease;
    background: transparent;
    border-bottom: 1px solid #f8f8f8;
    text-decoration: none;
}

.offcanvas-body .nav-link:hover,
.offcanvas-body .nav-link.active {
    background: #f8f9fa;
    color: #000000 !important;
}

/* Ссылки внутри аккордеона */
.offcanvas-body .accordion-link {
    display: block;
    padding: 0.9rem 1.5rem 0.9rem 2.5rem;
    color: #666666 !important;
    font-size: 0.95rem;
    text-decoration: none;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.2s ease;
}

.offcanvas-body .accordion-link:hover {
    background: #e9ecef;
    color: #000000 !important;
}

.offcanvas-body .accordion-link:last-child {
    border-bottom: none;
}

/* Контакты внизу */
.offcanvas-body .compact-contact-buttons {
    padding: 1.2rem 1.5rem;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: center;
    gap: 1rem;
    background: #ffffff;
}

/* Простые стили для кнопок */
.offcanvas-body .btn-telegram {
    background: #0088cc;
}

.offcanvas-body .btn-whatsapp {
    background: #25D366;
}

.offcanvas-body .btn-phone {
    background: #dc3545;
}

.offcanvas-body .btn-telegram:hover,
.offcanvas-body .btn-whatsapp:hover,
.offcanvas-body .btn-phone:hover {
    opacity: 0.9;
    transform: none;
}

/* Анимация появления */
.offcanvas.offcanvas-end {
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.offcanvas.show {
    transform: translateX(0);
}

/* Адаптивность */
@media (max-width: 360px) {
    .offcanvas-body .nav-link {
        padding: 0.9rem 1.2rem;
    }
	
	
	
	
	
	
	
	
    
    .offcanvas-body .accordion-link {
        padding: 0.8rem 1.2rem 0.8rem 2rem;
    }
    
    .offcanvas-header {
        padding: 1rem 1.2rem;
    }
    
    .offcanvas-body .compact-contact-buttons {
        padding: 1rem 1.2rem;
    }
}

