:root {
    --st-primary: #e11d2e;
    --st-primary-dark: #b5121f;
    --st-dark: #1a1a1a;
    --st-muted: #f6f7f9;
    --st-text: #2b2b2b;
    --st-text-light: #6b7280;
    --st-border: #e6e8eb;
    --st-radius: 14px;
    --st-shadow: 0 10px 30px rgba(0,0,0,0.08);
    --st-container: 1180px;
    font-size: 16px;
}

* { box-sizing: border-box; }

html, body {
    overflow-x: hidden;
}

body {
    margin: 0;
    min-height: 100vh;
    padding-top: 70px;
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    color: var(--st-text);
    background: #fff;
    line-height: 1.6;
}

h1, h2, h3, h4 { font-weight: 700; margin: 0 0 .5rem; color: var(--st-dark); }

p { margin: 0 0 1rem; color: var(--st-text-light); }

a { text-decoration: none; color: inherit; transition: color .3s ease; }

.st-container {
    max-width: var(--st-container);
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Buttons ---------- */
.st-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    font-size: .95rem;
    text-decoration: none;
}
.st-btn--primary { background: var(--st-primary); color: #fff; }
.st-btn--primary:hover { background: var(--st-primary-dark); transform: translateY(-1px); }
.st-btn--ghost { border-color: var(--st-border); color: var(--st-dark); background: #fff; }
.st-btn--ghost:hover { border-color: var(--st-primary); color: var(--st-primary); }
.st-btn--light { background: #fff; color: var(--st-primary); }
.st-btn--lg { padding: 14px 28px; font-size: 1rem; }

/* ---------- Header ---------- */
.st-header { position: fixed !important; top: 0; left: 0; right: 0; z-index: 9999; width: 100%; background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,.05); }
@media (min-width: 992px) {
    nav.st-navbar { margin: 10px auto !important; max-width: var(--st-container); }
}
.st-header--minimal { position: fixed !important; top: 0; left: 0; right: 0; width: 100%; z-index: 9999; }
.st-navbar__inner { position: relative; display: flex; align-items: center; justify-content: space-between; padding: 24px 0; }
.st-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.3rem; color: var(--st-dark); }
.st-brand__icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: var(--st-primary); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem;
}
.st-brand__logo { max-height: 52px; width: auto; display: block; }
.st-brand__logo--footer { max-height: 40px; }
.st-brand__text span { color: var(--st-primary); }
.st-navbar__toggle {
    display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--st-dark);
}
.st-header .st-container { max-width: var(--st-container); padding: 0 20px; margin: 0 auto; }
.st-navbar__inner { position: relative; display: flex; align-items: center; justify-content: space-between; padding: 44px 0; width: 100%; max-width: var(--st-container); margin: 0 auto; }
.st-navbar__menu { display: flex; align-items: center; gap: 56px; justify-content: flex-end; }
.st-navbar__links { display: flex; align-items: center; gap: 44px; list-style: none; margin: 0; padding: 0; margin-right: auto; }
.st-navbar__links > li { position: relative; }
.st-navbar__links a { font-weight: 500; color: var(--st-text); padding: 20px 0; margin: 0 3px !important; }
    .st-navbar__links a:hover { color: var(--st-primary); }
    .st-navbar__cta { display: inline-flex; align-items: center; justify-content: center; padding: 10px 18px; font-size: .95rem; margin: 0 3px !important; }

@media (max-width: 991px) {
    nav.st-navbar { margin: 0 !important; width: 100% !important; }
    .st-header .st-container { padding: 0 12px; }
    .st-navbar__toggle { display: inline-flex; z-index: 1001; }
    .st-navbar__inner { padding: 12px 12px; min-height: 56px; }
    .st-navbar__menu {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        width: 100%;
        margin: 0;
        background: #fff;
        border-radius: 0 0 18px 18px;
        border: 1px solid var(--st-border);
        box-shadow: 0 10px 18px rgba(0,0,0,.08);
        padding: 16px 14px;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height .3s ease, opacity .3s ease, visibility .3s ease;
        z-index: 999;
        box-sizing: border-box;
    }
    .st-navbar__menu.open {
        display: flex;
        max-height: calc(100vh - 64px);
        opacity: 1;
        visibility: visible;
    }
    .st-navbar__menu:not(.open) .st-navbar__cta { display: none; }
    .st-navbar__links {
        flex-direction: column;
        gap: 12px;
    }
    .st-navbar__links a { padding: 10px 0; }
    .st-navbar__cta {
        width: 100%;
        justify-content: center;
        margin: 0;
        padding: 12px 16px;
    }
}

/* Mega menu nav items */
.st-navitem--mega { display: flex; align-items: center; }
.st-navitem__trigger {
    display: flex; align-items: center; gap: 6px;
    background: none; border: none; cursor: pointer;
    font: inherit; font-weight: 500; color: var(--st-text); padding: 8px 0;
}
.st-navitem__trigger i { font-size: .7rem; transition: transform .25s ease; }
.st-navitem--mega:hover .st-navitem__trigger { color: var(--st-primary); }
.st-navitem--mega:hover .st-navitem__trigger i { transform: rotate(180deg); }

.st-megamenu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    transform: translate(-50%, 10px);
    background: #fff;
    border-radius: var(--st-radius);
    box-shadow: var(--st-shadow);
    border: 1px solid var(--st-border);
    padding: 22px;
    display: flex;
    gap: 30px;
    min-width: 420px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
    z-index: 60;
}
.st-megamenu--small { min-width: 220px; }
.st-navitem--mega:hover .st-megamenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}
.st-megamenu__cols { display: flex; gap: 30px; }
.st-megamenu__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; min-width: 140px; }
.st-megamenu__list a { display: flex; align-items: center; gap: 8px; font-size: .92rem; white-space: nowrap; }
.st-megamenu__list a:hover { color: var(--st-primary); }
.st-megamenu__panel {
    flex-shrink: 0; width: 160px; border-radius: 10px; background: var(--st-muted);
    display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
    padding: 20px 14px; gap: 4px;
}
.st-megamenu__panel i { font-size: 1.6rem; color: var(--st-primary); margin-bottom: 6px; }
.st-megamenu__panel strong { font-size: .95rem; color: var(--st-dark); }
.st-megamenu__panel span { font-size: .78rem; color: var(--st-text-light); }

/* ---------- Hero ---------- */
.st-hero { background: linear-gradient(180deg, #fff5f5 0%, #ffffff 60%); padding: 40px 0 40px; }
.st-hero__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: start; }
.st-badge {
    display: inline-block; background: #ffe3e5; color: var(--st-primary-dark);
    padding: 6px 14px; border-radius: 999px; font-size: .8rem; font-weight: 600; margin-bottom: 14px;
}
.st-hero__slogan { display: flex; flex-direction: column; gap: 4px; margin-bottom: 14px; }
.st-hero__slogan-main { font-size: 1.05rem; font-weight: 600; color: var(--st-dark); }
.st-hero__slogan-main em { font-style: normal; color: var(--st-primary); }
.st-hero__slogan-tag { font-size: .9rem; color: var(--st-text-light); }

/* Hero slideshow: overlay slides and show only the active slide */
.st-hero__media { position: relative; overflow: hidden; }
.st-hero__media::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 78%; height: 78%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, #ffe3e5 0%, rgba(255,227,229,0.35) 55%, rgba(255,227,229,0) 75%);
    border-radius: 50%;
    z-index: 0;
}
.st-hero__slides { position: relative; width: 100%; height: 100%; min-height: 320px; z-index: 1; }
.st-hero__slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: opacity .45s ease, transform .45s ease, visibility .45s ease;
    will-change: opacity, transform;
}
.st-hero__slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.st-hero__slide img {
    width: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 18px 22px rgba(20, 20, 20, 0.16));
}
.st-hero__dots { position: relative; z-index: 1; display: flex; justify-content: center; gap: 8px; margin: 28px 0 16px; }
.st-hero__dot { width: 8px; height: 8px; border-radius: 50%; border: none; background: var(--st-border); cursor: pointer; padding: 0; transition: all .25s ease; }
.st-hero__dot.active { background: var(--st-primary); width: 22px; border-radius: 999px; }
.st-hero__copy h1 { font-size: 2.8rem; line-height: 1.15; margin-bottom: 18px; }
.st-hero__copy p { font-size: 1.05rem; max-width: 480px; }
.st-hero__actions { display: flex; gap: 14px; margin: 24px 0 36px; flex-wrap: wrap; }
.st-hero__actions .st-btn { justify-content: center; text-align: center; }


