/* =========================================================
   GUNACAB — SHEOPUR ROUTES
   Standalone Route Page CSS
   Desktop + Laptop + Tablet + Mobile
   ========================================================= */

:root {
    --gc-orange: #ff6b00;
    --gc-orange-dark: #e85f00;
    --gc-blue: #1264c4;
    --gc-blue-dark: #0d4f9e;
    --gc-dark: #102033;
    --gc-text: #4b5b70;
    --gc-muted: #718096;
    --gc-bg: #f7f9fc;
    --gc-white: #ffffff;
    --gc-border: #e4eaf1;
    --gc-soft-blue: #f1f6fc;
    --gc-soft-orange: #fff6ed;
    --gc-shadow: 0 8px 28px rgba(16, 32, 51, .07);
    --gc-shadow-hover: 0 12px 30px rgba(16, 32, 51, .11);
    --gc-radius: 18px;
}

/* =========================================================
   RESET / BASE
   ========================================================= */

.route-page,
.route-page *,
.route-page *::before,
.route-page *::after {
    box-sizing: border-box;
}

.route-page {
    width: 100%;
    min-height: 100vh;
    background: var(--gc-bg);
    color: var(--gc-dark);
    padding: 22px 0 60px;
}

.route-page img {
    max-width: 100%;
}

.route-page a {
    text-decoration: none;
}

.route-page h1,
.route-page h2,
.route-page h3,
.route-page p {
    margin-top: 0;
}

.route-page p {
    color: var(--gc-text);
    line-height: 1.7;
}

.route-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

/* =========================================================
   BREADCRUMBS
   ========================================================= */

.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0 0 18px;
    color: var(--gc-muted);
    font-size: 13px;
    line-height: 1.5;
}

.breadcrumbs a {
    color: var(--gc-blue);
    font-weight: 600;
}

.breadcrumbs a:hover {
    color: var(--gc-blue-dark);
    text-decoration: underline;
}

/* =========================================================
   COMMON CARD
   ========================================================= */

.route-page .card {
    width: 100%;
    margin-top: 24px;
    padding: 30px;
    background: var(--gc-white);
    border: 1px solid var(--gc-border);
    border-radius: var(--gc-radius);
    box-shadow: var(--gc-shadow);
}

.route-page .card>h2 {
    margin: 0 0 22px;
    color: var(--gc-dark);
    font-size: 26px;
    line-height: 1.25;
    letter-spacing: -.02em;
}

/* =========================================================
   HERO
   ========================================================= */

.route-hero {
    width: 100%;
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(135deg, #0c294b 0%, #145ea8 100%);
    box-shadow: 0 14px 38px rgba(16, 32, 51, .14);
}

.route-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, .92fr);
    min-height: 410px;
}

.route-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px;
}

.route-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 17px;
    padding: 7px 13px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    background: rgba(255, 255, 255, .10);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
}

.route-hero-content h1 {
    max-width: 650px;
    margin-bottom: 17px;
    color: #fff;
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.035em;
}

.route-hero-content p {
    max-width: 650px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, .89);
    font-size: 16px;
    line-height: 1.72;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 11px;
}

.route-page .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 23px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.route-page .btn.primary {
    background: var(--gc-orange);
    color: #fff;
    box-shadow: 0 5px 15px rgba(255, 107, 0, .22);
}

.route-page .btn.primary:hover {
    background: var(--gc-orange-dark);
    transform: translateY(-1px);
}

.route-page .btn.secondary {
    background: #fff;
    color: var(--gc-dark);
}

.route-page .btn.secondary:hover {
    background: #f1f4f8;
    transform: translateY(-1px);
}

/* =========================================================
   HERO MAP
   ========================================================= */

.route-hero-map {
    min-width: 0;
    min-height: 410px;
    padding: 18px;
    background: rgba(255, 255, 255, .07);
}

.route-hero-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 374px;
    border: 0;
    border-radius: 15px;
    background: #e9eef4;
}

/* =========================================================
   QUICK STATS
   ========================================================= */

.route-stats-section {
    position: relative;
    z-index: 2;
    margin-top: -34px;
    padding: 0 34px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--gc-border);
    border-radius: 17px;
    box-shadow: 0 12px 30px rgba(16, 32, 51, .10);
}

.hero-stats>div {
    padding: 20px 24px;
    text-align: center;
    border-right: 1px solid var(--gc-border);
}

.hero-stats>div:last-child {
    border-right: 0;
}

