/* ==========================================================================
   Rental Booking Styles — Reliable Shuttle
   Brand: #333 bg, #52a4a6 primary, #FFF text/cards
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Jomolhari&display=swap');

html {
    user-select: none;
    -webkit-user-select: none;
}

/* --- Hero Banner --- */
.hero-banner {
    position: relative;
    width: 100%;
    min-height: 360px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-banner__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(51, 51, 51, 0.3) 0%,
        rgba(51, 51, 51, 0.5) 60%,
        #333333 100%
    );
}

.hero-banner__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 40px 24px;
}

.hero-banner__title {
    font-family: 'Jomolhari', serif;
    color: #ffffff;
    font-size: 72px;
    line-height: 1.1;
    margin: 0 0 16px 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 0, 0, 0.3);
}

.hero-banner__desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 260px;
    }
    .hero-banner__title {
        font-size: 40px;
    }
    .hero-banner__desc {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        min-height: 200px;
    }
    .hero-banner__title {
        font-size: 28px;
    }
    .hero-banner__desc {
        font-size: 13px;
    }
}

/* --- Service Tabs --- */
.service-tabs {
    background: #333333;
    border-bottom: 1px solid #444;
}

.service-tabs__inner {
    display: flex;
    justify-content: center;
    max-width: 960px;
    margin: 0 auto;
}

.service-tabs .tab {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px 32px;
    color: #999;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
}

.service-tabs .tab:hover {
    color: #fff;
}

.service-tabs .tab.active {
    color: #fff;
    border-bottom-color: #52a4a6;
}

/* --- Tab Content --- */
.tab-content {
    min-height: 200px;
}


/* --- Rental Tab Container --- */
#tab-rental .rental-wrapper {
    display: flex;
    max-width: 960px;
    margin: 0 auto;
    padding: 24px 16px;
    gap: 24px;
}

/* --- Rental Layout (form content wrapper) --- */
.rental-layout {
    flex: 1;
    min-width: 0;
}

/* --- Left Sidebar: Steps --- */
.rental-steps {
    width: 160px;
    flex-shrink: 0;
    padding-top: 8px;
    position: sticky;
    top: 80px;
    align-self: flex-start;
}

.rental-steps .step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 8px;
    cursor: default;
    color: #666;
    font-size: 14px;
    transition: color 0.2s;
    border-left: 3px solid transparent;
}

.rental-steps .step.active {
    color: #fff;
    border-left-color: #52a4a6;
}

.rental-steps .step.active .step__indicator {
    color: #52a4a6;
}

.rental-steps .step.completed {
    color: #ccc;
    cursor: pointer;
    border-left-color: #52a4a6;
}

.rental-steps .step.completed .step__indicator {
    color: #52a4a6;
}

.rental-steps .step.completed:hover {
    color: #fff;
}

.step__indicator {
    font-size: 14px;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.step__label {
    white-space: nowrap;
}

/* --- Right Content: Form --- */
.rental-form {
    flex: 1;
    min-width: 0;
}

.rental-form__title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0;
}

/* 黑底上的 el-form-item label 默认白色,白底卡片(segment-card / charter-form-card)内回退深色 */
.rental-step-content .el-form-item__label {
    color: #fff !important;
}
.rental-step-content .segment-card .el-form-item__label,
.rental-step-content .charter-form-card .el-form-item__label {
    color: #666 !important;
}
/* 黑底上的 form-label / form-checkbox 文字色 */
.rental-step-content > .form-group > .form-label,
.rental-step-content > .form-row .form-label,
.rental-step-content > .form-checkbox,
.rental-step-content > .form-checkbox span {
    color: #fff;
}

.rental-form__divider {
    border: none;
    border-top: 1px solid #444;
    margin: 24px 0;
}

.rental-form__actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 24px;
}

.rental-form__disclaimer {
    font-size: 12px;
    color: #999;
    line-height: 1.5;
    margin-top: 16px;
}

.rental-form__disclaimer a {
    color: #52a4a6;
}

