/* Private car rental hub listing layout */

.cr-hub {
    --cr-navy: var(--brand-primary, #001e3c);
    --cr-navy-hover: var(--brand-primary-hover, #002a54);
    --cr-gold: var(--brand-accent, #c59d5f);
    --cr-gold-hover: var(--brand-accent-hover, #b08a4f);
    --cr-soft: var(--brand-primary-soft, #e8eef4);
    --cr-muted: #5f6b7d;
    --cr-border: #e5eaf0;
    --cr-text: #0f172a;
    background: #fff;
    color: var(--cr-text);
}

.cr-hub .car-rental-shell {
    max-width: 1228px;
}

/* Hero */
.cr-hub-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: clamp(280px, 38vw, 420px);
    max-height: 460px;
    display: flex;
    align-items: flex-end;
    background-color: var(--cr-navy);
    color: #fff;
}

.cr-hub-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 62% 42%;
    pointer-events: none;
    user-select: none;
}

.cr-hub-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(0, 18, 36, 0.58) 0%, rgba(0, 24, 48, 0.34) 44%, rgba(0, 24, 48, 0.1) 72%, rgba(0, 24, 48, 0.22) 100%),
        linear-gradient(180deg, rgba(0, 20, 40, 0.06) 0%, rgba(0, 20, 40, 0.38) 100%);
}

.cr-hub-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 28px;
    padding-bottom: 72px;
}

.cr-hub-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.cr-hub-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.78);
}

.cr-hub-hero__breadcrumb a:hover {
    color: #fff;
}

.cr-hub-hero__breadcrumb .material-symbols-outlined {
    font-size: 16px;
}

.cr-hub-hero__breadcrumb span:last-child {
    color: #fff;
    font-weight: 700;
}

.cr-hub-hero__content {
    max-width: 760px;
}

.cr-hub-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    margin: 0 0 9px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.92);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.25;
}

.cr-hub-hero__content h1 {
    margin: 0;
    font-size: clamp(1.85rem, 4.2vw, 3rem);
    line-height: 1.22;
    font-weight: 800;
    letter-spacing: 0.015em;
}

.cr-hub-hero__tagline {
    margin: 14px 0 0;
    color: var(--cr-gold);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.45;
}

.cr-hub-hero__lede {
    margin: 12px 0 0;
    max-width: 560px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
    line-height: 1.65;
}

.cr-hub-hero__content > p:not(.cr-hub-hero__tagline):not(.cr-hub-hero__lede):not(.cr-hub-hero__eyebrow) {
    margin: 14px 0 0;
    max-width: 560px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    line-height: 1.65;
}

.cr-hub-hero__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.cr-hub-hero__highlights li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.94);
    line-height: 1.4;
    letter-spacing: 0.01em;
}

.cr-hub-hero__highlights .material-symbols-outlined {
    font-size: 18px;
    color: var(--cr-gold);
}

.cr-hub-hero__social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.cr-hub-hero__social li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.01em;
}

.cr-hub-hero__social .material-symbols-outlined {
    font-size: 16px;
    color: var(--cr-gold);
    font-variation-settings: 'FILL' 1;
}

/* Booking bar */
.cr-hub-booking-wrap {
    position: relative;
    z-index: 2;
}

.cr-hub-booking {
    margin-top: -52px;
    padding: 24px 28px 22px;
    border: 1px solid #e8edf3;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 16px 36px rgba(0, 30, 60, 0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cr-hub-booking__search-head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cr-hub-booking__search-head > .material-symbols-outlined {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #eef3f8;
    color: var(--cr-navy);
    font-size: 23px;
}

.cr-hub-booking__search-head h2 {
    margin: 0;
    color: var(--cr-navy);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
}

.cr-hub-booking__search-head p {
    margin: 3px 0 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.45;
}

.cr-hub-section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 5px;
    padding: 4px 9px;
    border: 1px solid rgba(204, 157, 75, 0.28);
    border-radius: 999px;
    background: rgba(204, 157, 75, 0.1);
    color: #9a681f;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1;
    text-transform: uppercase;
}

.cr-hub-booking__steps {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 64px minmax(0, 1fr) 64px minmax(0, 1fr) 64px minmax(0, 1fr);
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.cr-hub-booking__panel {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 18px 20px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #fff;
}

.cr-hub-booking__steps > li[data-booking-step] {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 700;
}

.cr-hub-booking__steps > li[data-booking-step].is-active {
    color: var(--cr-navy);
}

.cr-hub-booking__step-sep {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-inline: 5px;
    color: #9fb0c3;
    pointer-events: none;
    user-select: none;
}

.cr-hub-booking__step-arrow {
    display: block;
    flex-shrink: 0;
    width: 100%;
    height: 12px;
}

.cr-hub-booking__step-arrow path {
    stroke-width: 1.25;
}

.cr-hub-booking__step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: #eef2f7;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 800;
}

.cr-hub-booking__steps > li[data-booking-step].is-active .cr-hub-booking__step-num {
    background: var(--cr-navy);
    color: #fff;
}

.cr-hub-booking__steps > li[data-booking-step].is-complete {
    color: var(--cr-navy);
}

.cr-hub-booking__steps > li[data-booking-step].is-complete .cr-hub-booking__step-num {
    background: #e8eef4;
    color: var(--cr-navy);
}

.cr-hub-booking__step-label {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.35;
    letter-spacing: 0.01em;
}

.cr-hub-booking__fields {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr) minmax(0, 0.95fr) minmax(0, 0.95fr) minmax(0, 1fr);
    gap: 16px;
    min-width: 0;
}

.cr-hub-booking__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.cr-hub-booking__label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--cr-navy);
    line-height: 1.35;
}

.cr-hub-booking__required {
    color: #dc2626;
}

.cr-hub-booking__control-wrap {
    position: relative;
    display: block;
}

.cr-hub-booking__control-icon {
    position: absolute;
    top: 50%;
    left: 12px;
    z-index: 1;
    transform: translateY(-50%);
    font-size: 18px;
    color: #94a3b8;
    pointer-events: none;
}

.cr-hub-booking__control-icon--end {
    left: auto;
    right: 12px;
}

.cr-hub-booking__control-chevron {
    position: absolute;
    top: 50%;
    right: 10px;
    z-index: 1;
    transform: translateY(-50%);
    font-size: 20px;
    color: #94a3b8;
    pointer-events: none;
}

.cr-hub-booking__control {
    width: 100%;
    min-height: 46px;
    padding: 0 12px;
    border: 1px solid #dbe3ec;
    border-radius: 10px;
    background: #fff;
    color: var(--cr-text);
    font-size: 13px;
    font-weight: 500;
}

