:root {
    --ink: #0f172a;
    --muted: #6b7280;
    --card: #f3f4f6;
    --accent: #1f2937;
    --surface: #ffffff;
    --primary: #1d4ed8;
}

body {
    font-family: "Manrope", sans-serif;
    color: var(--ink);
    background: #f8fafc;
}

.booking-loader {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: grid;
    place-items: center;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.booking-loader-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, 0.35);
    backdrop-filter: blur(8px);
}

.booking-loader-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #f8fafc;
    font-weight: 600;
}

.booking-loader-logo {
    position: relative;
    display: inline-block;
    padding: 18px 28px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.booking-loader-logo::after {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 50%;
    height: 100%;
    background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shimmer 1.6s infinite;
}

.booking-loader-logo img {
    height: 64px;
    width: auto;
    display: block;
}

.booking-loader-text {
    margin-top: 16px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

body.is-loaded .booking-loader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(220%);
    }
}

.booking-header {
    background: #171a1b;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
}

.booking-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
}

.booking-logo img {
    height: 52px;
    width: auto;
    display: block;
}

.booking-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 0.8rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.booking-nav a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 600;
}

.booking-nav a:hover {
    color: #ffffff;
}

.booking-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.booking-icon-link {
    color: #e2e8f0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.booking-icon-link:hover {
    color: #ffffff;
}

.booking-menu-btn {
    border: 0;
    background: transparent;
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    padding: 6px 8px;
}

.booking-menu-btn span {
    width: 34px;
    height: 2px;
    background: #ffffff;
    display: block;
}

.booking-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
}

.step-pill {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
}

.hero-title {
    font-family: "Sora", sans-serif;
    font-size: clamp(2.2rem, 2.5vw + 1.5rem, 3.2rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    color: var(--muted);
    max-width: 480px;
}

.trip-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.trip-tab {
    border: 0;
    padding: 10px 18px;
    height: 100px;
    border-radius: 12px;
    background: #e5e7eb;
    font-weight: 600;
    color: var(--ink);
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.trip-tab.active {
    background: #111827;
    color: #fff;
}

.trip-card {
    background: var(--surface);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.trip-form {
    display: grid;
    gap: 16px;
}

.field label {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
    display: block;
}

.field-input {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--card);
    padding: 12px 14px;
    border-radius: 12px;
}

.field-input .iti {
    width: 100%;
}

.field-input .iti__tel-input {
    border: 0;
    background: transparent;
    width: 100%;
    font-size: 0.95rem;
    padding-left: 6px;
}

.field-input .iti__tel-input:focus {
    outline: none;
}

.field-input input {
    border: 0;
    background: transparent;
    width: 100%;
    font-size: 0.95rem;
}

.field-input input:focus {
    outline: none;
}

.field-icon {
    font-size: 0.9rem;
    color: var(--muted);
}

.field-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.return-btn {
    width: 100%;
    border: 1px solid #e5e7eb;
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    font-weight: 700;
}

.passenger-box {
    background: var(--card);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.passenger-label {
    color: var(--muted);
    font-size: 0.85rem;
}

.passenger-count {
    font-size: 1.3rem;
    font-weight: 700;
}

.passenger-input input {
    border: 0;
    background: transparent;
    width: 80px;
    font-size: 1.1rem;
    font-weight: 700;
}

.passenger-input {
    display: flex;
    align-items: center;
    margin-top: 6px;
    justify-content: space-between;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

.passenger-input input:focus {
    outline: none;
}

.passenger-controls {
    display: flex;
    gap: 10px;
}

.count-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 0;
    background: #111827;
    color: #fff;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease;
}

.count-btn:hover {
    background: #0f172a;
    transform: translateY(-1px);
}

.primary-btn {
    background: #111827;
    color: #fff;
    border: 0;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn:hover {
    background: #0f172a;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
}

.booking-step3-form {
    gap: 20px;
}

.form-section {
    display: grid;
    gap: 16px;
}

.section-title {
    font-weight: 700;
    font-size: 1rem;
}

.checkbox-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.passenger-section {
    display: none;
}

.passenger-section.is-active {
    display: grid;
}

.payment-methods {
    display: grid;
    gap: 12px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--card);
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 600;
}

.pricing-items {
    display: grid;
    gap: 10px;
    padding: 0 24px 24px;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    color: #111827;
}

.pricing-item span:last-child {
    font-weight: 700;
}

.pricing-total {
    padding-top: 10px;
    border-top: 1px solid #e5e7eb;
    font-size: 1.05rem;
}

.thankyou-card {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    border-radius: 24px;
    padding: 48px 32px;
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.1);
    display: grid;
    gap: 12px;
    justify-items: center;
}

.thankyou-badge {
    padding: 6px 14px;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
}

.thankyou-mark {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: #111827;
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 22px rgba(15, 23, 42, 0.2);
}

.thankyou-mark .material-symbols-outlined {
    font-size: 36px;
}

.thankyou-ref {
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.95rem;
}

.thankyou-btn {
    margin-top: 16px;
    display: inline-flex;
}

.trust-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--muted);
    justify-content: center;
}

.trust-stars {
    color: #16a34a;
    letter-spacing: 2px;
}

.hero-illustration {
    position: relative;
    padding: 0px 20px 20px 20px;
}

