* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Huninn", sans-serif;
}

.fa-solid,
.fa-regular,
.fa-brands {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
@font-face {
    font-display: swap;
    font-family: PP Fragment;
    font-style: normal;
    font-weight: 400;
    src:
        url(../fonts/PPFragment-GlareRegular.woff2) format("woff2"),
        url(../fonts/PPFragment-GlareRegular.woff) format("woff");
}
.pp-fragment {
    font-family: "PP Fragment", Tahoma, Geneva, Verdana, sans-serif;
}
body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

:root {
    --site-max-width: 1320px;
    --site-gutter: 20px;
}

.fadeInUp {
    animation-name: fadeInUp;
    animation-duration: 1s;
    animation-timing-function: ease;
    animation-fill-mode: both;
}

/* ============ NAVBAR ============ */
.navbar {
    display: flex;
    align-items: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999999999999999999 !important;
}
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    /* transition: all 0.3s ease; */
    background: transparent;
}

.navbar-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    width: min(calc(100% - (var(--site-gutter) * 2)), var(--site-max-width));
    margin: auto;
}
@media screen and (max-width: 1025px) {
    .navbar-inner {
        width: 100%;
    }
}

.nav-secondary {
    background: #000;
}

.navbar.scrolled {
    background: linear-gradient(
        180deg,
        rgba(251, 248, 242, 0.85),
        rgba(251, 248, 242, 0.65)
    );
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.navbar.scrolled {
    background: linear-gradient(
        180deg,
        rgba(251, 248, 242, 1) 0%,
        rgba(251, 248, 242, 0.9) 100%
    );
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.navbar.scrolled .navbar-menu-link,
.navbar.scrolled .navbar-contact,
.navbar.scrolled .navbar-language,
.navbar.scrolled .navbar-language-btn {
    color: #222;
}
.navbar-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.navbar-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
}

.navbar-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background-color: #fff;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}
.navbar-logo {
    display: block;
    width: 150px;
    height: 55px;
}

.navbar-panel {
    display: flex;
    align-items: center;
    width: 100%;
}

.navbar-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 5px;
    margin: 0;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: auto;
}
.navbar-menu-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.5s ease;
    padding: 4px 20px;
    border-radius: 20px;
    border: 1px solid transparent;
}

.navbar-menu-link i {
    width: 12px;
    height: 12px;
}

.navbar-menu-link:hover
/* .navbar-menu-link-active */ {
    border: 1px solid #aeaeae;
    /* color: #6e6e73; */
}

.navbar-contact,
.navbar-language,
.navbar-language-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.25s ease;
}

.navbar-contact,
.navbar-language {
    text-decoration: none;
}

.navbar-language-wrap {
    position: relative;
}

.navbar-language-btn {
    gap: 7px;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.navbar-language-current {
    text-transform: lowercase;
}
.navbar-selected-flag {
    width: 18px;
    height: 18px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    border-radius: 50%;
}

.navbar-language-caret {
    width: auto;
    height: auto;
    font-size: 12px;
    line-height: 1;
    transition: transform 0.25s ease;
}

.navbar-language-wrap.is-open .navbar-language-caret {
    transform: rotate(180deg);
}

.navbar-account-wrap {
    position: relative;
}

.navbar-account-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.navbar-account-label {
    max-width: 96px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.navbar-account-caret {
    font-size: 12px;
    transition: transform 0.25s ease;
}

.navbar-account-wrap.is-open .navbar-account-caret {
    transform: rotate(180deg);
}

.navbar-account-menu {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    min-width: 190px;
    padding: 10px;
    border-radius: 8px;
    background: #050505;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
    z-index: 1005;
}
@media screen and (max-width: 768px) {
    .navbar-account-menu{
        right: -67px;
    }
    
}

.navbar-account-link {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    text-align: left;
    font-size: 14px;
    text-decoration: none;
}

.navbar-account-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #6799f7;
}

.navbar-account-logout-form {
    margin: 0;
}

.navbar-account-logout-btn {
    font-family: inherit;
}

.navbar-contact:hover,
.navbar-language:hover,
.navbar-language-btn:hover {
    color: #6799f7;
}

.navbar-contact i,
.navbar-language i,
.navbar-language-btn i {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
}

.navbar-language-menu {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    min-width: 138px;
    padding: 10px;
    border-radius: 8px;
    background: #050505;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
    z-index: 1005;
}

.navbar-language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 5px 0;
    width: 100%;
    padding: 10px 12px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    text-align: left;
    font-size: 14px;
}

.navbar-language-option:hover,
.navbar-language-option.is-active {
    background: rgba(255, 255, 255, 0.08);
}

.navbar-language-flag {
    display: inline-flex;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.navbar-language-flag-english {
    background:
        linear-gradient(
            90deg,
            transparent 0 42%,
            #c4202f 42% 58%,
            transparent 58% 100%
        ),
        linear-gradient(
            0deg,
            transparent 0 42%,
            #c4202f 42% 58%,
            transparent 58% 100%
        ),
        linear-gradient(
            90deg,
            transparent 0 34%,
            #ffffff 34% 66%,
            transparent 66% 100%
        ),
        linear-gradient(
            0deg,
            transparent 0 34%,
            #ffffff 34% 66%,
            transparent 66% 100%
        ),
        #15397f;
}

.navbar-language-flag-french {
    background: linear-gradient(
        90deg,
        #1f4ea3 0 33.333%,
        #ffffff 33.333% 66.666%,
        #d93030 66.666% 100%
    );
}

.navbar-language-flag-chinese {
    background:
        radial-gradient(circle at 34% 34%, #ffd34d 0 16%, transparent 17% 100%),
        #cf2b2b;
}

body.navbar-open {
    overflow: hidden;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-btn {
    padding: 6px 23px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.navbar-btn-login,
.navbar-btn-signup {
    position: relative;
    box-shadow:
        0 2px 8px 0 rgba(6, 10, 13, 0.12),
        inset 4px 4px 8px rgba(0, 0, 0, 0.08);

    background:
        radial-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0) 90%),
        radial-gradient(
            circle at 80% 200%,
            rgba(255, 255, 255, 0.3),
            rgba(255, 255, 255, 0) 80%
        ),
        linear-gradient(rgba(15, 19, 25, 0.35));

    background-color: rgba(0, 0, 0, 0.35);
    color: #fff;
}
.navbar-btn-login::before,
.navbar-btn-signup::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    border: 1px solid rgba(0, 0, 0, 0);
    background: linear-gradient(
            -18deg,
            rgba(255, 255, 255, 0.8) 20%,
            rgba(255, 255, 255, 0.4) 30%,
            rgba(255, 255, 255, 0.05) 40%,
            rgba(255, 255, 255, 0.05) 60%,
            rgba(255, 255, 255, 0.4) 70%,
            rgba(255, 255, 255, 0.8) 90%
        )
        border-box;
    -webkit-mask:
        radial-gradient(black) border-box,
        linear-gradient(black) padding-box;
    mask:
        radial-gradient(black) border-box,
        linear-gradient(black) padding-box;
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
}
.navbar-scrolled .navbar-btn-login::before,
.navbar-scrolled .navbar-btn-signup::before {
    background: linear-gradient(
            -18deg,
            rgba(0, 0, 0, 0.8) 20%,
            rgba(0, 0, 0, 0.4) 30%,
            rgba(0, 0, 0, 0.05) 40%,
            rgba(0, 0, 0, 0.05) 60%,
            rgba(0, 0, 0, 0.4) 70%,
            rgba(0, 0, 0, 0.8) 90%
        )
        border-box;
}
.navbar-btn-login:hover,
.navbar-btn-signup:hover {
    background-color: #f0f0f0;
}

/* ============ HERO SECTION ============ */
.hero {
    position: relative;
    min-height: 100vh;
    color: white;
    overflow: hidden;
    margin-top: 0;
    background-color: #141414;
}

.hero-slider,
.hero-overlay,
.hero-shell {
    position: absolute;
    inset: 0;
}

.hero-slider {
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero .hero-slide img {
    width: 100%;
    position: fixed;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    .hero .hero-slide img {
        position: relative;
    }
}

.hero-overlay {
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.56) 0%,
            rgba(0, 0, 0, 0.22) 38%,
            rgba(0, 0, 0, 0.12) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.16) 0%,
            rgba(0, 0, 0, 0.42) 100%
        );
}

.hero-shell {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 90px auto 0;
    padding: 40px 28px 52px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    justify-content: space-between;
}

.hero-inner {
    max-width: 560px;
    padding-top: 80px;
}

.hero-controls {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
}

.hero-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.12);
    color: #fff;
    cursor: pointer;
    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.hero-arrow svg {
    width: 18px;
    height: 18px;
}

.hero-arrow:hover {
    background-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-1px);
}

.hero-counter {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.hero-content {
    max-width: 520px;
}

.hero-tagline {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.92);
}

.hero-title {
    font-size: 64px;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.hero-booking-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 110%;
    margin-left: -40px;
}

.hero-booking-bar {
    position: relative;
    display: grid;
    align-items: center;
    gap: 20px;
    /* overflow: overlay; */
    /* overflow-x: auto;
  overflow-y: hidden; */

    padding: 20px 20px 20px 26px;
    margin-top: 105px;
    border-radius: 44px;

    backdrop-filter: blur(16px);

    box-shadow:
        0 2px 8px rgba(6, 10, 13, 0.12),
        inset 4px 4px 8px rgba(0, 0, 0, 0.06);

    background:
        radial-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0) 90%),
        radial-gradient(
            circle at 80% 200%,
            rgba(255, 255, 255, 0.25),
            rgba(255, 255, 255, 0) 80%
        ),
        linear-gradient(rgba(15, 19, 25, 0.2));

    background-color: rgba(0, 0, 0, 0.2);

    scroll-behavior: smooth;
}

/* Firefox */
.hero-booking-bar {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.45) transparent;
}

/* Chrome / Edge / Safari */
.hero-booking-bar::-webkit-scrollbar {
    height: 8px;
}

.hero-booking-bar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
}

.hero-booking-bar::-webkit-scrollbar-thumb {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.35),
        rgba(255, 255, 255, 0.65)
    );
    border-radius: 20px;
}

.hero-booking-bar::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.55),
        rgba(255, 255, 255, 0.85)
    );
}
.hero-booking-icon.current-location-btn i {
    cursor: pointer;
}
.hero-booking-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    border: 1px solid rgba(0, 0, 0, 0);
    background: linear-gradient(
            -18deg,
            rgba(255, 255, 255, 0.8) 20%,
            rgba(255, 255, 255, 0.4) 30%,
            rgba(255, 255, 255, 0.05) 40%,
            rgba(255, 29, 29, 0.05) 60%,
            rgba(255, 255, 255, 0.4) 70%,
            rgba(255, 255, 255, 0.8) 90%
        )
        border-box;
    -webkit-mask:
        radial-gradient(black) border-box,
        linear-gradient(black) padding-box;
    mask:
        radial-gradient(black) border-box,
        linear-gradient(black) padding-box;
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
}

@media (min-width: 700px) and (max-width: 1200px) {
    .hero-booking-bar::before {
        display: none;
    }
}
.hero-pagination {
    display: flex;
    position: absolute;
    bottom: 3%;
    left: 45%;
    gap: 16px;
    margin-top: 22px;
    width: 100%;
}
.hero-pagination-dot,
.carousel-dot {
    position: relative;
}

.hero-pagination-dot::before,
.carousel-dot::before {
    content: "";
    /* position: absolute; */
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    transform: translate(-50%, -50%);
}
.hero-pagination-dot {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.28);
    width: 15px;
    height: 15px;
    min-width: 10px;
    border-radius: 999px;
    cursor: pointer;
    transition:
        width 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;
}

.hero-pagination-dot:hover,
.hero-pagination-dot:focus-visible {
    background-color: rgba(255, 255, 255, 0.85);
    transform: translateY(-1px);
}

.hero-pagination-dot-active {
    width: 28px;
    background-color: rgba(255, 255, 255, 1);
}

.hero-booking-item {
    display: grid;
    grid-template-columns: 30px 1fr;
    column-gap: 20px;
    align-items: start;
    min-width: 0;
}

.hero-booking-icon {
    grid-row: 1 / span 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: #f2f2f2;
    color: #1c1c1c;
}

.hero-booking-icon svg {
    width: 22px;
    height: 22px;
}

.hero-booking-item label {
    font-size: 14px;
    color: #000;
    margin-bottom: 3px;
}

.hero-booking-field {
    position: relative;
    min-width: 0;
}
.hero-booking-time {
    min-height: 45px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hero-booking-field label {
    display: block;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.hero-booking-field.is-open {
    z-index: 6;
}

.hero-booking-value,
.hero-booking-trigger {
    display: block;
    width: 100%;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-booking-trigger {
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
    outline: none;
}

.hero-booking-field-date {
    min-height: 45px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-date-native {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.hero-booking-panel {
    position: absolute;
    top: calc(100% + 18px);
    left: -72px;
    z-index: 20;
    min-width: 298px;
    padding: 10px 0;
    border: 1px solid #151515;
    border-radius: 6px;
    background-color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
}
.hero-booking-bar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.45);
}
.hero-booking-field.is-open .hero-booking-trigger {
    color: #000;
}

.hero-location-panel {
    overflow: hidden;
}

.hero-location-option {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    padding: 18px 18px 16px;
    border: 0;
    background: #fff;
    text-align: left;
    cursor: pointer;
}

.hero-location-option + .hero-location-option {
    border-top: 1px solid #ececec;
}

.hero-location-option:hover {
    background-color: #f7f7f7;
}

.hero-location-option-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin-top: 2px;
    color: #111;
    flex: 0 0 22px;
}

.hero-location-option-icon svg {
    width: 18px;
    height: 18px;
}

.hero-location-option-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-location-option-copy strong {
    font-size: 15px;
    line-height: 1.35;
    color: #0f0f0f;
    font-weight: 500;
}

.hero-location-option-copy small {
    font-size: 13px;
    color: #747474;
}

.hero-time-panel {
    left: -8px;
    min-width: 244px;
    padding: 12px;
}

.hero-time-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.hero-time-column {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 8px;
}

.hero-time-adjust {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 22px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #111;
    cursor: pointer;
}

.hero-time-adjust:hover {
    background-color: #f2f2f2;
}

.hero-time-adjust svg {
    width: 14px;
    height: 14px;
}

.hero-time-number {
    min-width: 30px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    color: #222;
}

.hero-time-column-period .hero-time-number {
    min-width: 34px;
}

.hero-search-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 144px;
    min-height: 58px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    text-decoration: none;

    color: #fff;
    font-size: 16px;
    font-weight: 600;

    box-shadow:
        0 2px 8px 0 rgba(6, 10, 13, 0.12),
        inset 4px 4px 8px rgba(0, 0, 0, 0.08);

    background:
        radial-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0) 90%),
        radial-gradient(
            circle at 80% 200%,
            rgba(255, 255, 255, 0.3),
            rgba(255, 255, 255, 0) 80%
        ),
        linear-gradient(rgba(15, 19, 25, 0.35));

    background-color: rgba(0, 0, 0, 0.35);

    transition:
        transform 0.25s ease,
        background-color 0.25s ease;
}
.hero-search-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;

    border: 1px solid rgba(0, 0, 0, 0);

    background: linear-gradient(
            -18deg,
            rgba(255, 255, 255, 0.8) 20%,
            rgba(255, 255, 255, 0.4) 30%,
            rgba(255, 255, 255, 0.05) 40%,
            rgba(255, 255, 255, 0.05) 60%,
            rgba(255, 255, 255, 0.4) 70%,
            rgba(255, 255, 255, 0.8) 90%
        )
        border-box;

    -webkit-mask:
        radial-gradient(black) border-box,
        linear-gradient(black) padding-box;
    mask:
        radial-gradient(black) border-box,
        linear-gradient(black) padding-box;

    -webkit-mask-composite: source-out;
    mask-composite: subtract;
}

.hero-search-btn svg {
    width: 22px;
    height: 22px;
}

.hero-search-btn:hover {
    background-color: #1e1e1e;
    transform: translateY(-1px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============ SEARCH FORM ============ */
.search-section {
    background-color: white;
    padding: 40px 50px;
    margin-top: -80px;
    position: relative;
    z-index: 100;
}

.search-form {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: flex-end;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #666;
    letter-spacing: 1px;
}

.form-group input,
.form-group select {
    padding: 12px 15px;
    /* border: 1px solid #ddd; */
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #000;
}

.search-btn {
    padding: 12px 40px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

.search-btn:hover {
    background-color: #d4af37;
    color: #333;
}

/* ============ PARTNERS SECTION ============ */
.partners-section {
    background-color: #fff;
    padding: 58px 50px 54px;
    border-bottom: 1px solid #ece7e2;
}

.partners-shell {
    max-width: 1040px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(240px, 280px) 1fr;
    align-items: center;
    gap: 42px;
}

.partners-copy h2 {
    max-width: 250px;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 600;
    color: #111;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    gap: 34px;
    align-items: center;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 42px;
    color: #7b7b7b;
    opacity: 0.95;
}

.partner-logo-image {
    display: block;
    width: 100%;
    max-width: 170px;
    height: auto;
    object-fit: contain;
    filter: grayscale(0.1);
}

.partner-logo-aca .partner-logo-image {
    max-width: 150px;
}

.partner-logo-ebaa .partner-logo-image {
    max-width: 138px;
}

.partner-logo-nbaa .partner-logo-image {
    max-width: 130px;
}

.partner-logo-nla .partner-logo-image {
    max-width: 122px;
}

/* ============ HOW IT WORKS SECTION ============ */
.how-works-section {
    position: relative;
    overflow: hidden;
    background-color: #000;
    padding: 82px 50px 108px;
    color: #fff;
}

.how-works-line {
    position: absolute;
    right: 0;
    bottom: 0;
    /* width: min(760px); */
    max-width: none;
    opacity: 0.7;
    pointer-events: none;
}

.how-works-shell {
    position: relative;
    z-index: 1;
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(340px, 470px) minmax(360px, 1fr);
    align-items: start;
    gap: 56px;
}

.how-works-content {
    max-width: 470px;
}

.how-works-title {
    margin-bottom: 44px;
    font-size: 40px;
    line-height: 1.12;
    font-weight: 500;
    letter-spacing: -0.04em;
}

.how-works-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.how-works-step {
    position: relative;
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 26px;
    padding-bottom: 36px;
    color: rgba(255, 255, 255, 0.54);
    cursor: pointer;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.how-works-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 28px;
    left: 11px;
    width: 2px;
    height: calc(100% - 8px);
    background-color: rgba(255, 255, 255, 0.28);
}

.how-works-step-dot {
    width: 22px;
    height: 22px;
    border: 1.5px solid rgba(255, 255, 255, 0.62);
    border-radius: 50%;
    background-color: transparent;
    margin-top: 8px;
}

.how-works-step-body h3 {
    font-size: 19px;
    line-height: 1.3;
    font-weight: 600;
}

.how-works-step-body p {
    margin-top: 18px;
    max-width: 340px;
    font-size: 16px;
    line-height: 1.75;
}

.how-works-step-active {
    color: #fff;
}

.how-works-step:hover {
    color: rgba(255, 255, 255, 0.9);
    transform: none;
}

.how-works-step:focus-visible {
    outline: none;
    color: #fff;
}

.how-works-step-active .how-works-step-dot {
    border-color: #fff;
}

.how-works-visual {
    position: relative;
    min-height: 420px;
}

.how-works-laptop {
    display: block;
    /* width: min(560px, 100%); */
    height: 500px;
    margin: 0 auto;
    filter: drop-shadow(0 26px 44px rgba(0, 0, 0, 0.38));
    animation: howWorksFloat 6.5s ease-in-out infinite;
}

@keyframes howWorksFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ============ TRIP BENEFITS SECTION ============ */
.trip-benefits-section {
    padding: 66px 50px 72px;
    background-color: #fff;
}

.trip-benefits-shell {
    max-width: 1330px;
    margin: 0 auto;
}

.trip-benefits-heading {
    margin-bottom: 54px;
    text-align: center;
}

.trip-benefits-title {
    font-size: 54px;
    line-height: 40px;
    font-weight: 500;
    /* letter-spacing: -0.04em; */
    color: #0d1116;
}

.trip-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    margin-bottom: 78px;
}

.trip-benefit-card {
    max-width: 320px;
    margin: 0 auto;
    text-align: center;
}

.trip-benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 22px;
    border-radius: 50%;
    background: rgba(242, 85, 61, 0.1);
    color: #1a1a1a;
}

.trip-benefit-icon i {
    width: 58px;
    height: 58px;
}

.trip-benefit-card h3 {
    font-size: 19px;
    line-height: 1.35;
    font-weight: 500;
    color: #0d1116;
}

.trip-benefit-card p {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.9;
    color: #171717;
}

.trip-stats-banner {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(280px, 1.15fr) minmax(0, 1.85fr);
    gap: 24px;
    align-items: center;
    padding: 60px 54px;
    border-radius: 4px;
    background: #000;
    color: #fff;
}

.trip-stats-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        148deg,
        transparent 18%,
        rgba(255, 255, 255, 0.12) 18%,
        rgba(255, 255, 255, 0.12) 22%,
        transparent 22%,
        transparent 34%,
        rgba(255, 255, 255, 0.12) 34%,
        rgba(255, 255, 255, 0.12) 38%,
        transparent 38%,
        transparent 51%,
        rgba(255, 255, 255, 0.12) 51%,
        rgba(255, 255, 255, 0.12) 55%,
        transparent 55%,
        transparent 68%,
        rgba(255, 255, 255, 0.12) 68%,
        rgba(255, 255, 255, 0.12) 72%,
        transparent 72%
    );

    opacity: 0.95;
    pointer-events: none;
}

.trip-stats-copy,
.trip-stats-grid {
    position: relative;
    z-index: 1;
}

.trip-stats-copy {
    max-width: 360px;
}

.trip-stats-copy p {
    font-size: 34px;
    line-height: 1.22;
    font-weight: 600;
    letter-spacing: -0.04em;
}

.trip-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.trip-stat strong {
    display: block;
    font-size: 56px;
    line-height: 0.95;
    font-weight: 500;
}

.trip-stat span {
    display: block;
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.96);
}

/* ============ FLEET SECTION ============ */
.fleet-section {
    position: relative;
    overflow: hidden;
    padding: 78px 0 56px;
    background-color: #fff;
}

.fleet-section::before {
    content: "";
    position: absolute;
    left: -430px;
    top: 128px;
    width: 1000px;
    height: 1000px;
    border: 2px solid rgba(242, 85, 61, 0.92);
    border-radius: 50%;
    pointer-events: none;
}

.fleet-shell {
    position: relative;
    z-index: 1;
    --fleet-left-space: max(50px, calc((100vw - 1330px) / 2 + 50px));
    --fleet-right-space: max(50px, calc((100vw - 1330px) / 2 + 50px));
    --fleet-gap: 26px;
    padding-left: var(--fleet-left-space);
}

.fleet-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 52px;
    max-width: 1330px;
    margin-right: auto;
    padding-right: var(--fleet-right-space);
}

.fleet-heading {
    font-size: 54px;
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -0.04em;
    color: #070b10;
}

.fleet-more-link {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 10px;
    color: #111;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: gap 0.25s ease;
}

.fleet-more-link svg {
    width: 15px;
    height: 15px;
}

.fleet-more-link:hover {
    gap: 11px;
}

.fleet-carousel {
    width: calc(100vw - var(--fleet-left-space));
    overflow: hidden;
}

.fleet-grid {
    display: flex;
    gap: var(--fleet-gap);
    transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.fleet-card {
    /* flex: 0 0 calc((100vw - var(--fleet-left-space) - 78px) / 4);
  max-width: calc((100vw - var(--fleet-left-space) - 78px)); */
    flex: 0 0 calc((100vw - var(--fleet-left-space) - 52px) / 3);
    max-width: calc((100vw - var(--fleet-left-space) - 52px) / 3);
    display: block;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    padding: 28px 26px 26px;
    border: 1px solid rgba(12, 12, 12, 0.1);
    border-radius: 6px;
    background-color: #fff;
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease;
}

.fleet-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 18px 36px rgba(18, 18, 18, 0.08);
}

.fleet-card-copy {
    min-height: 100px;
}

.fleet-image {
    width: 100%;
    height: 182px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin: 14px 0 18px;
}

.fleet-image-suv {
    height: 188px;
}

.fleet-image img {
    width: 100%;
    max-width: 280px;
    max-height: 100%;
    object-fit: contain;
}

.fleet-title {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 500;
    color: #101214;
    text-decoration: none;
}

.fleet-description {
    margin-top: 12px;
    min-height: 54px;
    font-size: 14px;
    line-height: 1.6;
    color: #111;
    text-decoration: none;
}

.fleet-specs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-top: 6px;
}

.fleet-spec {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #121212;
    text-decoration: none;
}

.fleet-spec-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f7f7f7;
    color: #101010;
    flex: 0 0 36px;
}

.fleet-spec-icon svg {
    width: 16px;
    height: 16px;
}

.fleet-spec-icon i {
    font-size: 14px;
    line-height: 1;
}

.fleet-controls {
    display: flex;
    gap: 14px;
    margin-top: 54px;
    max-width: 1330px;
    margin-right: auto;
    padding-right: var(--fleet-right-space);
}

.fleet-control-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border: 1px solid rgba(16, 16, 16, 0.14);
    border-radius: 50%;
    background-color: #fff;
    color: #111;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.fleet-control-btn svg {
    width: 20px;
    height: 20px;
}

.fleet-control-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(242, 85, 61, 0.35);
    box-shadow: 0 10px 22px rgba(14, 14, 14, 0.08);
}

/* ============ SERVICES SECTION ============ */
.services-section {
    position: relative;
    overflow: hidden;
    padding: 54px 0 82px;
    background-color: #fff;
}

.services-section::after {
    content: "";
    position: absolute;
    right: -320px;
    top: 58px;
    width: 700px;
    height: 980px;
    border: 2px solid rgba(242, 85, 61, 0.92);
    border-radius: 50%;
    pointer-events: none;
}

.services-shell {
    position: relative;
    z-index: 1;
    --services-left-space: max(50px, calc((100vw - 1330px) / 2 + 50px));
    --services-right-space: max(50px, calc((100vw - 1330px) / 2 + 50px));
    --services-gap: 28px;
    padding-left: var(--services-left-space);
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 52px;
    max-width: 1330px;
    margin-right: auto;
    padding-right: var(--services-right-space);
}

.services-heading {
    font-size: 54px;
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -0.04em;
    color: #070b10;
}

.services-more-link {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 10px;
    color: #111;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: gap 0.25s ease;
}

.services-more-link svg {
    width: 15px;
    height: 15px;
}

.services-more-link:hover {
    gap: 11px;
}

.services-carousel {
    width: calc(100vw - var(--services-left-space));
    overflow: hidden;
}
@media screen and (max-width: 576px) {
    .services-carousel {
        width: 100%;
    }
}

.services-track {
    display: flex;
    gap: var(--services-gap);
    transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.service-card {
    position: relative;
    flex: 0 0 calc((100vw - var(--services-left-space) - 84px) / 4);
    max-width: calc((100vw - var(--services-left-space) - 84px) / 4);
    height: 324px;
    border-radius: 6px;
    overflow: hidden;
    background-color: #d7d7d7;
    text-decoration: none;
    color: inherit;
}

.service-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-image {
    transform: scale(1.04);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(8, 8, 8, 0.04) 22%,
        rgba(8, 8, 8, 0.68) 100%
    );
    transition: background 0.35s ease;
}

.service-card:hover .service-card-overlay {
    background: linear-gradient(
        180deg,
        rgba(8, 8, 8, 0.16) 10%,
        rgba(8, 8, 8, 0.82) 100%
    );
}

.service-card-content {
    position: absolute;
    inset: auto 0 0 0;
    padding: 26px 28px 30px;
    color: #fff;
    transform: translateY(128px);
    transition: transform 0.36s ease;
}

.service-card-content h3 {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
    transition: transform 0.32s ease;
}

.service-card-content p {
    margin-top: 10px;
    max-width: 210px;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
    opacity: 0;
    transform: translateY(10px);
    transition:
        opacity 0.32s ease,
        transform 0.32s ease;
}

.service-card-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-top: 18px;
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 50%;
    color: #fff;
    opacity: 0;
    transform: translateY(10px);
    transition:
        opacity 0.32s ease,
        transform 0.32s ease,
        border-color 0.25s ease;
}

.service-card-arrow svg {
    width: 18px;
    height: 18px;
}

.service-card:hover .service-card-content p,
.service-card:hover .service-card-arrow {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover .service-card-content {
    transform: translateY(0);
}

.service-card:hover .service-card-content h3 {
    transform: translateY(-2px);
}

.service-card:hover .service-card-arrow {
    border-color: #fff;
}

@media (hover: none) {
    .service-card-content {
        transform: translateY(0);
    }

    .service-card-content p,
    .service-card-arrow {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-controls {
    display: flex;
    gap: 14px;
    margin-top: 60px;
    max-width: 1330px;
    margin-right: auto;
    padding-right: var(--services-right-space);
}

.services-control-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border: 1px solid rgba(16, 16, 16, 0.14);
    border-radius: 50%;
    background-color: #fff;
    color: #111;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.services-control-btn svg {
    width: 20px;
    height: 20px;
}

.services-control-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(242, 85, 61, 0.35);
    box-shadow: 0 10px 22px rgba(14, 14, 14, 0.08);
}

/* ============ TESTIMONIALS SECTION ============ */
.testimonials-section {
    background-color: #f9f9f9;
    padding: 80px 50px;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 24px;
}

.testimonial-text {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.testimonial-rating {
    color: #d4af37;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

/* ============ CTA SECTION ============ */
.cta-section {
    background: linear-gradient(135deg, #333 0%, #555 100%);
    color: white;
    padding: 80px 50px;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #ccc;
}

.cta-btn {
    padding: 15px 50px;
    background-color: #d4af37;
    color: #333;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: white;
    transform: translateY(-2px);
}

/* ============ FAQ SECTION ============ */
.faq-section {
    position: relative;
    overflow: hidden;
    background-color: #f8f7f4;
    padding: 88px 50px 92px;
}

.faq-section::before {
    content: "";
    position: absolute;
    top: -210px;
    left: -210px;
    width: 480px;
    height: 480px;
    border: 2px solid rgba(239, 86, 63, 0.9);
    border-radius: 50%;
    pointer-events: none;
}

.faq-shell {
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin: 0 auto;
}

.faq-title {
    margin-bottom: 56px;
    font-size: 54px;
    line-height: 1.1;
    text-align: center;
    color: #080808;
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.faq-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.faq-question {
    position: relative;
    list-style: none;
    padding: 22px 72px 22px 0;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 500;
    color: #101010;
    cursor: pointer;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::before,
.faq-question::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 14px;
    width: 28px;
    height: 28px;
    transform: translate(0, -50%);
    border-radius: 50%;
}

.faq-question::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 14px;
    width: 28px;
    height: 28px;
    transform: translateY(-50%);
    border: 2px solid rgba(0, 0, 0, 0.8);
    border-radius: 50%;
}

.faq-question::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 26px;
    transform: translate(63%, -45%);
    font-size: 22px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1;
}

.faq-item[open] .faq-question::after {
    content: "−";
    transform: translate(63%, -45%);
}

.faq-answer {
    padding: 0 84px 26px 0;
}

.faq-answer p {
    max-width: 700px;
    font-size: 16px;
    line-height: 1.8;
    color: #2f2f2f;
}

/* ============ APP DOWNLOAD SECTION ============ */
.download-app-section {
    position: relative;
    overflow: hidden;
    background-color: #ef563f;
    padding: 0 50px;
}

.download-app-section::before,
.download-app-section::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.download-app-section::before {
    background:
        linear-gradient(
            150deg,
            transparent 0 19%,
            rgba(255, 255, 255, 0.08) 19.15%,
            transparent 19.4%
        ),
        linear-gradient(
            163deg,
            transparent 0 48%,
            rgba(255, 255, 255, 0.06) 48.15%,
            transparent 48.4%
        ),
        radial-gradient(
            1200px 650px at -5% 92%,
            transparent 0 56%,
            rgba(255, 255, 255, 0.11) 56.15% 56.4%,
            transparent 56.55%
        ),
        radial-gradient(
            980px 580px at 18% 92%,
            transparent 0 57%,
            rgba(255, 255, 255, 0.12) 57.15% 57.4%,
            transparent 57.55%
        ),
        radial-gradient(
            780px 460px at 40% 94%,
            transparent 0 58%,
            rgba(255, 255, 255, 0.1) 58.15% 58.4%,
            transparent 58.55%
        ),
        radial-gradient(
            620px 360px at 46% 93%,
            transparent 0 60%,
            rgba(255, 255, 255, 0.08) 60.15% 60.4%,
            transparent 60.55%
        );
    opacity: 0.95;
}

.download-app-section::after {
    background: linear-gradient(
        90deg,
        rgba(239, 86, 63, 0) 46%,
        rgba(239, 86, 63, 0.08) 58%,
        rgba(239, 86, 63, 0.58) 72%,
        rgba(239, 86, 63, 0.94) 100%
    );
    z-index: 0;
}

.download-app-shell {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    min-height: 520px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(320px, 430px) minmax(420px, 1fr);
    align-items: center;
    gap: 24px;
}

.download-app-content {
    padding: 96px 0 96px;
    color: #fff;
}

.download-app-title {
    font-size: 58px;
    line-height: 1.05;
    font-weight: 700;
    margin-bottom: 30px;
}

.download-app-text {
    max-width: 430px;
    font-size: 19px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
}

.download-app-actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    margin-top: 48px;
}

.download-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    min-width: 210px;
    min-height: 60px;
    padding: 12px 20px;
    border-radius: 14px;
    background-color: #060606;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 16px 32px rgba(23, 11, 8, 0.18);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.download-store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(23, 11, 8, 0.28);
}

.download-store-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 32px;
    padding-right: 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.download-store-icon svg {
    width: 22px;
    height: 22px;
}

.download-store-copy {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.download-store-copy small {
    font-size: 11px;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.85);
}

.download-store-copy strong {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
}

.download-app-visual {
    position: relative;
    align-self: stretch;
    min-height: 520px;
}

.download-app-visual img {
    position: absolute;
    right: -70px;
    /* bottom: -46px; */
    width: min(920px, 72vw);
    max-width: none;
    filter: drop-shadow(0 24px 34px rgba(25, 12, 9, 0.2));
}
@media (max-width: 768px) {
    .download-app-section {
        padding: 0 20px;
    }

    .download-app-shell {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 10px;
    }

    .download-app-content {
        padding: 70px 0 20px;
        text-align: center;
    }

    .download-app-title {
        font-size: 38px;
        margin-bottom: 20px;
    }

    .download-app-text {
        max-width: 100%;
        font-size: 16px;
    }

    /* buttons one below another */
    .download-app-actions {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        margin-top: 32px;
    }

    .download-store-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* image move to corner/end */
    .download-app-visual {
        min-height: 320px;
    }

    .download-app-visual img {
        position: absolute;
        right: -40px;
        bottom: 0;
        width: 120%;
        max-width: 500px;
    }
}
/* ============ VIDEO TESTIMONIAL SECTION ============ */
.video-story-section {
    position: relative;
    overflow: hidden;
    background-color: #000;
    padding: 92px 50px 88px;
    color: #fff;
}

.video-story-section::before {
    content: "";
    position: absolute;
    top: -24px;
    right: 31%;
    width: 132px;
    height: 132px;
    border-top: 3px solid rgba(255, 255, 255, 0.15);
    border-right: 3px solid rgba(255, 255, 255, 0.15);
    border-radius: 0 132px 0 0;
    opacity: 0.7;
    pointer-events: none;
}
.video-story-dots {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.dots-container {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.carousel-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #e2e8f0;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
    padding: 0;
}

.carousel-dot.active {
    background-color: #6495ed;
    width: 28px;
    border-radius: 20px;
}

.carousel-dot:hover:not(.active) {
    background-color: #94a3b8;
    transform: scale(1.2);
}

.dot-counter {
    font-size: 0.8rem;
    font-weight: 500;
    color: #94a3b8;
    background: #f1f5f9;
    padding: 0.2rem 0.7rem;
    border-radius: 40px;
}

.dot-counter span:first-child {
    color: #0000ff;
    font-weight: 700;
}
.video-story-section::after {
    content: "";
    position: absolute;
    top: 0;
    right: 36%;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    pointer-events: none;
}

.video-story-shell {
    position: relative;
    z-index: 1;
    max-width: 1040px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(280px, 334px);
    align-items: center;
    gap: 74px;
}

.video-story-copy {
    max-width: 470px;
}

.video-story-author {
    display: flex;
    align-items: center;
    gap: 18px;
}

.video-story-quote-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 6px;
    background-color: #fff;
    color: #000;
    font-size: 60px;
    line-height: 1;
    font-weight: 600;
}

.video-story-author-copy h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.video-story-author-copy p {
    margin-top: 2px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
}

.video-story-quote {
    margin-top: 48px;
    font-size: 24px;
    line-height: 1.5;
    font-weight: 500;
    color: #fff;
    max-width: 460px;
}

.video-story-progress {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 38px;
    font-size: 16px;
    font-weight: 600;
}

.video-story-progress-line {
    position: relative;
    width: 148px;
    height: 1px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.08);
}

.video-story-progress-fill {
    display: block;
    width: 25%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    transition: width 0.35s ease;
}

.video-story-media {
    position: relative;
    justify-self: end;
}

.video-story-play {
    position: relative;
    display: block;
    width: min(334px, 100%);
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
}

.video-story-image {
    display: block;
    width: 100%;
    aspect-ratio: 0.76 / 1;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 24px 46px rgba(0, 0, 0, 0.28);
}

.video-story-play-icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-48%, -50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background-color: #fff;
    color: #111;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.video-story-play-icon i {
    width: 28px;
    height: 28px;
}

