*{margin:0; padding:0; box-sizing:border-box;  font-family: "Inter", sans-serif;}

:root {
    --dynamic-color: #eb5c23;
}

.site-top-bar {
    background: #0f172a;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.8125rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-top-bar__link {
    color: inherit;
}

.site-top-bar__link:hover,
.site-top-bar__link:focus-visible {
    color: #fff;
}

.site-top-bar__link:focus-visible {
    outline: 2px solid var(--dynamic-color);
    outline-offset: 2px;
}

.site-top-bar__ico {
    color: var(--dynamic-color);
    font-size: 0.9em;
}

.site-header {border-bottom:1px solid #e5e5e5;}

.site-header__inner {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    box-sizing: border-box;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    background: var(--dynamic-color);
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -0.02em;
    text-decoration: none;
    border-radius: 6px;
}

.site-logo:hover {
    filter: brightness(1.05);
    color: #ffffff;
}

.site-logo--image {
    background: transparent;
    padding: 6px 0;
}

.site-logo--image:hover {
    filter: none;
    opacity: 0.92;
}

.site-logo--image img {
    display: block;
    max-height: 44px;
    width: auto;
    object-fit: contain;
}

/* Admin (Skydash) quick link bar */
.laravel-admin-quickbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.75rem;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    background: #1c1917;
    color: #e7e5e4;
    border-bottom: 1px solid #44403c;
}

.laravel-admin-quickbar a {
    color: #fff;
    text-decoration: none;
}

.laravel-admin-quickbar a:hover {
    text-decoration: underline;
    color: #fff;
}

.laravel-admin-quickbar__sep {
    opacity: 0.35;
    user-select: none;
}

.site-header__nav {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--header-text);
    text-decoration: none;
    font-weight: 400;
}

.nav-link:hover {
    color: #111111;
}

.nav-link__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #555555;
}

.nav-link__icon--circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #444444;
}

.nav-link__icon--user {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: #ffeae1;
    color: var(--dynamic-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.navbar-nav .nav-link--account {
    color: #000000;
    font-weight: 500;
    text-decoration: none;
}

.navbar-nav .nav-link--account:hover,
.navbar-nav .nav-link--account:focus {
    color: #000000;
}

.nav-link--account {
    font-weight: 500;
}

.navbar-nav button.nav-link--account {
    color: #000000;
    cursor: pointer;
}

@media (max-width: 640px) {
    .site-header__inner {
        padding: 10px 16px;
        gap: 12px;
    }

    .site-header__nav {
        gap: 14px;
    }
}

/* Small promo banner — photo + bottom-left white card */


.promo-banner {
    position: relative;
    overflow: hidden;
    min-height: 450px;
    background: #0f172a;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.1);
}


.promo-banner__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.promo-banner__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.promo-banner__inner {
    position: relative;
    z-index: 2;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 3vw, 1.5rem);
}

.promo-banner__inner--stack {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
}

.promo-banner__card {
    width: 100%;
    max-width: 52rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 0 0.5rem;
}

.promo-banner__title {
    font-family: "Instrument Sans", Inter, system-ui, sans-serif;
    font-size: clamp(1.65rem, 4.2vw, 2.35rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin: 0 0 0.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.promo-banner__sub {
    font-size: clamp(0.875rem, 1.8vw, 0.98rem);
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 1.25rem;
    font-weight: 400;
}

.promo-banner__trust {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 0.75rem;
}

.promo-banner__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.promo-banner__trust-ico {
    display: flex;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.promo-banner__trust-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px dotted rgba(255, 255, 255, 0.45);
    padding-bottom: 2px;
}

.promo-banner__trust-sep {
    color: rgba(255, 255, 255, 0.45);
    font-weight: 300;
    font-size: 0.9rem;
    user-select: none;
}

.promo-banner__text {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #fff;
    margin: 0 0 1.1rem;
}

.promo-banner__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.35rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #ffffff;
    background: #2563eb;
    border-radius: 999px;
    text-decoration: none;
    border: none;
    transition: background 0.15s ease, transform 0.15s ease;
}

.promo-banner__btn:hover {
    background: #1d4ed8;
    color: #ffffff;
}

.promo-banner__btn:active {
    transform: translateY(1px);
}

@media (max-width: 767px) {
    .promo-banner {
        min-height: 280px;
        max-height: none;
    }

    .promo-banner__inner {
        min-height: 280px;
        max-height: none;
        align-items: center;
    }

    .promo-banner__inner--stack {
        align-items: stretch;
    }

    .promo-banner__card {
        max-width: 100%;
    }

    .promo-banner__text {
        max-width: none;
    }

    .promo-banner__trust {
        flex-direction: column;
        gap: 0.35rem;
    }

    .promo-banner__trust-sep {
        display: none;
    }
}

/* —— Travel search (Agoda-style) —— */
.travel-search {
    width: 100%;
    max-width: 72rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    margin-top: -50px;
}

.travel-search__tabs-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: -10px;
    padding-bottom: 10px;
    position: relative;
    z-index: 3;
}

.travel-search__tabs-scroll::-webkit-scrollbar {
    height: 4px;
}

.travel-search__tabs-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.35);
    border-radius: 4px;
}

.travel-search__tabs {
    display: inline-flex;
    align-items: stretch;
    gap: 0.2rem;
    padding: 0.5rem 0.65rem;
    background: #000;
    border-radius: 12px 12px 0 0;
    min-width: min-content;
}

.travel-search__tab {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    padding: 6px 15px;
    border: none;
    border-radius: 5px;
    background: transparent;
    color: #f1f5f9;
    font-size: 0.8125rem;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    font-family: inherit;
}

.travel-search__tabs a.travel-search__tab,
.travel-search__tabs a.travel-search__tab:visited {
    text-decoration: none;
    color: #f1f5f9;
}

.travel-search__tab:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.travel-search__tab.is-active {
    background: var(--dynamic-color);
    color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.travel-search__tab-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.95;
}

.travel-search__tab-icon i {
    font-size: 1rem;
    line-height: 1;
}

.travel-search__tab.is-active .travel-search__tab-icon {
    color: #fff;
}

.travel-search__panel {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.18), 0 4px 12px rgba(15, 23, 42, 0.08);
    padding: 1rem;
    position: relative;
    z-index: 2;
    border-top-left-radius: 0;
}

/* Cab-only search (no holiday tabs row): full rounded panel */
.travel-search--cab-only .travel-search__panel--cab-single {
    border-radius: 14px;
    border-top-left-radius: 14px;
}

/*
 * Cab search page — hero typography (override per site without touching rules below):
 * body.cab-search-page { --cab-search-title-size: 2.5rem; --cab-search-title-weight: 800; }
 */
