:root {
    --brand-blue: #364b5c;
    --brand-blue-dark: #212121;
    --brand-yellow: #faf3cc;
    --brand-accent: #f3723b;
    --brand-accent-dark: #e54750;
    --brand-text: #212121;
    --brand-muted: #666666;
    --panel-border: rgba(33, 33, 33, 0.08);
    --field-border: #d7dce5;
}

* {
    box-sizing: border-box;
}

body.bg-cover {
    margin: 0;
    font-family: "Encode Sans", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--brand-text);
    background: #f9fafc;
    overflow-x: hidden;
}

body.site-menu-open {
    overflow: hidden;
}

body.site-menu-open .mobile-sticky-actions {
    display: none !important;
}

img {
    max-width: 100%;
    height: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1020;
    background: rgba(255, 251, 239, 0.96);
    border-bottom: 1px solid rgba(54, 75, 92, 0.08);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
    backdrop-filter: blur(12px);
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 88px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.site-logo-image {
    display: block;
    width: auto;
    height: 48px;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.site-nav-panel {
    display: contents;
}

.site-nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
}

.site-nav a {
    position: relative;
    color: var(--brand-text);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    padding: 6px 0;
}

.site-nav-top,
.site-nav-meta,
.site-nav-close {
    display: none;
}

.site-nav a.active {
    color: #4e8ff0;
}

.site-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -11px;
    height: 3px;
    border-radius: 999px;
    background: #4e8ff0;
}

.site-header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.site-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-text);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.site-phone i {
    color: var(--brand-blue);
}

.site-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 126px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand-accent) 0%, var(--brand-accent-dark) 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(229, 71, 80, 0.2);
}

.mobile-sticky-actions {
    display: none;
}

.mobile-sticky-action {
    text-decoration: none;
}

.site-nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(54, 75, 92, 0.16);
    border-radius: 12px;
    background: #fff;
    color: var(--brand-text);
    font-size: 18px;
}

.hero-home {
    position: relative;
    min-height: 100vh;
    padding: 52px 0;
    background:
        linear-gradient(90deg, rgba(12, 24, 36, 0.84) 0%, rgba(12, 24, 36, 0.62) 38%, rgba(12, 24, 36, 0.34) 62%, rgba(12, 24, 36, 0.58) 100%),
        url("https://images.unsplash.com/photo-1494976388531-d1058494cdd8?auto=format&fit=crop&w=1800&q=80") center center / cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.28)),
        radial-gradient(circle at 72% 52%, rgba(243, 114, 59, 0.16), transparent 24%);
    pointer-events: none;
}

.hero-shell {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 140px);
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 420px);
    align-items: center;
    gap: 56px;
}

.hero-copy {
    max-width: 560px;
    padding-top: 48px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff3d8;
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
}

.hero-title {
    margin: 16px 0 14px;
    font-size: clamp(2.8rem, 4.8vw, 4.6rem);
    line-height: 1.02;
    font-weight: 500;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.hero-title span {
    color: #ffd6b8;
}

.hero-text {
    max-width: 540px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    line-height: 1.7;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}

.hero-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 20px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.hero-action:hover {
    transform: translateY(-1px);
}

.hero-action-primary {
    background: linear-gradient(90deg, #f08b55 0%, #d85a43 100%);
    color: #fff;
    box-shadow: 0 14px 30px rgba(216, 90, 67, 0.28);
}

.hero-action-secondary {
    background: rgba(255, 255, 255, 0.92);
    color: #243342;
    box-shadow: 0 14px 30px rgba(4, 10, 18, 0.16);
}

.hero-action-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    font-size: 16px;
}

.booking-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    padding: 14px 14px 18px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 70px rgba(5, 11, 23, 0.32);
    color: var(--brand-text);
}

.booking-feedback {
    margin-bottom: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
}

.booking-feedback.is-error {
    border: 1px solid #f5c2c7;
    background: #fff1f2;
    color: #b42318;
}

.booking-feedback.is-success {
    border: 1px solid #b7ebc6;
    background: #ecfdf3;
    color: #027a48;
}

.booking-loader {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(3px);
}

.booking-loader-spinner {
    width: 42px;
    height: 42px;
    border: 4px solid rgba(229, 71, 80, 0.18);
    border-top-color: var(--brand-accent-dark);
    border-radius: 50%;
    animation: bookingSpin 0.8s linear infinite;
}

.booking-loader-text {
    font-size: 13px;
    font-weight: 700;
    color: #101828;
    text-align: center;
}

@keyframes bookingSpin {
    to {
        transform: rotate(360deg);
    }
}

.booking-tabs .nav-link {
    min-height: 42px;
    border-radius: 8px;
    border: 1px solid #dde2ea;
    background: #fff;
    color: #475467;
    font-size: 13px;
    font-weight: 600;
}

.booking-tabs .nav-link.active {
    border-color: transparent;
    background: linear-gradient(90deg, var(--brand-accent) 0%, var(--brand-accent-dark) 100%);
    box-shadow: 0 10px 18px rgba(229, 71, 80, 0.22);
}

.trip-toggle {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-bottom: 16px;
}

.trip-toggle .form-check {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 20px;
    margin: 0;
}

.trip-toggle .form-check-input {
    width: 16px;
    height: 16px;
    margin: 0;
    border: 1px solid #7a808a;
}

.trip-toggle .form-check-input:checked {
    background-color: var(--brand-accent-dark);
    border-color: var(--brand-accent-dark);
    box-shadow: 0 0 0 0.2rem rgba(229, 71, 80, 0.16);
}

.trip-toggle .form-check-label {
    font-size: 14px;
    font-weight: 500;
    color: #111827;
}

.form-label {
    margin-bottom: 3px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #111827;
}

.form-control,
.form-select {
    min-height: 33px;
    padding: 7px 12px;
    border: 1px solid var(--field-border);
    border-radius: 5px;
    background-color: #fff;
    color: #111827;
    font-size: 12px;
    line-height: 1.2;
    box-shadow: none;
}

.form-control::placeholder {
    color: #98a2b3;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(15, 125, 218, 0.45);
    box-shadow: 0 0 0 0.16rem rgba(15, 125, 218, 0.14);
}

.form-control.field-error,
.form-select.field-error {
    border-color: #f04438;
    box-shadow: 0 0 0 3px rgba(240, 68, 56, 0.12);
}

.input-with-dot {
    position: relative;
    padding-left: 18px;
}

.input-with-dot::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 2px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transform: translateY(-50%);
}

.input-with-dot-from::before {
    background: #2ea0ff;
}

.input-with-dot-to::before {
    background: #ffc107;
}

.outstation-email-row {
    display: block;
}

.section-title {
    margin-bottom: 8px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #111827;
}

.cab-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
}

.cab-card {
    padding: 4px 4px 6px;
    border: 1px solid #e1e6ee;
    border-radius: 6px;
    background: #fff;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.cab-card:hover,
.cab-card.active {
    border-color: var(--brand-accent);
    box-shadow: 0 10px 20px rgba(229, 71, 80, 0.12);
    transform: translateY(-1px);
}

.cab-card.field-error {
    border-color: #f04438;
    box-shadow: 0 0 0 3px rgba(240, 68, 56, 0.12);
}

.cab-card .rate-tag,
.cab-card .availability {
    margin-bottom: 3px;
    font-size: 9px;
    font-weight: 700;
    color: #f2a600;
}

.cab-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
}

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

.cab-name {
    margin-top: 3px;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #344054;
}

.action-btn {
    min-height: 36px;
    border: none;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--brand-accent) 0%, var(--brand-accent-dark) 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.action-btn:hover,
.action-btn:focus,
.action-btn:active {
    background: linear-gradient(90deg, var(--brand-accent-dark) 0%, #d93f49 100%);
    color: #fff;
}

.action-btn.is-loading {
    opacity: 0.92;
    pointer-events: none;
}

.action-btn-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.action-btn-spinner {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.34);
    border-top-color: #fff;
    border-radius: 50%;
    animation: bookingSpin 0.8s linear infinite;
}

.note {
    font-size: 11px;
    font-weight: 600;
    color: #c2410c;
    text-align: center;
}

.estimate-card {
    border: 1px solid var(--panel-border);
    border-radius: 12px;
    padding: 16px;
    background: #fff;
}

.booking-step {
    min-height: 100%;
}

.booking-confirm-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.booking-confirm-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(243, 114, 59, 0.12);
    color: var(--brand-accent-dark);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.booking-confirm-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 14px;
}

.booking-summary-item {
    padding: 10px 12px;
    border: 1px solid #e4e7ec;
    border-radius: 10px;
    background: #f8fafc;
}

.booking-summary-item span {
    display: block;
    margin-bottom: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #667085;
}

.booking-summary-item strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #101828;
}

.booking-summary-item-wide {
    grid-column: 1 / -1;
}

.route-title,
.estimate-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}

.route-meta {
    margin-bottom: 10px;
    font-size: 12px;
    color: #667085;
}

.estimate-price {
    margin: 8px 0 14px;
    font-size: 26px;
    font-weight: 800;
    text-align: center;
    color: #e11d48;
}

.estimate-table {
    border: 1px solid #e4e7ec;
    border-radius: 8px;
    overflow: hidden;
}

.estimate-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    font-size: 12px;
    color: #344054;
    border-bottom: 1px solid #eaecf0;
}

.estimate-row:last-child {
    border-bottom: none;
}

#editBookingBtn {
    border-radius: 8px;
}

.booking-confirm-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    gap: 10px;
    margin-top: 16px;
}

@media (max-width: 991.98px) {
    .hero-home {
        padding: 28px 0 42px;
    }

    .hero-shell {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-copy {
        max-width: none;
        padding-top: 10px;
    }

    .hero-title {
        max-width: 620px;
    }

    .booking-card {
        max-width: none;
    }
}

@media (max-width: 575.98px) {
    .hero-home {
        padding: 18px 0 28px;
    }

    .hero-shell {
        gap: 20px;
    }

    .hero-title {
        font-size: 2.65rem;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-action {
        width: 100%;
        justify-content: center;
        font-size: 16px;
    }

    .booking-card {
        padding: 12px;
    }

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

    .booking-confirm-head,
    .booking-confirm-actions {
        grid-template-columns: 1fr;
        display: grid;
    }

    .booking-confirm-summary {
        grid-template-columns: 1fr;
    }
}

.homepage-section {
    padding: 72px 0;
    background: linear-gradient(180deg, #fffdf8 0%, #ffffff 100%);
    color: #101828;
}

.hero-home + .homepage-section,
.homepage-section + .homepage-section {
    border-top: 1px solid rgba(54, 75, 92, 0.06);
}

.trips-section {
    position: relative;
    background:
        radial-gradient(circle at top left, rgba(243, 114, 59, 0.1), transparent 28%),
        linear-gradient(180deg, #fffaf3 0%, #ffffff 100%);
    padding-top: 68px;
    overflow: hidden;
}

.trips-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 28px;
}

.trips-header-copy {
    max-width: 540px;
}

.trips-header h2 {
    margin: 0;
    font-size: clamp(2rem, 3.6vw, 2.9rem);
    font-weight: 700;
    color: #0f172a;
}

.trips-header-copy p {
    margin: 12px 0 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.7;
}

.trips-filter-card {
    min-width: min(100%, 470px);
    padding: 18px;
    border: 1px solid rgba(54, 75, 92, 0.09);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 22px 44px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(10px);
}

.trips-filter-bar {
    display: flex;
    align-items: center;
    gap: 14px;
}

.trips-filter-group {
    flex: 1;
}

.trips-filter-label {
    display: block;
    margin-bottom: 8px;
    color: #334155;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.trips-filter-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-top: 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, #fff1dc 0%, #ffe3d0 100%);
    color: var(--brand-accent-dark);
    font-size: 16px;
}

.trips-select {
    width: 100%;
    min-width: 176px;
    min-height: 52px;
    border: 1px solid #d6dde8;
    border-radius: 16px;
    background: #fffdf9;
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    box-shadow: none;
}

.popular-trips-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.trip-card {
    padding: 18px;
    border: 1px solid #ebe4d7;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 250, 244, 0.98) 100%);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.trip-card-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: #fff1dc;
    color: #b45309;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.trip-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.trip-card-head h3 {
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 700;
    color: #111827;
}

.trip-rate-line {
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
}

.trip-rate-line strong {
    color: #0f172a;
    font-size: 16px;
}

.trip-card-head img {
    width: 96px;
    height: 58px;
    object-fit: contain;
}

.trip-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.trip-metric {
    padding: 12px 10px;
    border: 1px solid #efe6da;
    border-radius: 16px;
    text-align: center;
    background: rgba(255, 255, 255, 0.78);
}

.trip-metric span {
    display: block;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.trip-metric strong {
    display: block;
    margin-top: 4px;
    color: #0f172a;
    font-size: 20px;
    font-weight: 700;
}

.trip-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 14px 0 0;
    padding: 9px 16px;
    border: 1px solid #f3d8bf;
    border-radius: 999px;
    background: #fff8ef;
    color: #7c2d12;
    font-size: 13px;
    font-weight: 600;
}

.trip-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    margin-top: 16px;
    border-radius: 16px;
    background: linear-gradient(90deg, #374b5c 0%, #243342 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
}

.trips-note {
    margin: 16px 0 0;
    text-align: center;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
}

.trips-empty {
    display: none;
    padding: 24px 20px;
    border: 1px dashed #d6c7b0;
    border-radius: 20px;
    background: rgba(255, 251, 245, 0.92);
    color: #475467;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
}

.fleet-section {
    background: linear-gradient(180deg, #fffaf3 0%, #ffffff 100%);
}

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

.section-heading-centered {
    text-align: center;
}

.section-heading-wide {
    max-width: 760px;
    margin-right: auto;
    margin-left: 0;
}

.section-kicker,
.section-route-label {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--brand-accent-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-heading h2,
.about-copy h2 {
    margin: 0;
    color: #111827;
    font-size: clamp(1.85rem, 3.7vw, 2.8rem);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.section-heading p {
    margin: 14px auto 0;
    margin-left: 0;
    max-width: 700px;
    color: #667085;
    font-size: 16px;
    line-height: 1.7;
}

.section-divider {
    display: inline-block;
    width: 72px;
    height: 8px;
    margin-top: 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand-accent) 0%, var(--brand-accent-dark) 100%);
}

.fleet-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 36px;
}

.fleet-filter {
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid #d8e0ea;
    border-radius: 999px;
    background: #fff;
    color: #314252;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.fleet-filter.active {
    border-color: transparent;
    background: linear-gradient(90deg, #374b5c 0%, #243342 100%);
    color: #fff;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.fleet-card {
    border: 1px solid #e6e8ec;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #fffaf4 100%);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.fleet-card-media {
    margin: 24px 24px 0;
    border-radius: 18px;
    background: linear-gradient(180deg, #f8fafc 0%, #fdf3e7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    padding: 18px;
}

.fleet-card-media img {
    max-width: 100%;
    max-height: 160px;
    object-fit: contain;
}

.fleet-card-body {
    padding: 18px 26px 28px;
}

.fleet-card-body h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.fleet-rate {
    margin-top: 8px;
    color: var(--brand-accent-dark);
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.mini-divider {
    display: block;
    width: 40px;
    height: 6px;
    margin: 16px auto 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand-accent) 0%, var(--brand-accent-dark) 100%);
}

.fleet-features {
    padding: 0;
    margin: 0;
    list-style: none;
    border-top: 1px solid #eaecf0;
}

.fleet-features li {
    display: grid;
    grid-template-columns: 28px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: #475467;
    font-size: 14px;
}

.fleet-features i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(90deg, #f2a13a 0%, var(--brand-accent) 100%);
    color: #fff;
}

.fleet-features strong {
    color: #475467;
    font-weight: 500;
}

.fleet-book-btn,
.route-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 50px;
    margin-top: 18px;
    border-radius: 16px;
    background: linear-gradient(90deg, #374b5c 0%, #243342 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: none;
}

.fleet-book-btn i {
    margin-left: 8px;
}

.packages-section {
    background: linear-gradient(180deg, #fffdf8 0%, #ffffff 100%);
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.package-card {
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #fffaf4 100%);
    border: 1px solid #e6e8ec;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.package-card-media img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.package-card-body {
    padding: 22px 20px 22px;
}

.package-card-body h3 {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.package-card-body p {
    min-height: 90px;
    margin: 0;
    color: #667085;
    font-size: 15px;
    line-height: 1.65;
}

.package-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
    color: var(--brand-accent-dark);
    font-weight: 700;
}

.package-card-footer a,
.packages-link,
.routes-link {
    color: #314252;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.section-cta-center {
    text-align: center;
    margin-top: 40px;
}

.about-section {
    background: linear-gradient(180deg, #fffaf3 0%, #ffffff 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 44px;
    align-items: center;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    background: #fff1dc;
    color: #8f4a16;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-copy p {
    margin: 22px 0 0;
    color: #344054;
    font-size: 16px;
    line-height: 1.7;
}

.about-visual {
    padding: 24px;
    border: 1px solid #ebe4d7;
    border-radius: 24px;
    background: linear-gradient(180deg, #fff6ea 0%, #ffffff 100%);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
}

.about-visual img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
    margin-top: 46px;
}

.feature-card {
    padding: 24px 22px;
    border: 1px solid #e6e8ec;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #fffaf4 100%);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.05);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fff1dc 0%, #ffe5cf 100%);
    color: var(--brand-accent-dark);
    box-shadow: none;
    font-size: 22px;
}

.feature-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 700;
}

.feature-card p {
    margin: 0;
    color: #667085;
    font-size: 16px;
    line-height: 1.6;
}

.routes-section {
    background: linear-gradient(180deg, #fffdf8 0%, #ffffff 100%);
    padding-top: 40px;
}

.section-heading-split {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.section-heading-split h2 span {
    color: var(--brand-accent);
}

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

.route-card {
    overflow: hidden;
    border: 1px solid #e6e8ec;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #fffaf4 100%);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.05);
}

.route-card-media {
    position: relative;
    display: block;
    height: 175px;
}

.route-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.route-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 18px 14px;
    background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.7) 100%);
}

.route-card-overlay h3 {
    margin: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.route-card-body {
    padding: 18px 18px 20px;
}

.route-meta-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
}

.route-meta-line strong {
    color: var(--brand-accent-dark);
}

.route-card-body p {
    margin: 0;
    color: #475467;
    font-size: 15px;
}

.route-book-btn {
    min-height: 44px;
    margin-top: 18px;
}

.route-pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.route-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 16px;
    border: 1px solid #e6e8ec;
    border-radius: 14px;
    background: #fffdf9;
    color: #425466;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(16, 24, 40, 0.04);
    transition: border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.route-pill:hover {
    border-color: rgba(243, 114, 59, 0.32);
    color: var(--brand-accent-dark);
    box-shadow: 0 8px 18px rgba(16, 24, 40, 0.08);
    transform: translateY(-1px);
}

.page-hero {
    padding: 72px 0 60px;
    background:
        radial-gradient(circle at top, rgba(243, 114, 59, 0.1), transparent 28%),
        linear-gradient(180deg, #fffdf4 0%, #ffffff 100%);
}

.page-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--brand-accent);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.page-hero h1 {
    max-width: 760px;
    margin: 0;
    color: var(--brand-text);
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-weight: 700;
}

.page-hero p {
    max-width: 720px;
    margin: 18px 0 0;
    color: var(--brand-muted);
    font-size: 17px;
    line-height: 1.65;
}

.seo-hero {
    padding: 96px 0 84px;
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.66)),
        linear-gradient(180deg, #20324a 0%, #101828 100%);
    background-position: center;
    background-size: cover;
    color: #fff;
}

.seo-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 420px);
    gap: 28px;
    align-items: center;
}

.seo-hero-copy h1 {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-size: clamp(2.2rem, 4.3vw, 4rem);
    line-height: 1.06;
    letter-spacing: -0.04em;
    font-weight: 700;
}

.seo-hero-copy p {
    max-width: 680px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    line-height: 1.7;
}

.seo-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.seo-chip {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.seo-hero-panel {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(8px);
}

.seo-hero-panel h2 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
}

.seo-hero-panel p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 16px;
    line-height: 1.7;
}

.seo-panel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.seo-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.65fr);
    gap: 24px;
}