.cr-hub-booking__control--select {
    appearance: none;
    padding-right: 36px;
}

.cr-hub-booking__control--icon {
    padding-left: 40px;
    padding-right: 36px;
}

.cr-hub-booking__control--end-icon {
    padding-right: 40px;
}

.cr-hub-booking__control-wrap--guests .cr-hub-booking__control {
    padding-left: 40px;
    padding-right: 36px;
}

.cr-hub-booking__control--icon option {
    color: var(--cr-text);
}

.cr-hub-booking__control::placeholder {
    color: #94a3b8;
    font-weight: 500;
}

.cr-hub-booking__control:not([value]):not(:focus),
.cr-hub-booking__control[value=""] {
    color: #94a3b8;
}

.cr-hub-booking__control--end-icon::-webkit-calendar-picker-indicator {
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    opacity: 0;
    cursor: pointer;
}

.cr-hub-booking__control:focus {
    outline: none;
    border-color: var(--cr-navy);
    box-shadow: 0 0 0 3px rgba(0, 30, 60, 0.12);
    background: #fff;
    color: var(--cr-text);
}

/* Select2 khu vực đón */
.cr-hub-booking__control-wrap > .select2-container {
    width: 100% !important;
}

.cr-hub-booking__control-wrap .select2-container .select2-selection--single {
    position: relative;
    min-height: 46px;
    border: 1px solid #dbe3ec;
    border-radius: 10px;
    background: #fff;
}

.cr-hub-booking__control-wrap .select2-container .select2-selection--single .select2-selection__rendered {
    height: 44px;
    padding: 0 62px 0 12px;
    color: var(--cr-text);
    font-size: 13px;
    font-weight: 500;
    line-height: 44px;
}

.cr-hub-booking__control-wrap .select2-container .select2-selection--single .select2-selection__clear {
    position: absolute;
    top: 50%;
    right: 34px;
    z-index: 2;
    float: none;
    width: 20px;
    height: 20px;
    margin: 0;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
}

.cr-hub-booking__control-wrap .select2-container .select2-selection--single .select2-selection__clear:hover {
    color: #b91c1c;
}

.cr-hub-booking__control-wrap .select2-container .select2-selection--single .select2-selection__placeholder {
    color: #94a3b8;
}

.cr-hub-booking__control-wrap .select2-container .select2-selection--single .select2-selection__arrow {
    top: 50%;
    right: 9px;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
}

.cr-hub-booking__control-wrap .select2-container--focus .select2-selection--single,
.cr-hub-booking__control-wrap .select2-container--open .select2-selection--single {
    border-color: var(--cr-navy);
    box-shadow: 0 0 0 3px rgba(0, 30, 60, 0.12);
}

.select2-container--open .cr-hub-pickup-dropdown {
    overflow: hidden;
    margin-top: 4px;
    border: 1px solid #dbe3ec;
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14);
}

.cr-hub-pickup-dropdown .select2-search--dropdown {
    padding: 10px;
}

.cr-hub-pickup-dropdown .select2-search__field {
    min-height: 38px;
    padding: 7px 10px;
    border: 1px solid #cbd5e1 !important;
    border-radius: 7px;
    outline: none;
    color: #0f172a;
    font-size: 13px;
}

.cr-hub-pickup-dropdown .select2-search__field:focus {
    border-color: #001e3c !important;
    box-shadow: 0 0 0 2px rgba(0, 30, 60, 0.1);
}

.cr-hub-pickup-dropdown .select2-results__option {
    padding: 9px 12px;
    color: #0f172a;
    font-size: 13px;
}

.cr-hub-pickup-dropdown .select2-results__option--selected {
    background: #eef2f6;
    color: #001e3c;
    font-weight: 600;
}

.cr-hub-pickup-dropdown .select2-results__option--highlighted.select2-results__option--selectable,
.cr-hub-pickup-dropdown .select2-results__option--highlighted.select2-results__option--selected {
    background: #001e3c;
    color: #fff;
}

.cr-hub-booking__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 2px;
    padding-top: 16px;
    border-top: 1px solid #eef2f6;
}

.cr-hub-booking__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: auto;
    min-width: 240px;
    min-height: 50px;
    padding: 0 28px;
    border: 0;
    border-radius: 12px;
    background: var(--cr-gold);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.cr-hub-booking__submit:hover {
    background: var(--cr-gold-hover);
}

.cr-hub-booking__submit .material-symbols-outlined {
    font-size: 18px;
    color: #fff;
}

.cr-hub-booking__trust {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 6px 12px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: #16a34a;
    font-size: 11px;
    font-weight: 600;
    flex: 1;
    min-width: 0;
}

.cr-hub-booking__hint {
    margin: 4px 0 0;
    padding: 0;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
}

.cr-hub-booking__trust li {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.cr-hub-booking__trust .material-symbols-outlined {
    font-size: 15px;
    color: #16a34a;
    font-variation-settings: 'FILL' 1;
}

@media (max-width: 1180px) {
    .cr-hub-booking__trust {
        flex-wrap: wrap;
    }
}

/* Sections */
.cr-hub-main {
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
}

.cr-hub-main > * {
    order: 4;
}

.cr-hub-main > .cr-hub-section--why-bar {
    order: 1;
}

.cr-hub-main > .cr-hub-routes-section {
    order: 2;
}

.cr-hub-main > .cr-hub-fleet {
    order: 3;
}

.cr-hub-section {
    padding: 36px 0;
}

.cr-hub-section--why {
    padding-top: 28px;
    padding-bottom: 12px;
}

.cr-hub-section--why-bar {
    padding-top: 22px;
    padding-bottom: 20px;
}

.cr-hub-section--muted {
    background: #f7f9fc;
}

.cr-hub-fuji-vis {
    max-width: 920px;
    margin: 0 auto 1.5rem;
}

.cr-hub-section__header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px 20px;
    margin-bottom: 18px;
}

.cr-hub-section__header--center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cr-hub-section__header--center .cr-hub-section-kicker,
.cr-hub-fleet__headline .cr-hub-section-kicker {
    margin-inline: auto;
}

.cr-hub-section__header h2 {
    margin: 0;
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--cr-navy);
}