.cab-search-page {
    --cab-search-title-font: "Instrument Sans", Inter, system-ui, sans-serif;
    --cab-search-title-size: clamp(1.65rem, 4.2vw, 2.35rem);
    --cab-search-title-weight: 700;
    --cab-search-title-line-height: 1.15;
    --cab-search-title-tracking: -0.03em;
    --cab-search-title-color: #ffffff;
    --cab-search-title-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
    --cab-search-lede-font: inherit;
    --cab-search-lede-size: clamp(0.875rem, 1.8vw, 1rem);
    --cab-search-lede-weight: 400;
    --cab-search-lede-line-height: 1.45;
    --cab-search-lede-color: rgba(255, 255, 255, 0.92);
    --cab-search-lede-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

/* /cabs/search — hero text + spacing so footer clears the overlapping card */
.cab-search-page__banner-inner {
    justify-content: flex-end;
    padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.cab-search-page__banner-card {
    width: 100%;
    max-width: 52rem;
    margin: 0 auto;
    padding: 0 0.5rem;
    text-align: center;
}

.cab-search-page__title {

    font-size:40px;
    font-weight: 700;
    line-height: 1.2;
    color:#fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.cab-search-page__lede {
    font-family: var(--cab-search-lede-font);
    font-size: var(--cab-search-lede-size);
    font-weight: var(--cab-search-lede-weight);
    line-height: var(--cab-search-lede-line-height);
    color: var(--cab-search-lede-color);
    text-shadow: var(--cab-search-lede-shadow);
}

.cab-search-page__hero {
    padding-bottom: 0;
}

@media (max-width: 767px) {
    .cab-search-page__hero {
        padding-bottom: 0;
    }
}

/* —— Cab search: fleet showcase (dark band full width; grid inside Bootstrap .container) —— */
.cab-search-fleet {
    --cab-search-fleet-card-bg: #15151f;
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
    box-sizing: border-box;
}

.cab-search-fleet__intro {
    margin-bottom: 1.75rem;
}

@media (min-width: 768px) {
    .cab-search-fleet__intro {
        margin-bottom: 2rem;
    }
}

.cab-search-fleet__title {
    font-family: "Instrument Sans", Inter, system-ui, sans-serif;
    font-size: clamp(1.35rem, 2.8vw, 1.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 0.35rem;
    color: #fff;
}

.cab-search-fleet__dek {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.72);
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .cab-search-fleet__dek {
        margin-left: 0;
        margin-right: 0;
    }
}

.cab-search-fleet-card {
    background: var(--cab-search-fleet-card-bg);
    border-radius: clamp(18px, 3vw, 22px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.cab-search-fleet-card--action {
    appearance: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    text-align: left;
    cursor: pointer;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
}

.cab-search-fleet-card--action:focus-visible {
    outline: 2px solid var(--dynamic-color, #eb5c23);
    outline-offset: 3px;
}

.cab-search-fleet-card:hover {
    transform: translateY(-4px);
    border-color: rgba(235, 92, 35, 0.45);
    border-color: color-mix(in srgb, var(--dynamic-color, #eb5c23) 55%, transparent);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.cab-search-fleet-card__visual {
    aspect-ratio: 16 / 11;
    display: flex;
    align-items: center;
    justify-content: center;
    padding:0px;
    background: radial-gradient(circle at 50% 85%, rgba(255, 255, 255, 0.07), transparent 58%);
}

.cab-search-fleet-card__img {
    width: 100%;
    height: 100%;
    object-fit:cover;
}

.cab-search-fleet-card__placeholder {
    color: rgba(255, 255, 255, 0.22);
    font-size: 3rem;
    line-height: 1;
}

.cab-search-fleet-card__body {
    padding: 0.65rem 1.25rem 1.35rem;
}

.cab-search-fleet-card__pill {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.94);
    background: color-mix(in srgb, var(--dynamic-color, #eb5c23) 22%, #050505);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cab-search-fleet-card__name {
    display: block;
    margin: 0.65rem 0 0;
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

/* —— Cab search: fleet explore band (admin-driven; black / charcoal cards) —— */
.cab-fleet-explore {
    background: #000000;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cab-fleet-explore__title {
    font-family: "Instrument Sans", Inter, system-ui, sans-serif;
    font-size: clamp(1.25rem, 2.6vw, 1.85rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 0.5rem;
    color: #ffffff;
}

.cab-fleet-explore-card {
    background: #1a1a1a;
    border-radius: clamp(20px, 3vw, 28px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.06);
    height: 100%;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    transition: transform 0.15s ease, border-color 0.15s ease;
}

.cab-fleet-explore-card--action {
    appearance: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    text-align: left;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.cab-fleet-explore-card--action:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--dynamic-color, #eb5c23) 50%, rgba(255, 255, 255, 0.1));
}

.cab-fleet-explore-card--action:focus-visible {
    outline: 2px solid var(--dynamic-color, #eb5c23);
    outline-offset: 3px;
}

.cab-fleet-explore-card__visual {
    aspect-ratio: 16 / 11;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 50% 90%, rgba(255, 255, 255, 0.06), transparent 55%);
}

.cab-fleet-explore-card__img {
    width: 100%;
    height: 100%;
    object-fit:cover;
}

.cab-fleet-explore-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 6rem;
    color: rgba(255, 255, 255, 0.28);
    font-size: 2.75rem;
}

.cab-fleet-explore-card__body {
    padding: 0.75rem 1.25rem 1.5rem;
}

.cab-fleet-explore-card__pill {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.32rem 0.75rem;
    border-radius: 999px;
    color: #ffffff;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.cab-fleet-explore-card__name {
    display: block;
    margin: 0.75rem 0 0;
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}

/* —— Cab search: “why us” band (light theme; 3 cols + arch image) —— */
.cab-search-why {
    background: #fff;
    color: #0f172a;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.cab-search-why__heading {
    font-family: "Instrument Sans", Inter, system-ui, sans-serif;
    font-size: clamp(1.35rem, 2.8vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
    max-width: 44rem;
    margin-inline: auto;
    color: #0f172a;
}

.cab-search-why__stack {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cab-search-why-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.cab-search-why-item__icon {
    flex: 0 0 auto;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--dynamic-color, #eb5c23);
    background: color-mix(in srgb, var(--dynamic-color, #eb5c23) 12%, #ffffff);
    border: 1px solid color-mix(in srgb, var(--dynamic-color, #eb5c23) 22%, transparent);
}

.cab-search-why-item__title {
    font-size: clamp(1rem, 1.6vw, 1.125rem);
    font-weight: 700;
    margin: 0 0 0.35rem;
    color: #0f172a;
}

.cab-search-why-item__dek {
    font-size: 0.9375rem;
    line-height: 1.55;
    color: #475569;
}

.cab-search-why__rule {
    border: 0;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    margin: 1.25rem 0;
    opacity: 1;
}

.cab-search-why__frame {
    max-width: min(100%, 20rem);
    margin-left: auto;
    margin-right: auto;
    aspect-ratio: 3 / 4.1;
    border-radius: 999px 999px 1.25rem 1.25rem;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
    background: #e2e8f0;
}

.cab-search-why__frame-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 991.98px) {
    .cab-search-why__frame {
        max-width: min(100%, 17rem);
        aspect-ratio: 3 / 3.6;
    }
}

/* —— Cab search: related cabs card grid (4 columns on xl) —— */
.cab-related-wrap {
    background: #fff;
    border-top: 0;
}

.cab-related__intro {
    margin-bottom: 1.75rem;
}

@media (min-width: 768px) {
    .cab-related__intro {
        margin-bottom: 2rem;
    }
}

.cab-related__title {
    font-family: "Instrument Sans", Inter, system-ui, sans-serif;
    font-size: clamp(1.25rem, 2.4vw, 1.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin: 0 0 0.5rem;
}

.cab-related__dek {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #475569;
}

.cab-related-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 22px rgba(15, 23, 42, 0.06);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.cab-related-card:hover {
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
    transform: translateY(-2px);
}

.cab-related-card__media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e2e8f0;
    text-decoration: none;
}

.cab-related-card__media img,
.cab-related-card__media .cab-related-card__media-ph {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.cab-related-card__media:hover img {
    transform: scale(1.04);
}

.cab-related-card__media-ph {
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: none;
    color: #94a3b8;
    font-size: 2.5rem;
    background: #e2e8f0;
}

.cab-related-card__body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: 1rem 1rem 1.15rem;
}

.cab-related-card__badge {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--dynamic-color);
    margin-bottom: 0.35rem;
}

.cab-related-card__name {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin: 0 0 0.35rem;
}

.cab-related-card__name-link {
    color: #0f172a;
    text-decoration: none;
}

.cab-related-card__name-link:hover {
    color: var(--dynamic-color);
}

.cab-related-card__facts li + li {
    margin-top: 0.35rem;
}

.cab-related-card__facts-k {
    display: inline-block;
    min-width: 4.5rem;
    color: #64748b;
    font-weight: 500;
}

.cab-related-card__fineprint {
    line-height: 1.4;
}

.cab-related-card__actions .btn-group {
    width: 100%;
}

.cab-related-card__actions .btn-group > .btn {
    flex: 1 1 auto;
}

.travel-search__form {
    margin: 0;
    width: 100%;
}

.flatpickr-calendar {
    z-index: 12000;
}

.travel-search__select {
    width: 100%;
    max-width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.875rem;
    font-weight: 700;
    color: #1e3a5f;
    font-family: inherit;
    cursor: pointer;
    appearance: none;
    padding: 0;
    margin: 0;
    line-height: 1.35;
}

.travel-search__field--guests.travel-search__field {
    position: relative;
}

.travel-search__row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0.5rem;
}

.travel-search__field {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.75rem 1rem;
    min-height: 4.75rem;
    box-sizing: border-box;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #ffffff;
}

.travel-search__field--grow {
    flex: 1.35 1 120px;
    min-width: min(100%, 200px);
}

.travel-search__label {
    font-size: 0.6875rem;
    font-weight: 500;
    color: #94a3b8;
    letter-spacing: 0.02em;
    text-transform: none;
}

.travel-search__input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1e3a5f;
    background: transparent;
    padding: 0;
    margin: 0;
}

.travel-search__input::placeholder {
    color: #64748b;
    font-weight: 600;
}
.travel-search__field--dates {
    flex: 1.15 1 260px;
    flex-direction: row;
    align-items: flex-end;
    flex-wrap: nowrap;
    gap: 0.5rem 0.65rem;
    justify-content: space-between;
}

.travel-search__field--dates--flight {
    flex: 1.25 1 180px;
}

.travel-search__date-col {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.travel-search__date-trigger {
    position: relative;
    display: block;
    cursor: pointer;
    margin: 0;
    min-height: 1.5rem;
}

input.travel-search__flatpickr {
    cursor: pointer;
}

.travel-search__label-hint {
    font-weight: 500;
    color: #94a3b8;
    font-size: 0.625rem;
    letter-spacing: 0.02em;
    text-transform: none;
}

.travel-search__field--cab-date {
    flex: 1 1 150px;
    min-width: min(100%, 148px);
    max-width: 220px;
}

.travel-search__field--cab-time {
    flex: 1.15 1 220px;
    min-width: min(100%, 200px);
}

.travel-search__field--cab-time .travel-search__label {
    margin-bottom: 0.1rem;
}

.cab-time-slots {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.35rem;
    width: 100%;
}

.cab-time-slots__sep {
    font-size: 1rem;
    font-weight: 800;
    color: #1e3a5f;
    line-height: 1;
    padding: 0 0.05rem;
    user-select: none;
}

.cab-time-slots__sel {
    flex: 1 1 0;
    min-width: 0;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
    font-size: 0.875rem;
    font-weight: 700;
    color: #1e3a5f;
    font-family: inherit;
    padding: 0.4rem 0.35rem;
    cursor: pointer;
    line-height: 1.2;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M3 4.5L6 7.5L9 4.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.4rem center;
    padding-right: 1.35rem;
}

.cab-time-slots__sel:focus {
    outline: 2px solid var(--dynamic-color);
    outline-offset: 1px;
    border-color: var(--dynamic-color);
    background-color: #fff;
}

.cab-time-slots__sel--ampm {
    flex: 0 0 auto;
    min-width: 4.25rem;
}

.travel-search__nights {
    font-size: 0.6875rem;
    font-weight: 500;
    color: #94a3b8;
    align-self: center;
    padding: 0 0.15rem;
    white-space: nowrap;
}

.travel-search__field--guests {
    flex: 1 1 160px;
    position: relative;
    cursor: default;
    text-align: left;
    font: inherit;
    padding-right: 2.25rem;
}

.travel-search__guests-field {
    z-index: 5;
}

.travel-search__guests-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    font: inherit;
    text-align: left;
    cursor: pointer;
    color: inherit;
}

.travel-search__guests-trigger:focus-visible {
    outline: 2px solid var(--dynamic-color);
    outline-offset: 2px;
    border-radius: 4px;
}

.guests-popover {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    z-index: 13000;
    max-width: min(400px, calc(100vw - 2rem));
}

.guests-popover__card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.15), 0 4px 12px rgba(15, 23, 42, 0.08);
    padding: 15px;
    border: 1px solid #eef0f3;
}

.guests-room + .guests-room {
    margin-top: 1.35rem;
    padding-top: 1.35rem;
    border-top: 1px solid #eef0f3;
}

.guests-room__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.guests-room__title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    flex: 1;
    min-width: 0;
}

.guests-room__remove {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    color: #64748b;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.guests-room__remove:hover {
    color: #dc2626;
    border-color: #fecaca;
    background: #fef2f2;
}

.guests-room__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.guests-room__row:last-child {
    margin-bottom: 0;
}

.guests-room__label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #0f172a;
}

.guests-room__label-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.guests-room__hint {
    font-size: 0.6875rem;
    font-weight: 500;
    color: #94a3b8;
}

.guests-stepper {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.guests-stepper__btn {
    width: 32px;
    height: 32px;
    padding: 0;
    border: 1px solid #d1d5db;
    border-radius: 50%;
    background: #ffffff;
    color: #374151;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.guests-stepper__btn:hover:not(:disabled) {
    background: #f8fafc;
    border-color: #94a3b8;
}

.guests-stepper__btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.guests-stepper__val {
    min-width: 1.5rem;
    text-align: center;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1e3a5f;
}

.guests-popover__add-wrap {
    text-align: right;
    margin: 0.25rem 0 1.25rem;
}

.guests-popover__add-link {
    background: none;
    border: none;
    padding: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: #2563eb;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
}

.guests-popover__add-link:hover {
    text-decoration: underline;
}

.guests-popover__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 0.25rem;
}

.guests-popover__footer--end {
    justify-content: flex-end;
}

.guests-popover__footer-link {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #2563eb;
    text-decoration: none;
}

.guests-popover__footer-link:hover {
    text-decoration: underline;
}

.guests-popover__done {
    padding: 0.55rem 1.75rem;
    border: none;
    border-radius: 999px;
    background: var(--dynamic-color);
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: filter 0.15s ease, background 0.15s ease;
}

.guests-popover__done:hover {
    filter: brightness(0.95);
}

.travel-search__guests-value {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1e3a5f;
    padding-right: 0;
    line-height: 1.35;
    text-align: left;
    flex: 1;
    min-width: 0;
}

.travel-search__guests-field .travel-search__chevron {
    position: static;
    transform: none;
    flex-shrink: 0;
}

.travel-search__chevron {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.travel-search__chevron i {
    font-size: 0.75rem;
}

.travel-search__field--submit {
    flex: 0 0 auto;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
    min-height: 4.75rem;
    border: none;
}

.travel-search__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    min-height: 3.25rem;
    padding: 0 1.25rem;
    border-radius: 8px;
    border: 1.5px solid var(--dynamic-color);
    background: #ffffff;
    color: var(--dynamic-color);
    font-size: 0.9375rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.travel-search__submit:hover {
    background: #eff6ff;
    border-color: #2563eb;
    color: #1d4ed8;
}

.travel-search__submit i {
    font-size: 1rem;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .travel-search__row {
        flex-direction: column;
    }

    .travel-search__field {
        width: 100%;
        min-height: auto;
    }

    .travel-search__field--dates {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-end;
    }

    .travel-search__field--cab-date,
    .travel-search__field--cab-time {
        max-width: none;
    }

    .travel-search__field--submit {
        padding: 0;
    }

    .travel-search__submit {
        width: 100%;
    }
}

/* —— Place autocomplete (index search) —— */
.travel-search__field.place-autocomplete {
    border: none;
    padding: 0;
    background: transparent;
    min-height: auto;
}

.place-autocomplete {
    position: relative;
    z-index: 10;
}

.place-autocomplete__box {
    display: flex;
    align-items: stretch;
    gap: 0.5rem;
    min-height: 75px;
    padding: 0.5rem 0.65rem 0.5rem 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    width: 100%;
    background: #fff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.place-autocomplete.is-open .place-autocomplete__box,
.place-autocomplete__box:focus-within {
    border-color: #2563eb;
    box-shadow: 0 0 0 1px #2563eb;
}

.place-autocomplete__leading {
    display: flex;
    align-items: flex-start;
    padding-top: 1.35rem;
    color: #64748b;
    font-size: 1rem;
    flex-shrink: 0;
}

.place-autocomplete__field {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.1rem;
}

.place-autocomplete__label {
    font-size: 0.6875rem;
    font-weight: 500;
    color: #94a3b8;
}

.place-autocomplete__input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1e3a5f;
    padding: 0;
    margin: 0;
}

.place-autocomplete__input::placeholder {
    color: #94a3b8;
    font-weight: 500;
}

.place-autocomplete__clear {
    flex-shrink: 0;
    align-self: center;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: #64748b;
    cursor: pointer;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.place-autocomplete__clear:hover {
    background: #f1f5f9;
    color: #0f172a;
}

.place-autocomplete__dropdown {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    margin: 0;
    padding: 0.35rem 0;
    list-style: none;
    background: #fff;
    border: 1px solid #e8ecf1;
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
    max-height: min(360px, 50vh);
    overflow-y: auto;
    z-index: 14000;
    width: min(100%, 300px);
    max-width: 100%;
    box-sizing: border-box;
}

.place-autocomplete__item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
    cursor: pointer;
    transition: background 0.1s ease;
}

.place-autocomplete__item:hover,
.place-autocomplete__item:focus {
    background: #f8fafc;
}

.place-autocomplete__ico {
    width: 1.25rem;
    flex-shrink: 0;
    color: #64748b;
    padding-top: 0.15rem;
}

.place-autocomplete__text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.place-autocomplete__item-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
}

.place-autocomplete__item-sub {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.35;
}

.place-autocomplete__item--action .place-autocomplete__item-title {
    font-weight: 600;
    color: #2563eb;
}

/* —— Best Deals for Hotels (Slick) —— */
.section_padding {
    padding-top: 3rem;
    padding-bottom: 2rem;
}

@media (min-width: 992px) {
    .section_padding {
        padding-top: 3rem;
        padding-bottom: 2rem;
    }
}

.hotel-deals-section {
    background: #fff;
}

.hotel-deals-box {
    background: linear-gradient(0deg, #ffffff, #fff3d2);
    border-radius: 22px;
    padding: clamp(1.25rem, 4vw, 2.25rem);
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.hotel-deals__header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem 1.5rem;
    margin-bottom: 1.5rem;
}

.hotel-deals__title {
    font-size: clamp(1.15rem, 2.5vw, 1.4rem);
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    letter-spacing: -0.02em;
}

.hotel-deals__header-right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    justify-content: flex-end;
}

.hotel-deals__filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.hotel-deals__filter-btn {
    appearance: none;
    border: 1px solid #cbd5e1;
    background: #fff;
    color: #0f172a;
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.hotel-deals__filter-btn:hover {
    border-color: #94a3b8;
}

.hotel-deals__filter-btn.is-active {
    background: var(--dynamic-color);
    border-color: var(--dynamic-color);
    color: #fff;
}

.hotel-deals__view-all {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dynamic-color);
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.hotel-deals__view-all:hover {
    text-decoration: underline;
}

.hotel-deals__view-all i {
    font-size: 0.7rem;
}


.hotel-deals-slider .slick-slide {
    padding: 0 0.5rem;
    height: auto;
    box-sizing: border-box;
}

.hotel-deals-slider .slick-slide > div {
    height: 100%;
}

.hotel-deals-slider .slick-list {
    margin: 0 -0.5rem;
}

.hotel-deal-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.hotel-deal-card__link {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    height: 100%;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #eef2f7;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.hotel-deal-card__link:hover {
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
    border-color: #e2e8f0;
}

.hotel-deal-card__link:focus-visible {
    outline: 2px solid var(--dynamic-color);
    outline-offset: 2px;
}

.hotel-deal-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e2e8f0;
}

.hotel-deal-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hotel-deal-card__badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    z-index: 1;
    max-width: calc(100% - 20px);
}

.hotel-deal-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    line-height: 1.2;
}

.hotel-deal-card__badge--green {
    background: #22c55e;
    color: #fff;
}

.hotel-deal-card__badge--bpg {
    background: rgba(255, 255, 255, 0.95);
    color: #15803d;
    border: 1px solid rgba(34, 197, 94, 0.35);
}

.hotel-deal-card__badge--bpg i {
    font-size: 0.65rem;
}

.hotel-deal-card__body {
    padding: 0.85rem 0.95rem 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.2rem;
}

.hotel-deal-card__title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
}

.hotel-deal-card__name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(0.9375rem * 1.35 * 2);
}

.hotel-deal-card__star-slot {
    min-height: 1.2rem;
    flex-shrink: 0;
}

.hotel-deal-card__stars {
    flex-shrink: 0;
    color: #f59e0b;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    padding-top: 0.15rem;
}

.hotel-deal-card__star-tag {
    font-size: 0.6875rem;
    color: #64748b;
    margin: 0 0 0.15rem;
}

.hotel-deal-card__area {
    font-size: 0.8125rem;
    color: #64748b;
    margin: 0 0 0.5rem;
}

.hotel-deal-card__footer {
    margin-top: auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 0.35rem;
}

.hotel-deal-card__rating-block {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    min-width: 0;
    flex-wrap: wrap;
}

.hotel-deal-card__score {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    padding: 0.2rem 0.45rem;
    background: #1e293b;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 6px;
    line-height: 1;
}

.hotel-deal-card__reviews {
    font-size: 0.6875rem;
    color: #64748b;
    line-height: 1.3;
}

.hotel-deal-card__price {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    white-space: nowrap;
}

/* Slick custom arrows — white circle, blue chevrons (shared) */
.hotel-deals-box .slick-custom-arrow:before,
.hotel-deals-box .slick-custom-arrow:after,
.popular-packages-box .slick-custom-arrow:before,
.popular-packages-box .slick-custom-arrow:after,
.popular-dest-box .slick-custom-arrow:before,
.popular-dest-box .slick-custom-arrow:after,
.explore-india-box .slick-custom-arrow:before,
.explore-india-box .slick-custom-arrow:after,
.travel-stories-box .slick-custom-arrow:before,
.travel-stories-box .slick-custom-arrow:after,
.testimonials-box .slick-custom-arrow:before,
.testimonials-box .slick-custom-arrow:after {
    display: none !important;
    content: none !important;
}

.hotel-deals-box .slick-custom-arrow,
.popular-packages-box .slick-custom-arrow,
.popular-dest-box .slick-custom-arrow,
.explore-india-box .slick-custom-arrow,
.travel-stories-box .slick-custom-arrow,
.testimonials-box .slick-custom-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.12);
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.hotel-deals-box .slick-custom-arrow:hover,
.popular-packages-box .slick-custom-arrow:hover,
.popular-dest-box .slick-custom-arrow:hover,
.explore-india-box .slick-custom-arrow:hover,
.travel-stories-box .slick-custom-arrow:hover,
.testimonials-box .slick-custom-arrow:hover {
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.16);
}

.hotel-deals-box .slick-custom-arrow:focus-visible,
.popular-packages-box .slick-custom-arrow:focus-visible,
.popular-dest-box .slick-custom-arrow:focus-visible,
.explore-india-box .slick-custom-arrow:focus-visible,
.travel-stories-box .slick-custom-arrow:focus-visible,
.testimonials-box .slick-custom-arrow:focus-visible {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

.hotel-deals-box .slick-custom-arrow i,
.popular-packages-box .slick-custom-arrow i,
.popular-dest-box .slick-custom-arrow i,
.explore-india-box .slick-custom-arrow i,
.travel-stories-box .slick-custom-arrow i,
.testimonials-box .slick-custom-arrow i {
    font-size: 0.95rem;
    color: #007bff;
    line-height: 1;
}

.hotel-deals-box .slick-custom-arrow--prev,
.popular-packages-box .slick-custom-arrow--prev,
.popular-dest-box .slick-custom-arrow--prev,
.explore-india-box .slick-custom-arrow--prev,
.travel-stories-box .slick-custom-arrow--prev,
.testimonials-box .slick-custom-arrow--prev {
    left: 0;
}

.hotel-deals-box .slick-custom-arrow--next,
.popular-packages-box .slick-custom-arrow--next,
.popular-dest-box .slick-custom-arrow--next,
.explore-india-box .slick-custom-arrow--next,
.travel-stories-box .slick-custom-arrow--next,
.testimonials-box .slick-custom-arrow--next {
    right: 0;
}

.hotel-deals-box .slick-disabled.slick-custom-arrow,
.popular-packages-box .slick-disabled.slick-custom-arrow,
.popular-dest-box .slick-disabled.slick-custom-arrow,
.explore-india-box .slick-disabled.slick-custom-arrow,
.travel-stories-box .slick-disabled.slick-custom-arrow,
.testimonials-box .slick-disabled.slick-custom-arrow {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 575px) {
    .slick-carousel-wrap {
        padding: 0 2.25rem;
    }

    .hotel-deals-box .slick-custom-arrow,
    .popular-packages-box .slick-custom-arrow,
    .popular-dest-box .slick-custom-arrow,
    .explore-india-box .slick-custom-arrow,
    .travel-stories-box .slick-custom-arrow,
    .testimonials-box .slick-custom-arrow {
        width: 36px;
        height: 36px;
    }

    .hotel-deals-box .slick-custom-arrow i,
    .popular-packages-box .slick-custom-arrow i,
    .popular-dest-box .slick-custom-arrow i,
    .explore-india-box .slick-custom-arrow i,
    .travel-stories-box .slick-custom-arrow i,
    .testimonials-box .slick-custom-arrow i {
        font-size: 0.85rem;
    }
}

/* —— Popular travel packages (home) —— */
.popular-packages-section {
    background: #fff;
    overflow-x: hidden;
}

.popular-packages-slider-wrap {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 576px) {
    .popular-packages-slider-wrap {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (min-width: 992px) {
    .popular-packages-slider-wrap {
        padding-left: 10px;
        padding-right: 10px;
    }

    .popular-packages-box .slick-custom-arrow--prev {
        left: clamp(0.2rem, 1.25vw, 1rem);
    }

    .popular-packages-box .slick-custom-arrow--next {
        right: clamp(0.2rem, 1.25vw, 1rem);
    }
}

.popular-packages-box {
    position: relative;
    width: 100%;
    max-width: none;
}

.popular-packages__head {
    margin-bottom: 2rem;
    max-width: 1320px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.popular-packages__title {
    margin-bottom: 0.5rem;
}

.popular-packages__sub {
    font-size: 0.95rem;
    line-height: 1.55;
    text-align:left;
    margin: 0;
}

.popular-packages-slider .slick-slide {
    padding: 0 0.5rem;
    height: auto;
    box-sizing: border-box;
}
.popular-packages-slider .slick-slide:first-child{
    padding-left: 0;
}
.popular-packages-slider .slick-slide:last-child{
    padding-right: 0;
}
.popular-packages-slider .slick-slide > div {
    height: 100%;
}

.popular-packages-slider .slick-list {
    margin: 0 -0.5rem;
}

/* Slick uses floats; when slide count > slidesToShow, floats can wrap to a second row.
   Keep one horizontal row so extra slides sit off-screen (carousel), not below. */
.popular-packages-slider.slick-initialized .slick-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: stretch;
}

.popular-package-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
    border: 1px solid #eef2f7;
    display: flex;
    flex-direction: column;
}

.popular-package-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    background: #e2e8f0;
    height: 220px;
}

.popular-package-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.popular-package-card__badge {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    padding: 0.28rem 0.65rem;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: #ef4444;
    line-height: 1.2;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.35);
}

.popular-package-card__dots {
    position: absolute;
    left: 50%;
    bottom: 0.65rem;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.popular-package-card__dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
}

.popular-package-card__dots span.is-active {
    background: #fff;
    width: 7px;
    height: 7px;
}

.popular-package-card__body {
    padding: 1.1rem 1.15rem 1.15rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.popular-package-card__name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.5rem;
    line-height: 1.35;
}

.popular-package-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
    margin-bottom: 1rem;
}