/* ---------- Booking widget ---------- */
.st-hero__widget {
    background: #fff; border-radius: var(--st-radius); box-shadow: var(--st-shadow);
    padding: 22px; border: 1px solid var(--st-border);
}
.st-tabs { display: flex; gap: 6px; margin-bottom: 18px; background: var(--st-muted); border-radius: 999px; padding: 5px; }
.st-tab {
    flex: 1; border: none; background: transparent; padding: 10px 8px; border-radius: 999px;
    font-weight: 600; cursor: pointer; color: var(--st-text-light); font-size: .88rem;
}
.st-tab.active { background: var(--st-primary); color: #fff; }
.st-quickform { display: flex; flex-direction: column; gap: 14px; }
.st-quickform .st-form__row { grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 420px) {
    .st-quickform .st-form__row { grid-template-columns: 1fr; }
}
.st-field { display: flex; flex-direction: column; gap: 6px; }
.st-field label { font-size: .82rem; font-weight: 600; color: var(--st-dark); }
.st-required { color: var(--st-primary); margin-left: 2px; }
.st-input {
    padding: 12px 14px; border: 1.5px solid var(--st-border); border-radius: 10px;
    font-size: .95rem; font-family: inherit; width: 100%; background: #fff; color: var(--st-text);
}
.st-input:focus { outline: none; border-color: var(--st-primary); }
.st-quickform__submit { justify-content: center; margin-top: 4px; }

/* ---------- Sections ---------- */
.st-section { padding: 60px 0; }
.st-section--muted { background: var(--st-muted); }
.st-section__head { text-align: center; max-width: 560px; margin: 0 auto 32px; }
.st-eyebrow { color: var(--st-primary); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; font-size: .8rem; }
.st-section__head h2 { font-size: 2rem; margin-top: 8px; }

.st-grid { display: grid; gap: 24px; }
.st-grid--4 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    justify-content: center;
}

