       /* Tour Hero Section */
        .tour-hero {
            padding: 180px 0 60px;
        }

        .tour-title {
            font-size: 42px;
						text-align: center;
            margin-bottom: 20px;
            background: linear-gradient(to right, var(--white), var(--primary-orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .tour-subtitle {
            font-size: 20px;
            color: var(--light-gray);
            margin-bottom: 40px;
        }

        /* Main Content Layout */
        .main-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        /* Gallery Section */
        .gallery-section {
            background: var(--glass);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 30px;
            border: 1px solid var(--glass-border);
            height: fit-content;
        }

        .main-image {
            height: 300px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            margin-bottom: 20px;
        }

        .main-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .main-image:hover img {
            transform: scale(1.05);
        }

        .thumbnail-gallery {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-bottom: 25px;
        }

        .thumbnail {
            height: 80px;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .thumbnail.active {
            opacity: 1;
            border: 2px solid var(--primary-orange);
        }

        .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .thumbnail:hover {
            opacity: 1;
            transform: translateY(-3px);
        }

        /* Price Section */
        .price-section {
            text-align: center;
            padding: 25px;
            background: rgba(255, 122, 0, 0.1);
            border-radius: 15px;
            border: 1px solid rgba(255, 122, 0, 0.2);
        }

        .price {
            font-size: 42px;
            font-weight: 700;
            background: linear-gradient(to right, var(--primary-orange), var(--secondary-orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
        }

        .price-note {
            color: var(--light-gray);
            font-size: 16px;
            margin-bottom: 20px;
        }

        .booking-button {
            width: 100%;
            background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
            color: var(--dark-gray);
            border: none;
            padding: 16px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 5px 20px rgba(255, 122, 0, 0.4);
            margin-bottom: 15px;
        }

        .booking-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255, 122, 0, 0.6);
        }

        .booking-note {
            text-align: center;
            color: var(--light-gray);
            font-size: 14px;
        }

        /* Description Section */
        .description-section {
            background: var(--glass);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid var(--glass-border);
        }

        .info-section {
            margin-bottom: 30px;
        }

        .info-section h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--white);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .info-section h3 i {
            color: var(--primary-orange);
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .info-item i {
            color: var(--primary-orange);
            width: 20px;
            text-align: center;
        }

        .info-text {
            color: var(--light-gray);
        }

        .description {
            line-height: 1.7;
            color: var(--light-gray);
						text-align: center;
        }

        /* Included Section */
        .included-section {
            padding: 80px 0;
            background: linear-gradient(to bottom, rgba(10, 10, 10, 0.7), rgba(15, 15, 15, 0.9));
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            font-size: 36px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-orange), var(--secondary-orange));
            border-radius: 2px;
        }

        .included-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .included-card {
            background: var(--glass);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 25px;
            border: 1px solid var(--glass-border);
            transition: all 0.3s ease;
        }

        .included-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .included-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--white);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .included-card h3 i {
            color: var(--primary-orange);
        }

        .included-card ul {
            list-style: none;
            padding-left: 0;
        }

        .included-card li {
            color: var(--light-gray);
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .included-card li:last-child {
            border-bottom: none;
        }

        .included-card li i {
            color: var(--primary-orange);
            font-size: 12px;
        }
            .tour-hero {
                padding: 150px 0 40px;
            }

            .tour-title {
                font-size: 32px;
            }

            .tour-subtitle {
                font-size: 18px;
            }

            .main-image {
                height: 250px;
            }

            .thumbnail {
                height: 60px;
            }

            .price {
                font-size: 36px;
            }
        

        @media (max-width: 480px) {
            .thumbnail-gallery {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .info-grid {
                grid-template-columns: 1fr;
            }
            
            .included-grid {
                grid-template-columns: 1fr;
            }
            
            .description-section,
            .gallery-section {
                padding: 25px;
            }
        }
				/* ==================== */
/* МОБИЛЬНАЯ АДАПТАЦИЯ */
/* ==================== */

@media (max-width: 1024px) {
    .main-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tour-title {
        font-size: 36px;
    }
    
    .tour-subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .tour-hero {
        padding: 130px 0 30px;
    }
    
    .tour-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .tour-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
        padding: 0 15px;
    }
    
    .main-content {
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .gallery-section,
    .description-section {
        padding: 25px;
        border-radius: 15px;
    }
    
    .main-image {
        height: 250px;
        margin-bottom: 15px;
    }
    
    .thumbnail-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .thumbnail {
        height: 70px;
    }
    
    .price-section {
        padding: 20px;
    }
    
    .price {
        font-size: 32px;
    }
    
    .price-note {
        font-size: 14px;
    }
    
    .booking-button {
        padding: 14px;
        font-size: 16px;
    }
    
    .info-section h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .info-item {
        padding: 10px 0;
    }
    
    .info-text {
        font-size: 14px;
    }
    
    .description {
        font-size: 16px;
        line-height: 1.6;
        text-align: left;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .included-section {
        padding: 60px 0;
    }
    
    .included-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .included-card {
        padding: 20px;
    }
    
    .included-card h3 {
        font-size: 18px;
    }
    
    .included-card li {
        font-size: 14px;
        padding: 6px 0;
    }
}

@media (max-width: 480px) {
    .tour-hero {
        padding: 120px 0 25px;
    }
    
    .tour-title {
        font-size: 24px;
    }
    
    .tour-subtitle {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .main-content {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .gallery-section,
    .description-section {
        padding: 20px;
        border-radius: 12px;
    }
    
    .main-image {
        height: 200px;
    }
    
    .thumbnail {
        height: 60px;
    }
    
    .price-section {
        padding: 15px;
    }
    
    .price {
        font-size: 28px;
    }
    
    .booking-button {
        padding: 12px;
        font-size: 15px;
    }
    
    .booking-note {
        font-size: 12px;
    }
    
    .info-section {
        margin-bottom: 25px;
    }
    
    .info-section h3 {
        font-size: 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .info-item {
        gap: 8px;
    }
    
    .info-text {
        font-size: 13px;
    }
    
    .description {
        font-size: 15px;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .included-section {
        padding: 40px 0;
    }
    
    .included-card {
        padding: 15px;
    }
    
    .included-card h3 {
        font-size: 16px;
    }
    
    .included-card li {
        font-size: 13px;
    }
}

/* Очень маленькие экраны */
@media (max-width: 360px) {
    .tour-title {
        font-size: 22px;
    }
    
    .thumbnail-gallery {
        grid-template-columns: 1fr;
    }
    
    .thumbnail {
        height: 50px;
    }
    
    .price {
        font-size: 24px;
    }
    
    .info-grid {
        gap: 8px;
    }
}