/* --- Form Elements --- */
.form-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.form-group {
    margin-bottom: 16px;
    width: 100%;
}

.form-group--half {
    flex: 1 1 calc(50% - 8px);
    min-width: 140px;
}

.form-group--third {
    flex: 1 1 calc(33.333% - 11px);
    min-width: 120px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #ccc;
    margin-bottom: 6px;
}

.form-label .required {
    color: #ff6b6b;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    color: #333;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.form-input,
.form-select {
    height: 44px;
}

/* US date format wrapper */
.date-us-wrapper {
    position: relative;
}

.date-us-wrapper .date-us-hidden {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.date-us-wrapper [name="seg_date_display"] {
    cursor: pointer;
}

/* Native date/time input: click anywhere triggers picker */
input[type="date"],
input[type="time"] {
    cursor: pointer;
    position: relative;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: #52a4a6;
    box-shadow: 0 0 0 2px rgba(0, 255, 204, 0.15);
}

.form-textarea {
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ccc;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 16px;
}

.form-checkbox input[type="checkbox"] {
    -webkit-appearance: checkbox !important;
    appearance: checkbox !important;
    accent-color: #52a4a6;
    width: 18px;
    height: 18px;
    opacity: 1 !important;
    position: static !important;
}

/* --- Form Validation Errors --- */
.form-error {
    display: block;
    color: #ff6b6b;
    font-size: 12px;
    margin-top: 4px;
}

.form-input.is-error,
.form-select.is-error {
    border-color: #ff6b6b !important;
}

/* --- Element UI Form Overrides --- */

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    line-height: 1.4;
}

.btn--primary {
    background: #52a4a6;
    color: #fff;
}

.btn--primary:hover {
    background: #3d8a8c;
    box-shadow: 0 2px 8px rgba(0, 255, 204, 0.3);
}

.btn--outline {
    background: transparent;
    color: #52a4a6;
    border: 1px solid #52a4a6;
}

.btn--outline:hover {
    background: rgba(0, 255, 204, 0.1);
}

.btn--sm {
    padding: 8px 18px;
    font-size: 13px;
}

.btn--danger {
    background: #ff4d4d;
    color: #fff;
}

.btn--danger:hover {
    background: #e63939;
}

/* --- Segment Card --- */
.segment-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.segment-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.segment-card__title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.segment-card .form-label {
    color: #666;
}

.segment-card .form-input,
.segment-card .form-select,
.segment-card .form-textarea {
    color: #333;
}

.segment-actions {
    display: flex;
    gap: 8px;
}

.segment-actions__btn {
    width: 36px;
    height: 36px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: #f8f8f8;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
}

.segment-actions__btn:hover {
    background: #eee;
    border-color: #52a4a6;
}

.segment-actions__btn--delete {
    color: #ff4d4d;
}

.segment-actions__btn--delete:hover {
    background: #fff0f0;
    border-color: #ff4d4d;
}

.segment-add-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* --- Vehicle Grid --- */
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.vehicle-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
}

.vehicle-card:hover {
    box-shadow: 0 4px 16px rgba(0, 255, 204, 0.2);
    transform: translateY(-2px);
}

.vehicle-card.selected {
    box-shadow: 0 0 0 3px #52a4a6;
}

.vehicle-card__image {
    width: 100%;
    height: 140px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.vehicle-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vehicle-card__info {
    padding: 14px;
    text-align: center;
}

.vehicle-card__name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 4px 0;
}

.vehicle-card__capacity {
    font-size: 13px;
    color: #666;
    margin: 0 0 12px 0;
}

/* --- Trip Summary (used in steps 2, 3) --- */
.trip-summary {
    background: #3a3a3a;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 20px;
    color: #ccc;
    font-size: 13px;
    line-height: 1.6;
}

.trip-summary strong {
    color: #fff;
}

/* --- Extras --- */
.extras-section {
    margin-top: 20px;
}

.extras-section__title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 12px 0;
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