.video-story-play:hover .video-story-play-icon {
    transform: translate(-48%, -50%) scale(1.05);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.28);
}

.video-modal-open {
    overflow: hidden;
}

.date-picker-open {
    overflow: hidden;
}

.date-picker-modal {
    position: fixed;
    inset: 0;
    z-index: 9998;
}

.date-picker-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 7, 13, 0.72);
    backdrop-filter: blur(10px);
}

.date-picker-dialog {
    position: fixed;
    z-index: 1;
    width: min(420px, calc(100vw - 24px));
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 26px;
    background: linear-gradient(
        180deg,
        rgba(14, 18, 28, 0.98),
        rgba(8, 11, 18, 0.98)
    );
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
    color: #fff;
    transform: translateY(8px) scale(0.98);
    opacity: 0;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
    pointer-events: none;
}

.date-picker-modal:not([hidden]) .date-picker-dialog {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.date-picker-dialog::before {
    content: "";
    position: absolute;
    top: -8px;
    left: var(--date-picker-arrow-left, 40px);
    width: 16px;
    height: 16px;
    transform: rotate(45deg);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(12, 16, 24, 0.98);
}

.date-picker-dialog::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        inset 0 -1px 0 rgba(255, 255, 255, 0.03);
}

.date-picker-header,
.date-picker-weekdays,
.date-picker-grid,
.date-picker-footer {
    position: relative;
    z-index: 1;
}

.date-picker-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
}

.date-picker-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #f5e4b5;
}

.date-picker-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    cursor: pointer;
}

.date-picker-weekdays {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 10px;
    color: rgba(241, 245, 250, 0.62);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-align: center;
    text-transform: uppercase;
}

.date-picker-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
}

.date-picker-cell {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    color: #e8edf7;
    font-size: 14px;
    cursor: pointer;
    transition:
        transform 0.22s ease,
        background-color 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.date-picker-cell:hover {
    transform: translateY(-1px);
    border-color: rgba(212, 175, 55, 0.28);
    background: rgba(212, 175, 55, 0.1);
}

.date-picker-cell.is-outside {
    opacity: 0.28;
}

.date-picker-cell.is-today {
    border-color: rgba(62, 116, 216, 0.45);
}

.date-picker-cell.is-selected {
    background: linear-gradient(135deg, #d4af37, #3e74d8);
    border-color: transparent;
    color: #111;
    box-shadow: 0 12px 24px rgba(62, 116, 216, 0.22);
}

.date-picker-cell:focus-visible {
    outline: 2px solid rgba(212, 175, 55, 0.8);
    outline-offset: 2px;
}

.date-picker-cell.is-empty {
    pointer-events: none;
    border-color: transparent;
    background: transparent;
}

.date-picker-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
}

.date-picker-action {
    min-width: 92px;
    padding: 11px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
}

.date-picker-action-primary {
    border-color: rgba(212, 175, 55, 0.35);
    background: linear-gradient(135deg, #d4af37, #3e74d8);
    color: #fff;
}

.date-picker-modal[hidden] {
    display: none !important;
}

@media (max-width: 560px) {
    .date-picker-dialog {
        width: calc(100vw - 16px);
        padding: 14px;
        border-radius: 22px;
    }

    .date-picker-grid {
        gap: 6px;
    }

    .date-picker-cell {
        border-radius: 12px;
        font-size: 13px;
    }

    .date-picker-footer {
        margin-top: 14px;
    }

    .date-picker-action {
        min-width: 84px;
        padding: 10px 12px;
        font-size: 12px;
    }
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.78);
}
.video-modal-dialog {
    position: relative;
    z-index: 2000;
    width: min(960px, calc(100vw - 32px));
    margin: 100px auto 30px;
}
.video-modal-close {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.video-modal-close i {
    width: 20px;
    height: 20px;
}

.video-modal-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    border-radius: 14px;
    background-color: #000;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.video-modal-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============ REGION SECTION ============ */
.region-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            520px 220px at 70% 62%,
            rgba(255, 210, 170, 0.16),
            transparent 70%
        ),
        linear-gradient(180deg, #fff 0%, #fffaf5 100%);
    padding: 96px 50px 92px;
}

.region-section::before {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -10px;
    width: 620px;
    height: 320px;
    background:
        linear-gradient(
            155deg,
            transparent 0 46%,
            rgba(244, 203, 169, 0.18) 46.2%,
            transparent 46.5%
        ),
        linear-gradient(
            12deg,
            transparent 0 76%,
            rgba(244, 203, 169, 0.16) 76.2%,
            transparent 76.5%
        ),
        radial-gradient(
            circle at 95% 84%,
            rgba(241, 181, 126, 0.9) 0 9px,
            transparent 10px
        ),
        radial-gradient(
            circle at 20% 8%,
            rgba(244, 203, 169, 0.2) 0 1px,
            transparent 2px
        ),
        repeating-linear-gradient(
            28deg,
            transparent 0 26px,
            rgba(244, 203, 169, 0.11) 26px 28px,
            transparent 28px 54px
        ),
        repeating-linear-gradient(
            118deg,
            transparent 0 28px,
            rgba(244, 203, 169, 0.1) 28px 30px,
            transparent 30px 60px
        );
    opacity: 0.8;
    pointer-events: none;
}

.region-shell {
    position: relative;
    z-index: 1;
    max-width: 1040px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(360px, 510px) minmax(300px, 420px);
    align-items: center;
    justify-content: space-between;
    gap: 72px;
}

.region-gallery {
    display: grid;
    grid-template-columns: minmax(180px, 276px) minmax(150px, 220px);
    gap: 10px;
    align-items: stretch;
}

.region-gallery-tall,
.region-gallery-card {
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 18px 48px rgba(26, 16, 8, 0.08);
}

.region-gallery-tall {
    min-height: 504px;
}

.region-gallery-stack {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
}

.region-gallery-card {
    min-height: 247px;
}

.region-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.region-gallery-tall:hover img,
.region-gallery-card:hover img {
    transform: scale(1.04);
}

.region-content {
    max-width: 420px;
}

.region-title {
    font-size: 38px;
    line-height: 1.18;
    font-weight: 500;
    letter-spacing: -0.04em;
    color: #121212;
}

.region-text {
    margin-top: 28px;
    max-width: 360px;
    font-size: 16px;
    line-height: 1.75;
    color: #2f2f2f;
}

/* .region-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    padding: 15px 22px;
    border-radius: 8px;
    background-color: #000;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
} */

.region-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 28px;
    padding: 15px 22px;

    border: 0;
    border-radius: 999px;

    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;

    cursor: pointer;

    box-shadow:
        0 2px 8px 0 rgba(6, 10, 13, 0.12),
        inset 4px 4px 8px rgba(0, 0, 0, 0.08);

    background:
        radial-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0) 90%),
        radial-gradient(
            circle at 80% 200%,
            rgba(255, 255, 255, 0.3),
            rgba(255, 255, 255, 0) 80%
        ),
        linear-gradient(rgba(15, 19, 25, 0.35));

    background-color: rgba(0, 0, 0, 0.35);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}
.region-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;

    border: 1px solid rgba(0, 0, 0, 0);

    background: linear-gradient(
            -18deg,
            rgba(0, 0, 0, 0.8) 20%,
            rgba(0, 0, 0, 0.4) 30%,
            rgba(0, 0, 0, 0.05) 40%,
            rgba(0, 0, 0, 0.05) 60%,
            rgba(0, 0, 0, 0.4) 70%,
            rgba(0, 0, 0, 0.8) 90%
        )
        border-box;

    -webkit-mask:
        radial-gradient(black) border-box,
        linear-gradient(black) padding-box;

    mask:
        radial-gradient(black) border-box,
        linear-gradient(black) padding-box;

    -webkit-mask-composite: source-out;
    mask-composite: subtract;
}
.region-btn svg {
    width: 14px;
    height: 14px;
}

.region-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.region-float {
    animation: regionFloat 6s ease-in-out infinite;
}

.region-float-delay-1 {
    animation-delay: 0s;
}

.region-float-delay-2 {
    animation-delay: 0.8s;
}

.region-float-delay-3 {
    animation-delay: 1.6s;
}

/* @keyframes regionFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
} */
@media (max-width: 768px) {
    .region-gallery {
        display: flex !important;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        /* align-items: stretch; */
    }

    /* LEFT BIG IMAGE */
    .region-gallery-tall {
        width: 100%;
        height: 380px;
        min-height: 500px;
        flex-shrink: 0;
    }

    /* RIGHT SIDE */
    .region-gallery-stack {
        /* width: 35%; */
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .region-gallery-card {
        flex: 1;
        min-height: 0;
    }

    .region-gallery img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
        display: block;
    }
}
/* ============ NEWS SECTION ============ */
.news-section {
    background-color: #000;
    padding: 88px 50px 86px;
    color: #fff;
}

.news-shell {
    max-width: 1040px;
    margin: 0 auto;
}

.news-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 58px;
}

.news-title {
    font-size: 34px;
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.news-more-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.25s ease;
}

.news-more-link svg {
    width: 14px;
    height: 14px;
}

.news-more-link:hover {
    opacity: 0.72;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.news-card {
    display: flex;
    flex-direction: column;
}

.news-card-image-wrap {
    position: relative;
    display: block;
    aspect-ratio: 1.16 / 0.8;
    overflow: hidden;
    border-radius: 4px;
    text-decoration: none;
    background-color: #111;
}

.news-card-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.04) 0%,
        rgba(0, 0, 0, 0.26) 100%
    );
}

.news-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.news-card:hover .news-card-image {
    transform: scale(1.04);
}

.news-card-date {
    position: absolute;
    top: 20px;
    left: 26px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #fff;
}

.news-card-date strong {
    font-size: 34px;
    line-height: 0.95;
    font-weight: 500;
}

.news-card-date span {
    font-size: 13px;
    font-weight: 500;
}

.news-card-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 18px;
}

.news-card-tag {
    display: inline-block;
    margin-bottom: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.news-card-title {
    max-width: 92%;
    font-size: 20px;
    line-height: 1.45;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
}

.news-card-title:hover {
    color: #f2553d;
}
.news-card-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.news-card-arrow svg {
    width: 18px;
    height: 18px;
}

.news-card-arrow:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-1px);
}

/* ============ FOOTER ============ */
.footer {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            148deg,
            transparent 0 52%,
            rgb(3, 20, 14) 52% 62%,
            transparent 62% 100%
        ),
        linear-gradient(
            148deg,
            transparent 0 70%,
            rgba(255, 255, 255, 0.03) 70% 79%,
            transparent 79% 100%
        ),
        linear-gradient(
            148deg,
            transparent 0 84%,
            rgba(255, 255, 255, 0.025) 84% 92%,
            transparent 92% 100%
        ),
        #000;
    color: #fff;
    padding: 34px 50px 28px;
}

.footer::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.08),
        rgba(0, 0, 0, 0.2)
    );
    pointer-events: none;
}

.footer a {
    color: inherit;
    text-decoration: none;
}

.footer-shell {
    position: relative;
    z-index: 1;
    max-width: 1148px;
    margin: 0 auto;
}

.footer-top,
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-brand-group {
    display: flex;
    align-items: center;
    gap: 26px;
}

.footer-logo {
    width: auto;
    height: 60px;
    display: block;
}

.footer-contact,
.footer-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-contact {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
}

.footer-contact i,
.footer-meta-item i {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
}

.footer-social-wrap,
.footer-social-links {
    display: flex;
    align-items: center;
}

.footer-social-wrap {
    gap: 18px;
}

.footer-follow {
    font-size: 18px;
    font-weight: 600;
}

.footer-social-links {
    gap: 8px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #fff;
    border-radius: 999px;
    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}

.footer-social-link i {
    width: 16px;
    height: 16px;
}

.footer-social-link:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.14);
    margin: 32px 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1.1fr 1.2fr;
    gap: 48px 28px;
    padding: 28px 0 22px;
}

.footer-title {
    margin-bottom: 24px;
    font-size: 18px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column li + li {
    margin-top: 18px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.94);
    font-size: 16px;
    transition: color 0.25s ease;
}

.footer-column a:hover,
.footer-bottom a:hover,
.footer-contact:hover {
    color: #c9ccf2;
}

.footer-column-app {
    justify-self: end;
    width: 100%;
    max-width: 214px;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 60px;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 14px;
    background-color: rgba(255, 255, 255, 0.02);
    transition:
        transform 0.25s ease,
        background-color 0.25s ease;
}

.app-btn:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.06);
}

.app-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 32px;
    padding-right: 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.app-btn-icon svg {
    width: 22px;
    height: 22px;
}

.app-btn-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.app-btn-text small {
    font-size: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.86);
}

.app-btn-text strong {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.footer-divider-bottom {
    margin-top: 8px;
    margin-bottom: 22px;
}

.footer-bottom {
    font-size: 14px;
    font-weight: 600;
}

.footer-bottom-left,
.footer-bottom-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;
}

.footer-bottom-left a,
.footer-meta-item {
    color: rgba(255, 255, 255, 0.96);
}

.footer-bottom-right {
    gap: 30px;
}
.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 30px;
}
@media screen and (max-width) {
    .hero-booking-value {
        color: #000;
    }
}

/* ============ RESPONSIVE DESIGN ============ */
@media (max-width: 1024px) {
    .navbar {
        padding: 16px 20px;
        height: 74px;
        width: 100%;
        left: 0;
        top: 0;
        z-index: 1001;
    }

    .navbar-toggle {
        display: inline-flex;
        margin-left: auto;
        z-index: 1002;
        border: none;
        background: #000;
        width: 40px;
        height: 40px;
        padding: 0;
    }

    .navbar-toggle span {
        width: 22px;
        height: 2px;
        background: #fff;
        transition: all 0.3s ease;
    }

    /* CLOSE ICON */
    .navbar.is-open .navbar-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .navbar.is-open .navbar-toggle span:nth-child(2) {
        opacity: 0;
    }

    .navbar.is-open .navbar-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* MOBILE PANEL */
    .navbar-panel {
        position: fixed;
        top: 74px;
        right: 0;
        width: min(380px, 100%);
        max-width: 100%;
        background: #fff;
        display: none;
        flex-direction: column;
        padding: 0;
        /* overflow: hidden; */
        z-index: 1000;
        box-shadow: -18px 0 40px rgba(0, 0, 0, 0.12);
    }

    .navbar.is-open .navbar-panel {
        display: flex;
    }

    /* ONLY MENU SCROLLS */
    .navbar-menu {
        flex: 1;
        overflow-y: auto;
        justify-content: start;
        width: 100%;

        display: flex;
        flex-direction: column;

        margin: 0;
        padding: 24px 0;
    }

    .navbar-menu-link {
        width: 100%;

        display: flex;
        align-items: center;
        justify-content: space-between;

        padding: 0px 20px;

        color: #111;
        font-size: 22px;
        font-weight: 500;
        text-decoration: none;

        /* border-bottom: 1px solid rgba(0, 0, 0, 0.08); */
    }

    .navbar-menu-link-active {
        color: #6495ed;
    }

    .navbar-actions {
        display: flex;
        width: 100%;
        margin-top: auto;
        padding: 20px 20px 24px;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 16px;
    }

    .navbar-contact,
    .navbar-language-btn {
        color: #111;
        font-size: 16px;
    }

    .navbar-contact {
        display: flex;
        align-items: center;
        gap: 8px;
        flex: 0 1 auto;
    }

    .navbar-language-wrap {
        flex: 0 1 auto;
    }

    .navbar-language-btn {
        display: flex;
        align-items: center;
        gap: 8px;
        justify-content: flex-start;
    }

    .navbar-language-menu {
        position: absolute;
        top: 20px;
        left: 0;
        width: 100%;
        margin-top: 12px;
        background: #111;
    }

    .navbar-language-option {
        min-height: 46px;
    }

    .navbar-links {
        width: 100%;
        display: flex;
        flex-direction: row;
        gap: 12px;
        order: 3;
    }

    .navbar-btn {
        flex: 1;
        white-space: nowrap;
        padding: 14px 20px;
        font-size: 16px;
        font-weight: 600;
    }

    .navbar-language-option {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .navbar-language-flag {
        font-size: 16px;
        line-height: 1;
    }
    .hero {
        min-height: 70px;
    }

    .hero-shell {
        padding: 128px 22px 40px;
    }

    .hero-title {
        font-size: clamp(42px, 6vw, 62px);
    }

    .hero-booking-bar {
        /* grid-template-columns: repeat(6, minmax(0, 1fr)) auto; */
        border-radius: 44px;
    }

    .hero-booking-panel {
        left: -72px;
    }

    .hero-search-btn {
        position: relative;

        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;

        min-width: 154px;
        min-height: 58px;
        padding: 0 28px;

        border: none;

        /* SAME SHAPE AS LOGIN BUTTON */
        border-radius: 999px;

        color: #fff;
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;

        box-shadow:
            0 2px 8px 0 rgba(6, 10, 13, 0.12),
            inset 4px 4px 8px rgba(0, 0, 0, 0.08);

        background:
            radial-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0) 90%),
            radial-gradient(
                circle at 80% 200%,
                rgba(255, 255, 255, 0.3),
                rgba(255, 255, 255, 0) 80%
            ),
            linear-gradient(rgba(15, 19, 25, 0.35));

        background-color: rgba(0, 0, 0, 0.35);

        transition: all 0.25s ease;
    }

    .hero-search-btn::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        pointer-events: none;

        border: 1px solid rgba(0, 0, 0, 0);

        background: linear-gradient(
                -18deg,
                rgba(0, 0, 0, 0.9) 20%,
                rgba(0, 0, 0, 0.6) 30%,
                rgba(0, 0, 0, 0.15) 40%,
                rgba(0, 0, 0, 0.15) 60%,
                rgba(0, 0, 0, 0.6) 70%,
                rgba(0, 0, 0, 0.9) 90%
            )
            border-box;

        -webkit-mask:
            radial-gradient(black) border-box,
            linear-gradient(black) padding-box;

        mask:
            radial-gradient(black) border-box,
            linear-gradient(black) padding-box;

        -webkit-mask-composite: source-out;
        mask-composite: subtract;
    }

    .hero-search-btn:hover {
        transform: translateY(-2px);
    }
    .faq-title {
        font-size: 44px;
    }

    .faq-question {
        font-size: 20px;
    }

    .download-app-shell {
        grid-template-columns: minmax(280px, 380px) minmax(340px, 1fr);
        min-height: 480px;
    }

    .download-app-content {
        padding: 74px 0;
    }

    .download-app-title {
        font-size: 46px;
    }

    .download-app-text {
        font-size: 17px;
    }

    .download-app-visual {
        min-height: 480px;
    }

    .download-app-visual img {
        right: -210px;
        bottom: -28px;
        width: min(760px, 78vw);
    }

    .partners-shell {
        grid-template-columns: 220px 1fr;
        gap: 28px;
    }

    .partners-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(120px, 1fr));
        gap: 24px;
        align-items: center;
    }

    .how-works-shell {
        grid-template-columns: minmax(300px, 420px) minmax(320px, 1fr);
        gap: 36px;
    }

    .how-works-title {
        font-size: 34px;
    }

    .how-works-laptop {
        width: min(500px, 100%);
        height: 300px;
    }

    .trip-benefits-title {
        font-size: 44px;
    }

    .trip-benefits-grid {
        gap: 24px;
        margin-bottom: 60px;
    }

    .trip-stats-banner {
        grid-template-columns: minmax(240px, 1fr) minmax(0, 1.5fr);
        padding: 48px 40px;
    }

    .trip-stats-copy p {
        font-size: 30px;
    }

    .trip-stat strong {
        font-size: 48px;
    }

    .video-story-shell {
        gap: 44px;
        grid-template-columns: minmax(280px, 1fr) minmax(260px, 300px);
    }

    .video-story-quote {
        font-size: 22px;
    }

    .video-story-play-icon {
        width: 72px;
        height: 72px;
    }

    .region-shell {
        grid-template-columns: minmax(300px, 480px) minmax(280px, 1fr);
        gap: 48px;
    }

    .region-title {
        font-size: 34px;
    }

    .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-main {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-column-app {
        justify-self: start;
    }
}
@media (max-width: 1092px) {
    .fleet-shell {
        --fleet-left-space: 20px;
        --fleet-right-space: 20px;
        --fleet-gap: 22px;
    }

    .fleet-card {
        flex: 0 0 calc((100vw - var(--fleet-left-space) - var(--fleet-gap)) / 2);
        max-width: calc(
            (100vw - var(--fleet-left-space) - var(--fleet-gap)) / 2
        );
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 14px 16px;
    }

    .navbar-logo {
        height: 54px;
    }

    .navbar-panel {
        /* left: 16px;
    right: 16px; */
        padding: 18px;
    }

    .navbar-menu-link,
    .navbar-contact,
    .navbar-language,
    .navbar-language-btn {
        font-size: 22px;
    }

    .navbar-language-btn {
        gap: 10px;
    }

    .navbar-btn {
        padding: 10px 18px;
        font-size: 12px;
    }

    .hero {
        min-height: 50vh;
        margin-top: 0;
        padding-top: 0;
    }
    .hero-pagination {
        left: 0;
    }

    .hero-slider {
        position: absolute;
    }

    .hero-slide {
        position: absolute;
        display: block;
        opacity: 0;
    }

    .hero-slide.active {
        opacity: 1;
    }

    .hero-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
    }

    .hero-shell {
        position: relative;
        max-width: 1180px;
        margin: 0 auto;
        padding: 128px 18px 40px;
        background: transparent;
        border-radius: 0;
    }

    .hero-inner {
        max-width: 560px;
        padding-top: 54px;
    }

    .hero-controls {
        margin-bottom: 26px;
    }

    .hero-booking-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        margin-top: 22px;
        width: 100%;
    }

    .hero-pagination-dot {
        appearance: none;
        border: 1px solid rgba(255, 255, 255, 0.6);
        background-color: rgba(255, 255, 255, 0.28);
        width: 15px;
        height: 15px;
        min-width: 15px;
        border-radius: 999px;
        cursor: pointer;
        transition:
            width 0.25s ease,
            background-color 0.25s ease,
            transform 0.25s ease;
    }

    .hero-pagination-dot:hover,
    .hero-pagination-dot:focus-visible {
        background-color: rgba(255, 255, 255, 0.85);
        transform: translateY(-1px);
    }

    .hero-pagination-dot-active {
        width: 28px;
        background-color: rgba(255, 255, 255, 1);
    }

    .hero-title {
        font-size: clamp(42px, 6vw, 62px);
    }

    .hero-booking-bar {
        /* grid-template-columns: repeat(7, minmax(0, 1fr)) auto; */
        gap: 20px;
        padding: 20px 20px 20px 26px;
        border-radius: 44px;
        margin-top: 0;
    }

    .hero-booking-item {
        grid-template-columns: 56px 1fr;
        column-gap: 16px;
    }

    .hero-booking-icon {
        width: 52px;
        height: 52px;
    }

    .hero-search-btn {
        min-height: 58px;
        width: auto;
    }

    .hero-booking-panel,
    .hero-time-panel {
        left: 0;
        min-width: 0;
        width: min(100%, 296px);
    }

    .search-section {
        padding: 30px 20px;
    }

    .search-form {
        grid-template-columns: 1fr;
    }

    .search-btn {
        width: 100%;
    }

    .fleet-section {
        padding: 58px 0 46px;
    }

    .fleet-shell {
        --fleet-left-space: 20px;
        --fleet-right-space: 20px;
        --fleet-gap: 22px;
    }

    .fleet-header {
        margin-bottom: 36px;
    }

    .fleet-heading {
        font-size: 38px;
    }

    .fleet-grid {
        gap: var(--fleet-gap);
    }

    .fleet-card {
        flex-basis: calc((100vw - var(--fleet-left-space) - 22px) / 2);
        max-width: calc((100vw - var(--fleet-left-space) - 22px) / 2);
    }

    .fleet-controls {
        margin-top: 38px;
    }

    .services-section {
        padding: 48px 0 64px;
    }

    .services-shell {
        --services-left-space: 20px;
        --services-right-space: 20px;
        --services-gap: 22px;
    }

    .services-header {
        margin-bottom: 36px;
    }

    .services-heading {
        font-size: 38px;
    }

    .service-card {
        flex-basis: calc((100vw - var(--services-left-space) - 22px) / 2);
        max-width: calc((100vw - var(--services-left-space) - 22px) / 2);
        height: 300px;
    }

    .services-controls {
        margin-top: 38px;
    }

    .testimonials-section,
    .cta-section {
        padding: 50px 20px;
    }

    .faq-section {
        padding: 70px 20px 74px;
    }

    .faq-section::before {
        top: -220px;
        left: -250px;
        width: 470px;
        height: 470px;
    }

    .faq-title {
        margin-bottom: 40px;
        font-size: 36px;
    }

    .faq-list {
        max-width: 100%;
    }

    .faq-question {
        padding: 18px 60px 18px 0;
        font-size: 18px;
    }

    .faq-question::before,
    .faq-question::after {
        right: 6px;
        width: 24px;
        height: 24px;
    }

    .faq-question::after {
        font-size: 20px;
        line-height: 24px;
    }

    .faq-item[open] .faq-question::after {
        font-size: 24px;
        line-height: 24px;
    }

    .faq-answer {
        padding: 0 20px 22px 0;
    }

    .download-app-section {
        padding: 0 20px;
    }

    .video-story-section {
        padding: 66px 20px 64px;
    }

    .video-story-section::before,
    .video-story-section::after {
        display: none;
    }

    .video-story-shell {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .video-story-media {
        display: none;
    }

    .video-story-copy {
        max-width: 100%;
    }

    .video-story-quote {
        max-width: 100%;
        margin-top: 32px;
        font-size: 20px;
    }

    .video-story-media {
        justify-self: center;
        width: min(100%, 360px);
    }

    .video-story-play {
        width: 100%;
    }

    .video-story-play-icon {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .video-story-play:hover .video-story-play-icon {
        transform: translate(-50%, -50%) scale(1.05);
    }

    .video-modal-dialog {
        position: relative;
        z-index: 10000;
        width: min(100vw - 24px, 880px);
        margin: 90px auto 24px;
    }
    .region-section {
        padding: 72px 20px 68px;
    }

    .region-section::before {
        right: -120px;
        bottom: -20px;
        width: 520px;
        height: 260px;
    }

    .region-shell {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .region-gallery {
        max-width: 520px;
        margin: 0 auto;
    }

    .region-content {
        max-width: 520px;
        margin: 0 auto;
    }

    .region-title {
        font-size: 32px;
    }

    .region-text {
        max-width: 100%;
    }

    .news-section {
        padding: 64px 20px 68px;
    }

    .news-header {
        margin-bottom: 34px;
    }

    .news-title {
        font-size: 30px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .news-card-title {
        max-width: 100%;
        font-size: 18px;
        cursor: pointer;
    }
    .news-card-title:hover {
        color: #ff7a00;
    }
    .download-app-section::after {
        background: linear-gradient(
            180deg,
            rgba(239, 86, 63, 0) 42%,
            rgba(239, 86, 63, 0.28) 62%,
            rgba(239, 86, 63, 0.94) 100%
        );
    }

    .download-app-shell {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 24px;
        align-items: center;
    }

    .download-app-content {
        padding: 54px 0 0;
        text-align: center;
    }

    .download-app-title {
        font-size: 38px;
        margin-bottom: 24px;
    }

    .download-app-text {
        max-width: 100%;
        font-size: 16px;
        margin: 0 auto;
    }

    .download-app-actions {
        margin-top: 32px;
        justify-content: center;
        margin-bottom: 24px;
    }

    .download-store-btn {
        min-width: 0;
        width: 30%;
        max-width: 360px;
        justify-content: center;
    }

    .download-app-visual {
        display: none;
    }

    @media (max-width: 480px) {
        .download-app-content {
            padding: 42px 0 0;
        }

        .download-app-title {
            font-size: 32px;
        }

        .download-app-actions {
            gap: 12px;
            margin-top: 24px;
            margin-bottom: 24px;
        }

        .download-store-btn {
            max-width: 100%;
            padding: 14px 18px;
        }

        .download-app-visual {
            min-height: 280px;
        }

        .download-app-visual img {
            bottom: -16px;
            width: min(520px, 90vw);
        }
    }

    .fleet-section::before {
        left: -360px;
        top: 150px;
        width: 820px;
        height: 820px;
    }

    .fleet-heading {
        font-size: 30px;
    }

    .fleet-card {
        padding: 24px 20px 22px;
        flex-basis: calc((100vw - var(--fleet-left-space) - 22px) / 2);
        max-width: calc((100vw - var(--fleet-left-space) - 22px) / 2);
    }

    .fleet-card-copy {
        min-height: auto;
    }

    .fleet-description {
        min-height: auto;
    }

    .fleet-control-btn {
        width: 56px;
        height: 56px;
    }

    .services-section::after {
        right: -340px;
        top: 70px;
        width: 620px;
        height: 860px;
    }

    .services-heading {
        font-size: 30px;
    }

    .service-card {
        flex-basis: calc((100vw - var(--services-left-space) - 22px) / 2);
        max-width: calc((100vw - var(--services-left-space) - 22px) / 2);
        height: 280px;
    }

    .service-card-content {
        padding: 22px 22px 24px;
    }

    .service-card-content p {
        max-width: 180px;
        font-size: 13px;
    }

    .services-control-btn {
        width: 56px;
        height: 56px;
    }

    .cta-section h2 {
        font-size: 24px;
    }

    .footer {
        padding: 30px 20px 24px;
    }

    .partners-section {
        padding: 42px 20px;
    }

    .partners-shell {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .partners-copy h2 {
        max-width: 100%;
        font-size: 18px;
    }

    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px 24px;
    }

    .how-works-section {
        padding: 62px 20px 84px;
    }

    .how-works-line {
        width: min(620px, 88vw);
        opacity: 0.58;
    }

    .how-works-shell {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .how-works-content {
        max-width: 100%;
    }

    .how-works-title {
        margin-bottom: 32px;
        font-size: 32px;
    }

    .how-works-step {
        gap: 18px;
        padding-bottom: 28px;
    }

    .how-works-step-body p {
        max-width: 100%;
        margin-top: 12px;
        font-size: 15px;
    }

    .how-works-visual {
        min-height: auto;
    }

    .how-works-laptop {
        width: min(520px, 100%);
    }

    .trip-benefits-section {
        padding: 68px 20px 60px;
    }

    .trip-benefits-heading {
        margin-bottom: 36px;
    }

    .trip-benefits-title {
        font-size: 34px;
    }

    .trip-benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 44px;
    }

    .trip-benefit-card {
        max-width: 100%;
    }

    .trip-benefit-card p {
        max-width: 580px;
        margin-left: auto;
        margin-right: auto;
    }

    .trip-stats-banner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 40px 28px;
    }

    .trip-stats-copy {
        max-width: 100%;
    }

    .trip-stats-copy p {
        font-size: 28px;
    }

    .trip-stats-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
    }

    .trip-stat strong {
        font-size: 42px;
    }
    .faq-item[open] .faq-question::after {
        content: "−";
        transform: translate(95%, -56%);
    }
    .faq-question::after {
        content: "+";
        position: absolute;
        top: 53%;
        right: 26px;
        transform: translate(100%, -55%);
        font-size: 22px;
        font-weight: 400;
        color: rgba(0, 0, 0, 0.8);
        line-height: 1;
    }
}
@media (max-width: 668px) {
    .service-card {
        flex: 0 0 100%;
        max-width: 100%;
        height: 300px;
    }
}
@media (max-width: 768px) {
    .footer-top,
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* logo + contact same line */
    .footer-brand-group {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 18px;
        flex-wrap: wrap;
    }

    .footer-contact {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    /* follow us + icons */
    .footer-social-wrap {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 14px;
        margin-top: 14px;
    }

    .footer-social-links {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .footer-follow {
        margin-bottom: 0;
    }

    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 36px 24px;
        padding: 10px 0;
    }

    .footer-column-app {
        max-width: 60%;
        /* margin: 0 auto; */
    }

    /* bottom */
    .footer-bottom {
        gap: 16px;
    }

    .footer-bottom-left,
    .footer-bottom-right {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .faq-section::before {
        display: none;
    }

    @media (max-width: 768px) {
        .footer-bottom-left {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 14px;
        }

        .footer-bottom-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 14px 18px;
            max-width: 260px;
        }

        .footer-bottom-right {
            justify-content: center;
        }
    }

    /* links next line */
    .footer-bottom-left a {
        display: inline-block;
    }

    .footer-bottom-left div {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }
}
@media (min-width: 769px) {
    .hero-title {
        white-space: nowrap;
        overflow-wrap: normal;
    }

    .hero-title br {
        display: inline;
    }
}

@media (max-width: 680px) {
    .navbar {
        padding: 12px 14px;
    }

    /* .navbar-panel {
    left: 14px;
    right: 14px;
  } */
    .navbar-panel {
        position: fixed;
        top: 74px;
        left: 0;
        width: 100%;
        background: #fff;
        display: none;
        flex-direction: column;
        padding: 0;
        /* overflow: hidden; */
        z-index: 1000;
    }

    .video-story-section {
        padding: 54px 14px 52px;
    }

    .video-story-author {
        align-items: flex-start;
    }

    .video-story-quote-mark {
        width: 54px;
        height: 54px;
        font-size: 52px;
    }

    .video-story-author-copy h3 {
        font-size: 17px;
    }

    .video-story-quote {
        margin-top: 22px;
        font-size: 18px;
    }

    .video-story-progress {
        margin-top: 28px;
        font-size: 15px;
    }

    .video-story-progress-line {
        width: 108px;
    }

    .video-story-media {
        width: 100%;
    }

    .video-story-play-icon {
        width: 64px;
        height: 64px;
    }

    .video-story-play-icon i {
        width: 24px;
        height: 24px;
    }

    .video-modal-dialog {
        width: calc(100vw - 16px);
        margin: 22px auto;
    }

    .video-modal-close {
        top: -4px;
        right: -2px;
        width: 40px;
        height: 40px;
    }

    .region-section {
        padding: 56px 14px 54px;
    }

    .region-section::before {
        right: -160px;
        bottom: -40px;
        width: 420px;
        height: 220px;
        opacity: 0.62;
    }

    .region-gallery {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .region-gallery-tall {
        min-height: 320px;
    }

    .region-gallery-stack {
        display: none;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: none;
        gap: 12px;
    }

    .region-gallery-card {
        min-height: 170px;
    }

    .region-title {
        font-size: 28px;
    }

    .region-text {
        margin-top: 18px;
        font-size: 15px;
    }

    .region-btn {
        margin-top: 20px;
        width: 100%;
        justify-content: center;
    }

    .news-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .news-title {
        font-size: 26px;
    }

    .news-card-date {
        top: 16px;
        left: 18px;
    }

    .news-card-date strong {
        font-size: 30px;
    }

    .navbar-contact {
        width: 100%;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .partner-logo {
        min-height: 34px;
    }

    .how-works-section {
        padding: 54px 14px 70px;
    }

    .how-works-line {
        width: min(520px, 98vw);
        opacity: 0.5;
    }

    .how-works-title {
        font-size: 28px;
    }

    .how-works-step {
        grid-template-columns: 20px 1fr;
        gap: 14px;
        padding-bottom: 24px;
    }

    .how-works-step:not(:last-child)::after {
        left: 9px;
    }

    .how-works-step-dot {
        width: 18px;
        height: 18px;
    }

    .how-works-step-body h3 {
        font-size: 17px;
    }

    .how-works-step-body p {
        font-size: 14px;
        line-height: 1.7;
    }

    .trip-benefits-section {
        padding: 56px 14px;
    }

    .trip-benefits-title {
        font-size: 30px;
    }

    .trip-benefit-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 18px;
    }

    .trip-benefit-icon i {
        width: 54px;
        height: 54px;
    }

    .trip-benefit-card h3 {
        font-size: 20px;
    }

    .trip-benefit-card p {
        font-size: 18px;
        line-height: 1.8;
    }

    .trip-stats-banner {
        padding: 34px 20px;
    }

    .trip-stats-copy p {
        font-size: 24px;
    }
    .trip-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .trip-stat strong {
        font-size: 38px;
    }

    .trip-stat span {
        margin-top: 6px;
    }

    .navbar-links {
        width: 100%;
        display: flex;
        flex-direction: row;
        gap: 12px;
        order: 3;
    }

    .navbar-btn {
        flex: 1;
        white-space: nowrap;
        padding: 14px 20px;
        font-size: 15px;
        font-weight: 600;
    }
    .hero {
        margin-top: 0;
    }

    .hero-shell {
        padding: 128px 14px 40px;
    }

    .hero-inner {
        padding-top: 54px;
    }

    .hero-controls {
        gap: 10px;
        margin-bottom: 20px;
    }

    .hero-arrow {
        width: 36px;
        height: 36px;
    }

    .hero-counter {
        font-size: 14px;
    }

    .hero-title {
        font-size: clamp(32px, 7vw, 58px);
        line-height: 1.1;
    }

    .hero-tagline {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .hero-booking-bar {
        padding: 16px 14px;
        border-radius: 34px;
    }

    .hero-booking-value,
    .hero-booking-item input {
        font-size: 14px;
        color: #000;
    }

    .hero-booking-panel,
    .hero-time-panel {
        width: min(100%, 296px);
    }

    .hero-search-btn {
        min-width: 0;
        width: auto;
    }

    .search-form {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .fleet-section {
        padding: 52px 0 40px;
    }

    .fleet-shell {
        --fleet-left-space: 14px;
        --fleet-right-space: 14px;
        --fleet-gap: 16px;
    }

    .fleet-section::before {
        left: -290px;
        top: 180px;
        width: 640px;
        height: 640px;
    }

    .fleet-header {
        /* flex-direction: column; */
        gap: 14px;
        margin-bottom: 28px;
    }

    .fleet-heading {
        font-size: 28px;
    }

    .fleet-more-link {
        margin-top: 0;
    }

    .fleet-grid {
        gap: var(--fleet-gap);
    }

    .fleet-card {
        flex-basis: calc(100vw - var(--fleet-left-space) - 14px);
        max-width: calc(100vw - var(--fleet-left-space) - 14px);
    }

    .fleet-image,
    .fleet-image-suv {
        height: 164px;
        margin: 10px 0 14px;
    }

    .fleet-specs {
        /* flex-direction: column; */
        align-items: flex-start;
        gap: 12px;
    }

    .fleet-controls {
        margin-top: 28px;
    }

    .services-section {
        padding: 42px 0 54px;
    }

    .services-shell {
        --services-left-space: 14px;
        --services-right-space: 14px;
        --services-gap: 16px;
    }

    .services-section::after {
        right: -320px;
        top: 88px;
        width: 560px;
        height: 760px;
    }

    .services-header {
        flex-direction: column;
        gap: 14px;
        margin-bottom: 28px;
    }

    .services-heading {
        font-size: 28px;
    }

    .services-more-link {
        margin-top: 0;
    }

    .service-card {
        flex-basis: calc(100vw - var(--services-left-space) - 14px);
        max-width: calc(100vw - var(--services-left-space) - 14px);
        height: 292px;
    }

    .service-card-content {
        padding: 20px 20px 22px;
    }

    .service-card-content h3 {
        font-size: 17px;
    }

    .service-card-arrow {
        width: 46px;
        height: 46px;
        margin-top: 14px;
    }

    .services-controls {
        margin-top: 28px;
    }

    .faq-section {
        padding-top: 56px;
        padding-bottom: 58px;
    }

    .faq-section::before {
        top: -180px;
        left: -220px;
        width: 390px;
        height: 390px;
    }

    .faq-title {
        font-size: 30px;
        margin-bottom: 28px;
    }

    .faq-question {
        padding-right: 54px;
        font-size: 16px;
    }

    .faq-answer {
        padding-right: 0;
    }

    .faq-answer p {
        font-size: 15px;
    }

    .download-app-content {
        padding-top: 56px;
    }

    .download-app-title {
        font-size: 32px;
    }

    .download-app-actions {
        gap: 14px;
    }

    .download-store-btn {
        width: 60%;
        min-width: 0;
        justify-content: flex-start;
    }

    .download-store-copy strong {
        font-size: 15px;
    }

    .download-app-visual {
        min-height: 275px;
    }

    .download-app-visual img {
        bottom: -10px;
        width: min(560px, 146vw);
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-logo {
        font-size: 24px;
    }

    .footer-title {
        margin-bottom: 16px;
        font-size: 18px;
    }

    .footer-column li + li {
        margin-top: 14px;
    }

    .footer-column a {
        font-size: 15px;
    }
}
/* ============================= */
/* 962px and below - 2 cards row */
/* ============================= */
@media (max-width: 1024px) {
    .services-section {
        padding: 48px 0 64px;
    }

    .services-shell {
        --services-left-space: 20px;
        --services-right-space: 20px;
        --services-gap: 22px;
    }

    .services-header {
        margin-bottom: 36px;
    }

    .services-heading {
        font-size: 38px;
    }

    .service-card {
        flex: 0 0
            calc((100vw - var(--services-left-space) - var(--services-gap)) / 2);
        max-width: calc(
            (100vw - var(--services-left-space) - var(--services-gap)) / 2
        );
        height: 300px;
    }

    .services-controls {
        margin-top: 38px;
    }
}
/* Hide booking form on mobile */
@media (max-width: 768px) {
    .hero-booking-bar {
        display: none;
    }
    .footer-logo {
        height: 60px;
    }
}
/* MOBILE FORM */
@media (max-width: 490px) {
    .service-card {
        flex: 0 0 100%;
        max-width: 100%;
        height: 300px;
    }
}
.booking-form {
    display: none;
}

@media (max-width: 768px) {
    .booking-form {
        display: block;
        padding: 12px;
        background: #f3f3f3;
    }

    .form-card {
        background: #e9e9e9;
        border-radius: 12px;
        padding: 12px;
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
        cursor: pointer;
    }

    .form-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        border-radius: 10px;
        background: #f7f7f7;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #333;
    }

    .form-icon svg {
        width: 22px;
        height: 22px;
    }

    .form-content {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .label {
        font-size: 14px;
        color: #777;
    }

    .value {
        font-size: 15px;
        color: #111;
        font-weight: 500;
        line-height: 1.4;
    }
}
.hero-booking {
    display: none;
}

/* ============ MOBILE FORM OVERFLOW FIX ============ */
@media (max-width: 768px) {
    /* the plain <div> wrapping .hero-booking */
    .hero + div {
        overflow: visible;
        position: relative;
    }

    .hero-booking {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 12px;
        background: #f3f3f3;
        width: 100%;
        overflow: visible;
        position: relative;
        z-index: 10;
    }

    .hero-booking-item {
        width: 100%;
        background: #e9e9e9;
        border-radius: 12px;
        padding: 14px;
        display: flex;
        align-items: center;
        gap: 14px;
        min-height: 78px;
        position: relative;
        overflow: visible;
    }

    .hero-booking-field {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 4px;
        position: relative;
        overflow: visible;
    }

    .hero-booking-panel {
        position: absolute;
        top: calc(100% + 8px);
        left: -69px;
        right: 0;
        z-index: 9999;
        border-radius: 14px;
        background:
            radial-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0) 90%),
            radial-gradient(
                circle at 80% 200%,
                rgb(0 0 0),
                rgba(255, 255, 255, 0) 80%
            ),
            linear-gradient(rgb(29 29 29));
        border: 1px solid #e0e0e0;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
        min-width: 0;
        width: 90vw;
        overflow: hidden;
    }
    .hero-location-option {
        background: transparent;
    }
    .hero-location-option-copy strong {
        color: white;
    }

    .hero-location-option {
        border-radius: 0;
    }

    .hero-location-option:first-child {
        border-radius: 14px 14px 0 0;
    }

    .hero-location-option:last-child {
        border-radius: 0 0 14px 14px;
    }
    .hero-booking-field-date {
        position: static;
    }

    .hero-booking-item .hero-date-native {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        cursor: pointer;
        z-index: 10;
        border: none;
        background: transparent;
        -webkit-appearance: none;
    }

    .hero-booking-item .hero-date-native::-webkit-calendar-picker-indicator {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        cursor: pointer;
    }
}
.desktop-heading {
    display: block;
}

.mobile-heading {
    display: none;
}

.comfort-section {
    width: 100%;
    padding: 90px 20px;
    background: #f4f4f4;
}

/* ===== CENTER BOX ===== */

.comfort-container {
    max-width: 1280px;
    margin: 0 auto;
    /*background: #f4f4f4;*/
    /*padding: 90px 60px;*/
}

/* ===== HEADING ===== */

.comfort-heading-wrap {
    text-align: center;
    margin-bottom: 80px;
}

.comfort-heading {
    font-size: 44px;
    line-height: 58px;
    font-weight: 500;
    color: #181a1f;
    letter-spacing: -1px;
}

/* ===== GRID ===== */

.comfort-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 110px;
    row-gap: 85px;
}

/* ===== CARD ===== */

.comfort-card {
    display: flex;
    align-items: flex-start;
    gap: 28px;
}

.comfort-icon-box {
    width: 92px;
    min-width: 92px;
    height: 92px;
    border-radius: 22px;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comfort-icon-box img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

/* ===== CONTENT ===== */

.comfort-content h3 {
    font-size: 20px;
    line-height: 32px;
    font-weight: 500;
    color: #181a1f;
    margin-bottom: 12px;
}

.comfort-content p {
    font-size: 16px;
    line-height: 24px;
    color: #1c2430;
    max-width: 540px;
}

@media (max-width: 1400px) {
    .comfort-heading {
        font-size: 44px;
    }

    .comfort-content h3 {
        font-size: 20px;
    }

    .comfort-content p {
        font-size: 16px;
    }

    .comfort-grid {
        column-gap: 70px;
    }
}

/* ============================= */
/* ========= TABLET ============ */
/* ============================= */

@media (max-width: 991px) {
    .comfort-section {
        padding: 70px 20px;
    }

    .comfort-heading-wrap {
        margin-bottom: 60px;
    }

    .comfort-heading {
        font-size: 42px;
    }

    .comfort-grid {
        /* grid-template-columns: 1fr; */
        row-gap: 45px;
    }

    .comfort-card {
        gap: 22px;
    }

    .comfort-icon-box {
        width: 82px;
        min-width: 82px;
        height: 82px;
    }

    .comfort-icon-box img {
        width: 42px;
        height: 42px;
    }

    .comfort-content h3 {
        font-size: 18px;
        margin-bottom: 2px;
    }

    .comfort-content p {
        font-size: 16px;
        line-height: 1.6;
    }
}

@media (max-width: 576px) {
    .comfort-section {
        padding: 0px;
    }

    .comfort-container {
        background: #f4f4f4;
        padding: 55px 15px;
    }

    .comfort-heading-wrap {
        margin-bottom: 50px;
        text-align: left;
    }

    .comfort-heading {
        font-size: 30px;
        line-height: 42px;
        /* max-width: 340px; */
        letter-spacing: 0;
    }

    .comfort-grid {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }

    .comfort-card {
        flex-direction: row; /* icon + text same row like image */
        align-items: flex-start;
        gap: 16px;
    }

    .comfort-icon-box {
        width: 66px;
        min-width: 66px;
        height: 66px;
        border-radius: 18px;
    }

    .comfort-icon-box img {
        width: 34px;
        height: 34px;
    }

    .comfort-content {
        flex: 1;
    }

    .comfort-content h3 {
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 6px;
    }

    .comfort-content p {
        font-size: 16px;
        line-height: 24px;
        max-width: 100%;
    }

    .desktop-heading {
        display: none;
    }

    .mobile-heading {
        display: block;
    }
}
/* ============ JOURNEY SECTION ============ */

.journey-section {
    width: 100%;
    /* padding: 90px 50px;
  background: #ffffff; */
}

.journey-container {
    max-width: 1280px;
    margin: 0 auto;
    /* background: #f4f4f4; */
    border-radius: 24px;
    padding: 40px 90px;
}

/* ===== CONTENT ===== */

.journey-content {
    width: 100%;
}

.journey-heading {
    font-size: 44px;
    line-height: 58px;
    font-weight: 500;
    color: #181a1f;
    letter-spacing: -1px;
    margin-bottom: 30px;
    max-width: 1100px;
}

.journey-text {
    font-size: 16px;
    line-height: 28px;
    color: #181a1f;
    font-weight: 400;
    margin-bottom: 30px;
    max-width: 1150px;
}

/* ===== LIST ===== */

.journey-list {
    list-style: none;
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.journey-list li {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 16px;
    line-height: 28px;
    color: #181a1f;
}

.journey-check {
    width: 25px;
    min-width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.journey-check i {
    width: 16px;
    height: 16px;
}

@media (max-width: 1400px) {
    .journey-heading {
        font-size: 48px;
    }

    .journey-list li {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .journey-section {
        padding: 70px 20px;
    }

    .journey-container {
        padding: 60px 40px;
        border-radius: 20px;
    }

    .journey-heading {
        font-size: 40px;
        margin-bottom: 30px;
    }

    .journey-text {
        font-size: 16px;
        line-height: 1.9;
    }

    .journey-list {
        margin-top: 40px;
        gap: 20px;
    }

    .journey-list li {
        font-size: 16px;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .journey-section {
        padding: 0;
    }

    .journey-container {
        width: 100%;
        border-radius: 0;
        padding: 55px 18px;
    }

    .journey-heading {
        font-size: 32px;
        line-height: 1.35;
        letter-spacing: 0;
        margin-bottom: 24px;
    }

    .journey-text {
        font-size: 15px;
        line-height: 1.9;
        margin-bottom: 22px;
    }

    .journey-list {
        margin-top: 34px;
        gap: 18px;
    }

    .journey-list li {
        font-size: 16px;
        line-height: 1.6;
        gap: 12px;
        align-items: flex-start;
    }

    .journey-check {
        width: 25px;
        min-width: 25px;
        height: 25px;
    }

    .journey-check i {
        width: 13px;
        height: 13px;
    }
}

.contact-banner {
    background: #000;
    color: #fff;
    padding: 100px 0;
}

.contact-banner h1 {
    font-size: 44px;
    font-weight: 500;
    margin-bottom: 15px;
}

.contact-banner p {
    font-size: 18px;
    font-weight: 500;
}

/* CONTACT AREA */
.contact-offices {
    background: #f3f3f3;
    padding: 90px 0;
}

.contact-offices .office-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    align-items: start;
}

.contact-offices .office-card {
    text-align: left;
    min-width: 0;
}

.office-card img {
    width: 120px;
    height: auto;
    margin-bottom: 30px;
}

.office-card h3 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #000;
}

.office-card p {
    font-size: 16px;
    line-height: 1.9;
    color: #111;
    margin-bottom: 20px;
}

.office-card a {
    display: block;
    text-decoration: none;
    color: #111;
    font-size: 16px;
    margin-bottom: 28px;
    transition: 0.3s;
}

.office-card a:hover {
    color: #c0392b;
}

/* =========================
   LARGE DESKTOP
========================= */
@media (max-width: 1400px) {
    .contact-offices .office-grid {
        gap: 40px;
    }

    .office-card h3 {
        font-size: 26px;
    }

    .office-card p,
    .office-card a {
        font-size: 18px;
    }
}

/* =========================
   TABLET
========================= */
@media (max-width: 991px) {
    .contact-banner {
        padding: 70px 0;
    }

    .contact-banner h1 {
        font-size: 44px;
    }

    .contact-offices .office-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 246px;
    }

    .office-card {
        text-align: center;
    }

    .office-card img {
        width: 100px;
        margin: auto;
        margin-bottom: 25px;
    }

    .office-card h3 {
        font-size: 24px;
    }

    .office-card p,
    .office-card a {
        font-size: 17px;
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 600px) {
    .contact-banner {
        padding: 60px 0;
    }

    .contact-banner h1 {
        font-size: 38px;
    }

    .contact-banner p {
        font-size: 16px;
    }

    .contact-offices {
        padding: 60px 0;
    }

    .contact-offices .office-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .office-card img {
        width: 90px;
    }

    .office-card h3 {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .office-card p {
        font-size: 16px;
        line-height: 1.7;
    }

    .office-card a {
        font-size: 16px;
    }
}

/* CONTACT MAP */
.contact-map-section {
    background: #ffffff;
    padding: 0;
}

.contact-map-section .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 18px;
}

.contact-map-section h2 {
    font-size: 26px;
    font-weight: 700;
    color: #111;
}

.map-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.map-wrap iframe {
    width: 100%;
    height: 480px;
    border: 0;
    display: block;
}

/* Full-bleed map */
.map-full {
    width: 100%;
    overflow: hidden;
}

.map-full iframe {
    width: 100vw;
    height: 520px;
    border: 0;
    display: block;
    margin-left: calc(50% - 50vw);
}

/* Reduce container side padding for contact offices so 4 cards align nicely */
.contact-offices .container {
    max-width: 1200px;
    padding: 0 24px;
}

/* Ensure desktop shows four cards in a single row */
@media (min-width: 992px) {
    .contact-offices .office-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 50px;
    }
}

@media (max-width: 991px) {
    .map-wrap iframe,
    .map-full iframe {
        height: 360px;
    }
}

@media (max-width: 600px) {
    .map-wrap iframe,
    .map-full iframe {
        height: 260px;
    }
}
/* =========================
   CONTACT FORM SECTION
========================= */

.contact-form-section {
    background: #f5f5f5;
    padding: 100px 20px;
}

.contact-container {
    max-width: 820px;
    margin: auto;
}

.contact-container h2 {
    text-align: center;
    font-size: 44px;
    font-weight: 500;
    line-height: 58px;
    margin-bottom: 60px;
    color: #000;
}

/* FORM */
.contact-form {
    width: 100%;
}

/* ROW */
.form-row-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

/* INPUT GROUP */
.input-group {
    position: relative;
}

.input-group label {
    position: absolute;
    top: -10px;
    left: 18px;
    background: #f5f5f5;
    padding: 0 8px;
    font-size: 16px;
    color: #555;
}

/* INPUTS */
.contact-form input,
.contact-form textarea {
    width: 100%;
    border: none;
    background: #ececec;
    padding: 18px 20px;
    font-size: 16px;
    color: #181a1f;
    font-weight: 500;
    outline: none;
    border-radius: 6px;
    transition: 0.3s ease;
}

/* ACTIVE FIELD */
.input-group.active input,
.input-group.active textarea {
    border: 2px solid #333;
    background: transparent;
}

/* PLACEHOLDER */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #000;
}

/* TEXTAREA */
.contact-form textarea {
    height: 160px;
    resize: none;
    padding-top: 18px;
}

/* FULL WIDTH */
.full-width {
    margin-bottom: 24px;
}

/* BUTTON */
/* .contact-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    line-height: 28px;
    cursor: pointer;
    transition: 0.3s ease;
} */
.contact-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 24px;

    border: 0;
    border-radius: 999px; /* same pill shape */

    font-size: 16px;
    font-weight: 500;
    line-height: 28px;

    color: #fff;
    cursor: pointer;
    text-decoration: none;

    box-shadow:
        0 2px 8px 0 rgba(6, 10, 13, 0.12),
        inset 4px 4px 8px rgba(0, 0, 0, 0.08);

    background:
        radial-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0) 90%),
        radial-gradient(
            circle at 80% 200%,
            rgba(255, 255, 255, 0.3),
            rgba(255, 255, 255, 0) 80%
        ),
        linear-gradient(rgba(15, 19, 25, 0.35));

    background-color: rgba(0, 0, 0, 0.35);

    transition: all 0.3s ease;
}
.contact-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;

    border: 1px solid rgba(0, 0, 0, 0);

    background: linear-gradient(
            -18deg,
            rgba(0, 0, 0, 0.8) 20%,
            rgba(0, 0, 0, 0.4) 30%,
            rgba(0, 0, 0, 0.05) 40%,
            rgba(0, 0, 0, 0.05) 60%,
            rgba(0, 0, 0, 0.4) 70%,
            rgba(0, 0, 0, 0.8) 90%
        )
        border-box;

    -webkit-mask:
        radial-gradient(black) border-box,
        linear-gradient(black) padding-box;

    mask:
        radial-gradient(black) border-box,
        linear-gradient(black) padding-box;

    -webkit-mask-composite: source-out;
    mask-composite: subtract;
}
.contact-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* =========================
   TABLET
