:root {
    --red: #c4161c;
    --red-dark: #9d1015;
    --ink: #1c1c1c;
    --dark: #141414;
    --muted: #666;
    --line: #ececec;
    --bar: rgba(20, 12, 12, .82);
    --radius: 4px;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: Montserrat, "Segoe UI", Arial, sans-serif;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, select, input { font: inherit; }

.wrap {
    width: min(1140px, calc(100% - 32px));
    margin-inline: auto;
}

.site-header {
    position: relative;
    z-index: 30;
    background: var(--red-dark);
}
.is-home .site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(196, 22, 28, .92) 0%, rgba(196, 22, 28, .42) 75%, transparent 100%);
}
.is-home .nav a {
    text-shadow: 0 1px 8px rgba(120, 10, 14, .45);
}
.site-header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 78px;
}

.brand {
    display: flex;
    align-items: center;
    flex: none;
}
.brand img {
    display: block;
    height: 46px;
    width: auto;
    max-width: 210px;
    object-fit: contain;
}

.nav {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .02em;
}
.nav a {
    padding: 8px 12px;
    color: #fff;
    opacity: .88;
}
.nav a:hover,
.nav a.is-active { opacity: 1; color: #fff; }
.nav-item { position: relative; }
.nav-item.has-sub > a::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 6px;
    vertical-align: middle;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    opacity: .7;
}
.nav-sub {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    padding: 8px 0;
    background: #161616;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .28);
    z-index: 40;
}
.nav-sub::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    height: 10px;
}
.nav-item:hover > .nav-sub,
.nav-item:focus-within > .nav-sub { display: block; }
.nav-sub a { display: block; white-space: nowrap; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    cursor: pointer;
    padding: 12px 22px;
    font-weight: 700;
    border-radius: var(--radius);
    letter-spacing: .04em;
    text-transform: uppercase;
}
.btn-ghost { background: transparent; color: inherit; }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); }

.nav-toggle { display: none; }
.nav-burger {
    display: none;
    width: 40px;
    height: 40px;
    place-items: center;
    cursor: pointer;
}
.nav-burger span,
.nav-burger span::before,
.nav-burger span::after {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    position: relative;
}
.nav-burger span::before,
.nav-burger span::after {
    content: "";
    position: absolute;
    left: 0;
}
.nav-burger span::before { top: -6px; }
.nav-burger span::after { top: 6px; }

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    padding: 100px 0 40px;
    overflow: hidden;
}
.hero-stage,
.hero-slide,
.hero-shade {
    position: absolute;
    inset: 0;
}
.hero-stage { z-index: 0; }
.hero-slide {
    z-index: 0;
    clip-path: inset(0 0 100% 0);
}
.hero-slide.is-past {
    z-index: 1;
    clip-path: inset(0);
}
.hero.is-ready .hero-slide.is-active {
    z-index: 2;
    clip-path: inset(0);
    transition: clip-path .95s cubic-bezier(.4, 0, .2, 1);
}
.hero-slide.is-active {
    z-index: 2;
    clip-path: inset(0);
}
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.14);
    filter: blur(10px);
}
.hero-slide.is-active img {
    transform: scale(1);
    filter: blur(0);
    transition: transform 1.15s ease, filter 1.15s ease;
}
.hero-shade {
    z-index: 3;
    background: linear-gradient(180deg, transparent 0%, rgba(20, 8, 8, .08) 48%, rgba(20, 8, 8, .52) 100%);
    pointer-events: none;
}
.hero-copy-wrap {
    position: relative;
    z-index: 4;
    min-height: 200px;
    margin-bottom: 36px;
    padding-right: 72px;
    pointer-events: none;
}
.hero-copy {
    position: absolute;
    left: 0;
    right: 0;
    max-width: 560px;
    opacity: 0;
    transform: translateY(-18px) scale(.98);
    filter: blur(8px);
    pointer-events: none;
    transition: opacity .4s ease, transform .4s ease, filter .4s ease;
}
.hero-copy.is-on {
    opacity: 1;
    transform: none;
    filter: blur(0);
    transition: opacity .55s ease, transform .55s ease, filter .55s ease;
}
.hero-copy span {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #ffd4d4;
}
.hero-copy h1 {
    margin: 0;
    font-size: clamp(28px, 4.2vw, 46px);
    line-height: 1.12;
    font-weight: 800;
    text-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.hero-copy p { margin: 12px 0 0; font-size: 16px; color: #e8e8e8; }

.hero-road {
    position: absolute;
    z-index: 6;
    top: 100px;
    bottom: 230px;
    left: auto;
    right: max(16px, calc((100% - 1140px) / 2 - 8px));
    width: 44px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    pointer-events: auto;
}
.hero-road-track {
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: 50%;
    width: 2px;
    background: rgba(255,255,255,.28);
    transform: translateX(-50%);
}
.hero-road-track i {
    display: block;
    width: 100%;
    height: 0;
    background: var(--red);
    box-shadow: 0 0 12px rgba(196,22,28,.7);
    transition: height .95s cubic-bezier(.4, 0, .2, 1);
}
.hero-node {
    position: relative;
    z-index: 1;
    width: 36px;
    height: 36px;
    border: 2px solid rgba(255,255,255,.45);
    border-radius: 50%;
    background: rgba(20, 8, 8, .55);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .04em;
    cursor: pointer;
}
.hero-node.is-on {
    background: var(--red);
    border-color: #fff;
    transform: scale(1.08);
    box-shadow: 0 0 0 6px rgba(196,22,28,.25);
}

.search-wrap { position: relative; z-index: 5; width: min(1140px, calc(100% - 32px)); margin: 0 auto; }

.reveal[data-fx] {
    min-width: 0;
}
.reveal[data-fx] > * {
    transition:
        opacity .75s ease,
        transform .9s cubic-bezier(.22, 1, .36, 1),
        filter .7s ease,
        clip-path .85s cubic-bezier(.22, 1, .36, 1);
    transition-delay: 0ms;
}

.reveal[data-fx="up"] > * {
    opacity: 0;
    transform: translateY(28px);
}
.reveal[data-fx="x"][data-dir="left"] > * {
    opacity: 0;
    transform: translateX(-100vw);
}
.reveal[data-fx="x"][data-dir="right"] > * {
    opacity: 0;
    transform: translateX(100vw);
}
.reveal[data-fx="diag"][data-dir="nw"] > * {
    opacity: 0;
    transform: translate(-22vw, -18vh) rotate(-8deg) scale(.9);
}
.reveal[data-fx="diag"][data-dir="ne"] > * {
    opacity: 0;
    transform: translate(22vw, -18vh) rotate(8deg) scale(.9);
}
.reveal[data-fx="diag"][data-dir="sw"] > * {
    opacity: 0;
    transform: translate(-20vw, 16vh) rotate(-6deg) scale(.9);
}
.reveal[data-fx="diag"][data-dir="se"] > * {
    opacity: 0;
    transform: translate(20vw, 16vh) rotate(6deg) scale(.9);
}
.reveal[data-fx="faq-head"] > * {
    opacity: 0;
    transform: translateX(-36px);
}
.reveal[data-fx="faq"] {
    perspective: 1100px;
}
.reveal[data-fx="faq"] > * {
    opacity: 0;
    transform: translateX(56px) rotateX(-70deg);
    transform-origin: top center;
    filter: blur(8px);
    clip-path: inset(0 0 0 100%);
}
.reveal[data-fx="faq"] .faq-no,
.reveal[data-fx="faq"] .faq-plus {
    transition: transform .5s cubic-bezier(.2, 1.4, .3, 1), opacity .35s ease;
    transition-delay: 0ms;
}
.reveal[data-fx="faq"] .faq-no {
    transform: scale(.2) rotate(-80deg);
    opacity: 0;
}
.reveal[data-fx="faq"] .faq-plus {
    transform: rotate(-90deg) scale(.4);
    opacity: 0;
}
.reveal[data-fx="faq"].is-in .faq-no,
.reveal[data-fx="faq"].is-in .faq-plus {
    transform: none;
    opacity: 1;
    transition-delay: calc(var(--d, 0ms) + 220ms);
}
.reveal[data-fx].is-in > * {
    opacity: 1;
    transform: none;
    filter: none;
    clip-path: inset(0);
    transition-delay: var(--d, 0ms);
}

.search {
    background: var(--bar);
    color: #fff;
    padding: 18px 20px 20px;
    border-radius: var(--radius);
    backdrop-filter: blur(8px);
    box-shadow: 0 18px 48px rgba(0, 0, 0, .28), 0 0 64px rgba(196, 22, 28, .18);
}
.search-modes {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}
.search-modes button {
    background: transparent;
    color: #c9c9c9;
    border: 0;
    padding: 6px 12px;
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    border-bottom: 2px solid transparent;
}
.search-modes button.is-on {
    color: #fff;
    border-bottom-color: var(--red);
}
.search-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr minmax(280px, 1.45fr) auto;
    gap: 10px;
    align-items: end;
}
.search label span,
.date-field > span {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    color: #cfcfcf;
}
.search select,
.search input[type="date"] {
    width: 100%;
    height: 46px;
    padding: 0 12px;
    border: 0;
    border-radius: 6px;
    background: #fff;
    color: #222;
}
.date-field { min-width: 0; }
.date-line {
    display: flex;
    align-items: stretch;
    height: 46px;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
}
.date-line input[type="date"] {
    flex: 1;
    min-width: 0;
    height: 46px;
    border-radius: 0;
    padding-right: 6px;
}
.quick {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 8px 0 0;
    background: #fff;
    flex: none;
}
.quick button {
    height: 30px;
    padding: 0 10px;
    background: #f0f0f0;
    color: #333;
    border: 0;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}
.quick button:hover,
.quick button.is-on {
    background: var(--red);
    color: #fff;
}
.swap {
    width: 38px;
    height: 38px;
    margin-bottom: 4px;
    border: 0;
    border-radius: 50%;
    background: #3a3a3a;
    color: #fff;
    cursor: pointer;
}
.search-go {
    height: 46px;
    min-width: 160px;
    background: var(--red);
    color: #fff;
    text-transform: uppercase;
}
.search-go:hover { background: var(--red-dark); }
.search-error { margin: 10px 0 0; color: #ffb4b4; font-size: 13px; }

.notice {
    background: #fff7ea;
    color: #6a4b00;
    text-align: center;
    padding: 10px 16px;
    font-size: 14px;
}

.services-band { margin: 72px auto 56px; }
.services-marquee {
    container-type: inline-size;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.services-track {
    display: flex;
    width: max-content;
    animation: services-ltr 28s linear infinite;
    animation-play-state: paused;
}
.services-marquee.is-run .services-track { animation-play-state: running; }
.services-marquee:hover .services-track { animation-play-state: paused; }
@keyframes services-ltr {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}
.services {
    display: flex;
    flex: none;
    gap: 24px;
    width: min(1140px, calc(100vw - 32px));
    width: 100cqi;
    margin: 0;
}
.services article {
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
    padding: 16px 8px;
}
.svc-icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    color: var(--red);
}
.svc-icon svg,
.svc-icon img { width: 32px; height: 32px; object-fit: contain; }
.services b { display: block; font-size: 12px; font-weight: 600; letter-spacing: .02em; }

.featured-band {
    overflow: hidden;
    margin: 0 auto 64px;
}
.featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.feat {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--radius);
    color: #fff;
    min-height: 260px;
}
.feat img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform .45s ease;
}
.feat:hover img { transform: scale(1.04); }
.feat-copy {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    background: linear-gradient(transparent 28%, rgba(20, 8, 8, .78));
}
.feat-copy span {
    font-size: 13px;
    letter-spacing: .14em;
    text-transform: uppercase;
    opacity: .9;
}
.feat-copy strong { font-size: 28px; margin-top: 4px; letter-spacing: .02em; }
.feat-copy em {
    display: inline-flex;
    margin-top: 14px;
    width: max-content;
    padding: 8px 16px;
    font-style: normal;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: #fff;
    color: var(--red);
}