.popular-package-card__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.popular-package-card__meta-ico {
    color: var(--dynamic-color);
    font-size: 0.85rem;
}

.popular-package-card__meta-arrows {
    opacity: 0.45;
    font-size: 0.65rem;
}

.popular-package-card__cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    margin-top: auto;
}

.popular-package-card__book {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: capitalize;
    background:var(--dynamic-color);
    border: none;
    color: #fff !important;
    text-decoration: none;
    transition: filter 0.15s ease, transform 0.1s ease;
}

.popular-package-card__book:hover {
    filter: brightness(1.06);
    color: #fff !important;
    background:var(--dynamic-color);
}

.popular-package-card__book:active {
    transform: scale(0.98);
    background:var(--dynamic-color);
}

.popular-package-card__book i {
    font-size: 0.7rem;
    opacity: 0.95;
}

.popular-package-card__price {
    text-align: right;
}

.popular-package-card__per {
    display: block;
    font-size: 0.72rem;
    color: #64748b;
    margin-bottom: 0.1rem;
}

.popular-package-card__amount {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.popular-package-card__rule {
    margin: 1rem 0 0.85rem;
    border: 0;
    border-top: 1px solid #eef2f7;
    opacity: 1;
}

.popular-package-card__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: #475569;
}

.popular-package-card__hint {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    cursor: help;
}

