:root {
    --navy: #01216c;
    --navy-2: #0a2e88;
    --ink: #0b1a3a;
    --muted: #5a6b86;
    --line: #e3eaf4;
    --bg: #f6f8fc;
    --white: #ffffff;
    --orange: #f55906;
    --orange-2: #fc851a;
    --orange-deep: #e84510;
    --teal: #0f8f86;
    --green: #12805a;
    --red: #d62828;
    --shadow: 0 18px 50px rgba(1, 33, 108, .12);
    --radius: 18px;
    --max: 1180px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(230,237,244,.9);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    gap: 20px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -.03em;
}
.logo-img {
    height: 52px;
    width: auto;
    display: block;
}
.logo-footer {
    display: inline-flex;
    align-items: center;
    background: #fff;
    border-radius: 14px;
    padding: 8px 12px;
    margin-bottom: 14px;
}
.logo-footer .logo-img { height: 42px; }
.logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--orange-2), var(--orange-deep));
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 18px;
    box-shadow: 0 8px 18px rgba(245, 89, 6, .35);
}
.logo span { color: var(--orange); }
.nav {
    display: flex;
    align-items: center;
    gap: 22px;
}
.nav a {
    font-size: .95rem;
    font-weight: 600;
    color: #314155;
}
.nav a:hover, .nav a.active { color: var(--orange); }
.nav-cta {
    background: linear-gradient(135deg, var(--orange-2), var(--orange-deep));
    color: #fff !important;
    padding: 10px 16px;
    border-radius: 999px;
}
.menu-toggle {
    display: none;
    border: 0;
    background: #f1f5f9;
    width: 42px;
    height: 42px;
    border-radius: 10px;
}