/* Extras 表格化样式 (Item / Price / Quantity 三列) */
.extras-table {
    width: 100%;
    border-collapse: collapse;
    background: #2a2a2a;
    border-radius: 6px;
    overflow: hidden;
    color: #ccc;
    font-size: 14px;
}
.extras-table thead th {
    background: #333;
    color: #fff;
    font-weight: 600;
    text-align: left;
    padding: 10px 14px;
    font-size: 13px;
    border-bottom: 1px solid #444;
}
.extras-table tbody td {
    padding: 10px 14px;
    border-bottom: 1px solid #333;
    vertical-align: middle;
}
.extras-table tbody tr:last-child td {
    border-bottom: none;
}
.extras-table tbody tr.is-selected {
    background: rgba(68, 157, 143, 0.08);
}
.extras-table__col-price { width: 110px; }
.extras-table__col-qty { width: 130px; }
.extras-table__price { color: #fff; }
.extras-table__qty { text-align: left; }
.extras-table.is-loading { opacity: 0.6; pointer-events: none; }

.extra-qty {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #1f1f1f;
    border-radius: 6px;
    padding: 2px;
}
.extra-qty__add {
    width: 28px;
    height: 28px;
    border: 1px solid #555;
    background: transparent;
    color: #ccc;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    line-height: 1;
}
.extra-qty__add:hover:not(:disabled) {
    background: #449d8f;
    border-color: #449d8f;
    color: #fff;
}
.extra-qty__add:disabled { opacity: 0.4; cursor: not-allowed; }

.extra-include {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    color: #ccc;
}
.extra-include input[type="checkbox"] {
    -webkit-appearance: auto !important;
    appearance: auto !important;
    accent-color: #449d8f;
    width: 16px !important;
    height: 16px !important;
}

.extra-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #3a3a3a;
    border-radius: 6px;
    color: #ccc;
    font-size: 14px;
    transition: background 0.2s;
}

.extra-item:hover {
    background: #444;
}

.extra-item__main {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    cursor: pointer;
}

.extra-item__qty {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #2a2a2a;
    border-radius: 6px;
    padding: 2px;
    flex-shrink: 0;
}

.extra-qty__btn {
    width: 24px;
    height: 24px;
    border: none;
    background: #555;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.extra-qty__btn:hover:not(:disabled) {
    background: #449d8f;
}

.extra-qty__btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.extra-qty__num {
    min-width: 20px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
}

.extra-item__checkbox {
    -webkit-appearance: auto !important;
    appearance: auto !important;
    accent-color: #449d8f;
    width: 16px !important;
    height: 16px !important;
    line-height: normal !important;
    flex-shrink: 0;
    margin: 0;
}

.extra-item__label {
    flex: 1;
}

.extra-item__price {
    color: #52a4a6;
    font-weight: 600;
    font-size: 13px;
}

/* --- Quote Error (address not found, distance calc failed, ...) --- */
.quote-error {
    margin-top: 20px;
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fff5f5;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    color: #b94a48;
    font-size: 14px;
    line-height: 1.5;
}

.quote-error__icon {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #e74c3c;
    color: #fff;
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.quote-error__text {
    flex: 1 1 auto;
    word-break: break-word;
}

/* --- Price Breakdown --- */
.price-breakdown {
    margin-top: 20px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.price-breakdown.is-loading .price-breakdown__table {
    opacity: 0.4;
}

.price-breakdown__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.6);
    color: #449d8f;
    font-size: 14px;
    font-weight: 600;
    z-index: 2;
    pointer-events: none;
}

.price-breakdown__spinner {
    width: 16px;
    height: 16px;
    border: 2px solid #449d8f;
    border-top-color: transparent;
    border-radius: 50%;
    animation: pb-spin 0.8s linear infinite;
}

@keyframes pb-spin {
    to { transform: rotate(360deg); }
}

.extra-item.is-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.price-breakdown__table {
    width: 100%;
    border-collapse: collapse;
}

.price-breakdown__table td {
    padding: 12px 20px;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #eee;
}