.section-title {
    margin: 0 0 28px;
    font-size: 32px;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--ink);
}
.lede {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 14px;
}

.popular { background: #fff; padding: 48px 0 96px; overflow: hidden; }
.popular-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 72px;
    margin-top: 0;
}
.pop {
    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: center;
    gap: 16px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    padding: 24px 0;
    box-shadow: none;
}
.pop:hover {
    transform: none;
    box-shadow: none;
}
.pop-no {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    min-width: 36px;
}
.pop-copy b { display: block; font-size: 16px; }
.pop-copy small { display: block; margin-top: 6px; color: var(--muted); font-size: 13px; }
.pop-copy em {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 12px;
    font-style: normal;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    background: var(--red);
    color: #fff;
}

.cities { padding: 44px 0 48px; overflow: hidden; }
.city-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}
.city {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px;
    font-weight: 600;
    font-size: 14px;
    background: #fff;
}
.city:hover { border-color: #f0c9cb; }
.pin {
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    flex: none;
}

.faq { background: #f6f6f6; padding: 64px 0 72px; overflow: hidden; }
.faq .wrap {
    display: grid;
    grid-template-columns: minmax(220px, 280px) 1fr;
    gap: 40px 72px;
    align-items: start;
}
.faq-head .section-title { margin-bottom: 10px; }
.faq-head .lede { margin: 0; max-width: 28ch; }
.faq-list { border-top: 1px solid var(--line); }
.faq details {
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    padding: 0;
    margin: 0;
}
.faq summary {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 2px;
    cursor: pointer;
    font-weight: 700;
    list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq-no {
    color: var(--red);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .06em;
    flex: none;
}
.faq-q { flex: 1; font-size: 16px; line-height: 1.35; }
.faq-plus {
    position: relative;
    width: 28px;
    height: 28px;
    flex: none;
    border: 1px solid #ddd;
    border-radius: 50%;
}
.faq-plus::before,
.faq-plus::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: #222;
    transform: translate(-50%, -50%);
}
.faq-plus::before { width: 10px; height: 1.5px; }
.faq-plus::after { width: 1.5px; height: 10px; transition: opacity .15s ease; }
details[open] .faq-plus {
    background: var(--red);
    border-color: var(--red);
}
details[open] .faq-plus::before,
details[open] .faq-plus::after { background: #fff; }
details[open] .faq-plus::after { opacity: 0; }
.faq details p {
    margin: 0;
    padding: 0 46px 20px 45px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
    max-width: 62ch;
}

.site-footer {
    background: var(--dark);
    color: #c8c8c8;
    padding: 56px 0 0;
    font-size: 14px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    gap: 28px;
    padding-bottom: 40px;
}
.site-footer .brand img {
    height: 48px;
    max-width: 220px;
    margin-bottom: 16px;
}
.site-footer h2 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.site-footer p { margin: 0 0 8px; line-height: 1.55; color: #aaa; }
.phone { color: #fff; font-size: 22px; font-weight: 800; }
.copy {
    border-top: 1px solid rgba(255,255,255,.12);
    padding: 14px 0;
    color: #888;
    font-size: 12px;
}

@media (max-width: 980px) {
    .nav-burger { display: grid; }
    .nav { display: none; }
    .nav-toggle:checked ~ .nav {
        display: flex;
        position: absolute;
        left: 16px;
        right: 16px;
        top: 78px;
        flex-direction: column;
        background: var(--dark);
        border: 0;
        padding: 12px;
        z-index: 30;
        color: #fff;
    }
    .nav-item { width: 100%; }
    .nav-sub {
        position: static;
        display: flex;
        flex-direction: column;
        min-width: 0;
        padding: 0 0 4px 8px;
        background: transparent;
        box-shadow: none;
    }
    .nav-sub::before { display: none; }
    .search-row,
    .featured,
    .faq .wrap,
    .city-grid,
    .footer-grid { grid-template-columns: 1fr; }
    .services {
        width: max-content;
        gap: 12px;
    }
    .services article { flex: 0 0 148px; }
    .popular-grid { grid-template-columns: 1fr 1fr; }
    .faq-head .lede { max-width: none; }
    .hero { min-height: 100svh; padding-top: 88px; }
    .hero-road {
        top: 88px;
        bottom: auto;
        left: auto;
        right: 16px;
        height: 36px;
        width: auto;
        flex-direction: row;
        gap: 18px;
        z-index: 6;
    }
    .hero-road-track {
        top: 50%;
        bottom: auto;
        left: 18px;
        right: 18px;
        width: auto;
        height: 2px;
        transform: translateY(-50%);
    }
    .hero-road-track i {
        height: 100%;
        width: 0;
        transition: width .95s cubic-bezier(.4, 0, .2, 1);
    }
    .hero-copy-wrap { min-height: 150px; }
}

@media (max-width: 640px) {
    .popular-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide,
    .hero-slide.is-active,
    .hero-slide img,
    .hero-copy,
    .hero-road-track i,
    .reveal,
    .reveal[data-fx] > *,
    .reveal[data-fx] .faq-no,
    .reveal[data-fx] .faq-plus {
        transition: none !important;
        filter: none !important;
        transform: none !important;
        clip-path: none !important;
    }
    .reveal,
    .reveal[data-fx] > *,
    .reveal[data-fx] .faq-no,
    .reveal[data-fx] .faq-plus { opacity: 1; }
    .services-track { animation: none !important; transform: none !important; }
    .services-track .services:last-child { display: none; }
    .services-marquee.is-static .services,
    .services-marquee .services {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        width: 100%;
    }
    .services-marquee {
        -webkit-mask-image: none;
        mask-image: none;
    }
}

.inner-hero {
    background: var(--dark);
    color: #fff;
    padding: 40px 0 32px;
    border-bottom: 3px solid var(--red);
}
.inner-hero h1 { margin: 0; font-size: clamp(26px, 3vw, 36px); }
.inner-hero p { margin: 8px 0 0; color: #cfcfcf; }
.crumb { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: #aaa; }
.page-block { padding: 28px 0 56px; }
.page-block .search { margin-bottom: 22px; }
.narrow { max-width: 640px; }
.subhead { margin: 28px 0 12px; font-size: 18px; }
.empty { background: #fff; border: 1px dashed #ddd; padding: 28px; text-align: center; color: var(--muted); }
.hint { color: var(--muted); font-size: 13px; }
.form-error { color: var(--red); font-size: 13px; margin: 6px 0 0; }

.is-trips main { background: #f4f4f4; }

.date-strip {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin-bottom: 18px;
    padding: 4px 0 8px;
}
.date-strip button {
    flex: 1;
    min-width: 72px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: var(--radius);
    padding: 10px 8px 12px;
    cursor: pointer;
    text-align: center;
}
.date-strip button small { display: block; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.date-strip button b { display: block; font-size: 22px; line-height: 1.1; margin: 4px 0 2px; }
.date-strip button span { display: block; color: var(--muted); font-size: 11px; }
.date-strip button.is-on { background: var(--red); border-color: var(--red); color: #fff; }
.date-strip button.is-on small,
.date-strip button.is-on span { color: #ffd4d4; }

.trip-count {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

.trip { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.trip.is-open { border-color: #f0c9cb; box-shadow: 0 12px 28px rgba(196, 22, 28, .08); }
.trip.is-sold { opacity: .72; }
.trip-row {
    width: 100%;
    display: grid;
    grid-template-columns: 240px 1fr auto auto;
    gap: 18px;
    align-items: center;
    padding: 18px 20px;
    background: #fff;
    border: 0;
    text-align: left;
    cursor: pointer;
}
.trip-row:hover { background: #fafafa; }
.trip-row:disabled { cursor: not-allowed; }
.trip-times {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    font-variant-numeric: tabular-nums;
}
.trip-times strong { display: block; font-size: 24px; line-height: 1; }
.trip-times small { display: block; margin-top: 4px; color: var(--muted); font-size: 11px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.trip-dur {
    position: relative;
    text-align: center;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}
.trip-dur::before,
.trip-dur::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 18%;
    border-top: 1px dashed #d0d0d0;
}
.trip-dur::before { left: 0; }
.trip-dur::after { right: 0; }
.trip-meta b { display: block; font-size: 15px; }
.trip-meta small { color: var(--muted); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; font-size: 11px; }
.trip-am { display: flex; gap: 6px; margin-top: 8px; color: var(--red); }
.trip-am i { width: 18px; height: 18px; display: grid; place-items: center; }
.trip-am svg { width: 16px; height: 16px; }
.trip-price { text-align: right; }
.trip-price b { display: block; color: var(--red); font-size: 22px; }
.trip-price small { color: var(--muted); font-size: 12px; font-weight: 600; }
.trip-price small.is-low { color: var(--red); }
.trip-pick {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 88px;
    height: 42px;
    padding: 0 18px;
    background: var(--red);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-radius: var(--radius);
}
.trip.is-sold .trip-pick { background: #bdbdbd; }
.trip.is-open .trip-pick { background: var(--dark); }
.trip-more {
    display: flex;
    justify-content: flex-end;
    padding: 0 20px 14px;
    margin-top: -6px;
}
.trip-detail-link {
    border: 0;
    background: none;
    padding: 0;
    color: var(--red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .02em;
    cursor: pointer;
}
.trip-detail-link:hover { text-decoration: underline; }

.jd-overlay {
    position: fixed;
    inset: 0;
    z-index: 82;
    display: grid;
    place-items: center;
    padding: 24px 16px;
    background: rgba(16, 8, 8, .58);
    backdrop-filter: blur(8px);
}
.jd-card {
    width: min(460px, 100%);
    max-height: min(88vh, 760px);
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .34);
}
.jd-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px 16px;
    background:
        radial-gradient(120% 140% at 100% -20%, rgba(255,255,255,.18), transparent 46%),
        linear-gradient(180deg, #d51c22 0%, #c4161c 100%);
    color: #fff;
}
.jd-kicker {
    margin: 0 0 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    opacity: .82;
}
.jd-head h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: .01em;
}
.jd-close {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.14);
    color: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}
.jd-close:hover { background: rgba(255,255,255,.24); }
.jd-summary {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
    align-items: center;
    padding: 16px 20px;
    background: #faf6f6;
    border-bottom: 1px solid #f0e4e4;
}
.jd-summary-point small {
    display: block;
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.jd-summary-point strong {
    display: block;
    margin-top: 2px;
    font-size: 26px;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.jd-summary-point span {
    display: block;
    margin-top: 6px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
}
.jd-summary-point.is-end { text-align: right; }
.jd-summary-mid {
    position: relative;
    min-width: 86px;
    text-align: center;
    color: var(--red);
    font-size: 11px;
    font-weight: 800;
}
.jd-summary-mid::before,
.jd-summary-mid::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 22%;
    border-top: 1px dashed #e0b4b6;
}
.jd-summary-mid::before { left: 0; }
.jd-summary-mid::after { right: 0; }
.jd-body {
    overflow: auto;
    padding: 8px 22px 8px;
}
.jd-section { padding: 14px 0 8px; }
.jd-section h3 {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
}
.jd-amenities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.jd-amenities li {
    display: grid;
    justify-items: center;
    gap: 8px;
    padding: 14px 8px 12px;
    border: 1px solid #f0e4e4;
    border-radius: 14px;
    background: #fff;
    font-size: 12px;
    font-weight: 800;
    color: var(--ink);
}
.jd-amenity-ico {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #fff1f1;
    color: var(--red);
}
.jd-amenity-ico svg { width: 20px; height: 20px; }
.jd-route {
    margin: 0;
    padding: 0;
    list-style: none;
}
.jd-stop {
    display: grid;
    grid-template-columns: 54px 18px 1fr;
    gap: 12px;
    align-items: start;
}
.jd-stop time {
    padding-top: 2px;
    font-size: 14px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    color: var(--ink);
}
.jd-rail {
    position: relative;
    display: flex;
    justify-content: center;
    align-self: stretch;
    min-height: 52px;
}
.jd-rail::before {
    content: "";
    position: absolute;
    top: 12px;
    bottom: -6px;
    width: 2px;
    background: #f0c9cb;
}
.jd-stop:last-child .jd-rail::before { display: none; }
.jd-rail i {
    position: relative;
    z-index: 1;
    width: 12px;
    height: 12px;
    margin-top: 5px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #c4161c;
    box-sizing: border-box;
}
.jd-stop.is-origin .jd-rail i,
.jd-stop.is-destination .jd-rail i {
    width: 14px;
    height: 14px;
    margin-top: 4px;
    background: #c4161c;
    border-color: #c4161c;
    box-shadow: 0 0 0 4px rgba(196, 22, 28, .16);
}
.jd-stop div { padding-bottom: 16px; }
.jd-stop b {
    display: block;
    font-size: 15px;
    font-weight: 800;
}
.jd-stop small {
    display: inline-block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.jd-stop.is-destination b { color: var(--red); }
.jd-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 14px 22px 16px;
    border-top: 1px solid #f0e4e4;
    background: #fff;
}
.jd-foot span { color: var(--muted); font-size: 12px; font-weight: 700; }
.jd-foot strong { color: var(--red); font-size: 18px; }

.seat-panel { border-top: 1px solid var(--line); padding: 20px; background: #fafafa; }
.seat-toolbar { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; align-items: center; }
.seat-hint { margin: 0; font-size: 13px; color: var(--muted); max-width: 46ch; }
.gender-pick { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; }
.gender-pick button { border: 1px solid var(--line); background: #fff; border-radius: 6px; padding: 8px 14px; cursor: pointer; font-weight: 700; }
.gender-pick button.is-on { background: var(--red); border-color: var(--red); color: #fff; }
.seat-legend { display: flex; gap: 14px; list-style: none; margin: 0; padding: 0; font-size: 12px; color: var(--muted); }
.seat-legend li { display: flex; align-items: center; gap: 6px; }
.seat-legend .seat { width: 16px; height: 16px; pointer-events: none; font-size: 0; }
.seat-map { overflow: visible; padding: 8px 0 8px; }
.bus {
    width: max-content;
    margin: 0 auto;
    padding: 72px 18px 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px 22px 10px 10px;
    box-shadow: inset 0 10px 0 #eee;
}
.bus-front {
    width: 172px;
    text-align: center;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #999;
    margin: 0 auto 8px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
}
.bus.is-api .bus-front { width: 242px; }
.bus-guide {
    display: grid;
    grid-template-columns: 42px 42px 22px 42px;
    gap: 8px;
    width: 172px;
    margin: 0 auto 10px;
    font-size: 9px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #aaa;
    text-align: center;
    align-items: end;
}
.bus-guide .bus-aisle {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    letter-spacing: .16em;
    font-size: 8px;
    line-height: 22px;
    height: 4.6em;
    justify-self: center;
}
.seat-row { display: grid; grid-template-columns: 42px 42px 22px 42px; gap: 8px; margin-bottom: 8px; }
.seat-row.is-api { grid-template-columns: repeat(5, 42px); }
.seat-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    font-size: 8px;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #aaa;
    text-align: center;
    line-height: 1.2;
}
.seat-cell { position: relative; width: 42px; height: 42px; }
.seat-cell.is-picking { z-index: 8; }
.seat {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 8px 8px 4px 4px;
    font-weight: 800;
    font-size: 12px;
    cursor: pointer;
    color: #444;
    background: #ececec;
    box-shadow: inset 0 -4px 0 rgba(0, 0, 0, .08);
}
.seat:disabled { cursor: not-allowed; }
.seat.is-empty { background: #e8e8e8; }
.seat.is-male { background: #3b6ea5; color: #fff; }
.seat.is-female { background: #c45b7a; color: #fff; }
.seat.is-selected { box-shadow: 0 0 0 2px var(--red), inset 0 -4px 0 rgba(0, 0, 0, .08); }
.seat.is-selected.is-male { background: #3b6ea5; color: #fff; }
.seat.is-selected.is-female { background: #c45b7a; color: #fff; }
.aisle { display: block; }
.seat-pop {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    display: flex;
    gap: 12px;
    padding: 10px 12px 8px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
    transform: translateX(-50%);
    white-space: nowrap;
}
.seat-pop::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    border: 7px solid transparent;
    border-top-color: #fff;
    filter: drop-shadow(0 1px 0 #e5e5e5);
    transform: translateX(-50%);
}
.seat-pop button {
    display: grid;
    justify-items: center;
    gap: 4px;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
    color: #444;
}
.seat-pop button.is-dim { opacity: .35; }
.seat-pop-ico {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
}
.seat-pop-ico img,
.seat-pop-ico svg { width: 44px; height: 44px; display: block; }
.seat-pop-ico.is-male { color: #3b6ea5; }
.seat-pop-ico.is-female { color: #c45b7a; }
.seat-pop small { font-size: 12px; font-weight: 600; }
.seat-alert {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: grid;
    place-items: center;
    padding: 16px;
    background: rgba(0, 0, 0, .45);
}
.seat-alert-card {
    width: min(420px, 100%);
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .2);
}
.seat-alert-bar {
    display: flex;
    justify-content: flex-end;
    background: var(--red);
    padding: 6px 8px;
}
.seat-alert-bar button {
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}
.seat-alert-body {
    display: grid;
    justify-items: center;
    gap: 16px;
    padding: 28px 28px 24px;
    text-align: center;
}
.seat-alert-icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border: 3px solid var(--red);
    border-radius: 50%;
    color: var(--red);
    font-size: 28px;
    font-weight: 800;
}
.seat-alert-body p { margin: 0; font-size: 15px; line-height: 1.5; }
.seat-alert-ok {
    min-width: 120px;
    height: 40px;
    border: 1px solid var(--red);
    background: #fff;
    color: var(--red);
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
}
.seat-alert-ok:hover { background: #fff5f5; }
.seat-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}
.seat-foot p { margin: 0; font-size: 14px; font-weight: 600; }

.seat-mobilebar {
    display: none;
}

.is-booking main,
.is-ops main { background: #f4f4f4; }

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
}
.steps li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: #999;
    font-size: 13px;
    font-weight: 700;
}
.steps li span {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #eee;
    color: #666;
    font-size: 11px;
}
.steps li.is-done { color: var(--ink); }
.steps li.is-done span { background: #e8e8e8; color: var(--ink); }
.steps li.is-on {
    border-color: var(--red);
    color: var(--red);
    box-shadow: 0 8px 20px rgba(196, 22, 28, .08);
}
.steps li.is-on span { background: var(--red); color: #fff; }

.steps-track {
    position: relative;
    height: 4px;
    margin: 0 0 12px;
    background: #eee;
    border-radius: 99px;
    overflow: hidden;
}
.steps-track-fill {
    display: block;
    height: 100%;
    width: 0;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--red-dark), var(--red));
    transition: width .7s cubic-bezier(.22, 1, .36, 1);
}
.steps-track-fill.is-filled { width: var(--progress, 0%); }

.booking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 28px;
    align-items: start;
}
.booking-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.form-block h2 { margin: 0 0 6px; font-size: 18px; }
.form-lede { margin: 0 0 16px; color: var(--muted); font-size: 13px; }
.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.form-actions .btn-ghost {
    border: 1px solid var(--line);
    color: var(--ink);
    background: #fff;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 600;
}

.summary {
    background: var(--dark);
    color: #fff;
    border-radius: var(--radius);
    padding: 22px;
    position: sticky;
    top: 16px;
}
.summary-kicker {
    display: block;
    margin-bottom: 10px;
    color: #f0c9cb;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.summary b { display: block; font-size: 18px; line-height: 1.3; }
.summary p { margin: 8px 0 0; color: #bbb; font-size: 13px; }
.summary-seats {
    list-style: none;
    margin: 14px 0 0;
    padding: 12px 0 0;
    border-top: 1px solid rgba(255,255,255,.12);
}
.summary-seats li {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-top: 8px;
    font-size: 13px;
}
.summary-seats em { font-style: normal; font-weight: 700; }
.summary-seats em.is-male { color: #8eb6dd; }
.summary-seats em.is-female { color: #e7a0b4; }
.summary strong { display: block; margin-top: 16px; color: #fff; font-size: 26px; }
.summary strong del { margin-right: 8px; color: #888; font-size: 14px; font-weight: 600; }
.summary small { color: #888; font-size: 12px; }
.summary-lines { margin: 10px 0 0; padding: 0; list-style: none; }
.summary-lines li {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-top: 4px;
    color: #bbb;
    font-size: 13px;
}
.summary-lines em { font-style: normal; font-weight: 700; }
.summary-lines .is-off { color: #9fdfb3; }

.pax-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; margin: 0; }
.pax-card legend {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    padding: 0 6px;
}
.pax-card legend span { color: var(--muted); font-weight: 600; font-size: 13px; }
.pax-gender {
    display: inline-flex;
    padding: 4px 8px;
    border-radius: 99px;
    font-size: 11px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.pax-gender.is-male { background: #e8f1f8; color: #3b6ea5; }
.pax-gender.is-female { background: #f8e8ee; color: #c45b7a; }
.pax-note {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.pay-note { margin: 0 0 16px; color: var(--muted); font-size: 13px; line-height: 1.5; }
.pay-card {
    display: grid;
    gap: 18px;
    margin-bottom: 18px;
    padding: 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1c1c1c, #3a1214 55%, var(--red));
    color: #fff;
    min-height: 150px;
}
.pay-card span { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; opacity: .8; }
.pay-card b { font-size: 22px; letter-spacing: .12em; font-variant-numeric: tabular-nums; }
.pay-card div { display: flex; justify-content: space-between; gap: 12px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; opacity: .9; }

/* --- Yolcu & ödeme sayfaları görsel geliştirmeleri (üsttekiler mevcut, alttakiler yeni) --- */
.form-kicker {
    display: block;
    margin-bottom: 6px;
    color: var(--red);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.pax-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    flex: none;
}
.pax-seat {
    display: inline-flex;
    align-items: center;
    padding: 3px 9px;
    border-radius: 99px;
    background: #f4f4f4;
    color: var(--ink);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .02em;
}
.pax-card {
    position: relative;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    border-left: 3px solid var(--line);
}
.pax-card:hover,
.pax-card:focus-within {
    border-color: #f0c9cb;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .05);
    transform: translateY(-1px);
}
.pax-card:has(.pax-gender.is-male) { border-left-color: #3b6ea5; }
.pax-card:has(.pax-gender.is-female) { border-left-color: #c45b7a; }

.form-error-block {
    margin: 4px 0 0;
    padding: 10px 14px;
    border-radius: var(--radius);
    background: #fdeceb;
    border: 1px solid #f3c6c3;
    font-weight: 700;
}

.pay-banner {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0 0 16px;
    padding: 12px 14px;
    border-radius: var(--radius);
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
    background: #f7f7f7;
    border: 1px solid var(--line);
}
.pay-banner i { flex: none; width: 18px; height: 18px; margin-top: 1px; background-repeat: no-repeat; background-position: center; background-size: 18px 18px; }
.pay-banner-info { background: #eef5fb; border-color: #d7e9f6; }
.pay-banner-success { background: #e7f6eb; border-color: #cdeed7; color: #1a7a3a; }
.pay-banner-credit { background: #fff5e6; border-color: #f6e0b8; color: #9a6a10; }
.pay-banner-warning { background: #fdeceb; border-color: #f3c6c3; color: #9d1015; }
.pay-banner-info i { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233b6ea5' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='11' width='14' height='9' rx='2'/%3E%3Cpath d='M8 11V8a4 4 0 0 1 8 0v3'/%3E%3C/svg%3E"); }
.pay-banner-success i,
.pay-banner-credit i { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a7a3a' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M8 12l3 3 5-6'/%3E%3C/svg%3E"); }
.pay-banner-credit i { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239a6a10' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M8 12l3 3 5-6'/%3E%3C/svg%3E"); }
.pay-banner-warning i { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239d1015' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l4 2'/%3E%3C/svg%3E"); }

.pay-card {
    position: relative;
    overflow: hidden;
}
.pay-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.16) 45%, transparent 60%);
    background-size: 200% 100%;
    background-position: 150% 0;
    animation: pay-shine 5s ease-in-out infinite;
    pointer-events: none;
}
.pay-chip {
    display: block;
    width: 34px;
    height: 24px;
    border-radius: 5px;
    background: linear-gradient(135deg, #e8c874, #b6902f);
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.15);
}
@keyframes pay-shine {
    0%, 15% { background-position: 150% 0; }
    55%, 100% { background-position: -50% 0; }
}

.stack-form input.ico,
.stack-form select.ico {
    background-repeat: no-repeat;
    background-position: 14px center;
    background-size: 18px 18px;
    padding-left: 44px;
}
.ico-phone { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 4h3l1.5 3.5L8 9.5c1 2.8 2.7 4.5 5.5 5.5l2-1.5L19 15v3a2 2 0 0 1-2 2C10 20 4 14 4 7a2 2 0 0 1 1-3z'/%3E%3C/svg%3E"); }
.ico-mail { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='M3 7l9 6 9-6'/%3E%3C/svg%3E"); }
.ico-user { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 20c0-4 4-6 8-6s8 2 8 6'/%3E%3C/svg%3E"); }
.ico-id { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Ccircle cx='8' cy='11' r='2'/%3E%3Cpath d='M6 16h4M14 9h4M14 13h4M14 17h4'/%3E%3C/svg%3E"); }
.ico-card { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='6' width='18' height='12' rx='2'/%3E%3Cpath d='M3 10h18'/%3E%3Cpath d='M6 15h4'/%3E%3C/svg%3E"); }
.ico-calendar { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M3 10h18M8 3v4M16 3v4'/%3E%3C/svg%3E"); }
.ico-lock { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='11' width='14' height='9' rx='2'/%3E%3Cpath d='M8 11V8a4 4 0 0 1 8 0v3'/%3E%3C/svg%3E"); }

.stack-form input:focus,
.stack-form select:focus,
.stack-form textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(196, 22, 28, .12);
}

/* Yolcu sayfası: T.C. kimlik no anlık uzunluk ipucu (istemci tarafı görsel, sunucu validasyonu değişmez) */
.field-wrap { position: relative; display: block; }
.field-wrap input { width: 100%; }
.field-hint {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%) scale(.6);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 99px;
    background: #eee;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    font-style: normal;
    opacity: 0;
    transition: background-color .2s ease, color .2s ease, transform .2s ease, opacity .2s ease;
}
.field-hint.is-active { opacity: 1; transform: translateY(-50%) scale(1); }
.field-hint.is-done { background: #1a7a3a; color: #fff; }
.stack-form input.is-complete { border-color: #1a7a3a; }

/* Ödeme sayfası: kart numarasına göre marka rozeti (saf JS/CSS, iş mantığına dokunmaz) */
.pay-brand {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 3px 9px;
    border-radius: 4px;
    background: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity .25s ease, transform .25s ease;
}
.pay-brand.is-visa,
.pay-brand.is-mastercard,
.pay-brand.is-amex,
.pay-brand.is-troy {
    opacity: 1;
    transform: none;
}
.pay-brand.is-visa { color: #1a1f71; }
.pay-brand.is-mastercard { color: #eb6b1f; }
.pay-brand.is-amex { color: #2671b9; }
.pay-brand.is-troy { color: #00a651; }

/* Ödeme sayfası: güven rozetleri */
.pay-trust {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
}
.pay-trust li {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
}
.pay-trust i {
    display: block;
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
}
.ico-shield { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 3v6c0 4.5-3 8-7 9-4-1-7-4.5-7-9V6z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E"); }

/* Koltuk seçimi: mobilde sabit özet çubuğu (aynı continueBooking eylemi, sadece görsel kısayol) */
@media (max-width: 760px) {
    .seat-mobilebar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 60;
        padding: 12px 16px;
        padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
        background: #fff;
        border-top: 1px solid var(--line);
        box-shadow: 0 -8px 24px rgba(0, 0, 0, .1);
        transform: translateY(100%);
        transition: transform .3s cubic-bezier(.22, 1, .36, 1);
    }
    .seat-mobilebar.is-visible { transform: none; }
    .seat-mobilebar .btn { flex: none; padding: 10px 18px; }
    .seat-mobilebar-info { display: flex; flex-direction: column; line-height: 1.3; }
    .seat-mobilebar-info strong { font-size: 14px; color: var(--ink); }
    .seat-mobilebar-info span { font-size: 13px; font-weight: 700; color: var(--red); }
    body:has(.seat-mobilebar.is-visible) { padding-bottom: 72px; }
}

/* --- /yolcu & ödeme geliştirmeleri --- */

.ticket-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    max-width: 720px;
}
.ticket-band {
    background: var(--red);
    color: #fff;
    padding: 10px 22px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.ticket-card header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    padding: 22px 22px 0;
}
.ticket-card header span { display: block; color: var(--muted); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.ticket-card header strong { display: block; font-size: 36px; letter-spacing: .08em; color: var(--red); }
.ticket-card header em {
    font-style: normal;
    font-weight: 800;
    color: #1a7a3a;
    background: #e7f6eb;
    padding: 6px 10px;
    border-radius: 99px;
    font-size: 12px;
    text-transform: uppercase;
}
.ticket-card dl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 18px 22px;
    padding: 18px 0;
    border-top: 1px dashed var(--line);
    border-bottom: 1px dashed var(--line);
}
.ticket-card dt { color: var(--muted); font-size: 12px; }
.ticket-card dd { margin: 4px 0 0; font-weight: 700; }
.ticket-pax { list-style: none; margin: 0 22px 8px; padding: 0; }
.ticket-pax li { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.ticket-pax span { color: var(--muted); }
.ticket-card .pay-note { margin: 12px 22px 0; }
.ticket-actions { display: flex; gap: 10px; flex-wrap: wrap; padding: 8px 22px 22px; }
.ticket-actions .btn-ghost {
    border: 1px solid var(--line);
    color: var(--ink);
    background: #fff;
    text-transform: none;
    letter-spacing: 0;
}

.stack-form { display: grid; gap: 14px; }
.stack-form label { display: grid; gap: 6px; font-size: 13px; font-weight: 700; }
.stack-form input, .stack-form select, .stack-form textarea {
    height: 46px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    font-weight: 400;
}
.stack-form textarea { height: auto; padding: 12px; }
.coupon-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    align-items: end;
}
.coupon-row .btn { padding: 12px 16px; text-transform: none; letter-spacing: 0; }
.campaign-kind {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--red);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.campaign-meta {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
    color: var(--ink);
    font-size: 13px;
}
.campaign-meta li { margin-top: 4px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.check { display: flex; align-items: flex-start; gap: 8px; font-weight: 400; }
.check input { width: 18px; height: 18px; margin-top: 2px; }

.card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.info-card { display: block; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 22px; }
.info-card:hover { border-color: #f0c9cb; }
.info-card b { display: block; font-size: 18px; margin-bottom: 8px; }
.info-card p { margin: 0; color: var(--muted); font-size: 14px; }
.office-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 8px; }
.prose p { line-height: 1.7; color: #444; max-width: 68ch; }
.copy-row { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.site-footer a:hover { color: #fff; }

.track-bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr 150px minmax(220px, 1.4fr) auto;
    gap: 10px;
    align-items: end;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
}
.track-bar label span {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    color: var(--muted);
    font-weight: 700;
}
.track-bar select,
.track-bar input[type="date"] {
    width: 100%;
    height: 46px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
}
.track-bar .swap { margin-bottom: 4px; }
.track-bar .btn { height: 46px; min-width: 120px; }
.track-map {
    position: relative;
    margin-top: 18px;
    min-height: 420px;
    border-radius: 12px;
    background:
        radial-gradient(circle at 20% 70%, rgba(196, 22, 28, .08), transparent 28%),
        linear-gradient(180deg, #d5e4d4 0%, #c3d4c6 48%, #b7c8b4 100%);
    overflow: hidden;
    border: 1px solid #c9d6c8;
}
.track-map.is-fallback {
    display: grid;
    place-items: center;
    background: #f4f4f4;
}
.track-map-canvas {
    position: relative;
    z-index: 1;
    isolation: isolate;
    margin-top: 18px;
    width: 100%;
    height: 420px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #c9d6c8;
    background: #e8eee8;
}
.track-live .track-map-canvas {
    margin-top: 0;
}
.track-live {
    margin-top: 18px;
    position: relative;
    z-index: 1;
}
.track-map-canvas .leaflet-container {
    width: 100%;
    height: 100%;
    font-family: inherit;
    background: #e8eee8;
}
.track-remaining {
    margin: 0 0 12px;
    padding: 12px 14px;
    border: 1px solid #ead4d4;
    border-radius: 8px;
    background: #fff8f8;
    color: #222;
    font-size: 15px;
    line-height: 1.45;
}
.track-remaining b { color: var(--red); }
.track-bus-fallback span {
    display: block;
    width: 28px;
    height: 16px;
    background: var(--red);
    border-radius: 4px;
    box-shadow: 0 0 0 3px rgba(196, 22, 28, .18);
}
.track-city {
    position: absolute;
    transform: translate(-50%, 0);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #355;
    white-space: nowrap;
}
.track-city.is-from,
.track-city.is-to { color: var(--red); }
.track-bus {
    position: absolute;
    width: 28px;
    height: 16px;
    background: var(--red);
    border-radius: 4px;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 6px rgba(196, 22, 28, .18);
}
.track-bus::before {
    content: "";
    position: absolute;
    inset: 3px auto 3px 4px;
    width: 6px;
    background: #fff;
    border-radius: 1px;
}
.track-tip {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    transform: translateX(-50%);
    background: #fff;
    color: #222;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 12px;
    line-height: 1.45;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
}
.track-tip::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    border: 6px solid transparent;
    border-top-color: #fff;
    transform: translateX(-50%);
}
.track-remaining-note {
    display: block;
    margin-top: 4px;
    color: #666;
    font-size: 13px;
    font-weight: 500;
}
.track-caption {
    position: relative;
    z-index: 2;
    margin: 12px 0 0;
    padding: 0;
    background: transparent;
    color: #355;
    font-size: 13px;
    line-height: 1.5;
}
.account-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}
.account-head-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.loyalty-chip {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    border: 1px solid var(--red);
    background: #fff;
    color: var(--ink);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.loyalty-chip strong {
    color: var(--red);
    font-size: 14px;
    letter-spacing: 0;
    text-transform: none;
}
.loyalty-hero {
    border: 1px solid var(--line);
    border-left: 4px solid var(--red);
    background: #fff;
    padding: 22px 24px;
    margin-bottom: 8px;
}
.loyalty-hero span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.loyalty-hero strong {
    display: block;
    margin: 6px 0 10px;
    font-size: 36px;
    color: var(--red);
    letter-spacing: .02em;
}
.loyalty-hero p { margin: 0; color: #444; line-height: 1.55; }
.loyalty-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: baseline;
    border: 1px solid var(--line);
    background: #fff;
    padding: 14px 18px;
    margin-bottom: 8px;
}
.loyalty-row strong { display: block; }
.loyalty-row span { display: block; color: var(--muted); font-size: 13px; margin-top: 4px; }
.loyalty-row em { font-style: normal; font-weight: 800; white-space: nowrap; }
.loyalty-row em.is-in { color: #1a7a3a; }
.loyalty-row em.is-out { color: var(--red); }
.account-head .btn-ghost {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    text-transform: none;
    letter-spacing: 0;
}
.track-pin {
    position: absolute;
    top: 38%;
    left: 52%;
    width: 16px;
    height: 16px;
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(196,22,28,.2);
}
.auth-overlay {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(20, 12, 12, .55);
}
.auth-page {
    min-height: 62vh;
    display: grid;
    place-items: center;
    padding: 32px 16px 56px;
    background: #f6f6f6;
}
.auth-card {
    width: min(420px, 100%);
    background: #fff;
    border-radius: 4px;
    padding: 28px 28px 24px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, .22);
}
.auth-card.is-page { width: min(520px, 100%); }
.auth-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}
.auth-card-head h2 {
    margin: 0;
    color: var(--red);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: .04em;
}
.auth-close {
    border: 0;
    background: none;
    color: var(--red);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    padding: 0 4px;
}
.auth-form { display: grid; gap: 12px; }
.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="tel"],
.auth-form select {
    width: 100%;
    height: 46px;
    padding: 0 12px;
    border: 1px solid #d8d8d8;
    border-radius: 2px;
    background: #fff;
}
.auth-form label {
    display: grid;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
}
.auth-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
}
.auth-check input { width: 16px; height: 16px; accent-color: var(--red); }
.auth-submit {
    width: 100%;
    height: 46px;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 800;
}
.auth-forgot, .auth-register, .auth-lede {
    margin: 12px 0 0;
    text-align: center;
    font-size: 13px;
    color: #555;
}
.auth-forgot a, .auth-register a { font-weight: 800; color: var(--ink); }
.auth-register a:hover, .auth-forgot a:hover { color: var(--red); }
.auth-or {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 18px 0 8px;
    color: #999;
    font-size: 12px;
}
.auth-or::before, .auth-or::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e6e6e6;
}
.auth-lede { text-align: left; margin: 0 0 14px; }
body.auth-open { overflow: hidden; }

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    display: grid;
    place-items: center;
    z-index: 40;
    padding: 16px;
}
.modal-card { background: #fff; border-radius: 12px; padding: 24px; max-width: 420px; }
.modal-card h2 { margin: 0 0 8px; }
.modal-actions { display: flex; justify-content: flex-end; gap: 8px; margin-top: 16px; }

@media (max-width: 980px) {
    .trip-row, .booking-layout, .card-grid, .office-grid, .field-grid, .steps, .ticket-card dl, .track-bar { grid-template-columns: 1fr; }
    .trip-price { text-align: left; }
    .trip-pick { width: max-content; }
    .trip-more { justify-content: flex-start; }
    .jd-summary { grid-template-columns: 1fr; text-align: left; }
    .jd-summary-point.is-end { text-align: left; }
    .jd-summary-mid { min-width: 0; padding: 4px 0; }
    .jd-summary-mid::before, .jd-summary-mid::after { display: none; }
    .city-jump { overflow-x: auto; flex-wrap: nowrap; }
}

.page-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 28px;
}
.page-nav a {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    background: #fff;
}
.page-nav a.is-on,
.page-nav a:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}
.city-jump {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}
.city-jump a {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    white-space: nowrap;
}
.city-jump a:hover { border-color: var(--red); color: var(--red); }
.office-card span {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--red);
}
.office-detail .ticket-card { margin-bottom: 8px; }
.seo-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 22px 0 8px;
    font-weight: 700;
}
.seo-links a { color: var(--red); }
.legal-note {
    margin-top: 24px;
    padding: 14px 16px;
    background: #fff8f8;
    border-left: 3px solid var(--red);
    color: #666;
    font-size: 13px;
    max-width: 68ch;
}
.site-alert {
    background: #fff4f4;
    color: #8a1218;
    border: 1px solid #f0c4c6;
    text-align: center;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
}
.cookie-bar {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 80;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    background: #1c1c1c;
    color: #fff;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,.25);
}
.cookie-bar p { margin: 0; font-size: 14px; line-height: 1.5; }
.cookie-bar a { color: #ffd0d2; text-decoration: underline; }
[x-cloak] { display: none !important; }
.account-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 8px 0 24px;
}
.account-tabs a {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
}
.member-nudge {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin: 0 0 22px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-left: 4px solid var(--red);
}
.member-nudge strong {
    display: block;
    margin-bottom: 4px;
    font-size: 16px;
}
.member-nudge p {
    margin: 0;
    color: #444;
    font-size: 14px;
    line-height: 1.5;
}
.member-nudge-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
.member-nudge-actions .btn {
    text-transform: none;
    letter-spacing: 0;
    white-space: nowrap;
}
.member-nudge.is-compact {
    padding: 12px 16px;
    margin: 0 0 16px;
}
.member-nudge.is-compact strong { font-size: 14px; }
.member-nudge.is-compact p { font-size: 13px; }
.campaign-tiles {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 22px;
}
.campaign-tile {
    display: flex;
    flex-direction: column;
    width: 168px;
    height: 168px;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .02);
}
.campaign-tile .campaign-kind {
    margin-bottom: 8px;
}
.campaign-tile em {
    display: block;
    margin-top: auto;
    font-style: normal;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.03em;
    color: var(--red);
}
.campaign-tile b {
    display: -webkit-box;
    margin-top: 8px;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.campaign-tile code,
.campaign-tile small {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
}
.campaign-tile code {
    width: fit-content;
    padding: 2px 6px;
    border: 1px dashed #f0c9cb;
    border-radius: 4px;
    color: var(--red);
    font-family: inherit;
}
.campaign-tiles.is-compact {
    margin: 0 0 16px;
    gap: 10px;
}
.campaign-tiles.is-compact .campaign-tile {
    width: 148px;
    height: 148px;
    padding: 12px;
}
.campaign-tiles.is-compact .campaign-tile em {
    font-size: 24px;
}
@media (max-width: 720px) {
    .member-nudge {
        flex-direction: column;
        align-items: stretch;
    }
    .campaign-tiles {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
    }
    .campaign-tile,
    .campaign-tiles.is-compact .campaign-tile {
        flex: 0 0 148px;
    }
}

.error-page .inner-hero h1 {
    font-size: clamp(48px, 8vw, 84px);
    letter-spacing: .04em;
}
.error-actions {
    padding: 8px 0 0;
}

[x-cloak] { display: none !important; }

.lw-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 120;
    height: 3px;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    background-size: 35% 100%;
    background-repeat: no-repeat;
    transition: opacity .2s ease;
}
.lw-bar.is-on {
    opacity: 1;
    animation: lw-slide .9s linear infinite;
}
@keyframes lw-slide {
    from { background-position: -40% 0; }
    to { background-position: 140% 0; }
}

body:not(.is-home) main {
    animation: page-in .38s ease;
}
@keyframes page-in {
    from { opacity: .01; transform: translateY(8px); }
    to { opacity: 1; transform: none; }
}
@keyframes rise-in {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: none; }
}

.inner-hero .wrap > * {
    animation: rise-in .42s ease both;
}
.inner-hero .wrap > *:nth-child(2) { animation-delay: .05s; }
.inner-hero .wrap > *:nth-child(3) { animation-delay: .1s; }

.fx {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .45s ease, transform .5s cubic-bezier(.22, 1, .36, 1);
    transition-delay: var(--d, 0ms);
}
.fx.is-in {
    opacity: 1;
    transform: none;
}

.btn,
.trip-pick,
.swap,
.quick button,
.date-strip button,
.search-modes button,
.search-go,
.nav a,
.trip-detail-link,
.seat-alert-ok,
.jd-close,
.auth-close {
    transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .15s ease, box-shadow .2s ease, opacity .2s ease;
}
.btn:active,
.trip-pick:active,
.search-go:active,
.seat-alert-ok:active {
    transform: scale(.98);
}
.btn.is-busy {
    pointer-events: none;
    opacity: .72;
}

.swap:hover { transform: rotate(180deg); }

.trip {
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.trip:hover:not(.is-sold) {
    border-color: #f0c9cb;
}
.trip-row { transition: background .2s ease; }
.info-card,
.pop,
.campaign-tile {
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.info-card:hover,
.campaign-tile:hover,
a.pop:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
}

.trip-stage { position: relative; }
.trip-list.is-dim { opacity: .45; transition: opacity .2s ease; }
.lw-veil {
    display: none;
    position: absolute;
    inset: 12px 0 auto;
    z-index: 4;
    justify-content: center;
    padding-top: 28px;
    pointer-events: none;
}
.lw-veil.is-on { display: flex; }
.lw-spin {
    width: 28px;
    height: 28px;
    border: 2px solid #f0c9cb;
    border-top-color: var(--red);
    border-radius: 50%;
    animation: lw-spin .7s linear infinite;
    background: #fff;
    box-shadow: 0 0 0 6px rgba(255,255,255,.75);
}
@keyframes lw-spin {
    to { transform: rotate(360deg); }
}

.seat-panel {
    animation: panel-in .32s ease;
}
@keyframes panel-in {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: none; }
}

.jd-overlay,
.seat-alert {
    animation: fade-in .2s ease;
}
.jd-card,
.seat-alert-card {
    animation: rise-in .32s cubic-bezier(.22, 1, .36, 1);
}
.auth-card {
    animation: rise-in .28s ease;
}
@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.date-strip button.is-on {
    transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

@media (prefers-reduced-motion: reduce) {
    body:not(.is-home) main,
    .inner-hero .wrap > *,
    .fx,
    .seat-panel,
    .jd-overlay,
    .jd-card,
    .seat-alert,
    .seat-alert-card,
    .auth-card,
    .lw-bar,
    .pax-card,
    .pay-card::after {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
    .lw-bar.is-on { opacity: 0 !important; }
    .trip-list.is-dim { opacity: 1; }
    .steps-track-fill,
    .seat-mobilebar,
    .field-hint,
    .pay-brand {
        transition: none !important;
    }
}