.topbar {
    background: var(--navy);
    color: #d5e2ef;
    font-size: .82rem;
    font-weight: 600;
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    flex-wrap: wrap;
}
.topbar a { color: #fff; }
.header-phone {
    display: none;
    font-weight: 700;
    color: var(--navy);
    font-size: .9rem;
}

.hero {
    position: relative;
    min-height: 620px;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(1,33,108,.58) 0%, rgba(1,33,108,.82) 100%),
        url("../images/hero.jpg") center/cover no-repeat;
    padding: 54px 0 80px;
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 22px;
}
.hero-stats div {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 16px;
    padding: 14px 16px;
}
.hero-stats strong { display: block; font-size: 1.25rem; }
.hero-stats span { color: #d7e2ee; font-size: .82rem; }
.hero-copy h1 {
    margin: 0 0 10px;
    font-size: clamp(2.1rem, 5vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: -.04em;
    max-width: 720px;
}
.hero-copy p {
    margin: 0 0 28px;
    max-width: 560px;
    color: #d7e2ee;
    font-size: 1.05rem;
}
.hero-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.pill {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    padding: 7px 12px;
    border-radius: 999px;
    font-size: .82rem;
}

.booking-card {
    background: #fff;
    color: var(--ink);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 18px;
    margin-top: 18px;
}
.trip-tabs {
    display: flex;
    gap: 8px;
    background: #f3f6fa;
    padding: 6px;
    border-radius: 14px;
    width: fit-content;
    margin-bottom: 16px;
}
.trip-tabs button {
    border: 0;
    background: transparent;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    color: #516173;
}
.trip-tabs button.active {
    background: #fff;
    color: var(--orange);
    box-shadow: 0 6px 16px rgba(15,23,42,.08);
}
.booking-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 1fr 1fr auto;
    gap: 10px;
    align-items: end;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #6b7c8f;
}
.field input, .field select, .field textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: #f8fafc;
    border-radius: 12px;
    padding: 12px 12px;
    outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
    border-color: #ffb27a;
    box-shadow: 0 0 0 4px rgba(245, 89, 6, .12);
    background: #fff;
}
.search-btn, .btn {
    border: 0;
    cursor: pointer;
    border-radius: 12px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.search-btn {
    background: linear-gradient(135deg, var(--orange-2), var(--orange-deep));
    color: #fff;
    min-height: 48px;
    padding: 0 22px;
    box-shadow: 0 10px 22px rgba(245, 89, 6, .28);
}
.btn-navy { background: var(--navy); color: #fff; padding: 12px 18px; }
.btn-outline { background: #fff; border: 1px solid var(--line); color: var(--ink); padding: 12px 18px; }
.btn-green { background: var(--green); color: #fff; padding: 12px 18px; }

.section { padding: 72px 0; }
.section-alt { background: #fff; border-block: 1px solid var(--line); }
.section-head { margin-bottom: 28px; }
.section-head.between { display: flex; justify-content: space-between; gap: 18px; align-items: end; flex-wrap: wrap; }
.section-head h2 {
    margin: 0 0 8px;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    letter-spacing: -.03em;
}
.eyebrow {
    margin: 0 0 8px;
    color: var(--orange);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.muted { color: var(--muted); }
.cards-3, .cards-4 {
    display: grid;
    gap: 18px;
}
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15,23,42,.04);
    transition: .2s ease;
}
.card .body { padding: 18px 20px 22px; }
.card h3 { margin: 0 0 8px; font-size: 1.1rem; }
.icon-box {
    width: 46px; height: 46px; border-radius: 14px;
    display: grid; place-items: center; font-size: 20px; margin-bottom: 12px;
    background: #fff3ea;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(15,23,42,.08); }
.feature-card .body { min-height: 210px; }
.route-card img { height: 170px; width: 100%; object-fit: cover; }
.route-photo { position: relative; }
.route-chip {
    position: absolute;
    left: 12px; bottom: 12px;
    background: rgba(1, 33, 108, .78);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
}
.route-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; }
.link-orange { color: var(--orange); font-weight: 800; }
.price { color: var(--orange); font-weight: 800; font-size: 1.15rem; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px 20px;
}
.step-no { display: block; color: var(--orange); font-weight: 800; margin-bottom: 10px; }
.step h3 { margin: 0 0 8px; }
.step p { margin: 0; color: var(--muted); }
.city-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.city-chips span {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 700;
    font-size: .9rem;
}
.city-chips small { color: var(--muted); font-weight: 600; }
.cities-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; align-items: start; }
.quote p { font-size: 1.02rem; margin-top: 0; }
.quote strong { display: block; margin-top: 14px; }
.testimonial-slider {
    display: grid;
    grid-template-columns: 42px 1fr 42px;
    align-items: center;
    gap: 12px;
}
.slider-viewport {
    overflow: hidden;
}
.slider-track {
    display: flex;
    gap: 18px;
    transition: transform .35s ease;
    will-change: transform;
}
.slider-track .quote {
    flex: 0 0 calc((100% - 36px) / 3);
    min-width: 0;
}
.slider-track .quote .body {
    display: flex;
    flex-direction: column;
    min-height: 220px;
}
.slider-track .quote .body p { flex: 1; }
.slider-btn {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 18px rgba(1, 33, 108, .18);
}
.slider-btn:hover { background: var(--orange); }
.slider-btn:disabled {
    opacity: .35;
    cursor: default;
    background: var(--navy);
}
.faq-section { background: #fff; border-block: 1px solid var(--line); }
.faq-head { text-align: center; max-width: 560px; margin-inline: auto; }
.faq-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 28px;
    align-items: start;
}
.faq-aside {
    background: linear-gradient(180deg, var(--navy), var(--navy-2));
    color: #fff;
    border-radius: 22px;
    padding: 28px 24px;
    position: sticky;
    top: 96px;
}
.faq-aside-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(245, 89, 6, .2);
    color: #ffb37a;
    display: grid;
    place-items: center;
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 16px;
}
.faq-aside-kicker {
    margin: 0 0 6px;
    color: #ffb37a;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.faq-aside h3 { margin: 0 0 10px; font-size: 1.35rem; letter-spacing: -.02em; }
.faq-aside p { margin: 0 0 18px; color: #c9d6e4; }
.faq-contact-line {
    display: block;
    color: #fff;
    font-weight: 700;
    margin-bottom: 8px;
}
.faq-contact-line:hover { color: #ffb37a; }
.faq-aside .btn-navy {
    margin-top: 16px;
    background: var(--orange);
    display: inline-flex;
    align-items: center;
    min-height: 44px;
}
.faq { display: grid; gap: 10px; }
.faq-item {
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.faq-item:hover { border-color: #f3c9a8; }
.faq-item[open] {
    background: #fff;
    border-color: #ffd2b0;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .06);
}
.faq-item summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 16px 16px 18px;
    font-weight: 800;
    line-height: 1.35;
}
.faq-item summary::-webkit-details-marker,
.faq-item summary::marker { display: none; content: none; }
.faq-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #fff;
    color: var(--orange);
    display: grid;
    place-items: center;
    font-size: .78rem;
    font-weight: 800;
    border: 1px solid var(--line);
}
.faq-item[open] .faq-num {
    background: #fff3ea;
    border-color: #ffd2b0;
}
.faq-q { flex: 1; }
.faq-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--line);
    position: relative;
}
.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: var(--orange);
    border-radius: 2px;
    transform: translate(-50%, -50%);
}
.faq-icon::before { width: 12px; height: 2px; }
.faq-icon::after { width: 2px; height: 12px; transition: transform .2s ease, opacity .2s ease; }
.faq-item[open] .faq-icon {
    background: var(--orange);
    border-color: var(--orange);
}
.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after { background: #fff; }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-a { padding: 0 18px 18px 68px; }
.faq-a p { margin: 0; color: var(--muted); }
.faq-a a { color: var(--orange); font-weight: 700; }
.cta-band {
    background: linear-gradient(135deg, var(--orange-2), var(--orange-deep));
    color: #fff;
    padding: 42px 0;
}
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; }
.cta-band h2 { margin: 0 0 6px; }
.cta-band p { margin: 0; color: rgba(255,255,255,.92); }
.cta-band .search-btn { background: #fff; color: var(--orange); box-shadow: none; padding: 0 22px; min-height: 48px; }
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.why-grid article {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px 20px;
}
.why-grid span { color: var(--orange); font-weight: 800; font-size: .85rem; }
.why-grid h3 { margin: 6px 0 8px; font-size: 1.05rem; }
.why-grid p { margin: 0; color: var(--muted); }
.why-grid a { color: var(--orange); font-weight: 700; }
.cover-list { margin: 16px 0 0; padding-left: 18px; color: var(--muted); }
.cover-list li { margin-bottom: 6px; }
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 22px 0 8px; }
.about-stats div { background: #f8fafc; border-radius: 14px; padding: 14px; }
.about-stats strong { display: block; font-size: 1.3rem; color: var(--orange); }
.contact-cards { display: grid; gap: 12px; }
.contact-cards article { background: #f8fafc; border-radius: 14px; padding: 14px 16px; }
.contact-cards h3 { margin: 0 0 4px; font-size: 1rem; }

.page-hero {
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    color: #fff;
    padding: 54px 0;
}
.page-hero h1 { margin: 0 0 8px; letter-spacing: -.03em; }
.page-content { padding: 42px 0 70px; }
.prose {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 28px 32px;
}
.prose h2 { margin-top: 0; }
.prose h3 { margin-bottom: 8px; }

.alert {
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 16px;
    font-weight: 600;
}
.alert-error { background: #fff1f1; color: var(--red); }
.alert-success { background: #eaf8f0; color: var(--green); }
.alert-warn { background: #fff7e8; color: #9a6200; }

.quote-card, .pay-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--line);
    padding: 24px;
    box-shadow: var(--shadow);
}
.search-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 22px;
    align-items: start;
}
.vehicle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.vehicle-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(15,23,42,.04);
}
.vehicle-card h3 { margin: 8px 0 6px; font-size: 1.2rem; }
.vehicle-card-top { display: flex; justify-content: space-between; gap: 8px; align-items: center; }
.vehicle-seats {
    background: #fff3ea;
    color: var(--orange);
    font-size: .75rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 999px;
}
.vehicle-price { color: var(--orange); font-weight: 800; font-size: 1.45rem; margin: 10px 0 4px; }
.vehicle-card .search-btn { width: 100%; }
.selected-cab {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    align-items: center;
    background: #fff7f1;
    border: 1px solid #ffd2b0;
    border-radius: 14px;
    padding: 12px 14px;
    margin-bottom: 18px;
}
.selected-cab .price { margin-left: auto; color: var(--orange); font-weight: 800; }
.quote-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}
.pay-options { display: grid; gap: 12px; margin: 18px 0; }
.pay-option {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.pay-option input { accent-color: var(--orange); }
.pay-option.selected { border-color: var(--orange); background: #fff7f1; }
.success-box {
    text-align: center;
    background: #fff;
    border-radius: 24px;
    padding: 40px 24px;
    box-shadow: var(--shadow);
}
.badge {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 800;
    background: #eef6ff;
    color: #1d4e89;
}
.site-footer {
    background: var(--navy);
    color: #c9d6e4;
    padding: 48px 0 22px;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 24px; }
.site-footer a { color: #dbe7f3; }
.site-footer h4 { color: #fff; margin: 0 0 12px; }
.copy { border-top: 1px solid rgba(255,255,255,.08); margin-top: 28px; padding-top: 16px; font-size: .9rem; }

@media (min-width: 961px) {
    .header-phone { display: block; }
}
@media (max-width: 960px) {
    .booking-grid, .cards-3, .cards-4, .footer-grid, .steps, .hero-stats, .about-stats, .cities-wrap, .why-grid, .vehicle-grid { grid-template-columns: 1fr 1fr; }
    .nav { display: none; }
    .nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 82px;
        left: 0; right: 0;
        background: #fff;
        padding: 16px 20px 22px;
        border-bottom: 1px solid var(--line);
    }
    .menu-toggle { display: grid; place-items: center; }
}
.split { display: grid; grid-template-columns: 1.4fr .8fr; gap: 22px; }
.pagination { display: flex; gap: 8px; list-style: none; padding: 16px 0; margin: 0; flex-wrap: wrap; }
.pagination a, .pagination span { padding: 6px 10px; border-radius: 8px; background: #fff; border: 1px solid var(--line); }

@media (max-width: 960px) {
    .slider-track .quote { flex-basis: calc((100% - 18px) / 2); }
}
@media (max-width: 800px) {
    .split { grid-template-columns: 1fr; }
    .faq-layout { grid-template-columns: 1fr; }
    .faq-aside { position: static; }
    .faq-a { padding-left: 18px; }
    .search-layout { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .booking-grid, .cards-3, .cards-4, .footer-grid, .steps, .hero-stats, .about-stats, .cities-wrap, .why-grid, .vehicle-grid { grid-template-columns: 1fr; }
    .hero { min-height: auto; padding-bottom: 48px; }
    .topbar { display: none; }
    .logo-img { height: 40px; }
    .header-inner { min-height: 70px; }
    .nav.open { top: 70px; }
    .testimonial-slider { grid-template-columns: 36px 1fr 36px; gap: 8px; }
    .slider-btn { width: 36px; height: 36px; font-size: 1.35rem; }
    .slider-track .quote { flex-basis: 100%; }
}
