:root {
	--primary-color: #0067a5;
	--primary-dark: #005a8f;
	--secondary-color: #d3ff3a;
	--light-color: #F5F9FA;
	--dark-color: #434750;
	--text-color: #455A64;
	--border-radius: 16px;
	--box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
	--highlight-color: #d3ff3a;
	--blue-shadow: 0 0 10px rgba(0, 103, 165, 0.4);
	--blue-shadow-intense: 0 0 15px rgba(0, 103, 165, 0.7);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Montserrat', sans-serif;
	color: var(--text-color);
	background-color: #fff;
	line-height: 1.6;
	overflow-x: hidden;
}

a {
	text-decoration: none;
	color: var(--primary-dark);
	transition: all 0.3s ease;
}

a:hover {
	color: var(--secondary-color);
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

/* Hero Section - ИСПРАВЛЕННЫЙ КОД */
        .hero {
            position: relative;
            height: 40vh;
            max-height: 400px;
            min-height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin-bottom: 40px;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                        url('../picture/reviews.jpg') no-repeat center center/cover;
            z-index: -1;
        }

        .hero-content {
            max-width: 800px;
            padding: 0 20px;
            text-shadow: 0 0 10px rgba(211, 255, 58, 0.5);
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 30px;
            font-weight: 600;
            text-transform: uppercase;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: var(--blue-shadow);
        }

        .btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(211, 255, 58, 0.5);
        }

        .btn-secondary {
            background-color: var(--secondary-color);
            box-shadow: var(--blue-shadow);
        }

        .btn-secondary:hover {
            background-color: #c4e635;
            color: white !important;
            box-shadow: 0 5px 15px rgba(211, 255, 58, 0.5);
        }

        /* Section Styling */
        section {
            padding: 60px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary-dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--primary-color);
            border-radius: 2px;
        }

        .section-title p {
            color: var(--text-color);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Reviews Section - Gallery Style */
        .reviews-section {
            background-color: var(--light-color);
            padding: 60px 0;
        }

        .reviews-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 25px;
            margin-bottom: 50px;
        }

        .review-image-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: transform 0.3s ease;
            position: relative;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            height: fit-content;
            border: 2px solid transparent;
            background: linear-gradient(white, white) padding-box,
                      linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) border-box;
        }

        .review-image-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .review-image-container {
            position: relative;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f8f9fa;
            overflow: hidden;
            flex: 1;
        }

        .review-image-container img {
            width: 100%;
            height: auto;
            object-fit: contain;
            display: block;
            transition: transform 0.3s ease;
        }

        .review-image-card:hover .review-image-container img {
            transform: scale(1.02);
        }

        .review-image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            padding: 20px;
            color: white;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .review-image-card:hover .review-image-overlay {
            transform: translateY(0);
        }

        .review-image-overlay h3 {
            margin-bottom: 5px;
            font-size: 1.2rem;
        }

        .review-image-overlay p {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* VK Reviews Banner */
        .vk-reviews-banner {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            border-radius: var(--border-radius);
            padding: 40px;
            text-align: center;
            color: white;
            box-shadow: var(--box-shadow);
            margin: 0 auto;
            max-width: 800px;
            position: relative;
            overflow: hidden;
        }

        .vk-reviews-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
            transform: rotate(45deg);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% {
                transform: translateX(-100%) translateY(-100%) rotate(45deg);
            }
            100% {
                transform: translateX(100%) translateY(100%) rotate(45deg);
            }
        }

        .vk-reviews-banner-content {
            position: relative;
            z-index: 2;
        }

        .vk-reviews-banner h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }

        .vk-reviews-banner p {
            font-size: 1.1rem;
            margin-bottom: 25px;
            opacity: 0.9;
        }

        .vk-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 15px 30px;
            background: white;
            color: var(--primary-color);
            border-radius: 30px;
            font-weight: 600;
            text-transform: uppercase;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .vk-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            background: var(--secondary-color);
            color: var(--dark-color);
        }

        .vk-btn i {
            font-size: 1.2rem;
        }

        /* Image Modal */
        .image-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .image-modal-content {
            max-width: 90%;
            max-height: 90%;
            position: relative;
        }

        .image-modal-content img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            border-radius: 10px;
        }

        .close-modal {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 30px;
            cursor: pointer;
            background: var(--primary-color);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .close-modal:hover {
            background: var(--secondary-color);
            color: var(--dark-color);
        }

        

        /* Back to top button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            box-shadow: var(--blue-shadow);
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background-color: var(--primary-dark);
            transform: translateY(-5px);
            box-shadow: 0 6px 15px rgba(211, 255, 58, 0.5);
        }

        /* Book Now Fixed Button */
        .book-now-fixed {
            position: fixed;
            bottom: 30px;
            right: 100px;
            z-index: 1000;
            background: var(--primary-color);
            color: white;
            padding: 15px 25px;
            border-radius: 30px;
            font-weight: 600;
            text-transform: uppercase;
            box-shadow: var(--blue-shadow-intense);
            transition: all 0.2s ease;
            cursor: pointer;
            border: none;
        }

        .book-now-fixed:hover,
        .book-now-fixed:active {
            background: var(--secondary-color);
            color: var(--dark-color) !important;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 5px 15px rgba(211, 255, 58, 0.5);
        }

        .book-now-fixed:active {
            transform: scale(1.1) translateY(2px);
            box-shadow: 0 3px 8px rgba(211, 255, 58, 0.7);
        }

        .btn-book {
            display: block;
            background-color: var(--secondary-color);
            color: var(--dark-color);
            padding: 15px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            text-align: center;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            border: none;
            cursor: pointer;
            width: 100%;
            box-shadow: var(--blue-shadow);
        }
        
        .btn-book:hover {
            background-color: #c4e635;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(211, 255, 58, 0.5);
        }


        /* МЕДИА-ЗАПРОСЫ ДЛЯ АДАПТИВНОСТИ */
        @media (max-width: 992px) {
            nav ul {
    position: absolute !important;
    top: 60px !important;
    right: 20px !important;
    left: auto !important;
    bottom: auto !important;
    width: auto !important;
    background-color: rgba(255, 255, 255, 0.98) !important;
    border-radius: var(--border-radius) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
    padding: 15px !important;
    display: none !important;
    flex-direction: column !important;
    min-width: 180px;
    max-width: 250px;
    z-index: 1000 !important;
    overflow-y: auto;
    max-height: 80vh;
  }
  
nav ul.show {
    display: flex !important;
  }
  
nav ul li {
    margin: 8px 0 !important;
  }
  
nav ul li a {
    text-align: right !important;
    display: block !important;
    padding: 10px 15px !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    width: 100%;
  }
            
            .mobile-menu-btn {
                display: block;
                margin-left: auto;
                background: none;
                border: none;
                font-size: 24px;
                color: var(--primary-dark);
                cursor: pointer;
                z-index: 1001;
            }
            
            /* Оверлей для закрытия меню */
            .menu-overlay {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0, 0, 0, 0.5);
                z-index: 998;
            }
            
            .menu-overlay.active {
                display: block;
            }

            .book-now-fixed {
                bottom: 90px;
                right: 20px;
                padding: 12px 20px;
                font-size: 14px;
            }

            /* Hero для планшетов */
            .hero {
                height: 35vh;
                min-height: 250px;
            }
            
            .hero::before {
                background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                            url('../picture/reviews.jpg') no-repeat center center/cover;
            }
        }

        @media (max-width: 768px) {
            .container {
                width: 95%;
                padding: 0 10px;
            }
            
            section {
                padding: 40px 0;
            }
            
            .hero {
                height: 30vh;
                min-height: 200px;
            }
            
            .hero::before {
                background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                            url('../picture/reviews.jpg') no-repeat center center/cover;
            }
            
            .hero h1 {
                font-size: 1.8rem;
                margin-bottom: 15px;
            }
            
            .hero p {
                font-size: 1rem;
                margin-bottom: 20px;
            }
            
            .btn {
                padding: 10px 20px;
                font-size: 14px;
            }
            
            .section-title {
                margin-bottom: 30px;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .section-title p {
                font-size: 0.9rem;
            }
            
            .reviews-gallery {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .vk-reviews-banner {
                padding: 30px 20px;
            }
            
            .vk-reviews-banner h3 {
                font-size: 1.5rem;
            }
            
            .vk-reviews-banner p {
                font-size: 1rem;
            }
            
            .book-now-fixed {
                bottom: 80px;
                right: 15px;
                padding: 10px 16px;
                font-size: 12px;
            }
            
            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
        }

        @media (max-width: 576px) {
            .hero {
                height: 25vh;
                min-height: 180px;
            }
            
            .hero::before {
                background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                            url('../picture/reviews.jpg') no-repeat center center/cover;
            }
            
            .hero h1 {
                font-size: 1.5rem;
            }
            
            .hero p {
                font-size: 0.9rem;
            }
            
            .hero-content {
                padding: 0 15px;
            }
            
            .section-title h2 {
                font-size: 1.6rem;
            }
            
            .vk-reviews-banner h3 {
                font-size: 1.3rem;
            }
            
            .vk-reviews-banner p {
                font-size: 0.9rem;
            }
            
            .vk-btn {
                padding: 12px 25px;
                font-size: 14px;
            }
            
            .book-now-fixed {
                bottom: 70px;
                right: 10px;
                padding: 8px 14px;
                font-size: 11px;
            }
            
            .logo img {
                height: 35px;
            }
        }

        @media (max-width: 400px) {
            .hero {
                height: 22vh;
                min-height: 150px;
            }
            
            .hero::before {
                background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                            url('../picture/reviews.jpg') no-repeat center center/cover;
            }
            
            .hero h1 {
                font-size: 1.3rem;
            }
            
            .hero p {
                font-size: 0.8rem;
            }
        }

        /* Блокировка скролла при открытом меню */
        body.menu-open {
            overflow: hidden;
        }

        /* Анимация иконки бургера */
        .mobile-menu-btn .fa-bars {
            transition: transform 0.3s ease;
        }

        .mobile-menu-btn.active .fa-bars {
            transform: rotate(90deg);
        }