:root {
    --navy:        #081e52;
    --blue:        #1e5bff;
    --blue-dark:   #1040cc;
    --blue-pale:   #eef3ff;
    --white:       #ffffff;
    --bg:          #f4f6fb;
    --border:      #e4e9f5;
    --border-md:   #c8d3ef;
    --text-main:   #111827;
    --green-acc:   #0db57a;
    --orange:      #f59e0b;
    --red:         #ef4444;
    --ease:        cubic-bezier(0.4,0,0.2,1);
}
*, *::before, *::after { box-sizing:border-box; margin:0; padding:0; }
body { font-family:'Manrope',sans-serif; background:var(--bg); color:var(--text-main); -webkit-font-smoothing:antialiased; }

.container { max-width:1280px; margin:0 auto; padding:0 28px; }

.section-label {
    display:inline-flex; align-items:center; gap:8px;
    font-family:'Outfit',sans-serif; font-size:0.72rem; font-weight:700;
    letter-spacing:0.12em; text-transform:uppercase;
    color:var(--blue); background:rgba(30,91,255,0.08);
    border:1px solid rgba(30,91,255,0.18); border-radius:100px;
    padding:5px 14px; margin-bottom:14px;
}
.section-label::before { content:''; width:6px; height:6px; background:var(--blue); border-radius:50%; }

.section-title {
    font-family:'Outfit',sans-serif;
    font-size:clamp(1.5rem,2.8vw,2.2rem); font-weight:800;
    color:var(--navy); line-height:1.18; letter-spacing:-0.03em;
}
.section-title span { color:var(--blue); }
.section-sub { font-family:'Manrope',sans-serif; font-size:0.92rem; color:#6b7a9f; margin-top:8px; line-height:1.65; }

.btn-outline {
    display:inline-flex; align-items:center; gap:8px;
    padding:11px 22px; background:transparent; color:var(--blue);
    font-family:'Outfit',sans-serif; font-weight:700; font-size:0.88rem;
    border:2px solid var(--blue-pale); border-radius:12px; cursor:pointer;
    text-decoration:none; transition:all 0.22s ease;
}
.btn-outline:hover { background:rgba(30,91,255,0.06); border-color:var(--blue); }

.fade-up { opacity:0; transform:translateY(24px); transition:opacity 0.6s ease,transform 0.6s ease; }
.fade-up.visible { opacity:1; transform:translateY(0); }

.breadcrumb-bar { background:var(--white); border-bottom:1px solid var(--border); padding:10px 0; overflow-x:auto; white-space:nowrap; -webkit-overflow-scrolling:touch; }
.breadcrumb {
    display:flex; align-items:center; gap:6px; flex-wrap:nowrap;
    font-family:'Manrope',sans-serif; font-size:0.78rem; color:#6b7a9f;
}
.breadcrumb a { color:#576385; text-decoration:none; transition:color 0.15s; white-space:nowrap; } /* Изменено */
.breadcrumb-sep { color:#7c8ba1; flex-shrink:0; }
.breadcrumb a:hover { color:var(--blue); }
.breadcrumb-current { color:var(--text-main); font-weight:600; white-space:nowrap; }

.route-hero {
    position:relative; padding:56px 28px 130px; overflow:hidden;
}
.route-hero-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.route-hero-bg-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(8,30,82,0.92) 0%, rgba(8,30,82,0.70) 50%, rgba(8,30,82,0.85) 100%);
}
.route-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    display: block;
}
.route-hero::before {
    content:''; position:absolute; inset:0; z-index:1;
    background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,0.025) 1px,transparent 1px);
    background-size:56px 56px;
    mask-image:radial-gradient(ellipse 100% 100% at 50% 0%,black 0%,transparent 80%);
}
.route-hero-glow {
    position:absolute; inset:0; z-index:1; pointer-events:none;
    background:
    radial-gradient(ellipse 60% 70% at 80% 50%,rgba(30,91,255,0.22) 0%,transparent 60%),
    radial-gradient(ellipse 35% 50% at 5% 80%,rgba(95,139,255,0.10) 0%,transparent 55%);
}
.route-hero-inner {
    position:relative; z-index:2; max-width:1280px; margin:0 auto;
    display:grid; grid-template-columns:1fr 340px; gap:48px; align-items:center;
}

.route-direction { display:flex; align-items:center; gap:20px; margin-bottom:24px; flex-wrap:wrap; }
.rd-city { display:flex; flex-direction:column; position:relative; }
.rd-flag-name { display:flex; align-items:center; gap:10px; }
.rd-flag { font-size:2.2rem; line-height:1; }
.rd-name {
    font-family:'Outfit',sans-serif; font-size:clamp(1.7rem,3.5vw,2.9rem);
    font-weight:900; color:#fff; letter-spacing:-0.04em; line-height:1.05;
}