.cr-hub-section__header p {
    margin: 8px 0 0;
    max-width: 640px;
    color: var(--cr-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Why */
.cr-hub-why {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.cr-hub-why__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.cr-hub-why__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 999px;
    border: 1.5px solid var(--cr-navy);
    background: transparent;
    color: var(--cr-navy);
}

.cr-hub-why__icon .material-symbols-outlined {
    font-size: 20px;
}

.cr-hub-why__item h3 {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--cr-navy);
    line-height: 1.3;
}

.cr-hub-why__item p {
    margin: 4px 0 0;
    color: var(--cr-muted);
    font-size: 0.75rem;
    line-height: 1.45;
}

/* Fleet */
.cr-hub-fleet {
    padding-top: 4px;
    padding-bottom: 28px;
}

.cr-search-hero {
    padding: 12px 0 20px;
    background: linear-gradient(180deg, #f4f7fb 0%, #ffffff 100%);
}

.cr-search-hero .car-rental-breadcrumb {
    padding-top: 8px;
    margin-bottom: 4px;
}

.cr-search-hero h1 {
    margin: 20px 0 14px;
    font-size: clamp(1.45rem, 2.5vw, 2.05rem);
    line-height: 1.25;
    font-weight: 800;
    color: var(--cr-navy, #001e3c);
}

.cr-search-hero__subtitle {
    margin: 0 0 22px;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.45;
}

.cr-hub-booking--search {
    margin-top: 0;
    margin-bottom: 12px;
    display: block;
    overflow: visible;
}

.cr-hub-booking--search .cr-hub-booking__fields {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 0.75fr) auto;
    align-items: end;
    gap: 10px;
}

.cr-hub-booking--search .cr-hub-booking__field--action {
    min-width: 148px;
}

.cr-hub-booking--search .cr-hub-booking__submit {
    display: inline-flex !important;
    visibility: visible !important;
    width: 100%;
    min-width: 148px;
    min-height: 44px;
    padding: 0 18px;
    background: #001e3c !important;
    color: #fff !important;
}

@media (max-width: 1100px) {
    .cr-hub-booking--search .cr-hub-booking__fields {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .cr-hub-booking--search .cr-hub-booking__field--action {
        grid-column: 1 / -1;
        min-width: 0;
    }
}

@media (max-width: 640px) {
    .cr-hub-booking__search-head {
        align-items: flex-start;
        gap: 9px;
    }

    .cr-hub-booking__search-head > .material-symbols-outlined {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        font-size: 20px;
    }

    .cr-hub-booking__search-head h2 {
        font-size: 15px;
    }

    .cr-hub-booking__search-head p {
        margin-top: 2px;
        font-size: 11px;
    }

    .cr-hub-booking--search .cr-hub-booking__fields {
        grid-template-columns: 1fr 1fr;
    }

    .cr-hub-booking--search .cr-hub-booking__field--action {
        grid-column: 1 / -1;
    }
}

.cr-hub-booking__control.is-invalid {
    border-color: #c62828;
    box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.12);
}

.cr-hub-fleet__header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    min-height: 40px;
}

.cr-hub-fleet__headline {
    max-width: 720px;
    text-align: center;
}

.cr-hub-fleet__header h2 {
    margin: 0;
    font-size: clamp(1.25rem, 2.4vw, 1.75rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-align: center;
    color: var(--cr-navy);
}

.cr-hub-fleet__subtitle {
    margin: 0.55rem 0 0;
    font-size: 0.9375rem;
    line-height: 1.55;
    font-weight: 500;
    color: #64748b;
    text-transform: none;
    letter-spacing: 0;
}

.cr-hub-fleet__view-all {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 0;
    background: transparent;
    color: var(--cr-navy);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}

.cr-hub-fleet__view-all .material-symbols-outlined {
    font-size: 16px;
}

.cr-hub-fleet__view-all:hover {
    color: var(--cr-gold);
}

.cr-hub-fleet__showcase {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 4px;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    padding-bottom: 4px;
}

.cr-hub-vehicle-card {
    display: flex;
    flex-direction: column;
    flex: 0 0 min(280px, 82vw);
    max-width: 300px;
    overflow: hidden;
    border: 1px solid var(--cr-border);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    scroll-snap-align: start;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cr-hub-vehicle-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(0, 30, 60, 0.12);
}

.cr-hub-fleet__showcase.is-short {
    justify-content: center;
}

.cr-hub-vehicle-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f1f5f9;
}

.cr-hub-vehicle-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cr-hub-vehicle-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--cr-gold);
    color: #1a1408;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.cr-hub-vehicle-card__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    padding: 14px 14px 16px;
    color: var(--cr-text);
}

.cr-hub-vehicle-card__title {
    margin: 0;
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-align: left;
    line-height: 1.3;
    color: var(--cr-navy);
}

.cr-hub-vehicle-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
}

.cr-hub-vehicle-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--cr-muted);
    font-size: 12px;
    font-weight: 600;
}

.cr-hub-vehicle-card__meta .material-symbols-outlined {
    font-size: 16px;
    color: #64748b;
}

.cr-hub-vehicle-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.cr-hub-vehicle-card__tags li {
    padding: 4px 8px;
    border-radius: 6px;
    background: #f1f5f9;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
}

.cr-hub-vehicle-card__price {
    margin: 0;
    color: var(--cr-navy);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
}

.cr-hub-vehicle-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 40px;
    margin-top: auto;
    padding: 0 14px;
    border: 0;
    border-radius: 10px;
    background: var(--cr-navy);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.cr-hub-vehicle-card__cta:hover {
    background: var(--cr-navy-hover);
}

.cr-hub-fleet__catalog {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--cr-border);
}

.cr-hub-fleet__catalog[hidden] {
    display: none !important;
}

.cr-hub-fleet__tools {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.cr-hub-fleet__filter-btn,
.cr-hub-fleet__search,
.cr-hub-fleet .car-filter-sort {
    min-height: 42px;
    border: 1px solid var(--cr-border);
    border-radius: 999px;
    background: #fff;
    color: var(--cr-text);
    font-size: 13px;
    font-weight: 600;
}

.cr-hub-fleet__filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    cursor: pointer;
}

.cr-hub-fleet__filter-btn .material-symbols-outlined {
    font-size: 18px;
}

.cr-hub-fleet__search {
    width: min(220px, 100%);
    padding: 0 14px;
}

.cr-hub-fleet .car-filter-sort {
    padding: 0 12px;
}

.cr-hub-fleet__count {
    margin: 0 0 18px;
}

.cr-hub .car-rental-sidebar--drawer-only {
    flex: 0;
    max-width: none;
    width: 0;
    height: 0;
    overflow: visible;
    margin: 0;
    padding: 0;
    border: 0;
}

.cr-hub .car-rental-sidebar--drawer-only .car-rental-filters {
    width: min(340px, 92vw);
    max-width: 340px;
    padding: 16px;
    background: #fff;
    box-shadow: 12px 0 40px rgba(0, 0, 0, 0.18);
}