.price-breakdown__amount {
    text-align: right;
    font-weight: 600;
}

.price-breakdown__total td {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    background: #f0fdf9;
    border-bottom: none;
}

/* --- Order Summary (Step 4) --- */
.order-summary {
    background: #3a3a3a;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.order-summary__title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 12px 0;
}

#orderSummaryContent,
.order-summary > div {
    color: #ccc;
    font-size: 13px;
    line-height: 1.7;
}

/* --- Charter Form --- */
.charter-form-wrapper {
    max-width: 640px;
    margin: 0 auto;
    padding: 24px 16px;
}

.charter-form__title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
}

.charter-form__subtitle {
    font-size: 14px;
    color: #999;
    margin: 0 0 24px 0;
}

.charter-form__section-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 16px 0;
}

.charter-form__note {
    font-size: 13px;
    color: #52a4a6;
    font-style: italic;
    margin: 16px 0;
}

/* --- Reviews Section --- */
.reviews-section {
    background: #2a2a2a;
    padding: 48px 16px;
}

.reviews-section .wrap {
    max-width: 960px;
    margin: 0 auto;
}

.reviews-section__title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin: 0 0 32px 0;
}

.reviews-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
}

.review-card {
    flex: 0 0 300px;
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    scroll-snap-align: start;
}

.review-card__stars {
    color: #f5a623;
    font-size: 16px;
    margin-bottom: 12px;
}

.review-card__text {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin: 0 0 12px 0;
}

.review-card__author {
    font-size: 13px;
    color: #666;
    font-weight: 600;
}

/* --- Location Input with Add/Remove Stop --- */
.location-input-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.location-input-row .form-input {
    flex: 1;
}

.location-action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #f8f8f8;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
    color: #666;
    line-height: 1;
}

.location-action-btn:hover {
    border-color: #52a4a6;
    background: #eee;
}

.location-action-btn--add {
    color: #52a4a6;
    font-weight: 700;
}

.location-action-btn--remove {
    color: #ff4d4d;
    font-size: 14px;
}

.location-action-btn--remove:hover {
    border-color: #ff4d4d;
    background: #fff0f0;
}

.stop-item {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.stop-item::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    width: 6px;
    height: 6px;
    background: #52a4a6;
    border-radius: 50%;
    transform: translateY(-50%);
}

.stop-item .form-input {
    flex: 1;
}

.stops-container {
    margin-bottom: 4px;
}

/* --- Rental Date Picker (reuses SearchDateSelector) --- */
.rental-date-picker {
    position: relative;
}

.rental-date-picker .idate {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
    z-index: 1;
}

.rental-date-picker input[sid="input"] {
    cursor: pointer;
    padding-right: 36px;
}

.rental-date-picker .extend {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 200;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    margin-top: 4px;
}

.rental-date-picker .extend.date_2colomn {
    min-width: 500px;
}

@media (max-width: 767px) {
    .rental-date-picker .extend.date_2colomn {
        min-width: auto;
        width: calc(100vw - 24px);
        left: -12px;
    }
}