.seo-content-main {
    display: grid;
    gap: 24px;
}

.seo-copy-card,
.seo-side-card {
    padding: 28px;
    border: 1px solid #e4e7ec;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
}

.seo-copy-card h2,
.seo-side-card h3 {
    margin: 0 0 14px;
    color: #0f172a;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.15;
}

.seo-copy-card p,
.seo-side-card p {
    margin: 0;
    color: #475467;
    font-size: 16px;
    line-height: 1.8;
}

.seo-check-list {
    display: grid;
    gap: 12px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.seo-check-list li {
    position: relative;
    padding-left: 26px;
    color: #475467;
    font-size: 15px;
    font-weight: 600;
}

.seo-check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand-accent) 0%, var(--brand-accent-dark) 100%);
}

.seo-cab-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.seo-cab-card {
    padding: 12px 12px 14px;
    border: 1px solid #d9dce2;
    border-radius: 10px;
    background: #fff;
    text-align: center;
    box-shadow: 0 8px 18px rgba(16, 24, 40, 0.05);
}

.seo-cab-rate {
    color: var(--brand-accent);
    font-size: 12px;
    font-weight: 800;
}

.seo-cab-icon {
    min-height: 42px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seo-cab-icon img {
    max-width: 46px;
    max-height: 34px;
    object-fit: contain;
}

.seo-cab-icon i {
    font-size: 26px;
    color: #111827;
}

.seo-cab-name {
    margin-top: 8px;
    color: #111827;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.seo-note {
    margin-top: 12px;
    color: #c2410c;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.page-section {
    padding: 72px 0;
    background: #fff;
}

.page-section-soft {
    background: linear-gradient(180deg, #fffdf4 0%, #ffffff 100%);
}

.service-grid,
.service-fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.service-card,
.service-fleet-card,
.info-card,
.contact-panel,
.contact-form-card,
.contact-map-card {
    border: 1px solid #e4e7ec;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
}

.service-card {
    padding: 28px;
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    border-radius: 18px;
    background: #eff6ff;
    color: #1d64dd;
    font-size: 22px;
}

.service-card h2,
.info-card h2,
.contact-panel h2,
.contact-form-card h2,
.contact-map-card h2,
.about-story-copy h2 {
    margin: 0 0 14px;
    color: #0f172a;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.service-card p,
.info-card p,
.contact-panel p,
.contact-form-card p,
.about-story-copy p {
    margin: 0;
    color: #475467;
    font-size: 16px;
    line-height: 1.75;
}

.service-card ul {
    margin: 18px 0 0;
    padding-left: 18px;
    color: #344054;
    line-height: 1.9;
}

.service-fleet-card {
    overflow: hidden;
}

.service-fleet-media {
    min-height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: linear-gradient(180deg, #f8fafc 0%, #eef4ff 100%);
}

.service-fleet-media img {
    max-width: 100%;
    max-height: 150px;
    object-fit: contain;
}

.service-fleet-body {
    padding: 20px 22px 24px;
}

.service-fleet-body h3 {
    margin: 0;
    color: #0f172a;
    font-size: 20px;
    font-weight: 700;
}

.service-fleet-body p {
    margin: 8px 0 0;
    color: #667085;
}

.service-fleet-body strong {
    display: inline-block;
    margin-top: 14px;
    color: #e29b00;
    font-size: 18px;
}

.two-col-section,
.about-story-grid,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.info-card,
.contact-panel,
.contact-form-card,
.contact-map-card {
    padding: 28px;
}

.contact-map-embed {
    overflow: hidden;
    min-height: 320px;
    margin-top: 24px;
    border: 1px solid #e4e7ec;
    border-radius: 20px;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.06);
}

.contact-map-embed iframe {
    display: block;
    width: 100%;
    min-height: 320px;
}

.simple-list {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.simple-list-item {
    padding: 16px 18px;
    border: 1px solid #e4e7ec;
    border-radius: 16px;
    background: #f8fafc;
}

.simple-list-item strong {
    display: block;
    color: #0f172a;
    font-size: 15px;
}

.simple-list-item span {
    display: block;
    margin-top: 6px;
    color: #667085;
    font-size: 14px;
    line-height: 1.7;
}

.tariff-table-card {
    border: 1px solid #e4e7ec;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.05);
}

.tariff-table thead th {
    background: #0f172a;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.tariff-table tbody td {
    padding: 18px 16px;
}

.about-story-media {
    border-radius: 24px;
    padding: 26px;
    background: linear-gradient(180deg, #eef6ff 0%, #f8fbff 100%);
}

.about-story-media img {
    width: 100%;
    display: block;
}

.about-focus-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.about-focus-card {
    padding: 28px 24px;
    border: 1px solid #e6e8ec;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #fffaf4 100%);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.05);
}

.about-focus-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fff1dc 0%, #ffe5cf 100%);
    color: var(--brand-accent-dark);
    font-size: 22px;
}

.about-focus-card h3 {
    margin: 0 0 12px;
    color: #0f172a;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
}

.about-focus-card p {
    margin: 0;
    color: #475467;
    font-size: 15px;
    line-height: 1.8;
}

.contact-list {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.contact-list-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #e4e7ec;
}

.contact-list-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #eff6ff;
    color: #1d64dd;
    font-size: 18px;
}

.contact-list-item strong {
    display: block;
    color: #0f172a;
}

.contact-list-item span {
    display: block;
    margin-top: 4px;
    color: #667085;
}

.contact-textarea {
    min-height: 160px;
}

.contact-submit-btn {
    min-height: 52px;
    padding: 0 28px;
    border-radius: 14px;
    color: #111827;
    font-weight: 800;
}

.contact-map-placeholder {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 14px;
    margin-top: 24px;
    border-radius: 20px;
    background:
        radial-gradient(circle at center, rgba(91, 156, 255, 0.12), transparent 36%),
        linear-gradient(180deg, #f8fafc 0%, #eef4ff 100%);
    color: #0f172a;
    text-decoration: none;
}

.contact-map-placeholder i {
    font-size: 34px;
    color: #1d64dd;
}

.thankyou-page {
    padding: 56px 0 72px;
    background:
        radial-gradient(circle at top left, rgba(243, 114, 59, 0.1), transparent 24%),
        linear-gradient(180deg, #fffaf2 0%, #ffffff 100%);
}

.thankyou-shell {
    display: grid;
    gap: 26px;
}

.thankyou-hero-card,
.thankyou-panel {
    padding: 34px;
    border: 1px solid #e9e3d9;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 22px 46px rgba(15, 23, 42, 0.07);
}

.thankyou-panel-soft {
    background: linear-gradient(180deg, #fffcf6 0%, #ffffff 100%);
}

.thankyou-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: #ecfdf3;
    color: #15803d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.thankyou-hero-card h1 {
    margin: 16px 0 12px;
    max-width: 760px;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 500;
    line-height: 1.1;
    color: #0f172a;
}

.thankyou-hero-card p {
    max-width: 720px;
    margin: 0;
    color: #667085;
    font-size: 16px;
    line-height: 1.75;
}

.thankyou-top-grid,
.thankyou-detail-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.thankyou-top-grid {
    margin-top: 28px;
}

.thankyou-highlight-card,
.thankyou-detail-item {
    padding: 18px 20px;
    border: 1px solid #ebe5da;
    border-radius: 20px;
    background: #fffdf9;
}

.thankyou-highlight-card span,
.thankyou-detail-item span {
    display: block;
    margin-bottom: 8px;
    color: #667085;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.thankyou-highlight-card strong,
.thankyou-detail-item strong {
    display: block;
    color: #101828;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.45;
}

.thankyou-detail-item-total {
    background: linear-gradient(135deg, #fff3e7 0%, #fffaf4 100%);
}

.thankyou-share-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.thankyou-share-btn,
.thankyou-primary-link,
.thankyou-secondary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 16px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}

.thankyou-share-whatsapp {
    background: #22c55e;
    color: #fff;
}

.thankyou-share-telegram {
    background: #229ed9;
    color: #fff;
}

.thankyou-share-sms {
    background: #fff1dc;
    color: #8a410e;
}

.thankyou-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 24px;
}

.thankyou-panel h2 {
    margin: 8px 0 0;
}

.thankyou-steps {
    display: grid;
    gap: 18px;
    margin-top: 24px;
}

.thankyou-step {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 14px;
    align-items: flex-start;
}

.thankyou-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, #fff1dc 0%, #ffe2ca 100%);
    color: #c25a15;
    font-size: 16px;
    font-weight: 700;
}

.thankyou-step strong {
    display: block;
    color: #0f172a;
    font-size: 17px;
    font-weight: 600;
}

.thankyou-step p {
    margin: 8px 0 0;
    color: #667085;
    font-size: 15px;
    line-height: 1.7;
}

.thankyou-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.thankyou-primary-link {
    background: linear-gradient(90deg, var(--brand-accent) 0%, var(--brand-accent-dark) 100%);
    color: #fff;
    box-shadow: 0 16px 30px rgba(229, 71, 80, 0.18);
}

.thankyou-secondary-link {
    background: #eef3f8;
    color: #243342;
}

.site-footer {
    padding: 56px 0 24px;
    background: linear-gradient(180deg, #fffdf8 0%, #ffffff 100%);
    border-top: 1px solid #eef2f7;
}

.footer-cta {
    padding: 52px 24px;
    border-radius: 24px;
    background: linear-gradient(135deg, #466b98 0%, #29476a 100%);
    color: #fff;
    text-align: center;
    box-shadow: 0 24px 45px rgba(41, 71, 106, 0.18);
}

.footer-cta h2 {
    margin: 0;
    font-size: clamp(1.9rem, 3.8vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.footer-cta p {
    margin: 18px 0 0;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.88);
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    margin-top: 28px;
    padding: 0 18px;
    border-radius: 14px;
    background: #ffd200;
    color: var(--brand-text);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.1fr 0.8fr 1fr;
    gap: 36px;
    padding: 48px 0 34px;
}

.footer-col h3 {
    margin: 0 0 22px;
    color: var(--brand-text);
    font-size: 20px;
    font-weight: 700;
}

.footer-col p {
    margin: 20px 0 0;
    max-width: 360px;
    color: var(--brand-muted);
    font-size: 15px;
    line-height: 1.7;
}

.footer-socials {
    display: flex;
    gap: 14px;
    margin-top: 24px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #111827;
    background: #f3f4f6;
    text-decoration: none;
}

.footer-links,
.footer-contact {
    display: grid;
    gap: 14px;
}

.footer-links a {
    color: #344054;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.footer-contact {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    color: #344054;
    font-size: 15px;
    line-height: 1.7;
}

.footer-contact i {
    color: #111827;
    margin-top: 5px;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid #e4e7ec;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p,
.footer-bottom-links a {
    margin: 0;
    color: #344054;
    font-size: 14px;
    text-decoration: none;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

@media (max-width: 1199.98px) {
    .service-grid,
    .service-fleet-grid,
    .fleet-grid,
    .feature-grid,
    .package-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .site-header {
        position: sticky;
    }

    .site-header-inner {
        min-height: 78px;
        flex-wrap: nowrap;
        gap: 14px;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .site-nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .site-nav {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 1035;
        align-items: baseline;
        padding: 0;
        background: rgba(15, 23, 42, 0.26);
        backdrop-filter: blur(12px);
    }

    .site-nav.show {
        display: flex;
    }

    .site-nav-panel {
        display: flex;
        flex-direction: column;
        width: 100%;
        min-height: 100vh;
        padding: 22px 18px 36px;
        background: linear-gradient(180deg, #fffaf2 0%, #ffffff 100%);
    }

    .site-nav-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        margin-bottom: 28px;
    }

    .site-nav-brand {
        display: inline-flex;
        align-items: center;
    }

    .site-nav-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        border: 1px solid rgba(54, 75, 92, 0.1);
        border-radius: 14px;
        background: #fff;
        color: #1f2937;
        font-size: 18px;
        box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
    }

    .site-nav-links {
        display: flex;
        flex: 1;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 14px;
    }

    .site-nav-links a {
        width: 100%;
        padding: 14px 20px;
        border: 1px solid rgba(54, 75, 92, 0.08);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 14px 28px rgba(15, 23, 42, 0.05);
        text-align: left;
        font-size: 18px;
        font-weight: 600;
    }

    .site-nav-links a.active::after {
        left: 20px;
        right: auto;
        bottom: 10px;
        width: 34px;
    }

    .site-nav-meta {
        display: grid;
        gap: 12px;
        margin-top: 24px;
    }

    .site-nav-meta-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-height: 48px;
        padding: 0 18px;
        border-radius: 16px;
        background: #eef3f8;
        color: #243342;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
    }

    .site-nav-meta-link-book {
        background: linear-gradient(90deg, var(--brand-accent) 0%, var(--brand-accent-dark) 100%);
        color: #fff;
    }

    .site-header-actions {
        margin-left: auto;
        gap: 12px;
    }

    .homepage-section {
        padding: 48px 0;
    }

    .trips-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .trips-filter-card {
        width: 100%;
        min-width: 100%;
    }

    .trips-filter-bar {
        flex-wrap: nowrap;
    }

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

    .seo-hero-inner,
    .seo-content-grid {
        grid-template-columns: 1fr;
    }

    .seo-hero {
        padding: 72px 0 56px;
    }

    .seo-hero-panel,
    .seo-copy-card,
    .seo-side-card {
        padding: 22px;
        border-radius: 20px;
    }

    .seo-hero-copy h1,
    .page-hero h1 {
        font-size: clamp(2.1rem, 8vw, 3.2rem);
    }

    .seo-hero-copy p,
    .page-hero p {
        font-size: 16px;
        line-height: 1.65;
    }

    .seo-cab-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .two-col-section,
    .about-focus-grid,
    .about-story-grid,
    .contact-grid,
    .thankyou-content-grid,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .section-heading-split {
        flex-direction: column;
    }

    .about-grid {
        gap: 28px;
    }

    .feature-grid {
        gap: 18px;
    }

    .footer-cta {
        padding: 42px 20px;
        border-radius: 22px;
    }

    .footer-cta p {
        font-size: 16px;
    }
}

@media (max-width: 767.98px) {
    .service-grid,
    .service-fleet-grid,
    .fleet-grid,
    .package-grid,
    .feature-grid,
    .route-grid,
    .seo-cab-grid {
        grid-template-columns: 1fr;
    }

    .popular-trips-grid {
        display: flex !important;
        gap: 14px;
        overflow-x: auto;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .popular-trips-grid::-webkit-scrollbar {
        height: 6px;
    }

    .popular-trips-grid::-webkit-scrollbar-thumb {
        background: rgba(54, 75, 92, 0.24);
        border-radius: 999px;
    }

    .trips-filter-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .trips-filter-arrow {
        width: 100%;
        height: 40px;
        margin-top: 0;
    }

    .trip-card {
        flex: 0 0 min(84vw, 320px);
        padding: 16px;
        scroll-snap-align: start;
    }

    .trip-card-head {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .trip-card-head img {
        width: 82px;
        height: 50px;
    }

    .trip-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .trip-metric:last-child {
        grid-column: 1 / -1;
    }

    .fleet-grid,
    .package-grid,
    .feature-grid,
    .route-grid {
        gap: 16px;
    }

    .fleet-card-media,
    .package-card-media,
    .about-visual {
        margin-left: 18px;
        margin-right: 18px;
    }

    .package-card-media img {
        height: 190px;
    }

    .fleet-features li {
        grid-template-columns: 24px 1fr auto;
        gap: 8px;
        font-size: 13px;
    }

    .fleet-features i {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .package-card-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-copy p,
    .feature-card p,
    .route-card-body p {
        font-size: 15px;
    }

    .route-meta-line {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .site-logo-image {
        height: 42px;
    }

    .site-phone {
        font-size: 13px;
        gap: 8px;
    }

    .fleet-card-body,
    .package-card-body,
    .feature-card,
    .route-card-body {
        padding-left: 18px;
        padding-right: 18px;
    }

    .booking-card {
        border-radius: 18px;
        box-shadow: 0 18px 40px rgba(5, 11, 23, 0.22);
    }

    .booking-tabs .nav-link {
        min-height: 40px;
        font-size: 12px;
    }

    .hero-copy {
        padding-top: 0;
    }

    .service-card,
    .service-fleet-card,
    .info-card,
    .contact-panel,
    .contact-form-card,
    .contact-map-card,
    .seo-copy-card,
    .seo-side-card {
        border-radius: 18px;
    }

    .route-pill-grid {
        gap: 10px;
    }

    .route-pill {
        width: auto;
        justify-content: center;
        min-height: 40px;
        padding: 0 14px;
        font-size: 10px;
    }

    .trips-select {
        min-width: 100%;
    }

    .site-header-actions {
        display: none;
    }

    .thankyou-page {
        padding: 34px 0 56px;
    }

    .thankyou-hero-card,
    .thankyou-panel {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .thankyou-top-grid,
    .thankyou-detail-list {
        grid-template-columns: 1fr;
    }

    .thankyou-share-row,
    .thankyou-actions {
        flex-direction: column;
    }

    .thankyou-share-btn,
    .thankyou-primary-link,
    .thankyou-secondary-link {
        width: 100%;
    }

    .thankyou-step {
        grid-template-columns: 46px 1fr;
    }

    .thankyou-step span {
        width: 46px;
        height: 46px;
        border-radius: 15px;
        font-size: 14px;
    }

    .site-book-btn {
        min-width: auto;
        min-height: 44px;
        padding: 0 16px;
        font-size: 14px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-heading h2,
    .about-copy h2 {
        font-size: 1.95rem;
    }

    .about-copy p,
    .section-heading p {
        font-size: 16px;
    }

    .footer-cta-btn {
        width: 100%;
        justify-content: center;
        font-size: 17px;
    }

    .mobile-sticky-actions {
        position: fixed;
        inset: auto 0 24px 0;
        z-index: 1100;
        display: block;
        pointer-events: none;
    }

    .mobile-sticky-action {
        position: fixed;
        bottom: 24px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        border-radius: 999px;
        box-shadow: 0 14px 30px rgba(15, 23, 42, 0.2);
        pointer-events: auto;
    }

    .mobile-sticky-call {
        left: 14px;
        width: 48px;
        height: 48px;
        background: #1f9d55;
        color: #fff;
        font-size: 18px;
    }

    .mobile-sticky-book {
        right: 14px;
        padding: 0 18px;
        background: linear-gradient(90deg, var(--brand-accent) 0%, var(--brand-accent-dark) 100%);
        color: #fff;
        font-size: 14px;
        font-weight: 600;
    }
}

@media (max-width: 575.98px) {
    .site-header-inner {
        min-height: auto;
    }

    .site-nav {
        padding: 0;
    }

    .site-nav-panel {
        padding: 18px 14px 28px;
    }

    .site-nav-links a {
        padding: 13px 16px;
        font-size: 17px;
    }

    .trips-section {
        padding-top: 50px;
    }

    .trips-header h2 {
        font-size: 1.9rem;
    }

    .trips-header-copy p {
        font-size: 15px;
    }

    .trips-filter-card {
        padding: 14px;
        border-radius: 20px;
    }

    .trips-select {
        min-height: 48px;
        font-size: 14px;
    }

    .trip-card-head {
        flex-direction: row;
        gap: 12px;
    }

    .trip-card-head img {
        width: 88px;
        height: 52px;
    }

    .trip-card-head h3 {
        font-size: 20px;
    }

    .trip-rate-line strong {
        display: inline;
        margin-top: 0;
    }

    .trip-pill {
        width: 100%;
    }

    .trip-book-btn {
        min-height: 46px;
        font-size: 14px;
    }

    .homepage-section {
        padding: 42px 0;
    }

    .section-kicker,
    .section-route-label,
    .about-badge {
        font-size: 11px;
        letter-spacing: 0.12em;
    }

    .fleet-filters {
        justify-content: flex-start;
        gap: 10px;
        margin-bottom: 24px;
    }

    .fleet-filter {
        min-height: 38px;
        padding: 0 14px;
        font-size: 12px;
    }

    .fleet-card-body,
    .package-card-body,
    .route-card-body,
    .feature-card {
        padding: 18px;
    }

    .fleet-card-media {
        min-height: 150px;
        padding: 14px;
    }

    .package-card-media img {
        height: 170px;
    }

    .about-grid,
    .feature-grid {
        gap: 16px;
    }

    .about-copy p {
        margin-top: 16px;
    }

    .fleet-book-btn,
    .route-book-btn,
    .packages-link,
    .routes-link {
        font-size: 13px;
    }

    .route-pill-grid {
        gap: 10px;
    }

    .hero-home {
        min-height: auto;
        padding: 12px 0 24px;
    }

    .hero-shell {
        gap: 16px;
    }

    .hero-title {
        font-size: 2.35rem;
    }

    .hero-text {
        font-size: 15px;
    }

    .hero-actions {
        margin-top: 24px;
    }

    .hero-action {
        min-height: 48px;
        font-size: 15px;
    }

    .booking-card {
        padding: 10px;
    }

    .cab-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .seo-hero {
        padding: 58px 0 42px;
    }

    .seo-chip {
        min-height: 34px;
        font-size: 11px;
    }

    .page-hero {
        padding: 56px 0 44px;
    }

    .page-hero p,
    .seo-hero-copy p,
    .service-card p,
    .info-card p,
    .contact-panel p,
    .contact-form-card p,
    .about-story-copy p,
    .footer-col p {
        font-size: 15px;
        line-height: 1.65;
    }

    .service-card,
    .info-card,
    .contact-panel,
    .contact-form-card,
    .contact-map-card,
    .simple-list-item {
        padding: 20px;
    }

    .table-responsive {
        border-radius: 18px;
    }

    .tariff-table thead th,
    .tariff-table tbody td {
        white-space: nowrap;
        font-size: 13px;
    }

    .footer-main {
        gap: 28px;
        padding: 38px 0 28px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        gap: 12px;
    }

    .mobile-sticky-call {
        left: 10px;
        width: 46px;
        height: 46px;
    }

    .mobile-sticky-book {
        right: 10px;
        min-height: 46px;
        padding: 0 16px;
        font-size: 13px;
    }
}

:root {
    --brand-primary-dark: rgb(1 13 131);
    --brand-primary-dark-strong: rgb(0 9 92);
    --brand-page-dark: #050816;
    --brand-surface-dark: #0d1329;
    --brand-surface-deep: #121a37;
    --brand-surface-soft: #1a2243;
    --brand-border-dark: rgba(255, 255, 255, 0.08);
    --brand-text-light: rgba(255, 255, 255, 0.88);
    --brand-text-muted-dark: rgba(255, 255, 255, 0.66);
}

body.bg-cover {
    color: #e8ecff;
    background:
        radial-gradient(circle at top, rgba(1, 13, 131, 0.28), transparent 24%),
        linear-gradient(180deg, #03050f 0%, #060b18 100%);
}

.site-header {
    background: rgba(5, 8, 22, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.site-nav a,
.site-phone,
.footer-col h3,
.footer-contact li,
.footer-bottom p,
.footer-bottom-links a,
.footer-links a {
    color: #f7f9ff;
}

.site-phone i,
.site-nav a.active,
.footer-contact i {
    color: #9eb4ff;
}

.site-nav a.active::after {
    background: var(--brand-primary-dark);
}

.site-book-btn,
.hero-action-primary,
.action-btn,
.booking-tabs .nav-link.active,
.site-nav-meta-link-book,
.mobile-sticky-book,
.pricing-dark-btn,
.fleet-book-btn,
.routes-link,
.packages-link,
.footer-cta-btn {
    background: linear-gradient(135deg, var(--brand-primary-dark) 0%, #1f3fff 100%);
    color: #fff;
    box-shadow: 0 16px 34px rgba(1, 13, 131, 0.3);
}

.site-book-btn:hover,
.hero-action-primary:hover,
.action-btn:hover,
.action-btn:focus,
.action-btn:active,
.pricing-dark-btn:hover,
.fleet-book-btn:hover,
.routes-link:hover,
.packages-link:hover,
.footer-cta-btn:hover {
    background: linear-gradient(135deg, var(--brand-primary-dark-strong) 0%, var(--brand-primary-dark) 100%);
    color: #fff;
}

.site-phone,
.hero-action-secondary,
.final-cta-phone {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
}

.hero-home.hero-home-dark {
    min-height: auto;
    padding: 56px 0 64px;
    background:
        linear-gradient(120deg, rgba(3, 6, 18, 0.96) 0%, rgba(4, 9, 26, 0.8) 45%, rgba(1, 13, 131, 0.28) 100%),
        url("https://images.unsplash.com/photo-1494976388531-d1058494cdd8?auto=format&fit=crop&w=1800&q=80") center center / cover no-repeat;
}

.hero-overlay {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.34)),
        radial-gradient(circle at 78% 28%, rgba(1, 13, 131, 0.34), transparent 26%);
}

.hero-shell {
    min-height: auto;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 430px);
    gap: 42px;
}

.hero-copy {
    max-width: 640px;
}

.hero-badge {
    background: rgba(1, 13, 131, 0.36);
    border-color: rgba(255, 255, 255, 0.14);
    color: #dfe6ff;
}

.hero-title span,
.section-kicker,
.section-route-label,
.about-badge,
.pricing-dark-price,
.service-mini-card .feature-icon,
.services-dark-card span,
.hero-highlight-card span {
    color: #9eb4ff;
}

.hero-text,
.section-heading p,
.dark-section-head p,
.service-mini-card p,
.services-dark-card p,
.pricing-dark-card li,
.package-card-dark p,
.route-card-body p,
.trips-header-copy p,
.trips-note {
    color: var(--brand-text-muted-dark);
}

.hero-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
}

.hero-highlight-card {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.hero-highlight-card span {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.hero-highlight-card h3,
.service-mini-card h3,
.services-dark-card h3,
.pricing-dark-card h3,
.package-card-dark h3,
.route-card-dark .route-card-body strong,
.section-heading h2,
.dark-section-head h2,
.trips-header h2,
.final-cta-panel h2 {
    color: #fff;
}

.hero-highlight-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.6;
}

.booking-card,
.trips-filter-card,
.trip-card,
.service-mini-card,
.services-dark-card,
.pricing-dark-card,
.package-card-dark,
.route-card-dark,
.final-cta-panel,
.stat-card,
.call-panel,
.footer-cta {
    border: 1px solid var(--brand-border-dark);
    background: linear-gradient(180deg, rgba(16, 23, 48, 0.95) 0%, rgba(9, 14, 32, 0.96) 100%);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
    color: #fff;
}

.booking-card {
    border-color: rgba(158, 180, 255, 0.16);
}

.booking-loader {
    background: rgba(4, 10, 24, 0.82);
}

.booking-loader-text,
.route-title,
.estimate-title,
.estimate-price,
.form-label,
.section-title,
.trip-toggle .form-check-label,
.booking-summary-item strong {
    color: #fff;
}

.booking-feedback.is-error {
    border-color: rgba(240, 68, 56, 0.4);
    background: rgba(127, 29, 29, 0.3);
    color: #fecaca;
}

.booking-feedback.is-success {
    border-color: rgba(34, 197, 94, 0.35);
    background: rgba(20, 83, 45, 0.28);
    color: #dcfce7;
}

.form-control,
.form-select,
.booking-tabs .nav-link,
.cab-card,
.estimate-card,
.booking-summary-item,
.estimate-table,
.estimate-row,
#editBookingBtn {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(158, 180, 255, 0.46);
    box-shadow: 0 0 0 0.16rem rgba(1, 13, 131, 0.24);
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
}

.trip-toggle .form-check-input {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.24);
}

.trip-toggle .form-check-input:checked {
    background-color: var(--brand-primary-dark);
    border-color: var(--brand-primary-dark);
    box-shadow: 0 0 0 0.2rem rgba(1, 13, 131, 0.18);
}

.cab-card:hover,
.cab-card.active {
    border-color: rgba(158, 180, 255, 0.42);
    box-shadow: 0 14px 24px rgba(1, 13, 131, 0.16);
}

.cab-card .rate-tag,
.cab-card .availability,
.booking-confirm-badge,
.trip-card-badge,
.trip-pill {
    background: rgba(1, 13, 131, 0.18);
    color: #c8d5ff;
}

.cab-name,
.route-meta,
.booking-summary-item span,
.estimate-row,
.trips-filter-label {
    color: rgba(255, 255, 255, 0.72);
}

.homepage-section {
    background: transparent;
    color: #fff;
}

.hero-home + .homepage-section,
.homepage-section + .homepage-section,
.site-footer,
.footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.07);
}

.service-overview-section,
.pricing-dark-section,
.final-cta-section {
    background:
        radial-gradient(circle at top left, rgba(1, 13, 131, 0.22), transparent 20%),
        linear-gradient(180deg, rgba(4, 7, 18, 0.9) 0%, rgba(7, 10, 23, 0.96) 100%);
}

.services-dark-section,
.packages-dark-section,
.routes-section-dark,
.site-footer {
    background:
        radial-gradient(circle at top right, rgba(1, 13, 131, 0.18), transparent 18%),
        linear-gradient(180deg, rgba(7, 10, 23, 0.98) 0%, rgba(3, 5, 14, 1) 100%);
}

.stats-call-section,
.trips-section-dark {
    background:
        linear-gradient(135deg, rgba(1, 13, 131, 0.88) 0%, rgba(6, 11, 28, 0.96) 100%);
}

.dark-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 32px;
}

.dark-section-head h2,
.section-heading-light h2,
.section-heading-light p,
.section-heading-light .section-kicker,
.section-heading-light .section-route-label,
.trips-section-dark .trips-header h2,
.trips-section-dark .trips-header-copy p,
.routes-section-dark .routes-link {
    color: #fff;
}

.service-overview-grid,
.stats-call-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.service-overview-image img,
.package-card-dark .package-card-media img {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    object-fit: cover;
}

.service-mini-grid,
.services-dark-grid,
.pricing-dark-grid,
.stats-grid {
    display: grid;
    gap: 18px;
}

.service-mini-grid,
.services-dark-grid,
.pricing-dark-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-mini-card,
.services-dark-card,
.pricing-dark-card,
.stat-card {
    padding: 24px;
    border-radius: 24px;
}

.services-dark-card-blue,
.call-panel,
.final-cta-panel {
    background:
        linear-gradient(135deg, rgba(1, 13, 131, 0.96) 0%, rgba(10, 18, 52, 0.98) 100%);
}

.services-dark-card span,
.stat-card strong {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.services-dark-card a,
.package-card-dark .package-card-footer a,
.routes-link,
.final-cta-phone {
    color: #fff;
    text-decoration: none;
}

.stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card strong {
    margin-bottom: 6px;
    font-size: 2rem;
    letter-spacing: -0.03em;
}

.stat-card span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.call-panel {
    display: grid;
    place-content: center;
    min-height: 100%;
    padding: 32px;
    border-radius: 28px;
    text-align: center;
}

.call-panel span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.call-panel a {
    margin-top: 12px;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-decoration: none;
}

.pricing-dark-card,
.package-card-dark,
.route-card-dark {
    overflow: hidden;
}

.pricing-dark-media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    margin-bottom: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
}

.pricing-dark-media img {
    max-width: 100%;
    height: 120px;
    object-fit: contain;
}

.pricing-dark-price {
    margin: 12px 0 14px;
    font-size: 2rem;
    font-weight: 800;
}

.pricing-dark-price small {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.95rem;
}

.pricing-dark-list {
    padding-left: 18px;
    margin-bottom: 22px;
}

.pricing-dark-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
}

.package-grid-dark,
.route-grid {
    gap: 20px;
}

.package-card-dark,
.route-card-dark {
    border-radius: 24px;
}

.package-card-dark .package-card-body,
.route-card-dark .route-card-body {
    background: transparent;
}

.trip-card {
    border-color: rgba(255, 255, 255, 0.08);
}

.trips-filter-arrow {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.trips-select {
    min-height: 52px;
}

.trips-empty {
    color: rgba(255, 255, 255, 0.7);
}

.final-cta-panel {
    padding: 34px;
    border-radius: 30px;
    text-align: center;
}

.final-cta-panel span {
    display: inline-block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 13px;
}

.final-cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 24px;
}

.final-cta-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
}

.footer-cta,
.site-footer {
    background:
        linear-gradient(180deg, rgba(10, 14, 33, 0.96) 0%, rgba(5, 7, 17, 1) 100%);
}

.footer-col p,
.footer-bottom-links a,
.footer-bottom p {
    color: rgba(255, 255, 255, 0.64);
}

.footer-socials a {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

@media (max-width: 991.98px) {
    .hero-shell,
    .service-overview-grid,
    .stats-call-grid,
    .dark-section-head {
        grid-template-columns: 1fr;
    }

    .dark-section-head {
        align-items: flex-start;
    }

    .hero-highlight-grid,
    .service-mini-grid,
    .services-dark-grid,
    .pricing-dark-grid,
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .hero-highlight-grid,
    .service-mini-grid,
    .services-dark-grid,
    .pricing-dark-grid,
    .stats-grid,
    .package-grid-dark,
    .route-grid {
        grid-template-columns: 1fr;
    }

    .hero-home.hero-home-dark {
        padding: 24px 0 36px;
    }

    .hero-highlight-card,
    .service-mini-card,
    .services-dark-card,
    .pricing-dark-card,
    .stat-card,
    .call-panel,
    .final-cta-panel {
        padding: 20px;
        border-radius: 22px;
    }

    .final-cta-actions {
        flex-direction: column;
    }

    .final-cta-phone,
    .final-cta-actions .site-book-btn {
        width: 100%;
    }
}

/* Taxi palette refresh based on user-provided colors and reference direction */
:root {
    --brand-primary-dark: #061698;
    --brand-primary-dark-strong: #040f68;
    --brand-yellow: #ffc000;
    --brand-page-dark: #061698;
    --brand-text-light: rgba(255, 255, 255, 0.92);
    --brand-text-muted-dark: #888888;
}

body.bg-cover {
    color: #1a1a1a;
    background: #ffffff;
}

.site-header {
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(6, 22, 152, 0.08);
    box-shadow: 0 10px 24px rgba(6, 22, 152, 0.08);
}

.site-nav a,
.site-phone,
.footer-col h3,
.footer-contact li,
.footer-links a,
.footer-bottom p,
.footer-bottom-links a {
    color: #111111;
}

.site-phone {
    background: transparent;
    border: 0;
}

.site-phone i,
.site-nav a.active,
.footer-contact i {
    color: #061698;
}

.site-book-btn,
.hero-action-primary,
.action-btn,
.booking-tabs .nav-link.active,
.site-nav-meta-link-book,
.mobile-sticky-book,
.pricing-dark-btn,
.fleet-book-btn,
.routes-link,
.packages-link {
    background: #ffc000;
    color: #111111;
    box-shadow: 0 14px 28px rgba(255, 192, 0, 0.22);
}

.site-book-btn:hover,
.hero-action-primary:hover,
.action-btn:hover,
.action-btn:focus,
.action-btn:active,
.pricing-dark-btn:hover,
.fleet-book-btn:hover,
.routes-link:hover,
.packages-link:hover {
    background: #e5ac00;
    color: #111111;
}

.hero-action-secondary,
.final-cta-phone {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.hero-home.hero-home-dark {
    background:
        linear-gradient(96deg, rgba(6, 22, 152, 0.96) 0%, rgba(6, 22, 152, 0.78) 48%, rgba(10, 10, 10, 0.46) 100%),
        url("https://images.unsplash.com/photo-1494976388531-d1058494cdd8?auto=format&fit=crop&w=1800&q=80") center center / cover no-repeat;
}

.hero-overlay {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.2)),
        radial-gradient(circle at 80% 22%, rgba(255, 192, 0, 0.28), transparent 24%);
}

.hero-badge {
    background: rgba(255, 192, 0, 0.16);
    border-color: rgba(255, 255, 255, 0.22);
    color: #ffffff;
}

.hero-title span,
.section-kicker,
.section-route-label,
.about-badge,
.pricing-dark-price,
.service-mini-card .feature-icon,
.services-dark-card span,
.hero-highlight-card span {
    color: #061698;
}

.hero-highlight-card {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.16);
}

.hero-highlight-card span,
.hero-highlight-card h3,
.hero-highlight-card p,
.hero-text {
    color: #ffffff;
}

.booking-card,
.trips-filter-card,
.trip-card,
.service-mini-card,
.services-dark-card,
.pricing-dark-card,
.package-card-dark,
.route-card-dark,
.stat-card {
    border: 1px solid rgba(6, 22, 152, 0.08);
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(17, 24, 39, 0.08);
    color: #111111;
}

.call-panel,
.final-cta-panel,
.footer-cta {
    background: linear-gradient(135deg, #061698 0%, #0d1fbb 100%);
    color: #ffffff;
    border: 0;
    box-shadow: 0 20px 50px rgba(6, 22, 152, 0.2);
}

.booking-loader {
    background: rgba(255, 255, 255, 0.82);
}

.booking-loader-text,
.route-title,
.estimate-title,
.form-label,
.section-title,
.trip-toggle .form-check-label,
.booking-summary-item strong,
.services-dark-card h3,
.pricing-dark-card h3,
.package-card-dark h3,
.route-card-dark .route-card-body strong,
.section-heading h2,
.dark-section-head h2,
.trips-header h2 {
    color: #111111;
}

.estimate-price {
    color: #061698;
}

.form-control,
.form-select,
.booking-tabs .nav-link,
.cab-card,
.estimate-card,
.booking-summary-item,
.estimate-table,
.estimate-row,
#editBookingBtn {
    background: #ffffff;
    border-color: rgba(6, 22, 152, 0.12);
    color: #111111;
}

.form-control::placeholder {
    color: #888888;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(6, 22, 152, 0.32);
    box-shadow: 0 0 0 0.16rem rgba(6, 22, 152, 0.12);
    background: #ffffff;
    color: #111111;
}

.trip-toggle .form-check-input:checked {
    background-color: #061698;
    border-color: #061698;
    box-shadow: 0 0 0 0.2rem rgba(6, 22, 152, 0.14);
}

.cab-card:hover,
.cab-card.active {
    border-color: #ffc000;
    box-shadow: 0 12px 24px rgba(255, 192, 0, 0.14);
}

.cab-card .rate-tag,
.cab-card .availability,
.booking-confirm-badge,
.trip-card-badge,
.trip-pill {
    background: rgba(255, 192, 0, 0.18);
    color: #7a5a00;
}

.cab-name,
.route-meta,
.booking-summary-item span,
.estimate-row,
.trips-filter-label,
.section-heading p,
.dark-section-head p,
.service-mini-card p,
.services-dark-card p,
.pricing-dark-card li,
.package-card-dark p,
.route-card-body p,
.trips-header-copy p,
.trips-note,
.stat-card span {
    color: #888888;
}

.homepage-section {
    color: #111111;
}

.hero-home + .homepage-section,
.homepage-section + .homepage-section {
    border-top: 1px solid #f0f2f8;
}

.service-overview-section,
.pricing-dark-section,
.final-cta-section,
.packages-dark-section,
.routes-section-dark {
    background: #ffffff;
}

.services-dark-section,
.stats-call-section,
.trips-section-dark {
    background: #f7f9ff;
}

.dark-section-head h2,
.section-heading-light h2,
.section-heading-light p,
.section-heading-light .section-kicker,
.section-heading-light .section-route-label,
.trips-section-dark .trips-header h2,
.trips-section-dark .trips-header-copy p,
.routes-section-dark .routes-link {
    color: #111111;
}

.services-dark-card-blue {
    background: linear-gradient(135deg, #061698 0%, #0d1fbb 100%);
}

.services-dark-card-blue h3,
.services-dark-card-blue p,
.services-dark-card-blue span,
.services-dark-card-blue a,
.call-panel span,
.call-panel a,
.final-cta-panel span,
.final-cta-panel h2 {
    color: #ffffff;
}

.services-dark-card a,
.package-card-dark .package-card-footer a,
.routes-link {
    color: #061698;
    text-decoration: none;
    font-weight: 700;
}

.service-overview-image img,
.package-card-dark .package-card-media img,
.route-card-dark .route-card-media img {
    border-radius: 24px;
}

.trips-filter-arrow {
    background: #061698;
    color: #ffffff;
}

.trips-empty {
    color: #888888;
}

.final-cta-panel span {
    color: rgba(255, 255, 255, 0.74);
}

.footer-cta-btn {
    background: #ffc000;
    color: #111111;
    box-shadow: none;
}

.site-footer {
    background: #061698;
    border-top: 0;
}

.footer-main {
    padding: 54px 0 34px;
}

.footer-col h3,
.footer-col p,
.footer-links a,
.footer-contact li,
.footer-bottom p,
.footer-bottom-links a {
    color: #ffffff;
}

.footer-col p,
.footer-bottom p,
.footer-bottom-links a,
.footer-contact li span {
    opacity: 0.82;
}

.footer-socials a {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

@media (max-width: 767.98px) {
    .site-phone {
        color: #111111;
    }
}

/* Shared Taxica-inspired page system */
.site-header-inner {
    min-height: 92px;
}

.site-logo-image {
    height: 54px;
}

.site-nav a {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.site-book-btn {
    min-height: 50px;
    padding: 0 24px;
    border-radius: 14px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.page-hero {
    position: relative;
    padding: 86px 0 74px;
    background:
        linear-gradient(100deg, rgba(6, 22, 152, 0.94) 0%, rgba(6, 22, 152, 0.82) 52%, rgba(11, 18, 46, 0.58) 100%),
        url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=1800&q=80") center center / cover no-repeat;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 22px;
    background:
        radial-gradient(circle at 12px -2px, transparent 15px, #ffffff 16px) repeat-x;
    background-size: 48px 22px;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 192, 0, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.page-hero h1 {
    margin: 16px 0 14px;
    max-width: 760px;
    color: #ffffff;
    font-size: clamp(2.3rem, 4.6vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.page-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    line-height: 1.75;
}

.page-section {
    padding: 82px 0;
    background: #ffffff;
}

.page-section-soft {
    background: #f7f9ff;
}

.section-heading-wide,
.section-heading-centered {
    margin-bottom: 34px;
}

.section-heading h2,
.about-copy h2,
.about-story-copy h2,
.info-card h2,
.contact-panel h2,
.contact-form-card h2 {
    color: #111111;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-heading p,
.about-copy p,
.about-story-copy p,
.info-card p,
.contact-panel p,
.contact-form-card p,
.service-card p,
.service-fleet-body p,
.about-focus-card p,
.feature-card p,
.simple-list-item span {
    color: #888888;
}

.service-grid,
.service-fleet-grid,
.about-focus-grid,
.contact-grid,
.two-col-section {
    gap: 24px;
}

.service-card,
.service-fleet-card,
.about-focus-card,
.feature-card,
.info-card,
.contact-panel,
.contact-form-card,
.contact-map-card,
.tariff-table-card,
.simple-list-item {
    border: 1px solid rgba(6, 22, 152, 0.08);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(17, 24, 39, 0.06);
}

.service-card,
.about-focus-card,
.feature-card,
.info-card,
.contact-panel,
.contact-form-card,
.contact-map-card {
    padding: 30px;
}

.service-card h2,
.about-focus-card h3,
.feature-card h3,
.service-fleet-body h3,
.simple-list-item strong {
    color: #111111;
    font-weight: 800;
}

.service-icon,
.about-focus-icon,
.feature-icon,
.contact-list-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin-bottom: 18px;
    border-radius: 18px;
    background: rgba(255, 192, 0, 0.15);
    color: #061698;
    font-size: 28px;
}

.service-card ul {
    padding-left: 18px;
    margin: 18px 0 0;
}

.service-card li {
    margin-bottom: 8px;
    color: #888888;
}

.service-fleet-card {
    overflow: hidden;
}

.service-fleet-media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    padding: 24px;
    background: #f7f9ff;
}

.service-fleet-body {
    padding: 24px;
}

.service-fleet-body strong {
    color: #061698;
    font-size: 20px;
    font-weight: 800;
}

.about-story-media img,
.about-visual img,
.contact-map-embed,
.contact-map-placeholder {
    border-radius: 26px;
}

.about-story-grid,
.about-grid {
    gap: 28px;
    align-items: center;
}

.contact-panel {
    background: linear-gradient(135deg, #061698 0%, #0d1fbb 100%);
}

.contact-panel h2,
.contact-panel p,
.contact-panel .section-kicker,
.contact-list-item strong,
.contact-list-item span {
    color: #ffffff;
}

.contact-list {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.contact-list-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 14px;
    align-items: flex-start;
}

.contact-list-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 0;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffc000;
    font-size: 22px;
}

.contact-submit-btn {
    min-height: 52px;
    padding: 0 24px;
    border-radius: 14px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.contact-textarea {
    min-height: 160px;
}

.contact-map-card {
    overflow: hidden;
}

.contact-map-embed {
    overflow: hidden;
    min-height: 380px;
    margin-top: 26px;
}

.contact-map-placeholder {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 14px 18px;
    background: #f7f9ff;
    color: #061698;
    text-decoration: none;
    font-weight: 700;
}

.tariff-table-card {
    overflow: hidden;
}

.table-responsive {
    border-radius: 24px;
}

.tariff-table {
    background: #ffffff;
}

.tariff-table thead th {
    background: #061698;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: none;
    padding: 18px 20px;
}

.tariff-table tbody td {
    padding: 18px 20px;
    color: #555555;
    border-color: #eef2f8;
    font-weight: 600;
}

.tariff-table tbody tr:nth-child(even) {
    background: #fbfcff;
}

.simple-list {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

.simple-list-item {
    padding: 18px 20px;
}

.simple-list-item strong {
    display: block;
    margin-bottom: 6px;
}

.package-card,
.route-card {
    border: 1px solid rgba(6, 22, 152, 0.08);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(17, 24, 39, 0.06);
    overflow: hidden;
}

.package-card-media img,
.route-card-media img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.package-card-body,
.route-card-body {
    padding: 24px;
}

.package-card-body h3,
.route-card-overlay h3 {
    font-weight: 800;
}

.package-card-footer span,
.route-meta-line span {
    color: #888888;
}

.package-card-footer a,
.route-book-btn {
    color: #061698;
    font-weight: 800;
    text-decoration: none;
}

.route-card-overlay {
    background: linear-gradient(180deg, transparent 0%, rgba(6, 22, 152, 0.88) 100%);
}

.route-meta-line strong {
    color: #111111;
}

.footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    padding: 34px 36px;
    margin-top: -56px;
    border-radius: 28px;
}

.footer-cta-copy h2 {
    margin: 10px 0 10px;
    font-size: clamp(1.8rem, 3.4vw, 2.8rem);
    font-weight: 800;
    color: #ffffff;
}

.footer-cta-copy p,
.footer-cta-kicker {
    color: rgba(255, 255, 255, 0.86);
}

.footer-cta-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-cta-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-cta-btn,
.footer-cta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 20px;
    border-radius: 14px;
    font-weight: 800;
    text-decoration: none;
}

.footer-cta-link {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.footer-main {
    grid-template-columns: 1.2fr 0.8fr 0.9fr 1fr;
    gap: 30px;
}

.footer-col h3 {
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-links,
.footer-contact {
    gap: 12px;
}

.footer-links a {
    font-weight: 600;
}

.footer-contact li {
    font-size: 14px;
    line-height: 1.7;
}

.footer-socials a:hover,
.footer-links a:hover,
.footer-bottom-links a:hover,
.footer-cta-link:hover {
    opacity: 0.88;
    color: #ffffff;
}

@media (max-width: 991.98px) {
    .page-hero {
        padding: 72px 0 62px;
    }

    .footer-cta,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-cta {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 0;
    }
}

@media (max-width: 767.98px) {
    .page-hero {
        padding: 58px 0 50px;
    }

    .page-hero::before {
        height: 18px;
        background-size: 40px 18px;
    }

    .page-hero p {
        font-size: 15px;
    }

    .page-section {
        padding: 52px 0;
    }

    .service-card,
    .service-fleet-card,
    .about-focus-card,
    .feature-card,
    .info-card,
    .contact-panel,
    .contact-form-card,
    .contact-map-card {
        padding: 22px;
        border-radius: 20px;
    }

    .package-card-media img,
    .route-card-media img {
        height: 200px;
    }

    .footer-cta {
        padding: 24px;
        border-radius: 22px;
    }

    .footer-cta-actions {
        width: 100%;
        flex-direction: column;
    }

    .footer-cta-btn,
    .footer-cta-link {
        width: 100%;
    }
}

/* Homepage usability refresh based on Tamil Nadu taxi-site patterns */
.hero-home.hero-home-dark {
    padding: 38px 0 52px;
}

.hero-shell {
    align-items: start;
    gap: 26px;
}

.hero-copy {
    max-width: 560px;
    padding-top: 20px;
}

.hero-title {
    margin: 14px 0 12px;
    font-size: clamp(2.1rem, 4vw, 3.5rem);
}

.hero-text {
    max-width: 520px;
    font-size: 16px;
    line-height: 1.7;
}

.hero-actions {
    margin-top: 24px;
}

.hero-highlight-grid {
    margin-top: 24px;
}

.booking-card {
    max-width: 430px;
    padding: 14px 14px 18px;
    border-radius: 16px;
}

.booking-tabs {
    gap: 10px !important;
    margin-bottom: 8px;
}

.booking-tabs .nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-transform: none;
}

.booking-tabs .nav-link i {
    font-size: 15px;
}

.trip-toggle {
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
}

.trip-toggle .form-check {
    flex: 0 1 auto;
    justify-content: center;
    min-height: 42px;
    min-width: 120px;
    padding: 0 14px;
    border: 1px solid #ececec;
    border-radius: 12px;
    background: #f6f6f8;
}

.trip-toggle .form-check-input {
    width: 18px;
    height: 18px;
}

.trip-toggle .form-check-label {
    font-size: 13px;
    font-weight: 700;
}

.form-label {
    margin-bottom: 4px;
    font-size: 10px;
    letter-spacing: 0.1em;
}

.form-control,
.form-select {
    min-height: 38px;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
}

.outstation-email-row {
    display: none;
}

.section-title {
    margin-bottom: 10px;
    font-size: 10px;
    letter-spacing: 0.1em;
}

.cab-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.cab-card {
    padding: 6px 5px 8px;
    border-radius: 8px;
    background: #ffffff;
    border: 2px solid rgba(255, 192, 0, 0.1);
    box-shadow: none;
}

.cab-card .rate-tag,
.cab-card .availability {
    margin-bottom: 4px;
    background: transparent;
    color: #ffc000;
    font-size: 8px;
    font-weight: 800;
}

.cab-image {
    min-height: 34px;
}

.cab-image img {
    height: 24px;
}

.cab-name {
    margin-top: 4px;
    font-size: 8px;
    color: #111111;
    letter-spacing: 0.04em;
}

.cab-card:hover,
.cab-card.active {
    border-color: #ffc000;
    transform: translateY(-1px);
}

.action-btn {
    min-height: 40px;
    border-radius: 8px;
    font-size: 12px;
    letter-spacing: 0.1em;
}

.home-services-strip,
.home-why-section,
.home-pricing-section,
.home-contact-band {
    background: #ffffff;
}

.home-services-strip {
    padding-top: 58px;
    padding-bottom: 70px;
}

.home-service-pill-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-top: 18px;
}

.home-service-pill {
    position: relative;
    padding: 18px 34px 8px;
    text-align: center;
}

.home-service-pill:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 18px;
    right: 0;
    width: 1px;
    height: 260px;
    background: repeating-linear-gradient(
        to bottom,
        rgba(6, 22, 152, 0.18) 0,
        rgba(6, 22, 152, 0.18) 3px,
        transparent 3px,
        transparent 8px
    );
}

.home-service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    margin-bottom: 22px;
    color: #ffc000;
    font-size: 54px;
}

.home-service-pill strong {
    display: block;
    margin-bottom: 12px;
    color: #111111;
    font-size: 17px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.35;
}

.home-service-pill p {
    margin: 0;
    color: #888888;
    font-size: 16px;
    line-height: 1.7;
}

.home-pricing-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 22px;
    padding: 18px 22px;
    border-radius: 18px;
    background: #f7f9ff;
}

.home-pricing-note span {
    color: #888888;
    font-weight: 600;
}

.home-pricing-note a {
    color: #061698;
    font-weight: 800;
    text-decoration: none;
}

.our-taxi-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.our-taxi-card {
    padding: 22px 22px 28px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 18px 36px rgba(17, 24, 39, 0.05);
}

.our-taxi-media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    margin-bottom: 20px;
    border-radius: 16px;
    background: #fafafa;
}

.our-taxi-media img {
    max-width: 100%;
    height: 110px;
    object-fit: contain;
}

.our-taxi-card h3 {
    margin-bottom: 4px;
    color: #111111;
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
}

.our-taxi-rate {
    color: #ffc000;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.our-taxi-divider {
    display: block;
    width: 38px;
    height: 4px;
    margin: 14px auto 18px;
    border-radius: 999px;
    background: #ffc000;
}

.our-taxi-specs {
    padding: 0;
    margin: 0;
    list-style: none;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 18px;
}

.our-taxi-specs li {
    display: grid;
    grid-template-columns: 24px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #64748b;
    font-size: 14px;
}

.our-taxi-specs i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ffc000;
    color: #111111;
    font-size: 12px;
}

.our-taxi-specs strong {
    color: #475569;
    font-weight: 700;
}

.our-taxi-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 42px;
    margin-top: 18px;
    border-radius: 999px;
    background: #ffc000;
    color: #111111;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
}

.home-contact-band .call-panel {
    padding: 36px 28px;
}

.home-contact-band {
    background: transparent;
    padding: 40px 0 0;
    margin-bottom: -40px;
    position: relative;
    z-index: 3;
}

.home-banner-cta {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 16px;
    align-items: center;
    padding: 34px 34px 34px 40px;
    border-radius: 0;
    background:
        linear-gradient(120deg, rgba(255, 192, 0, 0.95) 0%, rgba(255, 192, 0, 0.95) 70%, rgba(255, 192, 0, 0.95) 100%),
        url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1600&q=80") left center / cover no-repeat;
    position: relative;
    overflow: hidden;
}

.home-banner-cta::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: #111111;
    clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
}

.home-banner-copy {
    position: relative;
    z-index: 2;
    max-width: 520px;
}

.home-banner-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #111111;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.home-banner-kicker span {
    display: inline-block;
    width: 22px;
    height: 4px;
    background: #111111;
}

.home-banner-copy h2 {
    margin: 12px 0 18px;
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    font-weight: 800;
    color: #111111;
}

.home-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 24px;
    border-radius: 6px;
    border: 2px solid #111111;
    background: transparent;
    color: #111111;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
}

.home-banner-art {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.home-banner-art img {
    width: min(100%, 360px);
    filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.18));
}

.home-banner-rings {
    position: absolute;
    inset: 6px 30px;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, transparent 46%, #111111 46%, #111111 54%, transparent 54%),
        repeating-linear-gradient(135deg, rgba(255, 192, 0, 0.7) 0, rgba(255, 192, 0, 0.7) 4px, transparent 4px, transparent 8px);
    opacity: 0.9;
}

@media (max-width: 991.98px) {
    .home-banner-cta {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    .home-banner-cta::after {
        width: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        opacity: 0.08;
    }

    .home-banner-art {
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {
    .home-banner-cta {
        padding: 22px;
    }

    .home-banner-art img {
        width: 260px;
    }

    .home-banner-rings {
        inset: 0 10px;
    }
}

.home-counter-section {
    position: relative;
    z-index: 2;
    padding: 0;
    margin-top: 18px;
}

.home-counter-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: 0 14px;
    min-height: 222px;
    border-radius: 26px;
    overflow: hidden;
    background:
        repeating-linear-gradient(
            -35deg,
            rgba(255, 255, 255, 0.03) 0,
            rgba(255, 255, 255, 0.03) 8px,
            transparent 8px,
            transparent 16px
        ),
        linear-gradient(135deg, #202833 0%, #1a1a1a 42%, #242424 100%);
    box-shadow: 0 24px 50px rgba(17, 24, 39, 0.22);
    position: relative;
}

.home-counter-section .stats-grid::before,
.home-counter-section .stats-grid::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 180px;
    background: linear-gradient(135deg, rgba(74, 92, 111, 0.46) 0%, rgba(35, 44, 56, 0.95) 100%);
    clip-path: polygon(0 0, 78% 0, 100% 100%, 0 100%);
    opacity: 0.9;
}

.home-counter-section .stats-grid::before {
    left: 0;
}

.home-counter-section .stats-grid::after {
    left: 132px;
    width: 138px;
    background: linear-gradient(135deg, rgba(62, 78, 95, 0.56) 0%, rgba(35, 44, 56, 0.98) 100%);
}

.home-counter-section .stat-card {
    position: relative;
    z-index: 1;
    padding: 34px 16px 22px;
    text-align: center;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.home-counter-section .stat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.02) 0,
            rgba(255, 255, 255, 0.02) 6px,
            transparent 6px,
            transparent 12px
        );
    pointer-events: none;
}

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    margin-bottom: 14px;
    border: 5px solid #ffffff;
    border-radius: 50%;
    background: #ffc000;
    color: #111111;
    font-size: 34px;
}

.home-counter-section .stat-card strong {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 54px;
    line-height: 1;
    font-weight: 800;
}

.home-counter-section .stat-card span {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
}

.home-why-section {
    position: relative;
    padding: 112px 0 96px;
    background:
        linear-gradient(rgba(18, 18, 18, 0.62), rgba(18, 18, 18, 0.7)),
        url("https://images.unsplash.com/photo-1519583272095-6433daf26b6e?auto=format&fit=crop&w=1800&q=80") center center / cover no-repeat;
}

.home-why-section::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 20px;
    background:
        linear-gradient(90deg, #111111 50%, #ffc000 50%);
    background-size: 20px 20px;
}

.section-heading-featured {
    position: relative;
    z-index: 1;
    margin-bottom: 44px;
}

.section-heading-featured .section-kicker {
    color: #ffc000;
    font-size: 14px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 800;
}

.section-heading-featured h2 {
    color: #ffffff;
    font-size: clamp(2.8rem, 4vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.section-heading-featured::after {
    content: "";
    display: block;
    width: 58px;
    height: 6px;
    margin: 16px auto 0;
    border-radius: 999px;
    background: #ffc000;
    box-shadow: 18px 0 0 -1px #111111 inset;
}

.feature-showcase-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

.feature-showcase-card {
    padding: 22px 20px 20px;
    border-radius: 14px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 18px 34px rgba(17, 24, 39, 0.14);
}

.feature-showcase-card:nth-child(2),
.feature-showcase-card:nth-child(4) {
    margin-top: 26px;
}

.feature-showcase-card .feature-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 18px;
    border: 4px solid #111111;
    border-radius: 50%;
    background: #ffc000;
    color: #111111;
    font-size: 30px;
}

.feature-showcase-card h3 {
    margin-bottom: 12px;
    color: #111111;
    font-size: 18px;
    font-weight: 700;
}

.feature-showcase-card p {
    margin: 0;
    color: #7c8798;
    font-size: 13px;
    line-height: 1.8;
}

@media (max-width: 991.98px) {
    .hero-shell {
        grid-template-columns: 1fr;
    }

    .home-service-pill-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 0;
    }

    .home-service-pill:nth-child(2)::after {
        display: none;
    }

    .home-service-pill:not(:last-child)::after {
        height: 220px;
    }

    .home-counter-section .stats-grid,
    .feature-showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-counter-section .stats-grid::after {
        display: none;
    }

    .our-taxi-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-pricing-section .pricing-dark-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .hero-home.hero-home-dark {
        padding: 18px 0 28px;
    }

    .hero-copy {
        padding-top: 0;
    }

    .hero-highlight-grid,
    .home-service-pill-grid {
        grid-template-columns: 1fr;
    }

    .home-service-pill {
        padding: 10px 16px 0;
    }

    .home-service-pill:not(:last-child)::after {
        top: auto;
        right: auto;
        bottom: -10px;
        left: 50%;
        width: 80%;
        height: 1px;
        transform: translateX(-50%);
        background: repeating-linear-gradient(
            to right,
            rgba(6, 22, 152, 0.18) 0,
            rgba(6, 22, 152, 0.18) 3px,
            transparent 3px,
            transparent 8px
        );
    }

    .booking-card {
        padding: 12px;
        border-radius: 14px;
    }

    .booking-tabs .nav-link {
        min-height: 38px;
        font-size: 13px;
    }

    .trip-toggle .form-check {
        min-height: 40px;
        min-width: 108px;
    }

    .form-control,
    .form-select {
        min-height: 36px;
        font-size: 12px;
    }

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

    .home-service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 16px;
        font-size: 48px;
    }

    .home-pricing-note {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-counter-section .stats-grid,
    .feature-showcase-grid,
    .our-taxi-grid,
    .home-pricing-section .pricing-dark-grid {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .home-counter-section .stats-grid {
        min-height: auto;
    }

    .home-counter-section .stats-grid::before,
    .home-counter-section .stats-grid::after {
        display: none;
    }

    .home-counter-section .stat-card strong {
        font-size: 42px;
    }

    .home-counter-section .stat-card span {
        font-size: 16px;
    }

    .feature-showcase-card:nth-child(2),
    .feature-showcase-card:nth-child(4) {
        margin-top: 0;
    }
}

/* Closer Taxica live-demo styling */
:root {
    --taxi-accent: #ffc000;
    --taxi-dark: #121212;
    --taxi-dark-soft: #1b1b1b;
    --taxi-gray: #888888;
    --taxi-light: #ffffff;
}

.site-topbar {
    background: #111111;
    color: #ffffff;
}

.site-topbar-inner,
.site-topbar-info,
.site-topbar-socials {
    display: flex;
    align-items: center;
}

.site-topbar-inner {
    justify-content: space-between;
    gap: 18px;
    min-height: 44px;
}

.site-topbar-info,
.site-topbar-socials {
    gap: 18px;
    flex-wrap: wrap;
}

.site-topbar a,
.site-topbar-hours,
.site-topbar-socials span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 13px;
    text-decoration: none;
}

.site-topbar-socials a {
    width: 26px;
    height: 26px;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 192, 0, 0.14);
}

.site-header {
    position: sticky;
    top: 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 20px rgba(17, 24, 39, 0.06);
}

.site-nav a.active,
.site-phone i,
.footer-contact i,
.home-pricing-note a,
.package-card-footer a,
.route-book-btn,
.services-dark-card a {
    color: #ffc000;
}

.site-book-btn,
.action-btn,
.pricing-dark-btn,
.routes-link,
.packages-link,
.footer-newsletter-btn,
.footer-cta-btn,
.booking-tabs .nav-link.active,
.mobile-sticky-book {
    background: #ffc000;
    color: #111111;
    box-shadow: 0 14px 28px rgba(255, 192, 0, 0.22);
}

.site-book-btn:hover,
.action-btn:hover,
.pricing-dark-btn:hover,
.routes-link:hover,
.packages-link:hover,
.footer-newsletter-btn:hover,
.footer-cta-btn:hover,
.booking-tabs .nav-link.active:hover,
.mobile-sticky-book:hover {
    background: #e5ac00;
    color: #111111;
}

.hero-home.hero-home-dark,
.page-hero,
.contact-panel,
.call-panel,
.home-pricing-section,
.services-dark-card-blue {
    background:
        linear-gradient(120deg, rgba(18, 18, 18, 0.94) 0%, rgba(18, 18, 18, 0.85) 55%, rgba(255, 192, 0, 0.18) 100%),
        url("https://images.unsplash.com/photo-1494976388531-d1058494cdd8?auto=format&fit=crop&w=1800&q=80") center center / cover no-repeat;
}

.hero-overlay {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.32)),
        radial-gradient(circle at 80% 22%, rgba(255, 192, 0, 0.22), transparent 24%);
}