.cr-hub .car-rental-sidebar--drawer-only .car-rental-filters__mobile-head {
    display: flex;
}

.cr-hub .car-service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

/* Fleet card overrides (catalog) */
.cr-hub .car-service-card--fleet {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--cr-border);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cr-hub .car-service-card--fleet:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(0, 30, 60, 0.12);
}

.cr-hub .car-service-card--fleet .car-service-card__media {
    aspect-ratio: 4 / 3;
}

.cr-hub .car-service-card--fleet .car-service-card__featured {
    top: 12px;
    left: 12px;
    right: auto;
    background: var(--cr-gold);
    color: #1a1408;
    border: 0;
    box-shadow: none;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cr-hub .car-service-card--fleet .car-service-card__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    padding: 14px 14px 16px;
}

.cr-hub .car-service-card--fleet .car-service-card__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--cr-navy);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cr-hub .car-service-card__specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
}

.cr-hub .car-service-card__specs > span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--cr-muted);
    font-size: 12px;
    font-weight: 600;
}

.cr-hub .car-service-card__specs .material-symbols-outlined {
    font-size: 15px;
    color: var(--cr-gold);
}

.cr-hub .car-service-card__highlight {
    margin: 0;
    color: var(--cr-muted);
    font-size: 13px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cr-hub .car-service-card--fleet {
    border-color: #e6ebf2;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.cr-hub .car-service-card--fleet:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 30, 60, 0.18);
    box-shadow: 0 16px 32px rgba(0, 30, 60, 0.12);
}

.cr-hub .car-service-card__footer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--cr-border);
}

.cr-hub .car-service-card__price-wrap {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.cr-hub .car-service-card__price-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--cr-muted);
}

.cr-hub .car-service-card--fleet .car-service-card__price {
    margin: 0;
    color: var(--cr-navy);
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.3;
    background: none;
    padding: 0;
    box-shadow: none;
    flex-shrink: 1;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.cr-hub .car-service-card--fleet .car-service-card__cta {
    display: inline-flex;
    flex: 0 0 auto;
    width: 100%;
    min-height: 42px;
    margin-top: 0;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
    border: 0;
    border-radius: 10px;
    background: var(--cr-navy);
    color: #fff;
    box-shadow: none;
    white-space: nowrap;
    align-self: stretch;
    font-size: 13px;
    font-weight: 800;
}

.cr-hub .car-service-card--fleet .car-service-card__cta:hover {
    background: var(--cr-navy-hover, #003366);
    color: #fff;
}

.cr-hub .car-service-card--fleet .car-service-card__cta .material-symbols-outlined {
    display: inline-block;
    font-size: 18px;
}

/* Amenities */
.cr-hub-amenities-block {
    margin: 24px 0 0;
}

.cr-hub-amenities__title {
    margin: 0 0 10px;
    font-size: 0.9375rem;
    font-weight: 800;
    color: var(--cr-navy);
    letter-spacing: 0.01em;
}

.cr-hub-amenities {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px 16px;
    margin: 0;
    padding: 14px 20px;
    list-style: none;
    border: 1px solid var(--cr-border);
    border-radius: 12px;
    background: #fff;
}

.cr-hub-amenities li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
}

.cr-hub-amenities .material-symbols-outlined {
    font-size: 18px;
    color: #475569;
}

/* Sliders */
.cr-hub-filter-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 20px 0 24px;
    padding: 4px;
    overflow-x: auto;
    scrollbar-width: none;
}

.cr-hub-filter-tabs::-webkit-scrollbar {
    display: none;
}

.cr-hub-filter-tabs button {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 8px 17px;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    background: #fff;
    color: #64748b;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: color .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.cr-hub-filter-tabs button:hover {
    border-color: rgba(204, 157, 75, .55);
    color: var(--cr-navy);
}

.cr-hub-filter-tabs button.is-active {
    border-color: var(--cr-navy);
    background: var(--cr-navy);
    color: #fff;
    box-shadow: 0 7px 18px rgba(0, 37, 70, .16);
}

.cr-hub-slider__item[hidden] {
    display: none !important;
}

.cr-hub-slider {
    position: relative;
    margin-inline: -4px;
    padding-inline: 4px;
}

@media (max-width: 700px) {
    .cr-hub-filter-tabs {
        justify-content: flex-start;
        margin: 16px -4px 20px;
        padding-inline: 4px;
    }

    .cr-hub-filter-tabs button {
        min-height: 36px;
        padding: 7px 14px;
        font-size: 12px;
    }
}

.cr-hub-slider__track {
    scrollbar-width: none;
    cursor: grab;
}

.cr-hub-slider__track::-webkit-scrollbar {
    display: none;
}

.cr-hub-slider__track.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

.cr-hub-slider__nav {
    position: absolute;
    top: 42%;
    z-index: 2;
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--cr-border);
    border-radius: 999px;
    background: #fff;
    color: var(--cr-navy);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
    cursor: pointer;
    transform: translateY(-50%);
}

.cr-hub-slider__nav:hover {
    background: var(--cr-navy);
    color: #fff;
    border-color: var(--cr-navy);
}

.cr-hub-slider__nav:disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

.cr-hub-slider__nav--prev {
    left: -8px;
}

.cr-hub-slider__nav--next {
    right: -8px;
}

.cr-hub-slider__nav .material-symbols-outlined {
    font-size: 22px;
}

@media (min-width: 901px) {
    .cr-hub-slider {
        padding-inline: 28px;
        margin-inline: -28px;
    }

    .cr-hub-slider__nav {
        display: inline-flex;
    }

    .cr-hub-slider__nav--prev {
        left: 0;
    }

    .cr-hub-slider__nav--next {
        right: 0;
    }

    .cr-hub-vehicle-card {
        flex-basis: calc((100% - 48px) / 3.2);
        max-width: none;
    }

    .cr-hub-route {
        flex-basis: calc((100% - 48px) / 3.4);
        max-width: none;
    }

    .cr-hub-review {
        flex-basis: calc((100% - 36px) / 3.05);
        max-width: none;
    }
}

@media (min-width: 1101px) {
    .cr-hub-vehicle-card {
        flex-basis: calc((100% - 54px) / 3.6);
    }

    .cr-hub-route {
        flex-basis: calc((100% - 28px) / 3);
    }

    .cr-hub-fleet__showcase.is-short .cr-hub-vehicle-card {
        flex-basis: calc((100% - 32px) / 3);
    }

    .cr-hub-review {
        flex-basis: calc((100% - 36px) / 3.15);
    }
}

