﻿/* ===== Базовые переменные ===== */
:root {
    --orange: #FF6B35;
    --orange-hover: #E55A2B;
    --green: #22C55E;
    --green-hover: #16A34A;
    --white: #FFFFFF;
    --bg: #FAFAFA;
    --black: #000000;
    --dark: #111111;
    --gray: #666666;
    --light-gray: #999999;
    --border: #DDDDDD;
    
    /* Современные акцентные цвета */
    --accent-primary: #FF6B35;
    --accent-secondary: #FF8C42;
    --accent-tertiary: #FFA07A;
    --deep-purple: #2D1B4E;
    --vibrant-blue: #4F46E5;
    --electric-cyan: #06B6D4;
    --sunset-gradient: linear-gradient(135deg, #FF6B35 0%, #FF8C42 50%, #FFA07A 100%);
    --modern-dark-gradient: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    --vibrant-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --ocean-gradient: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #8b5cf6 100%);
}

/* Плавный переход между страницами */
html {
    scroll-behavior: smooth;
}

body {
    animation: pageFadeIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes pageFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    padding-top: 100px;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body.page-transition {
    opacity: 0.85;
    transform: translateY(-10px) scale(0.98);
    filter: blur(3px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    gap: 0px;
}

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

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

/* ===== Кнопки ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 2px solid var(--dark);
    background: transparent;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.2s;
}

.btn:hover {
    background: var(--dark);
    color: var(--white);
}

.btn-primary {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--orange-hover);
    border-color: var(--orange-hover);
}

.btn-full {
    width: 100%;
}

/* ===== Красивая кнопка для школьных туров ===== */
.btn-contact-school {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 50%, #FFA07A 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 
        0 10px 40px rgba(255, 107, 53, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-contact-school::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn-contact-school::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease, opacity 0.4s ease;
    opacity: 0;
}

.btn-contact-school:hover::before {
    left: 100%;
}

.btn-contact-school:hover::after {
    width: 400px;
    height: 400px;
    opacity: 1;
}

.btn-contact-school:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 60px rgba(255, 107, 53, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 80px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 50%, #FF8C42 100%);
}

.btn-contact-school .btn-arrow {
    font-size: 20px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.btn-contact-school:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-contact-school:active {
    transform: translateY(2px) scale(1.02);
    box-shadow: 
        0 5px 20px rgba(255, 107, 53, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.3);
}

/* ===== Современная форма заказа школьного тура с эффектами ===== */
.contact-school-modern {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 50%, #FFA07A 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-school-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(60px);
    animation: floatBg 20s ease-in-out infinite;
}

.contact-school-modern::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(60px);
    animation: floatBg 25s ease-in-out infinite reverse;
}

/* Декоративные частицы */
.contact-school-modern .particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.contact-school-modern .particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particle-float 15s infinite ease-in-out;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.contact-school-modern .particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 18s; }
.contact-school-modern .particle:nth-child(2) { left: 20%; top: 60%; animation-delay: 2s; animation-duration: 22s; }
.contact-school-modern .particle:nth-child(3) { left: 70%; top: 30%; animation-delay: 4s; animation-duration: 16s; }
.contact-school-modern .particle:nth-child(4) { left: 80%; top: 70%; animation-delay: 1s; animation-duration: 20s; }
.contact-school-modern .particle:nth-child(5) { left: 50%; top: 10%; animation-delay: 3s; animation-duration: 19s; }

@keyframes particle-float {
    0%, 100% {
        transform: translateY(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    50% {
        transform: translateY(-100px) scale(1);
    }
}

@keyframes floatBg {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

/* Анимация для цены */
@keyframes priceGlow {
    from {
        filter: drop-shadow(0 0 5px rgba(255, 107, 53, 0.3));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.8));
    }
}

/* Анимация для баннера галереи */
@keyframes bannerShine {
    0%, 100% {
        transform: translateX(-100%) rotate(45deg);
    }
    50% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* Кнопка баннера фотоотчёта */
.gallery-banner-btn {
    background: white;
    color: #FF6B35;
    border: none;
    padding: 16px 48px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.gallery-banner-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.gallery-banner-btn:active {
    transform: translateY(-2px);
}

/* Баннер фотоотчёта */
.tour-gallery-banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
}

.tour-gallery-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/img/freepik_2862226010.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.contact-school-modern-wrapper {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-school-header {
    padding: 40px 0;
    text-align: center;
}

.school-icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.school-icon-bounce {
    font-size: 80px;
    animation: iconBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.3));
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.1);
    }
}

.contact-school-modern-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(255, 255, 255, 0.3);
    position: relative;
    display: inline-block;
}

.contact-school-modern-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    border-radius: 2px;
}

.contact-school-modern-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.contact-school-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.benefit-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.benefit-badge span:last-child {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
}

.contact-school-modern-form {
    background: var(--white);
    padding: 50px;
    border-radius: 28px;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.3);
}

.form-row-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 5px;
}

.form-group-modern {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.form-label-modern {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.label-icon {
    font-size: 18px;
}

.form-input-modern,
.form-textarea-modern {
    padding: 18px 22px;
    font-size: 16px;
    border: 2px solid #e8ecef;
    border-radius: 16px;
    background: linear-gradient(135deg, #fafbfc 0%, #f8f9fa 100%);
    color: var(--dark);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
}

.form-input-modern:focus,
.form-textarea-modern:focus {
    outline: none;
    border-color: #FF6B35;
    background: var(--white);
    box-shadow: 
        0 0 0 5px rgba(255, 107, 53, 0.1),
        0 8px 25px rgba(255, 107, 53, 0.15);
    transform: translateY(-2px);
}

.form-input-modern::placeholder,
.form-textarea-modern::placeholder {
    color: #999;
}

.form-textarea-modern {
    resize: vertical;
    min-height: 130px;
}

.consent-checkbox-modern {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin: 30px 0 25px 0;
    cursor: pointer;
    user-select: none;
}

.consent-checkbox-modern input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-custom-modern {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #d0d5dd;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.checkbox-custom-modern::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    transition: transform 0.3s ease;
}

.consent-checkbox-modern input[type="checkbox"]:checked ~ .checkbox-custom-modern {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    border-color: #FF6B35;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.consent-checkbox-modern input[type="checkbox"]:checked ~ .checkbox-custom-modern::after {
    transform: translate(-50%, -50%) scale(1);
}

.consent-checkbox-modern input[type="checkbox"]:focus ~ .checkbox-custom-modern {
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.2);
}

.checkbox-text-modern {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.checkbox-text-modern a {
    color: #FF6B35;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.checkbox-text-modern a:hover {
    color: #FF8C42;
}

.btn-submit-school-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    padding: 22px 50px;
    font-size: 17px;
    font-weight: 800;
    color: var(--white);
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 50%, #FFA07A 100%);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 
        0 15px 50px rgba(255, 107, 53, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-submit-school-modern .btn-text {
    position: relative;
    z-index: 2;
}

.btn-submit-school-modern .btn-icon {
    font-size: 24px;
    position: relative;
    z-index: 2;
    animation: sparkle 1.5s ease-in-out infinite;
}

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

.btn-submit-school-modern .btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.7s ease;
}

.btn-submit-school-modern:hover .btn-shine {
    left: 100%;
}

.btn-submit-school-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.7s ease;
}

.btn-submit-school-modern:hover::before {
    left: 100%;
}

.btn-submit-school-modern::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.7s ease, height 0.7s ease, opacity 0.5s ease;
    opacity: 0;
}

.btn-submit-school-modern:hover::after {
    width: 500px;
    height: 500px;
    opacity: 1;
}

.btn-submit-school-modern:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 
        0 25px 70px rgba(255, 107, 53, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 100px rgba(255, 107, 53, 0.3);
    background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 50%, #FF8C42 100%);
}

.btn-submit-school-modern .btn-arrow-modern {
    font-size: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
    z-index: 2;
}

.btn-submit-school-modern:hover .btn-arrow-modern {
    transform: translateX(8px);
}

.btn-submit-school-modern:active {
    transform: translateY(2px) scale(1.01);
    box-shadow: 
        0 8px 30px rgba(255, 107, 53, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.form-note-modern {
    margin-top: 25px;
    font-size: 13px;
    color: #999;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .form-row-modern {
        grid-template-columns: 1fr;
    }
    
    .contact-school-modern-form {
        padding: 35px;
    }
    
    .contact-school-modern-title {
        font-size: 36px;
    }
    
    .contact-school-modern-subtitle {
        font-size: 17px;
    }
}
    
/* ===== Шапка ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 0px 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 20px;
    font-weight: 1200;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--dark);
    margin-left: -350px;
    flex-shrink: 0;
}

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

.logo-fallback {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 70px;
}

.nav {
    display: flex;
    gap: 35px;
    flex-shrink: 0;
    margin-left: 50px;
}

.nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 21px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 18px 32px;
    border-radius: 50px;
    background: linear-gradient(145deg, #FF8C00 0%, #FFA500 50%, #FF8C00 100%);
    border: 2px solid #FFB347;
    box-shadow: 
        0 4px 0 #CC7000,
        0 0 20px rgba(255, 140, 0, 0.6),
        0 0 40px rgba(255, 140, 0, 0.3),
        0 6px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.nav a:hover::before {
    left: 100%;
}

.nav a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.6), transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s, opacity 0.4s;
    opacity: 0;
    z-index: -1;
}

.nav a:hover::after {
    width: 300px;
    height: 300px;
    opacity: 1;
}

.nav a:hover,
.nav a.active {
    color: var(--white);
    background: linear-gradient(145deg, #FFA500 0%, #FF8C00 50%, #FFA500 100%);
    border: 2px solid #FFD699;
    box-shadow: 
        0 4px 0 #CC7000,
        0 0 40px rgba(255, 140, 0, 1),
        0 0 80px rgba(255, 140, 0, 0.7),
        0 0 120px rgba(255, 140, 0, 0.4),
        0 0 160px rgba(255, 140, 0, 0.2),
        0 6px 15px rgba(0, 0, 0, 0.4);
    transform: translateY(-3px) scale(1.05);
}

.nav a:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 
        0 2px 0 #CC7000,
        0 0 20px rgba(255, 140, 0, 0.6),
        0 0 40px rgba(255, 140, 0, 0.3);
}

.nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.nav a:hover::before {
    left: 100%;
}

.nav a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.6), transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s, opacity 0.4s;
    opacity: 0;
    z-index: -1;
}

.nav a:hover::after {
    width: 300px;
    height: 300px;
    opacity: 1;
}

.nav a:hover,
.nav a.active {
    color: var(--white);
    background: linear-gradient(145deg, #FFA500 0%, #FF8C00 50%, #FFA500 100%);
    border: 2px solid #FFD699;
    box-shadow: 
        0 4px 0 #CC7000,
        0 0 40px rgba(255, 140, 0, 1),
        0 0 80px rgba(255, 140, 0, 0.7),
        0 0 120px rgba(255, 140, 0, 0.4),
        0 0 160px rgba(255, 140, 0, 0.2),
        0 6px 15px rgba(0, 0, 0, 0.4);
    transform: translateY(-3px) scale(1.05);
}

.nav a:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 
        0 2px 0 #CC7000,
        0 0 20px rgba(255, 140, 0, 0.6),
        0 0 40px rgba(255, 140, 0, 0.3);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-shrink: 0;
    margin-left: 100px;
}

.header-contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.header-phones {
    display: flex;
    gap: 15px;
}

.header-phone {
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.header-phone:hover {
    color: var(--orange);
}

.header-address {
    font-size: 17px;
    color: var(--gray);
    white-space: nowrap;
}

.header-hours {
    font-size: 15px;
    color: var(--orange);
    white-space: nowrap;
    font-weight: 600;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--dark);
    padding: 3px;
    border-radius: 8px;
}

@media (max-width: 1200px) {
    .nav {
        gap: 20px;
    }
    
    .nav a {
        font-size: 16px;
        padding: 12px 20px;
    }

    .logo {
        margin-left: 0;
    }
}
    
@media (max-width: 992px) {
    .header-right {
        display: none;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        border-bottom: 1px solid var(--border);
        display: none;
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        text-align: center;
    }
}
    
/* ===== Герой ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 70px;
    position: relative;
    overflow: hidden;
    background: 
        radial-gradient(circle at 15% 50%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(255, 107, 53, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, rgba(255, 140, 66, 0.2) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: float 20s ease-in-out infinite;
    filter: blur(60px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.3) 0%, rgba(59, 130, 246, 0.2) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: float 25s ease-in-out infinite reverse;
    filter: blur(60px);
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(102, 126, 234, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(6, 182, 212, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 60% 60%, rgba(255, 255, 255, 0.05) 0%, transparent 30%);
    z-index: 0;
    animation: gradientShift 15s ease-in-out infinite;
    mix-blend-mode: screen;
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 30px) scale(0.9);
    }
}
    
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 107, 53, 1);
    border-radius: 50%;
    animation: particle-float 15s infinite ease-in-out;
    box-shadow: 
        0 0 20px rgba(255, 107, 53, 1),
        0 0 40px rgba(255, 107, 53, 0.8),
        0 0 60px rgba(255, 107, 53, 0.6);
    filter: blur(1px);
}

.hero-particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 18s; background: rgba(255, 107, 53, 1); }
.hero-particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 22s; background: rgba(102, 126, 234, 1); }
.hero-particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 16s; background: rgba(6, 182, 212, 1); }
.hero-particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 20s; background: rgba(255, 140, 66, 1); }
.hero-particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 19s; background: rgba(118, 75, 162, 1); }
.hero-particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 21s; background: rgba(6, 182, 212, 1); }
.hero-particle:nth-child(7) { left: 70%; animation-delay: 2.5s; animation-duration: 17s; background: rgba(255, 107, 53, 1); }
.hero-particle:nth-child(8) { left: 80%; animation-delay: 1.5s; animation-duration: 23s; background: rgba(102, 126, 234, 1); }
.hero-particle:nth-child(9) { left: 90%; animation-delay: 3.5s; animation-duration: 18s; background: rgba(255, 160, 122, 1); }

@keyframes particle-float {
    0%, 100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    50% {
        transform: translateY(50vh) scale(1);
    }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(0px);
    transform: scale(1.1);
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    color: var(--white);
}

.hero h1 {
    font-size: 60px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 25px;
    line-height: 1.25;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-title-line {
    display: block;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    line-height: 1.25;
    font-weight: 800;
}

.hero-title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-title-line.highlight {
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: 0.03em;
    filter: drop-shadow(0 4px 15px rgba(255, 140, 0, 0.6));
    padding-bottom: 5px;
    text-shadow: none;
    position: relative;
}

.hero-title-line.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.4), transparent);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-features {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.hero-features span {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    padding: 14px 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 25px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.hero-features span:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero .btn-primary {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 50%, #FFA07A 100%);
    border: 3px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 24px 70px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50px;
    animation: fadeInUp 0.8s ease 0.8s forwards, blinkPulse 1.5s infinite;
    opacity: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(255, 107, 53, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@keyframes blinkPulse {
    0%, 100% {
        box-shadow: 
            0 10px 40px rgba(255, 107, 53, 0.5),
            0 0 0 1px rgba(255, 255, 255, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.3),
            0 0 20px rgba(255, 107, 53, 0.6);
        transform: scale(1);
    }
    50% {
        box-shadow: 
            0 10px 40px rgba(255, 107, 53, 0.5),
            0 0 0 1px rgba(255, 255, 255, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.3),
            0 0 60px rgba(255, 107, 53, 1),
            0 0 100px rgba(255, 107, 53, 0.8);
        transform: scale(1.05);
    }
}
    
.hero .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.6s;
}

.hero .btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.hero .btn-primary:hover::before {
    left: 100%;
}

.hero .btn-primary:hover::after {
    opacity: 1;
}

.hero .btn-primary:hover {
    background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 50%, #FF8C42 100%);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 60px rgba(255, 107, 53, 0.7),
        0 0 0 1px rgba(255, 255, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 80px rgba(255, 107, 53, 0.4);
}

.hero .btn-primary:active {
    transform: translateY(2px) scale(1.02);
    box-shadow: 
        0 3px 0 #CC4411,
        0 0 20px rgba(255, 107, 53, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 
            0 10px 40px rgba(255, 107, 53, 0.5),
            0 0 0 1px rgba(255, 255, 255, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 
            0 15px 50px rgba(255, 107, 53, 0.7),
            0 0 0 1px rgba(255, 255, 255, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.4),
            0 0 60px rgba(255, 107, 53, 0.3);
    }
}

.btn-large-hero {
    padding: 24px 70px !important;
    font-size: 20px !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

/* ===== Секции ===== */
section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 50px;
    color: var(--dark);
}

/* ===== Туры ===== */
.tours {
    background: #FFFFFF;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.tours::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    animation: subtleFloat 20s ease-in-out infinite;
}

.tours::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, rgba(255, 140, 66, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    animation: subtleFloat 25s ease-in-out infinite reverse;
}

@keyframes subtleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.tours-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: transparent;
    border: none;
    padding: 0;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 60px;
    color: var(--dark);
    text-align: center;
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #FF6B35 0%, #FF8C42 50%, #667eea 100%);
    margin: 25px auto 0;
    border-radius: 3px;
    animation: expandWidth 1s ease forwards;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}

