/* ===== БАЗОВЫЕ СТИЛИ ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font-montserrat: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --gradient-sunset: linear-gradient(135deg, #fb923c 0%, #fbbf24 100%);
    --gradient-purple: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    --shadow-premium: 0 10px 40px rgba(102, 126, 234, 0.3), 0 4px 12px rgba(118, 75, 162, 0.2);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-montserrat);
    background: #ffffff;
    color: #000000;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: var(--font-montserrat);
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== УТИЛИТНЫЕ КЛАССЫ ===== */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-hero {
    margin-top: 10rem;
    max-width: 1440px;



}


.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 9998;

    transition: opacity 0.4s ease;
}

.overlay.active {
    display: block;
    opacity: 0.5;
}

.feedback-modal.active {
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}


/* Скрыть скроллбар */
.scrollbar-hide {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

/* ===== АНИМАЦИИ ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 1;
        /*transform: scale(1) rotate(0deg);*/
    }
    50% {
        opacity: 0.7;
        /*transform: scale(1.1) rotate(180deg);*/
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-in-out;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out;
}

.animate-sparkle {
    animation: sparkle 2s ease-in-out infinite;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;

}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

/* ===== TRANSPARENT HEADER ===== */


.header-contact {
    font-family: var(--font-montserrat);
    font-weight: 500;
    color: #ffffff;
    font-size: 1.1375rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon-custom {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    transition: transform 0.3s;
}

.social-icon-custom:hover {
    transform: scale(1.1);
}

/* ===== HERO CONTENT ===== */
.hero-content {
    display: flex;
    align-items: center;
    height: 100vh;
}


@media (max-width: 768px) {
    .hero-content {
        padding: 2rem;
        height: 100vh;
       justify-content: center;
        text-align: center;
    }
}


.hero-headline {
    font-family: var(--font-montserrat);
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    font-size: 3.1rem;
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.hero-subheadline {
    font-family: var(--font-montserrat);
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 0.08em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: var(--gradient-sunset);
    border-radius: 50px 0 50px 50px;
    box-shadow: 0 8px 24px rgba(251, 146, 60, 0.6), 0 0 40px rgba(251, 191, 36, 0.4);
    font-family: var(--font-montserrat);
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: 0.1em;
    color: #ffffff;
    text-transform: uppercase;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(251, 146, 60, 0.8), 0 0 50px rgba(251, 191, 36, 0.6);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: 100%;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem;
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px) scale(1.1);
}

.benefit-value {
    font-family: var(--font-montserrat);
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.benefit-label {
    font-family: var(--font-montserrat);
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    font-size: 0.65rem;
    text-align: center;
    line-height: 1.2;
}


/* CSS анимации для баннера */
.animate-slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
}

/* Класс для запуска анимаций */
.animate-active {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

/* Задержки для анимаций */
.animate-slide-in-left.animate-active {
    transition-delay: var(--delay, 0s);
}

.animate-slide-up.animate-active {
    transition-delay: var(--delay, 0s);
}

.animate-fade-in.animate-active {
    transition-delay: var(--delay, 0s);
}

/* ===== SECTION STYLES ===== */


.section-heading {
    font-family: var(--font-montserrat);
    font-weight: 800;
    color: #000000;
    letter-spacing: -0.02em;
    font-size: 2.2rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

/* ===== TOUR CARDS ===== */
.tours-scroll {
    display: flex;
    gap: 1.5rem;
    /*overflow-x: auto;*/
    padding-bottom: 1rem;
}

.tour-card {
    flex-shrink: 0;
    transition: all 0.3s;
}


.tour-card:hover .swiper-slide-img {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}



/* ===== МЕДИА ЗАПРОСЫ ===== */
@media (min-width: 768px) {
    .hero-headline {
        font-size: 3.375rem;
    }

    .hero-subheadline {
        font-size: 1.875rem;
    }

    .section-heading {
        font-size: 2.5rem;
    }

    .benefit-value {
        font-size: 2.5rem;
    }

    .benefit-label {
        font-size: 0.75rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        width: 50%;
    }

    .tour-card {
        width: 300px;
    }

    .section {
        padding: 4.25rem 0;
    }
}

@media (min-width: 1024px) {
    .hero-headline {
        font-size: 4.05rem;
    }

    .hero-subheadline {
        font-size: 2.25rem;
    }

    .section-heading {
        font-size: 3rem;
    }

    /* Desktop Header Fix */
    .desktop-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 0;
    }

    .desktop-header nav {
        display: flex;
        flex-grow: 1;
        justify-content: center;
    }

    .desktop-header nav ul {
        display: flex;
        gap: 1.5rem;
        list-style: none;
    }

    .desktop-header .header-contact {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 0.5rem;
        flex-shrink: 0;
    }
}

@media (min-width: 1280px) {
    .hero-headline {
        font-size: 5.5rem;
    }

    .hero-subheadline {
        font-size: 2.5rem;
    }
}






/* Анимация появления с bounce */
@keyframes bounceInDown {
    from, 60%, 75%, 90%, to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        transform: translate3d(0, -3000px, 0) scaleY(3);
    }

    60% {
        opacity: 1;
        transform: translate3d(0, 25px, 0) scaleY(0.9);
    }

    75% {
        transform: translate3d(0, -10px, 0) scaleY(0.95);
    }

    90% {
        transform: translate3d(0, 5px, 0) scaleY(0.985);
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}


/* ===== RESPONSIVE DISPLAY UTILITIES ===== */
.desktop-only {
    display: none;
}

.mobile-only {
    display: block;
}

@media (min-width: 1024px) {
    .desktop-only {
        display: flex;
    }

    .mobile-only {
        display: flex;
    }
}

/* Mobile Menu Button */
.mobile-menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 50;
    padding: 2rem;
    display: none;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 8px;
}

.mobile-menu nav {
    margin-top: 4rem;
}

.mobile-menu nav a {
    display: block;
    padding: 1rem 0;
    font-family: var(--font-montserrat);
    font-weight: 600;
    font-size: 1.25rem;
    color: #000000;
    border-bottom: 1px solid #e5e7eb;
    text-transform: uppercase;
}

/* ===== SEARCH FORM STYLES ===== */
.search-form-container:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 80px rgba(251, 146, 60, 0.25);
}