/* Routes */
.cr-hub-routes {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 4px;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    padding-bottom: 4px;
}

.cr-hub-route {
    display: flex;
    flex-direction: column;
    flex: 0 0 min(260px, 78vw);
    max-width: 280px;
    overflow: hidden;
    border: 1px solid var(--cr-border);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
    scroll-snap-align: start;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.cr-hub-route:hover {
    transform: translateY(-3px);
    border-color: rgba(204, 157, 75, 0.45);
    box-shadow: 0 16px 34px rgba(0, 30, 60, 0.12);
}

.cr-hub-routes.is-short {
    justify-content: center;
}

.cr-hub-route__media {
    aspect-ratio: 16 / 7;
    overflow: hidden;
    background: var(--cr-soft);
}

.cr-hub-route__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.cr-hub-route:hover .cr-hub-route__media img {
    transform: scale(1.035);
}

.cr-hub-route__body {
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex: 1;
    padding: 14px 15px 15px;
}

.cr-hub-route__body h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    color: var(--cr-navy);
    line-height: 1.25;
}

.cr-hub-route__duration {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    color: var(--cr-muted);
    font-size: 11.5px;
    font-weight: 600;
}

.cr-hub-route__duration .material-symbols-outlined {
    font-size: 15px;
    color: var(--cr-gold);
}

.cr-hub-route__stops {
    margin: 0;
    color: var(--cr-muted);
    font-size: 11.5px;
    line-height: 1.55;
}

.cr-hub-route__body ul {
    margin: 0;
    padding-left: 16px;
    color: var(--cr-muted);
    font-size: 12px;
    line-height: 1.5;
}

.cr-hub-route__footer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: auto;
    padding-top: 10px;
}

.cr-hub-route__price {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--cr-navy);
}

.cr-hub-route__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    min-height: 42px;
    margin-top: auto;
    padding: 0 14px;
    border: 0;
    border-radius: 10px;
    background: var(--cr-gold);
    color: #fff;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1.2;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.cr-hub-route__cta:hover {
    background: var(--cr-gold-hover);
}

.cr-hub-route__cta:active {
    transform: translateY(1px);
}

.cr-hub-route__cta .material-symbols-outlined {
    display: none;
}

/* Process */
.cr-hub-process.cr-hub-process--book {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cr-hub-process {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0 8px;
    margin: 0;
    padding: 18px 20px;
    border: 1px solid var(--cr-border);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 3px 14px rgba(15, 23, 42, 0.035);
    list-style: none;
}

.cr-hub-process__step {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 6px 48px 6px 18px;
}

.cr-hub-process--book{
    gap:14px;
    padding:20px;
    border-radius:18px;
    background:linear-gradient(180deg,#fff,#fbfcfe);
    box-shadow:0 12px 34px rgba(15,35,60,.055);
}

.cr-hub-process--book .cr-hub-process__step{
    justify-content:flex-start;
    min-height:112px;
    padding:16px 44px 16px 14px;
    border:1px solid #e7edf3;
    border-radius:12px;
    background:#fff;
}

.cr-hub-process--book .cr-hub-process__step:last-child{
    padding-right:14px;
}

.cr-hub-process__number{
    position:absolute;
    top:8px;
    right:10px;
    color:#dbe3ec;
    font-size:24px;
    font-weight:900;
    line-height:1;
}

.cr-hub-process--book .cr-hub-process__icon{
    width:46px;
    height:46px;
    border:0;
    border-radius:12px;
    background:#fff8eb;
}

.cr-hub-process--book .cr-hub-process__step:nth-child(3) .cr-hub-process__icon,
.cr-hub-process--book .cr-hub-process__step:nth-child(4) .cr-hub-process__icon{
    background:#edf5fc;
    color:var(--cr-navy);
}

.cr-hub-process--book .cr-hub-process__arrow{
    right:-14px;
    z-index:2;
    width:28px;
    background:#d4dde7;
}

.cr-hub-process--book .cr-hub-process__arrow::after{
    border-color:#a8b6c5;
}

.cr-hub-process__step:last-child {
    padding-right: 18px;
}

.cr-hub-process__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 999px;
    border: 1px solid rgba(197, 157, 95, 0.35);
    background: #fff;
    color: var(--cr-gold);
    box-shadow: none;
}

.cr-hub-process__icon .material-symbols-outlined {
    font-size: 24px;
    font-variation-settings: 'wght' 500;
}

.cr-hub-process__copy {
    min-width: 0;
    flex: 1;
}

.cr-hub-process__step h3 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--cr-navy);
    line-height: 1.3;
}

.cr-hub-process__step p {
    margin: 5px 0 0;
    color: #64748b;
    font-size: 12.5px;
    line-height: 1.5;
}

.cr-hub-process__arrow {
    position: absolute;
    top: 50%;
    right: 4px;
    width: 48px;
    height: 2px;
    background: repeating-linear-gradient(90deg, #94a3b8 0 4px, transparent 4px 8px);
    border-radius: 2px;
    transform: translateY(-50%);
}

.cr-hub-process__arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -2px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #94a3b8;
    border-right: 2px solid #94a3b8;
    transform: translateY(-50%) rotate(45deg);
}

/* Reviews */
.cr-hub-section--reviews {
    background: #fff;
}

.cr-hub-section--reviews .cr-hub-section__header {
    margin-bottom: 28px;
}

.cr-hub-section--reviews .cr-hub-section__header h2 {
    color: var(--cr-navy);
    font-size: clamp(1.2rem, 2.2vw, 1.65rem);
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.cr-hub-section--reviews .cr-hub-slider {
    padding-inline: 36px;
    margin-inline: -8px;
}

.cr-hub-section--reviews .cr-hub-slider__nav {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-color: #d7dee8;
    color: #94a3b8;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.cr-hub-section--reviews .cr-hub-slider__nav:hover {
    background: #fff;
    color: var(--cr-navy);
    border-color: #cbd5e1;
}

.cr-hub-section--reviews .cr-hub-slider__nav--prev {
    left: 0;
}

.cr-hub-section--reviews .cr-hub-slider__nav--next {
    right: 0;
}

.cr-hub-reviews {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 4px;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    padding: 6px 4px 10px;
}

.cr-hub-review {
    display: flex;
    align-items: stretch;
    flex: 0 0 min(340px, 86vw);
    max-width: 400px;
    gap: 10px;
    padding: 14px 16px;
    border: 1px solid var(--cr-border);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 3px 14px rgba(15, 23, 42, 0.045);
    scroll-snap-align: start;
}

.cr-hub-review__media {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    align-self: center;
    min-height: 0;
    overflow: hidden;
    border-radius: 999px;
    background: #e8eef4;
}

.cr-hub-review__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cr-hub-review__body {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
    padding: 0;
}

.cr-hub-review__stars {
    display: flex;
    gap: 2px;
    color: var(--cr-gold);
}

.cr-hub-review__stars .material-symbols-outlined {
    font-size: 18px;
    font-variation-settings: 'FILL' 1, 'wght' 500;
}

.cr-hub-review blockquote {
    margin: 10px 0 0;
    color: #475569;
    font-size: 0.82rem;
    line-height: 1.55;
}

.cr-hub-review__author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: auto 0 0;
    min-height: 34px;
    padding-top: 10px;
}