.hero-stats span {
    display: block;
    margin-bottom: 6px;
    color: var(--gc-muted);
    font-size: 12px;
    font-weight: 700;
}

.hero-stats strong {
    display: block;
    color: var(--gc-dark);
    font-size: 21px;
    font-weight: 800;
    line-height: 1.25;
}

/* =========================================================
   GUNACAB — ROUTE OFFER BANNER
   ========================================================= */

.route-offer-banner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px 150px;
    align-items: center;
    width: 100%;
    min-height: 128px;
    margin: 22px 0 0;
    padding: 20px 24px 20px 31px;
    gap: 18px;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(255, 106, 0, .14);
    border-radius: 18px;
    background:
        linear-gradient(135deg,
            #fff7f0 0%,
            #ffffff 48%,
            #fff3e8 100%);
    box-shadow: 0 10px 30px rgba(16, 32, 51, .08);
}


/* =========================================================
   OFFER GLOW
   ========================================================= */

.offer-glow {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(35px);
    z-index: -1;
}

.offer-glow-top {
    top: -90px;
    right: 22%;
    width: 280px;
    height: 150px;
    background: rgba(255, 106, 0, .10);
}

.offer-glow-bottom {
    bottom: -90px;
    left: 30%;
    width: 300px;
    height: 150px;
    background: rgba(255, 182, 72, .08);
}


/* =========================================================
   LEFT ACCENT
   ========================================================= */

.route-offer-banner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: #FF6A00;
    z-index: 5;
}


/* =========================================================
   OFFER CONTENT
   ========================================================= */

.offer-content {
    position: relative;
    z-index: 3;
    min-width: 0;
}

.offer-date {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 6px;
}

.offer-date span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 25px;
    padding: 4px 10px;
    border-radius: 5px;
    background: #FF6A00;
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1;
}

.offer-date small {
    color: #102033;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
}


/* =========================================================
   OFFER TITLE
   ========================================================= */

.offer-title {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 5px;
}

.offer-title strong {
    color: #FF6A00;
    font-size: 29px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.02em;
}

.offer-title span {
    color: #102033;
    font-size: 14px;
    font-weight: 800;
}


/* =========================================================
   OFFER DESCRIPTION
   ========================================================= */

.offer-content>p {
    max-width: 620px;
    margin: 0 0 5px;
    color: #405268;
    font-size: 11px;
    line-height: 1.45;
}


/* =========================================================
   OFFER TERMS
   ========================================================= */

.offer-terms {
    display: block;
    max-width: 620px;
    color: #68788a;
    font-size: 8.5px;
    line-height: 1.4;
}


/* =========================================================
   OFFER IMAGE
   ========================================================= */

.offer-image {
    position: relative;
    width: 260px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    align-self: center;
    z-index: 5;
}

.offer-image img {
    display: block;
    width: 250px;
    height: 120px;
    max-width: 100%;
    object-fit: contain;
    object-position: center center;
    filter: drop-shadow(0 7px 8px rgba(16, 32, 51, .12));
}


/* =========================================================
   OFFER ACTION
   ========================================================= */

.offer-action {
    position: relative;
    z-index: 8;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
}


/* =========================================================
   BOOK BUTTON
   ========================================================= */

.offer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 108px;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 9px;
    background: #FF6A00;
    color: #ffffff !important;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .04em;
    white-space: nowrap;
    text-decoration: none;
    box-shadow: 0 5px 14px rgba(255, 106, 0, .18);
    transition:
        transform .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}

.offer-btn:hover {
    background: #E85F00;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(255, 106, 0, .24);
}


/* =========================================================
   LARGE LAPTOP
   ========================================================= */

