/* Home Page Styles */

/* ===================================
   ANIMATIONS
   =================================== */

/* Keyframes */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(37, 99, 235, 0.6);
    }
}

@keyframes shine {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes snowfall {
    0% {
        transform: translateY(-10vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0.3;
    }
}

@keyframes bounce-slow {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-15px) translateX(-50%);
    }
    60% {
        transform: translateY(-7px) translateX(-50%);
    }
}

@keyframes wheel-scroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(6px);
    }
}

@keyframes card-entrance {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Animation Classes */
.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
    opacity: 0;
}

.animate-fade-down {
    animation: fadeDown 0.8s ease-out forwards;
    opacity: 0;
}

.animate-delay-1 {
    animation-delay: 0.2s;
}

.animate-delay-2 {
    animation-delay: 0.4s;
}

.animate-delay-3 {
    animation-delay: 0.6s;
}

.animate-bounce-slow {
    animation: bounce-slow 2s infinite;
}

/* Card Animation */
.card-animate {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    transition-delay: calc(var(--card-index, 0) * 0.1s);
}

.card-animate.card-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ===================================
   ENHANCED NAVIGATION
   =================================== */

/* Navigation Animations */
@keyframes nav-underline {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes nav-shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes dropdown-enter {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes logo-pulse {
    0%, 100% {
        filter: drop-shadow(0 0 0 transparent);
    }
    50% {
        filter: drop-shadow(0 0 10px rgba(37, 99, 235, 0.5));
    }
}

/* Base Navigation */
#navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: transparent;
    border: none !important;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero state - light glassmorphism */
#navigation:not(.nav-scrolled) {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow:
        0 4px 30px rgba(0, 0, 0, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

/* Увеличенный отступ для контейнера навигации */
#navigation > div {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

#navigation:not(.nav-scrolled) .nav-logo-text {
    color: #1e3a8a !important;
}

#navigation:not(.nav-scrolled) .nav-link {
    color: #374151 !important;
   
}

#navigation:not(.nav-scrolled) .nav-link:hover {
    color: #2563eb !important;
}

/* Chevron icons */
#navigation:not(.nav-scrolled) .nav-link svg,
#navigation:not(.nav-scrolled) .nav-link i {
    color: #6b7280 !important;
}

#navigation:not(.nav-scrolled) .nav-link:hover svg,
#navigation:not(.nav-scrolled) .nav-link:hover i {
    color: #2563eb !important;
}

#navigation:not(.nav-scrolled) .accessibility-btn {
    color: #4b5563 !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
    background: rgba(255, 255, 255, 0.3) !important;
}

#navigation:not(.nav-scrolled) .accessibility-btn:hover {
    background: rgba(255, 255, 255, 0.5) !important;
    border-color: rgba(0, 0, 0, 0.12) !important;
    color: #1f2937 !important;
}

/* Mobile menu button */
#navigation:not(.nav-scrolled) #mobile-menu-toggle {
    color: #374151 !important;
}

#navigation:not(.nav-scrolled) #mobile-menu-toggle:hover {
    color: #2563eb !important;
}

/* Scrolled state - Glassmorphism */
.nav-scrolled {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow:
        0 4px 30px rgba(0, 0, 0, 0.1),
        0 1px 0 rgba(255, 255, 255, 0.5) inset,
        0 -1px 0 rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
}

/* Logo Enhancement */
.nav-logo {
    position: relative;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-logo img {
    height: 6rem;
    width: auto;
    transition: filter 0.3s ease;
}

.nav-logo-text {
    font-size: 1.35rem !important;
}

.nav-logo:hover img {
    animation: logo-pulse 1.5s ease-in-out infinite;
}

/* Logo text styling */
.nav-logo-text {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e3a8a 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    transition: all 0.3s ease;
}

.nav-logo:hover .nav-logo-text {
    animation: nav-shimmer 2s linear infinite;
}

/* Navigation Links with Animated Underline */
.nav-link {
    position: relative;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* Navigation item spacing */
.nav-item {
    margin: 0 0.125rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4, #3b82f6);
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

.nav-link:hover::after {
    transform: scaleX(1);
    animation: nav-shimmer 2s linear infinite;
}

/* Navigation Menu Item Icons */
.nav-link svg,
.nav-link .nav-icon {
    transition: transform 0.3s ease, color 0.3s ease;
}

.nav-link:hover svg,
.nav-link:hover .nav-icon {
    transform: translateY(-2px);
    color: #3b82f6;
}

/* Dropdown Menus Enhancement */
.nav-dropdown,
.group > div[class*="group-hover"],
nav .absolute {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 12px !important;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(0, 0, 0, 0.05),
        0 10px 20px -5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.group:hover > div[class*="group-hover"],
.group:hover .nav-dropdown,
.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Dropdown Items */
.nav-dropdown a,
.group > div a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
    border-radius: 8px;
    margin: 0.25rem;
}

.nav-dropdown a:hover,
.group > div a:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.1));
    transform: translateX(4px);
}