.cr-hub-review__author-copy {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.cr-hub-review__author strong {
    color: var(--cr-navy);
    font-size: 0.78rem;
    font-weight: 800;
}

.cr-hub-review__author span {
    color: #94a3b8;
    font-size: 11px;
    font-weight: 500;
}

/* CTA */
.cr-hub-cta {
    padding: 8px 0 24px;
}

.cr-hub-cta__card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    min-height: 148px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(0, 20, 40, 0.06) 0%, rgba(0, 30, 60, 0.58) 29%, rgba(0, 30, 60, 0.96) 47%, var(--cr-navy) 72%),
        var(--cr-hub-cta-image) left 35% center / cover no-repeat,
        var(--cr-navy);
}

.cr-hub-cta__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px 26px;
    min-height: 148px;
    padding: 22px 28px 20px clamp(230px, 24vw, 300px);
}

.cr-hub-cta__copy {
    min-width: 300px;
    max-width: 410px;
}

.cr-hub-cta__copy h2 {
    margin: 0;
    font-size: clamp(1.05rem, 1.55vw, 1.25rem);
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1.25;
    white-space: nowrap;
}

.cr-hub-cta__tagline {
    margin: 7px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    white-space: nowrap;
}

.cr-hub-cta__aside {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 9px;
    flex-shrink: 0;
}

.cr-hub-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.cr-hub-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 7px;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cr-hub-cta__btn .material-symbols-outlined {
    font-size: 16px;
}

.cr-hub-cta__btn--primary {
    background: var(--cr-gold);
    color: #1a1408;
}

.cr-hub-cta__btn--primary:hover {
    background: var(--cr-gold-hover);
}

.cr-hub-cta__btn--ghost {
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #fff;
}

.cr-hub-cta__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.cr-hub-cta__notes {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.cr-hub-cta__notes li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 10.5px;
    font-weight: 600;
}

.cr-hub-cta__notes .material-symbols-outlined {
    font-size: 16px;
    color: var(--cr-gold);
}