/* Горизонтальные карточки туров */
.tour-card-wide {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 2px 10px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    border: 1px solid rgba(0, 0, 0, 0.06);
    width: 100%;
    height: 220px;
    cursor: pointer;
    animation: slideIn 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.tour-card-wide:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(255, 107, 53, 0.4),
        0 10px 30px rgba(255, 107, 53, 0.3),
        0 0 30px rgba(255, 107, 53, 0.25),
        0 0 60px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.6);
}

.tour-card-wide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 50%, rgba(255, 255, 255, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.tour-card-wide:hover::after {
    opacity: 0;
}

.tour-card-wide:nth-child(1) { animation-delay: 0.1s; }
.tour-card-wide:nth-child(2) { animation-delay: 0.2s; }
.tour-card-wide:nth-child(3) { animation-delay: 0.3s; }
.tour-card-wide:nth-child(4) { animation-delay: 0.4s; }
.tour-card-wide:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tour-card-wide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0) 0%, rgba(118, 75, 162, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.tour-card-wide:hover::before {
    opacity: 0;
}

.tour-image-wide {
    width: 350px;
    height: 100%;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
}

.tour-img-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.tour-card-wide:hover .tour-img-full {
    transform: none;
}

.tour-image-wide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.tour-image-wide {
    width: 350px;
    height: 100%;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
}

.tour-img-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.tour-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 
        0 8px 25px rgba(255, 107, 53, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    z-index: 2;
    animation: badgePulse 2s infinite;
}

.tour-badge.new {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 
        0 8px 25px rgba(16, 185, 129, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    animation: badgePulseGreen 2s infinite;
}

@keyframes badgePulseGreen {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 8px 25px rgba(16, 185, 129, 0.5),
            0 0 0 1px rgba(255, 255, 255, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 12px 35px rgba(16, 185, 129, 0.7),
            0 0 0 1px rgba(255, 255, 255, 0.3);
    }
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 8px 25px rgba(255, 107, 53, 0.5),
            0 0 0 1px rgba(255, 255, 255, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 12px 35px rgba(255, 107, 53, 0.7),
            0 0 0 1px rgba(255, 255, 255, 0.3);
    }
}
    
.tour-info-wide {
    padding: 30px 45px;
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
}

.tour-text-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    justify-content: center;
}

.tour-info-wide h3 {
    font-size: 30px;
    color: var(--dark);
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #1a1a2e 0%, #333333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tour-description {
    color: var(--gray);
    margin: 0;
    font-size: 15px;
    font-weight: 500;
}

.tour-price {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 auto;
    min-width: 150px;
    text-align: center;
    filter: drop-shadow(0 2px 8px rgba(255, 107, 53, 0.3));
}

.tour-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.tour-places {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8ecff 100%);
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    box-shadow: 
        0 4px 15px rgba(102, 126, 234, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.places-icon {
    font-size: 18px;
}

.places-text {
    font-size: 13px;
    color: #555;
    font-weight: 500;
}

.places-text strong {
    color: #FF6B35;
    font-size: 17px;
    font-weight: 700;
}

/* ===== Карточка маршрута ===== */
.tour-route-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 20px;
    border: 2px solid var(--orange);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.15);
}

.route-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.route-item:last-child {
    border-bottom: none;
}

.route-item:hover {
    transform: translateX(5px);
}

.route-time {
    font-size: 16px;
    font-weight: 700;
    color: var(--orange);
    min-width: 70px;
    text-align: center;
    background: rgba(255, 107, 53, 0.1);
    padding: 6px 12px;
    border-radius: 8px;
}

.route-place {
    flex: 1;
    font-size: 14px;
    color: var(--dark);
    font-weight: 500;
}

/* ===== Карточка транспорта ===== */
.tour-transport-card {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 15px;
    padding: 20px;
    border: 2px solid #2196F3;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.15);
}

.tour-transport-card p {
    margin: 0;
    color: var(--dark);
}

.tour-info-wide .btn {
    padding: 14px 40px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--dark) 0%, #333 100%);
    color: var(--white);
    border: 2px solid var(--dark);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.tour-info-wide .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    transition: left 0.5s ease;
}

.tour-info-wide .btn:hover::before {
    left: 100%;
}

.tour-info-wide .btn:hover {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-hover) 100%);
    border-color: var(--green);
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.5);
}

@media (max-width: 900px) {
    .tour-card-wide {
        flex-direction: column;
        height: auto;
    }
    
    .tour-image-wide {
        width: 100%;
        height: 200px;
    }

.tour-info-wide {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.tour-text-content {
    flex: 1;
}

.tour-text-content h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.tour-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.tour-price {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    align-self: center;
    margin: 10px 0;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.tour-places {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #666;
}

.places-icon {
    font-size: 18px;
}

.places-text {
    font-size: 15px;
    color: #666;
}

.places-text strong {
    color: #FF6B35;
    font-weight: 700;
}

/* Убираем кнопку бронирования из карточек */
.tour-info-wide .btn {
    display: none;
}

    .tour-meta {
        align-items: flex-start;
        width: 100%;
    }
    
    .tour-info-wide .btn {
        width: 100%;
    }
}

/* Старые стили tour-row оставляем для совместимости */
.tour-row {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 20px 25px;
    transition: background 0.2s;
}

.tour-row:hover {
    background: var(--bg);
}

.tour-image {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.tour-content {
    flex: 1;
}

.tour-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
}

.tour-header h3 {
    font-size: 20px;
    color: var(--dark);
}

.tour-desc {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 12px;
}

.tour-meta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.tour-city {
    font-size: 13px;
    color: var(--gray);
}

.tour-row .btn {
    padding: 10px 20px;
    font-size: 12px;
}

/* ===== Календарь ===== */
.page-header {
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
    padding: 120px 0 80px;
    color: var(--white);
    text-align: center;
    margin-top: 70px;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.page-header p {
    font-size: 18px;
    opacity: 0.95;
}

.calendar-section {
    background: var(--bg);
    padding: 60px 0;
}

.calendar-container {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 30px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.calendar-nav button {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s;
}

.calendar-nav button:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.calendar-month {
    font-size: 18px;
    font-weight: 700;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: var(--border);
    border: 1px solid var(--border);
    border-bottom: none;
}

.calendar-weekdays div {
    background: var(--orange);
    padding: 12px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: var(--border);
    border: 1px solid var(--border);
    border-top: none;
}

.calendar-day {
    background: var(--white);
    padding: 12px;
    text-align: center;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.15s;
}

.calendar-day:hover:not(.empty):not(.disabled) {
    background: var(--orange);
    color: var(--white);
}

.calendar-day.has-tour {
    background: var(--green);
    color: var(--white);
    font-weight: 600;
}

.calendar-day.has-tour:hover {
    background: var(--green-hover);
}

.calendar-day.empty {
    background: var(--bg);
    cursor: default;
}

.calendar-day.disabled {
    color: var(--light-gray);
    cursor: not-allowed;
    pointer-events: none;
}

.calendar-day.today {
    background: var(--dark);
    color: var(--white);
    font-weight: 600;
}

.tour-list {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--border);
}

.tour-list h3 {
    margin-bottom: 20px;
    font-size: 16px;
}

.tour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--bg);
    margin-bottom: 10px;
}

.tour-item-info h4 {
    font-size: 14px;
    margin-bottom: 3px;
}

.tour-item-info p {
    font-size: 12px;
    color: var(--gray);
}

.tour-item-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--green);
}