.nav-dropdown a::before,
.group > div a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, #3b82f6, #06b6d4);
    border-radius: 2px;
    transition: height 0.2s ease;
}

.nav-dropdown a:hover::before,
.group > div a:hover::before {
    height: 60%;
}

/* Dropdown Icons */
.nav-dropdown-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-dropdown a:hover .nav-dropdown-icon {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: white;
    transform: scale(1.1);
}

/* Accessibility Button Enhancement - Minimal Style */
.accessibility-btn {
    position: relative;
    transition: all 0.2s ease;
}

.accessibility-btn svg,
.accessibility-btn i {
    transition: transform 0.2s ease;
}

.accessibility-btn:hover svg,
.accessibility-btn:hover i {
    transform: scale(1.05);
}

/* Mobile Navigation Enhancements */
@media (max-width: 1024px) {
    #navigation:not(.nav-scrolled) {
        background: rgba(255, 255, 255, 0.95) !important;
    }

    #navigation:not(.nav-scrolled) .nav-logo-text,
    #navigation:not(.nav-scrolled) .nav-link {
        color: inherit !important;
        text-shadow: none !important;
    }

    #navigation:not(.nav-scrolled) .accessibility-btn {
        color: inherit !important;
        border-color: rgba(0, 0, 0, 0.1) !important;
        background: transparent !important;
    }
}

/* ===================================
   HERO SECTION ENHANCEMENTS
   =================================== */

/* Fixed Background - disabled for cleaner design */
.home-background {
    display: none;
}

/* Hero Section */
.hero-section {
    --scroll-progress: 0;
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 0;
}

.hero-video-container {
    position: absolute;
    inset: 0;
    will-change: transform;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Smooth GPU-accelerated parallax via CSS */
    transform: scale(calc(1 + var(--scroll-progress) * 0.1));
    will-change: transform;
    transition: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3),
        rgba(0, 0, 0, 0.2),
        rgba(0, 0, 0, 0.6)
    );
}

/* Snowflakes */
.snowflakes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 5;
}

.snowflake {
    position: absolute;
    top: -5vh;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    animation: snowfall linear infinite;
    user-select: none;
}

.snowflake:nth-child(1) { left: 5%; animation-duration: 15s; animation-delay: 0s; font-size: 0.8rem; }
.snowflake:nth-child(2) { left: 15%; animation-duration: 12s; animation-delay: 1s; font-size: 1.2rem; }
.snowflake:nth-child(3) { left: 25%; animation-duration: 18s; animation-delay: 2s; font-size: 0.6rem; }
.snowflake:nth-child(4) { left: 35%; animation-duration: 14s; animation-delay: 3s; font-size: 1rem; }
.snowflake:nth-child(5) { left: 45%; animation-duration: 16s; animation-delay: 0.5s; font-size: 0.9rem; }
.snowflake:nth-child(6) { left: 55%; animation-duration: 13s; animation-delay: 2.5s; font-size: 1.1rem; }
.snowflake:nth-child(7) { left: 65%; animation-duration: 17s; animation-delay: 1.5s; font-size: 0.7rem; }
.snowflake:nth-child(8) { left: 75%; animation-duration: 11s; animation-delay: 4s; font-size: 1.3rem; }
.snowflake:nth-child(9) { left: 85%; animation-duration: 19s; animation-delay: 0.8s; font-size: 0.8rem; }
.snowflake:nth-child(10) { left: 92%; animation-duration: 14s; animation-delay: 3.5s; font-size: 1rem; }
.snowflake:nth-child(11) { left: 10%; animation-duration: 16s; animation-delay: 5s; font-size: 0.9rem; }
.snowflake:nth-child(12) { left: 50%; animation-duration: 20s; animation-delay: 2s; font-size: 0.7rem; }

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 0 1rem;
    max-width: 56rem;
    margin: 0 auto;
    /* Smooth GPU-accelerated parallax */
    transform: translateY(calc(var(--scroll-progress) * 150px));
    opacity: calc(1 - var(--scroll-progress) * 1.5);
    will-change: transform, opacity;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 9999px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-title {
    font-family: Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-title .title-accent {
    display: block;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

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

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.375rem;
    }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

@media (min-width: 640px) {
    .hero-stats {
        gap: 3rem;
    }
}

.hero-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: white;
    line-height: 1;
    margin-bottom: 0.375rem;
}