/* Responsive */
@media (max-width: 1100px) {
    .cr-hub .car-service-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .cr-hub-fleet__headline {
        padding: 0;
    }

    .cr-hub-why {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px 14px;
    }

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

@media (max-width: 900px) {
    .cr-hub-process,
    .cr-hub-process.cr-hub-process--book {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-inline: auto;
        gap: 0;
        padding: 18px 16px;
    }

    .cr-hub-process__step {
        align-items: flex-start;
        justify-content: flex-start;
        gap: 14px;
        width: 100%;
        padding: 0 0 24px;
    }

    .cr-hub-process__step:last-child {
        padding-bottom: 0;
    }

    .cr-hub-process__icon {
        width: 46px;
        height: 46px;
    }

    .cr-hub-process__icon .material-symbols-outlined {
        font-size: 22px;
    }

    .cr-hub-process__step h3 {
        font-size: 0.92rem;
        overflow-wrap: normal;
        word-break: normal;
    }

    .cr-hub-process__step p {
        margin-top: 4px;
        font-size: 12px;
        line-height: 1.45;
        overflow-wrap: normal;
        word-break: normal;
    }

    .cr-hub-process__arrow {
        display: block;
        top: 46px;
        left: 22px;
        right: auto;
        width: 3px;
        height: calc(100% - 38px);
        min-height: 18px;
        background: repeating-linear-gradient(180deg, #94a3b8 0 4px, transparent 4px 8px);
        border-radius: 2px;
        transform: none;
    }

    .cr-hub-process__arrow::after {
        top: auto;
        bottom: -1px;
        left: 50%;
        right: auto;
        width: 9px;
        height: 9px;
        border-top: 3px solid #94a3b8;
        border-right: 3px solid #94a3b8;
        transform: translateX(-50%) rotate(135deg);
    }

    .cr-hub-process.cr-hub-process--book{
        max-width:560px;
        gap:10px;
        padding:14px;
    }

    .cr-hub-process--book .cr-hub-process__step,
    .cr-hub-process--book .cr-hub-process__step:last-child{
        min-height:88px;
        padding:14px 42px 14px 14px;
    }

    .cr-hub-process--book .cr-hub-process__arrow{
        top:auto;
        bottom:-13px;
        left:35px;
        width:2px;
        height:16px;
        min-height:0;
    }

    .cr-hub-process--book .cr-hub-process__arrow::after{
        display:none;
    }

    .cr-hub .car-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cr-hub-fleet__header {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .cr-hub-fleet__headline {
        padding: 0;
    }

    .cr-hub-fleet__view-all {
        position: static;
        transform: none;
    }

    .cr-hub-booking {
        margin-top: -40px;
        padding: 14px;
        gap: 10px;
    }

    .cr-hub-booking__steps {
        grid-template-columns: minmax(0, 1fr) 20px minmax(0, 1fr) 20px minmax(0, 1fr) 20px minmax(0, 1fr);
    }

    .cr-hub-booking__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cr-hub-booking__trust {
        justify-content: center;
        text-align: center;
    }

    .cr-hub-booking__submit {
        width: 100%;
        min-width: 0;
    }

    .cr-hub-booking__submit {
        width: 100%;
        min-height: 44px;
    }

    .cr-hub-cta__inner {
        padding-left: 28px;
        padding-right: 28px;
    }

}

@media (max-width: 640px) {
    .cr-hub-hero {
        min-height: 0;
        max-height: none;
        align-items: flex-end;
    }

    .cr-hub-hero__inner {
        padding-top: 18px;
        padding-bottom: 52px;
    }

    .cr-hub-hero__breadcrumb {
        margin-bottom: 18px;
        font-size: 11px;
        gap: 6px;
    }

    .cr-hub-hero__breadcrumb .material-symbols-outlined {
        font-size: 14px;
    }

    .cr-hub-hero__content h1 {
        font-size: 1.45rem;
        line-height: 1.3;
        letter-spacing: 0.01em;
    }

    .cr-hub-hero__tagline {
        margin-top: 12px;
        font-size: 0.92rem;
        line-height: 1.4;
    }

    .cr-hub-hero__eyebrow {
        margin-bottom: 14px;
        font-size: 9px;
        padding: 6px 11px;
    }

    .cr-hub-hero__social {
        gap: 10px;
        margin-top: 16px;
    }

    .cr-hub-hero__social li {
        font-size: 10px;
        padding: 6px 10px;
    }

    .cr-hub-hero__highlights {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 10px 14px;
        margin-top: 16px;
        overflow-x: visible;
    }

    .cr-hub-hero__highlights li {
        flex: 0 0 auto;
        gap: 6px;
        font-size: 0.78rem;
        white-space: normal;
    }

    .cr-hub-hero__highlights .material-symbols-outlined {
        font-size: 15px;
    }

    .cr-hub-booking {
        margin-top: -36px;
        padding: 12px 12px 10px;
        border-radius: 14px;
        gap: 10px;
        box-shadow: 0 12px 28px rgba(0, 30, 60, 0.12);
    }

    .cr-hub-booking__steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 12px;
    }

    .cr-hub-booking__step-sep {
        display: none;
    }

    .cr-hub-booking__step-label {
        white-space: normal;
        font-size: 11px;
    }

    .cr-hub-booking__panel {
        padding: 14px 12px 12px;
        gap: 14px;
        border-radius: 12px;
    }

    .cr-hub-booking__fields {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .cr-hub-booking__actions {
        gap: 12px;
    }

    .cr-hub-booking__trust {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        text-align: left;
    }

    .cr-hub-booking__field {
        gap: 4px;
    }

    .cr-hub-booking__label {
        font-size: 10px;
        letter-spacing: 0.03em;
    }

    .cr-hub-booking__control {
        min-height: 38px;
        padding: 0 10px;
        border-radius: 8px;
        font-size: 13px;
    }

    .cr-hub-booking__control-wrap .select2-container .select2-selection--single {
        min-height: 38px;
        border-radius: 8px;
    }

    .cr-hub-booking__control-wrap .select2-container .select2-selection--single .select2-selection__rendered {
        height: 36px;
        padding-left: 10px;
        font-size: 13px;
        line-height: 36px;
    }

    .cr-hub-booking__submit {
        min-height: 42px;
        padding: 0 14px;
        border-radius: 10px;
        font-size: 12px;
        gap: 6px;
    }

    .cr-hub-booking__submit .material-symbols-outlined {
        font-size: 16px;
    }

    .cr-hub-booking__trust {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        margin-top: 0;
        font-size: 11px;
        line-height: 1.35;
        text-align: left;
    }

    .cr-hub-booking__trust .material-symbols-outlined {
        font-size: 14px;
        flex-shrink: 0;
    }

    .cr-hub-section {
        padding: 24px 0;
    }

    .cr-hub-section__header {
        margin-bottom: 14px;
    }

    .cr-hub-section__header h2,
    .cr-hub-fleet__header h2 {
        font-size: 1.15rem;
        line-height: 1.3;
    }

    .cr-hub-section__header p {
        margin-top: 6px;
        font-size: 0.8rem;
        line-height: 1.45;
    }

    .cr-hub-fleet__header {
        margin-bottom: 12px;
    }

    .cr-hub-fleet__view-all {
        font-size: 12px;
    }

    .cr-hub-why {
        grid-template-columns: 1fr 1fr;
        gap: 12px 10px;
    }

    .cr-hub-why__icon {
        width: 34px;
        height: 34px;
    }

    .cr-hub-why__icon .material-symbols-outlined {
        font-size: 17px;
    }

    .cr-hub-why__item h3 {
        font-size: 0.75rem;
    }

    .cr-hub-why__item p {
        font-size: 0.68rem;
        line-height: 1.4;
    }

    .cr-hub-process,
    .cr-hub .car-service-grid {
        grid-template-columns: 1fr;
    }

    .cr-hub-amenities {
        justify-content: center;
        gap: 8px 12px;
        padding: 10px 12px;
        margin-top: 14px;
    }

    .cr-hub-amenities li {
        font-size: 11px;
        gap: 4px;
    }

    .cr-hub-amenities .material-symbols-outlined {
        font-size: 15px;
    }

    .cr-hub-vehicle-card {
        flex-basis: min(280px, 84vw);
    }

    .cr-hub-vehicle-card__body {
        padding: 12px 12px 14px;
        gap: 6px;
    }

    .cr-hub-vehicle-card__title {
        font-size: 0.9rem;
    }

    .cr-hub-vehicle-card__meta span,
    .cr-hub-vehicle-card__tags li,
    .cr-hub-vehicle-card__price {
        font-size: 11px;
    }

    .cr-hub-vehicle-card__cta {
        width: 100%;
        min-height: 36px;
        font-size: 10px;
    }

    .cr-hub-route {
        flex-basis: min(240px, 78vw);
    }

    .cr-hub-review {
        flex-basis: min(300px, 88vw);
        padding: 14px;
        gap: 12px;
    }

    .cr-hub-review__media {
        width: 34px;
        height: 34px;
        min-height: 0;
        border-radius: 999px;
    }

    .cr-hub-review blockquote {
        font-size: 0.82rem;
        line-height: 1.5;
    }

    .cr-hub-review__author strong {
        font-size: 0.88rem;
    }

    .cr-hub-section--reviews .cr-hub-slider {
        padding-inline: 28px;
        margin-inline: -4px;
    }

    .cr-hub-fleet__search {
        width: 100%;
    }

    .cr-hub-cta__card {
        background:
            linear-gradient(180deg, rgba(0, 30, 60, 0.2) 0%, rgba(0, 30, 60, 0.55) 42%, var(--cr-navy) 72%),
            var(--cr-hub-cta-image) center 40% / cover no-repeat,
            var(--cr-navy);
    }

    .cr-hub-cta__inner {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        min-height: 240px;
        padding: 22px 16px;
        gap: 14px;
    }

    .cr-hub-cta__copy h2 {
        font-size: 1.2rem;
        line-height: 1.25;
        white-space: normal;
    }

    .cr-hub-cta__tagline {
        font-size: 0.8rem;
        white-space: normal;
    }

    .cr-hub-cta__aside {
        align-items: flex-start;
        width: 100%;
    }

    .cr-hub-cta__actions {
        justify-content: flex-start;
        gap: 8px;
    }

    .cr-hub-cta__btn {
        min-height: 40px;
        padding: 0 14px;
        font-size: 12px;
    }

    .cr-hub-cta__notes {
        justify-content: flex-start;
        font-size: 11px;
        gap: 8px 14px;
    }

}

/* ========== Needs modal (Chọn xe) ========== */
html.cr-hub-needs-open,
body.cr-hub-needs-open {
    overflow: hidden;
}

.cr-hub-needs-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cr-hub-needs-modal[hidden] {
    display: none !important;
}

.cr-hub-needs-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 20, 45, 0.55);
    backdrop-filter: blur(3px);
}

.cr-hub-needs-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 34rem);
    max-height: min(92dvh, 40rem);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge legacy */
}