.popular-package-card__hint-ico {
    color: #64748b;
    font-size: 0.85rem;
}

.popular-package-card__hint-info {
    color: #94a3b8;
    font-size: 0.8rem;
}

.tooltip.popular-package-tooltip .tooltip-inner {
    max-width: min(18rem, 92vw);
    text-align: left;
    font-size: 0.8rem;
    line-height: 1.5;
    padding: 0.55rem 0.7rem;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.12);
}

@supports not (aspect-ratio: 1) {
    .popular-package-card__media {
        min-height: 200px;
    }
}

/* —— Why book hotels —— */
.section-block-title {
    font-size: clamp(1.15rem, 2.5vw, 1.4rem);
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 1.25rem;
    letter-spacing: -0.02em;
    text-align:left;
}

.why-book-section {
    background: #fff;
}

.why-book-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
}

@media (max-width: 991px) {
    .why-book-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 479px) {
    .why-book-grid {
        grid-template-columns: 1fr;
    }
}

.why-book-card {
    border-radius: 18px;
    padding: 1.25rem 1.1rem 1.35rem;
    min-height: 200px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(15, 23, 42, 0.04);
}

.why-book-card__art {
    margin-bottom: 0.85rem;
}

.why-book-card__icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.25rem;
    height: 4.25rem;
    border-radius: 14px;
    font-size: 1.65rem;
    color: #334155;
    background: rgba(255, 255, 255, 0.65);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.why-book-card__icon-wrap img {
    width: 2.5rem;
    height: auto;
    max-height: 3rem;
    object-fit: contain;
    display: block;
}

.why-book-card--purple {
    background: #ede9fe;
}

.why-book-card--purple .why-book-card__icon-wrap {
    color: #5b21b6;
}

.why-book-card--orange {
    background: #ffedd5;
}

.why-book-card--orange .why-book-card__icon-wrap {
    color: #c2410c;
}

.why-book-card--green {
    background: #dcfce7;
}

.why-book-card--green .why-book-card__icon-wrap {
    color: #15803d;
}

.why-book-card--yellow {
    background: #fef9c3;
}

.why-book-card--yellow .why-book-card__icon-wrap {
    color: #a16207;
}

.why-book-card--pink {
    background: #fce7f3;
}

.why-book-card--pink .why-book-card__icon-wrap {
    color: #be185d;
}

.why-book-card__text {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #1e293b;
    line-height: 1.45;
    margin: 0;
}

.why-book-card__text strong {
    font-weight: 700;
    color: #0f172a;
}

.why-book-card__sub {
    font-size: 0.75rem;
    font-weight: 400;
    color: #64748b;
    line-height: 1.45;
    margin: 0.5rem 0 0;
    max-width: 16rem;
}

/* —— Popular destinations —— */
.popular-dest-section {
    background: #fff;
    overflow-x: hidden;
}

.popular-dest-slider-wrap {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 576px) {
    .popular-dest-slider-wrap {
        padding-left: 10px;
        padding-right:10px;
    }
}

@media (min-width: 992px) {
    .popular-dest-slider-wrap {
        padding-left: 10px;
        padding-right:10px;
    }

    .popular-dest-box .slick-custom-arrow--prev {
        left: clamp(0.2rem, 1.25vw, 1rem);
    }

    .popular-dest-box .slick-custom-arrow--next {
        right: clamp(0.2rem, 1.25vw, 1rem);
    }
}

.popular-dest__head {
    margin-bottom: 2rem;
    max-width: 1320px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.popular-dest__title {
    margin-bottom: 0;
    text-align:left;
}

.popular-dest-box {
    position: relative;
    width: 100%;
    max-width: none;
}

.popular-dest-slider .slick-slide {
    padding: 0 0.5rem;
    height: auto;
    box-sizing: border-box;
}

.popular-dest-slider .slick-slide > div {
    height: 100%;
}

.popular-dest-slider .slick-list {
    margin: 0 -0.5rem;
}

.popular-dest-slider.slick-initialized .slick-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: stretch;
}

.popular-dest-slider.slick-initialized .slick-slide {
    float: none !important;
    flex-shrink: 0;
}

.popular-dest-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e8ecf1;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.popular-dest-card:hover {
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
    border-color: #e2e8f0;
}

.popular-dest-card:focus-visible {
    outline: 2px solid var(--dynamic-color);
    outline-offset: 2px;
}

.popular-dest-card__media {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #e2e8f0;
}

.popular-dest-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.popular-dest-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 1.5rem 1rem 2.25rem;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.2) 45%, transparent 70%);
    text-align: center;
}

.popular-dest-card__city {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 2.8vw, 1.75rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.popular-dest-card__region {
    display: block;
    margin-top: 0.35rem;
    font-family: "Inter", sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.popular-dest-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: #fff;
    border-top: 1px solid #f1f5f9;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.popular-dest-card__props {
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
}

.popular-dest-card__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    font-size: 0.9rem;
}

/* —— Hotel Booking FAQs (static markup; swap to loop/API later) —— */
.hotel-faq-section {
    background: #fff;
}

.hotel-faq {
    background: #fff;
    border: 1px solid #e8ecf1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.hotel-faq__item + .hotel-faq__item {
    border-top: 1px solid #e8ecf1;
}

.hotel-faq__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.15rem;
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    font-size: 0.9375rem;
    color: #0f172a;
    line-height: 1.35;
    user-select: none;
    transition: background 0.15s ease;
}

.hotel-faq__summary::-webkit-details-marker {
    display: none;
}

.hotel-faq__summary:hover {
    background: #f8fafc;
}

.hotel-faq__summary:focus-visible {
    outline: 2px solid var(--dynamic-color);
    outline-offset: -2px;
}

.hotel-faq__question {
    flex: 1;
    text-align: left;
}

.hotel-faq__chev {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    color: #64748b;
    transition: transform 0.2s ease;
}

.hotel-faq__chev i {
    font-size: 0.75rem;
    line-height: 1;
}

.hotel-faq__item[open] .hotel-faq__chev {
    transform: rotate(180deg);
}

.hotel-faq__panel {
    padding: 0 1.15rem 1.1rem;
}

.hotel-faq__answer {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 400;
    color: #64748b;
    line-height: 1.55;
    max-width: 58rem;
}

@media (max-width: 575px) {
    .hotel-faq__summary {
        padding: 0.9rem 1rem;
        font-size: 0.875rem;
    }

    .hotel-faq__panel {
        padding: 0 1rem 1rem;
    }
}

/* —— Explore India (static; replace with @foreach later) —— */
.explore-india-section {
    background: #fff;
}

.explore-india-section .section-block-title {
    margin-bottom: 0.35rem;
}

.explore-india__sub {
    margin: 0 0 1.35rem;
    font-size: 0.9375rem;
    font-weight: 400;
    color: #64748b;
    line-height: 1.45;
}

.explore-india-box {
    position: relative;
}

.explore-india-slider .slick-slide {
    padding: 0 0.5rem;
    height: auto;
    box-sizing: border-box;
}

.explore-india-slider .slick-slide > div {
    height: 100%;
}

.explore-india-slider .slick-list {
    margin: 0 -0.5rem;
}

.explore-india-slider .explore-india-card {
    height: 100%;
}

.explore-india-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    padding: 5px;
    border: 1px solid #ddd;
}

.explore-india-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}

.explore-india-card:focus-visible {
    outline: 2px solid var(--dynamic-color);
    outline-offset: 3px;
}

.explore-india-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: 14px;
    overflow: hidden;
    background: #e2e8f0;
}

.explore-india-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.explore-india-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.75rem 0.15rem 0;
}

.explore-india-card__city {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
}

.explore-india-card__count {
    font-size: 0.8125rem;
    font-weight: 400;
    color: #64748b;
    line-height: 1.35;
}

.explore-india-card__duration {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #64748b;
    line-height: 1.35;
}

/* —— News & travel stories (Slick + bar dots) —— */
.travel-stories-section {
    background: #fff;
}

.travel-stories-slider-wrap {
    padding-bottom: 0;
}

.travel-stories-box {
    position: relative;
}

.travel-stories-slider .slick-slide {
    padding: 0 0.5rem;
    height: auto;
    box-sizing: border-box;
}

.travel-stories-slider .slick-slide > div {
    height: 100%;
}

.travel-stories-slider .slick-list {
    margin: 0 -0.5rem;
}

.travel-story-card {
    display: block;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.travel-story-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
}

.travel-story-card:focus-visible {
    outline: 2px solid var(--dynamic-color);
    outline-offset: 3px;
}

.travel-story-card__media {
    position: absolute;
    inset: 0;
    background: #e2e8f0;
}

.travel-story-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.travel-story-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 1.15rem 1.1rem 1.2rem;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 42%, transparent 68%);
}