========================= */
@media (max-width: 992px) {
    .contact-form-section {
        padding: 80px 20px;
    }

    .contact-container h2 {
        font-size: 46px;
        margin-bottom: 50px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 17px;
        padding: 20px 18px;
    }

    .contact-btn {
        font-size: 18px;
        padding: 18px 30px;
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
    .contact-form-section {
        padding: 70px 16px;
    }

    .contact-container h2 {
        font-size: 36px;
        line-height: 1.3;
        margin-bottom: 40px;
    }

    .form-row-contact {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 16px;
        padding: 18px 16px;
    }

    .contact-form textarea {
        height: 140px;
    }

    .contact-btn {
        width: 100%;
        padding: 18px;
        font-size: 17px;
    }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {
    .contact-container h2 {
        font-size: 30px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 15px;
    }

    .input-group label {
        font-size: 14px;
    }
}
/* =========================
   SERVICES BANNER
========================= */

.services-banner {
    background: #000;
    color: #fff;
    padding: 90px 0;
}

.services-banner .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.services-banner h1 {
    font-size: 44px;
    font-weight: 500;
    margin-bottom: 5px;
    line-height: 58px;
}

.services-banner p {
    font-size: 18px;
    font-weight: 500;
    color: #ddd;
}

/* =========================
   LARGE DESKTOP
========================= */
@media (max-width: 1400px) {
    .services-banner h1 {
        font-size: 54px;
    }
}

/* =========================
   TABLET
========================= */
@media (max-width: 992px) {
    .services-banner {
        padding: 75px 0;
    }

    .services-banner h1 {
        font-size: 46px;
    }

    .services-banner p {
        font-size: 17px;
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
    .services-banner {
        padding: 60px 0;
    }

    .services-banner h1 {
        font-size: 38px;
        margin-bottom: 14px;
    }

    .services-banner p {
        font-size: 16px;
    }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {
    .services-banner h1 {
        font-size: 32px;
    }

    .services-banner p {
        font-size: 15px;
    }
}
/* =========================
   SERVICES SECTION
========================= */

.services-gallery-section {
    padding: 100px 0;
    background: #fff;
}

.container {
    max-width: 1400px;
    margin: auto;
    padding: 0 120px;
}

/* HEADER */

.services-gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-gallery-header h2 {
    font-size: 54px;
    font-weight: 700;
    color: #111;
}

/* GRID */

.services-gallery-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */

.service-gallery-card {
    position: relative;
    height: 420px;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.service-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

/* OVERLAY */

.service-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9),
        rgba(0, 0, 0, 0.2),
        transparent
    );

    display: flex;
    align-items: flex-end;

    padding: 30px;
}

/* CONTENT */

.service-content {
    width: 100%;
    color: #fff;
}

.service-content h3 {
    font-size: 30px;
    font-weight: 700;
    transition: 0.4s ease;
}

/* HOVER CONTENT */

.service-hover-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.5s ease;
}

.service-hover-content p {
    margin-top: 18px;
    margin-bottom: 24px;

    line-height: 1.8;
    font-size: 16px;
}

.service-hover-content a {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #fff;
    text-decoration: none;

    font-size: 17px;
    font-weight: 600;
}

/* HOVER */

.service-gallery-card:hover img {
    transform: scale(1.08);
}

.service-gallery-card:hover .service-hover-content {
    max-height: 200px;
    opacity: 1;
}

/* ================= PAGINATION ================= */

.fleet-pagination {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 0;

    margin-top: 65px;
}

.fleet-page-btn {
    width: 56px;
    height: 56px;

    border: 1px solid #e5e5e5;
    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    font-size: 16px;
    color: #111;

    transition: 0.25s ease;
}

.fleet-page-btn svg {
    width: 18px;
    height: 18px;
}

.fleet-page-btn.active {
    background: #000;
    color: #fff;
}

.fleet-page-btn:hover {
    background: #111;
    color: #fff;
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px) {
    .services-gallery-track {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-gallery-header h2 {
        font-size: 42px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
    .services-gallery-section {
        padding: 70px 0;
    }

    .services-gallery-track {
        grid-template-columns: 1fr;
    }

    .service-gallery-card {
        height: 380px;
    }

    .services-gallery-header h2 {
        font-size: 34px;
    }
}

.about-hero {
    width: 100%;
    height: 420px; /* desktop height */
    position: relative;
    overflow: hidden;
}

/* ================= IMAGE ================= */

.about-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ================= OVERLAY ================= */

.about-hero-overlay {
    position: absolute;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.56) 0%,
            rgba(0, 0, 0, 0.22) 38%,
            rgba(0, 0, 0, 0.12) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.16) 0%,
            rgba(0, 0, 0, 0.42) 100%
        );
    inset: 0;
    display: flex;
    align-items: center;
}

/* ================= CONTENT ================= */

.about-hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: #fff;
}

/* ================= HEADING ================= */

.about-hero-content h1 {
    font-size: 60px;
    font-weight: 500;
    margin-bottom: 12px;
    line-height: 1.1;
}

/* ================= BREADCRUMB ================= */

.about-hero-content p {
    font-size: 16px;
    color: #fff;
    margin: 0;
}

/* ================= TABLET ================= */

@media (max-width: 992px) {
    .about-hero {
        height: 380px;
    }

    .about-hero-content h1 {
        font-size: 46px;
    }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
    .about-hero {
        height: 220px;
    }

    .about-hero-content h1 {
        font-size: 34px;
        margin-bottom: 8px;
    }

    .about-hero-content p {
        font-size: 14px;
    }
}

/* ================= SMALL MOBILE ================= */

@media (max-width: 480px) {
    .about-hero {
        height: 280px;
    }

    .about-hero-content h1 {
        font-size: 28px;
    }

    .about-hero-content p {
        font-size: 13px;
    }
}
/* ============ FLEET PAGE ============ */
.fleet-listing-page {
    padding: 118px 0 88px;
    background: #fff;
}

.fleet-listing-shell {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}

.fleet-listing-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
    position: relative;
    z-index: 25;
}

.fleet-listing-head h1 {
    font-size: 31px;
    line-height: 1.15;
    font-weight: 500;
    color: #111;
}

.fleet-listing-filters {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.fleet-listing-dropdown {
    position: relative;
}

.fleet-listing-dropdown-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    padding: 0;
    background: transparent;
    color: #1a1a1a;
    font-size: 14px;
    line-height: 1.2;
    cursor: pointer;
}

.fleet-listing-dropdown-btn svg {
    width: 11px;
    height: 11px;
    color: #4a4a4a;
    transition: transform 0.2s ease;
}

.fleet-listing-dropdown.is-open .fleet-listing-dropdown-btn svg {
    transform: rotate(180deg);
}

.fleet-listing-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 104px;
    padding: 0;
    border: 1px solid #d9d9d9;
    background: #fff;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;
    z-index: 40;
}

.fleet-listing-dropdown.is-open .fleet-listing-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fleet-listing-dropdown-menu button {
    display: block;
    width: 100%;
    padding: 8px 10px;
    border: 0;
    border-bottom: 1px solid #ededed;
    background: #fff;
    text-align: left;
    color: #555;
    font-size: 11px;
    line-height: 1.15;
    cursor: pointer;
}

.fleet-listing-dropdown-menu button:last-child {
    border-bottom: 0;
}

.fleet-listing-dropdown-menu button:hover,
.fleet-listing-dropdown-menu button.is-active {
    background: #fff;
    color: #3d67f2;
}

.fleet-listing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 1056px) {
    .fleet-listing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.fleet-listing-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.fleet-listing-card-link:hover,
.fleet-listing-card-link:focus,
.fleet-listing-card-link:visited {
    color: inherit;
    text-decoration: none;
}

.fleet-listing-card {
    min-height: 420px;
    height: 100%;
    padding: 22px 16px 16px;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.fleet-listing-card-copy h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    color: #111;
    text-decoration: none;
}

.fleet-listing-card-copy p {
    max-width: 280px;
    margin-top: 10px;
    color: #3b3b3b;
    font-size: 16px;
    line-height: 1.8;
    text-decoration: none;
}

.fleet-listing-card-image {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 200px;
    margin: 16px 0 14px;
}

.fleet-listing-card-image img {
    width: 100%;
    max-width: max-content;
    height: auto;
    object-fit: contain;
}

.fleet-listing-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.fleet-listing-card-stat {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #121212;
    font-size: 14px;
    line-height: 1;
    text-decoration: none;
}

.fleet-listing-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f7f7f7;
    color: #101010;
    flex: 0 0 36px;
}

.fleet-listing-card-icon i {
    font-size: 14px;
    line-height: 1;
}

.fleet-listing-card-icon svg {
    width: 16px;
    height: 16px;
}

.fleet-listing-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-top: 34px;
}

.fleet-listing-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    padding: 0 10px;
    border: 1px solid #d8d8d8;
    border-right: 0;
    background: #fff;
    color: #111;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.fleet-listing-page-btn:last-child {
    border-right: 1px solid #d8d8d8;
}

.fleet-listing-page-btn:hover {
    background: #f5f5f5;
}

.fleet-listing-page-btn.is-active {
    background: #000;
    color: #fff;
}

.fleet-listing-page-btn.is-disabled {
    color: #a7a7a7;
    cursor: not-allowed;
}

.fleet-listing-page-btn.is-ellipsis {
    cursor: default;
}

.fleet-listing-empty {
    padding: 48px 24px;
    /* border: 1px solid #d8d8d8; */
    text-align: center;
    color: #666;
    font-size: 14px;
    /* background: #fafafa; */
    grid-column: span 2;
}

.fleet-listing-empty h3 {
    margin: 0 0 8px;
    font-size: 1.15rem;
    color: #111;
}

.fleet-listing-empty p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.fleet-page-shell,
.fleet-detail-shell {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.fleet-page-banner {
    background: #000;
}

.fleet-detail-hero-copy {
    color: #fff;
    background: none;
}

.fleet-page-banner {
    padding: 156px 0 70px;
}

.fleet-page-banner-kicker,
.fleet-detail-kicker,
.fleet-page-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    font-weight: 700;
    color: #f2553d;
}

.fleet-page-banner h1,
.fleet-detail-hero-copy h1 {
    margin-top: 18px;
    font-size: clamp(40px, 6vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.fleet-page-banner-copy {
    max-width: 700px;
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.fleet-page-catalog-section {
    padding: 68px 0 88px;
    background: linear-gradient(180deg, #f7f4ef 0%, #ffffff 28%), #fff;
}

.fleet-page-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 28px;
}

.fleet-page-toolbar h2 {
    font-size: clamp(32px, 4vw, 44px);
    color: #101010;
    line-height: 1.08;
}

.fleet-page-toolbar-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
}

.fleet-page-filter {
    position: relative;
    min-width: 185px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 20px 40px rgba(17, 17, 17, 0.06);
}

.fleet-page-filter summary {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 18px;
    cursor: pointer;
}

.fleet-page-filter summary::-webkit-details-marker {
    display: none;
}

.fleet-page-filter summary span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #888;
}

.fleet-page-filter summary strong {
    font-size: 15px;
    color: #141414;
}

.fleet-page-filter[open] {
    border-color: rgba(242, 85, 61, 0.45);
}

.fleet-page-filter-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    padding: 10px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
    z-index: 4;
}

.fleet-page-filter-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    color: #2a2a2a;
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.fleet-page-filter-menu a:hover,
.fleet-page-filter-menu a.is-active {
    background: rgba(242, 85, 61, 0.1);
    color: #d9462d;
}

.fleet-page-results-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
    color: #666;
}

.fleet-page-results-meta a {
    color: #111;
    font-weight: 700;
    text-decoration: none;
}

.fleet-page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.fleet-page-vehicle-card {
    min-width: 0;
}

.fleet-page-card-link {
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 100%;
    padding: 22px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 26px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 20px 50px rgba(17, 17, 17, 0.06);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.fleet-page-card-link:hover {
    transform: translateY(-6px);
    border-color: rgba(242, 85, 61, 0.25);
    box-shadow: 0 26px 56px rgba(17, 17, 17, 0.12);
}

.fleet-page-card-copy {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 14px;
}

.fleet-page-card-copy h3 {
    font-size: 24px;
    line-height: 1.15;
    color: #111;
}

.fleet-page-card-copy p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.7;
    color: #636363;
}

.fleet-page-card-chip,
.fleet-detail-pill {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(242, 85, 61, 0.1);
    color: #d9462d;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.fleet-page-card-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 170px;
    padding: 14px;
    border-radius: 22px;
    background:
        radial-gradient(
            circle at center,
            rgba(255, 255, 255, 0.8),
            rgba(241, 241, 241, 0.9)
        ),
        linear-gradient(180deg, #fafafa 0%, #f0f0f0 100%);
}

.fleet-page-card-image-wrap img {
    width: 100%;
    max-width: 280px;
    height: auto;
    object-fit: contain;
}

.fleet-page-card-meta,
.fleet-page-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.fleet-page-card-meta {
    padding-top: 2px;
    color: #666;
    font-size: 14px;
}

.fleet-page-card-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.fleet-page-card-footer strong {
    color: #111;
    letter-spacing: 0;
    text-transform: none;
    font-size: 14px;
}

.fleet-page-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px;
}

.fleet-page-pagination-link,
.fleet-page-pagination-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    background: #fff;
    color: #111;
    text-decoration: none;
    font-weight: 700;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.fleet-page-pagination-link:hover,
.fleet-page-pagination-arrow:hover,
.fleet-page-pagination-link.is-active {
    background: #111;
    border-color: #111;
    color: #fff;
}

.fleet-page-pagination-arrow.is-disabled {
    opacity: 0.35;
    pointer-events: none;
}

.fleet-page-empty-state {
    padding: 50px 28px;
    text-align: center;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(17, 17, 17, 0.06);
}

.fleet-page-empty-state h3 {
    font-size: 28px;
    color: #111;
}

.fleet-page-empty-state p {
    margin-top: 10px;
    color: #666;
}

.fleet-page-empty-state a {
    display: inline-flex;
    margin-top: 18px;
    color: #d9462d;
    font-weight: 700;
    text-decoration: none;
}

.fleet-detail-hero {
    position: relative;
    background: none;
    overflow: hidden;
    min-height: 320px;
}

.fleet-detail-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    height: 100%;
}

.fleet-detail-hero-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fleet-detail-hero-copy {
    position: absolute;
    left: 0;
    right: 0;
    top: 22%; /* slightly upper-middle */
    z-index: 2;
    color: #fff;
    padding: 0;
}

.fleet-detail-hero-copy .fleet-detail-shell {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding-top: 80px;
}

.fleet-detail-hero-copy h1 {
    margin: 0 0 12px 0;
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.04;
    font-weight: 700;
    color: #fff;
}

.fleet-detail-breadcrumb {
    margin-top: 6px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}
.service-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

@media (min-width: 900px) {
    .fleet-detail-hero {
        min-height: 420px;
    }
    .fleet-detail-hero-copy {
        top: 20%;
    }
}
.fleet-detail-hero-copy {
    padding: 4px;
}
.fleet-detail-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.fleet-detail-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.fleet-detail-hero-media img {
    display: block;
    width: 100%;
    max-height: 620px;
    object-fit: cover;
}

.fleet-detail-gallery-section {
    padding: 72px 0 12px;
    background: #fff;
}

.fleet-detail-gallery-carousel {
    overflow: hidden;
}

.fleet-detail-gallery-track {
    display: flex;
    gap: 24px;
    will-change: transform;
}

.fleet-detail-gallery-item {
    flex: 0 0 calc((100% - 24px) / 2);
    min-width: 0;
}

.fleet-detail-gallery-item img {
    display: block;
    width: 100%;
    height: 396px;
    object-fit: cover;
}

.fleet-detail-gallery-controls {
    display: flex;
    gap: 14px;
    margin-top: 52px;
}

.fleet-detail-gallery-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    color: #111;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.fleet-detail-gallery-arrow svg {
    width: 20px;
    height: 20px;
}

.fleet-detail-gallery-arrow:hover {
    transform: translateY(-1px);
    border-color: #111;
}

.fleet-detail-gallery-arrow-dark {
    background: #111;
    border-color: #111;
    color: #fff;
}

.fleet-detail-gallery-arrow-dark:hover {
    background: #222;
    border-color: #222;
}

.fleet-detail-content {
    padding: 76px 0 92px;
    background: linear-gradient(180deg, #f7f4ef 0%, #fff 32%);
}

.fleet-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) 370px;
    gap: 28px;
    align-items: start;
}

.fleet-detail-intro h2 {
    margin-top: 16px;
    font-size: clamp(34px, 5vw, 48px);
    color: #111;
}

.fleet-detail-intro p {
    max-width: 780px;
    margin-top: 16px;
    color: #5e5e5e;
    line-height: 1.8;
}

.fleet-detail-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 30px;
}

.fleet-detail-stats article,
.fleet-detail-card,
.fleet-detail-booking {
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(17, 17, 17, 0.06);
}

.fleet-detail-stats article {
    padding: 24px 20px;
}

.fleet-detail-stats strong {
    display: block;
    font-size: 28px;
    color: #111;
}

.fleet-detail-stats span {
    display: block;
    margin-top: 6px;
    color: #666;
    font-size: 14px;
}

.fleet-detail-grid {
    display: grid;
    gap: 20px;
    margin-top: 26px;
}

.fleet-detail-card {
    padding: 26px;
}

.fleet-detail-card h3 {
    font-size: 22px;
    color: #111;
}

.fleet-detail-card p,
.fleet-detail-card li {
    margin-top: 12px;
    color: #5f5f5f;
    line-height: 1.8;
}

.fleet-detail-card ul {
    padding-left: 20px;
}

.fleet-detail-sidebar {
    position: sticky;
    top: 104px;
}

.fleet-detail-booking {
    padding: 24px;
}