/* --- Toggle Button Group --- */
.toggle-group {
    display: flex;
    gap: 0;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.toggle-btn {
    flex: 1;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    background: #f5f5f5;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.toggle-btn + .toggle-btn {
    border-left: 1px solid #ddd;
}

.toggle-btn.active {
    background: #52a4a6;
    color: #ffffff;
}

.toggle-btn:hover:not(.active) {
    background: #eee;
}

/* --- Modal --- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.modal__content {
    position: relative;
    background: #fff;
    border-radius: 10px;
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1;
}

.modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
}

.modal__header h3 {
    margin: 0;
    font-size: 17px;
    color: #333;
}

.modal__close {
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.modal__close:hover {
    color: #333;
}

.modal__body {
    padding: 20px;
}

.modal__body .form-label {
    color: #666;
}

.modal__body .form-input,
.modal__body .form-textarea {
    color: #333;
}

.modal__footer {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 16px;
}


/* Segment flight/baggage filled state */
.segment-actions__btn.filled {
    background: #52a4a6;
    border-color: #52a4a6;
    color: #333;
}
.segment-actions__btn.filled svg path {
    stroke: #333;
    fill: #333;
}



/* Reviews full-width auto-scroll */
.reviews-fullwidth {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    background-color: #2d2d2d !important;
    background-color: #2a2a2a;
}
.reviews-header {
    text-align: center;
    margin-bottom: 24px;
}
.reviews-header h3 {
    color: #52a4a6;
    font-size: 22px;
    margin: 0;
}
.reviews-track-wrapper {
    overflow: hidden;
    width: 100%;
}
.reviews-track {
    display: flex;
    gap: 20px;
    animation: scroll-reviews 30s linear infinite;
    width: max-content;
}
.reviews-track:hover {
    animation-play-state: paused;
}
.review-item {
    flex-shrink: 0;
    width: 300px;
    background-color: #333333;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 20px;
}
.review-stars {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 8px;
}
.review-item p {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 12px 0;
    font-style: italic;
}
.review-author {
    color: #cccccc;
    font-size: 13px;
    display: block;
}
.review-source {
    color: #52a4a6;
    font-size: 12px;
    display: block;
    margin-top: 4px;
}
@keyframes scroll-reviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   Landing Page
   ========================================================================== */

.landing-page {
    background: #333333;
}

.hero-banner--landing {
    min-height: 440px;
}

.hero-banner__logo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.landing-cta {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 40px;
    background: #52a4a6;
    color: #333;
    font-size: 16px;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s;
}

.landing-cta:hover {
    background: #3d8a8c;
    box-shadow: 0 2px 12px rgba(0, 255, 204, 0.3);
    color: #333;
}

.landing-section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 40px 0;
}

/* --- Service Cards --- */
.landing-services {
    max-width: 1080px;
    margin: 0 auto;
    padding: 60px 24px;
}

.landing-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: #3a3a3a;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.service-card__image {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.service-card__body {
    padding: 20px;
}

.service-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
}

.service-card__desc {
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
    margin: 0 0 12px 0;
}

.service-card__link {
    font-size: 14px;
    font-weight: 600;
    color: #52a4a6;
}

/* --- Why Choose Us --- */
.why-choose-us {
    padding: 60px 24px;
    background: #2d2d2d;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto 48px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 140px;
}

.stat-item__number {
    font-size: 48px;
    font-weight: 800;
    color: #52a4a6;
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat-item__label {
    font-size: 14px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 24px 16px;
}

.feature-item__icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.feature-item__title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
}