.hero-badge,
.page-kicker {
    background: rgba(255, 192, 0, 0.14);
    border-color: rgba(255, 192, 0, 0.28);
    color: #ffc000;
}

.hero-title span,
.taxica-about-copy h2 span,
.section-kicker,
.pricing-dark-price,
.home-service-icon,
.feature-icon,
.taxica-check-list i,
.taxica-about-badge-icon {
    color: #ffc000;
}

.taxica-about-badge-icon {
    background: #ffc000;
    color: #111111;
}

.taxica-about-rings::before,
.taxica-about-rings::after,
.taxica-about-rings-secondary::before,
.taxica-about-rings-secondary::after {
    background: #ffc000;
}

.booking-card,
.trip-card,
.service-mini-card,
.pricing-dark-card,
.package-card,
.route-card,
.service-card,
.about-focus-card,
.feature-card,
.info-card,
.contact-form-card,
.contact-map-card,
.tariff-table-card,
.stat-card,
.home-service-pill,
.simple-list-item {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 16px 40px rgba(17, 24, 39, 0.05);
}

.service-mini-card h3,
.pricing-dark-card h3,
.package-card h3,
.route-card strong,
.service-card h2,
.info-card h2,
.feature-card h3,
.about-focus-card h3,
.section-heading h2,
.about-copy h2,
.page-hero h1,
.hero-title,
.taxica-about-copy h2 {
    color: #111111;
}