@media (min-width: 640px) {
    .stat-number {
        font-size: 2.5rem;
    }
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-stat-divider {
    width: 1px;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 639px) {
    .hero-stat-divider {
        display: none;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 0.375rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
    transition: all 0.25s ease;
    text-decoration: none;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-glow {
    /* Убираем синее свечение */
    animation: none;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-1px);
}

.btn-shine::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-shine:hover::before {
    left: 100%;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    transition: opacity 0.3s ease;
    z-index: 10;
}

.mouse {
    width: 22px;
    height: 34px;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 7px;
}

.wheel {
    width: 3px;
    height: 6px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 1.5px;
    animation: wheel-scroll 1.5s ease-out infinite;
}

.scroll-indicator span {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.45);
}

/* Mountain Divider */
/* Old mountain divider - hidden in favor of new wave transitions */
.mountain-divider {
    display: none !important;
}

.mountain-divider svg {
    display: none;
}

.mountain-back {
    fill: rgba(255, 255, 255, 0.3);
}

.mountain-mid {
    fill: rgba(255, 255, 255, 0.5);
}

.mountain-front {
    fill: rgba(255, 255, 255, 0.95);
}

.btn-route {
    width: 100%;
    padding: 0.625rem 1rem;
    background-color: var(--forest-green, #2c5f4f);
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
}

.btn-route:hover {
    background-color: #234d40;
}

.btn-glass {
    display: block;
    text-align: center;
    padding: 0.75rem;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.2s ease;
    color: #111827;
    text-decoration: none;
}

.btn-glass:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

.btn-cta-primary {
    padding: 1rem 2rem;
    background-color: #ffffff;
    color: #065f46;
    border-radius: 0.5rem;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    background-color: #f0fdf4;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary {
    padding: 1rem 2rem;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
}

/* Link Arrow */
/* Link arrow - clean monochrome style */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    text-decoration: none;
    background: #1e293b;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(30, 41, 59, 0.2);
    transition: all 0.3s ease;
}

.link-arrow:hover {
    background: #334155;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 41, 59, 0.3);
    color: #ffffff;
}

.link-arrow svg,
.link-arrow i {
    transition: transform 0.3s ease;
}

.link-arrow:hover svg,
.link-arrow:hover i {
    transform: translateX(4px);
}

/* Sections Common */
/* ===================================
   CREATIVE SECTION TITLES
   =================================== */

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--forest-green, #1e3a4c);
    position: relative;
    display: inline-block;
    /* Gradient text effect */
    background: linear-gradient(135deg, #1e3a4c 0%, #2563eb 50%, #059669 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: title-gradient 8s ease infinite;
    /* Entrance animation */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.section-title.title-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Letter spacing animation on hover - disabled */
/* .section-title:hover {
    letter-spacing: 1px;
} */

@keyframes title-gradient {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

/* Animated underline decoration */
.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #059669, #8b5cf6);
    background-size: 200% 100%;
    border-radius: 2px;
    animation: underline-flow 3s ease-in-out infinite;
}

@keyframes underline-flow {
    0%, 100% {
        background-position: 0% center;
        width: 60px;
    }
    50% {
        background-position: 100% center;
        width: 100px;
    }
}

/* Decorative dots around title */
.text-center .section-title::before {
    content: '◆';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.5rem;
    color: #2563eb;
    opacity: 0.5;
    animation: dot-pulse 2s ease-in-out infinite;
}

.text-center .section-title::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #2563eb, #059669);
    border-radius: 2px;
    opacity: 0.6;
    animation: dot-rotate 4s linear infinite;
}

@keyframes dot-rotate {
    from {
        transform: translateY(-50%) rotate(0deg);
    }
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

@keyframes dot-pulse {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-50%) scale(1.2);
    }
}

/* Section description with fade-in effect */
.section-description {
    color: #4b5563;
    max-width: 42rem;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    position: relative;
    /* Entrance animation */
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.section-description.desc-visible {
    opacity: 0.9;
    transform: translateY(0);
}

/* Decorative quote marks for descriptions */
.section-description::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -15px;
    font-size: 3rem;
    font-family: Georgia, serif;
    color: rgba(37, 99, 235, 0.1);
    line-height: 1;
    pointer-events: none;
}

/* Subtle highlight on key words - applied via span.highlight */
.section-description .highlight {
    color: #2563eb;
    font-weight: 500;
    position: relative;
}

.section-description .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: rgba(37, 99, 235, 0.15);
    border-radius: 3px;
    z-index: -1;
}

/* Unique theme colors for each section */