/* Trip type cards */
.st-card {
    background: #fff; border: 1px solid var(--st-border); border-radius: var(--st-radius);
    padding: 26px; text-align: left;
    transition: box-shadow .25s cubic-bezier(.2,.9,.2,1), transform .25s cubic-bezier(.2,.9,.2,1), background .25s ease, border-color .25s ease;
    will-change: transform, box-shadow, background;
}
.st-card:hover,
.st-card:active,
.st-card:focus-within {
    box-shadow: 0 18px 40px rgba(0,0,0,0.10);
    transform: translateY(-6px) scale(1.02);
    border-color: var(--st-primary);
    background: linear-gradient(180deg, #ffffff 0%, #fff7f8 100%);
}
.st-card:focus-within { outline: none; }
.st-card {
    cursor: pointer;
    touch-action: manipulation;
}
.st-card__icon {
    width: 50px; height: 50px; border-radius: 12px; background: #ffe3e5; color: var(--st-primary);
    display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 16px;
    transition: transform .25s ease, background .25s ease, color .25s ease;
}
.st-card:hover .st-card__icon,
.st-card:active .st-card__icon,
.st-card:focus-within .st-card__icon {
    transform: scale(1.08) rotate(-6deg);
    background: var(--st-primary);
    color: #fff;
}
.st-card__price { display: block; font-weight: 700; color: var(--st-dark); margin: 10px 0; }
.st-link { font-weight: 600; color: var(--st-primary); }

/* Cab type cards */
.st-cabcard {
    background: #fff; border: 1px solid var(--st-border); border-radius: var(--st-radius);
    padding: 26px; text-align: center;
}
.st-cabcard__art {
    width: 70px; height: 70px; margin: 0 auto 14px; border-radius: 50%;
    background: var(--st-muted); display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; color: var(--st-primary);
}
.st-cabcard__seats { font-size: .85rem; color: var(--st-text-light); }

/* Cab carousel + animations - hero style with main focus card */
.st-cabcarousel-container { display: flex; justify-content: center; overflow-x: hidden; overflow-y: hidden; }
.st-cabcarousel-wrapper { display: flex; flex-direction: column; align-items: center; gap: 28px; width: 100%; max-width: 500px; }

/* Main carousel display */
.st-cabcarousel { position: relative; width: 100%; min-height: 360px; display: flex; justify-content: center; align-items: center; }
.st-cabcarousel-card {
    background: #fff; border: 1px solid var(--st-border); border-radius: 22px;
    padding: 24px; text-align: center; width: 100%; max-width: 420px;
    opacity: 0; visibility: hidden; transform: scale(0.92) translateY(10px);
    transition: opacity .5s cubic-bezier(0.34, 1.56, 0.64, 1), transform .5s cubic-bezier(0.34, 1.56, 0.64, 1), visibility .5s ease;
    z-index: 0; display: none; flex-direction: column; gap: 12px; align-items: center;
}
.st-cabcarousel-card.active {
    opacity: 1; visibility: visible; transform: scale(1) translateY(0);
    z-index: 10; display: flex;
}
.st-cabcarousel-card h4 { font-size: 1.45rem; margin: 10px 0 8px 0; font-weight: 700; color: var(--st-dark); }
.st-cabcarousel-card p { margin: 0 0 12px 0; font-size: .96rem; color: var(--st-text-light); min-height: 40px; }
.st-cabcarousel-card__art { width: 100%; height: 200px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.st-cabcarousel-card__art img { width: 100%; max-width: 340px; max-height: 100%; height: auto; object-fit: contain; transition: transform .3s ease; }
.st-cabcarousel-card.active .st-cabcarousel-card__art img { transform: scale(1.05); }
.st-cabcarousel-card__seats { font-size: .88rem; color: var(--st-text-light); display: flex; align-items: center; justify-content: center; gap: 8px; }
.st-cabcarousel-card__seats i { color: var(--st-primary); }

/* Carousel controls */
.st-cabcarousel-controls { display: flex; align-items: center; gap: 16px; justify-content: center; width: 100%; }
.st-carousel-nav {
    width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--st-border);
    background: #fff; color: var(--st-dark); display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 1rem; transition: all .2s ease; flex-shrink: 0;
}
.st-carousel-nav:hover { background: var(--st-primary); color: #fff; border-color: var(--st-primary); }
.st-carousel-nav { 
    width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--st-border);
    background: #fff; color: var(--st-primary); font-size: 1.2rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center; transition: all .3s ease;
}
.st-carousel-nav:hover { 
    border-color: var(--st-primary); background: var(--st-primary); color: #fff;
    transform: scale(1.1) translateY(-2px); box-shadow: 0 6px 15px rgba(225, 29, 46, 0.2);
}
.st-carousel-nav:active { transform: scale(0.95); }

/* Thumbnail carousel below */
.st-cabcarousel-thumbnails { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; overflow: visible; padding: 5px 0; }

/* Prevent subpixel/hover scaling from introducing page scrollbars */
.st-cabcarousel-wrapper, .st-cabcarousel { -webkit-transform: translateZ(0); backface-visibility: hidden; }
.st-cabcarousel-thumb {
    width: 90px; height: 90px; padding: 10px; border-radius: 16px; border: 2px solid var(--st-border);
    background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.st-cabcarousel-thumb:hover { 
    border-color: var(--st-primary); transform: scale(1.08) translateY(-3px);
    box-shadow: 0 8px 20px rgba(225, 29, 46, 0.15);
}
.st-cabcarousel-thumb.active { 
    border-color: var(--st-primary); box-shadow: 0 0 0 3px rgba(225,29,46,.12), 0 6px 16px rgba(225, 29, 46, 0.2); 
    background: #fff; transform: scale(1.04);
}
.st-cabcarousel-thumb img { width: 100%; height: 100%; object-fit: contain; }

@media (max-width: 991px) {
    .st-cabcarousel-wrapper { max-width: 420px; }
    .st-cabcard__art { height: 170px; }
    .st-cabcard--thumb { width: 75px; height: 75px; }
}

@media (max-width: 640px) {
    .st-cabcarousel-wrapper { max-width: 100%; }
    .st-cabcard { padding: 18px; }
    .st-cabcard__art { height: 140px; }
    .st-cabcard--thumb { width: 65px; height: 65px; }
}


/* Cities */
.st-city-cards { gap: 20px; }
.st-citycard {
    display: block; overflow: hidden; border-radius: 18px; border: 1px solid var(--st-border);
    background: #fff; text-align: left; transition: transform .35s cubic-bezier(.2,.9,.2,1), box-shadow .35s ease, border-color .25s ease;
    position: relative;
    min-height: 280px;
}
.st-citycard__media {
    height: 260px;
    overflow: hidden;
    display: block;
    position: relative;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}
.st-citycard__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(.2,.9,.2,1), filter .25s ease;
    -webkit-backface-visibility: hidden;
}
.st-citycard__overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px 20px;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.52) 55%, rgba(0,0,0,0.75) 100%);
    color: #fff;
}
.st-citycard__overlay h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
    text-shadow: 0 3px 10px rgba(0,0,0,0.8);
        color: orange;
    }
    .st-citycard:hover, .st-citycard:active, .st-citycard.touch-hover {
        transform: translateY(-8px);
        box-shadow: 0 22px 60px rgba(0,0,0,0.14);
        border-color: var(--st-primary);
    }
    .st-citycard:hover .st-citycard__media img,
    .st-citycard:active .st-citycard__media img,
    .st-citycard.touch-hover .st-citycard__media img {
        transform: scale(1.12) translateY(-4px);
        filter: saturate(1.05) contrast(1.02);
    }
    .st-citycard:focus { outline: none; box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
    .st-citycard { animation: st-citycard-enter .45s ease both; }

    @keyframes st-citycard-enter {
        from { opacity: 0; transform: translateY(20px) scale(0.98); }
        to { opacity: 1; transform: translateY(0) scale(1); }
    }

    @media (max-width: 767px) {
        .st-citycard__media { height: 220px; }
        .st-citycard__overlay { padding: 16px 18px; }
    }
.st-google-reviews__loading,
.st-google-reviews__error {
    font-size: 1rem;
    color: var(--st-text-light);
    text-align: center;
    padding: 40px 0;
}
.st-google-reviews__grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.st-google-review-card {
    background: #fff;
    border: 1px solid var(--st-border);
    border-radius: 18px;
    padding: 24px;
    transition: transform .2s ease, box-shadow .2s ease;
}
.st-google-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}
.st-google-review-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    gap: 12px;
}
.st-google-review-card__header strong {
    font-size: 1rem;
    color: var(--st-dark);
}
.st-google-review-card__rating {
    color: #f5a623;
    font-size: .98rem;
    letter-spacing: .02em;
}
.st-google-review-card p {
    margin: 0 0 16px;
    color: var(--st-text-light);
    line-height: 1.7;
}
.st-google-review-card__footer {
    display: flex;
    justify-content: flex-end;
    color: var(--st-text-light);
    font-size: .9rem;
}
.st-google-reviews__footer {
    margin-top: 20px;
    text-align: center;
}
.st-google-reviews__footer a {
    color: var(--st-primary);
    font-weight: 600;
}