/* ===== О НАС - СОВРЕМЕННЫЙ СТИЛЬ ===== */

/* Hero секция */
.about-hero {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    padding: 80px 0 80px;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: patternFloat 60s linear infinite;
}

@keyframes patternFloat {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

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

.about-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin: 0 0 10px 0;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.about-hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 40px 0;
    font-weight: 500;
}

.about-hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px 40px;
    text-align: center;
    min-width: 160px;
    transition: all 0.3s ease;
}

.hero-stat-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.hero-stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* Основная секция */
.about-section {
    background: #FFFFFF;
    padding: 100px 0;
}

.about-intro {
    margin-bottom: 50px;
}

.about-intro p {
    font-size: 20px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 25px;
}

.about-highlight {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 140, 66, 0.05) 100%);
    border-left: 4px solid #FF6B35;
    padding: 25px 30px;
    border-radius: 0 15px 15px 0;
    font-style: italic;
    color: #666;
    font-size: 17px;
}

.section-title-modern {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 60px 0 20px 0;
    text-align: center;
}

.section-description {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

/* Карточки возможностей */
.opportunities-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 50px 0;
}

.opportunity-card-modern {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    border: 2px solid rgba(255, 107, 53, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.opportunity-card-modern:hover {
    transform: translateY(-10px);
    border-color: #FF6B35;
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.25);
}

.opportunity-card-icon {
    font-size: 64px;
    margin-bottom: 20px;
    display: block;
}

.opportunity-card-modern h4 {
    font-size: 20px;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 12px;
    line-height: 1.3;
}

.opportunity-card-modern p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Преимущества */
.benefits-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 50px 0;
}

.benefit-card-modern {
    display: flex;
    gap: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(255, 107, 53, 0.15);
    transition: all 0.3s ease;
}

.benefit-card-modern:hover {
    border-color: #FF6B35;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
    transform: translateX(10px);
}

.benefit-card-icon {
    font-size: 48px;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.benefit-card-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
}

.benefit-card-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Философия */
.about-philosophy {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    border-radius: 30px;
    padding: 70px 50px;
    margin: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(255, 107, 53, 0.3);
}

.about-philosophy::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.philosophy-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 25px;
}

.about-philosophy h3 {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.about-philosophy p {
    font-size: 1.2rem;
    color: #FFFFFF;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* Заключение */
.about-conclusion {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 140, 66, 0.05) 100%);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    margin-top: 50px;
}

.about-conclusion h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #FF6B35;
    margin: 0 0 20px 0;
}

.about-conclusion p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin: 0 0 20px 0;
}

.about-signature {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FF6B35;
    font-style: italic;
    margin-top: 25px !important;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .opportunities-grid-modern {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .about-hero-title {
        font-size: 2.8rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .benefits-grid-modern {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0 50px;
        margin-top: 60px;
    }
    
    .about-hero-title {
        font-size: 2.2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-hero-stats {
        gap: 15px;
    }
    
    .hero-stat-card {
        padding: 20px 25px;
        min-width: 130px;
    }
    
    .hero-stat-number {
        font-size: 2.2rem;
    }
    
    .about-section {
        padding: 60px 0;
    }
    
    .opportunities-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title-modern {
        font-size: 2rem;
    }
    
    .about-philosophy {
        padding: 40px 25px;
    }
    
    .about-philosophy h3 {
        font-size: 2rem;
    }
    
    .about-conclusion {
        padding: 30px 20px;
    }
    
    .about-conclusion h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .opportunities-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .about-hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stat-card {
        width: 100%;
        max-width: 280px;
    }
}


/* ===== Старые стили (для совместимости) ===== */
.about {
    background: var(--white);
    padding: 100px 0;
}

.about-content {
    display: block;
    width: 100%;
}

.about-text {
    width: 100%;
}

.about-text p {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-text .section-title {
    font-size: 38px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--dark) 0%, #333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Старые стили (для совместимости) ===== */
.benefits-list {
    margin: 30px 0;
}

.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 249, 250, 0.8) 100%);
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: var(--orange);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    transform: translateX(5px);
}

.benefit-icon {
    font-size: 32px;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.benefit-text {
    flex: 1;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
}

.benefit-text strong {
    color: var(--orange);
    font-size: 17px;
    display: block;
    margin-bottom: 8px;
}

.stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 50px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
    
/* ===== Возможности (старые стили) ===== */
.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.opportunity-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    border: 3px solid #FF6B35;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.opportunity-card:hover {
    transform: translateY(-10px);
    border-color: #FF8C42;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.35);
}

.opportunity-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: block;
}

.opportunity-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 15px;
    line-height: 1.3;
}

.opportunity-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1200px) {
    .opportunities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
    
@media (max-width: 768px) {
    .opportunities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .opportunity-card h4 {
        font-size: 18px;
    }
    
    .opportunity-icon {
        font-size: 42px;
    }
}
    
@media (max-width: 480px) {
    .opportunities-grid {
        grid-template-columns: 1fr;
    }
}
    
.about-image {
    background: var(--bg);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
}

.image-placeholder {
    font-size: 80px;
}

/* ===== Команда ===== */
.team-section {
    background: var(--bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.team-card {
    background: var(--white);
    padding: 30px 20px;
    text-align: center;
}

.team-avatar {
    font-size: 40px;
    margin-bottom: 16px;
}

.team-card h3 {
    font-size: 14px;
    margin-bottom: 5px;
}

.team-card p {
    font-size: 12px;
    color: var(--gray);
}

/* ===== Преимущества ===== */
.benefits {
    background: linear-gradient(180deg, var(--white) 0%, var(--bg) 100%);
    padding: 100px 0;
}

.benefits .section-title {
    font-size: 38px;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 15px;
    overflow: hidden;
}

.benefit-card {
    background: var(--white);
    padding: 40px 25px;
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    background: var(--bg);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 42px;
    margin-bottom: 20px;
    display: block;
}

.benefit-card h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--dark);
    font-weight: 700;
}

.benefit-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* ===== Отзывы ===== */
.reviews-section {
    background: var(--bg);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.review-card {
    background: var(--white);
    padding: 25px;
}

.review-stars {
    margin-bottom: 12px;
    font-size: 12px;
}

.review-text {
    font-size: 14px;
    color: var(--gray);
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.6;
}

.review-author {
    font-size: 12px;
    font-weight: 600;
    color: var(--dark);
}

/* ===== Контакты страница ===== */
.contacts-page {
    background: var(--white);
    padding: 60px 0;
}

.contacts-grid-page {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.contact-card {
    background: var(--white);
    padding: 30px 20px;
    text-align: center;
}

.contact-card-icon {
    font-size: 24px;
    margin-bottom: 12px;
}

.contact-card h3 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 13px;
    color: var(--gray);
}

.contact-form-section {
    background: var(--bg);
    padding: 60px 0;
}

.contact-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 35px;
}

.contact-form {
    max-width: 550px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    background: var(--white);
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--orange);
}

.contact-form textarea {
    margin-bottom: 20px;
    resize: vertical;
}

/* ===== Контактная форма на главной ===== */
.contact {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-hover) 100%);
    padding: 100px 0;
    color: var(--white);
}

.contact .section-title {
    color: var(--white);
}

.contact .section-title::after {
    background: var(--white);
}

.contact-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-size: 18px;
}

.contact-form-full {
    max-width: 650px;
    margin: 0 auto;
}

.contact-form-full .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form-full input,
.contact-form-full textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    font-family: inherit;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.contact-form-full input:focus,
.contact-form-full textarea:focus {
    outline: none;
    border-color: var(--white);
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-full textarea {
    resize: vertical;
}

.contact-form-full .btn-primary {
    background: var(--white);
    color: var(--orange);
    border-color: var(--white);
    padding: 16px 50px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-form-full .btn-primary:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ===== Инфо контакты ===== */
.contacts-info {
    background: var(--dark);
    padding: 60px 0;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--white);
}

.contact-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
    color: var(--light-gray);
}

.contact-item p {
    font-size: 13px;
    color: var(--white);
}

/* ===== Карта ===== */
.map-section {
    background: var(--white);
    padding: 80px 0;
}

.map-section .section-title {
    margin-bottom: 40px;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
}

.map-frame {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== Подвал ===== */
.footer-modern {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}

.footer-modern::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}

.footer-modern-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-modern-logo {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
}

.footer-logo-fallback {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
}

.footer-modern-tagline {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #FFFFFF 0%, #FFA07A 50%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.02em;
    position: relative;
    display: inline-block;
}

.footer-modern-tagline::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #FF6B35 0%, #FF8C42 100%);
    border-radius: 2px;
}

.footer-modern-ip {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 12px 0 0 0;
    font-weight: 500;
}

.footer-modern-links h4,
.footer-modern-social h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-modern-links h4::after,
.footer-modern-social h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #FF6B35 0%, #FF8C42 100%);
    border-radius: 2px;
}

.footer-modern-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-modern-list li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-modern-list li a::before {
    content: '›';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #FF6B35;
}

.footer-modern-list li a:hover {
    color: var(--white);
    padding-left: 20px;
}

.footer-modern-list li a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-modern-social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
    transition: fill 0.3s ease;
}

.social-icon.vk:hover {
    background: #4C75A3;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(76, 117, 163, 0.4);
}

.social-icon.telegram:hover {
    background: #229ED9;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(34, 158, 217, 0.4);
}

.social-icon.whatsapp:hover {
    background: #25D366;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.footer-modern-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-modern-consent p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-modern-consent a {
    color: #FF6B35;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.footer-modern-consent a:hover {
    color: #FF8C42;
}

.footer-modern-copyright p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

@media (max-width: 992px) {
    .footer-modern-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-modern-logo {
        text-align: center;
        align-items: center;
    }
    
    .footer-modern-links,
    .footer-modern-social {
        text-align: center;
    }
    
    .footer-modern-links h4::after,
    .footer-modern-social h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-modern-social-icons {
        justify-content: center;
    }
    
    .footer-modern-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-modern {
        padding: 50px 0 25px;
    }

    .footer-logo-img {
        width: 80px;
        height: 80px;
    }

    .footer-logo-fallback {
        font-size: 28px;
    }
}

/* ===== Старый подвал ===== */
.footer {
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
    padding: 50px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.footer-logo .logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-logo .logo-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
}

.footer p {
    font-size: 12px;
    color: var(--light-gray);
}

/* ===== Страница тура ===== */
.tour-hero-page {
    position: relative;
    height: 650px;
    display: flex;
    align-items: center;
    margin-top: 70px;
    overflow: hidden;
}

.tour-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}

.tour-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.tour-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(34, 197, 94, 0.15) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.15) 0%, transparent 50%);
    animation: patternFloat 20s ease-in-out infinite;
}

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

.tour-hero-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}