.search-form-container:hover > div:first-child {
    opacity: 1;
}

.search-submit-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(251, 146, 60, 0.7), 0 0 40px rgba(251, 191, 36, 0.5);
}

.search-submit-button:hover i[data-lucide="arrow-right"] {
    transform: translateX(4px);
}

/* Responsive Grid for Search Form */
@media (min-width: 768px) {
    .search-row-1, .search-row-2 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (min-width: 1024px) {
    .search-row-1, .search-row-2 {
        grid-template-columns: repeat(4, 1fr) !important;
    }

    .search-submit-button {
        width: auto !important;
        padding: 1rem 5rem !important;
    }
}







/* ===== PRELOADER ANIMATIONS ===== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1e1b4b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.logo-loader {
    width: 200px;
    height: 60px;
    margin-bottom: 2rem;
    position: relative;
    animation: logoFloat 3s ease-in-out infinite;
}

.logo-loader img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(251, 146, 60, 0.6));
}

.loader-progress {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 1rem 0;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #fb923c, #fbbf24);
    border-radius: 10px;
    width: 0%;
    animation: progressLoad 2s ease-in-out forwards;
}

.loader-text {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-montserrat);
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 1rem;
}

.loader-dots {
    display: inline-block;
}

.loader-dots span {
    opacity: 0;
    animation: dotPulse 1.5s infinite ease-in-out;
}

.loader-dots span:nth-child(1) { animation-delay: 0s; }
.loader-dots span:nth-child(2) { animation-delay: 0.2s; }
.loader-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes logoFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

@keyframes progressLoad {
    0% { width: 0%; }
    20% { width: 25%; }
    40% { width: 50%; }
    60% { width: 75%; }
    80% { width: 90%; }
    100% { width: 100%; }
}

@keyframes dotPulse {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* ===== STAGGERED ANIMATIONS ===== */
.stagger-item {
    opacity: 0;
    transform: translateY(30px);
}

.stagger-item.animate-in {
    animation: staggerSlideUp 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes staggerSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== PARALLAX EFFECTS ===== */
.parallax-layer {
    transition: transform 0.3s ease-out;
}

/* ===== HERO ENTRANCE ANIMATIONS ===== */
.hero-entrance {
    animation: heroEntrance 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes heroEntrance {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ===== GLOW PULSE ANIMATIONS ===== */
.glow-pulse {
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(251, 146, 60, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(251, 146, 60, 0.8);
    }
}



/*Header*/
/* ===== АДАПТИВНАЯ ШАПКА ===== */

/* Базовые стили для шапки */
.transparent-header {
    position: absolute;
    /*top: 0;*/
    /*left: 0;*/
    /*right: 0;*/
    /*z-index: 30;*/
    /*background: transparent;*/
    /*transition: all 0.3s ease;*/

    top: 0;
    left: 0;
    width: 100%;
    opacity: 1 !important;
    transform: none !important;
    z-index: 1000;
}

/*.transparent-header.scrolled {*/
/*    background: rgba(0, 0, 0, 0.8);*/
/*    backdrop-filter: blur(10px);*/
/*    -webkit-backdrop-filter: blur(10px);*/
/*}*/

/* Логотип */
.header-logo {
    width: 320px;
    height: 96px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
    transition: all 0.3s ease;
}

/* Десктопная шапка */
.desktop-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.desktop-header nav {
    display: flex;
    flex-grow: 1;
    justify-content: center;
}

.header-nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav a {
    font-family: var(--font-montserrat);
    font-weight: 600;
    color: #ffffff;
    font-size: 1.1375rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: opacity 0.3s;
    position: relative;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-sunset);
    transition: width 0.3s ease;
}

.header-nav a:hover {
    opacity: 0.7;
}

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

.header-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    flex-shrink: 0;
}

.header-contact div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-contact span {
    font-family: var(--font-montserrat);
    font-weight: 500;
    color: #ffffff;
    font-size: 1.1375rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Социальные иконки */
.social-icons-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.social-icon,
.social-icon-custom {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.social-icon:hover,
.social-icon-custom:hover {
    transform: scale(1.1);
}

.social-icon-custom {
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
}

.social-icon-custom svg {
    width: 24px;
    height: 24px;
}

/* Мобильная шапка */
.mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.mobile-logo {
    width: 200px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.mobile-menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.mobile-menu-button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.7);
}

/* Мобильное меню */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 100;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu-content {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    z-index: 101;
    padding: 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu-content.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.mobile-menu-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-nav {
    margin-bottom: 2rem;
}

.mobile-menu-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-nav li {
    margin-bottom: 1rem;
}

.mobile-menu-nav a {
    display: block;
    padding: 1rem;
    font-family: var(--font-montserrat);
    font-weight: 600;
    font-size: 1.25rem;
    color: #ffffff;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-menu-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.mobile-menu-contact {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.mobile-menu-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: white;
    font-family: var(--font-montserrat);
}

.mobile-menu-contact-item:last-child {
    margin-bottom: 0;
}

.mobile-menu-contact-item i {
    width: 20px;
    height: 20px;
}

.mobile-menu-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
}

/* Адаптивные медиа-запросы */
@media (max-width: 1023px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: flex !important;
    }

    .header-logo {
        width: 200px;
        height: 60px;
    }
}

@media (min-width: 1024px) {
    .mobile-only {
        display: none !important;
    }

    .desktop-only {
        display: flex !important;
    }

    .mobile-menu-overlay,
    .mobile-menu-content {
        display: none !important;
    }
}

/* Адаптив для очень маленьких экранов */
@media (max-width: 375px) {
    .mobile-logo {
        width: 150px;
        height: 45px;
    }

    .mobile-menu-content {
        padding: 1.5rem;
    }

    .mobile-menu-nav a {
        font-size: 1.1rem;
        padding: 0.75rem;
    }
}

/* Анимации для мобильного меню */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(100%);
    }
}