/* Testimonials */
.st-testimonial {
    background: #fff; border-radius: var(--st-radius); padding: 24px; border: 1px solid var(--st-border);
}
.st-testimonial__stars { color: #f5a623; margin-bottom: 10px; }
.st-testimonial p { font-style: italic; color: var(--st-text); }

/* CTA */
.st-cta { background: var(--st-primary); padding: 50px 0; }
.st-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.st-cta h2, .st-cta p { color: #fff; }
.st-cta p { opacity: .9; margin: 0; }

/* ---------- Booking form page ---------- */
.st-bookingpage { padding: 28px 0; }
.st-booking-message { margin: 0 0 12px; display: none; }
.st-bookingpage__inner { max-width: 980px; margin: 0 auto; padding: 0 14px; }
.st-form { display: flex; flex-direction: column; gap: 18px; background: #fff; padding: 24px; border-radius: calc(var(--st-radius) + 8px); border: 1px solid rgba(228, 231, 235, 0.85); box-shadow: 0 16px 28px rgba(36, 37, 38, 0.08); }
.st-booking-intro { color: var(--st-text-light); font-size: .96rem; line-height: 1.5; max-width: 620px; margin-bottom: 8px; }
.st-booking-steps { display: flex; gap: 12px; flex-wrap: wrap; margin: 12px 0; }
.st-booking-step-tab {
    flex: 1; min-width: 130px; border: 1px solid var(--st-border); background: #fff;
    color: var(--st-text-light); border-radius: 999px; padding: 12px 14px; cursor: pointer;
    font-weight: 600; font-size: .92rem; transition: all .25s ease;
}
.st-booking-step-tab.active {
    background: var(--st-primary); color: #fff; border-color: transparent;
}
.st-booking-step { display: none; }
.st-booking-step.active { display: block; }
.st-booking-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin: 10px 0; align-items: stretch; }
.st-booking-option {
    display: flex; align-items: flex-start; gap: 12px; padding: 14px 12px;
    width: 100%; min-width: 0;
    border: 1px solid var(--st-border); border-radius: 14px; cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition: all .25s ease;
}
.st-booking-option:hover,
.st-booking-option:active,
.st-booking-option:focus-within,
.st-booking-option.touch-hover {
    border-color: rgba(225, 29, 46, 0.35);
    background: #fafafa;
}
.st-booking-option__input { margin-top: 4px; accent-color: var(--st-primary); }
.st-booking-option__content { display: flex; flex-direction: column; gap: 8px; }
.st-booking-option__title { font-weight: 700; font-size: 1.02rem; color: var(--st-dark); }
.st-booking-option__subtitle { color: var(--st-text-light); font-size: .95rem; line-height: 1.5; }

.st-cab-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 14px; }
.st-cab-option {
    display: flex; flex-direction: column; gap: 10px; padding: 14px 12px;
    border: 1px solid var(--st-border); border-radius: 14px; cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition: all .25s ease;
}
.st-cab-option.active { border-color: var(--st-primary); background: rgba(225, 29, 46, 0.05); }
.st-cab-option:hover,
.st-cab-option:active,
.st-cab-option:focus-within,
.st-cab-option.touch-hover { border-color: rgba(225, 29, 46, 0.45); }
.st-cab-option__input { display: none; }
.st-cab-option__content { display: flex; flex-direction: column; gap: 6px; width: 100%; }
.st-cab-option__title { font-weight: 700; font-size: 1rem; color: var(--st-dark); }
.st-cab-option__subtitle { color: var(--st-text-light); font-size: .9rem; line-height: 1.4; }
.st-cab-option__seats { display: flex; align-items: center; gap: 6px; color: var(--st-text-light); font-size: .9rem; }
.st-cab-option__seats i { color: var(--st-primary); }
.st-cab-option__tariff { color: var(--st-primary); font-weight: 700; font-size: .96rem; }

.st-fare-estimate { display: none; background: #fff6f7; border: 1px solid rgba(225, 29, 46, 0.15); padding: 14px 16px; border-radius: 14px; font-size: .95rem; color: var(--st-dark); }
.st-fare-estimate strong { display: block; margin-bottom: 6px; }
.st-fare-note { color: var(--st-text-light); font-size: .88rem; margin-top: 6px; }
.st-booking-highlights { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; padding: 8px 0 0; color: var(--st-text-light); font-size: .85rem; }
.st-booking-highlights div { display: flex; align-items: center; gap: 8px; }
.st-booking-highlights i { color: var(--st-primary); font-size: .95rem; }
.st-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.st-form--compact { gap: 12px; }
.st-form-actions { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 10px; position: relative; z-index: 5; }
.st-form-actions .st-btn { min-width: 120px; }
.st-error { color: var(--st-primary-dark); font-size: .78rem; }
.st-alert { padding: 10px 12px; border-radius: 12px; font-size: .88rem; }
.st-alert--error { background: #ffe3e5; color: var(--st-primary-dark); }
.st-alert--error:empty { display: none; }

/* Google Map + route summary */
.st-map-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 12px; align-items: stretch; position: relative; z-index: 1; isolation: isolate; }
.st-map { width: 100%; height: 140px; min-height: 140px; border-radius: calc(var(--st-radius) + 6px); border: 1px solid rgba(229, 231, 235, 0.9); background: linear-gradient(180deg, #fafafa 0%, #f1f5f9 100%); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.5); position: relative; overflow: hidden; }
.st-map--compact { height: 130px; }
    .st-route-summary, .st-fare-estimate { background: #fff; border-radius: 14px; padding: 14px 16px; font-size: .95rem; border: 1px solid rgba(226, 232, 240, 0.9); }
    .st-route-summary { display: flex; flex-direction: column; gap: 10px; min-width: 180px; }
    .st-route-summary span { display: flex; align-items: center; gap: 10px; }
    .st-route-summary strong { font-weight: 700; }
    .st-fare-estimate { display: none; }
    .st-fare-estimate strong { display: block; margin-bottom: 6px; font-weight: 700; }
.st-map-ui { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 16px; }
.st-map-ui__copy { min-width: 0; }
.st-map-ui__copy strong { display: block; font-size: .95rem; margin-bottom: 4px; }
.st-map-ui__copy span { color: var(--st-text-light); font-size: .9rem; }
#showCurrentLocationMapBtn { flex-shrink: 0; white-space: nowrap; }
.st-btn--ghost.st-btn--sm { padding: 8px 12px; font-size: .85rem; }
@media (max-width: 991px) {
    .st-map-row { grid-template-columns: 1fr; }
    .st-map-ui { flex-direction: column; align-items: stretch; }
}
.st-route-summary i { color: var(--st-primary); margin-right: 6px; }
.st-field--autocomplete { position: relative; }
.st-field__label-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.st-current-location { display: flex; align-items: center; }
.st-current-location .st-btn--sm { padding: 8px 12px; font-size: .85rem; gap: 8px; display: inline-flex; align-items: center; background: #fff; border: 1px solid var(--st-border); border-radius: 999px; }
.st-current-location .st-btn--sm:hover { background: #fff; border-color: var(--st-primary); color: var(--st-primary); }
.st-current-location .st-btn--sm i { margin-right: 6px; }
.st-field-help { color: var(--st-text-light); font-size: .83rem; margin-top: 8px; display: block; }
.st-rental-mode { display: flex; flex-wrap: wrap; gap: 14px; margin: 10px 0; }
.st-radio { display: inline-flex; align-items: center; gap: 6px; color: var(--st-dark); font-size: .92rem; }
.st-radio input { margin: 0; accent-color: var(--st-primary); }
.st-rental-selects { display: grid; gap: 10px; }

/* Google's own Autocomplete suggestion dropdown (.pac-container) sits above our form fields.
   Must be higher than the fixed header (z-index: 9999) or it renders hidden behind it. */
.pac-container { z-index: 10050 !important; border-radius: 10px; margin-top: 4px; font-family: 'Poppins', sans-serif; }

.st-loading {
    position: fixed;
    inset: 0;
    z-index: 11000;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(15, 23, 42, .28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease, visibility .18s ease;
}
.st-loading.open { opacity: 1; visibility: visible; pointer-events: auto; }
.st-loading__dialog {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 190px;
    justify-content: center;
    padding: 16px 20px;
    border-radius: 12px;
    background: #fff;
    color: var(--st-dark);
    box-shadow: 0 18px 48px rgba(15, 23, 42, .2);
}
.st-loading__spinner {
    width: 22px;
    height: 22px;
    border: 3px solid rgba(225, 29, 46, .2);
    border-top-color: var(--st-primary);
    border-radius: 50%;
    animation: st-loading-spin .72s linear infinite;
}
@keyframes st-loading-spin { to { transform: rotate(360deg); } }


/* Confirmation */
.st-confirmation__inner { max-width: 560px; margin: 0 auto; text-align: center; }
.st-confirmation__icon { font-size: 3.4rem; color: #22a45d; margin-bottom: 10px; }
.st-confirmation__card {
    text-align: left; background: var(--st-muted); border-radius: var(--st-radius); padding: 20px 24px; margin: 24px 0; display: flex; flex-direction: column; gap: 10px;
}
.st-confirmation__card div { display: flex; justify-content: space-between; border-bottom: 1px dashed var(--st-border); padding-bottom: 8px; }
.st-confirmation__card span { color: var(--st-text-light); }

/* Simple content pages */
.st-simplepage { max-width: 760px; margin: 0 auto; padding: 60px 20px; }
.st-contactlist { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.st-contactlist i { color: var(--st-primary); margin-right: 8px; }

.st-contact-float {
    position: fixed;
    right: 20px;
    left: auto;
    bottom: 20px;
    z-index: 10005;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}
.st-contact-float__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    border: none;
    background: var(--st-primary);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .16);
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
    pointer-events: auto;
}
.st-contact-float__button:hover {
    transform: translateY(-2px);
}
.st-contact-float__panel {
    position: absolute;
    right: 0;
    left: auto;
    bottom: calc(100% + 12px);
    width: 280px;
    max-width: calc(100vw - 32px);
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .16);
    padding: 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
    pointer-events: none;
}
.st-contact-float__panel.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.st-contact-float__header {
    margin-bottom: 14px;
    font-weight: 700;
    color: var(--st-dark);
}
.st-contact-float__item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--st-text);
    text-decoration: none;
}
.st-contact-float__item i {
    color: var(--st-primary);
    min-width: 20px;
    font-size: 1.1rem;
}
.st-contact-float__social {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
.st-contact-float__social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--st-muted);
    color: var(--st-dark);
    transition: background .2s ease, color .2s ease;
}
.st-contact-float__social a:hover {
    background: var(--st-primary);
    color: #fff;
}

/* ---------- Footer ---------- */
.st-footer { background: transparent; color: inherit; padding-top: 24px; }
.st-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; padding-bottom: 24px; }
.st-footer h5 { color: inherit; margin-bottom: 14px; }
.st-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.st-footer a { color: var(--st-text-light); }
.st-footer a:hover { color: var(--st-dark); }
.st-footer__contact li { display: flex; align-items: center; gap: 8px; color: var(--st-text-light); }
.st-brand--footer { color: #fff; margin-bottom: 14px; }
.st-footer__brand p { color: var(--st-text-light); font-size: .92rem; line-height: 1.6; margin: 0 0 4px; max-width: 320px; }
.st-social { display: flex; gap: 12px; margin-top: 16px; }
.st-social a {
    width: 36px; height: 36px; border-radius: 50%; background: transparent;
    border: 1px solid var(--st-border);
    color: var(--st-text-light);
    display: flex; align-items: center; justify-content: center;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.st-social a i { font-size: 1rem; }
.st-social a:hover { background: var(--st-primary); color: #fff; border-color: var(--st-primary); }
.st-footer__bottom { border-top: 1px solid var(--st-border); padding: 18px 0; text-align: center; font-size: .85rem; }

/* Minimal layout (booking flow) */
.st-header--minimal {
    background: #fff;
    box-shadow: 0 1px 10px rgba(0,0,0,0.06);
    padding: 4px 0;
}
.st-minimalbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    max-width: var(--st-container);
    margin: 0 auto;
    min-height: 56px;
}
.st-minimalbar .st-brand__logo {
    max-height: 36px;
    width: auto;
}
.st-minimalbar__close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(229,231,235,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--st-text-light);
    font-size: 1rem;
    transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
}
.st-minimalbar__close:hover {
    background: rgba(225,29,46,0.08);
    color: var(--st-dark);
    border-color: rgba(225,29,46,0.2);
    transform: translateY(-1px);
}
.st-bookingpage {
    padding-top: 60px;
}
.st-footer--minimal { background: transparent; padding: 0; }
.st-footer--minimal .st-footer__bottom { color: var(--st-text-light); border-top: none; }
.st-footer--minimal .st-footer__bottom i { color: var(--st-primary); margin-right: 4px; }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .st-hero__inner { grid-template-columns: 1fr; }
    .st-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .st-footer__grid { grid-template-columns: 1fr 1fr; }
}

/* Extra Large Screens (1280px+) - Desktop */
@media (min-width: 1280px) {
    .st-container { padding: 0 40px; }
    .st-form { padding: 32px; gap: 24px; }
    .st-booking-options { gap: 16px; }
    .st-cab-options { gap: 16px; }
}

/* Large Tablets & Small Desktops (992px - 1279px) */
@media (max-width: 1279px) {
    .st-bookingpage__inner { padding: 0 16px; }
    .st-form { padding: 24px; gap: 18px; }
}

/* Tablets & Medium Devices (768px - 991px) */
@media (max-width: 991px) {
    body { padding-top: 60px; }
    .st-hero__inner { grid-template-columns: 1fr; }
    .st-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .st-footer__grid { grid-template-columns: 1fr 1fr; }
    .st-map-row { grid-template-columns: 1fr; }
    .st-form__row { grid-template-columns: 1fr; }
    .st-booking-options { display: grid; grid-template-columns: 1fr !important; gap: 12px; }
    .st-booking-option, .st-cab-option { min-width: 0; }
    .st-cab-options { display: grid; grid-template-columns: 1fr !important; gap: 12px; }
    .st-booking-step-tab { min-width: 100px; padding: 10px 12px; font-size: .9rem; }
    .st-bookingpage { padding: 20px 0; }
    .st-form { padding: 18px; gap: 14px; }
    .st-form-main { flex-direction: column; }
    .st-form-side { display: none; }
    .st-form-content { padding: 18px; box-shadow: 0 10px 24px rgba(18,24,40,0.06); }
    .st-form-body { max-height: calc(100vh - 420px); }

    /* Make booking form act like a full-page card */
    .st-bookingpage__inner { display: flex; flex-direction: column; justify-content: center; align-items: stretch; }
    .st-form {
        width: 100%;
        max-width: 100%;
        padding: 0; /* inner areas get padded */
        border-radius: 18px;
        background: transparent;
        box-shadow: none;
        position: relative;
        min-height: calc(100vh - 160px);
        display: flex;
        align-items: stretch;
        justify-content: center;
        overflow: visible;
    }

    .st-form-main { display: flex; flex-direction: column; width: 100%; max-width: 100%; margin: 0 auto; border-radius: 18px; overflow: hidden; }
    .st-form-content { flex: 1 1 auto; background: linear-gradient(180deg,#fff,#fffaf8); padding: 28px; box-shadow: 0 18px 40px rgba(18,24,40,0.06); position: relative; display:flex; flex-direction:column; }
    .st-form-side { width: 100%; background-image: url('/images/booking-illustration.png'); background-size: cover; background-position: center; background-repeat: no-repeat; }
    .st-form-side[aria-hidden="true"] { filter: saturate(.95) contrast(.98); }

    /* Header (sticky inside the scrollable body) */
    .st-form-header { position: sticky; top: 0; z-index: 6; background: transparent; padding-bottom: 8px; }
    .st-form-body { overflow: auto; flex: 1 1 auto; padding-right: 6px; }
    .st-form-body .st-booking-step { margin-bottom: 10px; }

    .st-section__head { margin-bottom: 8px; }
    .st-booking-intro { background: transparent; margin-bottom: 8px; color: var(--st-text-light); }
    .st-booking-steps { margin-bottom: 8px; }

    /* Slightly larger tabs inside the card */
    .st-booking-step-tab { padding: 10px 12px; border-radius: 999px; }

    /* Make actions and highlights sit below the main area */
    .st-form-actions { padding: 18px 28px; background: transparent; }
    .st-map { height: 160px; }
    .st-form-actions { display: flex; flex-direction: column; align-items: stretch; gap: 12px; margin-top: 10px; }
    .st-form-actions .st-btn { width: 100%; min-width: 0; }

    /* Force stacked mobile form layout on narrow tablets */
    .st-form { min-height: auto; align-items: stretch; justify-content: stretch; }
    .st-form-main { width: 100%; max-width: 100%; }
    .st-form-content { width: 100%; max-width: 100%; }
    .st-form-body { max-height: none; overflow: visible; }
    .st-map-row { grid-template-columns: 1fr !important; gap: 14px !important; }
    .st-map, .st-route-summary, .st-fare-estimate { width: 100% !important; min-width: 0; }
    .st-route-summary { padding: 14px 16px; }
    .st-fare-estimate { padding: 14px 16px; }
    .st-form-actions { width: 100%; flex-direction: column !important; align-items: stretch !important; gap: 12px !important; }
}

/* Small Tablets (640px - 767px) */
@media (max-width: 767px) {
    body { padding-top: 60px; font-size: 15px; }
    .st-contact-float {
        position: fixed !important;
        top: auto !important;
        bottom: 16px !important;
        left: auto !important;
        right: 16px !important;
        align-items: flex-end;
        z-index: 10010 !important;
        display: flex !important;
        pointer-events: auto !important;
        transform: translateZ(0);
    }
    .st-contact-float__button {
        min-width: 64px !important;
    }
    .st-contact-float__panel {
        position: absolute !important;
        top: auto !important;
        bottom: calc(100% + 10px) !important;
        right: 0 !important;
        left: auto !important;
        width: min(260px, calc(100vw - 32px)) !important;
    }
}

@media (max-width: 640px) {
    .st-contact-float {
        right: 12px !important;
        bottom: 12px !important;
        align-items: flex-end;
        z-index: 10020 !important;
    }
    .st-contact-float__button {
        padding: 10px 14px !important;
        font-size: 0.92rem !important;
    }
    .st-contact-float__panel {
        width: min(220px, calc(100vw - 24px)) !important;
        bottom: calc(100% + 8px) !important;
    }
}
    
    /* Hero buttons: keep side by side on mobile */
    .st-hero__actions {
        flex-wrap: nowrap;
        gap: 10px;
    }
    .st-hero__actions .st-btn {
        flex: 1 1 50%;
        min-width: 0;
    }
    
    /* Navigation */
    .st-navbar__toggle {
        display: block;
        width: 42px;
        height: 42px;
        border: 1px solid var(--st-border);
        border-radius: 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        color: var(--st-dark);
        cursor: pointer;
        transition: background .2s ease, border-color .2s ease;
    }
    .st-navbar__toggle:hover { background: rgba(225, 29, 46, 0.05); border-color: rgba(225,29,46,0.2); }
    .st-navbar__menu {
        position: absolute; top: 100%; left: 0; right: 0; width: 100%; background: #fff;
        flex-direction: column; align-items: stretch; padding: 18px 16px; gap: 14px;
        box-shadow: 0 14px 36px rgba(0,0,0,.12);
        display: none;
        max-height: calc(100vh - 64px);
        overflow-y: auto;
        box-sizing: border-box;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }
    .st-navbar__menu.open { display: flex; }
    .st-navbar__links { flex-direction: column; gap: 8px; align-items: stretch; }
    .st-navbar__links a {
        padding: 12px 0;
        display: block;
        width: 100%;
        color: var(--st-dark);
    }
    .st-navbar__menu:not(.open) .st-navbar__cta { display: none; }
    .st-navbar__menu.open .st-navbar__cta { display: flex; }
    .st-navbar__cta { width: 100%; margin: 0; }
    .st-navbar__cta .st-btn { width: 100%; justify-content: center; }
    .st-navitem--mega { flex-direction: column; align-items: stretch; }
    .st-navitem__trigger { justify-content: space-between; width: 100%; padding: 10px 0; }
    .st-megamenu {
        position: static; transform: none; box-shadow: none; border: none; padding: 6px 0 10px 12px;
        min-width: 0; display: none; opacity: 1; visibility: visible; pointer-events: auto;
        flex-direction: column; gap: 12px;
    }
    .st-navitem--mega.open .st-megamenu { display: flex; }
    .st-navitem--mega.open .st-navitem__trigger i { transform: rotate(180deg); }
    .st-megamenu__cols { flex-direction: column; gap: 12px; }
    .st-megamenu__panel { display: none; }
    
    /* Hero */
    .st-hero { padding: 40px 0; }
    .st-hero__inner { gap: 28px; }
    .st-hero__copy h1 { font-size: 2rem; line-height: 1.2; }
    .st-hero__stats { gap: 18px; flex-wrap: wrap; }
    .st-hero__slides { min-height: 260px; }
    .st-hero__slide { transform: translateY(18px); }
    .st-hero__slide.active { transform: translateY(0); }
    .st-hero__dots { margin: 20px 0 28px; }
    .st-hero__slide img { max-height: 260px; }
    
    /* Forms & Booking */
    .st-grid--4 { grid-template-columns: 1fr; }
    .st-form { padding: 16px; gap: 14px; }
    .st-bookingpage { padding: 16px 0; }
    .st-bookingpage__inner { padding: 0 12px; }
    .st-booking-intro { font-size: .92rem; margin-bottom: 6px; }
    .st-booking-steps { gap: 8px; margin: 8px 0 12px; flex-wrap: wrap; }
    .st-booking-step-tab { padding: 10px 8px; font-size: .88rem; min-width: 90px; }
    .st-booking-options { grid-template-columns: 1fr; gap: 10px; }
    .st-booking-option { padding: 12px 10px; gap: 10px; }
    .st-booking-option__title { font-size: .95rem; }
    .st-booking-option__subtitle { font-size: .88rem; }
    .st-cab-options { grid-template-columns: 1fr; gap: 10px; }
    .st-cab-option { padding: 12px 10px; gap: 8px; }
    
    /* Form elements */
    .st-form__row { grid-template-columns: 1fr; gap: 12px; }
    .st-form--compact { gap: 10px; }
    .st-field { margin-bottom: 0; }
    .st-field label { font-size: .9rem; }
    .st-input, .st-select, input[type="text"], input[type="email"], input[type="tel"], select {
        padding: 11px 12px; font-size: 16px; min-height: 44px;
    }
    .st-btn { padding: 12px 18px; font-size: .9rem; min-height: 44px; }
    .st-btn--sm { padding: 10px 14px; font-size: .85rem; min-height: 40px; }
    .st-form-actions { display: flex; flex-direction: column; align-items: stretch; gap: 12px; margin-top: 12px; }
    .st-form-actions .st-btn { width: 100%; min-width: 0; }
    
    /* Maps & Route */
    .st-map { height: 150px; }
    .st-map-ui { padding: 10px 8px; gap: 8px; margin-bottom: 10px; }
    .st-map-ui__copy { flex: 1; }
    .st-map-ui__copy strong { font-size: .9rem; margin-bottom: 2px; }
    .st-map-ui__copy span { font-size: .85rem; }
    .st-map-row { gap: 8px; }
    .st-route-summary { flex-direction: column; gap: 10px; padding: 10px 12px; font-size: .9rem; }
    .st-route-summary span { display: flex; align-items: center; gap: 8px; }
    .st-fare-estimate { padding: 10px 12px; font-size: .9rem; }
    .st-fare-note { color: var(--st-text-light); font-size: .85rem; margin-top: 8px; }
    
    /* Highlights */
    .st-booking-highlights { grid-template-columns: 1fr; gap: 10px; padding: 10px 0 0; font-size: .82rem; }
    .st-booking-highlights div { gap: 6px; }
    
    /* Footer */
    .st-footer__grid { grid-template-columns: 1fr; }
    .st-cta__inner { flex-direction: column; text-align: center; }
    .st-form-actions { display: flex; flex-direction: column; align-items: stretch; gap: 10px; margin-top: 8px; }
    .st-form-actions .st-btn { width: 100%; min-width: 0; }
}

/* Small Phones (480px - 639px) */
@media (max-width: 639px) {
    :root { font-size: 15px; }
    body { padding-top: 56px; }
    
    /* Header */
    .st-navbar__inner { padding: 12px 12px; }
    .st-navbar__menu {
        right: 0;
        left: 0;
        width: 100%;
        padding: 14px 12px;
        border-radius: 0 0 18px 18px;
        box-shadow: 0 10px 20px rgba(0,0,0,.06);
    }
    .st-navbar__links { gap: 10px; }
    .st-navbar__links a { padding: 12px 0; }
    .st-navbar__menu.open { max-height: calc(100vh - 56px); }
    .st-hero__inner { gap: 20px; }
    .st-hero__slides { min-height: 220px; }
    .st-hero__slide img { max-height: 220px; }
    .st-brand { font-size: 1.1rem; gap: 6px; }
    .st-brand__logo { max-height: 36px; }
    .st-brand__icon { width: 36px; height: 36px; font-size: 1rem; }
    
    /* Booking */
    .st-bookingpage { padding: 14px 0; }
    .st-bookingpage__inner { padding: 0 10px; max-width: 100%; }
    .st-section__head h2 { font-size: 1.6rem; line-height: 1.2; }
    .st-booking-intro { font-size: .88rem; line-height: 1.4; }
    .st-form { padding: 14px; gap: 12px; border-radius: 10px; width: 100%; max-width: 100%; flex: 1 1 100%; min-width: 0; }
    .st-form-main { display: flex; flex-direction: column !important; width: 100%; max-width: 100%; min-width: 0; }
    .st-form-content { width: 100%; max-width: 100%; min-width: 0; }
    .st-bookingpage__inner { display: flex; flex-direction: column; align-items: stretch; }
    .st-section__head { width: 100%; }
    .st-form-side { display: none !important; }
    
    /* Booking Options */
    .st-booking-options { display: grid; grid-template-columns: 1fr !important; gap: 10px; margin: 10px 0; }
    .st-booking-option { width: 100%; min-width: 0; padding: 12px 10px; gap: 8px; }
    .st-booking-option__content { width: 100%; }
    .st-booking-option__title { font-size: .9rem; }
    .st-booking-option__subtitle { font-size: .82rem; }
    
    /* Cab Options */
    .st-cab-options { display: grid; grid-template-columns: 1fr !important; gap: 10px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--st-border); }
    .st-cab-option { width: 100%; min-width: 0; padding: 12px 10px; gap: 8px; }
    .st-cab-option__content { width: 100%; }
    .st-cab-option__title { font-size: .9rem; }
    .st-cab-option__subtitle { font-size: .82rem; }
    .st-cab-option__seats { font-size: .82rem; }
    
    /* Steps */
    .st-booking-steps { gap: 6px; margin: 6px 0 10px; }
    .st-booking-step-tab { padding: 8px 6px; font-size: .82rem; min-width: 80px; }
    
    /* Form Fields */
    .st-form__row { gap: 10px; }
    .st-input, .st-select, input[type="text"], input[type="email"], input[type="tel"], select {
        padding: 10px 10px; font-size: 16px; min-height: 42px; border-radius: 10px;
    }
    .st-field label { font-size: .88rem; font-weight: 600; }
    
    /* Buttons */
    .st-btn { padding: 11px 16px; font-size: .88rem; min-height: 42px; gap: 6px; }
    .st-btn i { font-size: 0.9rem; }
    .st-btn--ghost.st-btn--sm { padding: 8px 10px; font-size: .8rem; min-height: 38px; }
    
    /* Maps */
    .st-map { height: 120px; }
    .st-map-ui { padding: 8px 6px; gap: 6px; margin-bottom: 8px; border-radius: 10px; }
    .st-map-ui__copy strong { font-size: .88rem; }
    .st-map-ui__copy span { font-size: .8rem; }
    
    /* Route Summary */
    .st-route-summary { padding: 10px; font-size: .88rem; min-width: auto; gap: 8px; }
    .st-fare-estimate { padding: 10px; font-size: .88rem; }
    
    /* Highlights */
    .st-booking-highlights { gap: 8px; padding: 8px 0 0; font-size: .78rem; }
    .st-booking-highlights div { gap: 4px; }
    .st-booking-highlights i { font-size: .85rem; }
    
    /* Pricing Info */
    #tripPricingInfo { font-size: .88rem; }
    
    /* Form Actions */
    .st-form-actions { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 8px; margin-top: 6px; }
    .st-form-actions .st-btn { width: 100%; }
    
    /* General Text */
    strong { font-weight: 700; }
    .st-section__subhead { font-size: .88rem; }
    .st-required { color: var(--st-primary); }
}

/* Extra Small Phones (< 480px) */
@media (max-width: 479px) {
    :root { font-size: 14px; }
    body { padding-top: 56px; margin: 0; }
    
    /* Container */
    .st-container, .st-bookingpage__inner { max-width: 100%; padding: 0 8px; }
    
    /* Header */
    .st-navbar__inner { padding: 10px 10px; }
    .st-brand { font-size: 1rem; }
    .st-brand__logo { max-height: 32px; }
    .st-brand__icon { width: 32px; height: 32px; font-size: .9rem; }
    .st-navbar__cta { display: none; }

    /* Hero */
    .st-hero__inner { gap: 16px; }
    .st-hero__slides { min-height: 190px; }
    .st-hero__slide { transform: translateY(20px); }
    .st-hero__slide.active { transform: translateY(0); }
    .st-hero__dots { margin: 22px 0 30px; }
    .st-hero__slide img { max-height: 190px; }

    /* Booking */
    .st-bookingpage { padding: 12px 0; }
    .st-section__head { margin-bottom: 12px; }
    .st-section__head h2 { font-size: 1.4rem; line-height: 1.1; margin: 0 0 4px; }
    .st-eyebrow { font-size: .78rem; }
    .st-form { padding: 14px; gap: 14px; margin: 0; }
    
    /* Booking Options */
    .st-booking-options { gap: 10px; margin: 10px 0; }
    .st-booking-option { padding: 12px 10px; gap: 8px; border-radius: 10px; }
    .st-booking-option__content { gap: 5px; }
    .st-booking-option__title { font-size: .88rem; }
    .st-booking-option__subtitle { font-size: .78rem; line-height: 1.3; }
    
    /* Cab Options */
    .st-cab-options { gap: 10px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--st-border); }
    .st-cab-option { padding: 12px 10px; gap: 6px; border-radius: 10px; }
    .st-cab-option__title { font-size: .88rem; }
    .st-cab-option__subtitle { font-size: .76rem; }
    .st-cab-option__seats { font-size: .76rem; }
    
    /* Step Tabs */
    .st-booking-steps { gap: 4px; margin: 4px 0 8px; }
    .st-booking-step-tab { padding: 7px 4px; font-size: .75rem; min-width: 70px; border-radius: 8px; }
    
    /* Form Fields */
    .st-form__row { gap: 8px; }
    .st-field { margin-bottom: 0; }
    .st-field label { font-size: .84rem; margin-bottom: 4px; display: block; }
    .st-input, .st-select, input[type="text"], input[type="email"], input[type="tel"], select {
        padding: 9px 8px; font-size: 16px; min-height: 40px; border-radius: 8px; width: 100%;
    }
    input:focus, select:focus { outline: 2px solid var(--st-primary); outline-offset: 0; }
    
    /* Buttons */
    .st-btn { padding: 10px 14px; font-size: .82rem; min-height: 40px; width: 100%; }
    .st-btn--ghost.st-btn--sm { padding: 8px 10px; font-size: .76rem; min-height: 36px; }
    .st-btn i { font-size: .8rem; }
    
    /* Maps */
    .st-map { height: 100px; border-radius: 8px; }
    .st-map-ui { padding: 6px; gap: 4px; margin-bottom: 8px; border-radius: 8px; }
    .st-map-ui__copy strong { font-size: .82rem; margin-bottom: 2px; }
    .st-map-ui__copy span { font-size: .76rem; }
    
    /* Route Summary */
    .st-route-summary { flex-direction: column; gap: 6px; padding: 8px; font-size: .82rem; }
    .st-fare-estimate { padding: 8px; font-size: .82rem; }
    .st-fare-note { font-size: .74rem; margin-top: 4px; }
    
    /* Highlights */
    .st-booking-highlights { gap: 6px; padding: 6px 0 0; font-size: .74rem; grid-template-columns: 1fr; }
    .st-booking-highlights div { gap: 4px; }
    .st-booking-highlights i { font-size: .8rem; }
    
    /* Pricing Info */
    #tripPricingInfo { font-size: .82rem; line-height: 1.3; }
    
    /* Form Actions */
    .st-form-actions { flex-direction: column; gap: 6px; margin-top: 4px; }
    .st-form-actions .st-btn { min-width: auto; width: 100%; }
    .st-map-row { grid-template-columns: 1fr !important; }
    .st-map, .st-route-summary, #fareEstimate { width: 100% !important; }
    
    /* General */
    .st-error { font-size: .72rem; }
    .st-alert { padding: 8px 10px; font-size: .82rem; border-radius: 8px; }
    
    /* Rental Mode */
    .st-rental-mode { gap: 10px; margin: 8px 0; }
    .st-radio { font-size: .84rem; gap: 4px; }
    .st-radio input { margin: 0; }
}

/* Mobile action buttons should stack vertically on small screens */
@media (max-width: 639px) {
    .st-form-actions {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        margin-top: 10px !important;
    }
    .st-form-actions .st-btn { width: 100%; }
}

@media (max-width: 479px) {
    .st-form-actions {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        margin-top: 8px !important;
    }
    .st-form-actions .st-btn { width: 100%; }
}

/* Debug output for route pricing */
.st-route-debug { background: rgba(0,0,0,0.03); border-radius: 8px; padding: 8px 10px; color: var(--st-text-light); font-size: .82rem; }

/* Booking confirmation */
@keyframes stConfirmScaleIn {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.st-confirm { background: linear-gradient(180deg, #fff5f5 0%, #ffffff 60%); min-height: 100vh; display: flex; align-items: center; padding: 48px 20px; }
.st-confirm__inner { max-width: 460px; margin: 0 auto; width: 100%; }
.st-confirm-card { background: #fff; border-radius: 20px; box-shadow: 0 20px 40px rgba(20, 20, 20, 0.1); overflow: hidden; }
.st-confirm-hero { background: linear-gradient(135deg, var(--st-primary) 0%, var(--st-primary-dark) 100%); padding: 32px 24px 44px; text-align: center; }

@media (max-width: 991px) {
    .st-confirm__inner { max-width: 720px; padding: 0 14px; }
    .st-confirm { padding: 36px 16px; }
}

@media (max-width: 767px) {
    .st-confirm__inner { max-width: 100%; padding: 0 12px; }
    .st-confirm { padding: 28px 12px; }
}

@media (max-width: 479px) {
    .st-confirm__inner { max-width: 100%; padding: 0 10px; }
    .st-confirm { padding: 22px 10px; }
}

.st-confirm-hero__icon {
    width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,0.18);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
    animation: stConfirmScaleIn .5s ease-out;
}
.st-confirm-hero__icon i { font-size: 28px; color: #fff; }
.st-confirm-hero h1 { color: #fff; font-size: 1.3rem; font-weight: 700; margin: 0 0 6px; }
.st-confirm-hero p { color: rgba(255,255,255,0.88); font-size: .88rem; margin: 0; line-height: 1.5; }
.st-confirm-ref {
    margin: -26px 18px 0; background: #fff; border: 1px solid var(--st-border); border-radius: 14px;
    padding: 14px 16px; display: flex; align-items: center; justify-content: space-between;
    position: relative; box-shadow: 0 8px 20px rgba(20,20,20,0.06);
}
.st-confirm-ref__label { display: block; font-size: .7rem; color: var(--st-text-light); text-transform: uppercase; letter-spacing: .04em; }
.st-confirm-ref__value { display: block; font-size: 1.05rem; font-weight: 700; color: var(--st-primary); font-family: 'Courier New', monospace; margin-top: 2px; }
.st-confirm-badge { background: #eaf6ee; color: #1f7a43; font-size: .76rem; font-weight: 600; padding: 5px 12px; border-radius: 999px; white-space: nowrap; }
.st-confirm-route { padding: 20px 22px 6px; }
.st-confirm-route__stops { position: relative; padding-left: 20px; min-width: 0; }
.st-confirm-route__stops--multi::before {
    content: ''; position: absolute; left: 4px; top: 6px; bottom: 6px;
    width: 1px; background: var(--st-border);
}
.st-confirm-route__stop { position: relative; margin-bottom: 18px; }
.st-confirm-route__stop:last-child { margin-bottom: 0; }
.st-confirm-route__stop::before {
    content: ''; position: absolute; left: -20px; top: 5px;
    width: 9px; height: 9px; border-radius: 50%; background: var(--st-primary);
}
.st-confirm-route__stop--end::before { background: var(--st-text-light); }
.st-confirm-route__stop-label { display: block; font-size: .72rem; color: var(--st-text-light); }
.st-confirm-route__stop-value { display: block; font-size: .95rem; font-weight: 600; color: var(--st-dark); margin-top: 2px; }
.st-confirm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 14px 22px; }
.st-confirm-detail { background: var(--st-muted); border-radius: 10px; padding: 10px 12px; min-width: 0; }
.st-confirm-detail__label { display: flex; align-items: center; gap: 5px; font-size: .72rem; color: var(--st-text-light); }
.st-confirm-detail__value { display: block; font-size: .92rem; font-weight: 600; color: var(--st-dark); margin-top: 4px; }
.st-confirm-detail__value--wrap { word-break: break-all; font-size: .82rem; }
.st-confirm-notice {
    margin: 4px 22px 18px; background: #fff8e1; border: 1px solid #ffe3a3; border-radius: 10px;
    padding: 12px 14px; display: flex; gap: 8px; font-size: .84rem; color: #8a6d1a; line-height: 1.5;
}
.st-confirm-notice i { color: #c9971e; flex-shrink: 0; margin-top: 2px; }
.st-confirm-actions { display: flex; gap: 12px; padding: 0 22px 24px; flex-wrap: wrap; justify-content: center; }
.st-confirm-actions .st-btn { flex: 0 1 auto; min-width: 120px; padding: 12px 22px; font-size: .95rem; }
.st-confirm-actions .st-btn.st-btn--ghost { min-width: 110px; }
.st-confirm-footnote { text-align: center; color: var(--st-text-light); font-size: .85rem; margin-top: 24px; }

@media (max-width: 479px) {
    .st-confirm { padding: 24px 12px; }
    .st-confirm-hero { padding: 26px 18px 38px; }
    .st-confirm-hero h1 { font-size: 1.15rem; }
    .st-confirm-ref { margin: -24px 12px 0; padding: 12px 14px; }
    .st-confirm-route { padding: 18px 16px 4px; }
    .st-confirm-grid { grid-template-columns: 1fr; padding: 12px 16px; gap: 8px; }
    .st-confirm-notice { margin: 4px 16px 16px; }
    .st-confirm-actions { padding: 0 16px 20px; flex-direction: column; }
    .st-confirm-actions .st-btn { min-width: 0; }
}
