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

:root {
    --navy: #0a1628;
    --deep-blue: #1a3a5c;
    --primary-blue: #1565c0;
    --primary-blue-dark: #0d47a1;
    --primary-blue-light: #1e88e5;
    --ocean: #1976d2;
    --light-blue: #64b5f6;
    --accent-blue: #42a5f5;
    --gold: #d4a843;
    --gold-light: #f0d078;
    --gold-dark: #b8922e;
    --white: #ffffff;
    --light-gray: #f5f7fa;
    --gray: #7a8a9e;
    --dark-gray: #2d3748;
    --bg-blue: #e8f0fe;
    --vk-blue: #4a76a8;
    --telegram-blue: #0088cc;
    --max-color: #6b47e8;
    --email-color: #ea4335;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-gray);
    background: #b9e1ff;
    overflow-x: hidden;
}

/* ===== NAV ===== */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, var(--primary-blue-dark), #0a2e6e);
    box-shadow: 0 2px 20px rgba(13, 71, 161, 0.4);
}

nav.scrolled {
    *background: linear-gradient(135deg, #072355, #061a45);
    padding: 0.4rem 2rem;
    box-shadow: 0 4px 30px rgba(7, 35, 85, 0.5);
}

.logo-link { display: flex; align-items: center; gap: 0; text-decoration: none; }
.logo-text { font-family: 'Bad Script', cursive; font-size: 2.2rem; color: var(--white); white-space: nowrap; line-height: 1; transition: all 0.4s ease; }
.logo-text span { color: var(--gold-light); }
*nav.scrolled .logo-text { font-size: 1.9rem; }

.nav-right { display: flex; align-items: center; gap: 1.5rem; }
.nav-links { display: flex; list-style: none; gap: 1.2rem; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.9); text-decoration: none; font-size: 1rem; font-weight: 500; transition: color 0.3s; letter-spacing: 0.5px; }
.nav-links a:hover { color: var(--gold-light); }
.nav-phone { color: var(--gold-light) !important; font-weight: 700 !important; font-size: 1.2rem !important; }

.nav-socials { display: flex; gap: 0.7rem; }
.nav-social-link { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s; text-decoration: none; }
.nav-social-link.vk { background: var(--vk-blue); }
.nav-social-link.telegram { background: var(--telegram-blue); }
.nav-social-link.email { background: var(--email-color); }
.nav-social-link.email svg { stroke: var(--white); fill: none; }
.nav-social-link.max { background: var(--max-color); }
.nav-social-link:hover { transform: translateY(-3px); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.nav-social-link svg { width: 22px; height: 22px; fill: var(--white); }
.nav-socials-mobile { display: none; }

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.burger span { width: 28px; height: 2px; background: var(--white); transition: all 0.3s; }

.mobile-phone-link {
    display: none;
    align-items: center;
    gap: 0.4rem;
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
}

.mobile-phone-link svg { width: 18px; height: 18px; stroke: var(--gold-light); }

/* ===== HERO ===== */
.hero { position: relative; height: 70vh; min-height: 500px; max-height: 700px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('images/hero-banner2.jpg') center/cover no-repeat; transform: scale(1.05); animation: heroZoom 20s ease-in-out infinite alternate; }
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.15); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,71,161,0.6) 0%, rgba(10,22,40,0.4) 40%, rgba(10,22,40,0.7) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; color: var(--white); max-width: 900px; padding: 8rem 2rem 8rem; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; animation: fadeUp 1s ease 0.5s both; }
.hero h1 span { color: var(--light-blue); text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
.hero-sub { font-size: 1.2rem; font-weight: 300; opacity: 0.9; margin-bottom: 2.5rem; line-height: 1.6; animation: fadeUp 1s ease 0.7s both; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; animation: fadeUp 1s ease 0.9s both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 1rem 2.5rem; border-radius: 50px; font-size: 1rem; font-weight: 600; text-decoration: none; transition: all 0.3s ease; cursor: pointer; border: none; font-family: inherit; }
.btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy); box-shadow: 0 4px 20px rgba(212, 168, 67, 0.4); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212, 168, 67, 0.5); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-blue { background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark)); color: var(--white); box-shadow: 0 4px 20px rgba(21, 101, 192, 0.4); }
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(21, 101, 192, 0.5); }

.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; animation: bounce 2s infinite; }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(10px); } }
.scroll-indicator svg { width: 30px; height: 30px; stroke: rgba(255,255,255,0.5); }