.hero-title,
.page-hero h1,
.contact-panel h2,
.contact-panel p,
.call-panel a,
.call-panel span {
    color: #ffffff;
}

.section-heading p,
.about-copy p,
.service-card p,
.feature-card p,
.info-card p,
.simple-list-item span,
.route-card p,
.package-card p,
.home-service-pill p,
.taxica-about-copy p,
.home-pricing-note span {
    color: #888888;
}

.booking-tabs .nav-link {
    border-color: rgba(0, 0, 0, 0.08);
    background: #ffffff;
    color: #111111;
}

.trip-toggle .form-check,
.form-control,
.form-select,
.cab-card,
.estimate-card,
.booking-summary-item,
.estimate-table,
.estimate-row {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.12);
    color: #111111;
}

.trip-toggle .form-check-input:checked {
    background-color: #ffc000;
    border-color: #ffc000;
    box-shadow: 0 0 0 0.2rem rgba(255, 192, 0, 0.18);
}

.cab-card .rate-tag,
.cab-card .availability,
.booking-confirm-badge,
.trip-card-badge,
.trip-pill {
    color: #d69d00;
}

.cab-card:hover,
.cab-card.active {
    border-color: #ffc000;
}

.trips-filter-arrow {
    background: #ffc000;
    color: #111111;
}