/* Улучшенный скролл для мобильного меню */
.mobile-menu-content::-webkit-scrollbar {
    width: 4px;
}

.mobile-menu-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-content::-webkit-scrollbar-thumb {
    background: var(--gradient-sunset);
    border-radius: 4px;
}

/*блок актуальных отелей*/

.tour-info {
    padding: 1.5rem 0;
    background: linear-gradient(90deg, #fb923c 0%, #ec4899 50%, #a855f7 100%);
}

.tour-info-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1rem;
}

.tour-info-text {
    text-align: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.125rem;
}

/*форма на странице туров*/

/* Price Note */
.price-note {
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.price-note-text {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #4b5563;
}

/* CTA Section */
.cta-section {
    margin-top: 4rem;
}

.cta-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
    border-radius: 1.5rem;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #1f2937;
}

.cta-emoji {
    display: inline-block;
    margin-left: 0.5rem;
    color: #fb923c;
}

.cta-text {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
    border-radius: 9999px;
    text-decoration: none;
    background: linear-gradient(135deg, #fb923c 0%, #ec4899 50%, #a855f7 100%);
    box-shadow: 0 10px 40px rgba(251, 146, 60, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-4px);
}

.hotels-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1rem;
}


.hero_page{
    position: relative;
    height: 50vh;
    display: flex;
    align-items: center;
    background-image: url("../images/4c7f0c599452ad560b7b4a42a2a711e6.jpeg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}


.hero_page::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3));
    z-index: 1;
}


.hero-container_page {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1440px;
    padding-left: 1rem;
    margin: 0 auto;
    margin-top: 5rem;

}