.tour-hero-content-page {
    max-width: 700px;
    width: 100%;
    color: var(--white);
    animation: slideUpFade 1s ease forwards;
    opacity: 0;
    transform: translateY(40px);
    padding: 0 20px;
    box-sizing: border-box;
}

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tour-hero-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.tour-hero-desc-page {
    font-size: 22px;
    margin-bottom: 30px;
    opacity: 0.95;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.tour-hero-meta-page {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    flex-wrap: wrap;
    width: 100%;
}

.tour-hero-item-page {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 22px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    min-width: fit-content;
}

.tour-hero-item-page:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.tour-hero-icon-page {
    font-size: 32px;
}

.tour-hero-price-block {
    display: inline-flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 35px;
    background: rgba(255, 255, 255, 0.15);
    padding: 20px 35px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.tour-hero-price-label {
    font-size: 16px;
    opacity: 0.9;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.tour-hero-price-value {
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--green) 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.btn-hero-book-page {
    padding: 18px 60px !important;
    font-size: 16px !important;
    background: var(--white);
    color: var(--orange);
    border: none;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.btn-hero-book-page:hover {
    background: var(--green);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(34, 197, 94, 0.5);
}

/* Убираем дублирующую кнопку "Забронировать место" на карточках туров */
.btn-hero-book-page {
    display: none !important;
}

.tour-content-page {
    padding: 80px 0;
    background: var(--bg);
}

.tour-main-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

.tour-section-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border);
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
    overflow: hidden;
}

.tour-section-card:nth-child(1) { animation-delay: 0.1s; }
.tour-section-card:nth-child(2) { animation-delay: 0.2s; }
.tour-section-card:nth-child(3) { animation-delay: 0.3s; }
.tour-section-card:nth-child(4) { animation-delay: 0.4s; }
.tour-section-card:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tour-section-card > * {
    max-width: 100%;
}

.tour-section-title-page {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.tour-intro-page {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray);
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.tour-main-column {
    max-width: 100%;
}

.tour-pickup-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.pickup-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 22px;
    background: var(--bg);
    border-radius: 12px;
    border-left: 4px solid var(--green);
    transition: all 0.3s ease;
}

.pickup-item:hover {
    transform: translateX(8px);
    background: #f0fdf4;
}

.pickup-time {
    font-size: 18px;
    font-weight: 700;
    color: var(--green);
    min-width: 70px;
}

.tour-pickup-info strong,
.tour-pickup-info span {
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.pickup-info {
    flex: 1;
    min-width: 0;
}

.pickup-info strong {
    display: block;
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 4px;
}

.pickup-info span {
    font-size: 14px;
    color: var(--gray);
}

.pickup-icon {
    font-size: 36px;
}

.tour-pickup-note {
    font-size: 14px;
    color: var(--gray);
    font-style: italic;
    padding: 15px;
    background: #fef3c7;
    border-radius: 10px;
    border-left: 4px solid #f59e0b;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.tour-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-item {
    display: flex;
    gap: 25px;
    padding: 25px;
    background: var(--bg);
    border-radius: 12px;
    margin-bottom: 15px;
    border-left: 4px solid var(--green);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.15);
}

.timeline-time {
    font-size: 18px;
    font-weight: 700;
    color: var(--green);
    min-width: 100px;
    max-width: 120px;
}

.timeline-content {
    flex: 1;
    min-width: 0;
}

.timeline-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--dark);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.timeline-content p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.timeline-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.tour-section-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.tour-card-green {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: #86efac;
}

.tour-card-orange {
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
    border-color: #fdba74;
}

.tour-section-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.tour-included-list,
.tour-extra-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tour-included-list li,
.tour-extra-list li {
    padding: 10px 0;
    font-size: 15px;
    color: var(--gray);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.tour-included-list li:last-child,
.tour-extra-list li:last-child {
    border-bottom: none;
}

.tour-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--bg);
    border-radius: 12px;
    min-width: 0;
}

.detail-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.detail-item strong {
    display: block;
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 6px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.detail-item p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.tour-conditions-card {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 20px;
    border: 2px solid #f59e0b;
}

.conditions-icon {
    font-size: 64px;
}

.conditions-content {
    flex: 1;
    min-width: 0;
}

.conditions-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark);
}

.conditions-content p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 15px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.conditions-refund {
    font-size: 13px;
    color: #92400e;
    font-weight: 600;
    padding: 12px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Боковая панель */
.tour-sidebar-page {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.tour-book-card-page {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--border);
    position: sticky;
    top: 100px;
}

.book-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 12px;
}

.book-badge {
    font-size: 14px;
    color: var(--gray);
}

.book-badge-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--green);
}

.book-card-price {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
}

.book-card-price .price-label {
    font-size: 14px;
    color: var(--gray);
}

.book-card-price .price-value {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-book-page {
    width: 100%;
    padding: 16px 30px !important;
    font-size: 15px !important;
    background: linear-gradient(135deg, var(--dark) 0%, #333 100%);
    border: 2px solid var(--dark);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-book-page:hover {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-hover) 100%);
    border-color: var(--green);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

.btn-download-program {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
    border: 2px solid #e8e8e8 !important;
    color: #333 !important;
    font-weight: 600 !important;
    transition: all 0.3s ease;
}

.btn-download-program:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border-color: #667eea !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.btn-download-program .download-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-download-program:hover .download-icon {
    transform: translateY(3px);
}

.book-card-note {
    text-align: center;
    font-size: 12px;
    color: var(--gray);
    margin-top: 15px;
}

/* Уведомление о скачивании */
.download-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 10px 40px rgba(67, 233, 123, 0.4);
    z-index: 10000;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.3s ease;
}

.download-notification.show {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .download-notification {
        top: auto;
        bottom: 20px;
        right: 20px;
        left: 20px;
        text-align: center;
    }
}
    
.tour-features-card-page {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border);
}

.tour-features-card-page h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--dark);
}

.features-grid-page {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-item-page {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--bg);
    border-radius: 10px;
    font-size: 13px;
    color: var(--gray);
}

.feature-icon-page {
    font-size: 28px;
}

.tour-contact-card-page {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-hover) 100%);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    color: var(--white);
}

.contact-card-icon {
    font-size: 64px;
    margin-bottom: 15px;
}

.tour-contact-card-page h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.tour-contact-card-page p {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.contact-phone-page {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-decoration: none;
}

/* Галерея */
.tour-gallery-page {
    padding: 80px 0;
    background: var(--white);
}

.tour-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 15px;
}

.gallery-item-lg {
    grid-column: span 2;
    grid-row: span 2;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.gallery-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    opacity: 0.8;
}

.gallery-item:hover,
.gallery-item-lg:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Форма бронирования */
.tour-booking-page {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-hover) 100%);
    display: none !important;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.booking-content {
    max-width: 600px;
}

.booking-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.booking-form-page input,
.booking-form-page select,
.booking-form-page textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    font-family: inherit;
    margin-bottom: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.booking-form-page input:focus,
.booking-form-page select:focus,
.booking-form-page textarea:focus {
    outline: none;
    border-color: var(--white);
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.booking-form-page select {
    cursor: pointer;
}

.booking-form-page textarea {
    resize: vertical;
}

.btn-book-submit {
    padding: 18px 50px !important;
    font-size: 16px !important;
    background: var(--white);
    color: var(--orange);
    border: none;
    border-radius: 15px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-book-submit:hover {
    background: var(--green);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.4);
}

.booking-visual {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 50px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.booking-visual-content {
    text-align: center;
    color: var(--white);
}

.visual-icon {
    font-size: 110px;
    margin-bottom: 20px;
}

.booking-visual-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.booking-visual-content p {
    font-size: 15px;
    opacity: 0.9;
}

/* Похожие туры */
.other-tours-page {
    padding: 80px 0;
    background: var(--bg);
}

.other-tours-grid-page {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.other-tour-card-page {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--border);
}

.other-tour-card-page:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.other-tour-img {
    height: 200px;
    position: relative;
}

.tour-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--green);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.other-tour-info-page {
    padding: 25px;
}

.other-tour-info-page h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--dark);
}

.other-tour-info-page p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 15px;
}

.other-tour-price {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Адаптив ===== */
@media (max-width: 1200px) {
    .tour-hero-title {
        font-size: 42px;
    }
    
    .tour-hero-price-value {
        font-size: 48px;
    }
    
    .tour-main-grid {
        grid-template-columns: 1fr;
    }
    
    .tour-sidebar-page {
        order: -1;
    }
    
    .tour-book-card-page {
        position: relative;
        top: 0;
    }
    
    .booking-wrapper {
        grid-template-columns: 1fr;
    }
    
    .booking-visual {
        display: none;
    }
}

@media (max-width: 1024px) {
    .tour-hero-page {
        height: 550px;
    }
    
    .tour-hero-title {
        font-size: 36px;
    }
    
    .tour-hero-price-value {
        font-size: 42px;
    }
    
    .tour-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
    }
    
    .gallery-item-lg {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .other-tours-grid-page {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tour-section-grid {
        grid-template-columns: 1fr;
    }
    
    .tour-details-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .tour-hero-page {
        height: 450px;
        padding: 40px 0;
    }
    
    .tour-hero-title {
        font-size: 28px;
    }
    
.tour-hero-badge-page {
    display: inline-block;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-hover) 100%);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.5);
    animation: pulseBadge 2s ease-in-out infinite;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@keyframes pulseBadge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.tour-hero-desc-page {
        font-size: 18px;
    }
    
    .tour-hero-meta-page {
        flex-direction: column;
        gap: 10px;
    }
    
    .tour-hero-item-page {
        width: 100%;
        justify-content: center;
    }
    
    .tour-hero-price-block {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 15px 25px;
    }
    
    .tour-hero-price-value {
        font-size: 36px;
    }
    
    .btn-hero-book-page {
        width: 100% !important;
    }
    
    .tour-section-card {
        padding: 25px;
    }
    
    .tour-section-title-page {
        font-size: 22px;
    }

    .pickup-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .timeline-item {
        flex-direction: column;
        gap: 15px;
    }

    .timeline-icon {
        margin-left: 0;
    }

    .tour-gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 200px);
    }

    .gallery-item-lg {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .other-tours-grid-page {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Мобильное меню */
    .nav {
        position: fixed;
        top: 130px;
        left: -50px;
        right: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 13px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
        border-radius: 0 0 20px 20px;
    }
    
    .nav.active {
        transform: translateY(0);
    }
    
    .nav a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        font-size: 17px;
        border-radius: 12px;
        transition: all 0.2s ease;
    }
    
    .nav a:hover,
    .nav a.active {
        background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
        color: white;
    }
    
    /* Кнопка мобильного меню */
    .mobile-menu-btn {
        display: flex !important;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        font-size: 28px;
        cursor: pointer;
        color: var(--dark);
        z-index: 1000;
        border-radius: 8px;
    }
    
    .header .btn {
        margin-left: 10px;
        padding: 8px 16px;
        font-size: 11px;
    }
    
    .header-right {
        display: none;
    }
    
    .logo {
        font-size: 11px;
        margin-left: 0;
    }
    
    .logo-img {
        height: 35px;
    }

    .logo-fallback {
        font-size: 16px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero-title-line.highlight {
        font-size: 26px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .hero-features span {
        font-size: 14px;
        padding: 10px 18px;
    }
    
    .hero .btn-primary {
        padding: 18px 40px;
        font-size: 16px;
    }
    
    .section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .hero {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 60px;
    }
}

/* Для десктопа - скрываем кнопку меню */
@media (min-width: 769px) {
    .mobile-menu-btn {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .stats {
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .tour-row {
        flex-direction: column;
        text-align: center;
    }
    
    .tour-image {
        width: 100%;
        height: 200px;
    }
    
    .tour-header {
        justify-content: center;
    }
    
    .tour-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .map-container {
        height: 300px;
    }
    
    /* Карточки туров на мобильном */
    .tour-card-wide {
        flex-direction: column;
        height: auto;
    }
    
    .tour-image-wide {
        width: 100%;
        height: 200px;
    }
    
    .tour-info-wide {
        padding: 20px;
    }
    
    .tour-info-wide > .btn {
        width: 100%;
        margin-top: 15px;
    }
    
    .tour-price {
        font-size: 20px;
        margin: 10px 0;
    }
    
    .calendar-section {
        padding: 30px 0;
    }
    
    .calendar-container {
        overflow-x: auto;
    }
    
    .calendar-header {
        flex-wrap: wrap;
    }
    
    .calendar-nav button {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .calendar-weekdays,
    .calendar-days {
        font-size: 12px;
    }
    
    .booking-modal-content {
        padding: 25px 20px;
    }
    
    .booking-form {
        gap: 15px;
    }
    
    .booking-btn {
        padding: 14px 25px;
        font-size: 15px;
    }
    
    .tours {
        padding: 40px 0;
    }
    
    .hero-features {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        margin: 30px 0;
        font-size: 18px;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .hero-btn-wrapper {
        animation: pulseGlow 2s infinite;
    }
}
    
/* ===== Модальное окно ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-window {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    position: relative;
    transform: translateY(-30px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal-window {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    border: none;
    background: var(--bg);
    border-radius: 50%;
    font-size: 24px;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--orange);
    color: var(--white);
}

.modal-content h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--dark);
    text-align: center;
}

.modal-content > p {
    font-size: 14px;
    color: var(--gray);
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.6;
}

.callback-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.callback-form input {
    padding: 16px 20px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.callback-form input:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.callback-form .btn-primary {
    padding: 16px 30px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 10px;
}

.modal-note {
    text-align: center;

/* Стили для модального окна бронирования тура */
.booking-form-modal input,
.booking-form-modal select,
.booking-form-modal textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #ddd;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.booking-form-modal input:focus,
.booking-form-modal select:focus,
.booking-form-modal textarea:focus {
    outline: none;
    border-color: #FF6B35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.booking-form-modal .consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #666;
    margin: 10px 0;
    cursor: pointer;
}

.booking-form-modal .consent-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
}

.booking-form-modal .modal-note {
    font-size: 13px;
    color: #888;
    text-align: center;
    margin: 20px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.booking-form-modal .btn-book-submit {
    width: 100%;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}

.booking-form-modal .btn-book-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
}

@media (max-width: 768px) {
    .booking-form-modal .modal-window {
        padding: 30px 20px;
    }
    
    .booking-form-modal h2 {
        font-size: 22px;
    }
    
    .booking-form-modal input,
    .booking-form-modal select,
    .booking-form-modal textarea {
        font-size: 14px;
        padding: 14px;
    }
}
    font-size: 12px;
    color: var(--gray);
    margin-top: 20px;
}

@media (max-width: 480px) {
    .modal-window {
        padding: 30px 20px;
    }
}
    
/* ===== Поиск ===== */
.search-section {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(22, 33, 62, 0.85) 50%, rgba(15, 52, 96, 0.85) 100%), url('../img/about-hero.png') center/cover no-repeat;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.search-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    animation: float 20s ease-in-out infinite;
}

.search-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    animation: float 25s ease-in-out infinite reverse;
}

.search-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 140, 66, 0.2) 100%);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: #FFB380;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 53, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 107, 53, 0.5); }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.search-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: float 20s ease-in-out infinite;
}