.tariff-table thead th {
    background: #111111;
    color: #ffffff;
}

.contact-list-icon,
.service-icon,
.about-focus-icon,
.feature-icon {
    background: rgba(255, 192, 0, 0.16);
    color: #111111;
}

.site-footer {
    position: relative;
    padding: 0;
    background: #111111;
    color: #ffffff;
    border-top: 0;
}

.site-footer-checker {
    height: 40px;
    background:
        linear-gradient(90deg, #111111 50%, #ffc000 50%);
    background-size: 40px 20px;
    background-repeat: repeat;
}

.site-footer-checker::after {
    content: "";
    display: block;
    height: 20px;
    background:
        linear-gradient(90deg, #ffc000 50%, transparent 50%);
    background-size: 20px 20px;
    background-repeat: repeat;
}

.site-footer .container {
    padding-top: 48px;
    padding-bottom: 0;
}

.footer-main {
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
    gap: 46px;
    padding: 0 0 54px;
}

.footer-col h3 {
    margin-bottom: 22px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
}

.footer-col h3::after {
    content: "";
    display: block;
    width: 90px;
    height: 2px;
    margin-top: 14px;
    background: linear-gradient(90deg, #ffc000 0 34%, rgba(255, 255, 255, 0.22) 34% 100%);
}

.footer-col p,
.footer-links a,
.footer-contact li,
.footer-bottom p,
.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffc000;
    color: #111111;
    margin-top: 0;
}

.footer-links a,
.footer-contact li span {
    color: rgba(255, 255, 255, 0.92);
}

.footer-newsletter-col p {
    margin-bottom: 18px;
}

.footer-newsletter {
    display: grid;
    gap: 18px;
}

.footer-newsletter-input {
    min-height: 56px;
    padding: 0 18px;
    border: 0;
    border-radius: 14px;
    background: #ffffff;
    color: #111111;
    font-size: 17px;
}

.footer-newsletter-btn {
    min-height: 54px;
    border: 0;
    border-radius: 999px;
    font-size: 17px;
    font-weight: 800;
}

.footer-bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 26px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 42%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0 14%, #ffc000 14% 100%);
    z-index: 0;
}

.footer-bottom > * {
    position: relative;
    z-index: 1;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 28px;
}

.footer-bottom-socials {
    display: flex;
    gap: 14px;
}

.footer-bottom-socials a,
.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #111111;
    border: 1px solid rgba(255, 192, 0, 0.22);
    color: #ffc000;
    text-decoration: none;
}