.fleet-detail-booking img {
    display: block;
    width: 100%;
    height: auto;
    padding: 18px;
    border-radius: 22px;
    background:
        radial-gradient(
            circle at center,
            rgba(255, 255, 255, 0.9),
            rgba(241, 241, 241, 0.95)
        ),
        linear-gradient(180deg, #fafafa 0%, #eeeeee 100%);
}

.fleet-detail-booking h3 {
    margin-top: 20px;
    font-size: 28px;
    color: #111;
}

.fleet-detail-booking p {
    margin-top: 12px;
    color: #636363;
    line-height: 1.75;
}

.fleet-detail-meta {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.fleet-detail-meta span {
    padding: 14px 16px;
    border-radius: 16px;
    background: #f7f7f7;
    color: #2d2d2d;
}

.fleet-detail-cta,
.fleet-detail-link {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 700;
}

.fleet-detail-cta {
    margin-top: 24px;
    padding: 15px 18px;
    background: #111;
    color: #fff;
}

.fleet-detail-link {
    margin-top: 12px;
    padding: 14px 18px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    color: #111;
}

@media (max-width: 1100px) {
    .fleet-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fleet-detail-layout {
        grid-template-columns: 1fr;
    }

    .fleet-detail-sidebar {
        position: static;
    }

    .fleet-detail-gallery-item {
        flex-basis: 100%;
    }
}
@media screen and (max-width: 699px) {
    .fleet-listing-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .fleet-listing-page {
        padding: 102px 0 70px;
    }

    .fleet-listing-shell {
        width: min(100% - 24px, 1200px);
    }

    .fleet-listing-head {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .fleet-listing-head h1 {
        font-size: 26px;
    }

    .fleet-listing-filters {
        justify-content: flex-end;
        flex-wrap: wrap;
    }

    .fleet-page-banner {
        padding-top: 124px;
    }

    .fleet-page-banner {
        padding-bottom: 56px;
    }

    .fleet-page-banner-copy {
        font-size: 16px;
    }

    .fleet-page-catalog-section,
    .fleet-detail-content {
        padding: 56px 0 70px;
    }

    .fleet-detail-gallery-section {
        padding: 52px 0 8px;
    }

    .fleet-detail-gallery-item img {
        height: 320px;
    }

    .fleet-detail-gallery-controls {
        margin-top: 34px;
    }

    .fleet-page-toolbar,
    .fleet-page-results-meta {
        flex-direction: column;
        align-items: stretch;
    }

    .fleet-page-toolbar-filters {
        justify-content: stretch;
    }

    .fleet-page-filter {
        width: 100%;
    }

    .fleet-page-grid,
    .fleet-detail-stats {
        grid-template-columns: 1fr;
    }

    .fleet-page-card-copy,
    .fleet-page-card-meta,
    .fleet-page-card-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .fleet-page-card-image-wrap {
        min-height: 150px;
    }

    .fleet-page-pagination {
        gap: 8px;
    }

    .fleet-page-pagination-link,
    .fleet-page-pagination-arrow {
        min-width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .fleet-detail-breadcrumb {
        gap: 8px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .fleet-listing-page {
        padding-top: 94px;
    }

    .fleet-listing-head h1 {
        font-size: 22px;
    }

    .fleet-listing-filters {
        justify-content: flex-start;
        gap: 12px;
    }

    .fleet-listing-dropdown-menu {
        min-width: 112px;
    }

    .fleet-listing-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .fleet-listing-card {
        min-height: 400px;
        padding: 18px 14px 14px;
    }

    .fleet-listing-card-image {
        min-height: 200px;
        margin: 12px 0;
    }

    .fleet-listing-card-image img {
        max-width: max-content;
    }

    .fleet-listing-card-meta {
        gap: 24px;
        flex-wrap: wrap;
    }

    .fleet-listing-pagination {
        margin-top: 28px;
        overflow-x: auto;
        justify-content: center;
        padding-bottom: 4px;
    }

    .fleet-listing-page-btn {
        flex: 0 0 auto;
    }

    .fleet-page-shell,
    .fleet-detail-shell {
        width: min(100% - 24px, 1200px);
    }

    .fleet-page-banner h1,
    .fleet-detail-hero-copy h1 {
        font-size: 34px;
    }

    .fleet-detail-gallery-item img {
        height: 240px;
    }

    .fleet-detail-gallery-controls {
        gap: 12px;
        margin-top: 24px;
    }

    .fleet-detail-gallery-arrow {
        width: 52px;
        height: 52px;
    }

    .fleet-page-card-link,
    .fleet-detail-card,
    .fleet-detail-booking {
        padding: 18px;
        border-radius: 22px;
    }

    .fleet-page-card-copy h3 {
        font-size: 22px;
    }

    .fleet-detail-booking h3 {
        font-size: 24px;
    }
}

/* ============ SERVICE PAGE ============ */
.service-listing-page {
    background: #fff;
}

.service-listing-grid-section {
    padding: 30px 0 56px;
}

.service-listing-shell,
.service-detail-shell {
    width: min(1250px, calc(100% - 48px));
    margin: 0 auto;
}

.service-listing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-listing-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.service-listing-card {
    position: relative;
    height: 416px;
    overflow: hidden;
    border-radius: 4px;
    background: #111;
}

.service-listing-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-listing-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 22px 18px 20px;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.02) 28%,
        rgba(0, 0, 0, 0.78) 100%
    );
}

.service-listing-card-copy {
    position: relative;
    z-index: 1;
    width: 100%;
    transform: translateY(80px);
    transition: transform 0.28s ease;
}

.service-listing-card-copy h3 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    transition: transform 0.28s ease;
}

.service-listing-card-copy p {
    max-width: 230px;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 12px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(10px);
    transition:
        opacity 0.28s ease,
        transform 0.28s ease;
}

.service-listing-card-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-top: 16px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: #fff;
    opacity: 0;
    transform: translateY(10px);
    transition:
        opacity 0.28s ease,
        transform 0.28s ease,
        background-color 0.28s ease;
}

.service-listing-card-arrow svg {
    width: 18px;
    height: 18px;
}
.icon-tilt {
    transform: rotate(-45deg);
}
.service-listing-card:hover .service-listing-card-copy {
    transform: translateY(0);
}

.service-listing-card:hover .service-listing-card-copy h3 {
    transform: translateY(-2px);
}

.service-listing-card:hover .service-listing-card-copy p,
.service-listing-card:hover .service-listing-card-arrow {
    opacity: 1;
    transform: translateY(0);
}

.service-listing-card:hover .service-listing-card-arrow {
    background: rgba(255, 255, 255, 0.08);
}

@media (hover: none) {
    .service-listing-card-copy p,
    .service-listing-card-arrow {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1400px) {
    .service-listing-card-copy {
        transform: translateY(0px) !important;
    }
}

.service-listing-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-top: 40px;
}

.service-listing-empty {
    padding: 48px 24px;
    border: 1px solid #d8d8d8;
    text-align: center;
    background: #fafafa;
}

.service-listing-empty h3 {
    margin: 0 0 8px;
    font-size: 1.15rem;
    color: #111;
}

.service-listing-empty p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.service-listing-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    border: 1px solid #d8d8d8;
    border-right: 0;
    background: #fff;
    color: #111;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.service-listing-page-btn:last-child {
    border-right: 1px solid #d8d8d8;
}

.service-listing-page-btn:hover {
    background: #f5f5f5;
}

.service-listing-page-btn.is-active {
    background: #000;
    color: #fff;
}

.service-listing-page-btn.is-disabled,
.service-listing-page-btn.is-ellipsis {
    color: #a7a7a7;
}

.service-detail-view {
    background: #fff;
}

.service-detail-hero {
    background: #fff;
}

.service-detail-image-shell {
    position: relative;
    z-index: 1;
    width: 100%;
}

.service-detail-top {
    background: #000;
    color: #fff;
    padding: 118px 0 0;
    position: relative;
    z-index: 2;
    min-height: 110vh;
}

.service-detail-top-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 372px;
    gap: 64px;
    align-items: start;
    min-height: 260px;
}

.service-detail-copy {
    padding: 8px 0 0;
    max-width: 540px;
}

.service-detail-copy h1 {
    font-size: clamp(42px, 5.4vw, 58px);
    line-height: 1.12;
    font-weight: 500;
    color: #fff;
}

.service-detail-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    color: #fff;
    font-size: 16px;
}

.service-detail-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.service-detail-booking {
    position: absolute;
    right: 0;
    bottom: -400px;
    z-index: 3;
    width: 372px;
    padding: 0 0 30px;
    border-radius: 8px;
    background: #fff;
    color: #111;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
}

.service-detail-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid #e2e2e2;
}

.service-detail-tab {
    padding: 28px 12px 24px;
    border: 0;
    background: #fff;
    color: #666;
    font-size: 15px;
    cursor: pointer;
}

.service-detail-tab.is-active {
    color: #111;
    box-shadow: inset 0 -2px 0 #111;
}

.service-detail-fields {
    display: grid;
    gap: 18px;
    padding: 30px;
}

.service-detail-field {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    padding: 12px;
    border-radius: 8px;
    background: #f5f5f5;
}

.service-detail-field-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 8px;
    background: #fff;
    color: #222;
}

.service-detail-field-icon i {
    width: 22px;
    height: 22px;
}

.service-detail-field span {
    display: block;
    color: #666;
    font-size: 14px;
}

.service-detail-field strong {
    display: block;
    margin-top: 6px;
    font-size: 16px;
    line-height: 1.45;
    color: #111;
}

.service-detail-search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: calc(100% - 60px);
    margin: 0 30px;
    padding: 18px 20px;
    border-radius: 6px;
    background: #f2553d;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
}

.service-detail-search-btn i {
    width: 22px;
    height: 22px;
}

.service-detail-image-wrap {
    overflow: hidden;
}

.service-detail-image-wrap img {
    display: block;
    width: 100vw;
    max-width: none;
    height: 560px;
    object-fit: cover;
    margin-left: calc(50% - 50vw);
}

@media (max-width: 991px) {
    .service-listing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-detail-top {
        padding: 104px 0 72px;
    }
    .service-detail-image-wrap img {
        display: block;
        width: 100vw;
        max-width: none;
        height: 360px;
        object-fit: cover;
        margin-left: calc(50% - 50vw);
    }
    .service-detail-top-layout {
        position: static;
        grid-template-columns: 1fr;
        gap: 24px;
        min-height: 0;
    }

    .service-detail-booking {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        max-width: 560px;
        margin-bottom: 0;
    }

    .service-detail-copy {
        padding-bottom: 0;
    }
}

@media (max-width: 768px) {
    .service-listing-grid-section {
        padding: 22px 0 48px;
    }

    .service-listing-shell,
    .service-detail-shell {
        width: min(100% - 24px, 1250px);
    }

    .service-detail-top {
        padding-top: 96px;
        padding-bottom: 40px;
    }

    .service-detail-copy h1 {
        font-size: 34px;
    }

    .service-detail-breadcrumb {
        font-size: 14px;
    }

    .service-detail-fields {
        padding: 22px;
        gap: 16px;
    }

    .service-detail-search-btn {
        width: calc(100% - 44px);
        margin: 0 22px;
    }

    .service-detail-image-wrap img {
        height: 420px;
    }
}

@media (max-width: 480px) {
    .service-listing-grid {
        grid-template-columns: 1fr;
    }

    .service-listing-card {
        height: 280px;
    }

    .service-listing-pagination {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 4px;
    }

    .service-listing-page-btn {
        flex: 0 0 auto;
    }

    .service-detail-tab {
        padding: 20px 8px;
        font-size: 13px;
    }

    .service-detail-field {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 14px;
    }

    .service-detail-field-icon {
        width: 48px;
        height: 48px;
    }

    .service-detail-image-wrap img {
        height: 300px;
    }
}

.service-detail-features-section,
.service-detail-content-section,
.service-detail-split-section {
    background: #fff;
}

.service-detail-features-section {
    padding: 72px 0 24px;
}

.service-detail-features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.service-detail-feature-card {
    text-align: center;
    padding: 12px;
}

.service-detail-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: #fff4f1;
    color: #f2553d;
}

.service-detail-feature-icon i {
    width: 28px;
    height: 28px;
}

.service-detail-feature-card h3 {
    font-size: 24px;
    color: #111;
}

.service-detail-feature-card p {
    margin-top: 14px;
    color: #666;
    line-height: 1.8;
}

.service-detail-content-section {
    padding: 56px 0 36px;
}

.service-detail-content-copy {
    max-width: 1160px;
}

.service-detail-content-copy h2,
.service-detail-split-copy h2,
.fleet-detail-view .section-title {
    font-size: clamp(30px, 4.8vw, 50px);
    line-height: 1.18;
    font-weight: 500;
    color: #111;
}

.service-detail-content-copy p,
.service-detail-split-copy p {
    margin-top: 28px;
    color: #1f1f1f;
    line-height: 1.85;
    font-size: 17px;
}

.service-detail-benefit-list {
    list-style: none;
    display: grid;
    gap: 22px;
    margin-top: 36px;
}

.service-detail-benefit-list li {
    position: relative;
    padding-left: 40px;
    color: #111;
    font-size: 16px;
    line-height: 1.6;
}

.service-detail-benefit-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: #000;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.service-detail-split-section {
    padding: 24px 0 84px;
}

.service-detail-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px;
    align-items: center;
}

.service-detail-split + .service-detail-split {
    margin-top: 72px;
}

.service-detail-split-media img {
    display: block;
    width: 100%;
    height: 550px;
    max-width: 520px;
    object-fit: cover;
}

/* Fleet extra detail sections restored */
.fleet-detail-view .business-class {
    padding: 70px 20px;
    background: #fff;
}

.fleet-detail-view .business-class .container {
    width: min(1280px, 100%);
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.fleet-detail-view .left-content {
    flex: 1;
    min-width: 0;
}

.fleet-detail-view .left-content h1 {
    font-size: clamp(34px, 5.2vw, 58px);
    font-weight: 500;
    margin-bottom: 48px;
}

.fleet-detail-view .car-details h2 {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 500;
    margin-bottom: 14px;
    color: #111;
}

.fleet-detail-view .car-name {
    color: #444;
    font-size: 18px;
    margin-bottom: 28px;
}

.fleet-detail-view .specs {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 17px;
    color: #111;
}

.fleet-detail-view .specs span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fleet-detail-view .car-image {
    margin-top: 52px;
}

.fleet-detail-view .car-image img {
    width: 100%;
    max-width: 700px;
    display: block;
}

.fleet-detail-view .right-content {
    width: 380px;
    max-width: 100%;
}

.fleet-detail-view .price-card {
    background: #e9f0ec;
    padding: 30px;
    border-radius: 8px;
}

.fleet-detail-view .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid #cfd8d3;
    font-size: 18px;
}

.fleet-detail-view .price-row:last-of-type {
    margin-bottom: 26px;
}

.fleet-detail-view .features {
    margin-top: 35px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 24px;
}

.fleet-detail-view .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.fleet-detail-view .features-section {
    padding: 80px 20px;
    background: #fff;
}

.fleet-detail-view .features-section .container {
    width: min(1300px, 100%);
    margin: 0 auto;
    padding: 0;
    display: block;
}

.fleet-detail-view .section-title {
    margin-bottom: 56px;
    font-weight: 500;
    line-height: 1.2;
}

.fleet-detail-view .features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px 42px;
}

.fleet-detail-view .feature-card {
    padding: 10px;
    border-radius: 18px;
    transition: 0.3s ease;
}

.fleet-detail-view .feature-card.active {
    background: #fff;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.fleet-detail-view .feature-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 24px;
}

.fleet-detail-view .feature-card h3 {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 18px;
    line-height: 1.2;
}

.fleet-detail-view .feature-card p {
    font-size: 18px;
    line-height: 1.8;
    color: #222;
}

@media (max-width: 991px) {
    .service-detail-features-grid,
    .fleet-detail-view .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-detail-split,
    .fleet-detail-view .business-class .container {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .service-detail-split-media img {
        height: 420px;
    }

    .fleet-detail-view .right-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .service-detail-features-section {
        padding: 56px 0 12px;
    }

    .service-detail-features-grid,
    .fleet-detail-view .features-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-content-section,
    .service-detail-split-section,
    .fleet-detail-view .business-class,
    .fleet-detail-view .features-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .service-detail-split {
        gap: 28px;
    }

    .service-detail-split + .service-detail-split {
        margin-top: 48px;
    }

    .service-detail-split-media img {
        height: 320px;
    }

    .fleet-detail-view .features {
        grid-template-columns: 1fr;
    }
}

body {
    max-width: 100%;
    overflow-x: hidden;
}

img,
svg,
video,
iframe {
    max-width: 100%;
}

.container {
    width: min(100%, 1200px);
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    display: block;
}
.grid {
    grid-template-columns: repeat(5, minmax(0, 1fr)) auto;
}
.hero-booking-bar.grid.has-flight-field {
    grid-template-columns: repeat(6, minmax(0, 1fr)) auto;
}
.grid-hour {
    grid-template-columns: repeat(5, minmax(0, 1fr)) auto;
}
@media (max-width: 1200px) {
    .hero-shell,
    .trip-benefits-shell,
    .video-story-shell,
    .partners-shell,
    .faq-shell,
    .news-shell,
    .region-shell,
    .comfort-shell,
    .services-shell {
        width: min(100% - 40px, 1200px);
    }

    .hero-booking-bar {
        /* grid-template-columns: repeat(7, minmax(0, 1fr)); */
        gap: 16px;
        border-radius: 28px;
    }

    .hero-booking-action {
        grid-column: 1 / -1;
        width: 100%;
    }

    .trip-stats-banner,
    .video-story-shell,
    .news-header,
    .partners-grid,
    .footer-main {
        gap: 24px;
    }
}

@media (max-width: 992px) {
    .about-banner,
    .contact-banner,
    .services-banner,
    .fleet-page-banner,
    .service-detail-top {
        padding-top: 110px;
    }

    .about-banner h1,
    .contact-banner h1,
    .services-banner h1,
    .fleet-page-banner h1,
    .fleet-detail-hero-copy h1,
    .service-detail-copy h1 {
        font-size: clamp(34px, 6vw, 36px);
    }

    .trip-stats-banner,
    .trip-stats-grid,
    .video-story-shell,
    .region-shell,
    .news-header,
    .contact-form .form-row-contact,
    .comfort-shell {
        /* grid-template-columns: 1fr; */
        flex-direction: column;
        align-items: stretch;
    }

    .partners-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .journey-section,
    .contact-form-section,
    .services-gallery-section,
    .trip-benefits-section,
    .news-section,
    .faq-section,
    .partners-section,
    .region-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .region-gallery {
        max-width: 100%;
    }

    .office-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fleet-detail-layout,
    .service-detail-top-layout {
        grid-template-columns: 1fr;
    }

    .fleet-detail-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .hero-shell,
    .trip-benefits-shell,
    .video-story-shell,
    .partners-shell,
    .faq-shell,
    .news-shell,
    .region-shell,
    .comfort-shell,
    .services-shell,
    .fleet-listing-shell,
    .fleet-detail-shell,
    .service-listing-shell,
    .service-detail-shell {
        width: min(100% - 24px, 1200px);
    }

    .hero-shell {
        padding: 112px 0 36px;
    }

    .hero-inner {
        max-width: 100%;
        padding-top: 40px;
    }

    .hero-title {
        font-size: clamp(36px, 11vw, 48px);
        line-height: 1.08;
    }

    .hero-controls {
        margin-bottom: 18px;
    }

    .hero-booking-bar {
        display: none;
    }

    .hero-pagination {
        margin-top: 18px;
    }

    .journey-heading,
    .trip-benefits-title,
    .faq-title,
    .news-title,
    .region-title,
    .comfort-heading {
        font-size: clamp(28px, 8vw, 38px);
        line-height: 1.15;
    }

    .partners-grid,
    .fleet-page-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .office-grid {
        grid-template-columns: 1fr;
    }

    .contact-form .form-row-contact,
    .footer-main {
        grid-template-columns: minmax(2, 1fr);
    }

    .video-story-copy,
    .video-story-media,
    .region-content,
    .news-card-body,
    .trip-benefit-card,
    .office-card,
    .contact-container,
    .fleet-detail-booking,
    .service-detail-booking {
        min-width: 0;
    }

    .service-detail-fields {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding-left: 14px;
        padding-right: 14px;
    }

    .about-banner,
    .contact-banner,
    .services-banner,
    .fleet-page-banner,
    .service-detail-top {
        padding-top: 94px;
    }

    .about-banner h1,
    .contact-banner h1,
    .services-banner h1,
    .fleet-page-banner h1,
    .fleet-detail-hero-copy h1,
    .service-detail-copy h1 {
        font-size: 30px;
    }

    .hero-title,
    .journey-heading,
    .trip-benefits-title,
    .faq-title,
    .news-title,
    .region-title,
    .comfort-heading {
        font-size: 28px;
    }

    .service-listing-pagination,
    .fleet-page-pagination {
        overflow-x: auto;
        justify-content: center;
        padding-bottom: 4px;
    }

    .service-listing-page-btn,
    .fleet-listing-page-btn,
    .fleet-page-pagination-link,
    .fleet-page-pagination-arrow {
        flex: 0 0 auto;
    }

    .trip-stats-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .footer {
        padding-left: 14px;
        padding-right: 14px;
    }
}
.car-section {
    width: 100%;
    padding: 90px 20px;
}

.car-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* CONTENT */

.car-content {
    width: 100%;
}

.car-heading {
    font-size: 46px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 28px;
    color: #181a1f;
}

.car-text {
    font-size: 16px;
    line-height: 30px;
    color: #181a1f;
    margin-bottom: 28px;
    max-width: 1150px;
}

/* OFFER TITLE */

.offer-title {
    font-size: 28px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 35px;
    color: #181a1f;
}

/* LIST */

.car-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 45px;
}

.car-list li {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 16px;
    line-height: 28px;
    color: #181a1f;
}

/* TICK ICON */

.car-check {
    width: 26px;
    min-width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fceceb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef563f;
}

.car-check svg {
    width: 14px;
    height: 14px;
}

/* BUTTON */

.book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 38px;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    transition: 0.3s ease;
}

.book-btn:hover {
    background: #ef563f;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
    .car-section {
        padding: 70px 20px;
    }

    .car-heading {
        font-size: 38px;
    }

    .car-text {
        font-size: 15px;
        line-height: 28px;
    }

    .offer-title {
        font-size: 24px;
    }

    .car-list li {
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .car-section {
        padding: 55px 16px;
    }

    .car-heading {
        font-size: 30px;
        line-height: 1.4;
    }

    .car-text {
        font-size: 15px;
        line-height: 27px;
        margin-bottom: 22px;
    }

    .offer-title {
        font-size: 22px;
        margin-bottom: 28px;
    }

    .car-list {
        gap: 18px;
        margin-bottom: 35px;
    }

    .car-list li {
        gap: 12px;
        font-size: 15px;
        line-height: 1.6;
        align-items: flex-start;
    }

    .car-check {
        width: 24px;
        min-width: 24px;
        height: 24px;
    }

    .car-check svg {
        width: 12px;
        height: 12px;
    }

    .book-btn {
        width: 100%;
        padding: 15px 20px;
        font-size: 15px;
    }
}
.business-class-section {
    width: 100%;
    padding: 90px 20px;
}

.business-container {
    max-width: 1320px;
    margin: 0 auto;
}

/* HEADING */

.business-heading-wrap {
    margin-bottom: 55px;
}

.business-heading {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 600;
    color: #111111;
}

/* GRID */

.business-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */

.business-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s ease;
}

.business-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* IMAGE */

.business-image {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #f8f8f8;
}

.business-image img {
    width: 100%;
    max-width: 280px;
    object-fit: contain;
}

/* CONTENT */

.business-content {
    padding: 28px;
}

.business-title {
    font-size: 24px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 14px;
}

.business-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 20px;
}

.business-brand {
    font-size: 16px;
    font-weight: 600;
    color: #ef563f;
    margin-bottom: 24px;
}

/* SPECS */

.business-specs {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.business-spec {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #111111;
}

.business-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.business-icon svg {
    width: 16px;
    height: 16px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
    .business-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .business-heading {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .business-class-section {
        padding: 70px 16px;
    }

    .business-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .business-heading {
        font-size: 34px;
    }

    .business-content {
        padding: 22px;
    }

    .business-title {
        font-size: 22px;
    }

    .business-desc {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .business-heading {
        font-size: 28px;
    }

    .business-image {
        height: 180px;
    }

    .business-specs {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
}

/* Fleet detail showcase refresh */
.fleet-detail-features-showcase,
.fleet-detail-booking-showcase {
    background: #fff;
}

.fleet-detail-features-showcase {
    padding: 78px 0 56px;
}

.fleet-detail-showcase-title {
    font-size: clamp(30px, 4.5vw, 48px);
    line-height: 1.16;
    font-weight: 500;
    color: #111;
    margin-bottom: 48px;
}

.fleet-detail-features-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 54px 48px;
}

.fleet-detail-showcase-card {
    max-width: 320px;
}

.fleet-detail-showcase-card img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    margin-bottom: 20px;
}

.fleet-detail-showcase-card h3 {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 500;
    color: #111;
    margin-bottom: 14px;
}

.fleet-detail-showcase-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #303030;
}

.fleet-detail-booking-showcase {
    padding: 26px 0 92px;
}

.fleet-detail-booking-showcase-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 52px;
    align-items: start;
}

.fleet-detail-booking-copy h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    font-weight: 500;
    color: #111;
    margin-bottom: 36px;
}

.fleet-detail-booking-vehicle h3 {
    font-size: 19px;
    line-height: 1.35;
    font-weight: 500;
    color: #111;
}

.fleet-detail-booking-vehicle p {
    max-width: 420px;
    margin-top: 12px;
    color: #333;
    font-size: 14px;
    line-height: 1.8;
}

.fleet-detail-booking-meta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.fleet-detail-booking-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #111;
    font-size: 14px;
}

.fleet-detail-booking-meta svg {
    width: 16px;
    height: 16px;
    color: #111;
}

.fleet-detail-booking-image {
    margin-top: 34px;
}

.fleet-detail-booking-image img {
    width: min(100%, 640px);
    display: block;
}

.fleet-detail-booking-panel {
    padding-top: 50px;
}

.fleet-detail-pricing-card {
    background: #edf6f3;
    border-radius: 4px;
    padding: 18px 18px 16px;
}

.fleet-detail-pricing-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 0;
    border-bottom: 1px solid #cfded8;
    color: #111;
    font-size: 14px;
    line-height: 1.5;
}

.fleet-detail-pricing-row strong {
    white-space: nowrap;
    font-weight: 500;
}

/* .fleet-detail-pricing-cta {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 18px;
    border-radius: 4px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}
.fleet-detail-pricing-cta {
    transition: all 0.3s ease;
} */
.fleet-detail-pricing-cta {
    position: relative;
    margin-top: 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    width: 100%;
    padding: 15px 18px;

    border: 0;
    border-radius: 999px; /* 👈 same pill shape */

    color: #fff;
    text-decoration: none;

    font-size: 18px;
    font-weight: 600;

    cursor: pointer;

    box-shadow:
        0 2px 8px 0 rgba(6, 10, 13, 0.12),
        inset 4px 4px 8px rgba(0, 0, 0, 0.08);

    background:
        radial-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0) 90%),
        radial-gradient(
            circle at 80% 200%,
            rgba(255, 255, 255, 0.3),
            rgba(255, 255, 255, 0) 80%
        ),
        linear-gradient(rgba(15, 19, 25, 0.35));

    background-color: rgba(0, 0, 0, 0.35);

    transition: all 0.3s ease;
}
.fleet-detail-pricing-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;

    border: 1px solid rgba(0, 0, 0, 0);

    background: linear-gradient(
            -18deg,
            rgba(0, 0, 0, 0.8) 20%,
            rgba(0, 0, 0, 0.4) 30%,
            rgba(0, 0, 0, 0.05) 40%,
            rgba(0, 0, 0, 0.05) 60%,
            rgba(0, 0, 0, 0.4) 70%,
            rgba(0, 0, 0, 0.8) 90%
        )
        border-box;

    -webkit-mask:
        radial-gradient(black) border-box,
        linear-gradient(black) padding-box;

    mask:
        radial-gradient(black) border-box,
        linear-gradient(black) padding-box;

    -webkit-mask-composite: source-out;
    mask-composite: subtract;
}

.fleet-detail-pricing-cta:hover {
    background-color: #f0f0f0;

    color: #fff;
    transform: translateY(-6px);

    box-shadow: 0 18px 36px rgba(18, 18, 18, 0.08);
}
.fleet-detail-pricing-cta svg {
    width: 16px;
    height: 16px;
}

.fleet-detail-panel-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
    margin-top: 20px;
}

.fleet-detail-panel-benefits span {
    position: relative;
    padding-left: 18px;
    color: #222;
    font-size: 12px;
    line-height: 1.6;
}

.fleet-detail-panel-benefits span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #111;
}

@media (max-width: 991px) {
    /* .fleet-detail-features-showcase-grid,
  .fleet-detail-booking-showcase-grid {
    grid-template-columns: 1fr 1fr;
  } */

    .fleet-detail-booking-showcase-grid {
        align-items: end;
    }
}

@media (max-width: 768px) {
    .fleet-detail-features-showcase {
        padding: 58px 0 38px;
    }

    .fleet-detail-features-showcase-grid,
    .fleet-detail-booking-showcase-grid,
    .fleet-detail-panel-benefits {
        grid-template-columns: 1fr;
    }

    .fleet-detail-showcase-title,
    .fleet-detail-booking-copy h2 {
        margin-bottom: 28px;
    }

    .fleet-detail-showcase-card {
        max-width: none;
    }

    .fleet-detail-booking-showcase {
        padding: 18px 0 64px;
    }

    .fleet-detail-booking-panel {
        padding-top: 0;
    }
}
.vehicle-details-section {
    width: 100%;
    background: #f5f5f5;
    padding: 30px 20px;
}

.vehicle-details-container {
    max-width: 1280px;
    margin: 0 auto;
}

.vehicle-details-title {
    font-size: 44px;
    line-height: 1.1;
    font-weight: 500;
    color: #111827;
    margin-bottom: 20px;
}

.vehicle-details-text {
    font-size: 16px;
    line-height: 1.9;
    color: #1f2937;
    margin-bottom: 20px;
    max-width: 1200px;
}

.vehicle-offer {
    margin-top: 25px;
}

.vehicle-offer-title {
    font-size: 30px;
    font-weight: 500;
    color: #111827;
    margin-bottom: 35px;
}

.vehicle-offer-list {
    list-style: none;
    padding: 0;
    margin: 0 0 45px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.vehicle-offer-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    color: #111827;
    line-height: 1.5;
}

.offer-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.vehicle-book-btn {
    width: 320px;
    height: 58px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s ease;
}

.vehicle-book-btn:hover {
    background: #111;
    transform: translateY(-2px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .vehicle-details-section {
        padding: 20px 20px;
    }

    .vehicle-details-title {
        font-size: 46px;
    }

    .vehicle-details-text {
        font-size: 18px;
        line-height: 1.8;
    }

    .vehicle-offer-title {
        font-size: 38px;
    }

    .vehicle-offer-list li {
        font-size: 20px;
    }

    .vehicle-book-btn {
        width: 260px;
        height: 70px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .vehicle-details-section {
        padding: 60px 18px;
    }

    .vehicle-details-title {
        font-size: 36px;
        margin-bottom: 24px;
    }

    .vehicle-details-text {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 22px;
    }

    .vehicle-offer {
        margin-top: 40px;
    }

    .vehicle-offer-title {
        font-size: 30px;
        margin-bottom: 24px;
    }

    .vehicle-offer-list {
        gap: 18px;
        margin-bottom: 35px;
    }

    .vehicle-offer-list li {
        font-size: 17px;
        gap: 12px;
        align-items: flex-start;
    }

    .offer-icon {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 12px;
    }

    .vehicle-book-btn {
        width: 100%;
        max-width: 280px;
        height: 62px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .vehicle-details-title {
        font-size: 30px;
    }

    .vehicle-details-text {
        font-size: 15px;
    }

    .vehicle-offer-title {
        font-size: 26px;
    }

    .vehicle-offer-list li {
        font-size: 15px;
    }

    .vehicle-book-btn {
        width: 100%;
        max-width: 100%;
        height: 58px;
        font-size: 16px;
    }
}

.business-class-section {
    width: 100%;
    /* background: #f5f5f5; */
    padding: 70px 20px 90px;
}

.business-class-container {
    max-width: 1240px;
    margin: 0 auto;
}

.business-class-heading {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 500;
    color: #000;
    margin-bottom: 55px;
    letter-spacing: -1px;
}

.business-class-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    /* align-items: stretch; */
}

.business-card {
    background: #f7f7f7;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    padding: 22px 22px 18px;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.business-card:hover {
    transform: translateY(-4px);
}

a.business-card-link {
    color: inherit;
    text-decoration: none;
}

.business-card-title {
    font-size: 21px;
    line-height: 1.2;
    font-weight: 500;
    color: #000;
    margin-bottom: 16px;
}

.business-card-text {
    font-size: 15px;
    line-height: 1.9;
    color: #111827;
    max-width: 320px;
    min-height: 82px;
}

.business-card-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px 0 34px;

    flex: 1;
}

.business-card-image img {
    width: 100%;
    max-width: 320px;
    object-fit: contain;
    display: block;
}

.business-card-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.business-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.business-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: #efefef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
}

.business-info span {
    font-size: 16px;
    font-weight: 400;
    color: #111827;
}

@media (max-width: 1100px) {
    .business-class-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .business-class-heading {
        font-size: 50px;
    }
}

@media (max-width: 768px) {
    .business-class-section {
        padding: 60px 16px 70px;
    }

    .business-class-heading {
        font-size: 38px;
        margin-bottom: 35px;
    }

    .business-class-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .business-card {
        padding: 20px;
    }

    .business-card-title {
        font-size: 20px;
    }

    .business-card-text {
        font-size: 14px;
        line-height: 1.8;
        min-height: auto;
    }

    .business-card-image {
        margin: 18px 0 26px;
    }

    .business-card-image img {
        max-width: 250px;
    }

    .business-info span {
        font-size: 15px;
    }

    .business-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }
}

@media (max-width: 480px) {
    .business-class-heading {
        font-size: 30px;
    }

    .business-card-footer {
        gap: 12px;
        flex-direction: column;
        align-items: baseline;
    }

    .business-info {
        gap: 10px;
    }

    .business-info span {
        font-size: 14px;
    }

    .business-card-image img {
        max-width: 220px;
    }
}
.signup-section {
    min-height: 100vh;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.signup-card {
    width: 100%;
    max-width: 420px;
    /* background: #fff; */
    /* padding: 40px; */
    border-radius: 12px;
    margin-top: 100px;
}

.signup-card h1 {
    text-align: center;
    font-size: 52px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
}

.subtitle {
    text-align: center;
    font-size: 16px;
    color: #000;
    margin-bottom: 30px;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.signup-alert {
    margin-bottom: 12px;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 13px;
    background: #eef8ee;
    color: #1f6b1f;
}

.signup-alert.is-error {
    background: #fdecec;
    color: #a11919;
}

.signup-alert[hidden] {
    display: none !important;
}
.signin-alert {
    margin-bottom: 12px;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 13px;
}

/* success */
.signin-alert-success {
    background: #eef8ee;
    color: #1f6b1f;
}

/* error */
.signin-alert-error {
    background: #fdecec;
    color: #a11919;
}
.signup-verify-block {
    margin-top: 4px;
}

.signup-verify-label {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 600;
    color: #111;
}

.signup-verify-hint {
    margin: 8px 0 0;
    font-size: 12px;
    color: #666;
}

.signup-channel-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.signup-login-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.signup-login-field {
    margin-top: 4px;
}

.signup-social-notice {
    margin-top: 8px;
    padding: 12px;
    border-radius: 6px;
    background: #ececec;
}
.signup-channel-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    padding: 0 18px;
    border: 1px solid #000;
    border-radius: 999px;
    background: #fff;
    color: #000;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;

    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.signup-channel-tab:hover {
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.15),
        0 2px 6px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.signup-channel-tab:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.signup-channel-tab:hover {
    transform: translateY(-1px);
}

.signup-channel-tab.is-active {
    border-radius: 999px;
    box-shadow:
        0 2px 8px 0 rgba(6, 10, 13, 0.12),
        inset 4px 4px 8px rgba(0, 0, 0, 0.08);

    background:
        radial-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0) 90%),
        radial-gradient(
            circle at 80% 200%,
            rgba(255, 255, 255, 0.3),
            rgba(255, 255, 255, 0) 80%
        ),
        linear-gradient(rgba(15, 19, 25, 0.35));

    background-color: rgba(0, 0, 0, 0.35);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
    color: #fff;
}

a.signup-channel-tab.signup-social-link {
    text-decoration: none;
}

a.signup-channel-tab.signup-social-link:hover,
a.signup-channel-tab.signup-social-link:focus {
    /* color: #fff; */
    text-decoration: none;
}
.signup-channel-tab.is-active::before {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;

    border: 1px solid rgba(0, 0, 0, 0);

    background: linear-gradient(
            -18deg,
            rgba(0, 0, 0, 0.9) 20%,
            rgba(0, 0, 0, 0.6) 30%,
            rgba(0, 0, 0, 0.2) 40%,
            rgba(0, 0, 0, 0.2) 60%,
            rgba(0, 0, 0, 0.6) 70%,
            rgba(0, 0, 0, 0.9) 90%
        )
        border-box;

    -webkit-mask:
        radial-gradient(black) border-box,
        linear-gradient(black) padding-box;
    -webkit-mask-composite: source-out;

    mask:
        radial-gradient(black) border-box,
        linear-gradient(black) padding-box;
    mask-composite: subtract;
}

.signup-channel-tab.is-active:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.signup-send-otp-btn {
    margin-top: 4px;
}

.otp-sent-note {
    margin: 0 0 12px;
    font-size: 13px;
    color: #444;
}

.signup-switch-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
}

.signup-link-btn {
    border: 0;
    background: transparent;
    padding: 0;
    font-size: 12px;
    color: #111;
    text-decoration: underline;
    cursor: pointer;
}

.signup-form input {
    width: 100%;
    height: 52px;
    border: none;
    background: #ececec;
    border-radius: 4px;
    padding: 0 15px;
    font-size: 14px;
    outline: none;
}

.input-group {
    position: relative;
    margin-bottom: 14px;
}

.input-group label {
    position: absolute;
    top: -8px;
    left: 14px;
    /* background: #fff; same as card background */
    padding: 0 8px;
    font-size: 13px;
    color: #666;
    z-index: 2;
    line-height: 1;
}
.otp-wrapper {
    margin-top: 15px;
}

.otp-wrapper label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    opacity: 0.8;
}

.otp-boxes {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.otp-input {
    width: 45px;
    height: 50px;
    text-align: center;
    font-size: 20px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    outline: none;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

.otp-input:focus {
    border-color: #000;
    transform: scale(1.05);
}
.input-group input {
    width: 100%;
    height: 58px;
    border: 2px solid #222;
    border-radius: 4px;
    background: #fff;
    padding: 0 16px;
    font-size: 15px;
    color: #111;
    outline: none;
}

.input-group input:focus {
    border-color: #000;
}

.create-btn {
    position: relative;
    height: 52px;
    padding: 0 24px;
    border: 1px solid #000;
    border-radius: 999px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #fff;

    box-shadow:
        0 2px 8px 0 rgba(6, 10, 13, 0.12),
        inset 4px 4px 8px rgba(0, 0, 0, 0.08);
    background:
        radial-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0) 90%),
        radial-gradient(
            circle at 80% 200%,
            rgba(255, 255, 255, 0.3),
            rgba(255, 255, 255, 0) 80%
        ),
        linear-gradient(rgba(15, 19, 25, 0.35));
    background-color: rgba(0, 0, 0, 0.35);
    color: #fff;
    transition: all 0.3s ease;
}