.feature-item__desc {
    font-size: 13px;
    color: #aaa;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 900px) {
    .landing-services__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .hero-banner__logo {
        width: 120px;
        height: 120px;
    }
    .hero-banner--landing {
        min-height: 320px;
    }
    .landing-section-title {
        font-size: 22px;
        margin-bottom: 28px;
    }
    .landing-services {
        padding: 40px 16px;
    }
    .why-choose-us {
        padding: 40px 16px;
    }
    .stat-item__number {
        font-size: 36px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Cities Carousel (Tab1) — Swiper.js --- */
.cities-carousel {
    width: 100%;
    background: #2d2d2d;
}

.cities-carousel .landing-section-title {
    color: #fff;
    margin-bottom: 28px;
}

.cities-swiper .swiper-wrapper {
    height: auto;
}

.cities-swiper .swiper-slide {
    width: 860px;
    max-width: calc(100vw - 32px);
    height: auto;
}

.city-showcase {
    display: flex;
    gap: 40px;
    align-items: stretch;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 24px;
    box-sizing: border-box;
    height: 100%;
}

.city-showcase__image {
    width: 45%;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    min-height: 380px;
}

.city-showcase__image img {
    width: 100%;
    height: auto;
    min-height: 100%;
    object-fit: cover;
    display: block;
    flex: 1;
}

.city-showcase__content {
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.city-showcase__name {
    font-size: 42px;
    color: #222;
    font-family: 'Jomolhari', serif;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.city-showcase__subtitle {
    font-size: 16px;
    color: #52a4a6;
    font-style: italic;
    margin: 0;
}

.city-showcase__divider {
    width: 60px;
    height: 2px;
    background: #52a4a6;
    margin: 16px 0;
}

.city-showcase__desc {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin: 0 0 20px 0;
}

.city-showcase__features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.city-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.city-feature svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.city-feature strong {
    display: block;
    color: #222;
    font-size: 14px;
    margin-bottom: 2px;
}

.city-feature span {
    color: #777;
    font-size: 12px;
}

@media (max-width: 768px) {
    .city-showcase {
        flex-direction: column;
        gap: 20px;
        padding: 16px;
    }

    .city-showcase__image {
        width: 100%;
    }

    .city-showcase__image img {
        height: 220px;
    }

    .city-showcase__content {
        width: 100%;
    }

    .city-showcase__name {
        font-size: 28px;
    }
}

/* Segment icon styles */
.segment-icon-flight, .segment-icon-baggage {
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.segment-icon-flight:hover, .segment-icon-baggage:hover {
    opacity: 1;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* Tablet */
@media (max-width: 767px) {
    /* Tabs: full-width */
    .service-tabs .tab {
        flex: 1;
        padding: 12px 8px;
        font-size: 13px;
        text-align: center;
    }

    /* Tab rental container: stack vertically on mobile */
    .rental-wrapper {
        display: block !important;
        max-width: none;
        margin: 0;
        padding: 0;
    }

    /* Sidebar becomes horizontal step bar — sticks to top of .main scroll area */
    .rental-steps {
        width: 100%;
        display: flex;
        overflow-x: auto;
        padding: 0;
        gap: 0;
        border-bottom: none;
        border-radius: 0;
        background-color: #333333;
        position: sticky;
        top: 0;
        z-index: 50;
        margin: 0;
    }

    .rental-layout {
        padding: 0;
    }

    .rental-form {
        padding: 16px 12px;
    }

    .rental-steps .step {
        flex: 1;
        min-width: 0;
        justify-content: center;
        padding: 10px 6px;
        font-size: 12px;
        border-left: none;
        border-bottom: 3px solid transparent;
        text-align: center;
    }

    .rental-steps .step.active {
        border-left: none;
        border-bottom-color: #52a4a6;
    }

    .rental-steps .step.completed {
        border-left: none;
        border-bottom-color: #52a4a6;
    }

    .step__label {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Form layout */
    .form-group--half,
    .form-group--third {
        flex: 1 1 100%;
    }

    .rental-form__title {
        font-size: 18px;
    }

    .rental-form__actions {
        flex-direction: column;
    }

    .rental-form__actions .btn {
        width: 100%;
    }

    /* Vehicle grid single column */
    .vehicle-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }

    /* Reviews: single column scroll */
    .review-card {
        flex: 0 0 260px;
    }

    /* Charter form */
    .charter-form-wrapper {
        padding: 16px 12px;
    }

    /* Modal */
    .modal__content {
        width: 95%;
    }
}

/* Small phone */
@media (max-width: 400px) {
    .service-tabs .tab {
        font-size: 12px;
        padding: 10px 4px;
    }

    .segment-card {
        padding: 14px;
    }

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

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

    .review-card {
        flex: 0 0 240px;
    }
}

/* Reduce search bar padding */
.search_index,
.search.search_index,
section.search.search_index,
.search {
    padding: 10px 0 10px !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
}
@media (min-width: 981px) {
    .search_index, .search.search_index, .search {
        height: auto !important;
        min-height: 0 !important;
    }
}
.search_index .wrap,
.search .wrap {
    padding-bottom: 0 !important;
    padding-top: 0 !important;
}

/* Mobile sidebar (header .fluid) z-index fix */
@media (max-width: 768px) {
    header .wrap .fluid {
        z-index: 99999 !important;
    }
    header .wrap .fluid .nav li a {
        color: #333333 !important;
    }
    header .wrap .fluid .nav li a:hover {
        color: #52a4a6 !important;
    }
}

/* body 背景色 — rental 页面专属,style.css 里的同规则已删除 */
body {
    background-color: #333333;
}

/* My Rental tab 图标 — 与字体图标视觉尺寸对齐 */
.sec_nav .my-rental-icon {
    width: 1em;
    height: 1em;
    vertical-align: -0.15em;
    margin-right: 4px;
}

/* ===========================================================
   My Rental Detail (/my-rental/detail)
   =========================================================== */
.rental-detail .wrap { padding: 24px 16px; max-width: 960px; margin: 0 auto; }
.rental-detail .rd-loading,
.rental-detail .rd-error { padding: 40px; text-align: center; color: #666; background: #fff; border-radius: 8px; }
.rental-detail .rd-error { color: #c0392b; }
.rental-detail .rd-back { margin-bottom: 12px; }
.rental-detail .rd-back-link { color: #fff; text-decoration: none; font-size: 14px; }
.rental-detail .rd-back-link:hover { color: #52a4a6; }
.rental-detail .rd-card { background: #fff; border-radius: 8px; padding: 20px; margin-bottom: 16px; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.rental-detail .rd-card-title { margin: 0 0 16px 0; font-size: 16px; font-weight: 600; color: #333; border-bottom: 1px solid #eee; padding-bottom: 8px; }
.rental-detail .rd-summary-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid #eee; }
.rental-detail .rd-quote-code { font-size: 14px; color: #555; }
.rental-detail .rd-quote-code .rd-label { color: #999; }
.rental-detail .rd-quote-code strong { color: #333; margin-left: 6px; font-size: 16px; }
.rental-detail .rd-badge { display: inline-block; padding: 4px 12px; background: #52a4a6; color: #fff; border-radius: 12px; font-size: 12px; }
.rental-detail .rd-summary-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.rental-detail .rd-cell { font-size: 14px; }
.rental-detail .rd-key { color: #999; font-size: 12px; margin-bottom: 4px; }
.rental-detail .rd-val { color: #333; font-weight: 500; }
.rental-detail .rd-segments .rd-empty { color: #999; padding: 12px 0; }
.rental-detail .rd-segment { padding: 12px 0; border-bottom: 1px dashed #eee; }
.rental-detail .rd-segment:last-child { border-bottom: none; }
.rental-detail .rd-seg-head { display: flex; align-items: center; margin-bottom: 8px; }
.rental-detail .rd-seg-idx { display: inline-block; padding: 2px 8px; background: #f0f0f0; color: #666; border-radius: 4px; font-size: 12px; margin-right: 8px; }
.rental-detail .rd-seg-time { color: #555; font-size: 13px; }
.rental-detail .rd-seg-row { display: flex; align-items: flex-start; padding: 4px 0; font-size: 14px; }
.rental-detail .rd-seg-pin { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin: 6px 8px 0 4px; flex-shrink: 0; }
.rental-detail .rd-pin-from { background: #52a4a6; }
.rental-detail .rd-pin-to { background: #e67e22; }
.rental-detail .rd-seg-addr { color: #333; line-height: 1.5; }
.rental-detail .rd-bill-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 14px; }
.rental-detail .rd-bill-key { color: #666; }
.rental-detail .rd-bill-val { color: #333; font-weight: 500; }
.rental-detail .rd-bill-due { border-top: 1px solid #eee; margin-top: 8px; padding-top: 12px; }
.rental-detail .rd-bill-due .rd-bill-key,
.rental-detail .rd-bill-due .rd-bill-val { font-size: 16px; font-weight: 600; color: #c0392b; }
.rental-detail .rd-actions { display: flex; gap: 12px; justify-content: flex-end; margin-top: 16px; }

@media (max-width: 768px) {
    .rental-detail .wrap { padding: 12px 8px; }
    .rental-detail .rd-summary-grid { grid-template-columns: 1fr; }
    .rental-detail .rd-actions { flex-direction: column; }
}