.rd-arrow { flex:1; min-width:80px; max-width:140px; display:flex; flex-direction:column; align-items:center; gap:8px; margin-top: auto;}
.rd-arrow-line {
    width:100%; height:1px;
    background:rgba(255,255,255,0.25); position:relative;
}
.rd-arrow-line::after {
    content:''; position:absolute; right:0; top:50%; transform:translateY(-50%) rotate(-45deg);
    width:7px; height:7px; border-right:1.5px solid rgba(255,255,255,0.6); border-bottom:1.5px solid rgba(255,255,255,0.6);
}
.rd-arrow-line::before {
    content:''; position:absolute; left:0; top:50%; transform:translateY(-50%);
    width:5px; height:5px; background:var(--blue); border-radius:50%;
}
.rd-arrow-label { font-family:'Outfit',sans-serif; font-size:0.65rem; font-weight:700; color:rgba(255,255,255,0.5); letter-spacing:0.05em; white-space:nowrap; }

.route-hero-h1 { font-family:'Outfit',sans-serif; font-size:clamp(1rem,1.4vw,1.2rem); font-weight:600; color:rgba(255,255,255,0.55); margin-bottom:24px; }

.route-meta-chips { display:flex; flex-wrap:wrap; gap:10px; margin-bottom:32px; }
.rmc {
    display:flex; align-items:center; gap:9px;
    padding:10px 18px; background:rgba(255,255,255,0.07);
    border:1px solid rgba(255,255,255,0.12); border-radius:14px;
}
.rmc-icon { width:32px; height:32px; background:rgba(30,91,255,0.35); border-radius:9px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.rmc-icon svg { width:15px; height:15px; color:#fff; }
.rmc-label { font-family:'Manrope',sans-serif; font-size:0.7rem; color:rgba(255,255,255,0.4); }
.rmc-value { font-family:'Outfit',sans-serif; font-size:0.95rem; font-weight:800; color:#fff; }

.route-hero-cta { display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.btn-cta-primary {
    display:inline-flex; align-items:center; gap:9px;
    height:52px; padding:0 28px;
    background:linear-gradient(135deg,var(--blue) 0%,var(--blue-dark) 100%);
    color:#fff; font-family:'Outfit',sans-serif; font-size:0.95rem; font-weight:800;
    border:none; border-radius:14px; cursor:pointer; text-decoration:none;
    box-shadow:0 6px 24px rgba(30,91,255,0.40); transition:all 0.22s; letter-spacing:0.01em;
}
.btn-cta-primary:hover { transform:translateY(-2px); box-shadow:0 10px 32px rgba(30,91,255,0.50); }
.btn-cta-primary svg { width:16px; height:16px; }
.btn-cta-ghost {
    display:inline-flex; align-items:center; gap:8px;
    height:52px; padding:0 24px;
    background:rgba(255,255,255,0.08); color:rgba(255,255,255,0.8);
    font-family:'Outfit',sans-serif; font-size:0.88rem; font-weight:700;
    border:1.5px solid rgba(255,255,255,0.15); border-radius:14px;
    text-decoration:none; transition:all 0.22s; white-space:nowrap;
}
.btn-cta-ghost:hover { background:rgba(255,255,255,0.14); border-color:rgba(255,255,255,0.28); }
.btn-cta-ghost svg { width:15px; height:15px; }

.hero-price-card {
    background:rgba(255,255,255,0.07); backdrop-filter:blur(16px);
    border:1px solid rgba(255,255,255,0.12); border-radius:24px; padding:24px;
}
.hpc-label { font-family:'Manrope',sans-serif; font-size:0.7rem; font-weight:700; color:rgba(255,255,255,0.4); text-transform:uppercase; letter-spacing:0.1em; margin-bottom:6px; }
.hpc-price { font-family:'Outfit',sans-serif; font-size:2.6rem; font-weight:900; color:#7DDFB4; letter-spacing:-0.04em; line-height:1; margin-bottom:4px; }
.hpc-sub { font-family:'Manrope',sans-serif; font-size:0.72rem; color:rgba(255,255,255,0.38); margin-bottom:18px; }
.hpc-divider { height:1px; background:rgba(255,255,255,0.08); margin:16px 0; }
.hpc-stat-row { display:flex; justify-content:space-between; margin-bottom:10px; }
.hpc-stat-row:last-of-type { margin-bottom:0; }
.hpc-stat-key { font-family:'Manrope',sans-serif; font-size:0.75rem; color:rgba(255,255,255,0.38); }
.hpc-stat-val { font-family:'Outfit',sans-serif; font-size:0.82rem; font-weight:800; color:rgba(255,255,255,0.85); }
.hpc-btn {
    display:flex; align-items:center; justify-content:center; gap:8px;
    height:48px; width:100%; margin-top:18px;
    background:linear-gradient(135deg,var(--blue) 0%,var(--blue-dark) 100%);
    color:#fff; font-family:'Outfit',sans-serif; font-size:0.92rem; font-weight:800;
    border:none; border-radius:12px; cursor:pointer; text-decoration:none;
    box-shadow:0 4px 20px rgba(30,91,255,0.4); transition:all 0.22s;
}
.hpc-btn:hover { transform:translateY(-2px); box-shadow:0 8px 28px rgba(30,91,255,0.5); }
.hpc-btn svg { width:15px; height:15px; }

.trips-strip {
    background:var(--white); border-bottom:1.5px solid var(--border); padding:18px 0;
}
.trips-strip-inner { max-width:1280px; margin:0 auto; padding:0 28px; }
.trips-strip-label {
    font-family:'Manrope',sans-serif; font-size:0.7rem; font-weight:700;
    letter-spacing:0.1em; text-transform:uppercase; color:#576385;
    margin-bottom:10px; display:flex; align-items:center; gap:8px;
}
.trips-strip-label::before { content:''; width:6px; height:6px; background:var(--green-acc); border-radius:50%; animation:pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.75)} }
.trips-strip-list { display:flex; gap:10px; overflow-x:auto; scrollbar-width:none; padding-top: 5px;}
.trips-strip-list::-webkit-scrollbar { display:none; }

.trip-chip {
    flex-shrink:0; background:var(--bg); border:1.5px solid var(--border);
    border-radius:14px; padding:12px 16px; text-decoration:none;
    display:flex; align-items:center; gap:14px; transition:all 0.18s;
    min-width:200px;
}
.trip-chip:hover { border-color:var(--blue); box-shadow:0 4px 14px rgba(30,91,255,0.12); transform:translateY(-2px); }
.tc-time-big { font-family:'Outfit',sans-serif; font-size:1.3rem; font-weight:900; color:var(--navy); letter-spacing:-0.03em; line-height:1; }
.tc-meta { flex:1; min-width:0; }
.tc-carrier-nm { font-family:'Manrope',sans-serif; font-size:0.72rem; font-weight:700; color:#4b5563; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.tc-vtype { font-family:'Manrope',sans-serif; font-size:0.67rem; color:var(--blue); margin-top:2px; }
.tc-price-nm { font-family:'Outfit',sans-serif; font-size:0.92rem; font-weight:900; color:#097d53; white-space:nowrap; }
.tc-seats-nm { font-family:'Manrope',sans-serif; font-size:0.65rem; color:#6b7a9f; margin-top:2px; text-align:right; }

.stats-bar { background:var(--white); border-top:1.5px solid var(--border); border-bottom:1.5px solid var(--border); }
.stats-bar-inner { max-width:1280px; margin:0 auto; padding:0 28px; display:flex; align-items:stretch; }
.stat-item { flex:1; display:flex; align-items:center; gap:14px; padding:22px 24px; border-right:1px solid var(--border); transition:background 0.2s; }
.stat-item:last-child { border-right:none; }
.stat-item:hover { background:var(--bg); }
.stat-icon { width:44px; height:44px; background:rgba(30,91,255,0.08); border-radius:12px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.stat-icon svg { width:20px; height:20px; color:var(--blue); }
.stat-num { font-family:'Outfit',sans-serif; font-size:1.45rem; font-weight:900; color:var(--navy); letter-spacing:-0.03em; line-height:1; }
.stat-label { font-family:'Manrope',sans-serif; font-size:0.76rem; color:#576385; margin-top:3px; }

.stops-section { padding:64px 0; background:var(--white); }
.stops-section-inner { display:grid; grid-template-columns:1fr 340px; gap:48px; align-items:start; margin-top:36px; }

.route-timeline { position:relative; }
.route-timeline::before {
    content:''; position:absolute; left:66px; top:20px; bottom:20px;
    width:2px;
    background:linear-gradient(to bottom, var(--blue) 0%, var(--border-md) 40%, var(--border-md) 60%, var(--green-acc) 100%);
    border-radius:2px;
}

.stop-row {
    display:flex; align-items:flex-start; gap:0;
    position:relative; z-index:1; padding:0 0 0 0; margin-bottom:0;
}

.stop-time-col {
    width:58px; flex-shrink:0; text-align:right; padding-right:14px; padding-top:3px;
}
.stop-time-val { font-family:'Outfit',sans-serif; font-size:0.82rem; font-weight:800; color:var(--navy); line-height:1; }
.stop-day-badge {
    display:inline-block; font-family:'Manrope',sans-serif; font-size:0.58rem; font-weight:700;
    color:var(--blue); background:rgba(30,91,255,0.08); border-radius:4px; padding:1px 4px; margin-top:3px;
}
.stop-offset { font-family:'Manrope',sans-serif; font-size:0.65rem; color:#6b7a9f; }

.stop-dot-col {
    width:18px; flex-shrink:0; display:flex; align-items:flex-start; justify-content:center; padding-top:4px;
}
.stop-dot {
    width:14px; height:14px; border-radius:50%;
    border:2.5px solid var(--border-md); background:var(--white);
    position:relative; z-index:2; flex-shrink:0;
}
.stop-row.is-origin .stop-dot {
    width:18px; height:18px; background:var(--blue); border-color:var(--blue);
    box-shadow:0 0 0 4px rgba(30,91,255,0.15);
}
.stop-row.is-dest .stop-dot {
    width:18px; height:18px; background:var(--green-acc); border-color:var(--green-acc);
    box-shadow:0 0 0 4px rgba(13,181,122,0.15);
}
.stop-row.is-origin .stop-dot-col, .stop-row.is-dest .stop-dot-col { padding-top:2px; }

.stop-content {
    flex:1; padding-left:16px; padding-top:5px; padding-bottom:10px;
    border-bottom:1px dashed var(--border); min-width:0;
}
.stop-row:last-child .stop-content { border-bottom:none; padding-bottom:0; }

.stop-name { font-family:'Manrope',sans-serif; font-size:0.88rem; font-weight:700; color:var(--navy); line-height:1.3; }
.stop-row.is-origin .stop-name, .stop-row.is-dest .stop-name { font-size:0.95rem; font-weight:800; }
.stop-address { font-family:'Manrope',sans-serif; font-size:0.72rem; color:#6b7a9f; margin-top:3px; font-weight:500; }
.stop-city { font-family:'Manrope',sans-serif; font-size:0.72rem; color:#6b7a9f; margin-top:2px; }

.stop-badges { display:flex; flex-wrap:wrap; gap:4px; margin-top:6px; }
.stop-badge {
    display:inline-flex; align-items:center; gap:3px;
    padding:2px 8px; border-radius:5px;
    font-family:'Manrope',sans-serif; font-size:0.62rem; font-weight:700;
}
.stop-badge.origin { background:var(--blue); color:#fff; }
.stop-badge.dest   { background:var(--green-acc); color:#fff; }
.stop-badge.pickup  { background:rgba(30,91,255,0.08); color:var(--blue); }
.stop-badge.dropoff { background:rgba(13,181,122,0.08); color:var(--green-acc); }
.stop-badge svg { width:9px; height:9px; }

.stop-price-tag {
    font-family:'Outfit',sans-serif; font-size:0.72rem; font-weight:800;
    color:#6b7a9f; margin-top:5px;
}

.stop-price-tag {
    display: none;
}

.route-facts-card {
    background:var(--bg); border:1.5px solid var(--border); border-radius:20px; padding:24px;
}
.rfc-title {
    display:flex; align-items:center; gap:9px;
    font-family:'Outfit',sans-serif; font-size:0.95rem; font-weight:800; color:var(--navy);
    margin-bottom:16px; padding-bottom:14px; border-bottom:1.5px solid var(--border-md);
}
.rfc-title svg { width:16px; height:16px; color:var(--blue); flex-shrink:0; }
.rfc-row { display:flex; align-items:center; justify-content:space-between; padding:9px 0; border-bottom:1px solid var(--border); gap:8px; }
.rfc-row:last-child { border-bottom:none; padding-bottom:0; }
.rfc-row:first-child { padding-top:0; }
.rfc-key { font-family:'Manrope',sans-serif; font-size:0.8rem; color:#6b7a9f; flex-shrink:0; }
.rfc-val { font-family:'Outfit',sans-serif; font-size:0.88rem; font-weight:800; color:var(--navy); text-align:right; }
.rfc-val.green { color:var(--green-acc); }

.book-now-card-sidebar {
    position: sticky; top: 85px;
}
.book-now-card {
    background:linear-gradient(135deg,var(--navy) 0%,#0a2466 100%);
    border-radius:20px; padding:22px; margin-bottom:16px;
}
.bnc-label { font-family:'Manrope',sans-serif; font-size:0.7rem; font-weight:700; color:rgba(255,255,255,0.4); text-transform:uppercase; letter-spacing:0.1em; margin-bottom:6px; }
.bnc-price { font-family:'Outfit',sans-serif; font-size:2.2rem; font-weight:900; color:#7DDFB4; letter-spacing:-0.04em; line-height:1; }
.bnc-sub { font-family:'Manrope',sans-serif; font-size:0.72rem; color:rgba(255,255,255,0.38); margin-bottom:16px; }
.bnc-btn {
    display:flex; align-items:center; justify-content:center; gap:8px;
    height:46px; width:100%;
    background:linear-gradient(135deg,var(--blue) 0%,var(--blue-dark) 100%);
    color:#fff; font-family:'Outfit',sans-serif; font-size:0.9rem; font-weight:800;
    border:none; border-radius:12px; cursor:pointer; text-decoration:none;
    box-shadow:0 4px 20px rgba(30,91,255,0.4); transition:all 0.22s;
}
.bnc-btn:hover { transform:translateY(-2px); box-shadow:0 8px 28px rgba(30,91,255,0.5); }
.bnc-btn svg { width:15px; height:15px; }

.content-section { padding:64px 0; background:var(--white); border-top:1.5px solid var(--border); }
.content-grid { display:grid; grid-template-columns:1fr 340px; gap:52px; align-items:start; margin-top:36px; }

.info-block { margin-bottom:36px; }
.info-block:last-child { margin-bottom:0; }
.info-block-title {
    display:flex; align-items:center; gap:10px;
    font-family:'Outfit',sans-serif; font-size:1.05rem; font-weight:800; color:var(--navy);
    margin-bottom:14px;
}
.info-block-title svg { width:18px; height:18px; color:var(--blue); flex-shrink:0; }
.info-block-body { font-family:'Manrope',sans-serif; font-size:0.93rem; color:#374151; line-height:1.8; }
.info-block-body p { margin-bottom:12px; }
.info-block-body p:last-child { margin-bottom:0; }
.info-block-body ul { margin:12px 0; padding-left:20px; }
.info-block-body li { margin-bottom:6px; line-height:1.7; }

.tips-list { list-style:none; display:flex; flex-direction:column; gap:8px; padding:0; }
.tips-list li {
    display:flex; gap:10px; padding:10px 14px;
    background:var(--bg); border-radius:12px;
    font-family:'Manrope',sans-serif; font-size:0.84rem; color:#374151; line-height:1.6;
}
.tips-list li::before {
    content:''; width:6px; height:6px; border-radius:50%;
    background:var(--blue); flex-shrink:0; margin-top:7px;
}

.sidebar-sticky { display:flex; flex-direction:column; gap:16px; position:sticky; top:85px; }

.sidebar-card {
    background:var(--bg); border:1.5px solid var(--border); border-radius:20px; padding:22px;
}
.sc-title {
    display:flex; align-items:center; gap:9px;
    font-family:'Outfit',sans-serif; font-size:0.9rem; font-weight:800; color:var(--navy);
    margin-bottom:14px; padding-bottom:12px; border-bottom:1.5px solid var(--border-md);
}
.sc-title svg { width:15px; height:15px; color:var(--blue); flex-shrink:0; }
.sc-row { display:flex; align-items:center; justify-content:space-between; padding:8px 0; border-bottom:1px solid var(--border); gap:8px; }
.sc-row:last-child { border-bottom:none; padding-bottom:0; }
.sc-row:first-child { padding-top:0; }
.sc-key { font-family:'Manrope',sans-serif; font-size:0.78rem; color:#6b7a9f; }
.sc-val { font-family:'Outfit',sans-serif; font-size:0.85rem; font-weight:800; color:var(--navy); }
.sc-val.green { color:var(--green-acc); }

.reverse-banner {
    background:var(--bg); border:1.5px solid var(--border); border-radius:20px;
    padding:22px 26px; display:flex; align-items:center; gap:20px; flex-wrap:wrap;
    margin-top:32px;
}
.rb-icon { width:46px; height:46px; background:var(--blue-pale); border-radius:14px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.rb-icon svg { width:20px; height:20px; color:var(--blue); }
.rb-text { flex:1; min-width:180px; }
.rb-title { font-family:'Outfit',sans-serif; font-size:0.97rem; font-weight:800; color:var(--navy); margin-bottom:3px; }
.rb-sub { font-family:'Manrope',sans-serif; font-size:0.78rem; color:#6b7a9f; }
.rb-btn {
    display:inline-flex; align-items:center; gap:7px;
    padding:10px 18px; background:var(--navy); color:#fff;
    font-family:'Outfit',sans-serif; font-size:0.83rem; font-weight:700;
    border-radius:12px; text-decoration:none; transition:all 0.2s; flex-shrink:0;
}
.rb-btn:hover { background:var(--blue); }
.rb-btn svg { width:13px; height:13px; }

.adv-section { padding:64px 0; background:linear-gradient(180deg,var(--bg) 0%,#e8eeff 100%); }
.adv-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:40px; }
.adv-card { background:var(--white); border:1.5px solid var(--border); border-radius:18px; padding:24px; transition:all 0.25s; }
.adv-card:hover { border-color:rgba(30,91,255,0.22); box-shadow:0 8px 28px rgba(8,30,82,0.07); transform:translateY(-3px); }
.adv-icon { width:48px; height:48px; background:rgba(30,91,255,0.08); border-radius:12px; display:flex; align-items:center; justify-content:center; margin-bottom:16px; }
.adv-icon svg { width:22px; height:22px; color:var(--blue); }
.adv-title { font-family:'Outfit',sans-serif; font-size:0.95rem; font-weight:700; color:var(--navy); margin-bottom:8px; }
.adv-text { font-family:'Manrope',sans-serif; font-size:0.8rem; color:#6b7a9f; line-height:1.65; }

.related-section { padding:64px 0; background:var(--white); }
.related-head { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:32px; gap:16px; }
.related-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }

.route-tile {
    background:var(--white); border:1.5px solid var(--border); border-radius:20px;
    overflow:hidden; text-decoration:none; transition:all 0.25s; display:flex; flex-direction:column;
}
.route-tile:hover { border-color:rgba(30,91,255,0.25); box-shadow:0 8px 32px rgba(8,30,82,0.10); transform:translateY(-4px); }
.rt-top { height:110px; position:relative; overflow:hidden; }
.rt-bg { position:absolute; inset:0; background-size:cover; background-position:center; transition:transform 0.5s; }
.route-tile:hover .rt-bg { transform:scale(1.06); }
.rt-overlay { position:absolute; inset:0; background:linear-gradient(180deg,rgba(8,30,82,0.08) 0%,rgba(8,30,82,0.62) 100%); }
.rt-flag { position:absolute; top:10px; right:10px; font-size:1.15rem; line-height:1; }
.rt-label { position:absolute; top:10px; left:10px; font-family:'Outfit',sans-serif; font-size:0.6rem; font-weight:700; letter-spacing:0.06em; text-transform:uppercase; color:#fff; background:rgba(30,91,255,0.55); backdrop-filter:blur(4px); border-radius:5px; padding:2px 7px; }
.rt-body { padding:14px 16px; flex:1; display:flex; flex-direction:column; }
.rt-name { font-family:'Outfit',sans-serif; font-size:0.9rem; font-weight:800; color:var(--navy); margin-bottom:6px; line-height:1.3; }
.rt-meta-row { display:flex; align-items:center; gap:12px; margin-bottom:auto; flex-wrap:wrap; }
.rt-badge { display:flex; align-items:center; gap:5px; font-family:'Manrope',sans-serif; font-size:0.7rem; font-weight:600; color:#6b7a9f; }
.rt-badge svg { width:12px; height:12px; color:var(--blue); }
.rt-price-row { display:flex; align-items:baseline; gap:5px; padding-top:10px; }
.rt-from { font-family:'Manrope',sans-serif; font-size:0.72rem; color:#6b7a9f; }
.rt-price { font-family:'Outfit',sans-serif; font-size:1rem; font-weight:800; color:var(--navy); }
.rt-arrow { margin-left:auto; width:26px; height:26px; background:var(--blue-pale); border-radius:50%; display:flex; align-items:center; justify-content:center; transition:all 0.2s; }
.route-tile:hover .rt-arrow { background:var(--blue); }
.rt-arrow svg { width:11px; height:11px; color:var(--blue); transition:color 0.2s; }
.route-tile:hover .rt-arrow svg { color:#fff; }

.from-cities-section { padding:64px 0; background:var(--bg); border-top:1.5px solid var(--border); }
.cities-list-grid { display:flex; flex-direction:column; gap:8px; margin-top:24px; }
.city-link-item {
    display:flex; align-items:center; gap:14px;
    padding:14px 18px; background:var(--white); border:1.5px solid var(--border);
    border-radius:14px; text-decoration:none; transition:all 0.18s;
}
.city-link-item:hover { border-color:var(--blue); box-shadow:0 4px 16px rgba(30,91,255,0.1); transform:translateX(4px); }
.cli-flag { font-size:1.3rem; line-height:1; flex-shrink:0; }
.cli-text { flex:1; }
.cli-route { font-family:'Outfit',sans-serif; font-size:0.92rem; font-weight:800; color:var(--navy); }
.cli-meta { font-family:'Manrope',sans-serif; font-size:0.72rem; color:#6b7a9f; margin-top:2px; }
.cli-price { font-family:'Outfit',sans-serif; font-size:0.9rem; font-weight:900; color:var(--green-acc); flex-shrink:0; }
.cli-arrow { width:24px; height:24px; background:var(--blue-pale); border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:all 0.18s; }
.city-link-item:hover .cli-arrow { background:var(--blue); }
.cli-arrow svg { width:10px; height:10px; color:var(--blue); transition:color 0.18s; }
.city-link-item:hover .cli-arrow svg { color:#fff; }

.faq-section { padding:64px 0; background:var(--white); }
.faq-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:40px; align-items: start;}
.faq-item { background:var(--bg); border:1.5px solid var(--border); border-radius:18px; overflow:hidden; transition:border-color 0.2s; }
.faq-item:hover { border-color:rgba(30,91,255,0.22); }
.faq-q { display:flex; align-items:center; justify-content:space-between; gap:16px; padding:20px 22px; cursor:pointer; user-select:none; }
.faq-q-text { font-family:'Outfit',sans-serif; font-size:0.95rem; font-weight:700; color:var(--navy); line-height:1.3; }
.faq-icon { width:30px; height:30px; flex-shrink:0; background:var(--blue-pale); border-radius:50%; display:flex; align-items:center; justify-content:center; transition:all 0.2s; }
.faq-icon svg { width:14px; height:14px; color:var(--blue); transition:transform 0.2s; }
.faq-item.open .faq-icon { background:var(--blue); }
.faq-item.open .faq-icon svg { color:#fff; transform:rotate(45deg); }
.faq-a { display:none; padding:0 22px 20px; font-family:'Manrope',sans-serif; font-size:0.88rem; color:#6b7a9f; line-height:1.7; border-top:1px solid var(--border); }
.faq-a.show { display:block; animation:fadeIn 0.2s ease; }
@keyframes fadeIn { from{opacity:0;transform:translateY(-4px)} to{opacity:1;transform:translateY(0)} }
.faq-a-inner { padding-top:16px; }

.seo-section { padding:64px 0; background:var(--bg); border-top:1.5px solid var(--border); }
.seo-grid { 
    display: flex; 
    justify-content: center;
    flex-wrap: wrap; 
    gap: 20px; 
    margin-top: 32px; 
}
.seo-card { 
    background: var(--white); 
    border: 1.5px solid var(--border); 
    border-radius: 20px; 
    padding: 26px; 
    transition: border-color 0.25s, box-shadow 0.25s;
    flex: 1;
    min-width: 320px;
    max-width: 400px;
}
.seo-card:hover { border-color:rgba(30,91,255,0.22); box-shadow:0 8px 32px rgba(8,30,82,0.06); }
.seo-card-title { font-family:'Outfit',sans-serif; font-size:0.97rem; font-weight:800; color:var(--navy); margin-bottom:18px; padding-bottom:14px; border-bottom:1.5px solid var(--border-md); display:flex; align-items:center; gap:8px; }
.seo-card-title svg { width:17px; height:17px; color:var(--blue); }
.seo-list { list-style:none; display:flex; flex-direction:column; gap:10px; }
.seo-list li a { display:flex; align-items:center; gap:9px; font-family:'Manrope',sans-serif; font-size:0.88rem; font-weight:600; color:var(--text-main); text-decoration:none; transition:color 0.2s,transform 0.2s; }
.seo-list li a:hover { color:var(--blue); transform:translateX(4px); }
.seo-list li a svg { width:12px; height:12px; color:#6b7a9f; transition:color 0.2s; flex-shrink:0; }
.seo-list li a:hover svg { color:var(--blue); }
.seo-dot { width:5px; height:5px; background:var(--border-md); border-radius:50%; flex-shrink:0; transition:background 0.2s; }
.seo-list li a:hover .seo-dot { background:var(--blue); }
.seo-price-chip { margin-left:auto; font-family:'Outfit',sans-serif; font-size:0.75rem; font-weight:800; color:var(--green-acc); background:rgba(13,181,122,0.08); padding:2px 8px; border-radius:5px; white-space:nowrap; flex-shrink:0; }

.seo-article { padding:52px 0; background:var(--white); border-top:1.5px solid var(--border); }
.seo-article-inner { max-width:800px; margin:0 auto; }
.seo-article h2 { font-family:'Outfit',sans-serif; font-size:1.3rem; font-weight:800; color:var(--navy); margin:28px 0 12px; letter-spacing:-0.02em; }
.seo-article h2:first-child { margin-top:0; }
.seo-article h3 { font-family:'Outfit',sans-serif; font-size:1.05rem; font-weight:700; color:var(--navy); margin:20px 0 10px; }
.seo-article p { font-family:'Manrope',sans-serif; font-size:0.9rem; color:#4b5563; line-height:1.82; margin-bottom:14px; }
.seo-article ul { margin:12px 0 14px 20px; }
.seo-article li { font-family:'Manrope',sans-serif; font-size:0.9rem; color:#4b5563; line-height:1.7; margin-bottom:6px; }


@media (max-width: 1024px) {
    .route-hero-inner,
    .stops-section-inner,
    .content-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    }
    
    .book-now-card-sidebar,
    .sidebar-sticky {
    position: static;
    }

    .adv-grid, 
    .related-grid {
    grid-template-columns: repeat(2, 1fr);
    }

    .seo-grid {
    flex-direction: column;
    }
    .seo-card {
    max-width: 100%;
    }

    .route-hero-bg {
        background-position:bottom !important;
    }
}

@media (max-width: 768px) {
    .bk-section {
    margin-top: -25px;
    }

    .container {
    padding: 0 20px;
    }
    .route-hero {
    padding: 40px 20px 80px;
    }
    .stops-section, 
    .content-section, 
    .adv-section, 
    .related-section, 
    .from-cities-section, 
    .faq-section, 
    .seo-section, 
    .seo-article {
    padding: 48px 0;
    }

    .route-direction {
    gap: 12px;
    }
    .rd-name {
    font-size: 2.2rem;
    }
    .rd-flag {
    font-size: 1.8rem;
    }
    .rd-arrow {
    min-width: 50px;
    }

    .route-hero-cta {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
    }
    .btn-cta-primary, 
    .btn-cta-ghost {
    justify-content: center;
    width: 100%;
    }

    .trips-strip-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    overflow-x: visible;
    padding-bottom: 12px;
    padding-top: 8px;
    }
    .trip-chip {
    width: 100%;
    min-width: 0;
    background: var(--white);
    box-shadow: 0 4px 12px rgba(8, 30, 82, 0.04);
    border-color: var(--border-md);
    }
    .trip-chip-booking {
    display: none;
    }

    .stats-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
    }
    .stat-item {
    border-right: none;
    padding: 20px;
    }
    .stat-item:nth-child(1) { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .stat-item:nth-child(2) { border-bottom: 1px solid var(--border); }
    .stat-item:nth-child(3) { border-right: 1px solid var(--border); }

    .related-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    }
    .related-head .btn-outline {
    width: 100%;
    justify-content: center;
    }

    .faq-grid {
    grid-template-columns: 1fr;
    }

    .rmc-duration {
        display: none;
    }
}

@media (max-width: 576px) {
    .container {
    padding: 0 16px;
    }
    .route-hero {
    padding: 24px 16px 56px;
    }
    
    .section-title {
    font-size: 1.6rem;
    }

    .adv-grid, 
    .related-grid {
    grid-template-columns: 1fr;
    }

    .trips-strip-list {
    grid-template-columns: 1fr;
    gap: 10px;
    }
    .trip-chip {
    padding: 16px;
    }
    .tc-time-big {
    font-size: 1.3rem;
    }
    .tc-price-nm {
    font-size: 1.05rem;
    }
    .trip-chip-booking {
    display: grid;
    }

    .stat-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 16px 12px;
    }
    .stat-num {
    font-size: 1.25rem;
    }

    .stop-time-col {
    display: none;
    }
    .route-timeline::before {
    left: 8px;
    }
    .stop-dot-col {
    width: 18px;
    }
    .stop-content {
    padding-left: 12px;
    }
    .stop-name {
    font-size: 0.82rem;
    }
    .stop-row.is-origin .stop-name, 
    .stop-row.is-dest .stop-name {
    font-size: 0.88rem;
    }

    .faq-q {
    padding: 16px;
    gap: 12px;
    }
    .faq-a {
    padding: 0 16px 16px;
    }

    .seo-card {
    padding: 20px;
    }
    .seo-list li a {
    align-items: flex-start;
    line-height: 1.4;
    }
    .seo-dot {
    margin-top: 6px;
    }

    .hero-price-card {
        display: none;
    }

    .btn-cta-primary {
        display: none;
    }
}

@media (max-width: 550px) {
    .seo-list li a {
    display: grid !important;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    }
    .seo-price-chip {
    align-self: center;
    }
    .seo-dot {
    align-self: center;
    }
    
    .cli-route {
    font-size: 0.85rem;
    }
    .cli-meta {
    font-size: 0.68rem;
    }

    .route-direction {
    flex-direction: column;
    align-items: center;
    gap: 8px; 
    }

    .rd-name {
    font-size: 36px;
    }
    .rd-flag {
    font-size: 30px;
    }

    .rd-arrow {
    min-width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 4px 0;
    position: relative;
    display: flex;
    justify-content: center;
    }

    .rd-arrow-line {
    width: 2px;
    height: 52px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0 auto;
    position: relative;
    }

    .rd-arrow-line::before {
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    }

    .rd-arrow-line::after {
    top: auto;
    bottom: -2px;
    right: auto;
    left: 50%;
    transform: translateX(-50%) rotate(45deg); 
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(255, 255, 255, 0.6);
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    }

    .rd-arrow-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(16, 40, 100, 0.6);
    backdrop-filter: blur(8px);
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.05em;
    }

    .rd-city, .rd-flag-name {
    align-items: center;
    justify-content: center;
    }

    .btn-cta-primary {
    display: none;
    }
    .route-hero-h1 {
    text-align: center;
    }
    .route-meta-chips {
    align-items: center;
    justify-content: center;
    display: none;
    }

    .rd-flag-name {
        display: grid !important;
        grid-template-columns: 1fr auto 1fr; 
        width: 100%;
        align-items: center;
        gap: 0;
    }

    .rd-flag {
        grid-column: 1;
        justify-self: end;
        margin-right: 10px;
        font-size: 24px;
    }

    .rd-name {
        grid-column: 2;
        text-align: center;
        white-space: nowrap;
    }

    .rd-city {
        width: 100%;
        display: block;
    }

    .rd-arrow-line {
        margin: 0 auto;
        left: 0;
        right: 0;
    }

    .route-hero-bg {
        background-size: 175% auto; 
        background-position: center bottom;
    }

    .rb-btn {
        align-items:center;
        justify-content:center;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 375px) {
    .stat-item {
    padding: 12px 8px;
    }
    .route-hero-bg {
        background-size: 225% auto; 
    }
    .seo-card { 
        min-width: 220px;
    }
}