/* Dedicated B2C hotel landing page. All rules are scoped to keep other services unchanged. */
.hotel-landing-page {
    --hotel-ink: #10264b;
    --hotel-text: #344a6b;
    --hotel-muted: #6f8099;
    --hotel-line: #dce6f2;
    --hotel-soft: #f5f8fc;
    --hotel-blue: var(--brand-blue);
    --hotel-blue-dark: var(--brand-blue-dark);
    color: var(--hotel-text);
    background: #fff;
}

.hotel-landing-page,
.hotel-landing-page *,
.hotel-landing-page *::before,
.hotel-landing-page *::after {
    box-sizing: border-box;
}

.hotel-landing-container {
    width: 100%;
    max-width: 1320px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 20px;
    padding-left: 20px;
}

.hotel-confidence-strip {
    padding: 22px 0;
    border-bottom: 1px solid #e5ebf3;
    background: #fff;
}

.hotel-confidence-strip .hotel-landing-container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hotel-confidence-strip article {
    display: flex;
    min-width: 0;
    min-height: 68px;
    padding: 8px 22px;
    align-items: center;
    gap: 12px;
    border-right: 1px solid #e2e9f2;
}

.hotel-confidence-strip article:first-child { padding-left: 0; }
.hotel-confidence-strip article:last-child { padding-right: 0; border-right: 0; }

.hotel-confidence-strip article > i {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    color: var(--hotel-blue);
    border-radius: 13px;
    background: #edf4ff;
    font-size: 1.05rem;
}