.search-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: float 25s ease-in-out infinite reverse;
}

.search-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.search-header {
    text-align: center;
    margin-bottom: 40px;
}

.search-title {
    font-size: 48px;
    font-weight: 900;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 15px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.search-title-icon {
    font-size: 52px;
    display: inline-block;
    animation: searchIconFloat 3s ease-in-out infinite;
}

@keyframes searchIconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(5deg); }
}

.search-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    font-weight: 400;
    max-width: 500px;
    margin: 0 auto;
}

.search-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 8px 8px 8px 24px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    position: relative;
}

.search-box-modern {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    padding: 10px 10px 10px 28px;
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-box-modern:focus-within {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 35px 90px rgba(0, 0, 0, 0.35),
        0 0 0 2px rgba(255, 107, 53, 0.5),
        0 0 50px rgba(255, 107, 53, 0.3);
}

.search-icon-modern {
    font-size: 28px;
    margin-right: 20px;
    opacity: 0.7;
    flex-shrink: 0;
    transition: opacity 0.3s;
}

.search-box-modern:focus-within .search-icon-modern {
    opacity: 1;
    animation: searchIconPulse 0.6s ease-in-out;
}

@keyframes searchIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.search-box-modern input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 18px;
    color: #333;
    background: transparent;
    padding: 18px 0;
    font-weight: 500;
}

.search-box-modern input::placeholder {
    color: #aaa;
    font-weight: 400;
}

.search-clear-btn {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.search-clear-btn:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.5);
}

.search-box-modern:focus-within {
    transform: translateY(-4px);
    box-shadow: 
        0 35px 90px rgba(0, 0, 0, 0.35),
        0 0 0 2px rgba(255, 107, 53, 0.5),
        0 0 50px rgba(255, 107, 53, 0.3);
}

.search-icon {
    font-size: 24px;
    margin-right: 16px;
    opacity: 0.6;
}

.search-icon-modern {
    font-size: 28px;
    margin-right: 20px;
    opacity: 0.7;
    flex-shrink: 0;
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 18px;
    color: var(--dark);
    background: transparent;
    padding: 16px 0;
    font-weight: 500;
}

.search-box-modern input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 18px;
    color: #333;
    background: transparent;
    padding: 18px 0;
    font-weight: 500;
}

.search-box input::placeholder {
    color: #999;
    font-weight: 400;
}

.search-box-modern input::placeholder {
    color: #aaa;
    font-weight: 400;
}

.search-clear-btn {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.search-clear-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.5);
}