.create-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    border: 1px solid rgba(0, 0, 0, 0);
    background: linear-gradient(
            -18deg,
            rgba(255, 255, 255, 0.8) 20%,
            rgba(255, 255, 255, 0.4) 30%,
            rgba(255, 255, 255, 0.05) 40%,
            rgba(255, 255, 255, 0.05) 60%,
            rgba(255, 255, 255, 0.4) 70%,
            rgba(255, 255, 255, 0.8) 90%
        )
        border-box;
    -webkit-mask:
        radial-gradient(black) border-box,
        linear-gradient(black) padding-box;
    mask:
        radial-gradient(black) border-box,
        linear-gradient(black) padding-box;
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
}

.create-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.divider {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #ddd;
}

.divider span {
    margin: 0 15px;
    font-size: 12px;
    color: #666;
}

.social-btn {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 999px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-btn span {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.google {
    background: #fff;
    border: 1px solid #ddd;
    color: #111;
}

a.social-btn.google,
.signup-google-btn,
.booking-auth-btn-google {
    text-decoration: none;
    justify-content: center;
}

a.social-btn.google:hover,
.signup-google-btn:hover {
    /* background: #f0f0f0; */
    transform: translateY(-2px);
}

.signup-google-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

.signup-social-subhint {
    margin-top: 12px;
}

.booking-auth-btn-google {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    background: #fff;
    color: #111;
    border: 1px solid #ddd;
}

.booking-auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
    color: #777;
    font-size: 12px;
}

.booking-auth-divider::before,
.booking-auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e5e5e5;
}

.facebook {
    background: #3b6fe0;
    color: #fff;
}

.apple {
    background:
        radial-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0) 90%),
        radial-gradient(
            circle at 80% 200%,
            rgba(255, 255, 255, 0.3),
            rgba(255, 255, 255, 0) 80%
        ),
        linear-gradient(rgba(15, 19, 25, 0.35));
    background-color: rgba(0, 0, 0, 0.35);
    color: #fff;
}

.google:hover {
    background:
        radial-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0) 90%),
        radial-gradient(
            circle at 80% 200%,
            rgba(255, 255, 255, 0.3),
            rgba(255, 255, 255, 0) 80%
        ),
        linear-gradient(rgba(15, 19, 25, 0.35));
    background-color: rgba(0, 0, 0, 0.35);
    color: white;
}

/* Facebook */
.facebook:hover {
    background: #1c1c1c;
}

/* Apple */
.apple:hover {
    /* background: #1a1a1a; */
    transform: translateY(-6px);

    box-shadow: 0 18px 36px rgba(18, 18, 18, 0.08);
}
.login-link {
    text-align: center;
    margin-top: 8px;
    font-size: 13px;
    color: #333;
}
.login-link a {
    color: #111;
    text-decoration: none;
    font-weight: 500;
}

/* ================= MOBILE ================= */

@media (max-width: 576px) {
    .signup-card {
        padding: 30px 20px;
    }

    .signup-card h1 {
        font-size: 32px;
    }

    .subtitle {
        font-size: 12px;
    }

    .signup-form input,
    .create-btn,
    .social-btn {
        height: 48px;
    }
}
.signin-section {
    min-height: 100vh;
    /* background: #f5f5f5; */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    margin-top: 80px;
}

.signin-card {
    width: 100%;
    max-width: 420px;
}

.signin-title {
    text-align: center;
    font-size: 52px;
    font-weight: 500;
    color: #000;
    /* margin-bottom: 12px; */
}

.signin-subtitle {
    text-align: center;
    font-size: 16px;
    color: #000;
    margin-bottom: 50px;
}

/* Floating Email Field */

.floating-field {
    position: relative;
    margin-bottom: 24px;
}

.floating-field label {
    position: absolute;
    top: -10px;
    left: 14px;
    background: #fff;
    padding: 0 10px;
    font-size: 15px;
    color: #555;
}

.floating-field input {
    width: 100%;
    height: 58px;
    border: 1.5px solid #222;
    border-radius: 6px;
    background: transparent;
    padding: 0 16px;
    font-size: 15px;
    color: #181a1f;
    outline: none;
}

/* Password */

.password-field {
    width: 100%;
    height: 58px;
    border: none;
    border-radius: 6px;
    background: #ececec;
    padding: 0 16px;
    font-size: 16px;
    outline: none;
    margin-bottom: 20px;
}

/* Options */

.signin-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.remember-box {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
}

.remember-box input {
    width: 14px;
    height: 14px;
}

.forgot-link {
    text-decoration: none;
    color: #111;
    font-size: 14px;
}

/* Sign In Button */

.signin-btn {
    width: 100%;
    height: 58px;
    border: none;
    border-radius: 999px;
    background: #000;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;

    box-shadow:
        0 2px 8px 0 rgba(6, 10, 13, 0.12),
        inset 4px 4px 8px rgba(0, 0, 0, 0.08);
    background:
        radial-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0) 90%),
        radial-gradient(
            circle at 80% 200%,
            rgba(255, 255, 255, 0.3),
            rgba(255, 255, 255, 0) 80%
        ),
        linear-gradient(rgba(15, 19, 25, 0.35));
    background-color: rgba(0, 0, 0, 0.35);
    color: #fff;
    transition: all 0.3s ease;
}
.signin-btn ::before {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;

    border: 1px solid rgba(0, 0, 0, 0);

    background: linear-gradient(
            -18deg,
            rgba(0, 0, 0, 0.8) 20%,
            rgba(0, 0, 0, 0.4) 30%,
            rgba(0, 0, 0, 0.05) 40%,
            rgba(0, 0, 0, 0.05) 60%,
            rgba(0, 0, 0, 0.4) 70%,
            rgba(0, 0, 0, 0.8) 90%
        )
        border-box;

    -webkit-mask:
        radial-gradient(black) border-box,
        linear-gradient(black) padding-box;
    -webkit-mask-composite: source-out;

    mask:
        radial-gradient(black) border-box,
        linear-gradient(black) padding-box;
    mask-composite: subtract;
}

.signin-btn:hover {
    transform: translateY(-6px);
}
/* Divider */

.divider {
    display: flex;
    align-items: center;
    margin: 40px 0 25px;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #d8d8d8;
}

.divider span {
    margin: 0 18px;
    font-size: 15px;
    color: #000;
}

/* Social Buttons */

.social-btn {
    width: 100%;
    height: 58px;
    border-radius: 999px;
    border: 1px solid #000;
    cursor: pointer;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Google */
.google-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 16px rgba(0, 0, 0, 0.18),
        0 2px 6px rgba(0, 0, 0, 0.12);
}

/* Facebook */
.facebook-btn:hover {
    background: #1c1c1c;
}

/* Apple */
.apple-btn:hover {
    background: #4375e8;
}

.social-icon {
    font-size: 20px;
}

.google-btn {
    background: #fff;
    border: 1px solid #ddd;
    color: #111;

    transition: all 0.25s ease;
}

.facebook-btn {
    background: #4375e8;
    color: #fff;
}

.apple-btn {
    background: #1c1c1c;
    color: #fff;
}

/* Create Account */

.create-account {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    color: #111;
}

.create-account a {
    color: #111;
    text-decoration: none;
    font-weight: 500;
}

.text:hover {
    color: #d9462d;
}

/* Tablet */

@media (max-width: 768px) {
    .signin-title {
        font-size: 48px;
    }

    .floating-field input {
        height: 58px;
        font-size: 15px;
    }

    .signin-btn {
        font-size: 18px;
    }
}

/* Mobile */

@media (max-width: 480px) {
    .signin-section {
        padding: 30px 16px;
    }

    .signin-title {
        font-size: 40px;
    }

    .signin-subtitle {
        font-size: 13px;
        margin-bottom: 40px;
    }

    .floating-field input {
        height: 58px;
        font-size: 15px;
    }

    .password-field,
    .signin-btn,
    .social-btn {
        height: 52px;
    }

    .signin-options {
        flex-direction: row;
        gap: 10px;
    }

    .forgot-link,
    .remember-box {
        font-size: 13px;
    }
}

/* 
.booking-modal-overlay{
position:fixed;
inset:0;
background:rgba(0,0,0,.75);
display:flex;
align-items:center;
justify-content:center;
z-index:99999;
opacity:0;
visibility:hidden;
transition:.3s;
}

.booking-modal-overlay.show{
opacity:1;
visibility:visible;
}

.booking-modal{
width:min(1200px,95%);
height:90vh;
background:#fff;
border-radius:16px;
overflow:hidden;
display:flex;
flex-direction:column;
position:relative;
}

.modal-close{
position:absolute;
right:20px;
top:20px;
border:none;
background:none;
font-size:24px;
cursor:pointer;
}

.booking-header{
padding:30px;
text-align:center;
border-bottom:1px solid #eee;
}

.booking-body{
flex:1;
display:flex;
overflow:hidden;
}

.booking-sidebar{
width:250px;
border-right:1px solid #eee;
padding:20px;
display:flex;
flex-direction:column;
gap:15px;
}

.step-item{
padding:14px;
border-radius:10px;
cursor:pointer;
background:#f8f8f8;
}

.step-item.active{
background:#ef563f;
color:#fff;
}

.booking-content{
flex:1;
overflow-y:auto;
padding:25px;
}

.step-panel{
display:none;
}

.step-panel.active{
display:block;
}

.filters{
display:flex;
gap:10px;
flex-wrap:wrap;
margin-bottom:25px;
}

.filter-btn{
padding:10px 18px;
border:1px solid #ddd;
background:#fff;
cursor:pointer;
}

.filter-btn.active{
background:#ef563f;
color:#fff;
}

.vehicle-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.vehicle-card{
border:2px solid #eee;
padding:20px;
border-radius:12px;
display:flex;
align-items:center;
gap:15px;
cursor:pointer;
}

.vehicle-card.selected{
border-color:#ef563f;
}

.price{
background:#ef563f;
color:#fff;
padding:6px 12px;
border-radius:6px;
margin-left:auto;
}

.datetime-layout{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
}

.slots{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:10px;
margin-bottom:20px;
}

.slot{
padding:12px;
border:1px solid #ddd;
background:#fff;
cursor:pointer;
}

.slot.active{
background:#ef563f;
color:#fff;
}

.form-grid{
display:grid;
gap:20px;
}

.form-grid input,
.form-grid textarea,
.form-grid select{
width:100%;
padding:14px;
border:1px solid #ddd;
border-radius:8px;
}

.phone-wrap{
display:flex;
}

.summary-box{
text-align:center;
}

.booking-footer{
padding:20px;
border-top:1px solid #eee;
display:flex;
justify-content:flex-end;
gap:15px;
}

.next-btn{
background:#ef563f;
color:#fff;
border:none;
padding:14px 30px;
border-radius:8px;
}

@media(max-width:991px){

.booking-body{
flex-direction:column;
}

.booking-sidebar{
width:100%;
flex-direction:row;
overflow:auto;
}

.datetime-layout{
grid-template-columns:1fr;
}

.vehicle-grid{
grid-template-columns:1fr;
}

}

@media(max-width:768px){

.booking-modal{
width:100%;
height:100vh;
border-radius:0;
}

.booking-footer{
flex-direction:column;
}

.booking-footer button{
width:100%;
}

} */

.open-modal-btn {
    background: #ef563f;
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}
.open-modal-btn:hover {
    background: #d44a33;
}

/* ===================== OVERLAY ===================== */
.bm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    margin-top: 80px;
    pointer-events: none;
    transition: opacity 0.3s;
}
.bm-overlay.show {
    opacity: 1;
    pointer-events: all;
}

@media (max-width: 768px) {
    .bm-overlay.show {
        margin-top: 90px;
    }
}

/* ===================== MODAL SHELL ===================== */
.bm-modal {
    background: #fff;
    width: 100%;
    max-width: 1100px;
    height: 90vh;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.3s;
    position: relative;
}
.bm-overlay.show .bm-modal {
    transform: scale(1) translateY(0);
}

/* ===================== MODAL HEADER ===================== */
.bm-header {
    text-align: center;
    padding: 32px 32px 20px;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
    position: relative;
}
.bm-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}
.bm-header p {
    color: #666;
    font-size: 14px;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}
.bm-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #f5f5f5;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    z-index: 99;
    cursor: pointer;
    font-size: 16px;
    color: #555;
    transition:
        background 0.2s,
        color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bm-close:hover {
    background: #ef563f;
    color: #fff;
}

/* ===================== MODAL BODY ===================== */
.bm-body {
    display: flex;
    flex: 1;
    overflow: hidden;
    min-height: 0;
}

/* ===================== SIDEBAR ===================== */
.bm-sidebar {
    width: 190px;
    flex-shrink: 0;
    background: #fff;
    padding: 24px 16px;
    border-right: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.bm-step-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 13.5px;
    font-weight: 500;
    color: #888;
    transition: all 0.2s;
    user-select: none;
    pointer-events: none; /* disabled by default */
}
.bm-step-item .step-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #aaa;
    flex-shrink: 0;
    transition: all 0.2s;
    color: #666;
}
.bm-step-item.active {
    color: #ef563f;
    pointer-events: all;
}
.bm-step-item.active .step-icon {
    background: #ef563f;
    color: #fff;
}
.bm-step-item.completed {
    color: #333;
    pointer-events: all;
    cursor: pointer;
}
.bm-step-item.completed .step-icon {
    background: #e8f5e9;
    color: #43a047;
}
.bm-step-item.completed:hover {
    background: #f9f9f9;
}

/* ===================== CONTENT AREA ===================== */
.bm-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 28px 32px;
    min-width: 0;
}

/* ===================== STEP PANELS ===================== */
.step-panel {
    display: none;
}
.step-panel.active {
    display: block;
}

/* ===================== STEP 1: SERVICE ===================== */
.step-panel h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

/* Filter Buttons */
.filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.filter-btn {
    padding: 8px 20px;
    border: 1.5px solid #ddd;
    background: #fff;
    border-radius: 24px;
    font-size: 13.5px;
    font-weight: 500;
    cursor: pointer;
    color: #555;
    transition: all 0.18s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.filter-btn:hover {
    border-color: #ef563f;
    color: #ef563f;
}
.filter-btn.active {
    background: #ef563f;
    border-color: #ef563f;
    color: #fff;
}
.filter-btn.active .fa-check {
    display: inline-block;
}
.filter-btn .fa-check {
    display: none;
    font-size: 11px;
}

/* Vehicle Grid */
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.vehicle-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 1.5px solid #e8e8e8;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    background: #fff;
}
.vehicle-card:hover {
    border-color: #ef563f;
    box-shadow: 0 2px 12px rgba(239, 86, 63, 0.1);
}
.vehicle-card.selected {
    border-color: #ef563f;
    background: #fff8f7;
    box-shadow: 0 2px 16px rgba(239, 86, 63, 0.15);
}
.vehicle-thumb {
    width: 52px;
    height: 52px;
    background: #f5f5f5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 22px;
    color: #bbb;
}
.vehicle-info {
    flex: 1;
    min-width: 0;
}
.vehicle-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}
.vehicle-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12.5px;
    color: #888;
}
.vehicle-meta .v-duration {
}
.vehicle-meta .v-price {
    background: #ef563f;
    color: #fff;
    padding: 2px 9px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 12px;
}

/* ===================== STEP 2: DATE & TIME ===================== */
.datetime-layout {
    display: flex;
    gap: 20px;
}

/* Calendar */
.calendar-box {
    flex: 0 0 auto;
}
.cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.cal-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
}
.cal-nav {
    background: none;
    border: 1.5px solid #e0e0e0;
    width: 30px;
    height: 30px;
    border-radius: 7px;
    cursor: pointer;
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
}
.cal-nav:hover {
    border-color: #ef563f;
    color: #ef563f;
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 40px);
    gap: 2px;
}
.cal-day-name {
    text-align: center;
    font-size: 11.5px;
    font-weight: 700;
    color: #aaa;
    padding: 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.cal-day {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 13.5px;
    cursor: pointer;
    transition: all 0.15s;
    color: #333;
    font-weight: 500;
}
.cal-day:hover:not(.disabled):not(.empty) {
    background: #fff0ee;
    color: #ef563f;
}
.cal-day.selected {
    background: #ef563f;
    color: #fff !important;
    font-weight: 700;
}
.cal-day.disabled {
    color: #ccc;
    cursor: default;
}
.cal-day.today {
    font-weight: 700;
    color: #ef563f;
}
.cal-day.other-month {
    color: #ccc;
    cursor: default;
}
.cal-day.empty {
    cursor: default;
}

/* Time Slots */
.slot-box {
    flex: 1;
    min-width: 0;
    border: 1.5px solid #e8e8e8;
    border-radius: 12px;
    padding: 16px;
    max-height: 400px;
    overflow-y: auto;
}
.slot-group-title {
    font-size: 13px;
    font-weight: 700;
    color: #888;
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.slot-group-title:not(:first-child) {
    margin-top: 16px;
}
.slots-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 8px;
}
.slot-btn {
    padding: 9px 6px;
    border: 1.5px solid #e8e8e8;
    border-radius: 8px;
    background: #fff;
    font-size: 12px;
    cursor: pointer;
    color: #444;
    text-align: center;
    transition: all 0.15s;
    font-weight: 500;
    white-space: nowrap;
}
.slot-btn:hover {
    border-color: #ef563f;
    color: #ef563f;
}
.slot-btn.selected {
    background: #ef563f;
    border-color: #ef563f;
    color: #fff;
}

/* ===================== STEP 3: BASIC DETAILS ===================== */
.form-section-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}
.form-field {
    margin-bottom: 18px;
}
.form-field label {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: #555;
    /* margin-bottom: 6px; */
    /* text-align: right; */
}
.form-field label span {
    color: #ef563f;
    margin-left: 2px;
}
.form-field input,
.form-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    color: #1a1a1a;
    outline: none;
    transition: border-color 0.15s;
    background: #fff;
}
.form-field input:focus,
.form-field textarea:focus {
    border-color: #ef563f;
}
.form-field input.error,
.form-field textarea.error {
    border-color: #ef563f;
    background: #fff8f7;
}
.form-field textarea {
    resize: vertical;
    min-height: 80px;
}

.phone-wrap {
    display: flex;
    gap: 0;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.15s;
}
.phone-wrap:focus-within {
    border-color: #ef563f;
}
.phone-wrap.error {
    border-color: #ef563f;
    background: #fff8f7;
}

.country-select-wrap {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 10px;
    background: #f8f8f8;
    border-right: 1.5px solid #e0e0e0;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}
.country-flag {
    font-size: 18px;
}
.country-code-label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}
.country-chevron {
    font-size: 10px;
    color: #999;
}

.country-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 100;
    min-width: 220px;
    max-height: 220px;
    overflow-y: auto;
    display: none;
}
.country-dropdown.open {
    display: block;
}
.country-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.1s;
}
.country-option:hover {
    background: #f5f5f5;
}
.country-option .opt-flag {
    font-size: 18px;
}
.country-option .opt-name {
    flex: 1;
    color: #333;
}
.country-option .opt-code {
    color: #888;
    font-size: 12px;
}

.phone-input {
    flex: 1;
    border: none !important;
    outline: none !important;
    padding: 12px 14px !important;
    font-size: 14px;
    color: #1a1a1a;
    background: transparent;
}

/* ===================== STEP 4: SUMMARY ===================== */
.summary-top {
    text-align: center;
    margin-bottom: 24px;
}
.summary-illustration {
    width: 80px;
    height: 80px;
    margin: 0 auto 12px;
}
.summary-illustration svg {
    width: 100%;
    height: 100%;
}
.summary-top h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}
.summary-top p {
    color: #888;
    font-size: 13.5px;
    margin-top: 4px;
}

.summary-card {
    border: 1.5px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
}
.summary-customer {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
}
.summary-customer-label {
    font-size: 11.5px;
    color: #aaa;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.summary-customer-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 2px;
}

.summary-row {
    display: flex;
    border-bottom: 1px solid #f0f0f0;
}
.summary-row:last-child {
    border-bottom: none;
}
.summary-cell {
    flex: 1;
    padding: 14px 20px;
    border-right: 1px solid #f0f0f0;
}
.summary-cell:last-child {
    border-right: none;
}
.summary-cell-label {
    font-size: 11.5px;
    color: #aaa;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 3px;
}
.summary-cell-value {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.summary-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-top: 1.5px solid #e8e8e8;
    margin-top: 0;
}
.summary-total-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}
.summary-total-amount {
    font-size: 18px;
    font-weight: 800;
    color: #ef563f;
}

/* ===================== MODAL FOOTER ===================== */
.bm-footer {
    padding: 18px 32px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-shrink: 0;
    background: #fff;
}
.btn-back {
    background: none;
    border: none;
    color: #555;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.15s;
}
.btn-back:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}
.btn-back.hidden {
    opacity: 0;
    pointer-events: none;
}

.btn-next {
    background: #ef563f;
    color: #fff;
    border: none;
    padding: 11px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition:
        background 0.15s,
        opacity 0.15s;
}
.btn-next:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}
.btn-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.fancy-btn {
    position: relative;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    padding: 11px 24px;
    display: flex;
    align-items: center;
    gap: 8px;

    box-shadow:
        0 2px 8px rgba(6, 10, 13, 0.12),
        inset 4px 4px 8px rgba(0, 0, 0, 0.06);

    background:
        radial-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0) 90%),
        radial-gradient(
            circle at 80% 200%,
            rgba(255, 255, 255, 0.25),
            rgba(255, 255, 255, 0) 80%
        ),
        linear-gradient(rgba(15, 19, 25, 0.2));

    background-color: rgba(0, 0, 0, 0.2);
    color: #fff;
    border: none;
    overflow: hidden;
}
.fancy-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;

    background: linear-gradient(
            -18deg,
            rgba(255, 255, 255, 0.8) 20%,
            rgba(255, 255, 255, 0.4) 30%,
            rgba(255, 255, 255, 0.05) 40%,
            rgba(255, 255, 255, 0.05) 60%,
            rgba(255, 255, 255, 0.4) 70%,
            rgba(255, 255, 255, 0.8) 90%
        )
        border-box;

    -webkit-mask:
        linear-gradient(#000 0 0) padding-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;

    mask:
        linear-gradient(#000 0 0) padding-box,
        linear-gradient(#000 0 0);
    mask-composite: exclude;
}
/* ===================== SCROLLBAR ===================== */
.bm-content::-webkit-scrollbar,
.slot-box::-webkit-scrollbar {
    width: 5px;
}
.bm-content::-webkit-scrollbar-track,
.slot-box::-webkit-scrollbar-track {
    background: #f5f5f5;
}
.bm-content::-webkit-scrollbar-thumb,
.slot-box::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 3px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
    .bm-body {
        flex-direction: column;
    }
    .bm-sidebar {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        padding: 12px 16px;
        gap: 4px;
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
    }
    .bm-step-item {
        white-space: nowrap;
    }
    .vehicle-grid {
        grid-template-columns: 1fr 1fr;
    }
    .datetime-layout {
        flex-direction: column;
    }
    .cal-grid {
        grid-template-columns: repeat(7, 36px);
    }
    .cal-day {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 600px) {
    .bm-header {
        padding: 20px 16px 14px;
    }
    .bm-header h2 {
        font-size: 22px;
    }
    .bm-content {
        padding: 20px 16px;
    }
    .bm-footer {
        padding: 14px 16px;
    }
    .vehicle-grid {
        grid-template-columns: 1fr;
    }
    .slots-grid {
        grid-template-columns: 1fr;
    }
    .cal-grid {
        grid-template-columns: repeat(7, 1fr);
    }
    .cal-day {
        width: 100%;
    }
    .summary-row {
        flex-direction: column;
    }
    .summary-cell {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
    }
}

.thankyou-hero {
    background: #000;
    color: #fff;
    padding: 90px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.thankyou-hero h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 18px;
}

.breadcrumb {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 14px;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
}

/* ======================
   CARD SECTION
====================== */

.booking-wrapper {
    margin-top: 10px;
    padding-bottom: 80px;
}

.booking-card {
    width: 90%;
    max-width: 1150px;
    margin: auto;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
}

/* Success Area */

.success-wrap {
    padding-top: 28px;
    display: flex;
    justify-content: center;
}

.success-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #f3f3f3;
    position: relative;
}

.success-icon span {
    position: absolute;
    bottom: 2px;
    right: 2px;

    width: 28px;
    height: 28px;
    border-radius: 50%;

    background: #ef5b42;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 15px;
    font-weight: 700;
}
.calendar-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.calendar-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;

    text-decoration: none;
    color: #333;
    font-size: 13px;
    background: #fff;

    transition: all 0.3s ease;
}

.calendar-btn:hover {
    background: #f8f8f8;
    border-color: #ccc;
}

.calendar-btn svg {
    flex-shrink: 0;
}

.booking-content {
    text-align: center;
    padding: 15px 20px 10px;
}

.booking-id {
    font-size: 15px;
    color: #444;
    margin-bottom: 8px;
}

.booking-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.booking-text {
    color: #666;
    font-size: 14px;
}

/* Info Row */

.booking-info {
    margin-top: 35px;

    display: flex;
    justify-content: center;
}

.info-box {
    flex: 1;
    padding: 0 35px;
}

.info-box.middle {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

.info-box small {
    display: block;
    color: #999;
    margin-bottom: 8px;
}

.info-box p {
    font-size: 14px;
    color: #222;
}

/* Divider */

.divider {
    height: 1px;
    background: #ececec;
    margin-top: 25px;
}

/* Calendar */

.calendar-area {
    padding: 25px 20px 35px;
    text-align: center;
}

.calendar-area h4 {
    font-size: 16px;
    margin-bottom: 18px;
    font-weight: 500;
}

.calendar-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.calendar-btn {
    text-decoration: none;
    color: #333;
    border: 1px solid #dcdcdc;
    padding: 10px 16px;
    border-radius: 3px;
    background: #fff;
    font-size: 13px;
    transition: 0.3s;
}

.calendar-btn:hover {
    background: #f7f7f7;
}
@media (max-width: 768px) {
    .booking-info {
        flex-direction: column;
        gap: 20px;
        margin-top: 25px;
    }

    .info-box {
        padding: 0;
    }

    .info-box.middle {
        border: 0;
        padding: 15px 0;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
    }

    .calendar-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .calendar-btn {
        width: 100%;
        justify-content: center;
        min-height: 44px;
    }

    .booking-content {
        padding: 20px 15px;
    }

    .calendar-area {
        padding: 20px 15px 25px;
    }
}

.booking-widget {
    position: absolute;
    right: 80px; /* left:80px or left:50% as needed */
    bottom: -340px; /* overlap amount */

    width: 372px;
    background: #fff;
    border-radius: 8px;
    overflow: visible;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
    z-index: 100;
}

/* ===== TABS ===== */
.bw-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid #e2e2e2;
}
.bw-tab {
    padding: 22px 12px 18px;
    border: none;
    background: #fff;
    color: #888;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.18s;
    position: relative;
}
.bw-tab::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    height: 2px;
    background: #111;
    transition:
        left 0.2s,
        right 0.2s;
}
.bw-tab.active {
    color: #111;
    font-weight: 700;
}
.bw-tab.active::after {
    left: 20%;
    right: 20%;
}

/* ===== FIELDS AREA ===== */
.bw-fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 20px 0;
}
.bw-email-input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 14px;
    background: transparent;
    color: inherit;
}
/* ===== SINGLE FIELD ROW ===== */
.bw-field {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border-radius: 8px;
    background: #f5f5f5;
    cursor: pointer;
    transition: background 0.15s;
    position: relative;
    user-select: none;
}
.bw-field:hover {
    background: #efefef;
}
.bw-field.open {
    background: #efefef;
}

.bw-field-icon {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.bw-field-icon svg {
    width: 20px;
    height: 20px;
    color: #333;
}

.bw-field-label {
    font-size: 13px;
    color: #777;
    display: block;
    margin-bottom: 3px;
}
.bw-field-value {
    font-size: 15px;
    font-weight: 600;
    color: #111;
}

/* ===== POPUP BASE ===== */
.bw-popup {
    display: none;
    position: absolute;
    left: 0;
    top: calc(100% + 6px);
    width: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    z-index: 200;
    overflow: hidden;
}
.bw-popup.open {
    display: block;
}

/* ===== CALENDAR POPUP ===== */
.cal-popup {
    padding: 16px;
    min-width: 280px;
}
.cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.cal-title {
    font-size: 15px;
    font-weight: 700;
    color: #111;
}
.cal-nav-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #555;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background 0.1s;
}
.cal-nav-btn:hover {
    background: #f0f0f0;
}
.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    text-align: center;
}
.cal-dow {
    font-size: 11px;
    font-weight: 700;
    color: #aaa;
    padding: 4px 0 8px;
    text-transform: uppercase;
}
.cal-cell {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13.5px;
    font-weight: 500;
    border-radius: 50%;
    cursor: pointer;
    color: #222;
    transition:
        background 0.12s,
        color 0.12s;
}
.cal-cell:hover:not(.disabled):not(.empty):not(.other) {
    background: #f0f0f0;
}
.cal-cell.today {
    font-weight: 800;
    color: #f2553d;
}
.cal-cell.selected {
    background: #111 !important;
    color: #fff !important;
    border-radius: 50%;
}
.cal-cell.disabled {
    color: #ccc;
    cursor: default;
}
.cal-cell.other {
    color: #ccc;
    cursor: default;
}
.cal-cell.empty {
    cursor: default;
}

/* ===== TIME PICKER POPUP ===== */
.time-popup {
    padding: 16px 20px;
}
.time-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.time-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.time-sep {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin: 0 2px;
    align-self: center;
    padding-top: 2px;
}
.time-up,
.time-down {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 13px;
    color: #555;
    padding: 4px 10px;
    border-radius: 4px;
    transition:
        background 0.1s,
        color 0.1s;
    line-height: 1;
}
.time-up:hover,
.time-down:hover {
    background: #f0f0f0;
    color: #111;
}
.time-val {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    min-width: 38px;
    text-align: center;
}
.time-ampm-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-left: 6px;
    align-self: center;
}
.time-ampm-btn {
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 600;
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    color: #888;
    transition: all 0.15s;
}
.time-ampm-btn.active {
    background: #111;
    color: #fff;
    border-color: #111;
}

/* ===== LOCATION POPUP ===== */
.loc-popup {
    max-height: 260px;
    overflow-y: auto;
}
.loc-search-wrap {
    padding: 12px 14px;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
}
.loc-search {
    width: 100%;
    padding: 9px 12px;
    border: 1.5px solid #e0e0e0;
    border-radius: 7px;
    font-size: 13.5px;
    outline: none;

    color: #111;
    transition: border-color 0.15s;
}
.loc-search:focus {
    border-color: #f2553d;
}
.loc-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.12s;
    border-bottom: 1px solid #f5f5f5;
}
.loc-option:last-child {
    border-bottom: none;
}
.loc-option:hover {
    background: #f8f8f8;
}
.loc-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    margin-top: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
}
.loc-icon svg {
    width: 18px;
    height: 18px;
}
.loc-info {
}
.loc-name {
    font-size: 14px;
    font-weight: 600;
    color: #111;
}
.loc-sub {
    font-size: 12px;
    color: #888;
    margin-top: 1px;
}

/* ===== SEARCH BUTTON ===== */
.bw-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: calc(100% - 40px);
    margin: 20px 20px 20px;
    padding: 16px 20px;
    border-radius: 6px;
    background: #f2553d;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background 0.18s;
}
.bw-search-btn:hover {
    background: #d94430;
}
.bw-search-btn svg {
    width: 20px;
    height: 20px;
}

/* Tab content panels */
.bw-panel {
    display: none;
}
.bw-panel.active {
    display: block;
}

/* ===== SCROLLBAR ===== */
.loc-popup::-webkit-scrollbar {
    width: 4px;
}
.loc-popup::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 2px;
}
/* Tablet */

@media (max-width: 991px) {
    .booking-widget {
        width: 100%;
        max-width: 400px;
    }

    .booking-widget-wrapper {
        margin-top: -120px;
    }
}

/* Mobile */

@media (max-width: 768px) {
    .hero-image {
        height: 350px;
    }

    .booking-widget {
        position: relative !important;
        width: calc(100% - 24px);
        max-width: 100%;
        margin: 20px auto 0;
        left: 0 !important;
        right: 0 !important;
        bottom: auto !important;
        transform: none !important;
        border-radius: 16px;
        box-sizing: border-box;
    }

    .booking-widget-wrapper {
        padding: 0 12px; /* adds safe spacing from screen edges */
    }
    .bw-tabs {
        grid-template-columns: repeat(3, 1fr);
    }

    .bw-tab {
        padding: 16px;
    }

    .bw-field {
        grid-template-columns: 48px 1fr;
        gap: 10px;
    }

    .bw-field-value {
        font-size: 14px;
        word-break: break-word;
    }

    .bw-search-btn {
        width: calc(100% - 30px);
        margin: 15px;
    }

    .bw-popup {
        position: fixed;
        left: 10px;
        right: 10px;
        width: auto;
        top: 50%;
        transform: translateY(-50%);
        max-height: 80vh;
        overflow: auto;
        z-index: 9999;
    }

    .cal-popup {
        min-width: auto;
    }
}

/* Small Mobile */

@media (max-width: 480px) {
    .hero-image {
        height: 280px;
    }

    .booking-widget-wrapper {
        margin-top: -60px;
    }

    .bw-field {
        padding: 10px;
    }

    .bw-field-icon {
        width: 42px;
        height: 42px;
    }

    .bw-field-label {
        font-size: 12px;
    }

    .bw-field-value {
        font-size: 13px;
    }

    .bw-search-btn {
        font-size: 15px;
        padding: 14px;
    }
}
/* ===== SUCCESS MESSAGE ===== */
.bw-success {
    display: none;
    margin: 16px 20px 0;
    padding: 12px 16px;
    background: #f0fdf4;
    border: 1.5px solid #86efac;
    border-radius: 8px;
    color: #166534;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    gap: 8px;
    align-items: center;
    justify-content: center;
}
.bw-success.show {
    display: flex;
}
.bw-success svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #16a34a;
}
.vehicle-icon svg {
    width: 24px;
    height: 24px;
    display: block;
    color: currentColor;
}
.hero-location {
    position: relative;
}

/* White banner */

.hero-location-header {
    background: #fff;
    padding: 40px 20px; /* side spacing */
}

.hero-location-header h1 {
    max-width: 1200px;
    margin: 70px auto 0; /* center container */

    font-size: 35px;
    font-weight: 400;
    color: #071120;

    text-align: left; /* start alignment */
}

/* Image */

.hero-location-image {
    position: relative;
    height: 520px;

    background: url("../images/updated-image/bristol.webp") center center/cover
        no-repeat;
}

/* Card overlaps image + banner */

.booking-card {
    position: absolute;
    top: -90px;
    right: 10%;

    width: 360px;

    background: #fff;
    border-radius: 4px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    /* overflow: hidden; */
}

/* Tabs */

.tabs {
    display: flex;
}

.tab-btn {
    flex: 1;
    border: none;
    background: #d8dce1;
    padding: 18px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}

.tab-btn.active {
    background: #fff;
}

/* Form */

.tab-content {
    display: none;
    padding: 12px;
}

.tab-content.active {
    display: block;
}

.input-box {
    background: #d8dce1;
    margin-bottom: 8px;
    padding: 10px 14px;
}
.input-box i {
    color: #000;
}

.input-box label {
    white-space: nowrap;
    display: block;
    font-size: 16px;
    color: #000;
    margin-bottom: 2px;
}

.input-box input,
.input-box select {
    width: 100%;
    border: none;
    background: transparent;
    outline: none;
    font-size: 15px;
}

/* Note */

.note {
    text-align: center;
    font-size: 13px;
    color: #555;
    margin: 10px 0;
}

/* Button */

/* .btn-search {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 48px;

    text-decoration: none;
    border: none;
    border-radius: 10px;

    background: #000;
    color: #fff;

    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
} */
.btn-search {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 48px;

    border: 0;
    border-radius: 999px; /* same pill shape */

    text-decoration: none;

    background: transparent;

    color: #fff;

    font-size: 18px;
    font-weight: 600;

    cursor: pointer;

    box-shadow:
        0 2px 8px 0 rgba(6, 10, 13, 0.12),
        inset 4px 4px 8px rgba(0, 0, 0, 0.08);

    background:
        radial-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0) 90%),
        radial-gradient(
            circle at 80% 200%,
            rgba(255, 255, 255, 0.3),
            rgba(255, 255, 255, 0) 80%
        ),
        linear-gradient(rgba(15, 19, 25, 0.35));

    background-color: rgba(0, 0, 0, 0.35);

    transition: all 0.3s ease;
}
.btn-search::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;

    border: 1px solid rgba(0, 0, 0, 0);

    background: linear-gradient(
            -18deg,
            rgba(0, 0, 0, 0.8) 20%,
            rgba(0, 0, 0, 0.4) 30%,
            rgba(0, 0, 0, 0.05) 40%,
            rgba(0, 0, 0, 0.05) 60%,
            rgba(0, 0, 0, 0.4) 70%,
            rgba(0, 0, 0, 0.8) 90%
        )
        border-box;

    -webkit-mask:
        radial-gradient(black) border-box,
        linear-gradient(black) padding-box;

    mask:
        radial-gradient(black) border-box,
        linear-gradient(black) padding-box;

    -webkit-mask-composite: source-out;
    mask-composite: subtract;
}
.btn-search:hover {
    background-color: #f0f0f0;
}
/* Mobile */