/* ===== SECTIONS ===== */
section { padding: 4.2rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 2.8rem; }
.section-tag { display: inline-block; color: var(--primary-blue); font-size: 0.85rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 1rem; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--navy); margin-bottom: 1rem; }
.section-subtitle { font-size: 1.1rem; color: var(--gray); max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* ===== ROUTES ===== */
.route-category { margin-bottom: 3.5rem; }
.route-category:last-child { margin-bottom: 0; }

.route-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 4px solid var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.route-icon { width: 28px; height: 28px; flex-shrink: 0; }
.route-icon-blue { color: var(--primary-blue); }
.route-icon-orange { color: #ea580c; }
.route-icon-purple { color: #7e22ce; }

.route-slider-wrapper { position: relative; padding: 0 48px; margin-top: 1rem; }

.route-slider-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.route-slider-track::-webkit-scrollbar { display: none; }

.route-slider-wrapper .route-card {
    flex: 0 0 calc((100% - 4rem) / 3);
    scroll-snap-align: start;
}

.route-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    color: var(--dark-gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s;
}

.route-slider-arrow:hover { background: var(--primary-blue); color: var(--white); border-color: var(--primary-blue); }
.route-slider-arrow svg { width: 18px; height: 18px; }
.route-slider-arrow.prev { left: 0; }
.route-slider-arrow.next { right: 0; }

.route-slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 1.5rem; }

.route-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    padding: 0;
}

.route-slider-dot.active { background: var(--primary-blue); width: 24px; border-radius: 4px; }

.route-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.route-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.15); }

.route-card-img { height: 280px; overflow: hidden; }
.route-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.route-card:hover .route-card-img img { transform: scale(1.08); }

.route-card-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.route-card h3 { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin: 0; line-height: 1.3; }

.route-card-duration { font-size: 0.85rem; color: var(--gray); display: flex; align-items: center; gap: 0.4rem; }
.route-card-duration svg { width: 16px; height: 16px; stroke: var(--primary-blue); flex-shrink: 0; }

.route-card-actions { display: flex; gap: 0.5rem; margin-top: auto; }
.route-card-actions .btn-sm.details, .route-card-actions .btn-sm.book { flex: 1; justify-content: center; font-size: 0.8rem; }

.routes-category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.routes-category-grid .route-card { min-height: auto; }

/* ===== FLEET ===== */
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.fleet-card { background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.08); transition: all 0.4s ease; border: 1px solid rgba(0,0,0,0.05); }
.fleet-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.fleet-card-img { position: relative; height: 280px; overflow: hidden; }
.fleet-slider { position: relative; width: 100%; height: 100%; touch-action: pan-y; }
.fleet-slider img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; opacity: 0; transition: opacity 0.5s ease; user-select: none; -webkit-user-drag: none; }
.fleet-slider img:first-child { opacity: 1; }
.slider-dot-container { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 5; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: all 0.3s; border: none; padding: 0; }
.slider-dot.active { background: var(--white); transform: scale(1.3); }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.2); backdrop-filter: blur(4px); border: none; color: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 5; opacity: 0; transition: all 0.3s; }
.fleet-card:hover .slider-arrow { opacity: 1; }
.slider-arrow:hover { background: rgba(255,255,255,0.35); }
.slider-arrow svg { width: 16px; height: 16px; }
.slider-arrow.prev { left: 8px; }
.slider-arrow.next { right: 8px; }
.fleet-tag { position: absolute; top: 1rem; left: 1rem; background: var(--primary-blue); color: var(--white); padding: 0.35rem 1rem; border-radius: 50px; font-size: 0.8rem; font-weight: 600; z-index: 3; }
.fleet-tag.premium { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy); }
.fleet-card-body { padding: 1.5rem; }
.fleet-card-name { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.fleet-card-specs { display: flex; gap: 1rem; margin: 1rem 0; flex-wrap: wrap; }
.fleet-spec { display: flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; color: var(--gray); }
.fleet-spec svg { width: 16px; height: 16px; stroke: var(--primary-blue); }
.fleet-card-desc { font-size: 0.9rem; color: var(--dark-gray); line-height: 1.6; margin-bottom: 1rem; }
.fleet-card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 1rem; border-top: 1px solid #f1f5f9; gap: 1rem; }
.fleet-price { font-size: 1.4rem; font-weight: 800; color: var(--navy); white-space: nowrap; }
.fleet-price small { font-size: 0.8rem; font-weight: 500; color: var(--gray); }
.fleet-btns { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: flex-end; }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.8rem; border-radius: 50px; border: none; cursor: pointer; font-weight: 600; font-family: inherit; transition: all 0.3s; text-decoration: none; display: inline-flex; align-items: center; }
.btn-sm.book { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy); }
.btn-sm.book:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(212, 168, 67, 0.4); }
.btn-sm.details { background: var(--light-gray); color: var(--dark-gray); border: 1px solid #e2e8f0; }
.btn-sm.details:hover { background: #e2e8f0; }

/* ===== EVENTS ===== */
.events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 2rem; }
.event-card { border-radius: 20px; overflow: hidden; background: var(--white); box-shadow: 0 10px 40px rgba(0,0,0,0.08); transition: all 0.4s ease; border: 1px solid rgba(0,0,0,0.05); }
.event-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.event-card-img { height: 220px; overflow: hidden; position: relative; }
.event-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.event-card:hover .event-card-img img { transform: scale(1.08); }
.event-card-body { padding: 1.5rem; }
.event-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; }
.event-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; margin-bottom: 1.25rem; }