.travel-story-card__title {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.travel-stories-box .slick-dots {
    position: relative !important;
    bottom: auto !important;
    left: auto;
    margin: 1.15rem 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    line-height: 0;
}

.travel-stories-box .slick-dots li {
    width: 40px;
    height: 4px;
    margin: 0;
    padding: 0;
}

.travel-stories-box .slick-dots li button {
    width: 100%;
    height: 4px;
    padding: 0;
    border: none;
    border-radius: 2px;
    background: #e2e8f0;
    font-size: 0;
    line-height: 0;
    color: transparent;
    cursor: pointer;
    transition: background 0.2s ease;
}

.travel-stories-box .slick-dots li button:before {
    display: none !important;
    content: none !important;
}

.travel-stories-box .slick-dots li.slick-active button {
    background: #007bff;
}

.travel-stories-box .slick-dots li button:hover {
    background: #cbd5e1;
}

.travel-stories-box .slick-dots li.slick-active button:hover {
    background: #0066d4;
}

/* —— Testimonials (static; @foreach later) —— */
.testimonials-section {
    background: #f4f6f8;
}

.testimonials__header {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 2.5rem;
}

.testimonials__kicker {
    font-family: "Inter", sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #64748b;
    margin: 0 0 0.65rem;
}

.testimonials__title {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: clamp(1.65rem, 4vw, 2.35rem);
    font-weight: 700;
    color: #1a2744;
    margin: 0;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.testimonials-box {
    position: relative;
}

.testimonials-slider .slick-slide {
    padding: 0 0.5rem;
    height: auto;
    box-sizing: border-box;
}

.testimonials-slider .slick-slide > div {
    height: 100%;
}

.testimonials-slider .slick-list {
    margin: 0 -0.5rem;
}

.testimonials-slider .testimonial-card {
    height: 100%;
}

.testimonial-card {
    background: #fff;
    border-radius: 14px;
    padding: 2rem 1.75rem 1.85rem;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.07);
    border: 1px solid rgba(15, 23, 42, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.testimonial-card__quote-icon {
    display: block;
    color: #facc15;
    font-size: 1.75rem;
    line-height: 1;
    margin-bottom: 1.15rem;
}

.testimonial-card__text {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 400;
    color: #64748b;
    line-height: 1.65;
    flex: 1;
}

.testimonial-card__rule {
    width: 100%;
    max-width: 7rem;
    border: none;
    border-top: 1px solid #e8ecf1;
    margin: 1.35rem 0 1.15rem;
}

.testimonial-card__avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.testimonial-card__name {
    margin: 0.85rem 0 0;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #475569;
}

/* —— Site footer (static links; swap to @foreach / menus later) —— */
.site-footer {
    background: #f5f5f5;
    padding: 2.75rem 0 2rem;
    margin-top: 0;
    border-top: 1px solid #e8e8e8;
}

.site-footer__heading {
    font-size: 0.875rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 1rem;
    letter-spacing: -0.01em;
}

.site-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer__list li {
    margin-bottom: 0.55rem;
}

.site-footer__list li:last-child {
    margin-bottom: 0;
}

.site-footer__list a {
    font-size: 0.8125rem;
    font-weight: 400;
    color: #334155;
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.15s ease, text-decoration 0.15s ease;
}

.site-footer__list a:hover {
    color: #0f172a;
    text-decoration: underline;
}

.site-footer__list a:focus-visible {
    outline: 2px solid var(--dynamic-color);
    outline-offset: 2px;
    border-radius: 2px;
}

.site-footer__locale {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding-top: 0.25rem;
}

.site-footer__flag {
    font-size: 1.35rem;
    line-height: 1;
}

.site-footer__currency {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
}

.site-footer__social-wrap {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.site-footer__social-wrap--in-grid {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.site-footer__social-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #64748b;
    margin: 0;
}

.site-footer__social {
    gap: 0.5rem 0.75rem;
}

.site-footer__social-link {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #cbd5e1;
    color: #334155;
    font-size: 15px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
    transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.site-footer__social-link:hover {
    color: var(--dynamic-color);
    border-color: rgba(235, 92, 35, 0.35);
    background: #fff8f5;
    transform: translateY(-1px);
}

.site-footer__social-link:focus-visible {
    outline: 2px solid var(--dynamic-color);
    outline-offset: 2px;
}

.site-footer__rule {
    margin: 1.5rem 0 1.25rem;
    border: none;
    border-top: 1px solid #e2e8f0;
    opacity: 1;
}

.site-footer__bottom {
    text-align: center;
    max-width: 52rem;
    margin: 0 auto;
}

.site-footer__legal,
.site-footer__copyright {
    font-size: 0.8125rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0 0 0.75rem;
}

.site-footer__copyright {
    margin-bottom: 1.25rem;
}

.site-footer__logo-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem 1.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer__logo-mark {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #64748b;
    opacity: 0.9;
}

@media (max-width: 991px) {
    .site-footer {
        padding: 2.25rem 0 1.75rem;
    }
}

/* Holiday list page */
.holiday-list-main {
    padding-top: 1.25rem;
}

.holiday-list-breadcrumb .breadcrumb-item a {
    color: var(--dynamic-color, #0d9488);
    text-decoration: none;
}

.holiday-list-breadcrumb .breadcrumb-item a:hover {
    text-decoration: underline;
}

.holiday-list__chip {
    appearance: none;
    border: 1px solid #cbd5e1;
    background: #fff;
    color: #0f172a;
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.holiday-list__chip:hover {
    border-color: #94a3b8;
}

.holiday-list__chip.is-active {
    background: var(--dynamic-color);
    border-color: var(--dynamic-color);
    color: #fff;
}

/* Holiday list — tour package card (reference layout) */
.holiday-tour-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.holiday-tour-card__media-wrap {
    display: block;
    color: inherit;
}

.holiday-tour-card__media {
    position: relative;
    margin: 0;
    overflow: visible;
}

.holiday-tour-card__media img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.holiday-tour-card__image-bar {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: -18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

.holiday-tour-card__bar-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-width: 0;
}

.holiday-tour-card__bar-ico {
    color: var(--dynamic-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.holiday-tour-card__bar-text {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #111;
    line-height: 1.25;
}

.holiday-tour-card__body {
    padding: 1.75rem 1.15rem 1.15rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.holiday-tour-card__title-link {
    display: block;
}

.holiday-tour-card__title {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #111;
    margin: 0 0 0.35rem;
    line-height: 1.3;
}

.holiday-tour-card__subtitle {
    font-size: 0.8125rem;
    color: #777;
    margin: 0;
    line-height: 1.4;
}

.holiday-tour-card__rule {
    border: 0;
    border-top: 1px solid #eee;
    margin: 0.85rem 0;
    opacity: 1;
}

.holiday-tour-card__features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.35rem 0.25rem;
    text-align: center;
}

.holiday-tour-card__feat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    min-width: 0;
}

.holiday-tour-card__feat-ico {
    font-size: 1.15rem;
    color: #9ca3af;
}

.holiday-tour-card__feat span:last-child {
    font-size: 0.6875rem;
    color: #777;
    line-height: 1.2;
}

.holiday-tour-card__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    margin-top: auto;
    padding-top: 0.15rem;
}

.holiday-tour-card__price-block {
    min-width: 0;
    flex: 1;
}

.holiday-tour-card__from {
    display: block;
    font-size: 0.75rem;
    color: #777;
    margin-bottom: 0.15rem;
}

.holiday-tour-card__price-row {
    line-height: 1.25;
}

.holiday-tour-card__price-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dynamic-color);
    letter-spacing: -0.02em;
}

.holiday-tour-card__per {
    font-size: 0.75rem;
    font-weight: 400;
    color: #777;
}

.holiday-tour-card__btn-details {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--dynamic-color);
    color: #fff !important;
    font-size: 0.8125rem;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    border: none;
    flex-shrink: 0;
    transition: background 0.15s ease, transform 0.15s ease;
}

.holiday-tour-card__btn-details:hover {
    filter: brightness(0.92);
    color: #fff;
}

@media (max-width: 575.98px) {
    .holiday-tour-card__features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 0.65rem;
    }

    .holiday-tour-card__image-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }
}

.holiday-details__media img {
    object-fit: cover;
}

.holiday-details__title {
    font-size: clamp(1.65rem, 2.5vw, 2.25rem);
}

.holiday-details__price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    display: block;
    line-height: 1.2;
}

.holiday-details__list {
    padding-left: 1.15rem;
    margin: 0;
    color: #475569;
}

.holiday-details__list li {
    margin-bottom: 0.5rem;
}

.holiday-details__lead {
    font-size: 1.05rem;
    line-height: 1.65;
}

/* Holiday details — sidebar fare summary + callback */
.holiday-details-sidebar-alert {
    font-size: 0.875rem;
    border-radius: 8px;
}

.holiday-details-fare-summary {
    background: #fff;
    border: 1px solid #e8e4e6;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.holiday-details-fare-summary__head {
    padding: 0.9rem 1.15rem;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.holiday-details-fare-summary__title {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    margin: 0;
    line-height: 1.3;
}

.holiday-details-fare-summary__body {
    padding: 1rem 1.15rem 1.1rem;
    background: #fff8f5;
}

.holiday-details-fare-summary__row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem 1rem;
}

.holiday-details-fare-summary__label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #111;
    padding-top: 0.15rem;
}

.holiday-details-fare-summary__price-block {
    text-align: right;
}

.holiday-details-fare-summary__price {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--dynamic-color);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.holiday-details-fare-summary__suffix {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #111;
    margin-top: 0.2rem;
}

.holiday-details-callback {
    border: 1px solid #e8e4e6 !important;
    position: sticky;
    top: 0;
}

.holiday-details-callback__title {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 1.1rem;
    line-height: 1.3;
}

.holiday-details-callback-field {
    position: relative;
}

.holiday-details-callback-field__input {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 0.55rem 2.45rem 0.55rem 0.75rem;
    font-size: 0.875rem;
}

.holiday-details-callback-field__input:focus {
    border-color: var(--dynamic-color);
    box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--dynamic-color) 22%, transparent);
}

.holiday-details-callback-field__input.is-invalid {
    border-color: #dc2626;
}

.holiday-details-callback-field__input.is-invalid:focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.2);
}

.holiday-details-callback-field__error {
    font-size: 0.78rem;
    color: #dc2626;
    margin: 0.35rem 0 0;
    line-height: 1.4;
}

.holiday-details-callback-field__textarea {
    min-height: 6.5rem;
    resize: vertical;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
}

.holiday-details-callback-field__icon {
    position: absolute;
    right: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 0.95rem;
    pointer-events: none;
    line-height: 1;
}

.holiday-details-callback-field--textarea .holiday-details-callback-field__icon--textarea {
    top: 0.85rem;
    transform: none;
}

.holiday-details-callback__captcha .g-recaptcha > div {
    margin-left: auto;
    margin-right: auto;
}

.holiday-details-callback__submit {
    background: var(--dynamic-color);
    border: none;
    color: #fff;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    transition: filter 0.15s ease, transform 0.1s ease;
}

.holiday-details-callback__submit:hover {
    color: #fff;
    filter: brightness(0.95);
    background: var(--dynamic-color);
}

.holiday-details-callback__submit:active {
    transform: scale(0.99);
}

/* Holiday details — highlights card (itinerary style) */
.holiday-details-highlights-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.25rem 1.35rem 1.1rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.holiday-details-highlights-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 0.85rem;
    line-height: 1.3;
}

.holiday-details-highlights-card__list {
    padding: 0;
    margin: 0 0 1.1rem;
}

.holiday-details-highlights-card__list li {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
    padding: 0.3rem 0;
}

.holiday-details-highlights-card__footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.65rem 0.35rem;
    padding-top: 1rem;
    margin-top: 0.15rem;
    border-top: 1px solid #f3f4f6;
}

.holiday-details-highlights-card__feat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
    flex: 1;
    min-width: 4.5rem;
    font-size: 0.6875rem;
    font-weight: 500;
    color: #6b7280;
    line-height: 1.25;
}

.holiday-details-highlights-card__feat i {
    font-size: 1.1rem;
    color: #9ca3af;
}

@media (max-width: 575.98px) {
    .holiday-details-highlights-card__footer {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-items: center;
    }
}

/* Holiday details — itinerary (timeline accordion) */
.holiday-details-itinerary-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.25rem 1.35rem 1rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.holiday-details-itinerary-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 0.85rem;
    line-height: 1.3;
}

.holiday-details-itinerary {
    border-left: 2px solid var(--dynamic-color);
    padding-left: 1.35rem;
    margin-left: 0.35rem;
}

.holiday-details-itinerary__day {
    margin: 0;
    padding: 0;
    border: 0;
}

.holiday-details-itinerary__day + .holiday-details-itinerary__day {
    margin-top: 0.15rem;
}

.holiday-details-itinerary__summary {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    list-style: none;
    cursor: pointer;
    padding: 0.45rem 0 0.25rem;
    margin-left: calc(-1.35rem - 1px);
}

.holiday-details-itinerary__summary::-webkit-details-marker {
    display: none;
}

.holiday-details-itinerary__bullet {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    margin-top: 1px;
    transform: translateX(calc(-50% + 1px));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--dynamic-color);
    background: #fff;
    box-sizing: border-box;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.holiday-details-itinerary__bullet-pin {
    display: none;
    font-size: 0.62rem;
    color: #fff;
    line-height: 1;
}

.holiday-details-itinerary__day[open] .holiday-details-itinerary__bullet {
    background: var(--dynamic-color);
    border-color: var(--dynamic-color);
}