@media (max-width: 991px) {
    /* Header */
    /* .hero-location-header {
    padding: 40px 15px;
  } */

    .hero-location-header h1 {
        font-size: 28px;
        margin: 50px auto 0;
        text-align: left;
    }

    /* Image section */
    /* .hero-location-image {
    height: 420px;
    background-position: center;
  } */

    /* Booking card */

    /* Tabs */
    .tab-btn {
        font-size: 15px;
        padding: 14px;
    }

    /* Inputs */
    .input-box {
        padding: 8px 12px;
    }

    .input-box input,
    .input-box select {
        font-size: 14px;
    }

    /* Button */
    .btn-search {
        height: 44px;
        font-size: 16px;
    }

    /* Note */
    .note {
        font-size: 12px;
    }
}
.city-service-section {
    /* background: #f7f7f7; */
    padding: 70px 0;
}

/* Container */
.city-features,
.city-content-wrapper {
    width: 90%;
    max-width: 1120px;
    margin: auto;
}

/* ======================
   Feature Cards
====================== */

.city-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 90px;
}

.city-feature-card {
    background: #fff;
    border: 1px solid #d8dde3;
    border-radius: 18px;
    padding: 34px 28px;
    min-height: 245px;
}

.city-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.city-icon img {
    width: 100%;
}

.city-feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #071120;
    line-height: 1.4;
    margin-bottom: 28px;
}

.city-feature-card p {
    font-size: 15px;
    line-height: 1.9;
    color: #111827;
}

/* ======================
   Content Section
====================== */

.city-content-wrapper {
    display: grid;
    grid-template-columns: 470px 1fr;
    align-items: center;
    gap: 60px;
}

.city-image img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    display: block;
}

.city-content h2 {
    font-size: 40px;
    font-weight: 400;
    color: #071120;
    line-height: 1.1;
    margin-bottom: 22px;
}

.city-content p {
    font-size: 16px;
    line-height: 1.85;
    color: #111827;
}

.city-content a {
    color: #071120;
    font-weight: 700;
    text-decoration: none;
}

/* ======================
   Responsive
====================== */

@media (max-width: 991px) {
    .city-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .city-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .city-content h2 {
        font-size: 38px;
    }
    /* 
    .city-image img {
        height: auto;
    } */
}
.city-feature-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.city-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    margin-bottom: 0;
}

.city-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.city-feature-card h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #071120;
    line-height: 1.4;
}

.city-feature-card p {
    font-size: 15px;
    line-height: 1.9;
    color: #111827;
}
.travel-content-section {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0px 20px;
}

/* Rows */
.travel-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 90px;
}

/* Typography */
.travel-text h2 {
    font-size: 35px;
    font-weight: 500;
    line-height: 1.15;
    color: #071120;
    margin-bottom: 20px;
}

.travel-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #111827;
}

/* Images */
.travel-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

/* Links */
.travel-links {
    margin-top: 25px;
    padding-left: 20px;
}

.travel-links li {
    margin-bottom: 12px;
}

.travel-links a {
    color: #071120;
    font-size: 18px;
    font-weight: 600;
    text-decoration: underline;
}
@media (max-width: 609px) {
    .city-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .city-content h2 {
        font-size: 30px;
    }
}
/* Responsive */
@media (max-width: 991px) {
    .travel-row,
    .travel-row.reverse {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .travel-text h2 {
        font-size: 38px;
    }

    .travel-row {
        margin-bottom: 60px;
    }
}
.faq-location-section {
    padding: 80px 20px;
    background: #f7f7f7;
}

.faq-location-container {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 90px;
    align-items: start;
}

/* Heading */

.faq-location-title {
    font-size: 42px;
    font-weight: 500;
    color: #071120;
    margin-bottom: 40px;
    line-height: 1.15;
}
/* FAQ SECTION */

.faq-location-section {
    background: #efefef;
    padding: 80px 0;
}

.faq-location-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;

    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 70px;
    align-items: start;
}

/* Title */

.faq-location-title {
    font-size: 52px;
    font-weight: 400;
    line-height: 1.1;
    color: #071120;
    margin-bottom: 40px;
}

/* FAQ List */

.faq-location-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-location-item {
    border-radius: 8px;
    overflow: hidden;
}

/* Question */

.faq-location-question {
    width: 100%;
    border: none;
    background: #d7dbe0;
    padding: 22px 24px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    text-align: left;
    cursor: pointer;

    font-size: 18px;
    font-weight: 600;
    color: #071120;
}

.faq-location-question span {
    font-size: 12px;
    transition: 0.3s ease;
    line-height: 1;
}

/* Answer */

.faq-location-answer {
    display: none;
    background: #d7dbe0;

    padding: 0 24px 22px;

    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* Active Item */

.faq-location-item.active .faq-location-answer {
    display: block;
}

.faq-location-item.active .faq-location-question span {
    transform: rotate(180deg);
}

/* Image */

.faq-location-image {
    height: 100%;
}

.faq-location-image img {
    width: 100%;
    height: 720px;
    object-fit: cover;
    display: block;
}

/* Responsive */

@media (max-width: 991px) {
    .faq-location-container {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .faq-location-title {
        font-size: 38px;
        text-align: center;
    }

    .faq-location-image {
        order: -1;
    }

    .faq-location-image img {
        display: none;
    }

    .faq-location-question {
        font-size: 16px;
        padding: 18px;
    }
}
.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-icon svg {
    width: 18px;
    height: 18px;
}

/* Rotate when active */
.faq-location-item.active .faq-icon {
    transform: rotate(180deg);
}
.transfer-breadcrumb-section {
    /* background: #f5f5f5; */
    padding: 25px 20px;
}

.transfer-breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
}

.transfer-breadcrumb {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.transfer-breadcrumb a {
    text-decoration: none;
    color: #666;
    font-size: 16px;
}

.transfer-breadcrumb a:hover {
    color: #000;
}

.transfer-separator {
    color: #999;
    font-size: 18px;
}

.transfer-current {
    color: #000;
    font-weight: 600;
    font-size: 16px;
}

/* blog section */
.blog-hero-section {
    background: #000;
    padding: 150px 20px;
}

.blog-hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-hero-title {
    color: #fff;
    font-size: 52px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 25px;
}

.blog-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-breadcrumb a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.blog-breadcrumb a:hover {
    color: #fff;
}

.blog-breadcrumb span {
    color: #9ca3af;
    font-size: 16px;
}

.blog-breadcrumb .current-page {
    color: #fff;
    font-weight: 600;
}

/* Mobile */
@media (max-width: 768px) {
    .blog-hero-title {
        font-size: 34px;
    }

    .blog-breadcrumb {
        gap: 8px;
    }

    .blog-breadcrumb a,
    .blog-breadcrumb span,
    .blog-breadcrumb .current-page {
        font-size: 14px;
    }
}

@media (max-width: 1000px) {
    .booking-card {
        position: relative;
        top: -80px;
        width: 92%;
        max-width: 370px;
        margin: 0 auto;
        right: -180px;
        border-radius: 8px;
    }
}
@media (max-width: 668px) {
    .booking-card {
        position: relative;
        top: 220px;
        width: 92%;
        max-width: 420px;
        margin: 0 auto;
        right: auto;
        border-radius: 8px;
    }
}
@media (max-width: 390px) {
    .booking-card {
        position: relative;
        top: 220px;
        width: 92%;
        max-width: 420px;
        margin: 0 auto;
        right: auto;
        border-radius: 8px;
    }
}
/* news second section */
.blog-section {
    padding: 50px 0;
    background: #fff;
}

.blog-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}
@media screen and (max-width: 441px) {
    .blog-container {
        display: block;
    }
}

/* Image */
.blog-image {
    position: relative;
}

.blog-image img {
    width: 100%;
    display: block;
    border-radius: 6px;
}

.blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #fff;
}

.blog-date h2 {
    font-size: 48px;
    line-height: 1;
    margin: 0;
}

.blog-date span {
    font-size: 14px;
}

/* Content */
.blog-content h1 {
    font-size: 48px;
    margin: 30px 0 20px;
    color: #0f172a;
    line-height: 1.2;
}

.blog-content p {
    color: #000;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    border: 1px solid #e5e5e5;
    padding: 25px;
    border-radius: 6px;
}

.sidebar-card h3 {
    margin-bottom: 20px;
    font-size: 22px;
}

.sidebar-card input {
    width: 100%;
    padding: 14px;
    border: none;
    background: #f3f3f3;
    border-radius: 4px;
    outline: none;
}

/* Tags */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags a {
    text-decoration: none;
    background: #eef4f2;
    color: #333;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 14px;
    transition: 0.3s;
}

.tags a:hover {
    background: #d9e8e3;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-container {
        grid-template-columns: 1fr;
    }

    .blog-content h1 {
        font-size: 32px;
    }
}

.adventure-section {
    padding: 40px 0;
    width: 100%;
}

.adventure-section .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
}

/* IMAGE WRAPPER */
.media-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.media-wrapper img {
    width: 100%;
    display: block;

    transform: translate3d(-25px, 0px, 0px) scale(1.3);
    will-change: transform;
    transition: transform 0.6s cubic-bezier(0, 0, 0, 1);
}

/* Hover Animation */
.media-wrapper:hover img {
    transform: translate3d(0, 0, 0) scale(1);
}

/* Featured */
.featured-card {
    margin-bottom: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery-item {
    width: 100%;
}

.gallery-item .media-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    height: 350px; /* same height for both */
}

.gallery-item .media-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transform: translate3d(-25px, 0, 0) scale(1.3);
    will-change: transform;
    transition: transform 0.6s cubic-bezier(0, 0, 0, 1);
}

.gallery-item .media-wrapper:hover img {
    transform: translate3d(0, 0, 0) scale(1);
}

/* Play Button */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    z-index: 2;
    transition: 0.4s;
}

.play-btn:hover {
    background: #0d6efd;
    color: #fff;
}

.play-btn.small {
    width: 80px;
    height: 80px;
    font-size: 28px;
}

/* Pulse Animation */
.play-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Text */
.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #0d1b3f;
    margin-bottom: 15px;
}

.description {
    color: #555;
    line-height: 1.8;
    margin-top: 20px;
}

/* Scroll Reveal Animation */
.featured-card,
.gallery-item {
    opacity: 0;
    transform: translateY(60px);
    animation: fadeUp 0.8s ease forwards;
}

.gallery-item:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .play-btn {
        width: 70px;
        height: 70px;
        font-size: 24px;
    }

    .play-btn.small {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .adventure-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .description {
        font-size: 14px;
    }
}
/* ==========================
   RELATED POSTS SECTION
========================== */

.related-posts-section {
    padding: 10px 0;
    background: #fff;
    overflow: hidden;
    position: relative;
}

.related-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.related-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
    margin: 0;
}

/* ==========================
   NAVIGATION
========================== */

.slider-nav {
    display: flex;
    gap: 15px;
}

.slider-nav button {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #111827;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.35s ease;
}

.slider-nav button:hover {
    background: #ef563f;
    border-color: #ef563f;
    color: #fff;
    transform: translateY(-3px);
}

/* ==========================
   SLIDER
========================== */

.posts-slider {
    overflow: hidden;
}

.posts-track {
    display: flex;
    gap: 35px;
    transition: transform 0.8s ease;
}

/* ==========================
   CARD
========================== */

.post-item {
    flex: 0 0 calc(50% - 18px);
    min-width: calc(50% - 18px);
    transition: 0.4s ease;
}

.post-item:hover {
    transform: translateY(-8px);
}

/* ==========================
   IMAGE
========================== */

.post-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.post-thumb img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;

    transform: translate3d(-25px, 0, 0) scale(1.25);
    will-change: transform;
    transition: transform 0.7s cubic-bezier(0, 0, 0, 1);
}

.post-item:hover .post-thumb img {
    transform: translate3d(0, 0, 0) scale(1);
}

/* Overlay */

.post-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.05),
        rgba(0, 0, 0, 0.35)
    );
}

/* ==========================
   DATE
========================== */

.date-box {
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 2;
    color: #fff;
}

.day {
    display: block;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
}

.month {
    display: block;
    margin-top: 5px;
    font-size: 18px;
    font-weight: 500;
}

/* ==========================
   CONTENT
========================== */

.post-content {
    padding-top: 28px;
}

.category {
    display: inline-block;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.post-content h3 {
    font-size: 30px;
    line-height: 1.35;
    font-weight: 700;
    color: #111827;
    margin-bottom: 18px;
    transition: 0.3s ease;
}

.post-item:hover .post-content h3 {
    color: #ef563f;
}

.post-content p {
    color: #6b7280;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 30px;
}

/* ==========================
   BUTTON
========================== */

.post-arrow {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid #111827;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    color: #111827;
    font-size: 22px;

    transition: all 0.35s ease;
}

.post-arrow:hover {
    background: #ef563f;
    border-color: #ef563f;
    color: #fff;
    transform: rotate(45deg);
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 991px) {
    .post-item {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .related-header h2 {
        font-size: 36px;
    }

    .post-thumb img {
        /* height: 260px; */
    }

    .post-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    /* .related-posts-section {
    padding: 70px 0;
  } */

    .related-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .slider-nav {
        align-self: flex-start;
    }

    .post-thumb img {
        /* height: 220px;    */
    }

    .day {
        font-size: 32px;
    }

    .month {
        font-size: 14px;
    }

    .post-content h3 {
        font-size: 22px;
    }

    .post-content p {
        font-size: 15px;
    }
}

.blog-hero {
    background: #000;
    padding: 130px 0 100px;
}

.blog-hero h1 {
    color: #fff;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
}

.breadcrumb-blog {
    display: flex;
    gap: 10px;
    align-items: center;
}

.breadcrumb-blog a,
.breadcrumb-blog span {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

/* =======================
   SECTION
======================= */

.blog-section {
    background: #fff;
    padding: 70px 0;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
}

/* =======================
   BLOG LIST
======================= */

.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.blog-card {
    display: flex;
    gap: 28px;
    align-items: center;
    background: #f8f8f8;
    border: 1px solid #ececec;
    border-radius: 18px;
    padding: 24px;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.blog-image {
    position: relative;
    width: 280px;
    height: 270px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 8px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(120, 40, 30, 0.45),
        rgba(230, 86, 57, 0.65)
    );
    transition: all 0.35s ease;
}

.blog-card:hover .blog-image::after {
    background: linear-gradient(
        180deg,
        rgba(230, 86, 57, 0.15),
        rgba(230, 86, 57, 0.85)
    );
}

.blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    color: #fff;
}

.blog-date h4 {
    font-size: 44px;
    line-height: 1;
}

.blog-date p {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}

.blog-info {
    flex: 1;
}

.blog-category {
    font-size: 14px;
    margin-bottom: 14px;
}

.blog-title {
    font-size: 32px;
    line-height: 1.15;
    margin-bottom: 18px;
    font-weight: 700;
}

.blog-desc {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

.read-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid #222;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #111;
    font-size: 22px;
    transition: 0.3s;
}

.blog-card:hover .read-btn {
    background: #000;
    border-color: #000;
    color: #fff;
}
/* =======================
   SIDEBAR
======================= */

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
}

.sidebar-card h3 {
    font-size: 34px;
    margin-bottom: 25px;
}

.sidebar input {
    width: 100%;
    height: 54px;
    border: none;
    background: #f2f2f2;
    padding: 0 18px;
    border-radius: 8px;
}

.tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tags a {
    text-decoration: none;
    background: #eef4f2;
    color: #111;
    padding: 12px 18px;
    border-radius: 30px;
    font-size: 14px;
}
/* =======================
   PAGINATION
======================= */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination button {
    width: 56px;
    height: 56px;
    border: 1px solid #d8d8d8;
    background: #fff;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.pagination button:hover {
    background: #ea5b44;
    border-color: #ea5b44;
    color: #fff;
}

.pagination button.active {
    background: #ea5b44;
    color: #fff;
    border-color: #ea5b44;
}

.pagination button.arrow {
    font-size: 24px;
}
@media (max-width: 991px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }

    .blog-image {
        width: 100%;
        height: 300px;
    }

    .blog-title {
        font-size: 32px;
    }

    .sidebar {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .blog-hero {
        padding: 80px 0 80px;
    }

    .blog-hero h1 {
        font-size: 40px;
    }

    .blog-title {
        font-size: 28px;
    }

    .blog-desc {
        font-size: 16px;
    }
}
.blog-image-news {
    position: relative;
    width: auto;
    height: 470px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 8px;
}
@media (max-width: 991px) {
    .blog-image-news {
        height: 260px;
    }
}
.password-field {
    position: relative;
    width: 100%;
}

.password-field input {
    width: 100%;
    padding: 14px 48px 14px 16px;
    border: none;
    outline: none;
    background: transparent;
    box-shadow: none;
    font-size: 16px;
}

.password-field input:focus {
    border: none;
    outline: none;
    box-shadow: none;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.password-toggle i {
    font-size: 20px;
}

.password-toggle i {
    width: 20px;
    height: 20px;
}

.eye-closed {
    display: none;
}

.password-toggle.active .eye-open {
    display: none;
}

.password-toggle.active .eye-closed {
    display: block;
}
.ride-toggle {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 8px;

    width: fit-content;
    padding: 6px;

    border-radius: 50px;

    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.15);

    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.25),
        inset 0 1px 1px rgba(255, 255, 255, 0.25);
}

.toggle-btn {
    border: none;
    background: transparent;
    color: #fff;
    padding: 12px 28px;
    border-radius: 40px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: 0.35s;
}

.toggle-btn.active {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.35),
        rgba(255, 255, 255, 0.12)
    );

    backdrop-filter: blur(20px);

    color: #fff;

    box-shadow:
        0 5px 20px rgba(255, 255, 255, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.35);
}

.toggle-btn:hover {
    transform: translateY(-2px);
}
#hourly-fields {
    width: 100%;
}

.hourly-select {
    width: 100%;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 0;
    outline: none;
}

.hourly-select option {
    color: #000;
    background: #fff;
}

.hourly-select::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.hourly-select::-webkit-inner-spin-button {
    display: none;
}
.ride-toggle {
    margin-bottom: 16px;
}

.hero-booking-wrap {
    gap: 8px;
    /* margin-top: 70px; */
}

.hero-booking-bar {
    margin-top: 0;
}
/* booking seach form */
.top-nav {
    position: relative;
    height: 300px;

    background: url("https://images.unsplash.com/photo-1503376780353-7e6692767b70")
        center center/cover no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}
.top-nav::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.45));

    z-index: 1;
}
#couponBox {
    margin-top: 15px;
}

#couponCode {
    background: #f0f2f7;
    font-size: 14px;
}
.top-nav-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.top-nav-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.top-nav-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb .current {
    color: #fff;
    font-weight: 600;
}

/* Mobile */

@media (max-width: 768px) {
    .top-nav {
        height: 220px;
        /* margin-top: 60px; */
    }

    .top-nav-content h1 {
        font-size: 34px;
    }

    .breadcrumb {
        font-size: 13px;
        flex-wrap: wrap;
    }
}
/* STEPPER */
.stepper-wrap {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 22px 36px;
}
.stepper {
    display: flex;
    align-items: center;
    max-width: 860px;
    margin: 0 auto;
    position: relative;
}
.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    z-index: 1;
}
.step-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    border: 2px solid #ccc;
    background: #fff;
    color: #ccc;
    transition: all 0.3s;
}
.step-circle.done {
    color: #fff;
    box-shadow:
        0 2px 8px 0 rgba(6, 10, 13, 0.12),
        inset 4px 4px 8px rgba(0, 0, 0, 0.08);

    background:
        radial-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0) 90%),
        radial-gradient(
            circle at 80% 200%,
            rgba(255, 255, 255, 0.3),
            rgba(255, 255, 255, 0) 80%
        ),
        linear-gradient(rgba(15, 19, 25, 0.35));

    background-color: rgba(0, 0, 0, 0.35);
    color: #fff;
}
.step-circle.active {
    background: #fff;
    border-color: #000;
    color: #000;
}
.step-label {
    font-size: 13px;
    margin-top: 6px;
    color: #999;
    white-space: nowrap;
    transition: color 0.3s;
}
.step-label.active {
    color: #000;
    font-weight: 600;
}
.step-label.done {
    color: #333;
}
.step-line {
    flex: 1;
    height: 2px;
    background: #e0e0e0;
    margin-top: -20px;
    position: relative;
    z-index: 0;
}
.step-line.done {
    background: rgba(0, 0, 0, 0.08);
}

/* PAGE WRAPPER */
.page {
    display: none;
}
.page.active {
    display: block;
}

/* MAIN LAYOUT */
.main-layout {
    max-width: 1100px;
    margin: 28px auto;
    padding: 0 20px;
    display: flex;
    gap: 24px;

    align-items: flex-start;
}

/* CAR LIST */

.car-list {
    flex: 1;
    background: #fff;
    padding: 25px;
    border-radius: 12px;

    box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.04),
        0 10px 30px rgba(0, 0, 0, 0.06);
}
.section-title {
    font-size: 24px;
    font-weight: 700;
    text-align: start;
    margin-bottom: 20px;
    color: #222;
}
.car-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px;
    margin-bottom: 12px;
    cursor: pointer;
    transition:
        border-color 0.2s,
        background 0.2s;
}
.car-card:hover {
    /* border-color: #c0392b; */
    border-color: black;
}
.car-card.selected {
    border-color: #000;
    background: #fff9f9;
}
.car-img {
    width: 120px;
    height: 78px;
    object-fit: contain;
    flex-shrink: 0;
}
.car-info {
    flex: 1;
}
.car-name {
    font-size: 17px;
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
}
.car-meta {
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}
.car-price {
    font-size: 19px;
    font-weight: 700;
    color: #000;
    white-space: nowrap;
}

/* TRIP DETAILS PANEL */
.trip-panel {
    width: 350px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 22px;
    flex-shrink: 0;
}
.trip-panel h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 18px;
    text-align: center;
}
.trip-row {
    padding: 14px 0;
    border-bottom: 1px solid #e5e7eb;
}

.trip-row:last-child {
    border-bottom: none;
}
.trip-row-label {
    font-size: 12px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 3px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.trip-row-value {
    font-size: 14px;
    color: #222;
}

/* OFFERINGS */
.offerings {
    max-width: 1100px;
    margin: 0 auto 20px;
    padding: 16px 22px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    color: #444;
}
.offerings p {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 15px;
}
.offerings ul {
    list-style: none;
    padding: 0;
}
.offerings ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 6px;
    line-height: 1.5;
}
.offerings ul li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: #000;
    font-size: 9px;
    top: 5px;
}

/* BUTTONS BAR */
.btn-bar {
    background: #fff;
    border-top: 1px solid #e0e0e0;
    padding: 16px 36px;
    display: flex;
    justify-content: center;
    gap: 16px;
    align-items: center;
    position: sticky;
    bottom: 0;
    z-index: 10;
}
/* .btn {
    padding: 12px 34px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s;
} */
.btn {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 34px;

    border: 0;
    border-radius: 999px; /* same pill shape */

    font-size: 15px;
    font-weight: 600;

    cursor: pointer;

    transition: all 0.25s ease;

    text-decoration: none;
}
.btn-link {
    background: none;
    border: none;
    color: #555;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    padding: 12px 0;
}
/* .btn-back {
    background: #fff;
    border: 2px solid #000;
    color: #000;
} */
.btn-back {
    color: #fff;

    box-shadow:
        0 2px 8px 0 rgba(6, 10, 13, 0.12),
        inset 4px 4px 8px rgba(0, 0, 0, 0.08);

    background:
        radial-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0) 90%),
        radial-gradient(
            circle at 80% 200%,
            rgba(255, 255, 255, 0.2),
            rgba(255, 255, 255, 0) 80%
        ),
        linear-gradient(rgba(25, 28, 34, 0.25));

    background-color: rgba(0, 0, 0, 0.25);
}
.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;

    border: 1px solid rgba(0, 0, 0, 0);

    background: linear-gradient(
            -18deg,
            rgba(0, 0, 0, 0.8) 20%,
            rgba(0, 0, 0, 0.4) 30%,
            rgba(0, 0, 0, 0.05) 40%,
            rgba(0, 0, 0, 0.05) 60%,
            rgba(0, 0, 0, 0.4) 70%,
            rgba(0, 0, 0, 0.8) 90%
        )
        border-box;

    -webkit-mask:
        radial-gradient(black) border-box,
        linear-gradient(black) padding-box;

    mask:
        radial-gradient(black) border-box,
        linear-gradient(black) padding-box;

    -webkit-mask-composite: source-out;
    mask-composite: subtract;
}
/* .btn-next {
    background: #000;
    color: #fff;
} */
.btn-next {
    color: #fff;

    box-shadow:
        0 2px 8px 0 rgba(6, 10, 13, 0.12),
        inset 4px 4px 8px rgba(0, 0, 0, 0.08);

    background:
        radial-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0) 90%),
        radial-gradient(
            circle at 80% 200%,
            rgba(255, 255, 255, 0.3),
            rgba(255, 255, 255, 0) 80%
        ),
        linear-gradient(rgba(15, 19, 25, 0.35));

    background-color: rgba(0, 0, 0, 0.35);
}
.btn-reset {
    background: #fff;
    border: 2px solid #888;
    color: #555;
}
.btn:hover {
    opacity: 0.85;
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* ===== PAGE 3: BOOKING DETAILS ===== */
.booking-form-wrap {
    max-width: 1100px;
    margin: 28px auto;
    padding: 0 20px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.form-section {
    flex: 1;
}
.form-note {
    font-size: 16px;
    color: #555;
    margin-bottom: 16px;
    /* background: #fffbe6; border-left: 4px solid #f0c040; padding: 11px 15px; border-radius: 4px; */
    line-height: 1.6;
}
.form-note strong {
    color: #333;
}
.form-block {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 22px;
    margin-bottom: 16px;
}
.form-block-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #222;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
}
.form-row {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
}
/* Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}
.custom-select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;

    width: 100%;
    padding: 12px 40px 12px 15px !important;

    /* border: 1px solid #ddd ; */
    /* border-radius: 10px !important; */

    /* background-color: #fff !important; */

    font-size: 15px !important;
    color: #333 !important;

    cursor: pointer !important;

    /* custom arrow */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;

    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    background-size: 16px !important;
}

.custom-select:focus {
    outline: none;
    border-color: #000;
}
.form-row input,
.form-row select,
.form-row textarea {
    flex: 1;
    padding: 14px 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    outline: none;
    transition: border-color 0.2s;
    background: #f0f2f7;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    border-color: #1e88e5;
    box-shadow: 0 0 0 2px rgba(192, 57, 43, 0.08);
}
.form-row textarea {
    resize: vertical;
    min-height: 100px;
    background: #f0f2f7;
}
.phone-row {
    display: flex;
    gap: 0;
    flex: 1;
}
.phone-row select {
    width: 88px;
    flex: none;
    border-right: none;
    border-radius: 5px 0 0 5px;
    background: #f8f8f8;
    font-size: 14px;
}
.phone-row input {
    border-radius: 0 5px 5px 0;
    flex: 1;
}
.checkbox-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    margin-top: 10px;
}
.checkbox-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #000;
}
.checkbox-row a {
    color: #1e88e5;
}
.radio-row {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 15px;
    margin-top: 8px;
}
.radio-row label {
    display: flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
}
.radio-row input[type="radio"] {
    width: 17px;
    height: 17px;
    accent-color: #c0392b;
}
.field-label {
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
    font-weight: 600;
}
.checkbox-row {
    margin-bottom: 30px;
}

.checkbox-row label {
    font-size: 15px;
}

.checkbox-row a {
    color: #1e88e5;
    text-decoration: none;
}

.required {
    color: #d63b4b;
}

.seat-row {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    flex-direction: column;
    gap: 30px;
    margin-bottom: 25px;
}

.seat-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.seat-left span {
    font-size: 16px;
}

.seat-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.seat-title {
    font-size: 15px;
    font-weight: 600;
}

.seat-title small {
    display: block;
    font-weight: 400;
    color: #555;
}

/* Toggle */

.switch {
    position: relative;
    width: 70px;
    height: 38px;
}

.switch input {
    display: none;
}

.slider {
    position: absolute;
    inset: 0;
    background: #ddd;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
}

.slider:before {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    left: 4px;
    top: 4px;
    background: #fff;
    border-radius: 50%;
    transition: 0.3s;
}
/* .switch input:checked + .slider:before{
    left:-4px;
} */

.switch input:checked + .slider {
    background: #5b95db;
}

.switch input:checked + .slider:before {
    transform: translateX(32px);
}

/* .switch input:checked + .slider:after {
    content: "Yes";
    position: absolute;
    left: 12px;
    top: 10px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
} */

/* Quantity */
.qty-section {
    display: none;
}
.qty-box {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-box button {
    width: 36px;
    height: 36px;
    border: none;
    background: #000;
    color: #fff;
    font-size: 22px;
    border-radius: 4px;
    cursor: pointer;
}

.qty-box input {
    width: 70px;
    height: 36px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
}
/* Error highlight */
.input-error {
    border-color: #c0392b !important;
    background: #fff8f8 !important;
}
.error-tooltip {
    background: #fff3cd;
    border: 1px solid #f0c040;
    color: #333;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 5px;
    margin-bottom: 12px;
    display: none;
    align-items: center;
    gap: 8px;
}
.error-tooltip.visible {
    display: flex;
}

/* ===== PAGE 4: PRICE SUMMARY ===== */
.price-wrap {
    max-width: 460px;
    margin: 48px auto;
    padding: 0 20px;
}
.price-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.price-header {
    box-shadow:
        0 2px 8px 0 rgba(6, 10, 13, 0.12),
        inset 4px 4px 8px rgba(0, 0, 0, 0.08);

    background:
        radial-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0) 90%),
        radial-gradient(
            circle at 80% 200%,
            rgba(255, 255, 255, 0.3),
            rgba(255, 255, 255, 0) 80%
        ),
        linear-gradient(rgba(15, 19, 25, 0.35));

    background-color: rgba(0, 0, 0, 0.35);
    color: #fff;
    text-align: center;
    padding: 22px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.price-body {
    padding: 28px;
}
.price-row {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    margin-bottom: 14px;
    color: #444;
}
.price-row.subtotal {
    border-top: 1px solid #eee;
    padding-top: 14px;
    font-weight: 700;
    color: #222;
    font-size: 16px;
}
.price-row.total-row {
    border-top: 1px solid #eee;
    padding-top: 14px;
    margin-top: 4px;
    font-weight: 700;
    color: #111;
    font-size: 16px;
}
.vat-note {
    text-align: right;
    font-size: 12px;
    color: #888;
    margin-bottom: 16px;
    margin-top: -8px;
}
.coupon-row {
    text-align: center;
    margin: 16px 0;
}
.coupon-btn {
    border: 2px solid #000;
    background: #fff;
    color: #000;
    padding: 10px 32px;
    border-radius: 24px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 600;
    transition:
        background 0.2s,
        color 0.2s;
}
.coupon-btn:hover {
    transform: translateY(-2px);
}
.gratuity-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 16px 0;
    font-size: 15px;
}
.gratuity-row input {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 9px 12px;
    font-size: 14px;
    width: 140px;
    text-align: right;
}
.not-mandatory {
    font-size: 11px;
    color: #aaa;
    text-align: right;
    margin-bottom: 4px;
}
.final-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid #eee;
    padding-top: 16px;
    margin-top: 8px;
    font-size: 17px;
    font-weight: 700;
}
.final-amount {
    color: #000;
    font-size: 24px;
    font-weight: 700;
}
.stripe-payment-form {
    margin-top: 18px;
}

#stripePaymentElement {
    margin-bottom: 16px;
}

.stripe-payment-message {
    margin-bottom: 14px;
    font-size: 14px;
    color: #444;
}

.stripe-payment-message.is-error {
    color: #b42318;
}

.booking-flight-field-wrap.has-error .booking-flight-input-box,
.booking-flight-field-wrap.has-error
    .service-input-box.booking-flight-input-box {
    border-color: #c0392b !important;
    background: #fff8f8 !important;
}

.booking-flight-field-wrap .required {
    color: #c0392b;
}

.pay-btn {
    width: 100%;

    border: none;
    padding: 16px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    /* margin-top: 20px; */
    transition: opacity 0.2s;
    box-shadow:
        0 2px 8px 0 rgba(6, 10, 13, 0.12),
        inset 4px 4px 8px rgba(0, 0, 0, 0.08);

    background:
        radial-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0) 90%),
        radial-gradient(
            circle at 80% 200%,
            rgba(255, 255, 255, 0.3),
            rgba(255, 255, 255, 0) 80%
        ),
        linear-gradient(rgba(15, 19, 25, 0.35));

    background-color: rgba(0, 0, 0, 0.35);
    color: #fff;
}
.pay-btn:hover {
    opacity: 0.88;
}
.trust-bar {
    text-align: center;
    margin-top: 16px;
    font-size: 13px;
    color: #666;
    line-height: 1.7;
}
.trust-bar .star {
    color: #f5a623;
    font-size: 18px;
}
.trust-bar strong {
    color: #333;
    font-size: 14px;
}

hr.divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 12px 0;
}

@media (max-width: 768px) {
    .main-layout,
    .booking-form-wrap {
        flex-direction: column;
    }
    .trip-panel {
        width: 100%;
    }
    .car-img {
        width: 90px;
        height: 60px;
    }
}
/* ===================================
   TABLET
=================================== */

@media (max-width: 991px) {
    .main-layout,
    .booking-form-wrap {
        flex-direction: column;
    }

    .trip-panel {
        width: 100%;
        position: static;
        order: 2;
    }

    .car-list,
    .form-section {
        width: 100%;
    }

    .section-title {
        font-size: 28px;
    }

    .car-card {
        gap: 15px;
    }

    .car-img {
        width: 100px;
        height: auto;
    }

    .car-name {
        font-size: 16px;
    }

    .car-meta {
        font-size: 13px;
    }

    .car-price {
        font-size: 18px;
    }

    .price-wrap {
        max-width: 100%;
    }
}

/* ===================================
   MOBILE
=================================== */