@media (max-width: 991.98px) {
    .footer-main,
    .footer-bottom,
    .footer-bottom-right {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom::after {
        width: 100%;
        height: 96px;
        top: auto;
        bottom: 0;
    }
}

@media (max-width: 767.98px) {
    .site-footer-checker {
        height: 30px;
        background-size: 30px 15px;
    }

    .site-footer-checker::after {
        height: 15px;
        background-size: 15px 15px;
    }

    .site-footer .container {
        padding-top: 48px;
    }

    .footer-main {
        gap: 30px;
    }
}

.taxica-about-section,
.home-counter-section,
.home-contact-band {
    background: #ffffff;
}

.taxica-about-layout {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 22px;
    align-items: center;
}

.taxica-about-art {
    position: relative;
    min-height: 470px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.taxica-about-art img {
    position: relative;
    z-index: 3;
    width: min(100%, 640px);
    filter: drop-shadow(0 22px 30px rgba(17, 24, 39, 0.16));
}

.taxica-about-rings {
    position: absolute;
    inset: 44px 58px 34px 28px;
    z-index: 1;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, transparent 41%, #111111 41%, #111111 51%, transparent 51%),
        radial-gradient(circle at center, transparent 56%, #111111 56%, #111111 61%, transparent 61%),
        radial-gradient(circle at center, transparent 66%, #111111 66%, #111111 70%, transparent 70%);
    transform: rotate(-8deg);
}

.taxica-about-rings::before,
.taxica-about-rings::after,
.taxica-about-rings-secondary::before,
.taxica-about-rings-secondary::after,
.taxica-about-rings-accent::before,
.taxica-about-rings-accent::after {
    content: "";
    position: absolute;
    background: #ffc000;
}

.taxica-about-rings::before {
    top: 18px;
    left: 66px;
    width: 32px;
    height: 4px;
}

.taxica-about-rings::after {
    top: 12px;
    left: 112px;
    width: 18px;
    height: 4px;
}

.taxica-about-rings-secondary {
    inset: 26px 32px 18px 46px;
    background: none;
    z-index: 2;
}

.taxica-about-rings-secondary::before {
    top: 8px;
    right: 128px;
    width: 22px;
    height: 4px;
}

.taxica-about-rings-secondary::after {
    top: 18px;
    right: 86px;
    width: 12px;
    height: 4px;
}

.taxica-about-rings-accent {
    position: absolute;
    inset: 34px 42px 26px 40px;
    z-index: 2;
    background: none;
    border-radius: 50%;
}

.taxica-about-rings-accent::before {
    bottom: 52px;
    right: 46px;
    width: 14px;
    height: 4px;
}

.taxica-about-rings-accent::after {
    bottom: 18px;
    left: 158px;
    width: 4px;
    height: 18px;
}

.taxica-about-art::before,
.taxica-about-art::after {
    content: "";
    position: absolute;
    z-index: 2;
    background: #ffc000;
}

.taxica-about-art::before {
    left: 56px;
    bottom: 38px;
    width: 28px;
    height: 4px;
}

.taxica-about-art::after {
    left: 198px;
    bottom: 8px;
    width: 16px;
    height: 4px;
}

.taxica-about-badge {
    position: absolute;
    top: 8px;
    left: 6px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 22px 12px 12px;
    border-radius: 999px;
    background: #111111;
    color: #ffffff;
    box-shadow: 0 16px 32px rgba(17, 24, 39, 0.12);
}

.taxica-about-badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffc000;
    color: #111111;
    font-size: 22px;
}

.taxica-about-badge strong,
.taxica-about-badge span {
    display: block;
    line-height: 1.2;
}

.taxica-about-badge strong {
    font-size: 14px;
    font-weight: 800;
}

.taxica-about-badge span {
    margin-top: 3px;
    font-size: 14px;
    font-weight: 700;
}

.taxica-about-copy h2 {
    margin-bottom: 18px;
    font-size: clamp(2.4rem, 4.2vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.taxica-about-copy h2 span {
    color: #ffc000;
}

.taxica-about-copy p {
    max-width: 560px;
    margin-bottom: 18px;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.75;
}

.taxica-check-list {
    display: grid;
    gap: 12px;
    margin: 22px 0 30px;
}

.taxica-check-list div {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #555555;
    font-weight: 600;
    font-size: 15px;
}

.taxica-check-list i {
    color: #ffc000;
}

.taxica-about-copy .site-book-btn {
    min-height: 42px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 13px;
}

.home-service-pill {
    position: relative;
}

.home-service-pill a {
    display: inline-flex;
    margin-top: 10px;
    color: #061698;
    font-weight: 800;
    text-decoration: none;
}

.home-service-pill-accent a {
    color: #ffffff;
}

.home-counter-section {
    padding: 34px 0;
}

.home-counter-section .stat-card {
    text-align: center;
}

.home-counter-section .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-why-section {
    background: #f7f9ff;
}

.home-pricing-section {
    background: #ffffff;
}

.home-pricing-section .section-kicker,
.home-pricing-section h2,
.home-pricing-section p {
    color: #111111;
}

.home-pricing-section .section-heading {
    margin-bottom: 46px;
}

.home-pricing-section .section-kicker {
    color: #ffc000;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.home-pricing-section .pricing-dark-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.home-pricing-section .pricing-dark-card {
    padding: 18px 18px 22px;
    border-radius: 18px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 16px 34px rgba(17, 24, 39, 0.06);
}

.pricing-dark-media {
    min-height: auto;
    margin-bottom: 10px;
    background: transparent;
    border-radius: 0;
}

.pricing-dark-media img {
    height: 120px;
}

.pricing-dark-card h3 {
    margin-bottom: 2px;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.pricing-dark-subtitle {
    margin-bottom: 38px;
    color: #ffc000;
    font-size: 11px;
    font-weight: 700;
}

.pricing-dark-panel {
    position: relative;
    padding: 42px 22px 18px;
    border-radius: 16px;
    background:
        radial-gradient(circle at left bottom, rgba(255, 192, 0, 0.12), transparent 30%),
        #111111;
    overflow: hidden;
    min-height: 278px;
}

.pricing-dark-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 92%, rgba(255, 192, 0, 0.12) 0, rgba(255, 192, 0, 0.12) 1px, transparent 1px);
    background-size: 12px 12px;
    opacity: 0.16;
    pointer-events: none;
}

.pricing-dark-panel::after {
    content: "";
    position: absolute;
    inset: 16px auto -24px -18px;
    width: 180px;
    background:
        repeating-radial-gradient(
            circle at left bottom,
            transparent 0 14px,
            rgba(255, 192, 0, 0.14) 14px 15px
        );
    opacity: 0.55;
    pointer-events: none;
}

.pricing-dark-badge {
    position: absolute;
    top: -34px;
    left: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    border: 2px dashed #ffc000;
    border-radius: 50%;
    background: #ffc000;
    color: #111111;
    font-size: 28px;
    transform: translateX(-50%);
    box-shadow: 0 0 0 8px #ffffff;
}

.pricing-dark-list {
    padding: 0;
    margin: 0 0 18px;
    list-style: none;
    text-align: left;
}

.pricing-dark-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 7px 0;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    position: relative;
}

.pricing-dark-list li::before {
    content: "\F26E";
    font-family: bootstrap-icons;
    color: #ffc000;
    margin-right: 8px;
    font-size: 11px;
}

.pricing-dark-list li span {
    flex: 1;
    text-align: left;
}

.pricing-dark-list li strong {
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}

.pricing-dark-btn {
    min-height: 40px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    width: 100%;
    max-width: 190px;
    margin: 6px auto 0;
}

.pricing-dark-btn i {
    margin-left: 6px;
}

.home-contact-band .call-panel {
    background:
        linear-gradient(135deg, #061698 0%, #0d1fbb 100%);
}

@media (max-width: 991.98px) {
    .site-topbar {
        display: none;
    }

    .taxica-about-layout {
        grid-template-columns: 1fr;
    }

    .taxica-about-art {
        min-height: 380px;
    }

    .home-counter-section .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-pricing-section .pricing-dark-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .our-taxi-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .taxica-about-art {
        min-height: 300px;
    }

    .taxica-about-rings {
        inset: 42px 14px 18px 10px;
    }

    .taxica-about-rings-secondary {
        inset: 30px 8px 18px 16px;
    }

    .taxica-about-rings-accent {
        inset: 34px 10px 18px 14px;
    }

    .taxica-about-badge {
        top: -6px;
        left: 0;
        gap: 10px;
        padding: 10px 14px 10px 10px;
    }

    .taxica-about-badge-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .taxica-about-badge strong,
    .taxica-about-badge span {
        font-size: 13px;
    }

    .taxica-about-copy h2 {
        font-size: 2rem;
    }

    .home-counter-section .stats-grid {
        grid-template-columns: 1fr;
    }

    .home-pricing-section .pricing-dark-grid {
        grid-template-columns: 1fr;
    }

    .pricing-dark-card h3 {
        font-size: 20px;
    }

    .our-taxi-grid {
        grid-template-columns: 1fr;
    }
}

/* Packages, Featured Routes, Routes refresh (homepage + inner pages) */
.packages-dark-section,
.routes-section-dark,
.trips-section,
.trips-section-dark {
    background: #ffffff;
    color: #111111;
}

.packages-dark-section .section-heading h2,
.routes-section-dark .section-heading h2,
.trips-section .trips-header h2,
.trips-section-dark .trips-header h2 {
    color: #111111;
}

.packages-dark-section .section-kicker,
.routes-section-dark .section-route-label,
.trips-section .section-kicker,
.trips-section-dark .section-kicker {
    color: #ffc000;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.package-grid,
.package-grid-dark {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.package-card,
.package-card-dark {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(17, 24, 39, 0.06);
    overflow: hidden;
}

.package-card-media img {
    height: 220px;
    object-fit: cover;
}

.package-card-body {
    padding: 20px 20px 22px;
}

.package-card-body h3 {
    margin-bottom: 8px;
    color: #111111;
    font-weight: 800;
}

.package-card-body p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.7;
}

.package-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.package-card-footer span {
    color: #111111;
    font-weight: 700;
}

.package-card-footer a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: #ffc000;
    color: #111111;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
}

.trips-section .trips-filter-card,
.trips-section-dark .trips-filter-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 16px 32px rgba(17, 24, 39, 0.06);
}

.trips-section .trips-filter-label,
.trips-section-dark .trips-filter-label {
    color: #111111;
}

.trips-section .trips-select,
.trips-section-dark .trips-select {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: #111111;
}

.popular-trips-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.trip-card {
    padding: 16px 18px 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(17, 24, 39, 0.06);
}

.trip-card-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 16px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: #111111;
    color: #ffc000;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.trip-card-head {
    align-items: flex-start;
    gap: 10px;
}

.trip-card-head h3 {
    margin: 0 0 4px;
    color: #111111;
    font-size: 18px;
    font-weight: 800;
}

.trip-rate-line {
    color: #555555;
    font-size: 13px;
    font-weight: 600;
}

.trip-rate-line strong {
    color: #111111;
    font-size: 13px;
}

.trip-card-head img {
    width: 88px;
    height: 44px;
    object-fit: contain;
}

.trip-detail-list {
    margin: 14px 0 18px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0;
}

.trip-detail-item {
    display: grid;
    grid-template-columns: 36px auto 1fr;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.trip-detail-item:first-child {
    padding-top: 6px;
}

.trip-detail-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.trip-detail-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffc000;
    color: #111111;
    font-size: 15px;
}

.trip-detail-label {
    color: #888888;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.trip-detail-item strong {
    justify-self: end;
    color: #111111;
    font-size: 16px;
    font-weight: 800;
}

.trip-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    margin-top: 8px;
    border: 2px solid #ffc000;
    border-radius: 999px;
    background: #111111;
    color: #ffc000;
    font-size: 14px;
    font-weight: 700;
}

.trip-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    margin-top: 16px;
    border-radius: 16px;
    background: #111111;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.trip-book-btn:hover {
    background: #ffc000;
    color: #111111;
}