.search-btn {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: white;
    border: none;
    border-radius: 16px;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 25px rgba(255, 107, 53, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.search-btn:hover {
    transform: scale(1.05);
    box-shadow: 
        0 12px 35px rgba(255, 107, 53, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.3);
}

.search-btn:active {
    transform: scale(1.02);
}

.search-date-filters {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-date-filters-modern {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.date-filter-group-modern {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.date-filter-group-modern label {
    font-size: 12px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.date-icon {
    font-size: 16px;
    transition: transform 0.3s;
}

.date-filter-group-modern:hover .date-icon {
    transform: scale(1.2);
}

.date-input-modern {
    padding: 16px 24px;
    border: 2px solid #e8e8e8;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: 16px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 180px;
    cursor: pointer;
    color: #333;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.date-input-modern:focus {
    outline: none;
    border-color: #FF6B35;
    background: #fff;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.25);
    transform: translateY(-2px);
}

.date-input-modern:hover {
    border-color: #FF8C42;
    background: #fff;
    transform: translateY(-1px);
}

.date-filter-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ccc;
}

.divider-line {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #e0e0e0 50%, transparent 100%);
}

.divider-text {
    font-size: 13px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.date-filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.date-filter-group-modern {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.date-filter-group-modern label {
    font-size: 12px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.date-filter-group label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.date-input-wrapper {
    position: relative;
}

.date-input-wrapper::before {
    content: '📅';
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    pointer-events: none;
}

.date-input {
    padding: 14px 16px 14px 42px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 14px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    min-width: 180px;
    cursor: pointer;
    color: #333;
    font-weight: 500;
}

.date-input-modern {
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    background: #fafafa;
    border-radius: 14px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 170px;
    cursor: pointer;
    color: #333;
    font-weight: 600;
}

.date-input-modern:focus {
    outline: none;
    border-color: #FF6B35;
    background: #fff;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
    transform: translateY(-2px);
}

.date-input-modern:hover {
    border-color: #FF8C42;
    background: #fff;
}

.date-input:focus {
    outline: none;
    border-color: var(--orange);
    background: var(--white);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.25);
    transform: translateY(-2px);
}

.date-input:hover {
    border-color: rgba(255, 107, 53, 0.6);
    background: var(--white);
}

.date-input::placeholder {
    color: #999;
}

.date-filter-divider {
    font-size: 24px;
    color: #ccc;
    font-weight: 300;
    margin-top: 20px;
}

.search-date-filters .btn {
    margin-top: 0;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    border-radius: 16px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-search-modern {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: white;
    padding: 18px 36px;
    border-radius: 18px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-search-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-search-modern:hover::before {
    left: 100%;
}

.btn-search-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(255, 107, 53, 0.6);
}

.btn-search-modern:active {
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 18px;
    transition: transform 0.3s;
}

.btn-search-modern:hover .btn-icon {
    transform: scale(1.2) rotate(10deg);
}

.btn-clear-modern {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #666;
    padding: 18px 32px;
    border-radius: 18px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.btn-clear-modern:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    border-color: #dee2e6;
    color: #333;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.btn-clear-modern span:first-child {
    font-size: 18px;
    transition: transform 0.3s;
}

.btn-clear-modern:hover span:first-child {
    transform: rotate(-180deg);
}

.search-date-filters .btn:hover {
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
    transform: translateY(-3px);
}

.search-date-filters .btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(255, 107, 53, 0.4);
}

.search-date-filters .suggestion-tag {
    margin-top: 0;
    padding: 14px 24px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.search-date-filters .suggestion-tag:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .search-section {
        padding: 60px 0;
    }
    
    .search-title {
        font-size: 32px;
        flex-direction: column;
        gap: 8px;
    }
    
    .search-title-icon {
        font-size: 40px;
    }
    
    .search-subtitle {
        font-size: 15px;
    }

    .search-box-modern {
        flex-wrap: wrap;
        padding: 15px;
    }

    .search-box-modern input {
        width: 100%;
        margin-top: 10px;
        padding: 12px 0;
    }

    .search-icon-modern {
        font-size: 24px;
        margin-right: 12px;
    }
    
    .search-clear-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .search-date-filters-modern {
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        gap: 20px;
    }
    
    .date-filter-group-modern {
        width: 100%;
    }
    
    .date-input-modern {
        width: 100%;
        min-width: auto;
    }
    
    .date-filter-divider {
        flex-direction: row;
        justify-content: center;
    }
    
    .btn-search-modern,
    .btn-clear-modern {
        width: 100%;
        justify-content: center;
    }
    
    .search-suggestions-modern {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .search-suggestions-modern .suggestions-label {
        margin-right: 0;
        text-align: center;
    }
    
    .suggestion-tags-container {
        width: 100%;
    }
    
    .suggestion-tag-modern {
        flex: 1;
        min-width: calc(50% - 10px);
        justify-content: center;
    }
}

.search-suggestions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 25px;
}

.search-suggestions-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 35px;
    padding: 25px 35px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.search-suggestions-modern .suggestions-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 10px;
}

.suggestion-tags-container {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.suggestion-tag-modern {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.95);
    padding: 14px 26px;
    border-radius: 35px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.suggestion-tag-modern:hover {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
}

.suggestion-tag-modern:active {
    transform: translateY(-2px) scale(1.02);
}

.tag-icon {
    font-size: 18px;
    transition: transform 0.3s;
}

.suggestion-tag-modern:hover .tag-icon {
    transform: scale(1.3) rotate(10deg);
}

.suggestions-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-suggestions-modern .suggestions-label {
    color: #999;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-right: 10px;
}

.suggestion-tags-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.suggestion-tag {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.suggestion-tag-modern {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #555;
    padding: 12px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid #e0e0e0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.suggestion-tag-modern:hover {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.suggestion-tag:hover {
    background: rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.tag-icon {
    font-size: 16px;
}

.btn-clear-search {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
    padding: 14px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.btn-clear-search:hover {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
}

.btn-clear-search:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.btn-clear-search span:first-child {
    font-size: 16px;
    font-weight: 700;
}

.search-results {
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 25px;
    display: none;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.search-results.active {
    display: block;
    animation: slideDownModern 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDownModern {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
    
.search-result-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.search-result-item:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-color: rgba(255, 107, 53, 0.3);
}

.search-result-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.search-result-info h4 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 4px;
    font-weight: 700;
}

.search-result-info p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
}

.search-result-price {
    font-size: 18px;
    font-weight: 800;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.search-no-results {
    text-align: center;
    padding: 40px;
    color: var(--gray);
    font-size: 16px;
}

/* ===== Как пройти ===== */
.how-to-reach {
    background: var(--white);
    padding: 80px 0;
}

.reach-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.reach-slide {
    display: none;
    position: relative;
}

.reach-slide.active {
    display: block;
    animation: fadeEffect 0.5s ease;
}

@keyframes fadeEffect {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

.reach-photo-large {
    width: 100%;
    height: 800px;
    object-fit: cover;
    display: block;
}

.reach-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: white;
    padding: 40px 30px 30px;
    font-size: 20px;
    font-weight: 600;
}

.reach-slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}
    
.reach-nav-btn {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 28px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.reach-nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

.reach-dots {
    display: flex;
    gap: 12px;
}

.reach-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.reach-dot.active {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    transform: scale(1.3);
    border-color: white;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.6);
}

.reach-dot:hover {
    background: #bbb;
}

@media (max-width: 768px) {
    .reach-photo-large {
        height: 350px;
    }
    
    .reach-caption {
        font-size: 16px;
        padding: 30px 20px 25px;
    }
    
    .reach-slider-nav {
        gap: 20px;
    }
    
    .reach-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }
}
    
@media (max-width: 768px) {
    .tours {
        padding: 40px 0;
    }
    
    .page-header {
        padding: 40px 0;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .calendar-section {
        padding: 30px 0;
    }

    .calendar-container {
        overflow-x: auto;
    }

    .calendar-header {
        flex-wrap: wrap;
    }

    .calendar-nav button {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .calendar-weekdays,
    .calendar-days {
        font-size: 12px;
    }
    
    .booking-modal-content {
        padding: 25px 20px;
    }
    
    .booking-form {
        gap: 15px;
    }
    
    .booking-btn {
        padding: 14px 25px;
        font-size: 15px;
    }
    
    .search-section {
        padding: 50px 0;
    }
    
    .search-title {
        font-size: 28px;
    }
    
    .search-box {
        flex-direction: column;
        padding: 16px;
        gap: 15px;
    }
    
    .search-icon {
        display: none;
    }
    
    .search-box input {
        width: 100%;
        text-align: center;
    }
    
    .search-btn {
        width: 100%;
        padding: 14px 30px;
    }
    
    .search-suggestions {
        gap: 8px;
    }
    
    .suggestion-tag {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .search-result-item {
        flex-direction: column;
        text-align: center;
    }
    
    .search-result-item img {
        width: 100%;
        height: 150px;
    }
    
    .search-result-price {
        width: 100%;
        text-align: center;
    }
    
    .modal-content h2 {
        font-size: 22px;
    }
}

/* ===== Малые экраны (до 480px) ===== */
@media (max-width: 480px) {
    .header .btn {
        padding: 6px 12px;
        font-size: 10px;
    }
    
    .hero h1 {
        font-size: 24px;
    }
    
    .hero-title-line.highlight {
        font-size: 22px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .tour-card-wide {
        height: auto;
    }
    
    .tour-image-wide {
        height: 180px;
    }
    
    .tour-info-wide {
        padding: 15px;
    }
    
    .tour-price {
        font-size: 18px;
    }
    
    .modal-window {
        padding: 30px 20px;
    }
    
    .reach-photo-large {
        height: 250px;
    }
    
    .reach-caption {
        font-size: 14px;
        padding: 20px 15px;
    }
}

/* ===== КАЛЕНДАРЬ ТУРОВ ===== */
.calendar-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    position: relative;
    overflow: hidden;
}

.calendar-section .container {
    position: relative;
    z-index: 2;
}

.calendar-header-modern {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.calendar-title-block {
    text-align: center;
}

@media (max-width: 768px) {
    .calendar-header-modern {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}
    
.calendar-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 140, 66, 0.2) 100%);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: #FF8C42;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.calendar-title {
    font-size: 3rem;
    color: white;
    margin: 0 0 15px 0;
    font-weight: 800;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    line-height: 1.2;
}

@media (max-width: 768px) {
    .calendar-title {
        font-size: 2rem;
    }
}
    
.calendar-subtitle {
    color: white;
    font-size: 1.1rem;
    margin: 25px 0 0 0;
    line-height: 1.6;
}

.calendar-stats {
    display: flex;
    gap: 20px;
}

@media (max-width: 480px) {
    .calendar-stats {
        width: 100%;
        justify-content: center;
    }
}
    
.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 140px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

.calendar-wrapper {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 1024px) {
    .calendar-wrapper {
        grid-template-columns: 1fr;
    }
}

.calendar-widget {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 0;
    gap: 12px;
}

.calendar-month-year {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    flex: 1 1 auto;
    min-width: 0;
    text-align: center;
    padding: 12px 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e8e8e8;
    transition: all 0.3s ease;
    cursor: pointer;
}

.calendar-month-year:hover {
    border-color: #FF6B35;
    background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
}

.calendar-nav-btn {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.calendar-nav-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.calendar-nav-btn:active {
    transform: scale(0.95);
}

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

.calendar-day-header {
    text-align: center;
    font-weight: 700;
    color: #666;
    font-size: 0.8rem;
    padding: 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    line-height: 1;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 700;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e8e8e8;
    font-size: 0.95rem;
    color: #333;
    overflow: hidden;
}

.calendar-day::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.calendar-day:hover:not(.empty):not(.disabled)::before {
    opacity: 1;
}

.calendar-day:hover:not(.empty):not(.disabled) {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.3);
    border-color: #667eea;
}

.calendar-day.empty {
    cursor: default;
    background: transparent;
    border: none;
}

.calendar-day.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.calendar-day.today {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    border-color: #1a1a2e;
    box-shadow: 0 8px 25px rgba(26, 26, 46, 0.4);
}

.calendar-day.today::before {
    opacity: 0;
}

.calendar-day.has-tour {
    border-color: #FF6B35;
    background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.15);
    color: #333;
    font-weight: 800;
}

.calendar-day.has-tour:hover {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: white;
    border-color: #FF6B35;
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.calendar-day.selected {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.calendar-day .tour-count {
    position: absolute;
    top: 6px;
    right: 6px;
    font-size: 0.6rem;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: white;
    padding: 2px 6px;
    border-radius: 8px;
    font-weight: 800;
    z-index: 1;
}

.calendar-day.selected .tour-count {
    background: rgba(255,255,255,0.25);
}

/* Легенда календаря */
.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #555;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 245, 240, 0.8) 100%);
    padding: 10px 18px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.15);
    transition: all 0.3s ease;
}

.legend-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
}

.legend-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    position: relative;
}

.legend-dot.today {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-color: #1a1a2e;
    box-shadow: 0 2px 8px rgba(26, 26, 46, 0.3);
}

.legend-dot.has-tour {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    border-color: #FF6B35;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
}

.legend-dot.selected {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
}

@media (max-width: 480px) {
    .calendar-legend {
        gap: 8px;
    }

    .legend-item {
        padding: 6px 10px;
        font-size: 0.7rem;
    }
    
    .legend-dot {
        width: 10px;
        height: 10px;
    }
    
    .month-selector {
        width: calc(100vw - 24px);
        padding: 8px;
    }
    
    .month-btn {
        padding: 6px 2px;
        font-size: 11px;
    }
}
    
/* Стили для выпадающего списка месяцев */
.month-selector {
    display: none;
    position: absolute;
    top: 50%;
    left: -110%;
    transform: translateY(-50%);
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    padding: 25px;
    z-index: 100;
    margin-left: 15px;
    min-width: 320px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    animation: slideLeft 0.3s ease;
}

@media (max-width: 768px) {
    .month-selector {
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 0;
        margin-top: 15px;
        width: calc(100vw - 24px);
    }
}
    
@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.month-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.month-btn {
    padding: 14px 12px;
    border: 2px solid #e8e8e8;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #333;
}

.month-btn:hover {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: white;
    border-color: #FF6B35;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.calendar-month-year:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Стили для результатов выбора даты */
.calendar-results {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.4);
    min-height: 500px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.calendar-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.05), transparent);
    margin: -40px -40px 30px -40px;
    padding: 25px 40px;
    border-radius: 24px 24px 0 0;
    border-bottom: 2px solid rgba(255, 107, 53, 0.1);
}

.calendar-results-header h3 {
    font-size: 1.6rem;
    color: #333;
    font-weight: 800;
    margin: 0;
}

.calendar-results-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.calendar-tour-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 0;
    border: 2px solid #e8e8e8;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 220px;
}

.calendar-tour-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.calendar-tour-card:hover::before {
    opacity: 1;
}

.calendar-tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.25);
    border-color: #FF6B35;
}

.calendar-tour-image {
    position: relative;
    height: 100%;
    min-height: 220px;
    overflow: hidden;
}

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

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

.calendar-tour-content {
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.calendar-tour-card h4 {
    margin: 0 0 12px 0;
    font-size: 1.4rem;
    color: #333;
    font-weight: 800;
    line-height: 1.3;
}

.calendar-tour-card .tour-date {
    color: #FF6B35;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 0.95rem;
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    align-self: flex-start;
}

.calendar-tour-card .tour-description {
    color: #666;
    margin-bottom: 18px;
    line-height: 1.7;
    font-size: 0.95rem;
    flex: 1;
}

.calendar-tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.calendar-tour-card .tour-price {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.calendar-tour-card .tour-places {
    color: #666;
    font-size: 0.9rem;
}

.calendar-tour-card .tour-places strong {
    color: #FF6B35;
    font-weight: 800;
}

.calendar-tour-card .btn {
    width: 100%;
    padding: 16px;
    font-weight: 700;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.calendar-tour-card .btn-primary {
    position: relative;
    overflow: hidden;
}

.calendar-tour-card .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.calendar-tour-card .btn-primary:hover::before {
    left: 100%;
}

.calendar-tour-card .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5) !important;
}

.calendar-results-empty {
    text-align: center;
    padding: 80px 40px;
    color: #666;
}

.empty-icon {
    font-size: 5rem;
    margin-bottom: 30px;
    display: block;
    animation: bounce 2s ease-in-out infinite;
}

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

.calendar-results-empty h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 800;
}

.calendar-results-empty p {
    color: #888;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.empty-hints {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hint-item {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 1px solid rgba(102, 126, 234, 0.2);
    color: #667eea;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hint-item:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.tours-not-found {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.tours-not-found .icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.tours-not-found h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.calendar-instructions {
    background: rgba(102, 126, 234, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    margin-top: 25px;
    color: #667eea;
    border: 1px solid rgba(102, 126, 234, 0.15);
}

.calendar-instructions h4 {
    margin: 0 0 15px 0;
    font-size: 1rem;
    font-weight: 700;
}

.calendar-instructions ul {
    margin: 0;
    padding-left: 20px;
}

.calendar-instructions li {
    margin-bottom: 8px;
    line-height: 1.5;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .calendar-title {
        font-size: 1.6rem;
    }
    
    .calendar-subtitle {
        font-size: 0.95rem;
    }
    
    .calendar-header {
        gap: 8px;
        margin-bottom: 12px;
    }

    .calendar-month-year {
        font-size: 1rem;
        padding: 10px 14px;
    }

    .calendar-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }

    .calendar-grid {
        gap: 4px;
    }

    .calendar-day-header {
        font-size: 0.7rem;
        padding: 8px 0;
    }

    .calendar-day {
        font-size: 0.85rem;
        border-radius: 8px;
        min-height: 40px;
    }
    
    .calendar-legend {
        gap: 8px;
        padding-top: 15px;
    }
    
    .legend-item {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
    
    .calendar-results-title {
        font-size: 1.2rem;
    }
    
    .tours-grid-calendar {
        grid-template-columns: 1fr;
    }
    
    .calendar-header-modern {
        text-align: center;
    }
    
    .calendar-stats {
        justify-content: center;
    }
    
    .calendar-widget {
        padding: 16px;
        border-radius: 16px;
    }
    
    .calendar-results {
        padding: 20px;
        min-height: 300px;
        border-radius: 16px;
    }
    
    .calendar-results-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        margin: -20px -20px 20px -20px;
        padding: 16px 20px;
    }
    
    .calendar-results-header h3 {
        font-size: 1.2rem;
    }
    
    .calendar-tour-card {
        grid-template-columns: 1fr;
        min-height: auto;
        border-radius: 14px;
    }
    
    .calendar-tour-image {
        min-height: 160px;
        height: 160px;
    }
    
    .calendar-tour-content {
        padding: 16px 18px;
    }
    
    .calendar-tour-card h4 {
        font-size: 1.15rem;
    }
    
    .calendar-tour-card .tour-description {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .calendar-tour-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .calendar-tour-card .tour-price {
        font-size: 1.3rem;
    }
    
    .empty-hints {
        flex-direction: column;
        align-items: center;
    }
    
    .calendar-results-empty {
        padding: 40px 20px;
    }
    
    .calendar-results-empty h3 {
        font-size: 1.3rem;
    }
}

/* ===== Секция заявки на подбор тура ===== */
.request-section {
    background: #FFFFFF;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.request-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

.request-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -50px) rotate(120deg); }
    66% { transform: translate(-20px, 30px) rotate(240deg); }
}

.request-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 40px;
    padding: 70px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.request-content {
    padding-right: 20px;
}

.request-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.request-title {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
}

.request-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

.request-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

.feature-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-text strong {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}

.feature-text span {
    font-size: 13px;
    color: #888;
    line-height: 1.4;
}

.request-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 10px;
}

.form-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px 0;
}

.form-header p {
    font-size: 14px;
    color: #888;
    margin: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin: 0;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 18px 22px;
    border: 2px solid #e8e8e8;
    background: #fafafa;
    font-size: 15px;
    font-family: inherit;
    border-radius: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 5px 25px rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #aaa;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-glow {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 40px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
    border-radius: 14px !important;
    color: white !important;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.5);
}

.btn-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.btn-glow:hover .btn-arrow {
    transform: translateX(5px);
}

.form-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: #888;
    margin-top: 5px;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
    padding: 10px 12px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.consent-checkbox:hover {
    background: #f0f1f3;
    border-color: #667eea;
}