@media (max-width: 1200px) {

    .route-offer-banner {
        grid-template-columns: minmax(0, 1fr) 225px 135px;
        gap: 12px;
        padding-right: 20px;
    }

    .offer-image {
        width: 225px;
        height: 110px;
    }

    .offer-image img {
        width: 220px;
        height: 110px;
    }

    .offer-title strong {
        font-size: 27px;
    }

    .offer-title span {
        font-size: 13px;
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .route-offer-banner {
        grid-template-columns: minmax(0, 1fr) 190px 115px;
        min-height: 125px;
        padding: 19px 17px 19px 27px;
        gap: 8px;
    }

    .offer-image {
        width: 190px;
        height: 100px;
    }

    .offer-image img {
        width: 190px;
        height: 100px;
    }

    .offer-title strong {
        font-size: 24px;
    }

    .offer-title span {
        font-size: 11px;
    }

    .offer-content>p {
        font-size: 10px;
    }

    .offer-terms {
        font-size: 8px;
    }

    .offer-btn {
        min-width: 95px;
        min-height: 40px;
        font-size: 9px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .route-offer-banner {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        min-height: auto;
        gap: 0;
        padding: 18px 15px 17px 22px;
    }

    .offer-content {
        width: 100%;
    }

    .offer-date {
        margin-bottom: 7px;
    }

    .offer-date span {
        min-height: 22px;
        padding: 4px 8px;
        font-size: 8px;
    }

    .offer-date small {
        font-size: 8px;
    }

    .offer-title {
        display: block;
        margin-bottom: 5px;
    }

    .offer-title strong {
        display: block;
        margin-bottom: 3px;
        font-size: 25px;
    }

    .offer-title span {
        display: block;
        font-size: 12px;
    }

    .offer-content>p {
        max-width: none;
        margin-bottom: 5px;
        font-size: 10.5px;
    }

    .offer-terms {
        max-width: none;
        font-size: 8px;
    }

    .offer-image {
        width: 100%;
        height: 120px;
        margin: 4px auto 0;
    }

    .offer-image img {
        width: 235px;
        height: 120px;
        max-width: 90%;
    }

    .offer-action {
        width: 100%;
        margin-top: -2px;
    }

    .offer-btn {
        min-width: 120px;
        min-height: 42px;
        flex: 0 0 auto;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .route-offer-banner {
        padding: 16px 13px 15px 20px;
    }

    .offer-title strong {
        font-size: 23px;
    }

    .offer-title span {
        font-size: 11px;
    }

    .offer-content>p {
        font-size: 10px;
    }

    .offer-terms {
        font-size: 7.5px;
    }

    .offer-image {
        height: 105px;
        margin-top: 3px;
    }

    .offer-image img {
        width: 215px;
        height: 105px;
    }

    .offer-action {
        margin-top: 0;
    }

    .offer-btn {
        min-width: 112px;
        min-height: 40px;
        font-size: 9px;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .offer-btn {
        transition: none;
    }
}

/* =========================================================
   ROUTE INFORMATION
   ========================================================= */

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px;
}

.info-box {
    min-width: 0;
    padding: 17px;
    border: 1px solid var(--gc-border);
    border-radius: 13px;
    background: #fbfcfe;
}

.info-box span {
    display: block;
    margin-bottom: 7px;
    color: var(--gc-muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.info-box strong {
    display: block;
    color: var(--gc-dark);
    font-size: 15px;
    line-height: 1.45;
}

/* =========================================================
   RELATED ROUTES
   ========================================================= */

.route-link-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.route-link-box {
    min-width: 0;
    border: 1px solid var(--gc-border);
    border-radius: 13px;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.route-link-box:hover {
    border-color: #bfd4ea;
    box-shadow: 0 8px 22px rgba(16, 32, 51, .07);
    transform: translateY(-2px);
}

.route-link-box h3 {
    margin: 0;
}

.route-link-box a {
    display: block;
    padding: 15px;
    color: var(--gc-blue);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

/* =========================================================
   CAB OPTIONS
   ========================================================= */

.cab-options-section {
    overflow: hidden;
}

.section-heading {
    margin-bottom: 22px;
}

.section-label {
    display: inline-block;
    margin-bottom: 7px;
    color: var(--gc-blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.section-heading h2 {
    margin-bottom: 8px;
    color: var(--gc-dark);
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -.02em;
}

.section-heading p {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.65;
}

.cab-options-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.cab-option {
    display: grid;
    grid-template-columns: 112px minmax(180px, 1fr) 150px 145px;
    align-items: center;
    gap: 18px;
    min-width: 0;
    padding: 13px;
    border: 1px solid var(--gc-border);
    border-radius: 15px;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.cab-option:hover {
    border-color: #c5d8eb;
    box-shadow: 0 8px 24px rgba(16, 32, 51, .07);
    transform: translateY(-1px);
}

.cab-visual {
    min-width: 0;
    overflow: hidden;
    border: 1px solid #e0e8f1;
    border-radius: 13px;
    background: #f3f7fc;
    text-align: center;
}

.cab-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 76px;
    padding: 5px 7px;
    overflow: hidden;
}

.cab-image img {
    display: block;
    width: 100%;
    max-width: 102px;
    height: 68px;
    object-fit: contain;
}

.cab-visual>span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 29px;
    padding: 5px 4px;
    background: var(--gc-blue);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
}

.cab-details {
    min-width: 0;
}

.cab-details h3 {
    margin-bottom: 4px;
    color: var(--gc-dark);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
}

.cab-details p {
    margin-bottom: 4px;
    color: var(--gc-text);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.cab-details small {
    display: block;
    color: var(--gc-muted);
    font-size: 12px;
    line-height: 1.35;
}

.cab-rate {
    min-width: 0;
    text-align: right;
}

.cab-rate span {
    display: block;
    margin-bottom: 4px;
    color: var(--gc-muted);
    font-size: 11px;
    font-weight: 600;
}

.cab-rate strong {
    display: block;
    color: var(--gc-dark);
    font-size: 21px;
    font-weight: 800;
    line-height: 1.2;
}

.cab-select-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 9px;
    background: var(--gc-blue);
    color: #fff !important;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .025em;
    line-height: 1;
    transition: background .2s ease, transform .2s ease;
}

.cab-select-btn:hover {
    background: var(--gc-blue-dark);
    transform: translateY(-1px);
}

.cab-fare-note {
    margin-top: 15px;
    padding: 14px 16px;
    border-left: 4px solid var(--gc-orange);
    border-radius: 10px;
    background: var(--gc-soft-orange);
}

.cab-fare-note strong {
    display: block;
    margin-bottom: 4px;
    color: var(--gc-dark);
    font-size: 13px;
}

.cab-fare-note p {
    margin: 0;
    color: var(--gc-text);
    font-size: 13px;
    line-height: 1.55;
}

/* =========================================================
   WHY GUNACAB
   ========================================================= */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 13px;
}

.feature-box {
    min-width: 0;
    padding: 18px;
    border: 1px solid var(--gc-border);
    border-radius: 13px;
    background: #fbfcfe;
}

.feature-box h3 {
    margin-bottom: 7px;
    color: var(--gc-dark);
    font-size: 16px;
    line-height: 1.35;
}

.feature-box p {
    margin-bottom: 0;
    font-size: 13px;
    line-height: 1.6;
}

/* =========================================================
   CONTENT
   ========================================================= */

.route-page .card>p:last-child {
    margin-bottom: 0;
}

/* =========================================================
   FAQ
   ========================================================= */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: 1px solid var(--gc-border);
    border-radius: 13px;
    background: #fbfcfe;
}

.faq-item summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: 16px 52px 16px 18px;
    color: var(--gc-dark);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--gc-soft-blue);
    color: var(--gc-blue);
    font-size: 19px;
    font-weight: 500;
    line-height: 1;
    transform: translateY(-50%);
}

.faq-item[open] summary {
    border-bottom: 1px solid var(--gc-border);
}

.faq-item[open] summary::after {
    content: "−";
    background: var(--gc-blue);
    color: #fff;
}

.faq-item p {
    margin: 0;
    padding: 15px 18px 17px;
    color: var(--gc-text);
    font-size: 14px;
    line-height: 1.65;
}

.faq-item summary:hover {
    background: #f7faff;
}

.faq-item summary:focus-visible {
    outline: 3px solid rgba(18, 100, 196, .18);
    outline-offset: -3px;
}

/* =========================================================
   BOTTOM CTA
   ========================================================= */

.bottom-cta {
    width: 100%;
    margin-top: 24px;
    padding: 40px 30px;
    border-radius: 20px;
    background: linear-gradient(135deg, #0c294b 0%, #145ea8 100%);
    text-align: center;
    box-shadow: 0 12px 32px rgba(16, 32, 51, .12);
}

.bottom-cta h2 {
    margin-bottom: 10px;
    color: #fff;
    font-size: 28px;
    line-height: 1.25;
}

.bottom-cta p {
    max-width: 620px;
    margin: 0 auto 22px;
    color: rgba(255, 255, 255, .86);
    font-size: 15px;
    line-height: 1.65;
}

.bottom-cta .btn-group {
    justify-content: center;
}

/* =========================================================
   LARGE LAPTOP / DESKTOP
   ========================================================= */

@media (max-width: 1200px) {

    .route-container {
        width: min(1120px, calc(100% - 36px));
    }

    .route-hero-layout {
        grid-template-columns: minmax(0, 1fr) minmax(380px, .88fr);
    }

    .route-hero-content {
        padding: 42px;
    }

    .cab-option {
        grid-template-columns: 105px minmax(160px, 1fr) 140px 135px;
        gap: 15px;
    }
}

/* =========================================================
   TABLET — LANDSCAPE / PORTRAIT
   ========================================================= */

@media (max-width: 900px) {

    .route-page {
        padding-top: 18px;
    }

    .route-container {
        width: min(100% - 28px, 760px);
    }

    .route-hero-layout {
        grid-template-columns: 1fr;
    }

    .route-hero-content {
        padding: 36px 32px 30px;
    }

    .route-hero-content h1 {
        max-width: 720px;
        font-size: 38px;
    }

    .route-hero-content p {
        max-width: 720px;
    }

    .route-hero-map {
        min-height: 320px;
        padding: 12px;
    }

    .route-hero-map iframe {
        min-height: 295px;
    }

    .route-stats-section {
        margin-top: -24px;
        padding: 0 22px;
    }

    .hero-stats>div {
        padding: 17px 15px;
    }

    .hero-stats strong {
        font-size: 18px;
    }

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

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

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

    .cab-option {
        grid-template-columns: 100px minmax(0, 1fr) 125px;
        gap: 14px;
    }

    .cab-select-btn {
        grid-column: 1 / -1;
        width: 100%;
    }
}

/* =========================================================
   TABLET — SMALL
   ========================================================= */

@media (max-width: 700px) {

    .route-page {
        padding: 12px 0 40px;
    }

    .route-container {
        width: calc(100% - 20px);
    }

    .breadcrumbs {
        margin-bottom: 12px;
        font-size: 12px;
    }

    .route-page .card {
        margin-top: 16px;
        padding: 20px 16px;
        border-radius: 15px;
    }

    .route-page .card>h2 {
        margin-bottom: 17px;
        font-size: 22px;
    }

    /* HERO */

    .route-hero {
        border-radius: 17px;
    }

    .route-hero-content {
        padding: 27px 19px 22px;
    }

    .route-badge {
        margin-bottom: 12px;
        padding: 6px 10px;
        font-size: 10px;
    }

    .route-hero-content h1 {
        margin-bottom: 12px;
        font-size: 29px;
        line-height: 1.12;
    }

    .route-hero-content p {
        margin-bottom: 18px;
        font-size: 14px;
        line-height: 1.62;
    }

    .route-page .btn {
        min-height: 44px;
        padding: 0 17px;
        font-size: 13px;
    }

    .route-hero-map {
        min-height: 250px;
        padding: 9px;
    }

    .route-hero-map iframe {
        min-height: 232px;
        border-radius: 11px;
    }

    /* STATS */

    .route-stats-section {
        margin-top: -17px;
        padding: 0 9px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        border-radius: 14px;
    }

    .hero-stats>div {
        padding: 12px 14px;
        border-right: 0;
        border-bottom: 1px solid var(--gc-border);
    }

    .hero-stats>div:last-child {
        border-bottom: 0;
    }

    .hero-stats span {
        margin-bottom: 3px;
        font-size: 10px;
    }

    .hero-stats strong {
        font-size: 17px;
    }

    /* INFO */

    .info-grid {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .info-box {
        padding: 13px 14px;
    }

    .info-box span {
        margin-bottom: 5px;
        font-size: 10px;
    }

    .info-box strong {
        font-size: 14px;
    }

    /* RELATED */

    .route-link-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .route-link-box a {
        padding: 13px 14px;
        font-size: 13px;
    }

    /* CAB OPTIONS */

    .section-heading {
        margin-bottom: 17px;
    }

    .section-label {
        font-size: 10px;
    }

    .section-heading h2 {
        margin-bottom: 7px;
        font-size: 23px;
    }

    .section-heading p {
        font-size: 13px;
        line-height: 1.55;
    }

    .cab-options-list {
        gap: 9px;
    }

    .cab-option {
        position: relative;
        display: grid;
        grid-template-columns: 80px minmax(0, 1fr);
        align-items: start;
        gap: 10px;
        min-height: 162px;
        padding: 10px;
        border-radius: 14px;
    }

    .cab-visual {
        grid-row: 1;
        width: 80px;
    }

    .cab-image {
        height: 61px;
        padding: 4px;
    }

    .cab-image img {
        width: 100%;
        max-width: 76px;
        height: 54px;
        object-fit: contain;
    }

    .cab-visual>span {
        min-height: 29px;
        padding: 4px 2px;
        font-size: 9px;
    }

    .cab-details {
        min-width: 0;
        padding-right: 88px;
    }

    .cab-details h3 {
        margin-bottom: 3px;
        font-size: 17px;
    }

    .cab-details p {
        margin-bottom: 4px;
        font-size: 13px;
    }

    .cab-details small {
        font-size: 11px;
        line-height: 1.35;
    }

    .cab-rate {
        position: absolute;
        top: 13px;
        right: 11px;
        text-align: right;
    }

    .cab-rate span {
        margin-bottom: 2px;
        font-size: 9px;
    }

    .cab-rate strong {
        font-size: 18px;
    }

    .cab-select-btn {
        grid-column: 1 / -1;
        width: 100%;
        min-height: 43px;
        margin-top: 3px;
        border-radius: 9px;
        font-size: 12px;
    }

    .cab-fare-note {
        margin-top: 11px;
        padding: 12px 13px;
    }

    .cab-fare-note strong {
        font-size: 12px;
    }

    .cab-fare-note p {
        font-size: 12px;
        line-height: 1.55;
    }

    /* WHY */

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .feature-box {
        padding: 14px;
    }

    .feature-box h3 {
        margin-bottom: 5px;
        font-size: 15px;
    }

    .feature-box p {
        font-size: 12px;
        line-height: 1.55;
    }

    /* CONTENT */

    .route-page .card>p {
        font-size: 14px;
        line-height: 1.7;
    }

    /* FAQ */

    .faq-list {
        gap: 8px;
    }

    .faq-item {
        border-radius: 11px;
    }

    .faq-item summary {
        min-height: 52px;
        padding: 14px 45px 14px 14px;
        font-size: 14px;
    }

    .faq-item summary::after {
        right: 13px;
        width: 23px;
        height: 23px;
        font-size: 17px;
    }

    .faq-item p {
        padding: 13px 14px 15px;
        font-size: 13px;
        line-height: 1.6;
    }


    /* CTA */

    .bottom-cta {
        margin-top: 16px;
        padding: 29px 17px;
        border-radius: 16px;
    }

    .bottom-cta h2 {
        margin-bottom: 9px;
        font-size: 22px;
    }

    .bottom-cta p {
        margin-bottom: 18px;
        font-size: 13px;
        line-height: 1.6;
    }

    .bottom-cta .btn-group {
        flex-direction: column;
        width: 100%;
    }

    .bottom-cta .btn {
        width: 100%;
    }
}

/* =========================================================
   MOBILE — SMALL
   ========================================================= */

@media (max-width: 400px) {

    .route-container {
        width: calc(100% - 14px);
    }

    .route-page .card {
        padding: 18px 13px;
    }

    .route-hero-content {
        padding: 24px 16px 20px;
    }

    .route-hero-content h1 {
        font-size: 26px;
    }

    .route-hero-content p {
        font-size: 13px;
    }

    .route-hero-map {
        min-height: 220px;
        padding: 8px;
    }

    .route-hero-map iframe {
        min-height: 204px;
    }

    .route-page .btn {
        width: 100%;
    }

    .cab-option {
        grid-template-columns: 74px minmax(0, 1fr);
        min-height: 155px;
        gap: 9px;
        padding: 9px;
    }

    .cab-visual {
        width: 74px;
    }

    .cab-image {
        height: 56px;
    }

    .cab-image img {
        max-width: 69px;
        height: 50px;
    }

    .cab-details {
        padding-right: 78px;
    }

    .cab-details h3 {
        font-size: 16px;
    }

    .cab-details p {
        font-size: 12px;
    }

    .cab-details small {
        font-size: 10px;
    }

    .cab-rate {
        top: 12px;
        right: 9px;
    }

    .cab-rate strong {
        font-size: 16px;
    }

    .cab-select-btn {
        min-height: 41px;
    }

    .faq-item summary {
        padding: 13px 42px 13px 13px;
        font-size: 13px;
    }

    .faq-item summary::after {
        right: 11px;
        width: 22px;
        height: 22px;
    }

    .faq-item p {
        padding: 12px 13px 14px;
        font-size: 12px;
    }

    .bottom-cta {
        padding: 26px 14px;
    }

    .bottom-cta h2 {
        font-size: 20px;
    }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .route-page *,
    .route-page *::before,
    .route-page *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}