        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary-orange: #FF7A00;
            --secondary-orange: #FF9E40;
            --light-orange: #FFB870;
            --dark-orange: #f7651c;
            --dark-gray: #1a1a1a;
            --medium-gray: #3a3a3a;
            --light-gray: #f0f0f0;
            --white: #FFFFFF;
            --glass: rgba(255, 255, 255, 0.1);
            --glass-border: rgba(255, 255, 255, 0.2);
        }

        body {
            background: #000000;
            color: var(--white);
            overflow-x: hidden;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(255, 122, 0, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 158, 64, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
            z-index: -1;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

/* Header Styles */
header {
    background: var(--glass);
    backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    gap: 20px; /* Добавил отступ между элементами */
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 45px;
    width: auto;
}

.desktop-nav {
    display: flex;
    flex: 1; /* Занимает доступное пространство */
    justify-content: center;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.desktop-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
    font-size: 20px;
    white-space: nowrap;
}

.desktop-nav a:hover {
    color: var(--dark-orange);
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-orange), var(--dark-orange));
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    color: var(--dark-gray);
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    font-size: 16px;
    white-space: nowrap;
    flex-shrink: 0;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.6);
}

        /* Hero Section */
        .hero {
            padding: 150px 0 0px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 45px;
            margin-bottom: 10px;
    background: linear-gradient(to right, 
        var(--white) 0%, 
        var(--white) 20%,
				var(--white) 40%,
				var(--dark-orange) 60%, 
        var(--dark-orange) 70%, 
        var(--dark-orange) 80%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            line-height: 1;
        }

        .hero p {
            font-size: 22px;
            margin: 0 auto 40px;
            color: var(--light-gray);
            max-width: 700px;
            line-height: 1.6;
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .floating-element {
            position: absolute;
            background: rgba(255, 122, 0, 0.1);
            border-radius: 50%;
            animation: float 15s infinite linear;
        }

        .floating-element:nth-child(1) {
            width: 100px;
            height: 100px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            width: 150px;
            height: 150px;
            top: 60%;
            left: 80%;
            animation-delay: -5s;
        }

        .floating-element:nth-child(3) {
            width: 70px;
            height: 70px;
            top: 80%;
            left: 20%;
            animation-delay: -10s;
        }

        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
            }
            100% {
                transform: translateY(0) rotate(360deg);
            }
        }

        /* Slider Section */
        .slider-section {
            padding: 20px 0;
            position: relative;
        }

        .section-title {
text-align: center;
    margin-bottom: 70px;
    font-size: 42px;
    position: relative;
    background: linear-gradient(to right, 
        var(--white) 0%, 
        var(--white) 20%,
				var(--white) 40%,
				var(--dark-orange) 60%, 
        var(--dark-orange) 70%, 
        var(--dark-orange) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    line-height: 1;
        }

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

        .slider-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
            border: 1px solid var(--glass-border);
        }

        .slider {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .slide {
            min-width: 100%;
            position: relative;
            height: 400px;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
						opacity: 0.7;
        }

        .slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(10, 10, 10, 0.95), transparent);
            padding: 40px;
            color: var(--white);
        }

        .slide-content h3 {
            font-size: 36px;
            margin-bottom: 15px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .slide-content p {
            margin-bottom: 25px;
            color: var(--light-gray);
            max-width: 600px;
            font-size: 18px;
            line-height: 1.6;
        }

        .slide-button {
            background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
            color: var(--dark-gray);
            border: none;
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 5px 15px rgba(255, 122, 0, 0.4);
        }

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

        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 15px;
        }

        .slider-dot {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--medium-gray);
            cursor: pointer;
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }

        .slider-dot.active {
            background: var(--dark-orange);
            transform: scale(1.3);
            border-color: var(--medium-gray);
        }

        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: var(--glass);
            backdrop-filter: blur(10px);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.4s ease;
            z-index: 10;
            border: 1px solid var(--glass-border);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            color: var(--white);
            font-size: 24px;
        }

        .slider-arrow:hover {
            background: rgba(255, 122, 0, 0.2);
            transform: translateY(-50%) scale(1.1);
            color: var(--primary-orange);
        }

        .slider-arrow.prev {
            left: 280px;
        }

        .slider-arrow.next {
            right: 280px;
        }

        /* Top Destinations Section */
        .top-destinations {
            padding: 100px 0;
            position: relative;
        }

        .destinations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }

        .destination-card {
            background: var(--glass);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.5s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid var(--glass-border);
            position: relative;
        }

        .destination-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 122, 0, 0.1), transparent);
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: 1;
        }

        .destination-card:hover::before {
            opacity: 1;
        }

        .destination-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .destination-image {
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .destination-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
						opacity: 0.8;
        }

        .destination-card:hover .destination-image img {
            transform: scale(1.1);
        }

        .destination-content {
            padding: 25px;
            position: relative;
            z-index: 2;
        }

        .destination-content h3 {
            font-size: 24px;
            margin-bottom: 10px;
            color: var(--white);
        }

        .destination-content p {
            color: var(--light-gray);
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .destination-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

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

        /* Events Section */
        .events {
            padding: 0 0 60px;
            position: relative;
        }

        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }

        .event-card {
            background: var(--glass);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.5s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid var(--glass-border);
        }

        .event-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .event-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .event-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
				.event-video {
    position: relative;
    width: 100%;
    height: 300px; /* фиксированная высота контейнера */
    overflow: hidden;
}