.hero-image {
    border-radius: 24px;
    aspect-ratio: 3/4;
    height: auto;
    background: linear-gradient(140deg, #0f172a 0%, #1f2937 45%, #1f2937 100%);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.2);
    overflow: hidden;
    position: relative;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.hero-slide.is-active {
    opacity: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 12px;
    font-weight: 600;
    backdrop-filter: blur(6px);
}

.fleet-card {
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    padding: 24px;
    background: #fff;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.fleet-card:hover {
    transform: translateY(-4px);
    border-color: #d1d5db;
    box-shadow: 0 26px 55px rgba(15, 23, 42, 0.12);
}

.fleet-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.fleet-title {
    font-family: "Sora", sans-serif;
    font-weight: 700;
    letter-spacing: 0.04em;
    font-size: 1.2rem;
}

.fleet-meta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    color: var(--muted);
    font-weight: 600;
    font-size: 0.9rem;
}

.fleet-body {
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
    align-items: center;
    margin-top: 20px;
}

.fleet-image {
    border-radius: 16px;
    /* background: #f1f5f9; */
    width: 100%;
    /* display: flex; */
}

.fleet-image img {
    max-width: 100%;
    /* max-height: 160px; */
    object-fit: contain;
}

.fleet-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
    color: #111827;
    font-weight: 600;
}

.fleet-features li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fleet-features li::before {
    display: inline-flex;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    border: 2px solid #111827;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.price-panel {
    border-radius: 18px;
}

.price-panel small {
    color: var(--muted);
    font-weight: 600;
}

.price-panel .price-value {
    font-size: 2rem;
    font-weight: 700;
    margin: 10px 0 18px;
}

.price-disclaimer {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: -8px;
    margin-bottom: 16px;
}

.price-meta {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 4px;
}

.select-btn {
    border: 0;
    background: #000000;
    color: #fff;
    padding: 12px 18px;
    width: 100%;
    border-radius: 5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: #000000 solid;
    transition: .5s;
}

.select-btn:hover{
    transform: translateY(-4px);
}

.fleet-card-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    align-items: start;
}

.fleet-list {
    display: grid;
    gap: 24px;
}

.fleet-card.horizontal {
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
}

.fleet-card.horizontal .fleet-image {
    height: 170px;
}

.fleet-card.horizontal .fleet-body {
    grid-template-columns: minmax(0, 1fr);
}

.fleet-empty-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    padding: 28px;
    text-align: center;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    display: grid;
    gap: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fleet-empty-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
}

.fleet-empty-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto;
    border-radius: 16px;
    background: #111827;
    color: #fff;
    display: grid;
    place-items: center;
}

.fleet-empty-title {
    font-weight: 700;
    font-size: 1.15rem;
}

.fleet-empty-text {
    color: var(--muted);
    margin: 0;
}

.fleet-empty-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 16px;
    border-radius: 12px;
    background: #111827;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.fleet-empty-btn:hover {
    background: #0f172a;
    color: #fff;
}

.fleet-summary {
    gap: 20px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    /* padding: 24px; */
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
    align-self: start;
}

.summary-fleet {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 0 24px 16px;
}

.summary-fleet-media img {
    width: 80px;
    height: 60px;
    object-fit: contain;
    border-radius: 12px;
    background: #f3f4f6;
    padding: 6px;
}

.summary-fleet-name {
    font-weight: 700;
}

.summary-fleet-price {
    font-size: 1.2rem;
    font-weight: 700;
}

.summary-fleet-caption {
    color: var(--muted);
    font-size: 0.85rem;
}

.summary-fleet-empty {
    padding: 0 24px 16px;
    color: var(--muted);
    font-weight: 600;
}

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 19px;
    font-weight: 700;
    background: #000000;
    padding: 24px;
    margin-bottom: 10px;
    color: #ffffff;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.summary-edit {
    font-size: 0.85rem;
    color: #c7c7c7;
    text-decoration: none;
}

.summary-edit:hover {
    color: #ffffff;
}

.summary-items {
    display: grid;
    gap: 12px;
    padding: 24px;
}

.summary-item {
    display: grid;
    grid-template-columns: 35px 1fr;
    gap: 12px;
    align-items: start;
    color: #111827;
    font-weight: 600;
}

.summary-dot {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.75rem;
}

.summary-item-content {
    line-height: 35px;
}

.summary-line {
    height: 20px;
    width: 2px;
    background: #111827;
    margin-left: 17px;
    opacity: 0.6;
    ;
}



.summary-map {
    height: 250px;
    border-radius: 16px;
    background: #e5e7eb;
}

.summary-footer {
    gap: 8px;
    font-size: 0.9rem;
    color: #111827;
    font-weight: 600;
    display: block;
    padding: 24px;
}

.summary-footer .sm-ft-item {
    gap:8px
}

@media (max-width: 1200px) {
    .fleet-card-grid {
        grid-template-columns: 1fr;
    }

    .booking-header-inner {
        flex-wrap: wrap;
    }

    .booking-nav {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
}

@media (max-width: 991px) {
    .fleet-card.horizontal {
        grid-template-columns: 1fr;
    }

    .booking-nav {
        letter-spacing: 0.2em;
        font-size: 0.75rem;
    }
}

@media (max-width: 991px) {
    .hero-image {
        height: 360px;
    }

    .fleet-body {
        grid-template-columns: 1fr;
    }
}