.hotel-confidence-strip article > span {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.hotel-confidence-strip strong {
    color: var(--hotel-ink);
    font-size: .79rem;
    font-weight: 750;
}

.hotel-confidence-strip small {
    margin-top: 3px;
    color: var(--hotel-muted);
    font-size: .63rem;
    line-height: 1.4;
}

.hotel-landing-section {
    width: 100%;
    padding: 68px 0;
}

.hotel-landing-section-muted { background: var(--hotel-soft); }

.hotel-section-heading {
    display: flex;
    margin-bottom: 26px;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
}

.hotel-section-heading > div > span,
.hotel-faq-intro > span {
    display: block;
    margin-bottom: 7px;
    color: var(--hotel-blue);
    font-size: .65rem;
    font-weight: 750;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.hotel-section-heading h2,
.hotel-faq-intro h2,
.hotel-search-cta h2 {
    margin: 0;
    color: var(--hotel-ink);
    font-size: clamp(1.65rem, 2.3vw, 2.35rem);
    font-weight: 750;
    letter-spacing: -.04em;
    line-height: 1.12;
}

.hotel-section-heading > p {
    width: min(490px, 100%);
    margin: 0;
    color: var(--hotel-muted);
    font-size: .78rem;
    line-height: 1.65;
}

.hotel-section-heading-centered {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.hotel-section-heading-centered > p { width: min(620px, 100%); }

.hotel-destination-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.hotel-destination-card {
    position: relative;
    display: block;
    min-width: 0;
    height: 250px;
    overflow: hidden;
    color: #fff;
    border-radius: 20px;
    background: #173c72;
    box-shadow: 0 13px 30px rgba(16, 38, 75, .13);
    text-decoration: none;
}

.hotel-destination-media,
.hotel-destination-overlay {
    position: absolute;
    inset: 0;
}

.hotel-destination-media {
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #2d69bb, #163865);
}

.hotel-destination-tone-2 .hotel-destination-media { background: linear-gradient(145deg, #178b91, #174d72); }
.hotel-destination-tone-3 .hotel-destination-media { background: linear-gradient(145deg, #a56c35, #523b56); }
.hotel-destination-tone-4 .hotel-destination-media { background: linear-gradient(145deg, #4e815a, #244f65); }

.hotel-destination-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.hotel-destination-media > i {
    color: rgba(255, 255, 255, .28);
    font-size: 4.4rem;
}

.hotel-destination-overlay {
    background: linear-gradient(180deg, rgba(5, 20, 45, .04) 20%, rgba(5, 20, 45, .88) 100%);
}

.hotel-destination-copy {
    position: absolute;
    z-index: 1;
    right: 20px;
    bottom: 18px;
    left: 20px;
    display: flex;
    flex-direction: column;
}

.hotel-destination-copy small {
    overflow: hidden;
    color: rgba(255, 255, 255, .78);
    font-size: .61rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hotel-destination-copy strong {
    margin-top: 3px;
    font-size: 1.25rem;
    font-weight: 750;
    letter-spacing: -.025em;
}

.hotel-destination-copy em {
    display: inline-flex;
    margin-top: 9px;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: .63rem;
    font-style: normal;
    font-weight: 700;
}

.hotel-featured-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.hotel-featured-card {
    display: grid;
    min-width: 0;
    overflow: hidden;
    grid-template-columns: minmax(210px, .86fr) minmax(0, 1.14fr);
    border: 1px solid var(--hotel-line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(18, 45, 82, .08);
}

.hotel-featured-media {
    position: relative;
    display: grid;
    min-height: 250px;
    overflow: hidden;
    place-items: center;
    color: #fff;
    background: linear-gradient(145deg, #9cb8cf, #365a7b);
}

.hotel-featured-media > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.hotel-featured-media > i { color: rgba(255, 255, 255, .55); font-size: 3rem; }

.hotel-featured-media > span {
    position: absolute;
    bottom: 14px;
    left: 14px;
    display: inline-flex;
    max-width: calc(100% - 28px);
    padding: 7px 10px;
    align-items: center;
    gap: 5px;
    overflow: hidden;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 999px;
    background: rgba(8, 25, 52, .72);
    font-size: .61rem;
    font-weight: 650;
    text-overflow: ellipsis;
    white-space: nowrap;
    backdrop-filter: blur(8px);
}

.hotel-featured-copy {
    display: flex;
    min-width: 0;
    padding: 22px;
    flex-direction: column;
}

.hotel-featured-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.hotel-featured-title > div { min-width: 0; }
.hotel-featured-stars { display: flex; gap: 2px; color: #f4a915; font-size: .62rem; }

.hotel-featured-title h3 {
    display: -webkit-box;
    overflow: hidden;
    margin: 8px 0 5px;
    color: var(--hotel-ink);
    font-size: 1.03rem;
    font-weight: 750;
    letter-spacing: -.02em;
    line-height: 1.3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.hotel-featured-title p {
    margin: 0;
    color: var(--hotel-muted);
    font-size: .65rem;
    line-height: 1.5;
}

.hotel-featured-rating {
    display: grid;
    width: 40px;
    height: 37px;
    flex: 0 0 40px;
    place-items: center;
    color: #fff;
    border-radius: 10px 10px 10px 3px;
    background: #087b59;
    font-size: .7rem;
}

.hotel-featured-price {
    display: flex;
    margin-top: auto;
    padding-top: 18px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    border-top: 1px solid #edf1f6;
}

.hotel-featured-price > span { display: flex; flex-direction: column; }
.hotel-featured-price small { color: var(--hotel-muted); font-size: .57rem; }
.hotel-featured-price strong { margin-top: 2px; color: var(--hotel-ink); font-size: 1rem; }

.hotel-featured-price > a {
    display: inline-flex;
    min-height: 40px;
    padding: 0 13px;
    align-items: center;
    gap: 6px;
    color: #fff;
    border-radius: 10px;
    background: var(--hotel-blue);
    font-size: .62rem;
    font-weight: 700;
    text-decoration: none;
}

.hotel-rate-disclaimer {
    display: flex;
    margin: 16px 0 0;
    align-items: flex-start;
    gap: 7px;
    color: var(--hotel-muted);
    font-size: .62rem;
    line-height: 1.5;
}

.hotel-rate-disclaimer i { color: var(--hotel-blue); }

.hotel-style-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.hotel-style-grid > a {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 156px;
    padding: 22px;
    flex-direction: column;
    color: var(--hotel-text);
    border: 1px solid var(--hotel-line);
    border-radius: 18px;
    background: linear-gradient(145deg, #fff, #f8fbff);
    box-shadow: 0 8px 24px rgba(18, 45, 82, .055);
    text-decoration: none;
}

.hotel-style-grid > a > i {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    color: var(--hotel-blue);
    border-radius: 14px;
    background: #edf4ff;
    font-size: 1.1rem;
}

.hotel-style-grid > a > span { display: flex; margin-top: 18px; flex-direction: column; }
.hotel-style-grid strong { color: var(--hotel-ink); font-size: .82rem; }
.hotel-style-grid small { margin-top: 5px; color: var(--hotel-muted); font-size: .62rem; line-height: 1.5; }
.hotel-style-grid > a > b { position: absolute; top: 22px; right: 22px; color: #8ba0bd; font-size: .8rem; }

.hotel-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.hotel-steps-grid article {
    position: relative;
    min-height: 225px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid var(--hotel-line);
    border-radius: 20px;
    background: #fff;
    text-align: center;
}

.hotel-steps-grid article > span {
    position: absolute;
    top: 18px;
    right: 20px;
    color: #e0e9f5;
    font-size: 1.5rem;
    font-weight: 800;
}

.hotel-steps-grid article > i {
    display: grid;
    width: 56px;
    height: 56px;
    margin: 8px auto 18px;
    place-items: center;
    color: var(--hotel-blue);
    border-radius: 17px;
    background: #edf4ff;
    font-size: 1.25rem;
}

.hotel-steps-grid h3 { margin: 0; color: var(--hotel-ink); font-size: .9rem; font-weight: 750; }
.hotel-steps-grid p { margin: 8px auto 0; color: var(--hotel-muted); font-size: .66rem; line-height: 1.6; }

.hotel-faq-layout {
    display: grid;
    grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
    align-items: start;
    gap: clamp(35px, 6vw, 90px);
}

.hotel-faq-intro h2 { max-width: 420px; }
.hotel-faq-intro p { max-width: 430px; margin: 16px 0 22px; color: var(--hotel-muted); font-size: .75rem; line-height: 1.7; }

.hotel-faq-intro > a {
    display: inline-flex;
    min-height: 42px;
    padding: 0 13px;
    align-items: center;
    gap: 8px;
    color: var(--hotel-blue);
    border: 1px solid #bdd0f3;
    border-radius: 10px;
    background: #f7faff;
    font-size: .66rem;
    font-weight: 700;
    text-decoration: none;
}

.hotel-faq-list details {
    overflow: hidden;
    margin-bottom: 11px;
    border: 1px solid var(--hotel-line);
    border-radius: 14px;
    background: #fff;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.hotel-faq-list details:last-child { margin-bottom: 0; }
.hotel-faq-list details[open] { border-color: #b3c9f3; box-shadow: 0 9px 24px rgba(18, 45, 82, .07); }

.hotel-faq-list summary {
    display: flex;
    min-height: 66px;
    padding: 17px 18px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--hotel-ink);
    cursor: pointer;
    font-size: .74rem;
    font-weight: 700;
    list-style: none;
}

.hotel-faq-list summary::-webkit-details-marker { display: none; }
.hotel-faq-list summary i { color: var(--hotel-blue); transition: transform .18s ease; }
.hotel-faq-list details[open] summary i { transform: rotate(45deg); }
.hotel-faq-list details > p { margin: 0; padding: 0 18px 18px; color: var(--hotel-muted); font-size: .68rem; line-height: 1.65; }

.hotel-search-cta {
    padding: 0 0 72px;
    background: #fff;
}

.hotel-search-cta .hotel-landing-container {
    display: flex;
    min-height: 210px;
    padding: 38px 48px;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    color: #fff;
    border-radius: 24px;
    background: linear-gradient(120deg, #0d2b61, #155eef 70%, #08a5bc);
    box-shadow: 0 22px 55px rgba(13, 56, 130, .2);
}

.hotel-search-cta .hotel-landing-container > div { max-width: 700px; }
.hotel-search-cta span { color: #80e9f5; font-size: .65rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.hotel-search-cta h2 { margin-top: 7px; color: #fff; }
.hotel-search-cta p { margin: 10px 0 0; color: rgba(255, 255, 255, .78); font-size: .72rem; line-height: 1.6; }

.hotel-search-cta a {
    display: inline-flex;
    min-height: 48px;
    padding: 0 19px;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
    color: var(--hotel-ink);
    border-radius: 12px;
    background: #fff;
    font-size: .7rem;
    font-weight: 750;
    text-decoration: none;
}

@media (hover: hover) {
    .hotel-destination-card:hover .hotel-destination-media img,
    .hotel-featured-card:hover .hotel-featured-media > img { transform: scale(1.045); }
    .hotel-destination-card:hover,
    .hotel-style-grid > a:hover { transform: translateY(-3px); }
    .hotel-destination-card,
    .hotel-style-grid > a { transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
    .hotel-style-grid > a:hover { border-color: #b8ccf1; box-shadow: 0 15px 32px rgba(18, 45, 82, .1); }
}

@media (max-width: 1199.98px) {
    .hotel-confidence-strip article { padding-right: 14px; padding-left: 14px; }
    .hotel-confidence-strip article:first-child { padding-left: 0; }
    .hotel-confidence-strip article:last-child { padding-right: 0; }
    .hotel-destination-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
    .hotel-destination-card { height: 225px; }
    .hotel-featured-card { grid-template-columns: 190px minmax(0, 1fr); }
    .hotel-featured-copy { padding: 18px; }
}

@media (max-width: 991.98px) {
    .hotel-confidence-strip .hotel-landing-container { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hotel-confidence-strip article:nth-child(2) { border-right: 0; }
    .hotel-confidence-strip article:nth-child(-n+2) { border-bottom: 1px solid #e2e9f2; }
    .hotel-confidence-strip article:first-child,
    .hotel-confidence-strip article:nth-child(3) { padding-left: 0; }
    .hotel-confidence-strip article:nth-child(2),
    .hotel-confidence-strip article:last-child { padding-right: 0; }
    .hotel-destination-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
    .hotel-destination-card { height: 260px; }
    .hotel-featured-grid { grid-template-columns: 1fr; }
    .hotel-featured-card { grid-template-columns: minmax(230px, .8fr) minmax(0, 1.2fr); }
    .hotel-style-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767.98px) {
    .homepage-v2 .booking-body {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    .hotel-landing-container { padding-right: var(--mobile-page-gutter, 14px); padding-left: var(--mobile-page-gutter, 14px); }
    .hotel-confidence-strip { padding: 14px 0; }
    .hotel-confidence-strip article { min-height: 72px; padding-top: 9px; padding-bottom: 9px; }
    .hotel-confidence-strip article > i { width: 38px; height: 38px; flex-basis: 38px; font-size: .95rem; }
    .hotel-confidence-strip strong { font-size: .78rem; }
    .hotel-confidence-strip small { font-size: .66rem; font-weight: 500; }
    .hotel-landing-section { padding: 42px 0; }
    .hotel-section-heading { margin-bottom: 20px; align-items: flex-start; flex-direction: column; gap: 10px; }
    .hotel-section-heading-centered { align-items: flex-start; text-align: left; }
    .hotel-section-heading > div > span,
    .hotel-faq-intro > span { font-size: .7rem; }
    .hotel-section-heading h2,
    .hotel-faq-intro h2,
    .hotel-search-cta h2 { font-size: clamp(1.48rem, 7vw, 1.9rem); }
    .hotel-section-heading > p { width: 100%; font-size: .8rem; font-weight: 500; line-height: 1.55; }
    .hotel-destination-card { height: 215px; border-radius: 16px; }
    .hotel-destination-copy { right: 15px; bottom: 14px; left: 15px; }
    .hotel-destination-copy strong { font-size: 1.05rem; }
    .hotel-destination-copy small,
    .hotel-destination-copy em { font-size: .68rem; font-weight: 600; }
    .hotel-featured-card { display: block; border-radius: 17px; }
    .hotel-featured-media { min-height: 205px; }
    .hotel-featured-copy { min-height: 0; padding: 18px; }
    .hotel-featured-media > span { font-size: .68rem; }
    .hotel-featured-title h3 { font-size: 1rem; }
    .hotel-featured-title p { font-size: .75rem; font-weight: 500; }
    .hotel-featured-price small { font-size: .66rem; }
    .hotel-featured-price > a { min-height: 44px; font-size: .75rem; }
    .hotel-rate-disclaimer { font-size: .7rem; font-weight: 500; }
    .hotel-style-grid strong { font-size: .88rem; }
    .hotel-style-grid small { font-size: .74rem; font-weight: 500; }
    .hotel-steps-grid { grid-template-columns: 1fr; gap: 13px; }
    .hotel-steps-grid article { min-height: 0; padding: 22px; text-align: left; }
    .hotel-steps-grid article > i { width: 50px; height: 50px; margin: 0 0 15px; }
    .hotel-steps-grid h3 { font-size: .92rem; }
    .hotel-steps-grid p { margin-right: 0; margin-left: 0; font-size: .75rem; font-weight: 500; }
    .hotel-faq-layout { grid-template-columns: 1fr; gap: 28px; }
    .hotel-faq-intro p { margin-top: 12px; font-size: .8rem; font-weight: 500; }
    .hotel-faq-intro > a { min-height: 44px; max-width: 100%; font-size: .75rem; overflow-wrap: anywhere; }
    .hotel-faq-list summary { min-height: 66px; font-size: .82rem; line-height: 1.4; }
    .hotel-faq-list details > p { font-size: .75rem; font-weight: 500; }
    .hotel-search-cta { padding-bottom: 52px; }
    .hotel-search-cta .hotel-landing-container { min-height: 260px; padding: 30px 24px; align-items: flex-start; flex-direction: column; border-radius: 0; }
    .hotel-search-cta span { font-size: .7rem; }
    .hotel-search-cta p { font-size: .8rem; font-weight: 500; }
    .hotel-search-cta a { width: 100%; min-height: 50px; justify-content: center; font-size: .8rem; }
}

@media (max-width: 575.98px) {
    .hotel-confidence-strip article { padding-right: 8px; gap: 8px; }
    .hotel-confidence-strip article:nth-child(2),
    .hotel-confidence-strip article:last-child { padding-left: 8px; }
    .hotel-destination-grid { gap: 10px; }
    .hotel-destination-card { height: 178px; }
    .hotel-destination-copy small { font-size: .64rem; }
    .hotel-destination-copy strong { font-size: .94rem; }
    .hotel-destination-copy em { margin-top: 6px; font-size: .66rem; }
    .hotel-featured-price { align-items: stretch; flex-direction: column; }
    .hotel-featured-price > a { justify-content: center; }
    .hotel-style-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    .hotel-style-grid > a { min-height: 150px; padding: 15px; }
    .hotel-style-grid > a > i { width: 42px; height: 42px; }
    .hotel-style-grid > a > b { top: 17px; right: 15px; }
    .hotel-style-grid > a > span { margin-top: 13px; }
    .hotel-faq-list summary { min-height: 62px; padding: 15px; font-size: .8rem; }
    .hotel-faq-list details > p { padding: 0 15px 15px; font-size: .74rem; }
}

@media (max-width: 419.98px) {
    .hotel-destination-grid { grid-template-columns: 1fr; }
    .hotel-destination-card { height: 210px; }
}

@media (prefers-reduced-motion: reduce) {
    .hotel-landing-page *,
    .hotel-landing-page *::before,
    .hotel-landing-page *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