.holiday-details-itinerary__day[open] .holiday-details-itinerary__bullet-pin {
    display: block;
}

.holiday-details-itinerary__summary-main {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.65rem;
    min-width: 0;
    padding-right: 0.15rem;
}

.holiday-details-itinerary__day-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #111;
    line-height: 1.45;
}

.holiday-details-itinerary__chev {
    flex-shrink: 0;
    color: #6b7280;
    font-size: 0.7rem;
    margin-top: 0.2rem;
    transition: transform 0.2s ease;
}

.holiday-details-itinerary__day[open] .holiday-details-itinerary__chev {
    transform: rotate(180deg);
}

.holiday-details-itinerary__body {
    padding: 0.35rem 0 1rem;
    padding-left: calc(22px + 0.75rem);
}

.holiday-details-itinerary__body p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.55;
    margin: 0 0 0.6rem;
}

.holiday-details-itinerary__body p:last-child {
    margin-bottom: 0;
}

/* Holiday details — sticky section nav */
.holiday-details-section-nav {
    position: sticky;
    top: 0;
    z-index: 1010;
    margin: 0 0 1rem;
    background: #faf7f8;
    border: 1px solid #e8e4e6;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.holiday-details-section-nav__track {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0;

}

.holiday-details-section-nav__link {
    flex: 0 0 auto;
    padding: 15px 20px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #374151;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
    white-space: nowrap;
    transition: color 0.15s ease, border-color 0.15s ease;
}

.holiday-details-section-nav__link:hover {
    color: var(--dynamic-color);
}

.holiday-details-section-nav__link.is-active {
    color: #111;
    border-bottom-color: var(--dynamic-color);
}

.holiday-details-tab-target {
    scroll-margin-top: 3.75rem;
}

@media (min-width: 992px) {
    .holiday-details-section-nav__link {
        padding-left: 1rem;
        padding-right: 1rem;
        font-size: 0.68rem;
    }
}

/* Holiday details — hotel listing (no category tabs) */
.holiday-details-hotel-block__card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 1.15rem 1.25rem 1.2rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.holiday-details-hotel-block__title {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 1rem;
    line-height: 1.3;
}

.holiday-details-hotel-group + .holiday-details-hotel-group {
    margin-top: 1.35rem;
    padding-top: 1.25rem;
    border-top: 1px solid #eee;
}

.holiday-details-hotel-group__badge {
    display: inline-block;
    padding: 0.28rem 0.75rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    background: var(--dynamic-color);
    line-height: 1.2;
}

.holiday-details-hotel-group__heading {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
    margin: 0.5rem 0 0.85rem;
    line-height: 1.3;
}

.holiday-details-hotel-row {
    display: flex;
    align-items: stretch;
    gap: 0.85rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid #eee;
}

.holiday-details-hotel-row:first-child {
    padding-top: 0;
}

.holiday-details-hotel-list .holiday-details-hotel-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.holiday-details-hotel-row__media {
    flex-shrink: 0;
    width: 118px;
    min-height: 78px;
    border-radius: 6px 0 0 6px;
    overflow: hidden;
    background: #f3f4f6;
}

.holiday-details-hotel-row__img {
    width: 100%;
    height: 100%;
    min-height: 78px;
    object-fit: cover;
    display: block;
    border-radius: 6px 0 0 6px;
}

.holiday-details-hotel-row__img--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 78px;
    color: #9ca3af;
    font-size: 1.35rem;
}

.holiday-details-hotel-row__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.1rem 0;
}

.holiday-details-hotel-row__name-line {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.5rem;
    margin: 0;
}

.holiday-details-hotel-row__name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #111;
    line-height: 1.35;
}

.holiday-details-hotel-row__similar {
    font-size: 0.72rem;
    font-weight: 600;
    color: #3b82f6;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.holiday-details-hotel-row__area {
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.45;
    margin: 0.35rem 0 0;
}

.holiday-details-hotel-block__disclaimer {
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: 1px solid #eee;
    line-height: 1.5;
}

.holiday-details-hotel-block__disclaimer-follow {
    line-height: 1.5;
}

/* Holiday details — inclusions & exclusions cards */
.holiday-details-inc-exc__card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 1.15rem 1.25rem 1.2rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.holiday-details-inc-exc__card--spaced {
    margin-top: 1rem;
}

.holiday-details-inc-exc__title {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 0.85rem;
    line-height: 1.3;
}

.holiday-details-inc-exc__list {
    margin: 0;
    padding: 0;
}

.holiday-details-inc-exc__item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.65rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #4b5563;
}

.holiday-details-inc-exc__item:last-child {
    margin-bottom: 0;
}

.holiday-details-inc-exc__dia {
    flex-shrink: 0;
    width: 7px;
    height: 7px;
    margin-top: 0.42rem;
    border: 1.5px solid #9ca3af;
    transform: rotate(45deg);
    box-sizing: border-box;
    background: transparent;
}

.holiday-details-inc-exc__item--emphasis span:last-child {
    font-weight: 700;
    color: #111;
}

/* Holiday details — hero header + gallery */
.holiday-details-hero-header__row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem 1.5rem;
}

.holiday-details-hero-header__name {
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #111;
    margin: 0 0 0.65rem;
    line-height: 1.25;
}

.holiday-details-hero-header__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 1.25rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.holiday-details-hero-header__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.holiday-details-hero-header__meta-ico {
    color: var(--dynamic-color);
    font-size: 1rem;
}

.holiday-details-hero-header__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
}

.holiday-details-hero-header__action {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
}

.holiday-details-hero-header__action:hover {
    color: #111;
}

.holiday-details-hero-header__dl-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;
    font-size: 0.85rem;
}

.holiday-details-gallery-wrap {
    position: relative;
}

.holiday-details-gallery {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 0.75rem;
    align-items: stretch;
}

@media (max-width: 767.98px) {
    .holiday-details-gallery {
        grid-template-columns: 1fr;
    }

    .holiday-details-gallery__side {
        flex-direction: row;
    }

    .holiday-details-gallery__side-link {
        min-height: 96px;
    }

    .holiday-details-gallery__main-inner {
        height: clamp(180px, 42vw, 220px);
        max-height: 220px;
    }
}

.holiday-details-gallery__main {
    min-height: 0;
}

.holiday-details-gallery__main-inner {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    height:350px;
}

.holiday-details-gallery__hero-link {
    display: block;
    height: 100%;
    line-height: 0;
}

.holiday-details-gallery__hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.holiday-details-gallery__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: var(--dynamic-color);
    box-shadow: 0 2px 14px rgba(15, 23, 42, 0.18);
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.holiday-details-gallery__arrow i {
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1;
}

.holiday-details-gallery__arrow--prev {
    left: 0.65rem;
}

.holiday-details-gallery__arrow--next {
    right: 0.65rem;
}

.holiday-details-gallery__arrow:hover {
    background: #fff;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.22);
    transform: translateY(-50%) scale(1.06);
}

.holiday-details-gallery__arrow:focus-visible {
    outline: 2px solid var(--dynamic-color);
    outline-offset: 2px;
}

.holiday-details-gallery__arrow:active {
    transform: translateY(-50%) scale(0.98);
}

@media (max-width: 575.98px) {
    .holiday-details-gallery__arrow {
        width: 38px;
        height: 38px;
    }

    .holiday-details-gallery__arrow--prev {
        left: 0.45rem;
    }

    .holiday-details-gallery__arrow--next {
        right: 0.45rem;
    }

    .holiday-details-gallery__arrow i {
        font-size: 1.2rem;
    }
}

.holiday-details-gallery__bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.65rem 1rem;
    background: rgba(17, 24, 39, 0.72);
    backdrop-filter: blur(4px);
}

.holiday-details-gallery__bar-count {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #fff;
    text-transform: uppercase;
}

.holiday-details-gallery__dots {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.holiday-details-gallery__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease;
}

.holiday-details-gallery__dot.is-active {
    background: var(--dynamic-color);
    transform: scale(1.15);
}

.holiday-details-gallery__dot:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.holiday-details-gallery__side {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 0;
}

.holiday-details-gallery__side-link {
    display: block;
    flex: 1 1 0;
    min-height: 170px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    line-height: 0;
}

.holiday-details-gallery__side-img {
    width: 100%;
    height: 100%;
    min-height: 88px;
    object-fit: cover;
    display: block;
}

.holiday-details-gallery__extras {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.holiday-details-gallery__extras a {
    position: absolute;
    width: 1px;
    height: 1px;
}

/* Blog details */
.blog-details__title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #111;
    line-height: 1.25;
    margin: 0 0 0.65rem;
    letter-spacing: -0.02em;
}

.blog-details__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem 0.35rem;
}

.blog-details__meta-sep {
    opacity: 0.65;
}

.blog-details__hero {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.blog-details__hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: min(68vh, 520px);
    aspect-ratio: 1200 / 640;
}

@supports not (aspect-ratio: 1) {
    .blog-details__hero-img {
        min-height: 220px;
    }
}

.blog-details__prose {
    font-size: 1.02rem;
    line-height: 1.72;
    color: #374151;
}

.blog-details__prose p {
    margin: 0 0 1.1rem;
}

.blog-details__prose p:last-child {
    margin-bottom: 0;
}

.blog-details__lead {
    font-size: 1.08rem;
    line-height: 1.65;
    margin: 0 0 1.35rem;
}

.blog-details__back-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dynamic-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.blog-details__back-link:hover {
    color: var(--dynamic-color);
    text-decoration: underline;
}

/* —— Hotel search list & details —— */
.hotel-list-main {
    background: #fff;
}

.hotel-list-empty {
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.hotel-search-card {
    background: #fff;
    border: 1px solid #e8e4e6;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.hotel-search-card:hover {
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.1);
    transform: translateY(-2px);
}

.hotel-search-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    background: #e2e8f0;
}

.hotel-search-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hotel-search-card__badges {
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
}

.hotel-search-card__badge {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 800;
    background: rgba(15, 23, 42, 0.82);
    color: #fff;
}

.hotel-search-card__body {
    padding: 1rem 1.1rem 1.15rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hotel-search-card__name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.35rem;
    line-height: 1.3;
}

.hotel-search-card__rating-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.65rem;
}

.hotel-search-card__score {
    font-weight: 800;
    font-size: 0.95rem;
    color: #0f172a;
}

.hotel-search-card__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 0.5rem;
}

.hotel-search-card__price {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.hotel-search-card__per-night {
    font-size: 0.75rem;
}

.hotel-search-card .btn-primary {
    background: var(--dynamic-color) !important;
    border-color: var(--dynamic-color) !important;
    color: #fff !important;
}

.hotel-search-card .btn-primary:hover {
    filter: brightness(0.94);
    border-color: var(--dynamic-color) !important;
    color: #fff !important;
}

.hotel-search-card .btn-primary:focus-visible {
    box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--dynamic-color) 35%, transparent);
}

.hotel-details__title {
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.5rem;
    line-height: 1.2;
}

.hotel-details__hero-img {
    max-height: min(58vh, 420px);
    object-fit: cover;
    display: block;
}

.hotel-details__thumb {
    width: 88px;
    height: 56px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.85;
    transition: opacity 0.15s ease, border-color 0.15s ease;
}

.hotel-details__thumb:focus-visible {
    outline: 2px solid var(--dynamic-color);
    outline-offset: 2px;
}

.hotel-details__thumb.is-active {
    border-color: var(--dynamic-color);
    opacity: 1;
}

.hotel-details__sticky {
    position: sticky;
    top: 1rem;
}

.hotel-details__price-big {
    font-size: 1.65rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.hotel-details__score-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    padding: 0.2rem 0.45rem;
    border-radius: 6px;
    background: #ecfdf5;
    color: #047857;
    font-weight: 800;
    font-size: 0.9rem;
}