/* ===== ABOUT ===== */
.about { background: var(--light-gray); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.about-img { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.15); position: relative; }
.about-img img { width: 100%; height: 450px; object-fit: cover; display: block; }
.about-img-badge { position: absolute; bottom: 1.5rem; left: 1.5rem; background: rgba(10,22,40,0.9); backdrop-filter: blur(10px); color: var(--white); padding: 1rem 1.5rem; border-radius: 12px; display: flex; align-items: center; gap: 0.75rem; }
.about-img-badge svg { width: 24px; height: 24px; stroke: var(--gold); }
.about-text h3 { font-size: 2rem; font-weight: 700; color: var(--navy); margin-bottom: 1.5rem; line-height: 1.3; }
.about-text p { color: var(--dark-gray); line-height: 1.8; margin-bottom: 1.5rem; font-size: 1.05rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.about-feature { display: flex; align-items: center; gap: 0.75rem; font-weight: 600; color: var(--navy); }
.about-feature svg { width: 22px; height: 22px; stroke: var(--primary-blue); flex-shrink: 0; }

/* SEO TOGGLE */
.seo-toggle-wrapper { margin-top: 2.5rem; }
.seo-toggle-btn {
    display: inline-flex; align-items: center; gap: 0.5rem; cursor: pointer; padding: 0.75rem 1.5rem;
    background: var(--white); border: 2px solid var(--primary-blue-light); border-radius: 50px;
    color: var(--primary-blue); font-weight: 600; font-size: 0.9rem; transition: all 0.3s;
}
.seo-toggle-btn:hover { background: var(--primary-blue); color: var(--white); }
.seo-toggle-btn svg { width: 18px; height: 18px; transition: transform 0.3s; }
.seo-toggle-btn.active svg { transform: rotate(180deg); }
.seo-text-hidden { max-height: 0; overflow: hidden; transition: max-height 0.6s ease, padding 0.4s ease; }
.seo-text-hidden .seo-inner { padding-top: 0; opacity: 0; transition: opacity 0.4s ease; }
.seo-text-hidden.expanded { max-height: 3000px; }
.seo-text-hidden.expanded .seo-inner { padding-top: 1.5rem; opacity: 1; }
.seo-inner h3 { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.seo-inner p { color: var(--dark-gray); line-height: 1.8; margin-bottom: 1rem; font-size: 0.95rem; }
.seo-inner ul { margin: 0.75rem 0 1.5rem 1.5rem; }
.seo-inner li { color: var(--dark-gray); line-height: 1.7; margin-bottom: 0.4rem; font-size: 0.95rem; }

/* ===== ADVANTAGES ===== */
.advantages-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.adv-card { text-align: center; padding: 2.5rem 1.5rem; border-radius: 20px; background: var(--white); border: 1px solid #f1f5f9; transition: all 0.4s ease; }
.adv-card:hover { box-shadow: 0 15px 50px rgba(0,0,0,0.1); transform: translateY(-5px); }
.adv-icon { width: 70px; height: 70px; background: linear-gradient(135deg, rgba(25,118,210,0.1), rgba(25,118,210,0.05)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.adv-icon svg { width: 30px; height: 30px; stroke: var(--primary-blue); }
.adv-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; }
.adv-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }

/* ===== FAQ ===== */
.faq { background: var(--light-gray); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: 16px; margin-bottom: 1rem; border: 1px solid #e2e8f0; overflow: hidden; transition: all 0.3s ease; }
.faq-item:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.faq-item.active { border-color: var(--primary-blue); box-shadow: 0 4px 20px rgba(21, 101, 192, 0.1); }
.faq-question { padding: 1.25rem 1.5rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; gap: 1rem; transition: background 0.3s; }
.faq-question:hover { background: var(--bg-blue); }
.faq-question h3 { font-size: 1.05rem; font-weight: 600; color: var(--navy); margin: 0; }
.faq-icon { width: 32px; height: 32px; border-radius: 50%; background: var(--primary-blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s; }
.faq-item.active .faq-icon { background: var(--primary-blue-dark); transform: rotate(45deg); }
.faq-icon svg { width: 18px; height: 18px; stroke: var(--white); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-answer-inner { padding: 0 1.5rem 1.25rem; font-size: 0.95rem; color: var(--dark-gray); line-height: 1.8; }

/* ===== BOOKING ===== */
.booking { background: var(--light-gray); }
.booking-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.booking-info h3 { font-size: 2rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.booking-info p { color: var(--dark-gray); line-height: 1.8; margin-bottom: 2rem; }
.booking-steps { display: flex; flex-direction: column; gap: 1.5rem; }
.step { display: flex; gap: 1rem; align-items: flex-start; }
.step-num { width: 40px; height: 40px; background: var(--primary-blue); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.step-text h4 { font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.step-text p { font-size: 0.9rem; color: var(--gray); margin: 0; }
.booking-form { background: var(--white); padding: 2.5rem; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.booking-form h3 { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--dark-gray); margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 0.85rem 1rem; border: 2px solid #e2e8f0; border-radius: 12px;
    font-size: 0.95rem; font-family: inherit; transition: border-color 0.3s;
    background: var(--light-gray); color: var(--dark-gray);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary-blue); background: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-full { width: 100%; justify-content: center; margin-top: 0.5rem; }

/* ===== REVIEWS ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.review-card { background: var(--white); border-radius: 20px; padding: 2rem; border: 1px solid #f1f5f9; transition: all 0.3s; }
.review-card:hover { box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.review-stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; }
.review-stars svg { width: 18px; height: 18px; fill: var(--gold); }
.review-text { font-size: 0.95rem; color: var(--dark-gray); line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar { width: 45px; height: 45px; border-radius: 50%; background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue)); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 1rem; }
.review-name { font-weight: 700; color: var(--navy); font-size: 0.95rem; }
.review-date { font-size: 0.8rem; color: var(--gray); }

/* ===== CONTACTS ===== */
.contacts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.contact-card { text-align: center; padding: 2.5rem 1.5rem; border-radius: 20px; background: var(--white); border: 1px solid #e2e8f0; transition: all 0.3s; }
.contact-card:hover { box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.contact-icon { width: 60px; height: 60px; background: var(--primary-blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.contact-icon svg { width: 24px; height: 24px; stroke: var(--white); }
.contact-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.contact-card p { color: var(--dark-gray); font-size: 0.95rem; line-height: 1.6; }
.contact-card a { color: var(--primary-blue); text-decoration: none; font-weight: 600; }
.contact-card a:hover { text-decoration: underline; }

/* ===== MAP ===== */
.map-section { padding: 0; background: var(--white); }
.map-wrapper { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.map-header { text-align: center; padding: 3rem 0 1.5rem; }
.map-container { width: 100%; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.1); }
.map-container iframe { width: 100%; height: 450px; border: none; display: block; }

/* ===== CTA ===== */
.cta { background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark)); text-align: center; color: var(--white); }
.cta h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 1rem; }
.cta p { font-size: 1.15rem; color: rgba(255,255,255,0.8); margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ===== FOOTER ===== */
footer { background: var(--navy); color: var(--gray); padding: 4rem 2rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; max-width: 1200px; margin: 0 auto; }
.footer-brand .logo-text-footer { font-family: 'Bad Script', cursive; font-size: 2.2rem; color: var(--white); display: inline-block; margin-bottom: 1rem; line-height: 1; }
.footer-brand .logo-text-footer span { color: var(--gold-light); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 0.75rem; }
.social-link { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s; text-decoration: none; }
.social-link.vk { background: var(--vk-blue); }
.social-link.telegram { background: var(--telegram-blue); }
.social-link.email { background: var(--email-color); }
.social-link.email svg { stroke: var(--white); fill: none; }
.social-link.max { background: var(--max-color); }
.social-link:hover { transform: translateY(-3px); box-shadow: 0 4px 12px rgba(0,0,0,0.3); }
.social-link svg { width: 22px; height: 22px; fill: var(--white); }
.footer-col h4 { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.75rem; }
.footer-col a { color: var(--gray); text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { max-width: 1200px; margin: 3rem auto 0; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; font-size: 0.85rem; }

/* ===== MODAL ===== */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(10,22,40,0.8); backdrop-filter: blur(5px); z-index: 2000; justify-content: center; align-items: center; padding: 2rem; }
.modal-overlay.active { display: flex; }
.modal { background: var(--white); border-radius: 20px; padding: 2.5rem; max-width: 550px; width: 100%; position: relative; animation: modalIn 0.3s ease; max-height: 90vh; overflow-y: auto; }
@keyframes modalIn { from { opacity: 0; transform: scale(0.95) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.modal-close { position: absolute; top: 1rem; right: 1rem; width: 36px; height: 36px; border-radius: 50%; border: none; background: var(--light-gray); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.modal-close:hover { background: #fee2e2; }
.modal-close svg { width: 18px; height: 18px; stroke: var(--dark-gray); }
.modal h3 { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.modal p { color: var(--gray); margin-bottom: 1.5rem; }
.success-msg { display: none; text-align: center; padding: 2rem; }
.success-msg.active { display: block; }
.success-icon { width: 80px; height: 80px; background: #dcfce7; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.success-icon svg { width: 40px; height: 40px; stroke: #16a34a; }
.detail-content { line-height: 1.8; color: var(--dark-gray); }
.detail-content ul { margin: 1rem 0; padding-left: 1.5rem; }
.detail-content li { margin-bottom: 0.5rem; }

/* ===== SCROLL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .fleet-grid { grid-template-columns: repeat(2, 1fr); }
    .routes-category-grid { grid-template-columns: repeat(2, 1fr); }
    .route-slider-wrapper .route-card { flex: 0 0 calc((100% - 2rem) / 2); }
    .advantages-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .fleet-card-footer { flex-direction: column; align-items: flex-start; }
    .fleet-btns { width: 100%; justify-content: flex-start; margin-top: 0.5rem; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-socials { display: none; }
    .mobile-phone-link { display: flex; }
    .nav-links.active { display: flex; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(13, 71, 161, 0.98); flex-direction: column; justify-content: center; align-items: center; gap: 2rem; }
    .nav-links.active a { font-size: 1.2rem; }
    .nav-socials-mobile.active { display: flex; }
    .burger { display: flex; }
    .burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .burger.active span:nth-child(2) { opacity: 0; }
    .burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .fleet-grid { grid-template-columns: 1fr; }
    .routes-category-grid { grid-template-columns: 1fr; }
    .route-slider-wrapper .route-card { flex: 0 0 85%; }
    .route-slider-wrapper { padding: 0 40px; }
    .events-grid { grid-template-columns: 1fr; }
    .advantages-grid { grid-template-columns: 1fr; }
    .booking-wrapper { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .contacts-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .logo-text { font-size: 1.8rem; }
    .hero { height: 60vh; min-height: 450px; }
    .fleet-card-footer { flex-direction: column; align-items: flex-start; }
    .fleet-btns { width: 100%; justify-content: flex-start; margin-top: 0.5rem; }
    .map-container iframe { height: 350px; }
    .logo-text {font-size: 1.5rem;}
    nav.scrolled .logo-text {font-size: 1.5rem;}
}

/* Скрываем стрелки слайдера на мобильных устройствах */
@media (max-width: 768px) {
    .route-slider-arrow {
        display: none !important;
    }
    
    /* Компенсируем отступ, который был для стрелок */
    .route-slider-wrapper {
        padding-bottom: 2rem;
    }
    
    /* Точки навигации оставляем, но делаем их чуть крупнее для удобства */
    .route-slider-dots {
        margin-top: 1.5rem;
        gap: 10px;
    }
    
    .route-slider-dot {
        width: 12px;
        height: 12px;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 480px) {
    .route-slider-dots {
        gap: 8px;
    }
}