.route-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.route-marquee {
    position: relative;
    display: grid;
    gap: 18px;
    overflow: hidden;
    padding: 8px 0;
}

.route-marquee-track {
    display: flex;
    gap: 0;
    align-items: stretch;
    will-change: transform;
}

.route-marquee-track-left {
    animation: routeMarqueeLeft 28s linear infinite;
}

.route-marquee-track-right {
    animation: routeMarqueeRight 28s linear infinite;
}

.route-marquee:hover .route-marquee-track {
    animation-play-state: paused;
}

.route-marquee-slide {
    flex: 0 0 100%;
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

@keyframes routeMarqueeLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes routeMarqueeRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.route-card,
.route-card-dark {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(17, 24, 39, 0.06);
    overflow: hidden;
}

.route-card-media img {
    height: 210px;
    object-fit: cover;
}

.route-card-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.route-card-overlay h3 {
    color: #ffffff;
}

.route-card-body {
    padding: 18px 18px 22px;
}

.route-meta-line strong {
    color: #111111;
}

.route-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: #ffc000;
    color: #111111;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
}

@media (max-width: 991.98px) {
    .package-grid,
    .package-grid-dark,
    .route-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .popular-trips-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .route-marquee-slide {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .package-grid,
    .package-grid-dark,
    .route-grid {
        grid-template-columns: 1fr;
    }

    .popular-trips-grid {
        grid-template-columns: 1fr;
    }

    .route-marquee-slide {
        grid-template-columns: 1fr;
    }
}

/* Homepage polish */
.hero-home,
.homepage-section {
    color: #111111;
}

.hero-home .hero-copy,
.homepage-section .section-heading,
.homepage-section .trips-header,
.homepage-section .taxica-about-copy,
.homepage-section .home-banner-copy {
    position: relative;
    z-index: 1;
}

.hero-badge,
.section-kicker,
.section-route-label,
.taxica-about-copy .about-mini-title,
.home-banner-kicker {
    color: #ffc000 !important;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-title,
.section-heading h2,
.trips-header h2,
.taxica-about-copy h2,
.home-banner-copy h2 {
    color: #111111 !important;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.hero-title span,
.section-heading h2 span,
.trips-header h2 span,
.taxica-about-copy h2 span {
    color: #ffc000;
}

.hero-text,
.section-heading p,
.trips-header-copy p,
.taxica-about-copy p,
.home-services-strip p,
.feature-showcase-card p,
.route-card-body p,
.trip-rate-line,
.trip-detail-label,
.trips-note {
    color: #777777 !important;
    line-height: 1.7;
}

.homepage-section {
    padding: 56px 0;
}

.section-heading,
.trips-header {
    margin-bottom: 30px;
}

.section-heading h2,
.trips-header h2 {
    margin: 8px 0 0;
}

.hero-action,
.action-btn,
.home-banner-btn,
.trip-book-btn,
.route-book-btn,
.our-taxi-btn,
.pricing-dark-btn,
.fleet-book-btn,
.booking-confirm-actions .btn {
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.hero-action:hover,
.action-btn:hover,
.home-banner-btn:hover,
.trip-book-btn:hover,
.route-book-btn:hover,
.our-taxi-btn:hover,
.pricing-dark-btn:hover,
.fleet-book-btn:hover,
.booking-confirm-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(17, 17, 17, 0.14);
}

.hero-action-primary,
.action-btn,
.home-banner-btn,
.route-book-btn,
.pricing-dark-btn,
.fleet-book-btn {
    background: #ffc000;
    color: #111111;
}

.hero-action-primary:hover,
.action-btn:hover,
.home-banner-btn:hover,
.route-book-btn:hover,
.pricing-dark-btn:hover,
.fleet-book-btn:hover {
    background: #111111;
    color: #ffc000;
}

.hero-action-secondary,
.trip-book-btn,
.our-taxi-btn,
.booking-confirm-actions .btn-outline-secondary {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
}

.hero-action-secondary:hover,
.trip-book-btn:hover,
.our-taxi-btn:hover,
.booking-confirm-actions .btn-outline-secondary:hover {
    background: #ffc000;
    color: #111111;
    border-color: #ffc000;
}

.booking-card,
.trip-card,
.our-taxi-card,
.pricing-dark-card,
.route-card,
.route-card-dark,
.package-card,
.package-card-dark,
.feature-showcase-card,
.stat-card,
.home-banner-cta,
.trips-filter-card {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.trip-card:hover,
.our-taxi-card:hover,
.pricing-dark-card:hover,
.route-card:hover,
.route-card-dark:hover,
.package-card:hover,
.package-card-dark:hover,
.feature-showcase-card:hover,
.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(17, 24, 39, 0.12);
    border-color: rgba(255, 192, 0, 0.45);
}

.home-services-strip .service-strip-item,
.feature-showcase-card,
.stat-card,
.trip-card,
.our-taxi-card,
.pricing-dark-card,
.package-card,
.route-card,
.route-card-dark,
.home-banner-cta {
    animation: homepageRise 0.8s ease both;
}

.home-services-strip .service-strip-item:nth-child(2),
.feature-showcase-card:nth-child(2),
.stat-card:nth-child(2),
.trip-card:nth-child(2),
.our-taxi-card:nth-child(2),
.pricing-dark-card:nth-child(2),
.package-card:nth-child(2),
.route-card:nth-child(2),
.route-card-dark:nth-child(2) {
    animation-delay: 0.08s;
}

.home-services-strip .service-strip-item:nth-child(3),
.feature-showcase-card:nth-child(3),
.stat-card:nth-child(3),
.trip-card:nth-child(3),
.our-taxi-card:nth-child(3),
.pricing-dark-card:nth-child(3),
.package-card:nth-child(3),
.route-card:nth-child(3),
.route-card-dark:nth-child(3) {
    animation-delay: 0.16s;
}

.home-services-strip .service-strip-item:nth-child(4),
.feature-showcase-card:nth-child(4),
.stat-card:nth-child(4),
.trip-card:nth-child(4),
.our-taxi-card:nth-child(4),
.pricing-dark-card:nth-child(4),
.package-card:nth-child(4),
.route-card:nth-child(4),
.route-card-dark:nth-child(4) {
    animation-delay: 0.24s;
}

.route-card-media img,
.trip-card-head img,
.our-taxi-media img,
.pricing-dark-card > img,
.home-banner-art img {
    transition: transform 0.4s ease;
}

.route-card:hover .route-card-media img,
.trip-card:hover .trip-card-head img,
.our-taxi-card:hover .our-taxi-media img,
.pricing-dark-card:hover > img,
.home-banner-cta:hover .home-banner-art img {
    transform: translateY(-4px) scale(1.03);
}

.trips-filter-card,
.booking-card {
    border-radius: 24px;
}

.trips-filter-bar {
    align-items: end;
}

.trips-filter-label,
.form-label,
.section-title {
    color: #111111;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.trip-card-head,
.route-meta-line,
.our-taxi-head,
.pricing-dark-card h3 {
    color: #111111;
}

.home-banner-copy h2,
.taxica-about-copy h2 {
    max-width: 12ch;
}

.route-marquee {
    padding-top: 12px;
}

@keyframes homepageRise {
    0% {
        opacity: 0;
        transform: translateY(18px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991.98px) {
    .homepage-section {
        padding: 48px 0;
    }

    .home-banner-copy h2,
    .taxica-about-copy h2 {
        max-width: none;
    }
}

@media (max-width: 767.98px) {
    .homepage-section {
        padding: 40px 0;
    }

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

    .trip-card:hover,
    .our-taxi-card:hover,
    .pricing-dark-card:hover,
    .route-card:hover,
    .route-card-dark:hover,
    .package-card:hover,
    .package-card-dark:hover,
    .feature-showcase-card:hover,
    .stat-card:hover {
        transform: translateY(-3px);
    }
}

/* Public pages theme sync */
.page-hero,
.seo-hero,
.thankyou-page {
    position: relative;
    overflow: hidden;
}

.page-hero {
    padding: 88px 0 72px;
    background:
        radial-gradient(circle at top left, rgba(255, 192, 0, 0.18), transparent 24%),
        linear-gradient(180deg, #fffdf7 0%, #ffffff 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.page-hero::after,
.seo-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 5px;
    background: linear-gradient(90deg, #111111 0 16px, #ffc000 16px 32px);
    background-size: 32px 5px;
    opacity: 0.9;
}

.page-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    color: #ffc000;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.page-hero h1,
.seo-hero-copy h1,
.thankyou-hero-card h1,
.thankyou-panel h2,
.seo-copy-card h2,
.seo-side-card h3,
.contact-panel h2,
.contact-form-card h2,
.info-card h2,
.service-card h2,
.about-focus-card h3,
.feature-card h3,
.service-fleet-body h3 {
    color: #111111;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.page-hero p,
.seo-hero-copy p,
.seo-hero-panel p,
.thankyou-hero-card p,
.thankyou-step p,
.contact-panel p,
.contact-form-card p,
.info-card p,
.service-card p,
.about-focus-card p,
.feature-card p,
.simple-list-item span,
.seo-copy-card p,
.seo-note,
.contact-map-placeholder span,
.thankyou-detail-item span {
    color: #777777;
    line-height: 1.7;
}

.page-section {
    padding: 60px 0;
}

.page-section-soft {
    background:
        radial-gradient(circle at top right, rgba(255, 192, 0, 0.1), transparent 22%),
        linear-gradient(180deg, #fffef9 0%, #fffaf0 100%);
}

.page-section .section-heading,
.page-section .section-heading-wide {
    margin-bottom: 30px;
}

.service-card,
.info-card,
.about-focus-card,
.feature-card,
.service-fleet-card,
.contact-form-card,
.contact-map-card,
.contact-panel,
.tariff-table-card,
.seo-copy-card,
.seo-side-card,
.seo-cab-card,
.thankyou-hero-card,
.thankyou-panel,
.thankyou-highlight-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(17, 24, 39, 0.07);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.service-card:hover,
.info-card:hover,
.about-focus-card:hover,
.feature-card:hover,
.service-fleet-card:hover,
.contact-form-card:hover,
.contact-map-card:hover,
.contact-panel:hover,
.tariff-table-card:hover,
.seo-copy-card:hover,
.seo-side-card:hover,
.seo-cab-card:hover,
.thankyou-panel:hover,
.thankyou-highlight-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 192, 0, 0.45);
    box-shadow: 0 24px 54px rgba(17, 24, 39, 0.12);
}

.service-icon,
.about-focus-icon,
.feature-icon,
.contact-list-icon,
.thankyou-badge,
.seo-chip,
.route-pill,
.seo-cab-rate {
    background: rgba(255, 192, 0, 0.14);
    color: #111111;
    border-color: rgba(255, 192, 0, 0.3);
}

.service-icon,
.about-focus-icon,
.feature-icon,
.contact-list-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffc000;
    color: #111111;
    box-shadow: 0 12px 22px rgba(255, 192, 0, 0.28);
}

.service-card ul,
.seo-check-list,
.contact-list,
.thankyou-steps,
.simple-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-card li,
.seo-check-list li,
.simple-list-item,
.thankyou-step,
.contact-list-item,
.thankyou-detail-item {
    position: relative;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.service-card li:last-child,
.seo-check-list li:last-child,
.simple-list-item:last-child,
.thankyou-step:last-child,
.contact-list-item:last-child,
.thankyou-detail-item:last-child {
    border-bottom: 0;
}

.service-card li {
    padding-left: 26px;
    color: #555555;
}

.service-card li::before,
.seo-check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffc000;
    box-shadow: 0 0 0 4px rgba(255, 192, 0, 0.14);
}

.simple-list-item strong,
.seo-copy-card strong,
.contact-list-item strong,
.thankyou-detail-item strong,
.thankyou-step strong,
.service-fleet-body strong,
.tariff-table td,
.tariff-table th {
    color: #111111;
}

.service-fleet-body strong,
.seo-cab-rate,
.thankyou-detail-item-total strong {
    color: #ffc000;
}

.service-fleet-card,
.seo-cab-card {
    overflow: hidden;
}

.service-fleet-media,
.seo-cab-icon,
.contact-map-embed {
    background:
        radial-gradient(circle at top left, rgba(255, 192, 0, 0.12), transparent 28%),
        #fffdf8;
}

.service-fleet-media img,
.seo-cab-icon img {
    transition: transform 0.35s ease;
}

.service-fleet-card:hover .service-fleet-media img,
.seo-cab-card:hover .seo-cab-icon img {
    transform: translateY(-4px) scale(1.04);
}

.contact-submit-btn,
.seo-panel-actions .hero-action,
.thankyou-primary-link,
.thankyou-secondary-link,
.package-card-footer a,
.route-pill,
.contact-map-placeholder {
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.contact-submit-btn,
.thankyou-primary-link,
.package-card-footer a,
.contact-map-placeholder {
    background: #ffc000;
    color: #111111;
    border: 1px solid #ffc000;
}

.contact-submit-btn:hover,
.thankyou-primary-link:hover,
.package-card-footer a:hover,
.contact-map-placeholder:hover {
    background: #111111;
    color: #ffc000;
    border-color: #111111;
    transform: translateY(-2px);
}

.thankyou-secondary-link,
.route-pill {
    background: #111111;
    color: #ffffff;
    border: 1px solid #111111;
}

.thankyou-secondary-link:hover,
.route-pill:hover {
    background: #ffc000;
    color: #111111;
    border-color: #ffc000;
    transform: translateY(-2px);
}

.seo-hero {
    padding: 90px 0 76px;
    color: #ffffff;
    background-size: cover;
    background-position: center;
}

.seo-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17, 17, 17, 0.9), rgba(17, 17, 17, 0.62)),
        radial-gradient(circle at top right, rgba(255, 192, 0, 0.22), transparent 24%);
}

.seo-hero-inner {
    position: relative;
    z-index: 1;
}

.seo-hero-copy h1,
.seo-hero-copy p,
.seo-hero-panel h2,
.seo-hero-panel p {
    color: #ffffff;
}

.seo-hero-panel {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: rgba(17, 17, 17, 0.72);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(12px);
}

.seo-chip {
    border: 1px solid rgba(255, 192, 0, 0.35);
    background: rgba(255, 192, 0, 0.16);
    color: #ffffff;
}

.seo-copy-card,
.seo-side-card {
    padding: 28px;
}

.seo-cab-card {
    text-align: center;
    padding: 20px;
}

.seo-cab-rate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    margin-bottom: 16px;
    color: #111111;
    font-weight: 800;
}

.seo-note {
    text-align: center;
    margin-top: 18px;
    font-weight: 600;
}

.contact-panel,
.contact-form-card,
.contact-map-card {
    padding: 30px;
}

.contact-form .form-control,
.contact-form .form-select,
.thankyou-page .form-control {
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 16px;
    min-height: 52px;
    background: #ffffff;
    color: #111111;
}

.contact-textarea {
    min-height: 140px;
}

.tariff-table thead th {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
    font-weight: 800;
}

.tariff-table tbody tr:hover {
    background: rgba(255, 192, 0, 0.06);
}

.thankyou-page {
    padding: 72px 0;
    background:
        radial-gradient(circle at top left, rgba(255, 192, 0, 0.14), transparent 24%),
        linear-gradient(180deg, #fffdf7 0%, #ffffff 100%);
}

.thankyou-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 16px;
    border-radius: 999px;
    font-weight: 800;
    margin-bottom: 18px;
}

.thankyou-share-btn {
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #ffffff;
    color: #111111;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease;
}

.thankyou-share-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 192, 0, 0.5);
    background: #111111;
    color: #ffc000;
}

.page-hero .container,
.page-section .container,
.seo-hero-inner,
.thankyou-shell {
    animation: publicPageFade 0.85s ease both;
}

.service-card,
.info-card,
.about-focus-card,
.feature-card,
.service-fleet-card,
.contact-panel,
.contact-form-card,
.contact-map-card,
.seo-copy-card,
.seo-side-card,
.seo-cab-card,
.thankyou-panel,
.thankyou-highlight-card {
    animation: publicCardRise 0.8s ease both;
}

@keyframes publicPageFade {
    0% {
        opacity: 0;
        transform: translateY(12px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes publicCardRise {
    0% {
        opacity: 0;
        transform: translateY(18px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-contact-band {
    padding: 0 !important;
}

@media (max-width: 991.98px) {
    .page-hero,
    .seo-hero {
        padding: 72px 0 60px;
    }

    .page-section {
        padding: 50px 0;
    }
}

@media (max-width: 767.98px) {
    .page-hero,
    .seo-hero {
        padding: 60px 0 50px;
    }

    .page-section,
    .thankyou-page {
        padding: 42px 0;
    }

    .contact-panel,
    .contact-form-card,
    .contact-map-card,
    .seo-copy-card,
    .seo-side-card,
    .thankyou-panel,
    .thankyou-hero-card {
        padding: 22px;
    }

    .service-card:hover,
    .info-card:hover,
    .about-focus-card:hover,
    .feature-card:hover,
    .service-fleet-card:hover,
    .contact-form-card:hover,
    .contact-map-card:hover,
    .contact-panel:hover,
    .tariff-table-card:hover,
    .seo-copy-card:hover,
    .seo-side-card:hover,
    .seo-cab-card:hover,
    .thankyou-panel:hover,
    .thankyou-highlight-card:hover {
        transform: translateY(-3px);
    }
}

/* Inner fleet + feature sync */
.page-section-featured {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(rgba(17, 17, 17, 0.82), rgba(17, 17, 17, 0.82)),
        url('https://images.unsplash.com/photo-1519583272095-6433daf26b6e?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat !important;
}

.page-section-featured .section-kicker,
.page-section-featured h2,
.page-section-featured p {
    color: #ffffff !important;
}

.page-section-featured .feature-grid {
    position: relative;
    z-index: 1;
    margin-top: 0;
    align-items: end;
}

.page-section-featured .feature-card {
    padding: 28px 24px;
    border-radius: 24px;
    background: #ffffff;
}

.page-section-featured .feature-card:nth-child(2),
.page-section-featured .feature-card:nth-child(4) {
    transform: translateY(18px);
}

.service-fleet-grid,
.seo-cab-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.service-fleet-card,
.seo-cab-card {
    padding: 22px 22px 28px;
    border-radius: 20px;
    background: #ffffff;
    text-align: left;
}

.service-fleet-media,
.seo-cab-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    margin-bottom: 20px;
    border-radius: 16px;
    background: #fafafa;
    padding: 18px;
}

.service-fleet-media img,
.seo-cab-icon img {
    max-width: 100%;
    height: 110px;
    max-height: 110px;
    object-fit: contain;
}

.service-fleet-body,
.seo-cab-card {
    padding: 0;
}

.service-fleet-body h3,
.seo-cab-name {
    margin-bottom: 4px;
    color: #111111;
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
}

.seo-cab-rate,
.service-fleet-body .our-taxi-rate {
    display: block;
    text-align: center;
}

.service-fleet-body .our-taxi-specs,
.seo-cab-card .our-taxi-specs {
    margin-top: 0;
}

@media (max-width: 991.98px) {
    .service-fleet-grid,
    .seo-cab-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .page-section-featured .feature-card:nth-child(2),
    .page-section-featured .feature-card:nth-child(4) {
        transform: none;
    }

    .service-fleet-grid,
    .seo-cab-grid {
        grid-template-columns: 1fr;
    }
}

/* Homepage about visual refresh */
.taxica-about-art {
    position: relative;
    min-height: 520px;
    display: block;
}

.taxica-about-shape {
    position: absolute;
    background: #ffa900;
    z-index: 1;
}

.taxica-about-shape-top {
    top: 24px;
    right: 48px;
    width: 180px;
    height: 120px;
    clip-path: polygon(14% 0, 100% 0, 84% 100%, 0 100%);
}

.taxica-about-shape-bottom {
    left: 56px;
    bottom: 10px;
    width: 220px;
    height: 150px;
    clip-path: polygon(22% 0, 100% 0, 82% 100%, 0 100%);
}

.taxica-about-photo {
    position: absolute;
    overflow: hidden;
    box-shadow: 0 24px 46px rgba(17, 24, 39, 0.18);
    z-index: 2;
}

.taxica-about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.taxica-about-photo-main {
    left: 28px;
    top: 42px;
    width: 320px;
    height: 372px;
}

.taxica-about-photo-side {
    right: 50px;
    top: 96px;
    width: 178px;
    height: 272px;
}

.taxica-about-badge-circle {
    position: absolute;
    top: 112px;
    left: 268px;
    width: 188px;
    height: 188px;
    border-radius: 50%;
    background: #ffffff;
    border: 14px solid #ffffff;
    box-shadow: 0 20px 40px rgba(17, 24, 39, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
}

.taxica-about-badge-ring-text {
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    color: #111111;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.45;
}

.taxica-about-badge-center {
    position: relative;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #fff7dd;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    z-index: 2;
}

.taxica-about-badge-center .taxica-about-badge-icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
}

.taxica-about-badge-center strong {
    color: #111111;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.taxica-about-art > .taxica-about-badge:not(.taxica-about-badge-circle),
.taxica-about-rings,
.taxica-about-rings-secondary,
.taxica-about-rings-accent,
.taxica-about-art::before,
.taxica-about-art::after {
    display: none !important;
}

@media (max-width: 991.98px) {
    .taxica-about-art {
        min-height: 460px;
    }

    .taxica-about-photo-main {
        width: 280px;
        height: 330px;
    }

    .taxica-about-photo-side {
        right: 24px;
        width: 156px;
        height: 238px;
    }

    .taxica-about-badge-circle {
        left: 218px;
        top: 104px;
        width: 170px;
        height: 170px;
    }
}

@media (max-width: 767.98px) {
    .taxica-about-art {
        min-height: 420px;
    }

    .taxica-about-photo-main {
        left: 10px;
        top: 44px;
        width: 220px;
        height: 286px;
    }

    .taxica-about-photo-side {
        right: 8px;
        top: 108px;
        width: 116px;
        height: 190px;
    }

    .taxica-about-badge-circle {
        left: 154px;
        top: 114px;
        width: 136px;
        height: 136px;
        border-width: 10px;
    }

    .taxica-about-badge-ring-text {
        font-size: 8px;
        letter-spacing: 0.12em;
        padding: 16px;
    }

    .taxica-about-badge-center {
        width: 72px;
        height: 72px;
    }

    .taxica-about-badge-center .taxica-about-badge-icon {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .taxica-about-badge-center strong {
        font-size: 10px;
    }

    .taxica-about-shape-top {
        right: 10px;
        width: 136px;
        height: 94px;
    }

    .taxica-about-shape-bottom {
        left: 38px;
        width: 170px;
        height: 112px;
    }
}

/* About page collage media */
.about-story-media-collage {
    position: relative;
    min-height: 520px;
    border-radius: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.about-story-shape {
    position: absolute;
    background: #ffa900;
    z-index: 1;
}

.about-story-shape-top {
    top: 24px;
    right: 48px;
    width: 180px;
    height: 120px;
    clip-path: polygon(14% 0, 100% 0, 84% 100%, 0 100%);
}

.about-story-shape-bottom {
    left: 56px;
    bottom: 10px;
    width: 220px;
    height: 150px;
    clip-path: polygon(22% 0, 100% 0, 82% 100%, 0 100%);
}

.about-story-photo {
    position: absolute;
    overflow: hidden;
    box-shadow: 0 24px 46px rgba(17, 24, 39, 0.18);
    z-index: 2;
}

.about-story-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-story-photo-main {
    left: 28px;
    top: 42px;
    width: 320px;
    height: 372px;
}

.about-story-photo-side {
    right: 50px;
    top: 96px;
    width: 178px;
    height: 272px;
}

.about-story-badge-circle {
    position: absolute;
    top: 112px;
    left: 268px;
    width: 188px;
    height: 188px;
    border-radius: 50%;
    background: #ffffff;
    border: 14px solid #ffffff;
    box-shadow: 0 20px 40px rgba(17, 24, 39, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
}

.about-story-badge-ring-text {
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    color: #111111;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.45;
}

.about-story-badge-center {
    position: relative;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #fff7dd;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    z-index: 2;
}

.about-story-badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffc000;
    color: #111111;
    font-size: 18px;
}

.about-story-badge-center strong {
    color: #111111;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

@media (max-width: 991.98px) {
    .about-story-media-collage {
        min-height: 460px;
    }

    .about-story-photo-main {
        width: 280px;
        height: 330px;
    }

    .about-story-photo-side {
        right: 24px;
        width: 156px;
        height: 238px;
    }

    .about-story-badge-circle {
        left: 218px;
        top: 104px;
        width: 170px;
        height: 170px;
    }
}

@media (max-width: 767.98px) {
    .about-story-media-collage {
        min-height: 420px;
    }

    .about-story-photo-main {
        left: 10px;
        top: 44px;
        width: 220px;
        height: 286px;
    }

    .about-story-photo-side {
        right: 8px;
        top: 108px;
        width: 116px;
        height: 190px;
    }

    .about-story-badge-circle {
        left: 154px;
        top: 114px;
        width: 136px;
        height: 136px;
        border-width: 10px;
    }

    .about-story-badge-ring-text {
        font-size: 8px;
        letter-spacing: 0.12em;
        padding: 16px;
    }

    .about-story-badge-center {
        width: 72px;
        height: 72px;
    }

    .about-story-badge-icon {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .about-story-badge-center strong {
        font-size: 10px;
    }

    .about-story-shape-top {
        right: 10px;
        width: 136px;
        height: 94px;
    }

    .about-story-shape-bottom {
        left: 38px;
        width: 170px;
        height: 112px;
    }
}

/* Homepage mobile hero order */
@media (max-width: 767.98px) {
    .hero-home.hero-home-dark {
        padding: 12px 0 24px;
    }

    .hero-shell {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .hero-shell .booking-card {
        order: -1;
        width: calc(100vw - 24px);
        max-width: 100%;
        margin: 0 auto;
        padding: 12px 10px 16px;
        border-radius: 18px;
        box-shadow: 0 16px 34px rgba(17, 24, 39, 0.14);
    }

    .hero-shell .hero-copy {
        order: 2;
        width: 100%;
        max-width: none;
        padding-top: 0;
    }

    .hero-copy .hero-badge {
        margin-bottom: 10px;
    }

    .hero-copy .hero-title {
        margin: 0 0 10px;
        font-size: clamp(1.9rem, 8vw, 2.6rem);
        line-height: 1.08;
    }

    .hero-copy .hero-text {
        font-size: 14px;
        line-height: 1.65;
    }

    .hero-copy .hero-actions {
        margin-top: 18px;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-copy .hero-action {
        width: 100%;
        min-height: 46px;
        font-size: 14px;
        justify-content: center;
    }

    .booking-tabs {
        gap: 8px !important;
    }

    .booking-tabs .nav-item {
        flex: 1 1 0;
    }

    .booking-tabs .nav-link {
        width: 100%;
        min-height: 40px;
        padding: 8px 6px;
        font-size: 12px;
        gap: 5px;
    }

    .trip-toggle {
        justify-content: center;
        gap: 10px;
    }

    .trip-toggle .form-check {
        min-width: 0;
        flex: 1 1 0;
    }

    .booking-step .row {
        --bs-gutter-x: 0.65rem;
        --bs-gutter-y: 0.65rem;
    }

    .booking-card .form-control,
    .booking-card .form-select {
        min-height: 42px;
        font-size: 13px;
    }

    .booking-card .form-label,
    .booking-card .section-title {
        font-size: 11px;
        letter-spacing: 0.06em;
    }

    .cab-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .cab-card {
        min-width: 0;
        padding: 8px 6px 10px;
    }

    .cab-card .rate-tag {
        font-size: 10px;
    }

    .cab-card .cab-image img {
        max-height: 44px;
    }

    .cab-card .cab-name {
        font-size: 11px;
    }

    .action-btn {
        min-height: 46px;
        font-size: 14px;
    }
}

.outstation-email-row {
    display: block !important;
}