.hotel-details-enquiry {
    border: 1px solid color-mix(in srgb, var(--dynamic-color) 18%, #e8e4e6) !important;
    box-shadow: 0 4px 20px color-mix(in srgb, var(--dynamic-color) 8%, transparent) !important;
    border-top: 3px solid var(--dynamic-color) !important;
}

.hotel-details-enquiry__title {
    color: #0f172a;
    padding-bottom: 0.5rem;
    margin-bottom: 0.75rem !important;
    border-bottom: 2px solid color-mix(in srgb, var(--dynamic-color) 35%, transparent);
}

.hotel-details-enquiry .form-label {
    color: #334155;
}

.hotel-details-enquiry .form-label .text-danger {
    color: var(--dynamic-color) !important;
}

.hotel-details-enquiry .form-control {
    border-color: #d1d5db;
}

.hotel-details-enquiry .form-control:focus {
    border-color: var(--dynamic-color);
    box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--dynamic-color) 22%, transparent);
}

.hotel-details-enquiry .form-control.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.2);
}

.hotel-details-enquiry .btn-primary {
    background: var(--dynamic-color) !important;
    border-color: var(--dynamic-color) !important;
    color: #fff !important;
    transition: filter 0.15s ease, transform 0.1s ease;
}

.hotel-details-enquiry .btn-primary:hover {
    filter: brightness(0.94);
    border-color: var(--dynamic-color) !important;
    color: #fff !important;
}

.hotel-details-enquiry .btn-primary:active {
    transform: scale(0.99);
}

.hotel-details-sidebar-alert {
    font-size: 0.875rem;
    border-radius: 8px;
}

/* —— Cab search list & details —— */
.cab-list-main {
    background: #fff;
}

.cab-list-empty {
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.cab-search-card {
    background: #fff;
    border: 1px solid color-mix(in srgb, var(--dynamic-color) 22%, #e8e4e6);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px color-mix(in srgb, var(--dynamic-color) 8%, rgba(15, 23, 42, 0.06));
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.cab-search-card:hover {
    border-color: color-mix(in srgb, var(--dynamic-color) 45%, #e8e4e6);
    box-shadow: 0 8px 28px color-mix(in srgb, var(--dynamic-color) 14%, rgba(15, 23, 42, 0.08));
    transform: translateY(-2px);
}

.cab-search-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    background: #e2e8f0;
}

.cab-search-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cab-search-card__badges {
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.cab-search-card__badge {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 800;
    background: var(--dynamic-color);
    color: #fff;
}

.cab-search-card__badge--muted {
    background: color-mix(in srgb, var(--dynamic-color) 18%, #fff);
    color: color-mix(in srgb, var(--dynamic-color) 55%, #0f172a);
    border: 1px solid color-mix(in srgb, var(--dynamic-color) 35%, transparent);
}

.cab-search-card__body {
    padding: 1rem 1.1rem 1.15rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cab-search-card__name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.35rem;
    line-height: 1.3;
    transition: color 0.15s ease;
}

.cab-search-card__body > a:hover .cab-search-card__name {
    color: var(--dynamic-color);
}

.cab-search-card__area-ico {
    color: var(--dynamic-color);
}

.cab-search-card__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 0.5rem;
}

.cab-search-card__price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dynamic-color);
    line-height: 1.2;
}

.cab-search-card .btn-primary {
    background: var(--dynamic-color) !important;
    border-color: var(--dynamic-color) !important;
    color: #fff !important;
}

.cab-search-card .btn-primary:hover {
    filter: brightness(0.94);
    border-color: var(--dynamic-color) !important;
    color: #fff !important;
}

.cab-search-card .btn-primary:focus-visible {
    box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--dynamic-color) 35%, transparent);
}

.cab-details__title {
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.5rem;
    line-height: 1.2;
}

.cab-details__hero-img {
    max-height: min(58vh, 420px);
    object-fit: cover;
    display: block;
}

.cab-details__sticky {
    position: sticky;
    top: 1rem;
}

.cab-details__price-big {
    font-size: 1.65rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.cab-fare-breakup {
    border: 0;
    padding: 0;
}

.cab-fare-breakup__summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    list-style: none;
    cursor: pointer;
    color: #0066cc;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.15rem 0;
    user-select: none;
}

.cab-fare-breakup__summary::-webkit-details-marker,
.cab-fare-breakup__summary::marker {
    display: none;
}

.cab-fare-breakup__chev {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.cab-fare-breakup:not([open]) .cab-fare-breakup__chev {
    transform: rotate(180deg);
}

.cab-fare-breakup__panel {
    margin-top: 0.75rem;
    padding: 1rem 1.125rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.cab-fare-breakup__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    font-size: 0.875rem;
    margin-bottom: 0.45rem;
}

.cab-fare-breakup__row:last-of-type:not(.cab-fare-breakup__row--total) {
    margin-bottom: 0;
}

.cab-fare-breakup__label {
    color: #334155;
    font-weight: 400;
}

.cab-fare-breakup__amt {
    font-weight: 700;
    color: #0f172a;
    white-space: nowrap;
}

.cab-fare-breakup__hr {
    border: 0;
    border-top: 1px solid #e2e8f0;
    margin: 0.65rem 0 0.5rem;
    opacity: 1;
}

.cab-fare-breakup__row--total {
    margin-bottom: 0;
    margin-top: 0.15rem;
}

.cab-fare-breakup__row--total .cab-fare-breakup__label,
.cab-fare-breakup__row--total .cab-fare-breakup__amt {
    font-weight: 700;
    font-size: 0.9375rem;
}

.cab-fare-breakup__row--total .cab-fare-breakup__amt {
    font-size: 1.0625rem;
}

.cab-fare-breakup__note {
    line-height: 1.45;
    font-size: 0.75rem;
}

.cab-details-enquiry {
    border: 1px solid color-mix(in srgb, var(--dynamic-color) 18%, #e8e4e6) !important;
    box-shadow: 0 4px 20px color-mix(in srgb, var(--dynamic-color) 8%, transparent) !important;
    border-top: 3px solid var(--dynamic-color) !important;
}

.cab-details-enquiry__title {
    color: #0f172a;
    padding-bottom: 0.5rem;
    margin-bottom: 0.75rem !important;
    border-bottom: 2px solid color-mix(in srgb, var(--dynamic-color) 35%, transparent);
}

.cab-details-enquiry .form-label {
    color: #334155;
}

.cab-details-enquiry .form-label .text-danger {
    color: var(--dynamic-color) !important;
}

.cab-details-enquiry .form-control {
    border-color: #d1d5db;
}

.cab-details-enquiry .form-control:focus {
    border-color: var(--dynamic-color);
    box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--dynamic-color) 22%, transparent);
}

.cab-details-enquiry .form-control.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.2);
}

.cab-details-enquiry .btn-primary {
    background: var(--dynamic-color) !important;
    border-color: var(--dynamic-color) !important;
    color: #fff !important;
    transition: filter 0.15s ease, transform 0.1s ease;
}

.cab-details-enquiry .btn-primary:hover {
    filter: brightness(0.94);
    border-color: var(--dynamic-color) !important;
    color: #fff !important;
}

.cab-details-enquiry .btn-primary:active {
    transform: scale(0.99);
}

.cab-details-sidebar-alert {
    font-size: 0.875rem;
    border-radius: 8px;
}

/* —— Bus search list & details —— */
.bus-list-main {
    background: #fff;
}

.bus-list-empty {
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.bus-search-card {
    background: #fff;
    border: 1px solid color-mix(in srgb, var(--dynamic-color) 22%, #e8e4e6);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px color-mix(in srgb, var(--dynamic-color) 8%, rgba(15, 23, 42, 0.06));
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.bus-search-card:hover {
    border-color: color-mix(in srgb, var(--dynamic-color) 45%, #e8e4e6);
    box-shadow: 0 8px 28px color-mix(in srgb, var(--dynamic-color) 14%, rgba(15, 23, 42, 0.08));
    transform: translateY(-2px);
}

.bus-search-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    background: #e2e8f0;
}

.bus-search-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bus-search-card__badges {
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.bus-search-card__badge {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 800;
    background: var(--dynamic-color);
    color: #fff;
}

.bus-search-card__badge--muted {
    background: color-mix(in srgb, var(--dynamic-color) 18%, #fff);
    color: color-mix(in srgb, var(--dynamic-color) 55%, #0f172a);
    border: 1px solid color-mix(in srgb, var(--dynamic-color) 35%, transparent);
}

.bus-search-card__body {
    padding: 1rem 1.1rem 1.15rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bus-search-card__name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.35rem;
    line-height: 1.3;
    transition: color 0.15s ease;
}

.bus-search-card__body > a:hover .bus-search-card__name {
    color: var(--dynamic-color);
}

.bus-search-card__route-ico {
    color: var(--dynamic-color);
}

.bus-search-card__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 0.5rem;
}

.bus-search-card__price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dynamic-color);
    line-height: 1.2;
}

.bus-search-card .btn-primary {
    background: var(--dynamic-color) !important;
    border-color: var(--dynamic-color) !important;
    color: #fff !important;
}

.bus-search-card .btn-primary:hover {
    filter: brightness(0.94);
    border-color: var(--dynamic-color) !important;
    color: #fff !important;
}

.bus-search-card .btn-primary:focus-visible {
    box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--dynamic-color) 35%, transparent);
}

.bus-details__title {
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.5rem;
    line-height: 1.2;
}

.bus-details__route-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
}

.bus-details__arrow {
    color: var(--dynamic-color);
    font-size: 0.95rem;
    opacity: 0.9;
}

.bus-details__hero-img {
    max-height: min(58vh, 420px);
    object-fit: cover;
    display: block;
}

.bus-details__sticky {
    position: sticky;
    top: 1rem;
}

.bus-details__price-big {
    font-size: 1.65rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.bus-details-enquiry {
    border: 1px solid color-mix(in srgb, var(--dynamic-color) 18%, #e8e4e6) !important;
    box-shadow: 0 4px 20px color-mix(in srgb, var(--dynamic-color) 8%, transparent) !important;
    border-top: 3px solid var(--dynamic-color) !important;
}

.bus-details-enquiry__title {
    color: #0f172a;
    padding-bottom: 0.5rem;
    margin-bottom: 0.75rem !important;
    border-bottom: 2px solid color-mix(in srgb, var(--dynamic-color) 35%, transparent);
}

.bus-details-enquiry .form-label {
    color: #334155;
}

.bus-details-enquiry .form-label .text-danger {
    color: var(--dynamic-color) !important;
}

.bus-details-enquiry .form-control {
    border-color: #d1d5db;
}

.bus-details-enquiry .form-control:focus {
    border-color: var(--dynamic-color);
    box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--dynamic-color) 22%, transparent);
}

.bus-details-enquiry .form-control.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.2);
}

.bus-details-enquiry .btn-primary {
    background: var(--dynamic-color) !important;
    border-color: var(--dynamic-color) !important;
    color: #fff !important;
    transition: filter 0.15s ease, transform 0.1s ease;
}

.bus-details-enquiry .btn-primary:hover {
    filter: brightness(0.94);
    border-color: var(--dynamic-color) !important;
    color: #fff !important;
}

.bus-details-enquiry .btn-primary:active {
    transform: scale(0.99);
}

.bus-details-sidebar-alert {
    font-size: 0.875rem;
    border-radius: 8px;
}

@supports not (aspect-ratio: 1) {
    .hotel-search-card__media {
        min-height: 180px;
    }

    .cab-search-card__media {
        min-height: 180px;
    }

    .bus-search-card__media {
        min-height: 180px;
    }
}