.consent-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 2px 0 0 0;
    cursor: pointer;
    accent-color: #667eea;
    flex-shrink: 0;
}

.consent-checkbox a {
    color: #FF6B35;
    text-decoration: underline;
    font-weight: 600;
}

.consent-checkbox a:hover {
    color: #FF8C42;
}

.lock-icon {
    font-size: 16px;
}

@media (max-width: 1200px) {
    .request-wrapper {
        gap: 50px;
        padding: 50px;
    }
    
    .request-title {
        font-size: 40px;
    }
}

@media (max-width: 1024px) {
    .request-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 40px;
    }
    
    .request-content {
        padding-right: 0;
        text-align: center;
    }
    
    .request-features-grid {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .request-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .request-section {
        padding: 60px 0;
    }
    
    .request-wrapper {
        padding: 30px;
        border-radius: 24px;
    }
    
    .request-title {
        font-size: 28px;
    }
    
    .request-subtitle {
        font-size: 16px;
    }
    
    .request-features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-header h3 {
        font-size: 20px;
    }
    
    .btn-glow {
        padding: 18px 30px !important;
        font-size: 15px !important;
    }
}

/* ===== Дополнительная оптимизация для телефонов ===== */
@media (max-width: 768px) {
    html,
    body {
        overflow-x: hidden;
    }

    .header .container {
        min-height: 68px;
        padding-left: 14px;
        padding-right: 14px;
    }

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

    .nav {
        top: 130px;
        max-height: calc(100vh - 85px);
        overflow-y: auto;
        padding: 16px;
    }

    .hero {
        padding-top: 90px;
    }

    .hero h1 {
        line-height: 1.18;
    }

    .tour-card-wide {
        border-radius: 18px;
    }

    .tour-info-wide {
        padding: 16px;
    }

    .tour-info-wide h3 {
        font-size: 22px;
        line-height: 1.25;
    }

    .tour-description {
        font-size: 15px;
        line-height: 1.5;
    }

    .tour-price {
        font-size: 24px;
    }

    .tour-main-grid {
        gap: 22px;
    }

    .tour-sidebar-page {
        width: 100%;
    }

    .tour-book-card-page,
    .tour-features-card-page,
    .tour-contact-card-page {
        padding: 18px;
        border-radius: 16px;
    }

    .tour-section-card {
        padding: 18px;
        border-radius: 16px;
    }

    .tour-hero-title {
        line-height: 1.2;
        word-break: break-word;
    }

    .tour-hero-meta-page {
        align-items: stretch;
    }

    .tour-hero-item-page {
        justify-content: flex-start;
        padding: 10px 12px;
    }

    .month-grid {
        gap: 6px;
    }
    
    .modal-window {
        width: calc(100vw - 24px);
        max-width: 460px;
        padding: 24px 16px;
        border-radius: 16px;
    }
    
    .callback-form input,
    .callback-form .btn-primary {
        min-height: 48px;
    }
}
    
@media (max-width: 480px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .hero h1 {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }

    .section-title {
        font-size: 22px;
    }

    .tour-image-wide {
        height: 180px;
    }

    .tour-info-wide h3 {
        font-size: 20px;
    }

    .tour-price {
        font-size: 22px;
    }

    .calendar-day-header {
        font-size: 0.65rem;
        padding: 4px 0;
    }

    .calendar-day {
        font-size: 0.8rem;
        border-radius: 6px;
        min-height: 36px;
    }
    
    .calendar-grid {
        gap: 3px;
    }
    
    .calendar-legend {
        gap: 6px;
    }
    
    .legend-item {
        padding: 4px 8px;
        font-size: 0.7rem;
    }
    
    .legend-dot {
        width: 10px;
        height: 10px;
    }
    
    .calendar-widget {
        padding: 12px;
    }
    
    .calendar-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    
    .calendar-month-year {
        font-size: 0.9rem;
        padding: 8px 10px;
    }
}

@media (hover: none) and (pointer: coarse) {
    .tour-card-wide:hover,
    .calendar-day:hover:not(.empty):not(.disabled),
    .calendar-nav-btn:hover {
        transform: none;
        box-shadow: none;
    }
}
.sbox{
            transition: all 0.3s ease-in-out;
            cursor: pointer;
        }

        .sbox:hover{
            transform: scale(1.1) translateY(-3px);
        }

/* ===== Страницы юридических документов ===== */
.legal-page {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 50px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.legal-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.legal-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.legal-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.legal-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.legal-date {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.legal-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #f0f0f0;
}

.legal-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.legal-section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 4px solid #667eea;
    line-height: 1.3;
}

.legal-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin: 25px 0 15px 0;
}

.legal-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 15px;
    text-align: justify;
}

.legal-text p:last-child {
    margin-bottom: 0;
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.legal-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    border-bottom: 1px solid #f5f5f5;
}

.legal-list li:last-child {
    border-bottom: none;
}

.legal-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
    font-size: 18px;
}

.legal-contacts {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f1f3 100%);
    padding: 30px;
    border-radius: 16px;
    border: 2px solid #e8e8e8;
}

.legal-contacts p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 8px;
}

.legal-contacts p:last-child {
    margin-bottom: 0;
}

.legal-contacts a {
    color: #667eea;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.legal-contacts a:hover {
    color: #764ba2;
}

@media (max-width: 992px) {
    .legal-content {
        padding: 40px 30px;
    }
    
    .legal-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .legal-page {
        padding: 100px 0 60px;
    }
    
    .legal-header {
        padding: 40px 25px;
        margin-bottom: 40px;
    }
    
    .legal-title {
        font-size: 28px;
    }
    
    .legal-subtitle {
        font-size: 18px;
    }
    
    .legal-content {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .legal-section-title {
        font-size: 20px;
        padding-left: 15px;
    }
    
    .legal-text p,
    .legal-list li {
        font-size: 15px;
    }
    
    .legal-contacts {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .legal-title {
        font-size: 24px;
    }
    
    .legal-header {
        padding: 30px 20px;
    }
    
    .legal-content {
        padding: 25px 15px;
    }
}
/* ===== � �������� - ���������� ===== */
.about-hero-minimal {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.7) 0%, rgba(255, 140, 66, 0.65) 100%), url('../img/about-hero.png') center/cover no-repeat;
    padding: 120px 0 60px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.school-hero {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.7) 0%, rgba(255, 140, 66, 0.65) 100%), url('../img/школа.png') center/cover no-repeat;
    padding: 120px 0 60px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.contacts-hero {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.7) 0%, rgba(255, 140, 66, 0.65) 100%), url('../img/SHAPKA.png') center/cover no-repeat;
    padding: 120px 0 60px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.about-hero-minimal-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-hero-label {
    display: inline-block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 24px;
}

.about-hero-minimal-title {
    font-size: 56px;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin: 0 0 50px 0;
    letter-spacing: -1px;
}

.about-hero-divider {
    width: 60px;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    margin: 0 auto 40px;
}

.about-hero-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.about-minimal-section {
    padding: 100px 0;
    background: #FFFFFF;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
}

.lead-text {
    font-size: 28px;
    line-height: 1.7;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 400;
}

.about-main-text p {
    font-size: 22px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.stats-minimal {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-minimal-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-minimal-number {
    font-size: 64px;
    font-weight: 800;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-minimal-label {
    font-size: 15px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.directions-minimal-section {
    padding: 100px 0;
    background: #FAFAFA;
}

.minimal-section-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 60px 0;
    letter-spacing: -0.5px;
}

.directions-minimal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.direction-minimal-card {
    background: white;
    padding: 35px 30px;
    transition: all 0.3s ease;
    border: 1px solid #EEEEEE;
}

.direction-minimal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #FF6B35;
}

.direction-icon {
    display: block;
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1;
}

.direction-minimal-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 14px 0;
    line-height: 1.4;
}

.direction-minimal-card p {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.benefits-minimal-section {
    padding: 100px 0;
    background: #FFFFFF;
}

.benefits-minimal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.benefit-minimal-item {
    padding: 0 20px;
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 16px;
    width: 42px;
    height: 42px;
    line-height: 1;
    vertical-align: middle;
}

.benefit-minimal-item h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    letter-spacing: -0.3px;
    display: block;
}

.benefit-minimal-item p {
    font-size: 20px;
    color: #666;
    margin: 0;
    line-height: 1.7;
}

.philosophy-minimal-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    position: relative;
    overflow: hidden;
}