@media (max-width: 767px) {
    .top-nav {
        padding: 12px 15px;
        font-size: 13px;
        /* margin-top: 60px; */
    }

    .stepper-wrap {
        padding: 15px 10px;
        overflow-x: auto;
        background: #fbfbfb;
    }

    .stepper {
        min-width: 650px;
    }

    .main-layout,
    .booking-form-wrap {
        padding: 0 15px;
        margin: 20px auto;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    /* CARDS */

    .car-card {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .car-img {
        width: 140px;
        height: auto;
    }

    .car-info {
        width: 100%;
    }

    .car-name {
        font-size: 17px;
    }

    .car-meta {
        justify-content: center;
        font-size: 13px;
    }

    .car-price {
        font-size: 24px;
        margin-top: 10px;
    }

    /* TRIP DETAILS */

    .trip-panel {
        width: 100%;
        padding: 18px;
    }

    .trip-panel h3 {
        font-size: 20px;
    }

    .trip-row-value {
        padding-left: 0;
    }

    /* FORMS */

    .form-block {
        padding: 16px;
    }

    .form-row {
        flex-direction: column;
        gap: 12px;
    }

    .phone-row {
        width: 100%;
    }

    .phone-row select {
        width: 90px;
    }

    .form-row input,
    .form-row textarea,
    .form-row select {
        width: 100%;
    }
    .form-row select {
        width: auto;
    }
    /* OFFERINGS */

    .offerings {
        padding: 15px;
        font-size: 13px;
    }

    /* PRICE SUMMARY */

    .price-wrap {
        width: 100%;
        padding: 15px;
        margin: 25px auto;
    }

    .price-body {
        padding: 20px;
    }

    .price-header {
        font-size: 20px;
        padding: 18px;
    }

    .final-amount {
        font-size: 22px;
    }

    .gratuity-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .gratuity-row input {
        width: 100%;
    }

    /* FOOTER BUTTONS */

    .btn-bar {
        padding: 12px;
        gap: 10px;
        flex-wrap: wrap;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .btn-link {
        width: 100%;
        text-align: center;
        order: 1;
    }

    .btn {
        flex: 1;
        min-width: 120px;
        padding: 12px;
        font-size: 14px;
    }
}

/* ===================================
   SMALL MOBILE
=================================== */

@media (max-width: 480px) {
    .section-title {
        font-size: 22px;
    }

    .car-card {
        padding: 12px;
    }

    .car-img {
        width: 120px;
    }

    .car-name {
        font-size: 15px;
    }

    .car-meta {
        font-size: 12px;
    }

    .car-price {
        font-size: 20px;
    }

    .trip-panel {
        padding: 15px;
    }

    .trip-row-label {
        font-size: 11px;
    }

    .trip-row-value {
        font-size: 13px;
    }

    .btn {
        width: 100%;
    }

    .btn-bar {
        flex-direction: column;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .btn-back,
    .btn-next,
    .btn-reset {
        width: 100%;
    }
}
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    font-size: 18px;
    margin-right: 6px;
    color: #000;
}
/* Hide mobile toggle on desktop, hide desktop toggle on mobile */
@media (min-width: 769px) {
    .mobile-toggle-wrapper {
        display: none;
    }
    .desktop-toggle-wrapper {
        display: block;
    }
}

@media (max-width: 768px) {
    .mobile-toggle-wrapper {
        display: block;
    }
    .desktop-toggle-wrapper {
        display: none;
    }
}
/* Mobile Only */
@media (max-width: 768px) {
    .ride-toggle {
        box-shadow: 0 4px 12px rgba(128, 128, 128, 0.3);
        border-radius: 50px;
        background: #fff;
        padding: 4px;
    }

    .ride-toggle .toggle-btn {
        color: #000 !important;
    }

    .ride-toggle .toggle-btn.active {
        color: #000 !important;
    }

    .toggle-btn.active {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), #888);
        backdrop-filter: blur(20px);
        color: #fff;
        box-shadow:
            0 5px 20px rgba(255, 255, 255, 0.15),
            inset 0 1px 1px #666;
    }
    .seat-row {
        display: grid;
    }
}

.open-booking-btn {
    padding: 15px 30px;
    border: none;
    background: #dc4b5a;
    color: #fff;
    cursor: pointer;
    border-radius: 8px;
}

/* MODAL OVERLAY */
.booking-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    z-index: 999999999999999999999999999 !important;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.booking-modal.show {
    display: flex;
    opacity: 1;
}
.booking-modal.show body {
    overflow: hidden;
}

/* MODAL CONTAINER - FIXED HEIGHT WITH SCROLL */
.booking-box {
    width: 520px;
    max-width: 90%;
    max-height: 90vh;
    background: #fff;
    border-radius: 24px;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s ease;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    /* overflow: hidden; */
    overflow-y: auto;
}

.booking-modal.show .booking-box {
    transform: scale(1);
}

/* SCROLLABLE CONTENT AREA */
.booking-scroll-content {
    flex: 1;
    /* overflow-y: auto;
  overflow-x: hidden; */
}

/* Custom Scrollbar */
.booking-scroll-content::-webkit-scrollbar {
    width: 5px;
}

.booking-scroll-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.booking-scroll-content::-webkit-scrollbar-thumb {
    background: #000;
    border-radius: 10px;
}

.booking-scroll-content::-webkit-scrollbar-thumb:hover {
    background: #e84a53;
}

/* SVG Icon Styles */
.icon-svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* CLOSE BUTTON */
.close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: none;
    background: #f0f0f0;
    border-radius: 50%;
    cursor: pointer;
    color: #666;
    transition: all 0.2s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

@media screen and (max-width: 450px) {
    .close-btn {
        right: 0;
        top: 5px;
    }
}

.close-btn:hover {
    background: #000;
    transform: rotate(90deg);
    color: #fff;
}

.close-btn i {
    width: 16px;
    height: 16px;
    stroke: #666;
    stroke-width: 2;
}

.close-btn:hover svg {
    stroke: #fff;
}

/* TABS - STICKY */
.booking-tabs {
    display: flex;
    background: #f8f9fa;
    border-radius: 24px 24px 0 0;
    /* overflow: hidden; */
    position: sticky;
    top: 0;
    z-index: 5000000000000;
}

.tab-btn {
    flex: 1;
    height: 56px;
    border: none;
    background: #e0e0e0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    color: #000;
    transition: all 0.25s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tab-btn i {
    width: 18px;
    height: 18px;
    stroke: #888;
    stroke-width: 1.8;
    fill: none;
}

.tab-btn.active {
    color: #000;
    background: #fff;
}

.tab-btn.active svg {
    stroke: #f25f67;
}

.tab-btn.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 60%;
    height: 3px;
    background: #000;
    border-radius: 3px 3px 0 0;
}

.tab-btn:hover:not(.active) {
    background: #f0f0f0;
    color: #555;
}

.tab-btn:hover:not(.active) svg {
    stroke: #555;
}

/* TAB CONTENT - COMPACT */
.tab-content {
    display: none;
    padding: 20px 20px 24px;
}

.tab-content.active {
    display: block;
}

/* FORM GROUPS - COMPACT */
.form-group {
    margin-bottom: 14px;
}

.form-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #666;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* UNIFIED INPUT/ SELECT STYLES */
.input-box,
.select-box {
    height: 46px;
    background: #f5f7fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border: 1.5px solid transparent;
    transition: all 0.2s ease;
    cursor: pointer;
    gap: 10px;
}

.input-box:hover,
.select-box:hover {
    background: #eef2f7;
}

.input-box:focus-within,
.select-box:focus-within {
    border-color: #000;
    /*background: #fff;*/
    box-shadow: 0 0 0 2px rgba(242, 95, 103, 0.1);
}

.input-box i,
.select-box i {
    width: 18px;
    height: 18px;
    stroke: #f25f67;
    stroke-width: 1.8;
    fill: none;
    flex-shrink: 0;
}

.input-box input,
.select-box select {
    width: 100%;
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 500;
    cursor: pointer;
}

.input-box input::placeholder {
    color: #aaa;
    font-weight: 400;
    font-size: 13px;
}

.select-box select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 12px;
}

.select-box select:focus {
    outline: none;
}

/* Custom Select Wrapper for Duration */
.custom-select {
    position: relative;
    width: 100%;
    cursor: pointer;
}

.custom-select-trigger {
    height: 46px;
    background: #f5f7fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    border: 1.5px solid transparent;
    transition: all 0.2s ease;
}

.custom-select-trigger:hover {
    background: #eef2f7;
}

.custom-select-trigger.active {
    border-color: black;
    background: #fff;
    box-shadow: 0 0 0 2px rgba(242, 95, 103, 0.1);
}

.select-value {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 500;
}

.select-value i {
    width: 18px;
    height: 18px;
    stroke: #f25f67;
    stroke-width: 1.8;
    fill: none;
}

.chevron-icon {
    width: 14px;
    height: 14px;
    stroke: #999;
    stroke-width: 2;
    transition: transform 0.2s ease;
    fill: none;
}

.custom-select-trigger.active .chevron-icon {
    transform: rotate(180deg);
}

.custom-select-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    max-height: 200px;
    overflow-y: auto;
    z-index: 100;
    display: none;
}

.custom-select-dropdown.show {
    display: block;
}

.custom-select-dropdown::-webkit-scrollbar {
    width: 4px;
}

/* .custom-select-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.custom-select-dropdown::-webkit-scrollbar-thumb {
    background: #f25f67;
} */

.select-option {
    padding: 12px 14px;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.select-option:hover {
    background: #222;
    color: #fff;
}

.select-option i {
    width: 16px;
    height: 16px;
    stroke: #f25f67;
    stroke-width: 1.8;
    fill: none;
    flex-shrink: 0;
}

.select-option .option-text {
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 500;
}

.select-option .option-sub {
    font-size: 11px;
    color: #888;
    margin-left: auto;
}

/* TIME ROW - COMPACT */
.time-row {
    display: flex;
    align-items: center;
    gap: 10px;
    /* background: #f5f7fa; */
    padding: 0 0;
    border-radius: 10px;
    height: 46px;
}

.time-row label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    min-width: 80px;
}

.time-select-group {
    display: flex;
    gap: 6px;
    flex: 1;
}

.time-select-group select {
    flex: 1;
    height: 34px;
    border: 1px solid #e0e0e0;
    background: #fff;
    border-radius: 6px;
    padding: 0 8px;
    font-size: 13px;
    cursor: pointer;
    outline: none;
    transition: all 0.2s ease;
}

.time-select-group select:focus {
    border-color: #f25f67;
}

/* RETURN SECTION - COMPACT */
#returnFields {
    display: none;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1.5px dashed #e0e0e0;
}

#returnFields h4 {
    font-size: 13px;
    font-weight: 700;
    color: #f25f67;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

#returnFields h4 svg {
    width: 14px;
    height: 14px;
    stroke: #f25f67;
    stroke-width: 2;
    fill: none;
}

/* SUBMIT BUTTON - COMPACT */
.submit-btn {
    width: 100%;
    height: 48px;
    position: relative;
    border: 1px solid #000;
    border-radius: 999px;
    cursor: pointer;
    margin-top: 8px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;

    box-shadow:
        0 2px 8px 0 rgba(6, 10, 13, 0.12),
        inset 4px 4px 8px rgba(0, 0, 0, 0.08);

    background:
        radial-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0) 90%),
        radial-gradient(
            circle at 80% 200%,
            rgba(255, 255, 255, 0.3),
            rgba(255, 255, 255, 0) 80%
        ),
        linear-gradient(rgba(15, 19, 25, 0.35));

    background-color: rgba(0, 0, 0, 0.35);
}

.submit-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    /* border: 1px solid #000;  */

    background: linear-gradient(
            -18deg,
            rgba(255, 255, 255, 0.8) 20%,
            rgba(255, 255, 255, 0.4) 30%,
            rgba(255, 255, 255, 0.05) 40%,
            rgba(255, 255, 255, 0.05) 60%,
            rgba(255, 255, 255, 0.4) 70%,
            rgba(255, 255, 255, 0.8) 90%
        )
        border-box;

    -webkit-mask:
        radial-gradient(black) border-box,
        linear-gradient(black) padding-box;
    -webkit-mask-composite: source-out;

    mask:
        radial-gradient(black) border-box,
        linear-gradient(black) padding-box;
    mask-composite: subtract;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.submit-btn svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
    transition: transform 0.2s ease;
}

.submit-btn:hover svg {
    transform: translateX(3px);
}

/* DROPDOWN STYLES */
.input-wrapper {
    position: relative;
}
/* Add this to make time dropdowns open upward */
.input-wrapper .location-list {
    /* Override the default position */
    top: auto;
    bottom: calc(100% + 6px);
    margin-top: 0;
    margin-bottom: 6px;
}

/* Keep the original positioning for other dropdowns */
.input-wrapper:not(.time-wrapper) .location-list {
    top: 100%;
    bottom: auto;
    margin-top: 6px;
    margin-bottom: 0;
}

/* Specifically target time dropdowns */
.time-row .input-wrapper .location-list {
    top: auto;
    bottom: calc(100% + 6px);
    margin-top: 0;
    margin-bottom: 6px;
    max-height: 150px;
}

/* Optional: Add a small arrow at the bottom of upward dropdowns */
.time-row .input-wrapper .location-list.show::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #fff;
}
.location-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 100;
    display: none;
    margin-top: 6px;
}

.location-list.show {
    display: block;
}

.location-list::-webkit-scrollbar {
    width: 4px;
}

.location-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.location-list::-webkit-scrollbar-thumb {
    background: #000;
}

.location-option {
    padding: 10px 14px;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.location-option:hover {
    background: #fef5f5;
}

.location-option i {
    width: 16px;
    height: 16px;
    stroke: #f25f67;
    stroke-width: 1.8;
    fill: none;
    flex-shrink: 0;
}

.location-option .location-name {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 13px;
}

.location-option .location-address {
    font-size: 11px;
    color: #888;
    margin-top: 1px;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .booking-box {
        width: 95%;
        max-height: 90vh;
    }

    .tab-content {
        padding: 16px 16px 20px;
    }

    .time-row {
        /* flex-direction: column; */
        align-items: stretch;
        height: auto;
        padding: 12px 14px;
        gap: 8px;
    }

    .time-row label {
        min-width: auto;
    }

    .time-select-group {
        gap: 6px;
    }

    .tab-btn {
        height: 48px;
        font-size: 14px;
    }

    .tab-btn i {
        width: 16px;
        height: 16px;
    }

    .input-box,
    .select-box,
    .custom-select-trigger {
        height: 42px;
        padding: 0 12px;
    }

    .input-box svg,
    .select-box svg,
    .select-value i {
        width: 16px;
        height: 16px;
    }

    .input-box input,
    .select-box select,
    .select-value {
        font-size: 13px;
    }

    .form-group {
        margin-bottom: 12px;
    }

    .form-label {
        font-size: 10px;
    }

    .submit-btn {
        height: 44px;
        font-size: 15px;
    }
}
/* Service Detail Form Styles */
.service-booking-form {
    background: #fff;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    max-width: 480px;
    width: 110%;
    margin-bottom: -450px;
    position: relative;
    /* overflow: hidden; */
}

.service-form-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 4px;
    background: #f5f7fa;
    padding: 6px;
    /* border-radius: 50px; */
}

.service-form-tab {
    flex: 1;
    padding: 10px 20px;
    border: none;
    background: transparent;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.service-form-tab.active {
    /* background: #fff; */
    color: #000;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); */
}

/* SCROLLABLE FORM CONTENT - FIXED HEIGHT */
.service-form-scroll {
    /* max-height: 560px;
  overflow-y: auto; */
    padding: 20px;
}

/* Custom Scrollbar */
.service-form-scroll::-webkit-scrollbar {
    width: 5px;
}

.service-form-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.service-form-scroll::-webkit-scrollbar-thumb {
    background: #f25f67;
    border-radius: 10px;
}

.service-form-scroll::-webkit-scrollbar-thumb:hover {
    background: #e84a53;
}

.service-form-panel {
    display: none;
}

.service-form-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-form-group {
    margin-bottom: 16px;
}

.service-form-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #666;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-input-box,
.service-select-box {
    height: 48px;
    background: #f5f7fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    gap: 10px;
    border: 1.5px solid transparent;
    transition: all 0.2s ease;
}

.service-input-box:hover,
.service-select-box:hover {
    background: #eef2f7;
}

.service-input-box:focus-within,
.service-select-box:focus-within {
    border-color: #000;
    /* background: #fff; */
    box-shadow: 0 0 0 3px rgba(242, 95, 103, 0.1);
}

.service-input-box i,
.service-select-box i {
    width: 18px;
    height: 18px;
    stroke: #f25f67;
    flex-shrink: 0;
}

.service-input-box input,
.service-select-box select {
    width: 100%;
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 500;
}

.service-input-box input::placeholder {
    color: #aaa;
    font-weight: 400;
}

.service-select-box select {
    cursor: pointer;
}

.service-form-row {
    display: grid;
    grid-template-columns: repeat(1, 2fr);
    gap: 15px;
    margin-bottom: 16px;
}

.service-time-row {
    /* background: #f5f7fa; */
    border-radius: 12px;
    /* padding: 10px; */

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px; /* 👈 THIS creates separation */
}
.service-time-select-group {
    display: flex;
    gap: 8px;
    flex: 1;
}

.service-time-select-group select {
    flex: 1;
    height: 34px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0 8px;
    font-size: 13px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.service-time-select-group select:focus {
    outline: none;
    border-color: #f25f67;
}

.service-return-title {
    font-size: 13px;
    font-weight: 700;
    color: #f25f67;
    margin: 16px 0 12px;
    padding-top: 8px;
    border-top: 1.5px dashed #e0e0e0;
}

/* .service-submit-btn {
    width: 100%;
    height: 48px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
} */
.service-submit-btn {
    position: relative;
    width: 100%;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    margin-top: 8px;

    border: 0;
    border-radius: 999px; /* same pill shape */

    background: transparent;

    color: #fff;
    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 2px 8px 0 rgba(6, 10, 13, 0.12),
        inset 4px 4px 8px rgba(0, 0, 0, 0.08);

    background:
        radial-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0) 90%),
        radial-gradient(
            circle at 80% 200%,
            rgba(255, 255, 255, 0.3),
            rgba(255, 255, 255, 0) 80%
        ),
        linear-gradient(rgba(15, 19, 25, 0.35));

    background-color: rgba(0, 0, 0, 0.35);

    transition: all 0.3s ease;
}
.service-submit-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;

    border: 1px solid rgba(0, 0, 0, 0);

    background: linear-gradient(
            -18deg,
            rgba(0, 0, 0, 0.8) 20%,
            rgba(0, 0, 0, 0.4) 30%,
            rgba(0, 0, 0, 0.05) 40%,
            rgba(0, 0, 0, 0.05) 60%,
            rgba(0, 0, 0, 0.4) 70%,
            rgba(0, 0, 0, 0.8) 90%
        )
        border-box;

    -webkit-mask:
        radial-gradient(black) border-box,
        linear-gradient(black) padding-box;

    mask:
        radial-gradient(black) border-box,
        linear-gradient(black) padding-box;

    -webkit-mask-composite: source-out;
    mask-composite: subtract;
}
.service-submit-btn:hover {
    transform: translateY(-2px);
    background-color: #f0f0f0;
    /* box-shadow: 0 8px 20px rgba(242, 95, 103, 0.3); */
}

.service-submit-btn i {
    width: 14px;
    height: 14px;
    stroke: #fff;
    transition: transform 0.2s ease;
}

.service-submit-btn:hover svg {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 992px) {
    .service-booking-form {
        max-width: 100%;
        margin-bottom: 0;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .service-form-scroll {
        max-height: 660px;
        padding: 16px;
    }

    .service-form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* .service-time-row {
    height: auto;
    flex-direction: column;
    gap: 10px;
    padding: 12px 15px;
  } */

    .service-time-select-group {
        width: 100%;
    }

    .service-form-tab {
        padding: 10px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .service-form-scroll {
        /* max-height: 560px; */
        padding: 8px;
    }

    .service-input-box,
    .service-select-box,
    .service-time-row {
        height: 44px;
    }

    .service-input-box input,
    .service-select-box select {
        font-size: 13px;
    }

    .service-submit-btn {
        height: 44px;
        font-size: 14px;
    }
}
.form-note {
    margin-bottom: 10px;
}
.required {
    color: #e53935;
    font-weight: bold;
}
.payment-form {
    margin-top: 20px;

    padding: 20px;

    background: #fff;

    border: 1px solid #eee;

    border-radius: 10px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;

    margin-bottom: 6px;

    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;

    height: 48px;

    /* border: 1px solid #ddd; */

    border-radius: 6px;

    padding: 0 12px;
}

.payment-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}

.success-icon {
    width: 90px;
    height: 90px;

    margin: auto;

    border-radius: 50%;

    background: #28c76f;

    color: #fff;

    font-size: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;
}

.success-summary {
    margin: 25px 0;

    border: 1px solid #eee;

    border-radius: 8px;

    padding: 15px;
}

.success-summary div {
    display: flex;

    justify-content: space-between;

    margin-bottom: 10px;
}

.details-btn {
    display: block;
    box-shadow:
        0 2px 8px 0 rgba(6, 10, 13, 0.12),
        inset 4px 4px 8px rgba(0, 0, 0, 0.08);

    background:
        radial-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0) 90%),
        radial-gradient(
            circle at 80% 200%,
            rgba(255, 255, 255, 0.3),
            rgba(255, 255, 255, 0) 80%
        ),
        linear-gradient(rgba(15, 19, 25, 0.35));

    background-color: rgba(0, 0, 0, 0.35);
    color: #fff;

    text-decoration: none;

    padding: 14px;

    border-radius: 999px;
}
.details-btn ::before {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;

    border: 1px solid rgba(0, 0, 0, 0);

    background: linear-gradient(
            -18deg,
            rgba(0, 0, 0, 0.8) 20%,
            rgba(0, 0, 0, 0.4) 30%,
            rgba(0, 0, 0, 0.05) 40%,
            rgba(0, 0, 0, 0.05) 60%,
            rgba(0, 0, 0, 0.4) 70%,
            rgba(0, 0, 0, 0.8) 90%
        )
        border-box;

    -webkit-mask:
        radial-gradient(black) border-box,
        linear-gradient(black) padding-box;

    mask:
        radial-gradient(black) border-box,
        linear-gradient(black) padding-box;

    -webkit-mask-composite: source-out;
    mask-composite: subtract;
}

#successScreen {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.success-card {
    width: 100%;
    max-width: 500px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.success-top {
    background: #22c55e;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.success-icon {
    width: 72px;
    height: 72px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 42px;
    color: #22c55e;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.success-body {
    padding: 30px;
    text-align: center;
}

.success-body h2 {
    margin: 0 0 10px;
    font-size: 32px;
    color: #1f2937;
}

.success-text {
    color: #6b7280;
    margin-bottom: 25px;
    line-height: 1.6;
}

.success-summary {
    background: #f8f8f8;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    /* padding:18px; */
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed #d1d5db;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row span {
    color: #6b7280;
}

.summary-row strong {
    color: #111827;
}

.paid-amount {
    color: #000 !important;
}

.success-note {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 25px;
}

.details-btn,
.home-btn {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 12px;
    transition: 0.3s;
    box-sizing: border-box;
}

.details-btn:hover {
    transform: translateY(-2px);
}

.home-btn {
    background: #fff;
    color: #111;
    border: 2px solid #111;
}

.home-btn:hover {
    background: #f5f5f5;
}
.booking-detail {
    padding: 40px 20px;
    background-color: #f3f4f6;
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.booking-confirmed-page.email-container {
    max-width: 600px;
    width: 100%;
    margin: 80px auto 50px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.booking-confirmed-page .header {
    text-align: center;
    padding: 24px;
    background-color: #ffffff;
}

.booking-confirmed-page .booking-logo {
    max-height: 52px;
    max-width: 220px;
    height: auto;
    display: inline-block;
}

.booking-confirmed-page .tagline {
    font-size: 10px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 8px;
}

.booking-confirmed-page .hero-banner {
    background-color: #111827;
    color: #ffffff;
    text-align: center;
    padding: 32px 24px;
}

.booking-confirmed-page .hero-banner h1 {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 8px;
    letter-spacing: 0.5px;
}

.booking-confirmed-page .hero-banner p {
    font-size: 14px;
    color: #d1d5db;
    font-weight: 300;
    margin: 0;
}

.booking-confirmed-page .content {
    padding: 32px 24px;
}

.booking-confirmed-page .greeting {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 12px;
    color: #111827;
}

.booking-confirmed-page .intro-text {
    font-size: 14px;
    color: #4b5563;
    margin: 0 0 12px;
    line-height: 1.6;
}

.booking-confirmed-page .booking-ref-line {
    font-size: 12px;
    color: #9ca3af;
    margin: 0 0 20px;
}

.booking-confirmed-page .card {
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    margin-bottom: 24px;
    overflow: hidden;
}

.booking-confirmed-page .card-header {
    background-color: #f9fafb;
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #e5e7eb;
    color: #111827;
}

.booking-confirmed-page .card-header.dark {
    background-color: #1f2937;
    color: #ffffff;
    border-bottom: none;
    text-align: center;
    padding: 14px;
}

.booking-confirmed-page .card-body {
    padding: 16px;
}

.booking-confirmed-page .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.booking-confirmed-page .grid-item {
    display: flex;
    flex-direction: column;
}

.booking-confirmed-page .grid-full {
    grid-column: span 2;
    border-top: 1px dashed #e5e7eb;
    padding-top: 12px;
    margin-top: 4px;
}

.booking-confirmed-page .label {
    font-size: 11px;
    color: #9ca3af;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.booking-confirmed-page .value {
    font-size: 14px;
    color: #111827;
    font-weight: 500;
}

.booking-confirmed-page .price-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #4b5563;
    padding: 8px 4px;
}

.booking-confirmed-page .divider {
    border-top: 1px dashed #e5e7eb;
    margin: 12px 0;
}

.booking-confirmed-page .subtotal-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    padding: 4px;
}

.booking-confirmed-page .vat-text {
    font-size: 11px;
    color: #9ca3af;
    text-align: right;
    margin-top: 2px;
    font-weight: 400;
}

.booking-confirmed-page .final-amount-box {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
}

.booking-confirmed-page .final-label {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
}

.booking-confirmed-page .final-price {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
}

.booking-confirmed-page .payment-method-row {
    margin-top: 12px;
    padding-top: 0;
    font-size: 13px;
}

.booking-confirmed-page .help-text {
    font-size: 13px;
    color: #6b7280;
    text-align: center;
    margin: 0 0 24px;
    padding: 0 10px;
    line-height: 1.6;
}

.booking-confirmed-page .btn-container {
    text-align: center;
    margin-bottom: 8px;
}

.booking-confirmed-page .bc-btn {
    position: relative;
    background: #111827;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    display: inline-block;
    transition: background-color 0.2s ease;
    border: none;
    cursor: pointer;
    box-shadow: none;
}

.booking-confirmed-page .bc-btn::before {
    display: none;
    content: none;
}

.booking-confirmed-page .bc-btn:hover {
    background-color: #374151;
    color: #ffffff;
}

.booking-confirmed-page .bc-footer {
    position: static;
    overflow: visible;
    background: #fafafa;
    border-top: 1px solid #e5e7eb;
    padding: 32px 24px;
    text-align: center;
    font-size: 12px;
    color: #9ca3af;
}

.booking-confirmed-page .bc-footer::before,
.booking-confirmed-page .bc-footer::after {
    display: none;
    content: none;
}

.booking-confirmed-page .bc-footer a {
    color: #6b7280;
}

.booking-confirmed-page .rating {
    color: #111827;
    font-weight: 600;
    margin-bottom: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.booking-confirmed-page .rating-star {
    color: #fbbf24;
}

.booking-confirmed-page .bc-footer-tagline {
    margin-bottom: 20px;
    color: #6b7280;
}

.booking-confirmed-page .bc-footer-links {
    margin-bottom: 20px;
}

.booking-confirmed-page .bc-footer-links a {
    color: #6b7280;
    text-decoration: none;
    margin: 0 8px;
}

.booking-confirmed-page .bc-footer-links a:hover {
    text-decoration: underline;
    color: #111827;
}

.booking-confirmed-page .bc-divider {
    border-top: 1px dashed #e5e7eb;
    margin: 12px 0;
}

.booking-confirmed-page .bc-divider::before,
.booking-confirmed-page .bc-divider::after {
    display: none;
    content: none;
}

.booking-confirmed-page .divider {
    border-top: 1px dashed #e5e7eb;
    margin: 12px 0;
}

.booking-confirmed-page .divider::before,
.booking-confirmed-page .divider::after {
    display: none;
    content: none;
}

.booking-confirmed-page .copyright {
    font-size: 11px;
    line-height: 1.6;
    color: #9ca3af;
}

@media (max-width: 480px) {
    .booking-confirmed-page .grid {
        grid-template-columns: 1fr;
    }

    .booking-confirmed-page .grid-full {
        grid-column: span 1;
    }
}

/* Legacy email / booking styles (other pages) */
.email-container:not(.booking-confirmed-page) {
    max-width: 550px;
    margin: 150px auto 50px;
    background: #fff;
    border: 1px solid #e5e5e5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.logo-section {
    text-align: center;
    padding: 12px 15px;
}

.logo-section h2 {
    margin: 0;
    font-size: 24px;
}

.logo-section p {
    margin-top: 3px;
    font-size: 10px;
}

.success-banner {
    box-shadow:
        0 2px 8px 0 rgba(6, 10, 13, 0.12),
        inset 4px 4px 8px rgba(0, 0, 0, 0.08);
    background:
        radial-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0) 90%),
        radial-gradient(
            circle at 80% 200%,
            rgba(255, 255, 255, 0.3),
            rgba(255, 255, 255, 0) 80%
        ),
        linear-gradient(rgba(15, 19, 25, 0.35));
    background-color: rgba(0, 0, 0, 0.35);
    color: #fff;
    text-align: center;
    padding: 18px 15px;
    border: 1px solid #333;
}

.success-banner h1 {
    font-size: 26px;
    margin-bottom: 5px;
}

.success-banner p {
    font-size: 13px;
    margin: 0;
}

.content {
    padding: 20px;
}

.content p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.card {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 14px;
    margin: 15px 0;
}

.card-title {
    font-size: 11px;
    margin-bottom: 12px;
    padding-bottom: 8px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.label {
    font-size: 10px;
}

.detail-item strong {
    font-size: 13px;
}

.price-header-book {
    margin: -14px -14px 14px;
    padding: 10px;
    font-size: 14px;
}

.price-row {
    padding: 10px 0;
    font-size: 13px;
}

.final-amount {
    margin-top: 12px;
    padding: 12px;
}

.final-amount strong {
    font-size: 20px;
}

.btn-wrapper {
    margin-top: 20px;
}

.manage-btn {
    padding: 10px 24px;
    font-size: 13px;
    box-shadow:
        0 2px 8px 0 rgba(6, 10, 13, 0.12),
        inset 4px 4px 8px rgba(0, 0, 0, 0.08);
    background:
        radial-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0) 90%),
        radial-gradient(
            circle at 80% 200%,
            rgba(255, 255, 255, 0.3),
            rgba(255, 255, 255, 0) 80%
        ),
        linear-gradient(rgba(15, 19, 25, 0.35));
    background-color: rgba(0, 0, 0, 0.35);
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    border: 1px solid #333;
}

.copyright {
    font-size: 10px;
    margin-top: 10px;
}

.bottom-info {
    background: #f3f4f6;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
    border-radius: 6px;
}

.bottom-info p {
    margin: 8px 0;
    color: #666;
    font-size: 13px;
}

.footer-links {
    margin: 10px 0;
}

.footer-links a {
    text-decoration: none;
    color: #666;
    font-size: 13px;
    margin: 0 5px;
}

.footer-links a:hover {
    color: #b82c2c;
}

.parallax-banner {
    height: 300px;
    background-image: url("../images/updated-image/mercedes.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Parallax Effect */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.parallax-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
}

.banner-content-hero {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.banner-content-hero h1 {
    font-size: 16px;
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 20px;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #c0392b;
}

.content {
    padding: 80px 10%;
    line-height: 1.8;
}
.privacy-wrapper {
    background: #ffffff;

    padding: 20px 15px;
}

.privacy-card {
    max-width: 1200px;

    margin: 0 auto;

    background: #ffffff;

    padding: 10px 0;

    box-shadow: none;

    border: none;
}

.privacy-card h1 {
    font-size: 38px;

    font-weight: 500;

    color: #071c33;

    margin: 0 0 20px 0;
}

.privacy-card h3 {
    font-size: 15px;

    color: #071c33;

    font-weight: 700;

    margin-top: 14px;

    margin-bottom: 8px;
}

.privacy-card p {
    font-size: 13px;

    line-height: 1.45;

    color: #162f49;

    margin: 4px 0;
}

.privacy-card ul {
    margin: 5px 0;

    padding-left: 20px;
}

.privacy-card li {
    font-size: 13px;

    line-height: 1.5;

    color: #162f49;
}

/* Mobile */

@media (max-width: 768px) {
    .privacy-card h1 {
        font-size: 28px;
    }

    .privacy-card p,
    .privacy-card li {
        font-size: 13px;
    }
}
.booking-banner {
    position: relative;

    height: 250px;

    width: 100%;

    overflow: hidden;
}

.booking-banner {
    position: relative;
    min-height: 250px;
    width: 100%;
    overflow: hidden;
}

/* Right image */
.banner-photo {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    background-image: url("../images/updated-image/mercedes.webp");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

/* Orange section */
.orange-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 100%;
    background: #222;
    clip-path: polygon(0 0, 75% 0, 100% 100%, 0 100%);
    z-index: 2;
}

/* White separator */
.diagonal-white {
    position: absolute;
    top: 0;
    left: 38%;
    width: 70px;
    height: 100%;
    background: #fff;
    transform: skewX(33deg);
    z-index: 3;
}

/* Car */
.car {
    position: absolute;
    left: 18%;
    bottom: 20px;
    width: 270px;
    max-width: 30%;
    height: auto;
    z-index: 5;
}

/* Content */
.banner-content {
    position: absolute;
    right: 12%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    color: #fff;
    text-align: left;
}

.banner-content h2 {
    font-size: 28px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 20px;
}

/* .banner-content button {
    display: inline-block;
    background: #000;
    padding: 12px 35px;
    color: #fff;
    font-size: 13px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
} */
.banner-content button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 35px;

    border: 0;
    border-radius: 999px; /* upgraded from 4px to pill */

    background: transparent;

    color: #fff;
    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    box-shadow:
        0 2px 8px 0 rgba(6, 10, 13, 0.12),
        inset 4px 4px 8px rgba(0, 0, 0, 0.08);

    background:
        radial-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0) 90%),
        radial-gradient(
            circle at 80% 200%,
            rgba(255, 255, 255, 0.3),
            rgba(255, 255, 255, 0) 80%
        ),
        linear-gradient(rgba(15, 19, 25, 0.35));

    background-color: rgba(0, 0, 0, 0.35);

    transition: all 0.3s ease;
}
.banner-content button::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;

    border: 1px solid rgba(0, 0, 0, 0);

    background: linear-gradient(
            -18deg,
            rgba(0, 0, 0, 0.8) 20%,
            rgba(0, 0, 0, 0.4) 30%,
            rgba(0, 0, 0, 0.05) 40%,
            rgba(0, 0, 0, 0.05) 60%,
            rgba(0, 0, 0, 0.4) 70%,
            rgba(0, 0, 0, 0.8) 90%
        )
        border-box;

    -webkit-mask:
        radial-gradient(black) border-box,
        linear-gradient(black) padding-box;

    mask:
        radial-gradient(black) border-box,
        linear-gradient(black) padding-box;

    -webkit-mask-composite: source-out;
    mask-composite: subtract;
}

.banner-content button:hover {
    background-color: #f0f0f0;
    transform: translateY(-6px);

    box-shadow: 0 18px 36px rgba(18, 18, 18, 0.08);
}

.banner-content button:focus {
    outline: none;
}
/* =========================
   Tablet (992px and below)
   ========================= */
@media (max-width: 1024px) {
    .booking-banner {
        height: 220px;
    }

    .car {
        width: 220px;
        left: 10%;
    }

    .banner-content {
        right: 6%;
    }

    .banner-content h2 {
        font-size: 22px;
    }

    .diagonal-white {
        width: 60px;
        left: 37%;
    }
}
@media (min-width: 1024px) {
    .service-booking-form {
        margin-left: -80px;
    }
}

/* =========================
   Mobile (768px and below)
   ========================= */
@media (max-width: 768px) {
    .booking-banner {
        height: auto;
        min-height: 450px;
    }

    .banner-photo {
        width: 100%;
    }

    .orange-bg {
        width: 65%;
    }

    .diagonal-white {
        display: none;
    }

    .car {
        left: 50%;
        transform: translateX(-50%);
        width: 240px;
        bottom: 160px;
        max-width: 80%;
    }

    .banner-content {
        left: 0;
        right: 0;
        bottom: 40px;
        top: auto;
        transform: none;
        text-align: center;
        padding: 0 20px;
    }

    .banner-content h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    .banner-content a {
        padding: 10px 20px;
        font-size: 12px;
        background-color: white;
        color: #c0392b;
    }
}

/* =========================
   Small Mobile (480px and below)
   ========================= */
@media (max-width: 480px) {
    .booking-banner {
        min-height: 400px;
    }

    .car {
        width: 180px;
        bottom: 150px;
    }

    .banner-content h2 {
        font-size: 18px;
        line-height: 1.4;
    }

    .banner-content a {
        padding: 10px 20px;
        font-size: 12px;
        background-color: white;
        color: #c0392b;
    }

    .diagonal-white {
        width: 30px;
    }
}
.service-input-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f7fa;
    padding: 12px 14px;
    border-radius: 8px;
}

/* Icon */
.service-input-box i {
    width: 20px;
    height: 20px;
    color: #000;
}

/* Trigger button (acts like input) */
.service-dropdown-trigger {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    text-align: left;
    font-size: 14px;
    color: #111;
    cursor: pointer;
}

/* Dropdown panel */
.service-dropdown-panel {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    z-index: 50;
    max-height: 220px;
    overflow-y: auto;
}

/* Dropdown options */
.service-dropdown-option {
    width: 100%;
    padding: 12px 14px;
    border: none;
    background: #fff;
    text-align: left;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.service-dropdown-option:hover {
    background: #f0f0f0;
}

/* Optional scrollbar styling */
.service-dropdown-panel::-webkit-scrollbar {
    width: 6px;
}

.service-dropdown-panel::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}
.dropdown-wrapper {
    position: relative;
    width: 100%;
}

.dropdown-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
}

/* .dropdown-input:focus {
  outline: none;
  border-color: #c0392b;
  box-shadow: 0 0 0 2px rgba(207, 68, 86, 0.1);
} */

.dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 4px;
}

.dropdown-options.show {
    display: block;
}

.dropdown-option {
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.2s ease;
    font-size: 14px;
    color: #333;
}

.dropdown-option:hover {
    background: #f5f5f5;
    color: #5f5f5f;
}

/* Scrollbar styling */
.dropdown-options::-webkit-scrollbar {
    width: 6px;
}

.dropdown-options::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.dropdown-options::-webkit-scrollbar-thumb {
    background: #000;
    border-radius: 3px;
}

/* Hero Section - exactly same as blog-hero-section */
.city-hero-section {
    background: #000;
    padding: 150px 20px;
}

.city-hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

.city-hero-title {
    color: #fff;
    font-size: 52px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 25px;
}

.city-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.city-breadcrumb a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.city-breadcrumb a:hover {
    color: #fff;
}

.city-breadcrumb span {
    color: #9ca3af;
    font-size: 16px;
}

.city-breadcrumb .current-page {
    color: #fff;
    font-weight: 600;
}

/* Main section */
.city-section {
    padding: 80px 0;
    background: #fff;
}

.city-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

/* CITY GRID - Card Layout */
.city-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Individual City Card - with HOVER EFFECT (image pull/scale) */
.city-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0, 0, 1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid #f0f0f0;
}

@media (min-width: 768px) {
    .city-card {
        flex-direction: row;
        align-items: stretch;
        gap: 0;
    }
}

/* Image Container - with overflow hidden for pull effect */
.city-image-wrapper {
    position: relative;
    overflow: hidden;
    flex: 0 0 280px;
    background: #f5f5f5;
}

.city-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.5s ease,
        filter 0.3s ease;
    display: block;
    /* aspect-ratio: 4/3; */
}

/* HOVER EFFECT: Image scales/pulls forward */
.city-card:hover .city-image {
    transform: scale(1.08);
    filter: brightness(1.02);
}

/* Date badge */
.city-date-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    color: white;
    padding: 8px 14px;
    border-radius: 40px;
    text-align: center;
    line-height: 1.2;
    z-index: 2;
    transition: all 0.3s;
    font-weight: 500;
}

.city-date-badge .day {
    font-size: 22px;
    font-weight: 700;
    display: block;
    margin-right: 4px;
}

.city-date-badge .month {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Card content */
.city-card-content {
    padding: 28px 30px;
    flex: 1;
    background: #eee;
    transition: background 0.2s;
}

.city-category {
    display: inline-block;
    background: #eef4f2;
    padding: 5px 14px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 14px;
    letter-spacing: 0.3px;
}

.city-title {
    font-size: 26px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 14px;
    line-height: 1.3;
    transition: color 0.2s;
}

.city-card:hover .city-title {
    color: #000;
}

.city-desc {
    color: #4b5563;
    line-height: 1.65;
    margin-bottom: 24px;
    font-size: 15px;
}

/* Hover accent button / arrow */
.city-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 600;
    color: #000;
    font-size: 15px;
    transition: 0.25s;
    border-bottom: 1.5px solid transparent;
}