/* Directions - dark title for light background */
.section-directions .section-title {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #334155 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-directions .section-title::after {
    background: linear-gradient(90deg, #1e3a5f, #475569, #1e3a5f);
    background-size: 200% 100%;
}

.section-directions .section-description {
    color: #475569;
}

/* Routes - dark monochrome theme */
.section-routes .section-title {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #334155 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-routes .section-title::after {
    background: linear-gradient(90deg, #475569, #64748b, #475569);
}

/* Transport - slate gray theme */
.section-transport .section-title {
    background: linear-gradient(135deg, #334155 0%, #64748b 50%, #94a3b8 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-transport .section-title::after {
    background: linear-gradient(90deg, #64748b, #94a3b8, #64748b);
}

/* News - dark monochrome title */
.section-news .section-title {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #334155 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-news .section-title::after {
    background: linear-gradient(90deg, #475569, #64748b, #475569);
}

/* Responsive title sizes */
@media (min-width: 640px) {
    .section-title {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }

    .section-title::after {
        bottom: -12px;
        height: 4px;
    }
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
}

/* Directions Section */
.section-directions {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f0f4f8 100%);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

/* Decorative mountain silhouette background */
.section-directions::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background:
        linear-gradient(135deg, transparent 40%, rgba(59, 130, 246, 0.03) 40%, rgba(59, 130, 246, 0.03) 45%, transparent 45%),
        linear-gradient(225deg, transparent 40%, rgba(16, 185, 129, 0.03) 40%, rgba(16, 185, 129, 0.03) 45%, transparent 45%);
    background-size: 100px 100px;
    pointer-events: none;
}

/* Floating particles effect */
.section-directions::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
}

/* Bento-style grid layout */
.directions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .directions-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    /* First card - large horizontal */
    .directions-grid .direction-card:nth-child(1) {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .directions-grid {
        grid-template-columns: repeat(12, 1fr);
        grid-template-rows: auto auto auto;
        gap: 1.5rem;
    }

    /* Ряд 1: большой (7) + маленький (5) */
    .directions-grid .direction-card:nth-child(1) {
        grid-column: span 7;
        grid-row: span 1;
    }
    .directions-grid .direction-card:nth-child(2) {
        grid-column: span 5;
        grid-row: span 1;
    }
    /* Ряд 2: маленький (5) + большой (7) - реверс */
    .directions-grid .direction-card:nth-child(3) {
        grid-column: span 5;
        grid-row: span 1;
    }
    .directions-grid .direction-card:nth-child(4) {
        grid-column: span 7;
        grid-row: span 1;
    }
    /* Ряд 3: большой (7) + маленький (5) */
    .directions-grid .direction-card:nth-child(5) {
        grid-column: span 7;
        grid-row: span 1;
    }
    .directions-grid .direction-card:nth-child(6) {
        grid-column: span 5;
        grid-row: span 1;
    }
}

.direction-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.25rem;
    background-color: #1e293b;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    min-height: 220px;
}

.direction-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    transform: translateY(-6px);
}

.direction-image-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: inherit;
}

.direction-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
    filter: brightness(1);
}

.direction-card:hover .direction-image {
    transform: scale(1.15);
    filter: brightness(1.1);
}

.direction-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.3) 50%,
        transparent
    );
    transition: all 0.4s ease;
    border-radius: 20px;
    overflow: hidden;
}

.direction-card:hover .direction-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0.35) 50%,
        rgba(0, 0, 0, 0.05)
    );
}

.direction-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: white;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.direction-card:hover .direction-content {
    transform: translateY(-5px);
}

/* Direction icon - monochrome style */
.direction-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
}

.direction-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: inherit;
}

.direction-card:hover .direction-icon {
    background: rgba(255, 255, 255, 0.25) !important;
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.direction-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    color: white;
    transition: transform 0.3s ease;
}

.direction-card:hover .direction-content h3 {
    transform: translateX(5px);
}

.direction-content p {
    font-size: 0.875rem;
    color: #e5e7eb;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    max-height: 0;
    overflow: hidden;
}

.direction-card:hover .direction-content p {
    opacity: 0.9;
    transform: translateY(0);
    max-height: 100px;
}

/* Special styling for larger cards in bento grid */
@media (min-width: 1024px) {
    /* Большие карточки (1, 4, 5) - featured style */
    .directions-grid .direction-card:nth-child(1),
    .directions-grid .direction-card:nth-child(4),
    .directions-grid .direction-card:nth-child(5) {
        min-height: 260px;
    }

    .directions-grid .direction-card:nth-child(1) .direction-content,
    .directions-grid .direction-card:nth-child(4) .direction-content,
    .directions-grid .direction-card:nth-child(5) .direction-content {
        padding: 2rem;
    }

    .directions-grid .direction-card:nth-child(1) .direction-content h3,
    .directions-grid .direction-card:nth-child(4) .direction-content h3,
    .directions-grid .direction-card:nth-child(5) .direction-content h3 {
        font-size: 1.75rem;
    }
}

/* Routes Section - light gray background */
.section-routes {
    padding: 5rem 0;
    background: #f1f5f9;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

/* Gradient flow animation for section decorations */
@keyframes gradient-flow {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Subtle dot pattern for routes */
.section-routes::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #cbd5e1 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.4;
    pointer-events: none;
}

.routes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
}

@media (min-width: 768px) {
    .routes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 2rem;
    }
}

@media (min-width: 1024px) {
    .routes-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    /* Dotted trail connecting cards */
    .routes-grid::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 10%;
        right: 10%;
        height: 2px;
        background: repeating-linear-gradient(
            90deg,
            #0ea5e9 0px,
            #0ea5e9 8px,
            transparent 8px,
            transparent 16px
        );
        opacity: 0.3;
        z-index: 0;
        transform: translateY(-50%);
    }
}