.cr-hub-needs-modal__dialog::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none; /* Chrome/Safari/Opera */
}

.cr-hub-needs-modal__card {
    background: #fff;
    border-radius: 1.1rem;
    border: 1px solid rgba(0, 30, 60, 0.08);
    box-shadow: 0 24px 60px rgba(0, 20, 45, 0.28);
    padding: 1.15rem 1.2rem 1.25rem;
}

.cr-hub-needs-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.95rem;
}

.cr-hub-needs-modal__header h2 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 850;
    color: var(--cr-navy, #001e3c);
    letter-spacing: -0.02em;
}

.cr-hub-needs-modal__subtitle {
    margin: 0.3rem 0 0;
    color: rgba(0, 30, 60, 0.62);
    font-size: 0.875rem;
    line-height: 1.45;
}

.cr-hub-needs-modal__close {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 30, 60, 0.12);
    background: #fff;
    color: rgba(0, 30, 60, 0.7);
    cursor: pointer;
}

.cr-hub-needs-modal__close:hover {
    background: #f4f7fb;
}

.cr-hub-needs-modal__vehicle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.7rem 0.8rem;
    border-radius: 0.85rem;
    background: #f5f8fc;
    border: 1px solid rgba(0, 30, 60, 0.06);
}

.cr-hub-needs-modal__vehicle img {
    width: 4.5rem;
    height: 3.35rem;
    object-fit: cover;
    border-radius: 0.55rem;
    background: #e8eef5;
}

.cr-hub-needs-modal__vehicle-label {
    margin: 0;
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(0, 30, 60, 0.5);
}

.cr-hub-needs-modal__vehicle strong {
    display: block;
    margin-top: 0.1rem;
    color: var(--cr-navy, #001e3c);
    font-size: 0.95rem;
}

.cr-hub-needs-modal__vehicle span {
    display: block;
    margin-top: 0.15rem;
    color: rgba(0, 30, 60, 0.58);
    font-size: 0.78rem;
}

.cr-hub-needs-modal__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.cr-hub-needs-modal__field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
}

.cr-hub-needs-modal__field--full {
    grid-column: 1 / -1;
}

.cr-hub-needs-modal__field span {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(0, 30, 60, 0.72);
}

.cr-hub-needs-modal__field input,
.cr-hub-needs-modal__field select,
.cr-hub-needs-modal__field textarea {
    width: 100%;
    min-height: 2.65rem;
    padding: 0.55rem 0.75rem;
    border: 1px solid rgba(0, 30, 60, 0.14);
    border-radius: 0.65rem;
    background: #fff;
    color: #001e3c;
    font-size: 0.92rem;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.cr-hub-needs-modal__field textarea {
    min-height: 4.25rem;
    resize: vertical;
}

.cr-hub-needs-modal__field input:focus,
.cr-hub-needs-modal__field select:focus,
.cr-hub-needs-modal__field textarea:focus {
    border-color: var(--cr-navy, #001e3c);
    box-shadow: 0 0 0 3px rgba(0, 30, 60, 0.1);
}

.cr-hub-needs-modal__field input.is-invalid,
.cr-hub-needs-modal__field select.is-invalid {
    border-color: #c2410c;
}

.cr-hub-needs-modal__section-label {
    grid-column: 1 / -1;
    margin: 0.25rem 0 0;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(0, 30, 60, 0.55);
}

.cr-hub-alert {
    margin: 0 0 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 0.85rem;
    font-size: 0.9rem;
    font-weight: 650;
    line-height: 1.45;
}

.cr-hub-alert--success {
    background: rgba(22, 163, 74, 0.1);
    border: 1px solid rgba(22, 163, 74, 0.28);
    color: #166534;
}

.cr-hub-alert--error {
    background: rgba(194, 65, 12, 0.1);
    border: 1px solid rgba(194, 65, 12, 0.25);
    color: #9a3412;
}

.cr-hub-needs-modal__field small {
    color: rgba(0, 30, 60, 0.55);
    font-size: 0.72rem;
    line-height: 1.4;
}

.cr-hub-needs-modal__field--file input[type="file"] {
    padding: 0.45rem 0.55rem;
    font-size: 0.82rem;
    cursor: pointer;
}

.cr-hub-needs-modal__file-name {
    display: block;
    margin-top: -0.15rem;
    color: var(--cr-navy, #001e3c);
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 650;
}

.cr-hub-needs-modal__file-name[hidden] {
    display: none !important;
}

.cr-hub-needs-modal__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.55rem;
    margin-top: 1.1rem;
}

.cr-hub-needs-modal__cancel {
    min-height: 2.65rem;
    padding: 0 1rem;
    border-radius: 0.65rem;
    border: 1px solid rgba(0, 30, 60, 0.14);
    background: #fff;
    color: rgba(0, 30, 60, 0.75);
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
}

.cr-hub-needs-modal__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    min-height: 2.65rem;
    padding: 0 1.15rem;
    border: none;
    border-radius: 0.65rem;
    background: var(--cr-navy, #001e3c);
    color: #fff;
    font-weight: 800;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.12s ease;
}

.cr-hub-needs-modal__submit:hover {
    background: #002a54;
}

.cr-hub-needs-modal__submit:active {
    transform: scale(0.98);
}

.cr-hub-needs-modal__submit .material-symbols-outlined {
    font-size: 1.15rem;
}

@media (max-width: 560px) {
    .cr-hub-needs-modal {
        align-items: flex-end;
        padding: 0;
    }

    .cr-hub-needs-modal__dialog {
        width: 100%;
        max-height: 92dvh;
    }

    .cr-hub-needs-modal__card {
        border-radius: 1.15rem 1.15rem 0 0;
        padding: 1.05rem 1rem 1.2rem;
    }

    .cr-hub-needs-modal__grid {
        grid-template-columns: 1fr;
    }

    .cr-hub-needs-modal__actions {
        flex-direction: column-reverse;
    }

    .cr-hub-needs-modal__cancel,
    .cr-hub-needs-modal__submit {
        width: 100%;
    }
}