.event-video video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* обрезает края, сохраняя пропорции */
    object-position: center; /* центрирует видео */
}

        .event-date {
            position: absolute;
            top: 20px;
            left: 20px;
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
            color: var(--dark-gray);
            padding: 10px 15px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 16px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .event-card:hover .event-image img {
            transform: scale(1.1);
        }

        .event-content {
            padding: 25px;
        }

        .event-content h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--white);
        }

        .event-content p {
            color: var(--light-gray);
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .event-details {
    display: flex;
    flex-direction: column; /* главное изменение */
    gap: 15px; /* расстояние между элементами */
    color: var(--light-gray);
    font-size: 14px;
    margin-bottom: 20px;
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
        }

        .event-detail {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .event-detail i {
            color: var(--primary-orange);
        }

				        .section-newos  {
text-align: center;
    margin-bottom: 80px;
    font-size: 42px;
    position: relative;
    background: linear-gradient(to right, 
        var(--white) 0%, 
        var(--white) 20%,
				var(--white) 40%,
				var(--dark-orange) 60%, 
        var(--dark-orange) 70%, 
        var(--dark-orange) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    line-height: 1;
        }
				.block-1 {
    margin-top: 50px; /* Отступ снизу 50px */
		position: relative;
}

				/* Стили для секции отзывов */
.reviews-hero {
    background: var(--glass);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.reviews-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.reviews-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 0;
}

.reviews-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-item {
    background: var(--glass);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.review-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--glass);
    border-bottom: 1px solid var(--glass-border);
}

.review-client {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h3 {
    margin: 0 0 0.25rem 0;
    color: var(--dark-orange);
    font-size: 1.1rem;
}

.tour-name {
    color: var(--light-gray);
    font-size: 0.9rem;
}

.review-rating {
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: bold;
}

.review-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.review-item.active .review-answer {
    padding: 1.5rem;
    max-height: 500px;
}

.review-answer p {
    margin: 0 0 1rem 0;
    line-height: 1.6;
    color: var(--light-gray);
}

.review-date {
    color: var(--dark-orange);
    font-size: 0.9rem;
    text-align: right;
}

/* Анимация для иконки */
.review-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--dark-orange);
    transition: transform 0.3s ease;
}

.review-item.active .review-question::after {
    content: '-';
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .reviews-container-wrapper {
        padding: 40px 20px;
        margin: 30px 15px 0;
    }
    
    .reviews-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .reviews-arrow.prev {
        left: -50px;
    }
    
    .reviews-arrow.next {
        right: -50px;
    }
    
    .review-text {
        font-size: 16px;
    }
		.section-newos {
			margin-top: 40px;
		}
}

        /* News Section */
        .news {
            padding: 20px 0 60px;
            position: relative;
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
            gap: 30px;
        }

        .news-card {
            background: var(--glass);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.5s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid var(--glass-border);
        }

        .news-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .news-image {
            height: 220px;
            overflow: hidden;
        }

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

        .news-card:hover .news-image img {
            transform: scale(1.1);
        }

        .news-content {
            padding: 25px;
        }

        .news-date {
            color: var(--primary-orange);
            font-size: 16px;
            margin-bottom: 15px;
            display: block;
            font-weight: 600;
        }

        .news-content h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--white);
            line-height: 1.4;
        }

        .news-content p {
            color: var(--light-gray);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .news-link {
            color: var(--primary-orange);
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .news-link:hover {
            gap: 15px;
        }

        /* Footer */
        footer {
            background: var(--glass);
            padding: 70px 0 30px;
            border-top: 1px solid var(--glass-border);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-column h3 {
            margin-bottom: 25px;
            font-size: 22px;
            position: relative;
            display: inline-block;
            color: var(--white);
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(to right, var(--primary-orange), var(--secondary-orange));
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 12px;
        }

        .footer-column a {
            color: var(--light-gray);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-column a:hover {
            color: var(--dark-orange);
						transform:  scale(1.1);
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
						font-size: 32px;

        }


        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--glass-border);
            color: var(--light-gray);
            font-size: 16px;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 48px;
            }
            
            .destinations-grid,
            .events-grid,
            .news-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }

@media (max-width: 768px) {
    /* Фиксируем хедер */
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 150px; /* Фиксированная высота */
        background:var(--glass);
        backdrop-filter: blur(20px);
        z-index: 1000;
        overflow: visible; /* Убираем скрытие overflow */
    }
    		.events {
			margin-top: 60px;
		}


    /* Контейнер хедера */
    .header-container {
        flex-direction: column;
        gap: 10px;
        height: 100%; /* Занимает всю высоту хедера */
        padding: 10px 0px;
        align-items: center;
        justify-content: center; /* Центрируем по вертикали */
    }

    /* Логотип */
    .logo {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
    }

    .logo img {
        position: static; /* Убираем fixed */
        margin: 0; /* Убираем отступы */
				margin-bottom: 35px;
				margin-top: 20px;
    }

    /* Кнопка забронировать */
    .cta-button {
        position: static; /* Убираем relative */
        margin: 0; /* Убираем отступы */
        order: 2; /* Порядок в flex-контейнере */
				margin-bottom: 35px;
				margin-top: 20px;
    }
    .mobile-menu-toggle {
        display: flex; /* Включаем на мобильных */
        width: 90px; /* Еще меньше ширина */
        padding: 8px 16px;
        font-size: 13px;
    }

    /* Сдвигаем основной контент под хедер */
    body {
        padding-top: 130px; /* Равно высоте хедера */
    }

    .hero {
        padding: 50px 0 100px; /* Уменьшаем верхний отступ */
    }

    nav ul {
        gap: 20px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .slide {
        height: 400px;
    }
    
    .section-title {
        font-size: 32px;
    }
		.hero-content {
			margin-bottom: -110px;
		}

		.video-showcase {
			margin-top: -70px;
		}
		.destinations-grid {
			margin-bottom: -60px;
		}
		.reviews-container {
			margin-top: -70px;
		}
        .top-destinations {
            padding: 20px 0;
            position: relative;
        }
}

        /* Animation Effects */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .fade-in {
            animation: fadeIn 1s ease forwards;
        }

        .delay-1 { animation-delay: 0.2s; }
        .delay-2 { animation-delay: 0.4s; }
        .delay-3 { animation-delay: 0.6s; }

				@media (max-width: 768px) {
    
    .slider-arrow.prev {
        left: 20px;
    }
    
    .slider-arrow.next {
        right: 20px;
    }
    
}

@media (max-width: 576px) {
 
    
    .slider-arrow.prev {
        left: 15px;
    }
    
    .slider-arrow.next {
        right: 15px;
    }

}

/* Дополнительная адаптация для очень маленьких экранов */
@media (max-width: 400px) {

    
    .slider-arrow.prev {
        left: 10px;
    }
    
    .slider-arrow.next {
        right: 10px;
    }
    
}