/* Route card - clean modern style */
.route-card-home {
    background: #ffffff;
    border-radius: 1.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.route-card-home:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.route-image-wrapper {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.route-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.route-card-home:hover .route-image {
    transform: scale(1.05);
}

.route-content {
    padding: 1.5rem;
    position: relative;
    background: white;
    z-index: 2;
}

.route-badges {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

/* Difficulty level dots */
.badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

/* Badge styles with subtle color coding */
.badge-easy {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.badge-easy::before {
    background-color: #22c55e;
}

.badge-medium {
    background: #fef7ed;
    color: #9a6b3a;
    border: 1px solid #f5d0a9;
}

.badge-medium::before {
    background-color: #d4a574;
}

.badge-hard {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.badge-hard::before {
    background-color: #ef4444;
}

@keyframes pulse-dot-fast {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.6; }
}

.route-location {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: #64748b;
    padding: 0.2rem 0.6rem;
    background: rgba(100, 116, 139, 0.08);
    border-radius: 0.5rem;
}

.route-location svg {
    color: #64748b;
}

.route-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    transition: color 0.3s ease;
}

.route-card-home:hover .route-content h3 {
    color: #334155;
}

.route-stats {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 1.25rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 0.75rem;
}

.route-stat {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 500;
}

.route-stat svg {
    color: #64748b;
}

/* Route button - clean monochrome style */
.btn-route {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: #1e293b;
    color: white;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
}

.btn-route:hover {
    background: #334155;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 41, 59, 0.25);
}

/* Pricing Section */
.section-pricing {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1e3a4c 100%);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

/* Old section-pricing decorations removed - using new wave transitions */

@keyframes float-orb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -20px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

/* Subtle grid pattern */
.info-cards-grid::before {
    content: '';
    position: absolute;
    inset: -100%;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* Pricing section - dark title for light background */
.section-pricing .section-title {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #334155 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-pricing .section-title::after {
    background: linear-gradient(90deg, #1e3a5f, #475569, #1e3a5f);
    background-size: 200% 100%;
}

.section-pricing .section-description {
    color: #475569 !important;
}

.section-pricing .section-description::before {
    color: rgba(30, 58, 95, 0.15);
}

.info-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    position: relative;
    align-items: stretch;
}

/* Two cards layout */
.info-cards-grid.info-cards-two {
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .info-cards-grid.info-cards-two {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .info-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .info-cards-grid.info-cards-two {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================================
   MODERN INFO CARDS - Clean Design
   =================================== */
.info-card {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 1.75rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
}

/* Card header - icon + title inline */
.info-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

/* Icon - monochrome style */
.info-card-icon {
    width: 2.75rem;
    height: 2.75rem;
    min-width: 2.75rem;
    padding: 0.625rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #64748b;
    transition: all 0.3s ease;
}

.info-card-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: inherit;
}

.info-card:hover .info-card-icon {
    background: #1e3a5f;
    color: #ffffff;
}

.info-card-header h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.3;
}

/* Card content */
.info-card-content {
    flex: 1;
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Info items with icons */
.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #334155;
    font-size: 0.95rem;
}

.info-item-icon {
    width: 1.125rem;
    height: 1.125rem;
    color: #64748b;
    flex-shrink: 0;
}

.info-item-muted {
    color: #64748b;
    font-size: 0.875rem;
}

.info-item-muted .info-item-icon {
    color: #94a3b8;
}

.info-card .text-muted {
    color: #94a3b8;
}

.info-card .text-sm {
    font-size: 0.875rem;
}

.info-card h3 {
    margin-bottom: 0.625rem;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.price-list {
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 0.75rem;
    padding: 0.75rem;
    flex: 1;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    margin-bottom: 0.25rem;
    color: #475569;
    border-radius: 0.5rem;
    transition: background 0.3s ease;
    font-size: 0.875rem;
}

.price-item:last-child {
    margin-bottom: 0;
}

.price-item:hover {
    background: rgba(59, 130, 246, 0.08);
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hours and contact info */
.hours-info,
.contact-info {
    color: #475569;
    font-size: 0.9375rem;
    line-height: 1.7;
}

.hours-info p,
.contact-info p {
    margin-bottom: 0.5rem;
}

.hours-info p:last-child,
.contact-info p:last-child {
    margin-bottom: 0;
}

.hours-info p:first-child {
    font-weight: 600;
    color: #1e293b;
}

.contact-info .contact-phone {
    font-weight: 700;
    font-size: 1.125rem;
    color: #1e293b;
    letter-spacing: -0.01em;
}

/* Card button */
.btn-glass {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: #f8fafc;
    color: #475569;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.info-card .btn-glass:hover {
    background: #1e3a5f;
    color: #ffffff;
    border-color: #1e3a5f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.2);
}

/* ===================================
   TICKET BAR - Price & Buy Button
   =================================== */
.ticket-bar {
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.ticket-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.25rem 1.75rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.ticket-bar-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ticket-bar-icon {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    background: #f1f5f9;
    border-radius: 0.625rem;
    color: #64748b;
}

.ticket-bar-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.ticket-bar-label {
    font-size: 1rem;
    color: #475569;
    font-weight: 500;
}

.ticket-bar-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-left: 0.5rem;
}

.btn-ticket {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    background: #1e3a5f;
    color: #ffffff;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-ticket:hover {
    background: #0f2744;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.25);
}

/* Mobile responsive */
@media (max-width: 640px) {
    .ticket-bar-content {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .ticket-bar-info {
        flex-direction: column;
        gap: 0.75rem;
    }

    .ticket-bar-price {
        margin-left: 0;
    }

    .btn-ticket {
        width: 100%;
    }
}

/* Transport Section - clean dark theme */
.section-transport {
    padding: 5rem 0;
    background: #334155;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

/* Subtle dot pattern */
.section-transport::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.transport-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
}

@media (min-width: 768px) {
    .transport-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Clean transport card */
.transport-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 1.25rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.transport-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* Monochrome icon */
.transport-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.transport-icon svg,
.transport-icon i {
    color: #ffffff !important;
    width: 1.75rem;
    height: 1.75rem;
}

.transport-card:hover .transport-icon {
    background: rgba(255, 255, 255, 0.15);
}

.transport-card h3 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.transport-details {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.transport-details p {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.transport-details p::before {
    content: '→';
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.transport-details span {
    color: #ffffff;
    font-weight: 500;
}

.transport-note {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.transport-note p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

/* Clean address banner */
.address-banner {
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 1.25rem;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Transport section titles on dark background */
.section-transport .section-title {
    color: #ffffff;
}

.section-transport .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.address-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.address-banner h3 {
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
}

.address-banner > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.address-banner .btn-primary {
    background: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    color: #334155;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.address-banner .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* News Section - clean style */
.section-news {
    padding: 5rem 0;
    background: #ffffff;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

/* Subtle dot pattern */
.section-news::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #d1fae5 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.5;
    pointer-events: none;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
}

@media (min-width: 768px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Clean news card */
.news-card {
    background: #ffffff;
    border-radius: 1.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.news-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.news-image-wrapper {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

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

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

.news-content {
    padding: 1.5rem;
    position: relative;
    background: white;
    z-index: 2;
}

.news-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

/* Category badge - pastel green */
.news-category {
    font-size: 0.75rem;
    padding: 0.3rem 0.75rem;
    background: #ecfdf5;
    color: #059669;
    border-radius: 9999px;
    font-weight: 600;
    border: 1px solid #a7f3d0;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: #64748b;
}

.news-date svg {
    color: #64748b;
}

.news-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.news-card:hover .news-content h3 {
    color: #334155;
}

.news-content p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

/* Clean news link */
.news-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: #059669;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.news-link:hover {
    color: #047857;
}

.news-card:hover .news-link {
    color: #059669;
}

/* CTA Section - clean light style with accent */
.section-cta {
    padding: 5rem 0;
    background: #f8fafc;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

/* Subtle gradient accent at top */
.section-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #059669, #10b981, #34d399);
}

/* Dot pattern */
.section-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #cbd5e1 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.4;
    pointer-events: none;
}

.cta-header {
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

/* CTA title - dark monochrome */
.section-cta .section-title {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #334155 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-cta .section-title::after {
    background: linear-gradient(90deg, #059669, #10b981, #059669);
}

.section-cta .section-description {
    color: #64748b;
}

/* CTA Cards Grid */
.cta-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .cta-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* CTA Card */
.cta-card {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    border-color: #d1fae5;
}

/* Featured card */
.cta-card-featured {
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
    border-color: #a7f3d0;
}

.cta-card-featured:hover {
    border-color: #6ee7b7;
}

.cta-card-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: #059669;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Card icon */
.cta-card-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.cta-card-icon svg,
.cta-card-icon i {
    width: 1.75rem;
    height: 1.75rem;
    color: #64748b;
    transition: all 0.3s ease;
}

.cta-card:hover .cta-card-icon {
    background: #ecfdf5;
    border-color: #a7f3d0;
}

.cta-card:hover .cta-card-icon svg,
.cta-card:hover .cta-card-icon i {
    color: #059669;
}

.cta-card-featured .cta-card-icon {
    background: #d1fae5;
    border-color: #a7f3d0;
}

.cta-card-featured .cta-card-icon svg,
.cta-card-featured .cta-card-icon i {
    color: #059669;
}

/* Card content */
.cta-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.cta-card p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex: 1;
}

/* Card link */
.cta-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #059669;
    transition: all 0.3s ease;
}

.cta-card-link i,
.cta-card-link svg {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}

.cta-card:hover .cta-card-link {
    color: #047857;
}

.cta-card:hover .cta-card-link i,
.cta-card:hover .cta-card-link svg {
    transform: translateX(4px);
}

/* Color Classes */
.bg-blue-600 {
    background-color: #2563eb;
}

.bg-rose-600 {
    background-color: #e11d48;
}

.bg-amber-600 {
    background-color: #d97706;
}

.bg-sky-600 {
    background-color: #0284c7;
}

.bg-purple-600 {
    background-color: #9333ea;
}

.bg-emerald-600 {
    background-color: #059669;
}

.bg-blue-100 {
    background-color: #dbeafe;
}

.bg-green-100 {
    background-color: #d1fae5;
}

.bg-amber-100 {
    background-color: #fef3c7;
}

.text-blue-600 {
    color: #2563eb;
}

.text-green-600 {
    color: #16a34a;
}

.text-amber-600 {
    color: #d97706;
}

/* ===================================
   MOUNTAIN SECTION DIVIDERS
   =================================== */

/* ===================================
   SMOOTH WAVE SECTION TRANSITIONS
   =================================== */

/* Base wave divider styles */
.wave-divider {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    pointer-events: none;
    z-index: 15;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100%;
}

/* Bottom wave divider */
.wave-divider-bottom {
    bottom: -1px;
}

/* Top wave divider */
.wave-divider-top {
    top: -1px;
    transform: rotate(180deg);
}

/* Hero section bottom - transition to white directions */
.hero-section {
    position: relative;
}

/* ===================================
   SIMPLE FADE DIVIDER
   =================================== */

.hero-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    z-index: 20;
    pointer-events: none;
}

/* Плавный переход к белому фону */
.hero-divider-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 30%,
        rgba(255, 255, 255, 0.7) 60%,
        rgba(255, 255, 255, 0.95) 85%,
        #ffffff 100%
    );
}

/* Hide old ::after pseudo-element */
.hero-section::after {
    display: none;
}

/* Directions section with double wave divider */
.section-directions {
    padding-bottom: 2rem !important;
    position: relative;
}

/* Gradient Fog Divider - Mountain Style */
.fog-divider {
    position: relative;
    height: 100px;
    margin-top: 2rem;
    overflow: hidden;
    z-index: 5;
}

/* Слои тумана */
.fog-layer {
    position: absolute;
    left: -10%;
    right: -10%;
    height: 100%;
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0;
    animation: fog-drift 8s ease-in-out infinite;
}

/* Первый слой - светло-голубой, ближе к верху */
.fog-layer-1 {
    top: 0;
    background: radial-gradient(ellipse 80% 50% at 30% 50%,
        rgba(224, 242, 254, 0.9) 0%,
        rgba(186, 230, 253, 0.6) 40%,
        transparent 70%
    );
    animation-delay: 0s;
}

/* Второй слой - голубой с оттенком sky, центр */
.fog-layer-2 {
    top: 20%;
    background: radial-gradient(ellipse 70% 60% at 60% 50%,
        rgba(186, 230, 253, 0.8) 0%,
        rgba(125, 211, 252, 0.5) 35%,
        rgba(14, 165, 233, 0.2) 60%,
        transparent 80%
    );
    animation-delay: 2s;
    animation-duration: 10s;
}

/* Третий слой - переход к секции routes (light blue) */
.fog-layer-3 {
    top: 40%;
    background: radial-gradient(ellipse 90% 70% at 50% 60%,
        rgba(240, 249, 255, 0.95) 0%,
        rgba(224, 242, 254, 0.7) 50%,
        transparent 85%
    );
    animation-delay: 1s;
    animation-duration: 12s;
}

@keyframes fog-drift {
    0%, 100% {
        opacity: 0.4;
        transform: translateX(0) scale(1);
    }
    25% {
        opacity: 0.7;
        transform: translateX(2%) scale(1.02);
    }
    50% {
        opacity: 0.9;
        transform: translateX(-1%) scale(1.05);
    }
    75% {
        opacity: 0.6;
        transform: translateX(1%) scale(1.01);
    }
}

/* Routes section */
.section-routes {
    padding-top: 4rem !important;
    padding-bottom: 6rem !important;
    position: relative;
}

/* Pricing section - dark blue, transition to darker transport */
.section-pricing {
    padding-top: 4rem !important;
    padding-bottom: 8rem !important;
    position: relative;
}

.section-pricing::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'%3E%3Cpath fill='%231e293b' fill-opacity='0.5' d='M0,40 C200,70 400,20 600,50 C800,80 1000,30 1200,60 C1320,75 1400,45 1440,55 L1440,100 L0,100 Z'/%3E%3Cpath fill='%230f172a' d='M0,60 C280,85 560,40 840,65 C1120,90 1300,50 1440,70 L1440,100 L0,100 Z'/%3E%3C/svg%3E") bottom/cover no-repeat;
    pointer-events: none;
    z-index: 5;
}

/* Transport section - slate dark, transition to green news */
.section-transport {
    padding-top: 3rem !important;
    padding-bottom: 8rem !important;
    position: relative;
}

.section-transport::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%2310b981' fill-opacity='0.2' d='M0,40 C180,70 360,20 540,50 C720,80 900,30 1080,60 C1260,90 1380,40 1440,70 L1440,120 L0,120 Z'/%3E%3Cpath fill='%23ecfdf5' fill-opacity='0.6' d='M0,60 C240,90 480,40 720,70 C960,100 1200,50 1440,80 L1440,120 L0,120 Z'/%3E%3Cpath fill='%23ecfdf5' d='M0,80 C320,100 640,60 960,85 C1280,110 1380,75 1440,90 L1440,120 L0,120 Z'/%3E%3C/svg%3E") bottom/cover no-repeat;
    pointer-events: none;
    z-index: 5;
}

/* News section - green/mint, transition to blue CTA */
.section-news {
    padding-top: 3rem !important;
    padding-bottom: 8rem !important;
    position: relative;
}

.section-news::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #34d399, #10b981, #059669, #10b981, #34d399);
    background-size: 200% 100%;
    animation: gradient-flow 4s linear infinite;
    z-index: 10;
}

.section-news::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'%3E%3Cpath fill='%231e3a8a' fill-opacity='0.3' d='M0,30 C180,60 360,20 540,45 C720,70 900,25 1080,50 C1260,75 1380,35 1440,55 L1440,100 L0,100 Z'/%3E%3Cpath fill='%231e3a8a' fill-opacity='0.6' d='M0,50 C240,75 480,35 720,60 C960,85 1200,40 1440,65 L1440,100 L0,100 Z'/%3E%3Cpath fill='%231e3a8a' fill-opacity='0.95' d='M0,70 C320,90 640,55 960,80 C1280,100 1380,65 1440,85 L1440,100 L0,100 Z'/%3E%3C/svg%3E") bottom/cover no-repeat;
    pointer-events: none;
    z-index: 5;
}

/* CTA section - blue, transition to footer */
.section-cta {
    padding-top: 8rem !important;
    padding-bottom: 5rem !important;
    position: relative;
}

.section-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath fill='%23ecfdf5' d='M0,0 L0,30 C200,60 400,20 600,40 C800,60 1000,25 1200,45 C1320,55 1400,35 1440,50 L1440,0 Z'/%3E%3C/svg%3E") top/cover no-repeat;
    pointer-events: none;
    z-index: 5;
}

/* ===================================
   GOVERNMENT STYLE - CLEAN SECTIONS
   No decorative pseudo-elements, gradients, or animations
   =================================== */

/* Remove ALL decorative ::before and ::after on sections */
.section-directions::after,
.section-pricing::after,
.section-transport::before,
.section-transport::after,
.section-news::before,
.section-news::after,
.section-cta::before,
.section-cta::after {
    display: none !important;
    content: none !important;
}

/* Remove decorative elements from grids */
.routes-grid::before,
.routes-grid::after,
.info-cards-grid::before,
.transport-grid::before,
.transport-grid::after,
.news-grid::before,
.news-grid::after,
.section-transport > div::before,
.section-transport > div::after {
    display: none !important;
    content: none !important;
}

/* Section directions - modern subtle background */
.section-directions {
    background: #ffffff !important;
    position: relative;
    z-index: 0;
}

/* Subtle dot pattern for directions */
.section-directions::before {
    content: '' !important;
    display: block !important;
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(148, 163, 184, 0.1) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
}

/* Section routes - slightly darker background */
.section-routes {
    background: #f1f5f9 !important;
}

/* Section pricing - white/light background for contrast */
.section-pricing {
    background: #ffffff !important;
    position: relative;
    z-index: 0;
}

.section-transport {
    background: #334155 !important;
}

.section-news {
    background: #ffffff !important;
}

.section-cta {
    background: #f8fafc !important;
}

/* Remove fog divider styles */
.fog-divider,
.fog-layer,
.fog-layer-1,
.fog-layer-2,
.fog-layer-3 {
    display: none !important;
}

/* ===================================
   MOBILE HERO SECTION
   =================================== */
@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
        min-height: 100dvh;
        padding-top: 60px;
        padding-bottom: 80px;
    }

    .hero-content {
        padding: 0 1.25rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-badge {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-stat {
        flex-direction: row;
        gap: 0.5rem;
        align-items: baseline;
    }

    .hero-stat-value {
        font-size: 1.75rem;
    }

    .hero-stat-label {
        font-size: 0.75rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        padding: 0 0.5rem;
    }

    .hero-buttons a,
    .hero-buttons button {
        width: 100%;
        justify-content: center;
    }

    /* Adjust divider on mobile */
    .hero-divider {
        height: 80px;
    }

    .hero-divider-fade {
        height: 40px;
    }
}