.philosophy-minimal-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-label {
    display: inline-block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.philosophy-quote {
    font-size: 48px;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin: 0 0 30px 0;
    letter-spacing: -1px;
}

.philosophy-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

.cta-minimal-section {
    padding: 100px 0;
    background: #FAFAFA;
    text-align: center;
}

.cta-minimal-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 24px 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.cta-minimal-text {
    font-size: 20px;
    color: #666;
    margin: 0 0 40px 0;
    line-height: 1.6;
}

.cta-signature {
    font-size: 18px;
    font-weight: 600;
    color: #FF6B35;
    letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .stats-minimal {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .directions-minimal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-minimal-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .about-hero-minimal,
    .school-hero,
    .contacts-hero {
        padding: 60px 0 40px;
    }
    
    .about-hero-minimal-title {
        font-size: 36px;
    }
    
    .about-hero-text {
        font-size: 17px;
    }
    
    .minimal-section-title {
        font-size: 32px;
    }
    
    .stats-minimal {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-minimal-number {
        font-size: 48px;
    }
    
    .lead-text {
        font-size: 22px;
    }
    
    .about-main-text p {
        font-size: 18px;
    }
    
    .directions-minimal-grid {
        grid-template-columns: 1fr;
    }
    
    .direction-minimal-card {
        padding: 25px;
    }
    
    .direction-minimal-card h3 {
        font-size: 18px;
    }
    
    .direction-minimal-card p {
        font-size: 14px;
    }
    
    .benefit-minimal-item h3 {
        font-size: 22px;
    }
    
    .benefit-minimal-item p {
        font-size: 17px;
    }
    
    .benefit-icon {
        font-size: 28px;
    }
    
    .philosophy-quote {
        font-size: 32px;
    }
    
    .cta-minimal-title {
        font-size: 32px;
    }
    
    .cta-minimal-text {
        font-size: 17px;
    }
}

/* ===== БАННЕР ПОДПИСКИ НА МАКС ===== */
.max-subscribe-banner {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.max-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/banner MAX.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.max-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 400px;
    padding-left: 40px;
}

.max-banner-text {
    max-width: 600px;
}

.max-banner-title {
    font-size: 56px;
    font-weight: 900;
    color: white;
    margin: 0 0 15px 0;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.max-banner-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 35px 0;
    line-height: 1.5;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.btn-max-subscribe {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 50%, #FFA07A 100%);
    color: white;
    padding: 22px 60px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 40px rgba(255, 107, 53, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-max-subscribe::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn-max-subscribe::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease, opacity 0.4s ease;
    opacity: 0;
}

.btn-max-subscribe:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 60px rgba(255, 107, 53, 0.7),
        0 0 0 1px rgba(255, 255, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 100px rgba(255, 107, 53, 0.4);
    border-color: rgba(255, 255, 255, 0.6);
    background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 50%, #FF8C42 100%);
}

.btn-max-subscribe:hover::before {
    left: 100%;
}

.btn-max-subscribe:hover::after {
    width: 400px;
    height: 400px;
    opacity: 1;
}

.btn-max-subscribe .max-icon {
    font-size: 32px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-max-subscribe:hover .max-icon {
    transform: scale(1.15) rotate(10deg);
}

.btn-max-subscribe .max-arrow {
    font-size: 26px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.btn-max-subscribe:hover .max-arrow {
    transform: translateX(10px);
}

@media (max-width: 768px) {
    .max-subscribe-banner {
        padding: 50px 0;
    }
    
    .max-banner-content {
        min-height: 300px;
        justify-content: center;
        padding-left: 15px;
        text-align: center;
    }
    
    .max-banner-title {
        font-size: 36px;
    }
    
    .max-banner-subtitle {
        font-size: 16px;
    }
    
    .btn-max-subscribe {
        padding: 16px 35px;
        font-size: 16px;
        width: 90%;
        justify-content: center;
    }
    
    .btn-max-subscribe .max-icon {
        font-size: 24px;
    }
    
    .btn-max-subscribe .max-arrow {
        font-size: 20px;
    }
}

/* ===== БАННЕР ПОДПИСКИ НА VK ===== */
.vk-subscribe-banner {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.vk-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(135deg, rgba(0, 119, 255, 0.85) 0%, rgba(0, 80, 200, 0.9) 100%),
        url('../img/vk-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
}

.vk-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    padding: 40px;
}

.vk-banner-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vk-logo-img {
    width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.4));
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vk-subscribe-banner:hover .vk-logo-img {
    transform: scale(1.1) rotate(-5deg);
}

.vk-banner-title {
    font-size: 56px;
    font-weight: 900;
    color: white;
    margin: 0 0 15px 0;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.vk-banner-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 35px 0;
    line-height: 1.5;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.btn-vk-subscribe {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #0077FF;
    color: white;
    padding: 22px 60px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 40px rgba(0, 119, 255, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-vk-subscribe::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn-vk-subscribe::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease, opacity 0.4s ease;
    opacity: 0;
}

.btn-vk-subscribe:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 60px rgba(0, 119, 255, 0.7),
        0 0 0 1px rgba(255, 255, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 100px rgba(0, 119, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.6);
    background: #0066DD;
}

.btn-vk-subscribe:hover::before {
    left: 100%;
}

.btn-vk-subscribe:hover::after {
    width: 400px;
    height: 400px;
    opacity: 1;
}

.btn-vk-subscribe .vk-icon {
    font-size: 32px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-vk-subscribe:hover .vk-icon {
    transform: scale(1.15) rotate(10deg);
}

.btn-vk-subscribe .vk-arrow {
    font-size: 26px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.btn-vk-subscribe:hover .vk-arrow {
    transform: translateX(10px);
}

@media (max-width: 768px) {
    .vk-subscribe-banner {
        padding: 50px 0;
    }
    
    .vk-banner-content {
        min-height: 300px;
        justify-content: center;
        padding-left: 15px;
        text-align: center;
    }
    
    .vk-banner-title {
        font-size: 36px;
    }
    
    .vk-banner-subtitle {
        font-size: 16px;
    }
    
    .btn-vk-subscribe {
        padding: 16px 35px;
        font-size: 16px;
        width: 90%;
        justify-content: center;
    }
    
    .btn-vk-subscribe .vk-icon {
        font-size: 24px;
    }
    
    .btn-vk-subscribe .vk-arrow {
        font-size: 20px;
    }
}



/* ===== ИКОНКА КАЛЕНДАРЯ ===== */
.calendar-results-empty .empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-results-empty .empty-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* ===== ИЗОБРАЖЕНИЕ КАЛЕНДАРЯ ВМЕСТО ЭМОДЗИ ===== */
.tour-hero-icon-page {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin-right: 8px;
}

.feature-icon-page {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin-right: 8px;
}

.day-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-right: 8px;
    vertical-align: middle;
}

.date-icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-right: 8px;
}

.calendar-header-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    margin-right: 8px;
    vertical-align: middle;
}

/* ===== ОПТИМИЗАЦИЯ ПОД НОУТБУКИ 1366x768 ===== */
@media (max-width: 1366px) and (min-width: 993px) {
    .container { padding: 0 30px; }
    .header .container { padding: 0 30px; }
    .logo { margin-left: -150px; }
    .logo-img { height: 140px; }
    .logo-fallback { font-size: 55px; }
    .nav { gap: 15px; margin-left: 30px; }
    .nav a { font-size: 15px; padding: 14px 22px; }
    .header-right { margin-left: 50px; gap: 25px; }
    .header-phone, .header-address, .header-hours { font-size: 15px; }
    .hero-title { font-size: 42px !important; }
    .hero-subtitle { font-size: 20px; }
    .section-title { font-size: 34px; margin-bottom: 40px; }
    .tour-card-wide { margin-bottom: 25px; }
    .tour-info-wide h3 { font-size: 22px; }
    .tour-price { font-size: 24px; }
    .search-title { font-size: 34px; }
    .search-subtitle { font-size: 17px; }
    .search-box-modern input { font-size: 16px; padding: 18px 55px 18px 60px; }
    .request-form { padding: 35px; }
    .form-row { gap: 20px; }
    .footer-modern-content { gap: 40px; }
    .tour-main-grid { grid-template-columns: 1fr 320px; gap: 30px; }
    .calendar-section { padding: 80px 0; }
    .calendar-title { font-size: 34px; }
    .calendar-subtitle { font-size: 17px; }
}

/* ===== ОПТИМИЗАЦИЯ ПОД НОУТБУКИ 1280x720 (HD) ===== */
@media (max-width: 1280px) and (min-width: 993px) {
    .container { padding: 0 25px; }
    .header .container { padding: 0 25px; }
    .logo { margin-left: -100px; }
    .logo-img { height: 120px; }
    .logo-fallback { font-size: 50px; }
    .nav { gap: 12px; margin-left: 20px; }
    .nav a { font-size: 14px; padding: 12px 18px; }
    .header-right { margin-left: 30px; gap: 20px; }
    .header-phone, .header-address, .header-hours { font-size: 14px; }
    .hero h1 { font-size: 40px; }
    .hero-subtitle { font-size: 18px; }
    .hero-features { gap: 15px; }
    .hero-features span { font-size: 14px; padding: 12px 20px; }
    .hero .btn-primary { padding: 20px 50px; font-size: 18px; }
    .section-title { font-size: 32px; margin-bottom: 35px; }
    .tour-card-wide { height: 200px; }
    .tour-image-wide { width: 300px; }
    .tour-info-wide h3 { font-size: 20px; }
    .tour-description { font-size: 14px; }
    .tour-price { font-size: 22px; }
    .search-title { font-size: 32px; }
    .search-subtitle { font-size: 16px; }
    .search-box-modern input { font-size: 15px; padding: 16px 50px 16px 55px; }
    .request-form { padding: 30px; }
    .footer-modern-content { gap: 35px; }
    .calendar-title { font-size: 32px; }
    .calendar-subtitle { font-size: 16px; }
}

/* ===== ОПТИМИЗАЦИЯ ПОД НОУТБУКИ 1440x900 (WXGA+) ===== */
@media (max-width: 1440px) and (min-width: 1367px) {
    .container { padding: 0 35px; }
    .header .container { padding: 0 35px; }
    .logo { margin-left: -180px; }
    .logo-img { height: 150px; }
    .logo-fallback { font-size: 58px; }
    .nav { gap: 18px; margin-left: 35px; }
    .nav a { font-size: 16px; padding: 14px 24px; }
    .header-right { margin-left: 60px; gap: 28px; }
    .header-phone, .header-address, .header-hours { font-size: 16px; }
    .tour-image-wide { width: 360px; }
    .tour-info-wide h3 { font-size: 24px; }
}

/* ===== ОПТИМИЗАЦИЯ ПОД НОУТБУКИ 1536x864 ===== */
@media (max-width: 1536px) and (min-width: 1441px) {
    .container { padding: 0 38px; }
    .header .container { padding: 0 38px; }
    .logo { margin-left: -200px; }
    .logo-img { height: 160px; }
    .logo-fallback { font-size: 60px; }
    .nav { gap: 20px; margin-left: 40px; }
    .nav a { font-size: 17px; padding: 15px 25px; }
    .header-right { margin-left: 70px; gap: 30px; }
    .tour-image-wide { width: 370px; }
}

/* ===== ОПТИМИЗАЦИЯ ПОД НОУТБУКИ 1600x900 ===== */
@media (max-width: 1600px) and (min-width: 1537px) {
    .container { padding: 0 40px; }
    .header .container { padding: 0 40px; }
    .logo { margin-left: -220px; }
    .logo-img { height: 165px; }
    .nav { gap: 22px; margin-left: 45px; }
    .tour-image-wide { width: 380px; }
}

/* ===== ОПТИМИЗАЦИЯ ПОД FULLHD НОУТБУКИ (1920x1080) ===== */
@media (max-width: 1920px) and (min-width: 1601px) {
    .container { padding: 0 40px; }
    .header .container { padding: 0 40px; }
    .logo { margin-left: -250px; }
    .logo-img { height: 170px; }
    .logo-fallback { font-size: 65px; }
    .nav { gap: 25px; margin-left: 50px; }
    .nav a { font-size: 18px; padding: 15px 26px; }
    .header-right { margin-left: 80px; gap: 35px; }
    .header-phone, .header-address, .header-hours { font-size: 16px; }
    .tour-image-wide { width: 400px; }
    .tour-info-wide h3 { font-size: 26px; }
}

/* ===== УТОЧНЕННАЯ ОПТИМИЗАЦИЯ 1366x768 ===== */
@media (max-width: 1366px) and (max-height: 768px) {
    body { font-size: 15px; }
    .hero { min-height: 80vh; padding-top: 60px; }
    .hero-title { font-size: 38px !important; }
    .hero-subtitle { font-size: 18px; }
    .hero-features { font-size: 15px; gap: 15px; }
    section { padding: 60px 0 !important; }
    .tours-section, .search-section, .request-section { padding: 70px 0 !important; }
    .gallery-grid, .reviews-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
    .gallery-item { border-radius: 16px; }
    .gallery-image { height: 200px; }
    .gallery-content { padding: 20px; }
    .gallery-content h3 { font-size: 19px; }
    .review-card { padding: 24px; }
    .review-avatar { width: 50px; height: 50px; font-size: 20px; }
    .review-author h4 { font-size: 16px; }
    .review-text { font-size: 14px; line-height: 1.6; }
    .booking-wrapper { gap: 30px; }
    .booking-content { padding: 30px; }
    .calendar-grid { gap: 4px; }
    .calendar-day { font-size: 13px; padding: 10px 0; }
    .calendar-day-header { font-size: 12px; }
    .side { width: 240px; }
    .side a { padding: 12px 20px; margin: 4px 12px; }
    .main { padding: 24px; }
    .card { padding: 24px; }
    .stat-card { padding: 20px; }
    .stat-icon { width: 60px; height: 60px; font-size: 40px; }
    .stat-info h3 { font-size: 30px; }
}

/* ===== ВЫПАДАЮЩЕЕ МЕНЮ ДЛЯ "ВСЕ ТУРЫ" ===== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    font-size: 21px !important;
    padding: 18px 32px !important;
}

.nav-dropdown-toggle::after {
    content: '▾';
    margin-left: 4px;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding: 12px;
    border: 2px solid rgba(255, 140, 0, 0.1);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    background: transparent !important;
    border: none !important;
    border-radius: 12px;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: none !important;
    transform: none !important;
}

.nav-dropdown-menu a::before {
    content: '';
    display: none;
}

.nav-dropdown-menu a::after {
    display: none;
}

.nav-dropdown-menu a:hover {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1) 0%, rgba(255, 165, 0, 0.15) 100%) !important;
    color: var(--orange);
    transform: translateX(5px);
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
    .nav-dropdown {
        display: block !important;
        width: 100%;
    }
    
    .nav-dropdown-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100%;
        background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%) !important;
        color: white !important;
        padding: 18px 28px !important;
        font-size: 19px !important;
        font-weight: 700 !important;
        border-radius: 14px !important;
        margin-bottom: 10px !important;
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3) !important;
        text-align: center !important;
        border: none !important;
    }
    
    .nav-dropdown-menu {
        display: block !important;
        position: static !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }
    
    .nav-dropdown-menu a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%) !important;
        color: white !important;
        padding: 16px 24px !important;
        font-size: 18px !important;
        font-weight: 600 !important;
        border-radius: 12px !important;
        margin-bottom: 8px !important;
        text-align: center !important;
        box-shadow: 0 3px 12px rgba(255, 107, 53, 0.25) !important;
    }
    
    .nav-dropdown-menu a:hover {
        background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%) !important;
        transform: translateY(-2px) !important;
    }
    
    .nav-dropdown-toggle:hover {
        background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4) !important;
    }
    
    /* Обычные ссылки в навигации (не в dropdown) */
    .nav > a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%) !important;
        color: white !important;
        padding: 18px 28px !important;
        font-size: 19px !important;
        font-weight: 700 !important;
        border-radius: 14px !important;
        margin-bottom: 10px !important;
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3) !important;
        border: none !important;
        text-align: center !important;
    }
    
    .nav > a:hover,
    .nav > a.active {
        background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4) !important;
    }
}
    