/* Home FAB + enquiry flash */
.home-enquire-fab {
    position: fixed;
    right: max(1rem, env(safe-area-inset-right));
    bottom: max(1rem, env(safe-area-inset-bottom));
    z-index: 1040;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.1rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #fff;
    background: var(--dynamic-color);
    border: 1px solid color-mix(in srgb, #000 12%, var(--dynamic-color));
    border-radius: 999px;
    box-shadow:
        0 4px 14px color-mix(in srgb, var(--dynamic-color) 45%, transparent),
        0 1px 0 rgba(255, 255, 255, 0.2) inset;
    cursor: pointer;
    transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}

.home-enquire-fab:hover {
    color: #fff;
    filter: brightness(1.03);
    transform: translateY(-1px);
    box-shadow:
        0 6px 20px color-mix(in srgb, var(--dynamic-color) 40%, transparent),
        0 1px 0 rgba(255, 255, 255, 0.2) inset;
}

.home-enquire-fab:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 3px #fff,
        0 0 0 6px color-mix(in srgb, var(--dynamic-color) 55%, transparent);
}

.home-enquire-fab__icon {
    font-size: 1.05rem;
    opacity: 0.95;
}

.site-home-flash {
    border: 1px solid color-mix(in srgb, #16a34a 35%, #d1d5db);
    border-radius: 12px;
    background: #f0fdf4;
    color: #14532d;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
}

.site-home-flash .btn-close {
    filter: none;
    opacity: 0.5;
}

/* Modals — shared sheet */
.site-modal-fade .modal-dialog {
    transform: translateY(8px);
    transition: transform 0.22s ease-out;
}

.site-modal-fade.show .modal-dialog {
    transform: none;
}

.site-modal-dialog {
    max-width: 600px;
}

.site-modal-dialog--wide {
    max-width: 440px;
}

.site-modal-sheet {
    position: relative;
    border: 1px solid #e7e5e4;
    border-radius: 18px;
    background: #fafaf9;
    box-shadow:
        0 24px 48px rgba(15, 23, 42, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset;
    overflow: hidden;
}

.site-modal-sheet__accent {
    height: 4px;
    width: 100%;
    background: linear-gradient(
        90deg,
        var(--dynamic-color) 0%,
        color-mix(in srgb, var(--dynamic-color) 65%, #0d9488) 100%
    );
}

.site-modal-sheet__header {
    padding: 1.25rem 1.35rem 0.5rem;
    border: none;
    background: transparent;
}

.site-modal-sheet__close {
    margin-top: -0.25rem;
    opacity: 0.45;
}

.site-modal-sheet__close:hover {
    opacity: 0.75;
}

.site-modal-sheet__eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #78716c;
    margin: 0;
}

.site-modal-sheet__title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1c1917;
    letter-spacing: -0.02em;
}

.site-modal-sheet__body {
    padding: 0.35rem 1.35rem 1.5rem;
}

.site-modal-sheet__lede {
    font-size: 0.875rem;
    line-height: 1.55;
    color: #57534e;
    margin-bottom: 1.1rem;
}

.site-field-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: #44403c;
    margin-bottom: 0.35rem;
}

.site-field {
    display: flex;
    align-items: stretch;
    border: 1px solid #d6d3d1;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.site-field:focus-within {
    border-color: color-mix(in srgb, var(--dynamic-color) 55%, #d6d3d1);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--dynamic-color) 18%, transparent);
}

.site-field__prefix {
    display: flex;
    align-items: center;
    padding: 0 0.65rem 0 0.85rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #78716c;
    background: #f5f5f4;
    border-right: 1px solid #e7e5e4;
}

.site-field__input {
    flex: 1;
    border: none;
    padding: 0.65rem 0.85rem;
    font-size: 1rem;
    background: transparent;
    min-width: 0;
}

.site-field__input:focus {
    outline: none;
}

.site-field__input::placeholder {
    color: #a8a29e;
}

.site-input {
    display: block;
    width: 100%;
    border: 1px solid #d6d3d1;
    border-radius: 12px;
    padding: 0.65rem 0.85rem;
    font-size: 0.95rem;
    background: #fff;
    color: #1c1917;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.site-input::placeholder {
    color: #a8a29e;
}

.site-input:focus {
    outline: none;
    border-color: color-mix(in srgb, var(--dynamic-color) 55%, #d6d3d1);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--dynamic-color) 18%, transparent);
}

.site-input--textarea {
    min-height: 6.5rem;
    resize: vertical;
}

.site-input.is-invalid {
    border-color: #dc2626;
}

.site-modal-hint {
    font-size: 0.75rem;
    line-height: 1.45;
    color: #78716c;
}

.site-form-error {
    font-size: 0.8rem;
    color: #b91c1c;
    min-height: 1.1rem;
}

.site-btn-primary {
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.65rem 1rem;
    border-radius: 12px;
    border: 1px solid color-mix(in srgb, #000 8%, var(--dynamic-color));
    background: var(--dynamic-color);
    color: #fff;
    transition: filter 0.15s ease, transform 0.1s ease;
}

.site-btn-primary:hover {
    color: #fff;
    filter: brightness(1.05);
    background:#cf511e;
}

.site-btn-primary:active {
    transform: scale(0.99);
    background:#cf511e;
}

.site-btn-ghost {
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.5rem;
    border-radius: 10px;
    border: none;
    background: transparent;
    color: #57534e;
}

.site-btn-ghost:hover {
    background: #f5f5f4;
    color: #292524;
}

/* OTP boxes */
.site-otp-row {
    display: flex;
    gap: 0.45rem;
    justify-content: space-between;
    margin-bottom: 0.15rem;
}

.site-otp-digit {
    width: 100%;
    max-width: 3rem;
    min-height: 44px;
    aspect-ratio: 1;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1c1917;
    border: 1px solid #d6d3d1;
    border-radius: 10px;
    background: #fff;
    padding: 0;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.site-otp-digit:focus {
    outline: none;
    border-color: var(--dynamic-color);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--dynamic-color) 22%, transparent);
}

@media (max-width: 380px) {
    .site-otp-row {
        gap: 0.3rem;
    }

    .site-otp-digit {
        max-width: 2.65rem;
        font-size: 1.05rem;
    }
}

.site-modal-done {
    text-align: center;
    padding: 1.25rem 0 0.5rem;
}

.site-modal-done__icon {
    display: inline-flex;
    font-size: 2.25rem;
    color: #16a34a;
    margin-bottom: 0.35rem;
}

.site-modal-done__title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1c1917;
}

.site-modal-done__sub {
    font-size: 0.85rem;
    color: #78716c;
}

/* —— Destination explore (combined search) —— */
.destination-explore-page .destination-explore__title {
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
}

.destination-explore__card {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #fff;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.destination-explore__card:hover {
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.destination-explore__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-explore__card-ph {
    width: 100%;
    height: 100%;
    min-height: 6rem;
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
}

.destination-explore__card--inline {
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #fff;
}

/* =============================================================================
   Site-wide mobile / small screens (public + shared components)
   ============================================================================= */

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    overflow-x: hidden;
}

img,
video {
    max-width: 100%;
    height: auto;
}

@media (max-width: 575.98px) {
    .container,
    .container-sm,
    .container-md {
        padding-left: max(0.75rem, env(safe-area-inset-left));
        padding-right: max(0.75rem, env(safe-area-inset-right));
    }
}
.cab-related__intro{
    margin-bottom: 2rem;
    max-width: 1320px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

/* Header — flat nav (no hamburger); menu links stay visible on small screens */
@media (max-width: 991.98px) {
    .site-header .navbar {
        padding-top: 0;
        padding-bottom: 0;
    }

    .site-header .navbar > .container {
        flex-wrap: nowrap;
        align-items: center !important;
    }

    .site-header .navbar-nav {
        width: auto;
        flex-direction: row;
        align-items: center !important;
    }

    .site-header .navbar-nav .nav-item {
        width: auto;
    }

    .site-header .navbar-nav .nav-link {
        padding: 0.45rem 0.25rem;
        white-space: nowrap;
    }

    .site-logo--image img {
        max-height: 40px;
    }
}

/* Home hero — travel search overlaps banner; soften on narrow viewports */
@media (max-width: 767.98px) {
    .hero_section .travel-search {
        margin-top: clamp(-5.5rem, -11vw, -3.25rem);
        padding-left: max(0.25rem, env(safe-area-inset-left));
        padding-right: max(0.25rem, env(safe-area-inset-right));
    }

    .travel-search__panel {
        padding: 0.85rem;
        border-radius: 12px;
    }

    .travel-search__tabs {
        padding: 0.35rem 0.45rem;
    }

    .travel-search__tab {
        padding: 6px 10px;
        font-size:11px;
        gap: 0.4rem;
    }

    .travel-search__tab-icon i {
        font-size: 11px;
    }
}

@media (max-width: 399.98px) {
    .hero_section .travel-search {
        margin-top: -2.75rem;
    }
}

/* Hotel deals — many city chips: horizontal scroll */
@media (max-width: 767.98px) {
    .hotel-deals__header {
        flex-direction: column;
        align-items: stretch;
    }

    .hotel-deals__header-right {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
    }

    .hotel-deals__filters {
        overflow-x: auto;
        gap: 0.45rem;
        padding-bottom: 0.35rem;
        scrollbar-width: thin;
        white-space: nowrap;
    }

    .hotel-deals__filter-btn {
        flex: 0 0 auto;
    }
    .slick-carousel-wrap{padding:0px;}
    .popular-packages-slider-wrap{padding:0px 20px;}
    .popular-dest-slider-wrap{padding:0px 20px;}
    .popular-dest-card__media{    aspect-ratio: 4 / 4;}
    /* .popular-package-card{margin:0px 20px;} */
}

/* Slick: prevent float wrap when slide count > slidesToShow (same as popular packages) */
.hotel-deals-slider.slick-initialized .slick-track,
.explore-india-slider.slick-initialized .slick-track,
.travel-stories-slider.slick-initialized .slick-track,
.testimonials-slider.slick-initialized .slick-track,
.popular-dest-slider.slick-initialized .slick-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: stretch;
}

.hotel-deals-slider.slick-initialized .slick-slide,
.explore-india-slider.slick-initialized .slick-slide,
.travel-stories-slider.slick-initialized .slick-slide,
.testimonials-slider.slick-initialized .slick-slide,
.popular-dest-slider.slick-initialized .slick-slide {
    float: none !important;
    flex-shrink: 0;
}

/* Package details — sticky nav scrolls horizontally on small screens */
@media (max-width: 991.98px) {
    .holiday-details-section-nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
    }

    .holiday-details-hotel-row {
        flex-direction: column;
        align-items: stretch;
        gap: 0.65rem;
    }

    .holiday-details-hotel-row__media {
        width: 100%;
        min-height: 140px;
        border-radius: 6px;
    }

    .holiday-details-hotel-row__img,
    .holiday-details-hotel-row__img--placeholder {
        border-radius: 6px;
    }
}

@media (max-width: 575.98px) {
    .holiday-details-gallery__main-inner {
        height: clamp(200px, 52vw, 300px);
    }

    .holiday-details-hero-header__name {
        font-size: clamp(1.05rem, 5vw, 1.35rem);
    }
}

/* Modals — respect safe area + small margins */
@media (max-width: 575.98px) {
    .site-modal-fade .modal-dialog {
        margin-left: max(0.5rem, env(safe-area-inset-left));
        margin-right: max(0.5rem, env(safe-area-inset-right));
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        max-width: calc(100% - 1rem);
    }

    .home-enquire-fab {
        right: max(0.65rem, env(safe-area-inset-right));
        bottom: max(0.65rem, env(safe-area-inset-bottom));
        padding: 0.55rem 0.9rem;
        font-size: 0.875rem;
    }
}

/* List / blog content: long words don’t blow layout */
.holiday-details__lead,
.blog-details-page__main,
.blog-details__article-section,
.package-list-page__main {
    overflow-wrap: anywhere;
    word-wrap: break-word;
}

/* Admin tables: horizontal scroll on small screens (Skydash) */
@media (max-width: 991.98px) {
    .container-scroller .content-wrapper .card .table-responsive,
    .container-scroller .content-wrapper .card > .table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}