.city-link span {
    font-size: 22px;
    transition: transform 0.2s ease;
    display: inline-block;
}

.city-card:hover .city-link span {
    transform: translateX(6px) rotate(0deg);
}

.city-link:hover {
    gap: 18px;
    border-bottom-color: #000;
}

/* SIDEBAR - same as blog sidebar */
.city-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    border: 1px solid #e5e5e5;
    padding: 28px 25px;
    border-radius: 12px;
    background: #fff;
    transition: box-shadow 0.2s;
}

.sidebar-card h3 {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.2px;
}

.sidebar-card input {
    width: 100%;
    padding: 14px 16px;
    border: none;
    background: #f8f8f8;
    border-radius: 12px;
    outline: none;
    font-size: 15px;
    font-family: inherit;
    transition: 0.2s;
    border: 1px solid #eee;
}

.sidebar-card input:focus {
    background: #fff;
    border-color: #ccc;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

/* Tag clouds */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tags a {
    text-decoration: none;
    background: #eef4f2;
    color: #1f2937;
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.25s;
    cursor: pointer;
}

.tags a:hover {
    background: #d9e8e3;
    transform: translateY(-2px);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.pagination button {
    background: #f1f5f9;
    border: none;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s;
    color: #1e293b;
    font-family: inherit;
}

.pagination button.active {
    background: #000;
    color: white;
}

.pagination button.arrow {
    font-size: 24px;
    padding: 4px 16px;
    background: #eef2f6;
}

.pagination button:hover:not(.active) {
    background: #e2e8f0;
    color: #000;
    transform: scale(0.96);
}

/* Responsive */
@media (max-width: 768px) {
    .city-hero-title {
        font-size: 34px;
    }
    .city-breadcrumb a,
    .city-breadcrumb span,
    .city-breadcrumb .current-page {
        font-size: 14px;
    }
    .city-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .city-title {
        font-size: 22px;
    }
    .city-image-wrapper {
        flex: 0 0 220px;
    }
    .city-card-content {
        padding: 22px 24px;
    }
}

@media (max-width: 640px) {
    .city-card {
        flex-direction: column;
    }
    .city-image-wrapper {
        flex: auto;
        height: 220px;
    }
    .city-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .city-date-badge {
        top: 14px;
        left: 14px;
        padding: 5px 12px;
    }
    .city-date-badge .day {
        font-size: 18px;
    }
}

/* subtle card hover lift */
.city-card:hover {
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-color: #e0e0e0;
}
#return-fields-desktop .hero-booking-bar {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

#return-fields-desktop .hero-booking-value {
    display: -webkit-box;
    -webkit-line-clamp: 1; /* single line */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 140px; /* adjust as needed */
}

#return-fields-desktop .hero-booking-value {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 991px) {
    #return-fields-desktop .hero-booking-item {
        flex: 1 1 100%;
    }
}
iframe.goog-te-banner-frame {
    display: none !important;
}
/* ================================
   GOOGLE TRANSLATE FULL HIDE FIX
================================ */

/* Hide top Google banner iframe */
iframe.goog-te-banner-frame,
iframe.goog-te-banner-frame.skiptranslate {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
}

/* Remove body shift caused by Google */
body {
    top: 0px !important;
    position: static !important;
}

/* Fix html shift */
html {
    top: 0px !important;
}

/* Hide all skiptranslate containers */
.skiptranslate {
    display: none !important;
}

/* Remove Google widget branding */
.goog-logo-link {
    display: none !important;
}

.goog-te-gadget {
    height: 0 !important;
    overflow: hidden !important;
}

/* Prevent extra spacing */
.goog-te-combo {
    margin-top: 0 !important;
}

/* Extra strong fix for mobile/Chrome */
.goog-te-banner-frame {
    max-height: 0 !important;
    overflow: hidden !important;
}
/* .date-box {
    position: relative;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
} */

.date-box i {
    color: #111;
}

.date-input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
    color: #111;
    background: transparent;
    cursor: pointer;
}

/* Chrome / Edge calendar icon styling */
.date-input::-webkit-calendar-picker-indicator {
    filter: invert(0); /* keeps icon black */
    cursor: pointer;
}

.service-time-row {
    display: flex;
    gap: 12px;
}

.service-time-box {
    flex: 1;
    position: relative;
}

.service-dropdown-trigger {
    width: 100%;
    background: #f5f7fa;
    padding: 10px;
    border-radius: 8px;
    gap: 10px;
    text-align: left;
    cursor: pointer;
}

.service-dropdown-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    max-height: 240px;
    background: #fff;
    border: 1px solid #d0d7de; /* ✅ IMPORTANT */
    border-radius: 10px;
    z-index: 99999;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: #000 #f1f5f9;
}

/* EACH ITEM BORDER */
.service-dropdown-option {
    display: block;
    width: 100%;
    padding: 12px 14px;
    background: #fff;
    border-bottom: 1px solid #e6e6e6; /* ✅ LIST BORDER */
    cursor: pointer;
}

/* last item no border */
.service-dropdown-option:last-child {
    border-bottom: none;
}

/* hover effect */
.service-dropdown-option:hover {
    background: #f2f6ff;
}

/* No underline on buttons and button-style links */
button,
input[type="submit"],
input[type="button"],
input[type="reset"],
.btn,
[class*="-btn"] {
    text-decoration: none;
}

button:hover,
button:focus,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
.btn:hover,
.btn:focus,
[class*="-btn"]:hover,
[class*="-btn"]:focus {
    text-decoration: none;
}

.hero-booking-location-input {
    cursor: text;
    width: 100%;
    border: 0;
    padding: 0;
    background: transparent;
    outline: none;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    font-family: Arial, Helvetica, sans-serif;
}

.hero-booking-field.is-open .hero-booking-location-input {
    color: #000;
}

.hero-booking-location-input::placeholder {
    color: rgba(255, 255, 255, 0.65);
}

.hero-booking-field.is-open .hero-booking-location-input::placeholder {
    color: rgba(0, 0, 0, 0.45);
}

.service-location-input {
    width: 100%;
    cursor: text;
}

.service-location-input::placeholder {
    color: #888;
}

.pac-container {
    z-index: 10050 !important;
    border-radius: 8px;
    border-top: 0;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    font-family: inherit;
}

.booking-modal-open .pac-container,
body.booking-modal-open .pac-container {
    position: fixed !important;
    z-index: 100001 !important;
    background:
        radial-gradient(rgb(0 0 0 / 15%), rgba(0, 0, 0, 0) 90%),
        radial-gradient(
            circle at 80% 200%,
            rgba(255, 255, 255, 0.25),
            rgb(255 255 255 / 0%) 80%
        ),
        linear-gradient(rgb(0 0 0 / 78%)) !important;
    backdrop-filter: blur(16px);
}

.book-field-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 0;
}

.book-field-label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

.booking-auth-wall {
    position: fixed;
    inset: 0;
    z-index: 11000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.booking-auth-wall[hidden] {
    display: none !important;
}

.booking-auth-wall-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
}

.booking-auth-wall-dialog {
    position: relative;
    width: min(520px, 100%);
    max-height: 92vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 14px;
    padding: 28px 24px 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.booking-auth-wall-close {
    position: absolute;
    top: 14px;
    right: 14px;
    border: 0;
    background: transparent;
    font-size: 20px;
    cursor: pointer;
    color: #666;
}

.booking-auth-wall-dialog h2 {
    margin: 0 0 8px;
    font-size: 24px;
    color: #111;
}

.booking-auth-wall-subtitle {
    margin: 0 0 18px;
    color: #666;
    font-size: 14px;
}

.booking-auth-wall-dialog-simple {
    width: min(420px, 100%);
    text-align: center;
}

.booking-auth-wall-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.booking-auth-wall-actions .booking-auth-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 0;
    text-decoration: none;
}

.booking-auth-btn-outline {
    background: #fff !important;
    color: #111 !important;
    border: 1px solid #ddd !important;
    box-shadow: none !important;
}

.booking-auth-btn-outline::before {
    display: none;
}

.booking-auth-btn-outline:hover {
    background: #f7f7f7 !important;
}

.booking-auth-wall-tabs,
.booking-auth-method-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.booking-auth-tab,
.booking-auth-method {
    border: 1px solid #ddd;
    background: #f7f7f7;
    color: #333;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    cursor: pointer;
}
.booking-auth-tab:not(.is-active):hover,
.booking-auth-method:not(.is-active):hover {
    transform: translateY(-1px);
    opacity: 0.9;
}
.booking-auth-tab.is-active,
.booking-auth-method.is-active {
    position: relative;

    background: transparent;
    color: #fff;

    border-color: transparent;

    border-radius: 999px; /* same pill shape */

    box-shadow:
        0 2px 8px 0 rgba(6, 10, 13, 0.12),
        inset 4px 4px 8px rgba(0, 0, 0, 0.08);

    background:
        radial-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0) 90%),
        radial-gradient(
            circle at 80% 200%,
            rgba(255, 255, 255, 0.3),
            rgba(255, 255, 255, 0) 80%
        ),
        linear-gradient(rgba(15, 19, 25, 0.35));

    background-color: rgba(0, 0, 0, 0.35);

    transition: all 0.3s ease;
}
.booking-auth-tab.is-active::before,
.booking-auth-method.is-active::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;

    border: 1px solid rgba(0, 0, 0, 0);

    background: linear-gradient(
            -18deg,
            rgba(0, 0, 0, 0.8) 20%,
            rgba(0, 0, 0, 0.4) 30%,
            rgba(0, 0, 0, 0.05) 40%,
            rgba(0, 0, 0, 0.05) 60%,
            rgba(0, 0, 0, 0.4) 70%,
            rgba(0, 0, 0, 0.8) 90%
        )
        border-box;

    -webkit-mask:
        radial-gradient(black) border-box,
        linear-gradient(black) padding-box;

    mask:
        radial-gradient(black) border-box,
        linear-gradient(black) padding-box;

    -webkit-mask-composite: source-out;
    mask-composite: subtract;
}
.booking-auth-panel {
    display: none;
}

.booking-auth-panel.is-active {
    display: block;
}

.booking-auth-label {
    display: block;
    margin: 12px 0 6px;
    font-size: 13px;
    font-weight: 600;
    color: #222;
}

.booking-auth-input {
    width: 100%;
    border: 1px solid #d7d7d7;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 14px;
}
.booking-auth-btn:hover {
    background-color: #f0f0f0;
}
/* .booking-auth-btn {
    width: 100%;
    margin-top: 16px;
    border: 0;
    border-radius: 8px;
    background: #111;
    color: #fff;
    padding: 13px 16px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
} */
.booking-auth-btn {
    position: relative;

    width: 100%;
    margin-top: 16px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 13px 16px;

    border: 0;
    border-radius: 999px; /* same pill shape */

    color: #fff;
    font-size: 15px;
    font-weight: 600;

    cursor: pointer;

    background: transparent;

    box-shadow:
        0 2px 8px 0 rgba(6, 10, 13, 0.12),
        inset 4px 4px 8px rgba(0, 0, 0, 0.08);

    background:
        radial-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0) 90%),
        radial-gradient(
            circle at 80% 200%,
            rgba(255, 255, 255, 0.3),
            rgba(255, 255, 255, 0) 80%
        ),
        linear-gradient(rgba(15, 19, 25, 0.35));

    background-color: rgba(0, 0, 0, 0.35);

    transition: all 0.3s ease;
}
.booking-auth-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;

    border: 1px solid rgba(0, 0, 0, 0);

    background: linear-gradient(
            -18deg,
            rgba(0, 0, 0, 0.8) 20%,
            rgba(0, 0, 0, 0.4) 30%,
            rgba(0, 0, 0, 0.05) 40%,
            rgba(0, 0, 0, 0.05) 60%,
            rgba(0, 0, 0, 0.4) 70%,
            rgba(0, 0, 0, 0.8) 90%
        )
        border-box;

    -webkit-mask:
        radial-gradient(black) border-box,
        linear-gradient(black) padding-box;

    mask:
        radial-gradient(black) border-box,
        linear-gradient(black) padding-box;

    -webkit-mask-composite: source-out;
    mask-composite: subtract;
}

.booking-auth-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.booking-auth-link {
    display: inline-block;
    margin-top: 12px;
    border: 0;
    background: transparent;
    color: #111;
    text-decoration: underline;
    cursor: pointer;
    font-size: 13px;
}

.booking-auth-alert {
    margin-bottom: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    background: #edf9f0;
    color: #176b2c;
    font-size: 13px;
}

.booking-auth-alert.is-error {
    background: #fdecec;
    color: #a11919;
}

.booking-auth-alert[hidden] {
    display: none !important;
}

.booking-auth-otp-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    margin: 12px 0 4px;
}

.booking-auth-otp {
    width: 100%;
    text-align: center;
    border: 1px solid #d7d7d7;
    border-radius: 8px;
    padding: 12px 0;
    font-size: 18px;
    font-weight: 700;
}

.booking-auth-social {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 18px;
}

.booking-auth-social-btn {
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fafafa;
    padding: 10px 12px;
    font-size: 13px;
    cursor: not-allowed;
    opacity: 0.65;
}

.booking-auth-note {
    margin: 10px 0 0;
    font-size: 12px;
    color: #777;
}

.booking-auth-note-tight {
    margin: 4px 0 10px;
}

.booking-auth-switch-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
}

.booking-auth-label-heading {
    margin-top: 0;
}

.booking-auth-login-methods {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.booking-auth-login-methods .booking-auth-method {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    border-radius: 999px;
    padding: 11px 10px;
    font-weight: 600;
    font-size: 12px;
}

.booking-auth-login-methods .booking-auth-method:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.booking-auth-login-field {
    margin-top: 4px;
}

.booking-auth-social-notice {
    margin-top: 8px;
    padding: 12px;
    border-radius: 8px;
    background: #f7f7f7;
}

.booking-auth-method-tabs-register {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.booking-auth-method-tabs-register .booking-auth-method {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    border-radius: 999px;
    padding: 12px 10px;
    font-weight: 600;
}

.booking-auth-otp-block {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.booking-auth-otp-block .booking-auth-btn {
    margin-top: 12px;
}

body.booking-auth-wall-open {
    overflow: hidden;
}

.site-flash-alert {
    position: fixed;
    top: 20px;
    right: -125px;
    transform: translateX(-50%);
    z-index: 99999999999999999999;
    max-width: min(520px, calc(100% - 32px));
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
}

.site-flash-alert.fade-out {
    opacity: 0;
    transform: translateY(-10px);
}
.site-flash-alert-error {
    background: #fdecec;
    color: #a11919;
}

.site-flash-alert-success {
    background: #eef8ee;
    color: #1f6b1f;
}

.customer-dashboard-page {
    background: #f4f5f7;
}

.customer-dashboard-hero {
    margin-top: 72px;
    padding: 42px 24px 42px;
    /* background: linear-gradient(135deg, #0b0b0b 0%, #1a1f2b 100%); */
    background-color: black;
    color: #fff;
}

.customer-dashboard-hero-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.customer-dashboard-eyebrow {
    margin: 0 0 8px;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.customer-dashboard-hero h1 {
    margin: 0;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
}

.customer-dashboard-subtitle {
    margin: 10px 0 0;
    max-width: 560px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.5;
}

.customer-dashboard-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    box-shadow:
        0 2px 8px 0 rgba(6, 10, 13, 0.12),
        inset 4px 4px 8px rgba(0, 0, 0, 0.08);
    /* background:
        radial-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0) 90%),
        radial-gradient(
            circle at 80% 200%,
            rgba(255, 255, 255, 0.3),
            rgba(255, 255, 255, 0) 80%
        ),
        linear-gradient(rgba(15, 19, 25, 0.35)); */
    background:
        radial-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0) 90%),
        radial-gradient(
            circle at 80% 200%,
            rgba(255, 255, 255, 0.3),
            rgba(255, 255, 255, 0) 80%
        ),
        linear-gradient(rgb(85 90 99 / 35%));
    background-color: rgba(0, 0, 0, 0.35);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    font-size: 14px;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.customer-dashboard-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    border: 1px solid rgba(0, 0, 0, 0);
    background: linear-gradient(
            -18deg,
            rgba(255, 255, 255, 0.8) 20%,
            rgba(255, 255, 255, 0.4) 30%,
            rgba(255, 255, 255, 0.05) 40%,
            rgba(255, 255, 255, 0.05) 60%,
            rgba(255, 255, 255, 0.4) 70%,
            rgba(255, 255, 255, 0.8) 90%
        )
        border-box;
    -webkit-mask:
        radial-gradient(black) border-box,
        linear-gradient(black) padding-box;
    mask:
        radial-gradient(black) border-box,
        linear-gradient(black) padding-box;
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
}

.customer-dashboard-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.customer-dashboard-section {
    padding: 28px 24px 56px;
}

.customer-dashboard-shell {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.customer-dashboard-profile {
    background: #fff;
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: 0 10px 30px rgba(15, 19, 25, 0.06);
}

.customer-dashboard-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px;
}

.customer-dashboard-profile h2 {
    margin: 0;
    font-size: 20px;
    color: #111;
}

.customer-dashboard-member {
    margin: 6px 0 18px;
    font-size: 13px;
    color: #666;
}

.customer-dashboard-profile-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.customer-dashboard-profile-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #333;
    line-height: 1.4;
    word-break: break-word;
}

.customer-dashboard-profile-list i {
    width: 16px;
    color: #666;
    margin-top: 2px;
}

.customer-dashboard-verification {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.customer-dashboard-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    background: #f2f2f2;
    color: #444;
}

.customer-dashboard-badge.is-verified {
    background: #eaf7ea;
    color: #1f6b1f;
}

.customer-dashboard-main {
    display: grid;
    gap: 20px;
}

.customer-dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.customer-dashboard-stat-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(15, 19, 25, 0.06);
}

.customer-dashboard-stat-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    color: #fff;
    font-size: 18px;
}

.customer-dashboard-stat-icon.is-upcoming {
    background: #2f5fd0;
}

.customer-dashboard-stat-icon.is-completed {
    background: #1f8a4c;
}

.customer-dashboard-stat-card p {
    margin: 0 0 4px;
    font-size: 13px;
    color: #666;
}

.customer-dashboard-stat-card strong {
    font-size: 24px;
    color: #111;
}

.customer-dashboard-panel {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(15, 19, 25, 0.06);
}

.customer-dashboard-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.customer-dashboard-panel-head h3 {
    margin: 0;
    font-size: 18px;
    color: #111;
}

.customer-dashboard-panel-head span {
    font-size: 12px;
    color: #777;
}

.customer-dashboard-table-wrap {
    overflow-x: auto;
}
.customer-dashboard-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 680px;
}
.customer-dashboard-table th,
.customer-dashboard-table td {
    padding: 12px 10px;
    text-align: left;
    border-bottom: 1px solid #ececec;
    font-size: 14px;
    vertical-align: top;
}
.customer-dashboard-table th {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #777;
    font-weight: 600;
}
.customer-dashboard-table tbody tr:last-child td {
    border-bottom: 0;
}
.customer-dashboard-route {
    display: inline-block;
    max-width: 220px;
}
.customer-dashboard-route-arrow {
    margin: 0 6px;
    color: #999;
}
.customer-dashboard-status {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    background: #f2f2f2;
    color: #444;
}

.customer-dashboard-status.is-pending {
    background: #fff4df;
    color: #9a6400;
}

.customer-dashboard-status.is-confirmed {
    background: #e8f0ff;
    color: #2f5fd0;
}

.customer-dashboard-status.is-completed {
    background: #eaf7ea;
    color: #1f6b1f;
}

.customer-dashboard-status.is-cancelled {
    background: #fdecec;
    color: #a11919;
}

.customer-dashboard-empty {
    text-align: center;
    padding: 36px 16px;
    color: #666;
}

.customer-dashboard-empty i {
    font-size: 28px;
    margin-bottom: 10px;
    color: #999;
}

.customer-dashboard-empty p {
    margin: 0 0 10px;
}

.customer-dashboard-empty a {
    color: #111;
    font-weight: 600;
    text-decoration: underline;
}

@media (max-width: 992px) {
    .customer-dashboard-shell {
        grid-template-columns: 1fr;
    }

    .customer-dashboard-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .customer-dashboard-hero {
        margin-top: 72px;
        padding-top: 28px;
    }

    .customer-dashboard-table {
        min-width: 0;
    }

    .customer-dashboard-table thead {
        display: none;
    }

    .customer-dashboard-table tr {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid #ececec;
    }

    .customer-dashboard-table tbody tr:last-child {
        border-bottom: 0;
    }

    .customer-dashboard-table td {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        border: 0;
        padding: 8px 0;
    }

    .customer-dashboard-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #777;
        flex: 0 0 110px;
    }
    .hero-booking-field-select input::placeholder {
        color: #000;
        opacity: 1; /* important for some browsers */
    }
}
.container {
    width: min(calc(100% - (var(--site-gutter) * 2)), var(--site-max-width));
    margin: 0 auto;
    padding-left: var(--site-gutter);
    padding-right: var(--site-gutter);
}
.service-input-box {
    position: relative;
    display: flex;
    align-items: center;
}

/* Icon black */
.service-input-box .icon {
    /* position: absolute; */
    left: 12px;
    color: #000;
    font-size: 16px;
    /* pointer-events: none; */
}

/* Input text black */
.service-input-box input {
    padding-left: 34px;
    color: #000;
    caret-color: #000;
}

/* Placeholder black */
.service-input-box input::placeholder {
    color: #000;
    opacity: 1; /* important (default browsers reduce opacity) */
}
.service-input-box {
    position: relative;
    display: flex;
    align-items: center;
}

/* Icon inside input */
.service-input-box .icon {
    /* position: absolute; */
    left: 12px;
    color: #000;
    font-size: 16px;
    /* pointer-events: none; */
}

/* Input padding so text doesn't overlap icon */
.service-input-box input {
    padding-left: 0;
    color: #000;
}

/* Placeholder styling */
.service-input-box input::placeholder {
    color: #000; /* or #777 for better UX */
    opacity: 1;
}

.service-dropdown-trigger .icon-left {
    position: absolute;
    left: 12px;
    color: #000;
    font-size: 14px;
}
.booking-toggle {
    display: flex;
    align-items: center;
    justify-content: center;

    width: fit-content;

    margin: 20px auto;
    padding: 5px;

    gap: 5px;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.15);

    border: 1px solid rgba(0, 0, 0, 0.25);

    backdrop-filter: blur(20px);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.15),
        inset 0 1px 2px rgba(255, 255, 255, 0.5);
}

.booking-toggle-item {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 11px 26px;

    border-radius: 999px;

    font-size: 14px;
    font-weight: 600;

    color: #222;

    cursor: pointer;

    transition: all 0.35s ease;
}

.booking-toggle-item input {
    display: none;
}

.booking-toggle-item span {
    position: relative;
    z-index: 2;
}

/* ACTIVE BUTTON */
.booking-toggle-item:has(input:checked) {
    color: #fff;

    box-shadow:
        0 2px 8px 0 rgba(6, 10, 13, 0.12),
        inset 4px 4px 8px rgba(0, 0, 0, 0.08);

    background:
        radial-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0) 90%),
        radial-gradient(
            circle at 80% 200%,
            rgba(255, 255, 255, 0.3),
            rgba(255, 255, 255, 0) 80%
        ),
        linear-gradient(rgba(15, 19, 25, 0.35));

    background-color: rgba(0, 0, 0, 0.35);
    color: #fff;
}

/* glossy top shine */
.booking-toggle-item:has(input:checked)::before {
    content: "";

    position: absolute;
    inset: 0;

    border-radius: inherit;

    pointer-events: none;

    border: 1px solid #000;

    background: linear-gradient(
        -18deg,
        rgba(255, 255, 255, 0.8) 20%,
        rgba(255, 255, 255, 0.4) 30%,
        rgba(255, 255, 255, 0.05) 40%,
        rgba(255, 255, 255, 0.05) 60%,
        rgba(255, 255, 255, 0.4) 70%,
        rgba(255, 255, 255, 0.8) 90%
    );

    -webkit-mask:
        radial-gradient(black) border-box,
        linear-gradient(black) padding-box;

    mask:
        radial-gradient(black) border-box,
        linear-gradient(black) padding-box;

    -webkit-mask-composite: source-out;
    mask-composite: subtract;
}

.booking-toggle-item:has(input:checked) {
    color: #fff;

    background:
        radial-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0) 90%),
        radial-gradient(
            circle at 80% 200%,
            rgba(255, 255, 255, 0.3),
            rgba(255, 255, 255, 0) 80%
        ),
        linear-gradient(rgba(15, 19, 25, 0.35));

    background-color: rgba(0, 0, 0, 0.35);

    box-shadow:
        0 2px 8px rgba(6, 10, 13, 0.12),
        inset 4px 4px 8px rgba(0, 0, 0, 0.08);

    border-radius: 999px;
}

.booking-toggle-item:hover {
    transform: translateY(-2px);
}
@media (max-width: 576px) {
    .booking-toggle {
        width: 90%;
        max-width: 340px;

        padding: 4px;
        gap: 4px;

        margin: 15px auto;
    }

    .booking-toggle-item {
        flex: 1;

        padding: 10px 12px;

        font-size: 13px;

        white-space: nowrap;
    }
}
/* ====================================================== */

.hero-booking-item {
    position: relative;
}

.field-underline {
    height: 2px;
    width: 100%;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    margin-top: 4px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.field-underline::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(
        90deg,
        rgba(74, 158, 255, 0.25),
        rgba(107, 91, 255, 0.25)
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: width 0.4s ease;
}

.hero-booking-item.active .field-underline::after {
    width: 100%;
}

.hero-inner.hero-hide {
    opacity: 0 !important;
    transform: translateY(-50px);
}

.hero-booking-bar {
    height: 110px;
    position: relative;
    transition: all 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-booking-bar .innerContent {
    opacity: 0;
    position: absolute;
    top: 50%;
    text-align: center;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-booking-bar .innerContent p {
    font-size: 32px;
}

.hero-booking-bar .innerContent.show {
    opacity: 1;
}

.hero-shell.active {
    transform: translate(0, -250px) !important;
}

.hero-booking-bar.expanded {
    height: 530px;
    align-items: start;
}

.expand-content {
    max-height: 0;
    opacity: 0;
    position: relative;
    display: none;
    overflow: hidden;
    transition:
        max-height 0.6s ease,
        opacity 0.4s ease,
        padding 0.4s ease;
    padding: 0 20px;
}

.expand-content::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    border: 1px solid rgba(0, 0, 0, 0);
    background: linear-gradient(
            -18deg,
            rgba(255, 255, 255, 0.8) 20%,
            rgba(255, 255, 255, 0.4) 30%,
            rgba(255, 255, 255, 0.05) 40%,
            rgba(255, 29, 29, 0.05) 60%,
            rgba(255, 255, 255, 0.4) 70%,
            rgba(255, 255, 255, 0.8) 90%
        )
        border-box;
    -webkit-mask:
        radial-gradient(black) border-box,
        linear-gradient(black) padding-box;
    mask:
        radial-gradient(black) border-box,
        linear-gradient(black) padding-box;
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
}

.expand-content .icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 25px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: #fff;
}

.hero-booking-wrap.active .expand-content {
    max-height: 400px;
    height: 400px;
    display: flex;
    opacity: 1;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    border-radius: 0 0 44px 44px;
    backdrop-filter: blur(16px);
    position: relative;
    z-index: -1;
    box-shadow:
        0 2px 8px rgba(6, 10, 13, 0.12),
        inset 4px 4px 8px rgba(0, 0, 0, 0.06);
    background:
        radial-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0) 90%),
        radial-gradient(
            circle at 80% 200%,
            rgba(255, 255, 255, 0.25),
            rgba(255, 255, 255, 0) 80%
        ),
        linear-gradient(rgba(15, 19, 25, 0.2));
    background-color: rgba(0, 0, 0, 0.2);
}

.hero-booking-wrap.active .hero-booking-bar {
    border-radius: 44px 44px 0 0;
}

/* ================= GOOGLE PLACE DROPDOWN ================= */
.pac-container {
    max-height: 320px !important;
    overflow-y: auto !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
        0 2px 8px rgba(6, 10, 13, 0.12),
        inset 4px 4px 8px rgba(0, 0, 0, 0.06);
    background:
        radial-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0) 90%),
            radial-gradient(
                circle at 80% 200%,
                rgb(0 0 0),
                rgba(255, 255, 255, 0) 80%
            ),
            linear-gradient(rgb(29 29 29));
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px !important;
    margin-top: 10px;
    width: 420px !important;
    padding: 10px 0 10px !important;
    z-index: 99999 !important;
}
/* .pac-logo:after {
    display: none !important;
} */

.pac-container:after {
    background-image: none !important;
    height: 35px;
    background: linear-gradient(
        to top,
        rgba(18, 22, 28, 1),
        transparent
    ) !important;
}

.pac-item {
    height: auto !important;
    padding: 14px 18px !important;
    margin: 4px 10px;
    border-radius: 12px;
    color: #cfcfcf !important;
    font-size: 14px !important;
    cursor: pointer;
    transition: 0.25s ease;
    display: flex;
    align-items: center;
}

.pac-item:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    transform: translateX(5px);
}

.pac-item-query {
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 600;
    padding-right: 3px;
}

.pac-item span {
    color: #b5b5b5 !important;
}

.pac-matched {
    color: #00d9ff !important;
}

.pac-icon {
    filter: invert(1);
    opacity: 0.9;
    margin-right: 12px;
}

.pac-container::-webkit-scrollbar {
    width: 5px;
}

.pac-container::-webkit-scrollbar-track {
    background: transparent;
}

.pac-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.35);
    border-radius: 10px;
}

@media (max-width: 768px) {
    .pac-container {
        width: calc(100vw - 30px) !important;
        left: 15px !important;
        max-height: 280px !important;
    }

    .pac-item {
        padding: 13px 14px !important;
    }

    .pac-item-query {
        font-size: 15px !important;
    }
}

.pac-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top left,
        rgba(255, 255, 255, 0.06),
        transparent 60%
    );
    pointer-events: none;
}

/* Duration Dropdown */
.duration-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 12px;
    width: 260px;
    max-height: 320px;
    border-radius: 20px;
    padding: 12px 8px;
    display: none;
    color: #fff;
    z-index: 999;
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
        0 2px 8px rgba(6, 10, 13, 0.12),
        inset 4px 4px 8px rgba(0, 0, 0, 0.06);
    background:
        radial-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0) 90%),
        radial-gradient(
            circle at 80% 200%,
            rgba(255, 255, 255, 0.25),
            rgba(255, 255, 255, 0) 80%
        ),
        linear-gradient(rgba(15, 19, 25, 0.2));
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.duration-dropdown.show {
    display: block;
    animation: dropdownFadeIn 0.25s ease;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.duration-dropdown-list {
    max-height: 260px;
    overflow-y: auto;
    padding: 4px;
}

.duration-dropdown-list::-webkit-scrollbar {
    width: 4px;
}

.duration-dropdown-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
}

.duration-dropdown-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

.duration-dropdown-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}

.duration-item {
    padding: 12px 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.duration-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
    color: #fff;
}

.duration-item:active {
    transform: scale(0.98);
}

.duration-item.selected {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.duration-item .duration-check {
    opacity: 0;
    transition: opacity 0.2s ease;
    color: #fff;
    font-size: 16px;
}

.duration-item.selected .duration-check {
    opacity: 1;
}

.duration-item .duration-sub {
    font-size: 12px;
    opacity: 0.5;
    display: block;
    margin-top: 2px;
}

.duration-item.selected .duration-sub {
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.8);
}

/* Time Dropdown */
.time-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 12px;
    width: 260px;
    max-height: 420px;
    border-radius: 20px;
    padding: 16px 12px 12px;
    display: none;
    color: #fff;
    z-index: 999;
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
        0 2px 8px rgba(6, 10, 13, 0.12),
        inset 4px 4px 8px rgba(0, 0, 0, 0.06);
    background:
        radial-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0) 90%),
        radial-gradient(
            circle at 80% 200%,
            rgba(255, 255, 255, 0.25),
            rgba(255, 255, 255, 0) 80%
        ),
        linear-gradient(rgba(15, 19, 25, 0.2));
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.time-dropdown.show {
    display: block;
    animation: dropdownFadeIn 0.25s ease;
}

.time-dropdown-search {
    padding: 0 4px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.time-dropdown-search input {
    width: 100%;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.time-dropdown-search input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.time-dropdown-search input:focus {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
}

.time-dropdown-list {
    max-height: 280px;
    overflow-y: auto;
    padding: 8px 4px;
    margin: 0 -4px;
}

.time-dropdown-list::-webkit-scrollbar {
    width: 4px;
}

.time-dropdown-list::-webkit-scrollbar-track {
    background: #777;
    border-radius: 4px;
}

.time-dropdown-list::-webkit-scrollbar-thumb {
    background: black;
    border-radius: 4px;
}

.time-item {
    padding: 10px 14px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.time-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
    color: #fff;
}

.time-item:active {
    transform: scale(0.98);
}

.time-item.selected {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.time-item .time-check {
    opacity: 0;
    transition: opacity 0.2s ease;
    color: #fff;
    font-size: 16px;
}

.time-item.selected .time-check {
    opacity: 1;
}

.time-item .time-period {
    font-size: 11px;
    opacity: 0.5;
    margin-left: 4px;
}

.time-item.selected .time-period {
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.8);
}

.time-item.current-time {
    border-left: 2px solid rgba(255, 255, 255, 0.3);
}

/* Calendar */
.calendar-popup {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 12px;
    width: 360px;
    border-radius: 20px;
    padding: 24px 20px 20px;
    display: none;
    color: #fff;
    z-index: 999;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
        0 2px 8px rgba(6, 10, 13, 0.12),
        inset 4px 4px 8px rgba(0, 0, 0, 0.06);
    background:
        radial-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0) 90%),
        radial-gradient(
            circle at 80% 200%,
            rgba(255, 255, 255, 0.25),
            rgba(255, 255, 255, 0) 80%
        ),
        linear-gradient(rgba(15, 19, 25, 0.2));
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.calendar-popup.show {
    display: block;
    animation: dropdownFadeIn 0.3s ease;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 4px;
}

.calendar-nav {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.calendar-nav:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.05);
}

.calendar-nav:active {
    transform: scale(0.95);
}

.calendar-month-year {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 16px;
}

.calendar-day {
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.2s ease;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    user-select: none;
}

.calendar-day:hover:not(.empty):not(.disabled) {
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.05);
}

.calendar-day.empty {
    cursor: default;
    visibility: hidden;
}

.calendar-day.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.calendar-day.today {
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.calendar-day.selected {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-weight: 600;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.calendar-day.selected:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.calendar-day.weekend {
    color: rgba(255, 255, 255, 0.5);
}

.calendar-day.selected.weekend {
    color: #fff;
}

/* Clear button */
.hero-booking-field {
    position: relative;
}

.clear-btn {
    position: absolute;
    right: -6px;
    font-weight: 600;
    top: 70%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: transparent;
    /* backdrop-filter: blur(6px); */
    border: none;
    color: #fff;
    font-size: 12px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition:
        background 0.25s ease,
        opacity 0.25s ease;
}

.clear-btn:hover {
    background: rgba(255, 255, 255, 0.18);
}

.clear-btn.show {
    display: flex;
}

.hero-flight-field.has-error .field-underline {
    background: #e53935;
}

.hero-flight-field.has-error .field-underline::after {
    width: 0;
}

.flight-field-error-icon {
    position: absolute;
    right: 4px;
    top: 70%;
    transform: translateY(-50%);
    color: #e53935;
    font-size: 16px;
    line-height: 1;
    z-index: 11;
    pointer-events: none;
}

.hero-flight-field .clear-btn.show {
    right: 28px;
}

.hero-flight-field .hero-booking-location-input {
    padding-right: 28px;
}

.hero-flight-field.has-error .hero-booking-location-input {
    padding-right: 52px;
}

@media (max-width: 768px) {
    .time-dropdown,
    .duration-dropdown {
        width: 90vw;
        left: -69px;
        right: 0;
        max-height: 380px;
        padding: 12px 10px;
        background:
            radial-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0) 90%),
            radial-gradient(
                circle at 80% 200%,
                rgb(0 0 0),
                rgba(255, 255, 255, 0) 80%
            ),
            linear-gradient(rgb(29 29 29));
    }

    .time-item,
    .duration-item {
        padding: 12px 14px;
        font-size: 15px;
    }

    .calendar-popup {
        background:
            radial-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0) 90%),
            radial-gradient(
                circle at 80% 200%,
                rgb(0 0 0),
                rgba(255, 255, 255, 0) 80%
            ),
            linear-gradient(rgb(29 29 29));
        width: 90vw;
        left: -69px;
        right: 0;
        padding: 20px 16px;
    }

    .calendar-day {
        height: 38px;
        font-size: 14px;
    }
}
::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-thumb {
    background: black;
    border-radius: 4px;
}
::-webkit-scrollbar-track {
    background: #777;
    border-radius: 4px;
}
@media screen and (max-width: 576px) {
    .container {
        width: 100%;
    }
}

/* Submit button loading state */
.btn-is-loading {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    pointer-events: none;
    opacity: 0.88;
    cursor: wait !important;
}

.luxride-btn-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: luxride-spin 0.65s linear infinite;
    flex-shrink: 0;
}

.luxride-btn-loading-text {
    line-height: 1.2;
}

@keyframes luxride-spin {
    to {
        transform: rotate(360deg);
    }
}
.input-box,
.input-box input,
.booking-location-input {
    -webkit-tap-highlight-color: transparent;
}
input,
textarea,
select,
button {
    -webkit-tap-highlight-color: transparent;
    outline: none;
}
#oneway-fields-mobile input::placeholder, #hourly-fields-mobile input::placeholder{
    color: #666 !important;
}