.breadcrumb-section {
    padding: 20px 0 0;
}

.breadcrumb-text {
    color: #070D1C;
    font-size: 12px;
    font-weight: 400;
    line-height: 21px;
}
.dropdown {
    position: relative;
    display: inline-block;
    font-family: 'Segoe UI', sans-serif;
}

/* Make mega dropdown positioning consistent across nav items */
.header-nav{
    position: relative;
}
.header-nav .dropdown{
    position: static;
}

 .dropdown-toggle {
    background-color: transparent;
    color: inherit;
    /* padding: 12px 20px; */
    /* font-size: 16px; */
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dropdown-toggle:hover {
    background-color: #005a9e00;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-menu {
    display: block; /* use opacity/visibility for smoother mega-menu */
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    overflow: hidden;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.dropdown-menu--mega{
    left: 50%;
    /* Keep the panel visually separated, but avoid a hover "dead gap" */
    transform: translateX(-50%) translateY(6px);
    width: min(220px, calc(100vw - 60px));
    padding: 18px 18px 20px;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(8,28,53,.18);
    border: 1px solid rgba(8,28,53,.10);
    overflow: visible;
    min-height: 0;
}

/* Invisible hover bridge between trigger and mega menu (prevents flicker) */
.header-nav .dropdown{
    position: relative;
}
.header-nav .dropdown::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
    display: none;
    pointer-events: auto;
}
.header-nav .dropdown:hover::after,
.header-nav .dropdown:focus-within::after{
    display: block;
}

/* Caret/pointer above the mega menu */
.dropdown-menu--mega::before{
    content: "";
    position: absolute;
    top: -10px;
    left: var(--caret-x, 50%);
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid rgba(8,28,53,.10);
}
.dropdown-menu--mega::after{
    content: "";
    position: absolute;
    top: -9px;
    left: var(--caret-x, 50%);
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 9px solid #ffffff;
}

.mega-menu{
    width: 100%;
}
.mega-grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
}

.mega-grid--single{
    grid-template-columns: 1fr;
    gap: 0;
}
.mega-col{
    padding: 10px 10px 6px;
    position: relative;
    display: flex;
    flex-direction: column;
    /* min-height: 260px; */
}
.mega-col:not(:last-child)::after{
    content: "";
    position: absolute;
    top: 12px;
    right: -13px;
    width: 1px;
    height: calc(100% - 24px);
    background: rgba(8,28,53,.10);
}

.mega-grid--single .mega-col::after{
    display: none;
}
.mega-col__title{
    display: flex;
    align-items: center;
    gap: 0px;
    font-size: 12px;
    letter-spacing: .18em;
    font-weight: 700;
    color: #B5792F;
    margin-bottom: 14px;
}
.mega-col__icon{
    width: 16px;
    height: 16px;
    opacity: 1;
}
.mega-links{
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 6px;
}
.mega-links li{
    border: none;
}
.mega-links a{
    padding: 10px 10px;
    color: #081C35;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: block;
    border-radius: 10px;
}
.mega-links a:hover{
    color: #AE8554;
    background: rgba(8,28,53,.04);
}
.mega-view-all{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 10px 10px;
    font-size: 13px;
    font-weight: 600;
    color: #B5792F;
    text-decoration: none;
}
.mega-view-all:hover{
    text-decoration: underline;
}

.dropdown-menu-right {
    left: auto !important;
    right: 0 !important;
    /* Prevent overflow on very small screens */
    max-width: calc(100vw - 40px);
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.dropdown:hover .dropdown-menu--mega,
.dropdown:focus-within .dropdown-menu--mega{
    transform: translateX(-50%) translateY(8px);
}

.dropdown-menu li {
    list-style: none;
    border-bottom: 1px solid #eee;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    text-decoration: none;
    color: #0B1E3D;
    transition: background-color 0.2s ease;
}

/* Mega menu should not inherit list padding */
.dropdown-menu--mega .dropdown-menu a,
.dropdown-menu--mega a{
    padding: 0;
}

@media (max-width: 992px){
    .header-top-bar--center{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 18px;
        gap: 12px;
    }
    .header-right-spacer{
        display: none;
    }
    .header-logo img{
        width: 150px;
        height: auto;
    }
    .header-nav-toggle{
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .header-nav{
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        border-top: 1px solid rgba(8,28,53,.08);
        box-shadow: 0 20px 60px rgba(8,28,53,.12);
        padding: 10px 14px 14px;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        transition: max-height .22s ease, opacity .18s ease;
        z-index: 2000;
    }
    .header-section.nav-open .header-nav{
        max-height: 80vh;
        overflow: auto;
        opacity: 1;
        pointer-events: auto;
    }

    .header-nav .dropdown{
        width: 100%;
    }
    .header-nav .dropdown-toggle{
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 12px 10px;
        border-radius: 12px;
    }
    .header-nav .dropdown-toggle img{
        margin-left: 10px;
        opacity: .7;
    }

    /* On mobile, mega dropdown becomes accordion content */
    .header-nav .dropdown-menu{
        position: static;
        left: auto;
        top: auto;
        transform: none !important;
        width: 100% !important;
        border-radius: 12px;
        box-shadow: none;
        border: 1px solid rgba(8,28,53,.10);
        margin: 6px 0 10px;
        padding: 10px 10px 12px;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        display: none; /* controlled by .is-open */
    }
    .header-nav .dropdown.is-open .dropdown-menu{
        display: block;
    }
    .dropdown-menu--mega::before,
    .dropdown-menu--mega::after{
        display: none;
    }
    /* Disable hover behavior on touch layouts */
    .dropdown:hover .dropdown-menu,
    .dropdown:hover .dropdown-menu--mega{
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .mega-grid{
        grid-template-columns: 1fr 1fr;
    }
    .mega-col:not(:last-child)::after{
        display: none;
    }
    .dropdown-menu--mega{
        width: min(220px, calc(100vw - 30px));
    }
    .mega-col{
        min-height: 0;
    }
}


.dropdown-menu a:hover {
    color: #AE8554;
}

/* .dropdown-menu a:hover {
    background-color: #f5f5f5;
  } */

.dropdown-menu img {
    width: 14px;
    height: 14px;
    margin-right: 10px;
}

.search-input-group {
    position: relative;
    display: inline-block;
}

.destination-accommodation-popup {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #ECEEF1;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin-top: 20px;
    display: none;
    z-index: 1000;
    width: 500px;
}

.popup-columns {
    display: flex;
    justify-content: space-between;
}

.popup-column {
    width: 48%;
}

.colTitle {
    display: flex;
    justify-content: space-between;
}

.colTitle h4 {
    font-family: Poppins;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 14px;
    letter-spacing: 0%;
    color: #A98051;
    margin-bottom: 10px;
}

.colTitle .margin-left-collections {
    margin-right: 80px;
}

.popup-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.popup-column li {
    padding: 6px 0;
    cursor: pointer;
    color: #000;
    font-family: Poppins;
    font-weight: 400;
    font-style: Regular;
    font-size: 12px;


}

.popup-column li:hover {
    background-color: #f0f0f0;
}

.popup-column a {
    color: #000;
    text-decoration: none;
}

.popup-column a:hover {
    text-decoration: underline;
}

/* Show popup on hover */
/* .search-input-group:hover .destination-accommodation-popup {
    display: block;
  } */

.travelers-popup {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 12px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: none;
    z-index: 1000;
    width: 350px;
    border: 1px dotted #ECEEF1;
    /* Matches the blue dotted border */
}
#sidebarTravelersPopup {
    display:none;
    left: 150px;
    top: 25px;
    width: 100%;
    z-index: 1050;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-radius: 14px;
    border: 1px dotted #ECEEF1;
    /* Matches the blue dotted border */
}

/* Dates popup — same look & feel as travelers */
.dates-popup {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 12px;
    background: #fff;
    border: 1px solid #ECEEF1;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: none;
    z-index: 1000;
    width: 350px;
}

.flatpickr-day.selected.startRange, .flatpickr-day.startRange.startRange, .flatpickr-day.endRange.startRange{
    background: #A98051;
    border-color: #A98051;
}
.flatpickr-day.selected.endRange, .flatpickr-day.startRange.endRange, .flatpickr-day.endRange.endRange{
    background: #A98051;
    border-color: #A98051;
}
.flatpickr-day.today {
    border-color: #A98051;
}
.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)), .flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)), .flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)){
    box-shadow: -10px 0 0 #A98051;
}
.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange, .flatpickr-day.endRange.inRange, .flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover, .flatpickr-day.selected.prevMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.endRange.nextMonthDay{
    background: #A98051;
    border-color: #A98051;
}

.dates-popup .occupancy-row label {
    margin-right: 12px;
}

.dates-popup input[type="date"] {
    flex: 1;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
}

.room-block {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}


.occupancy-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.occupancy-row label {
    flex: 1;
    color: #000;
    font-weight: 500;
}

.occupancy-row button {
    width: 28px;
    height: 28px;
    font-size: 18px;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
}

.occupancy-row span {
    margin: 0 10px;
    font-weight: bold;
    color: #000;
}

.child-ages select {
    width: 100%;
    margin-bottom: 8px;
    padding: 6px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.remove-room {
    display: block;
    color: #a88b5f;
    text-decoration: none;
    margin-top: 8px;
    font-size: 14px;
}

.popup-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.popup-actions .add-room {
    background: #fff;
    border: 1px solid #a88b5f;
    color: #a88b5f;
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
}

.popup-actions .done {
    background: #a88b5f;
    border: none;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
}

/* CSS for section section:header */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.heroSwiper {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: relative;
}

/* Optional dark overlay */
.heroSwiper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-featured-card {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-arrow {
    cursor: pointer;
    height: auto;
}

.header-section {
    background-color: #ffffff;
    color: #0B1E3D;
    border-bottom: 1px solid rgba(0,0,0,.06);
}

/* Home page: header overlays the hero */
.page-home .header-section{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
}
.page-home .header-top-bar{
    padding: 22px 50px;
}

@media (max-width: 992px){
    .page-home .header-top-bar{
        padding: 12px 18px;
    }
}

.header-main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-top-bar {
    width: 100%;
}

.header-top-bar--center{
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 14px 50px;
    gap: 20px;
}

/* Mobile override (ensure grid doesn't apply) */
@media (max-width: 992px){
    .header-top-bar--center{
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 12px 18px !important;
        gap: 12px !important;
    }
}

.header-nav-toggle{
    display: none;
    justify-self: end;
    width: 44px;
    height: 40px;
    border: 1px solid rgba(8,28,53,.14);
    background: #fff;
    border-radius: 10px;
    padding: 10px 11px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

@media (max-width: 992px){
    .header-nav-toggle{
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }
}
.header-nav-toggle__bar{
    display: block;
    width: 100%;
    height: 2px;
    background: #081C35;
    border-radius: 2px;
}
/* spacing handled by gap */

.header-nav--center{
    justify-content: center;
}

.header-right-spacer{
    justify-self: end;
}

.header-logo img {
    width: 169.13px;
    height: 41px;
}

.header-nav-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.header-contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    display: none;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 12px;
    font-weight: 500;
}

.header-partner-logo {
    width: 127px;
    height: 28.58px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.header-nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #081C35;
}

.header-nav-chevron{
    width: 14px;
    height: 14px;
    opacity: .75;
}

@media (max-width: 992px){
    .header-nav-chevron{
        opacity: .6;
    }
}


.header-search-bar {
    width: 100%;
    background-color: var(--color-black);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding: 25px 0;
}

/* Hero-embedded search bar (used on home) */
.hero-search-bar{
    width: 100%;
    background: transparent;
    border: none;
    padding: 0;
}
.hero-search-container{
    padding: 0;
}
.header-search-form--hero{
    gap: 16px !important;
    background: #ffffff;
    border-radius: 14px;
    padding: 24px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    align-items: center !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
}
.header-search-form--hero .search-input-group{
    border: none;
    border-radius: 0;
    padding: 0;
    /* min-width: 420px; */
    background: transparent;
    flex-direction: column !important;
    align-items: flex-start !important;
}

/* Hero "Where" block to match design */
.hero-where-group{
    cursor: pointer;
}
.hero-where-top{
    display: flex;
    align-items: center;
    gap: 12px;
    color: #081C35;
    font-weight: 600;
    font-size: 16px;
}
.hero-where-bottom{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
    width: 90%;
}
.hero-where-icon{
    width: 18px;
    height: 18px;
}
.hero-where-icon--user{
    width: 18px;
    height: 18px;
    opacity: .95;
}
.hero-where-label{
    font-family: 'Inter', sans-serif;
}
.hero-where-value{
    border: none;
    outline: none;
    background: transparent;
    padding: 0;
    font-size: 16px;
    font-weight: 700;
    color: #081C35;
    width: 100%;
    min-width: 200px;
    cursor: pointer;
    flex: 1 1 auto;
}
.hero-where-value::placeholder{
    color: rgba(8,28,53,.70);
}
.hero-where-chevron{
    width: 12px;
    height: 12px;
    opacity: .7;
    flex: 0 0 auto;
}

.hero-search-divider{
    width: 1px;
    height: 46px;
    background: rgba(8,28,53,.14);
    flex: 0 0 1px;
}

.search-button--hero{
    border-radius: 12px !important;
    padding: 14px 22px !important;
    background: #081C35 !important;
    min-width: 200px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    gap: 14px !important;
}
.search-button--hero:hover{
    background: #06162a !important;
}
.hero-search-arrow{
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
    opacity: .95;
}

.header-search-form {
    display: flex;
    gap: 10px;
    align-items: stretch;
    flex-wrap: wrap;
}

.search-input-group {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: 64px;
    padding: 13px 30px;
    min-width: 250px;
    cursor: pointer;
}

.search-input-text {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    cursor: pointer;
    width: 100%;
}

.search-input-text label {
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 600;
    width: max-content;
    cursor: pointer;
}

.search-input-text input {
    width: 70%;
    border: none;
    outline: none;
    background: none;
    color: var(--color-black);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    padding: 0;
    cursor: pointer;
}

.search-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    border: none;
    border-radius: 64px;
    padding: 13px 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    min-width: 141px;
}

@media (max-width: 1024px) {
    /* Old header layout (do not affect new centered header bar) */
    .header-top-bar:not(.header-top-bar--center) {
        flex-direction: column;
        gap: 20px;
    }

    .header-nav-wrapper {
        align-items: center;
    }

    .header-search-form {
        flex-direction: column;
    }

    /* Keep hero search in a single row on tablet only (not phones) */
}

@media (min-width: 769px) and (max-width: 1024px){
    .header-search-form.header-search-form--hero{
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
    }
}

/* CSS for section section:hero */
.hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 705px;
    /* background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%), url('images/0279dba6c0d3696bda518bf1985db2b2b491d3ae.png'); */
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    /* padding-top: 200px; */
    /* Adjusted for content placement */
    padding-bottom: 0;
}

/* Static home hero */
.hero-static{
    position: relative;
    min-height: 720px;
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 150px 0 90px;
}
.hero-static__inner{
    width: 100%;
}
.hero-static__content{
    max-width: 760px;
}
.hero-static__pill{
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .6px;
    background: #CD9B52;
    border: 1px solid #CD9B52;
    border-radius: 6px;
}
.hero-static__title{
    margin: 14px 0 10px;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 60px;
    line-height: 1.05;
    font-weight: 700;
    text-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.hero-static__subtitle{
    margin: 0 0 22px;
    max-width: 560px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,.88);
}
.hero-static__search{
    max-width: 640px;
}
.hero-static__link{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: rgba(255,255,255,.9);
    font-weight: 600;
    text-decoration: none;
}
.hero-static__link:hover{
    color: #fff;
    text-decoration: underline;
}

/* Home: full-width value strip below hero */
.home-value-strip{
    width: 100%;
    background: #F6F2EF;
    border-top: 1px solid rgba(8,28,53,.06);
    border-bottom: 1px solid rgba(8,28,53,.06);
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    color: #081C35;
}
.home-value-strip__inner{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: 20px 10px;
    align-items: stretch;
}
.home-value-strip__item{
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 0 0 20px;
    min-height: 100%;
}
.home-value-strip__item:first-child{
    padding-left: 0;
}
.home-value-strip__item:last-child{
    padding-right: 0;
}
.home-value-strip__item:not(:last-child){
    border-right: 1px solid #848F9D;
}
.home-value-strip__icon{
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #081C35;
    line-height: 1;
}
.home-value-strip__icon img{
    width: 36px;
    height: 36px;
    display: block;
    object-fit: contain;
}
.home-value-strip__text{
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.home-value-strip__title{
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.25;
}
.home-value-strip__desc{
    margin: 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.45;
    color: rgba(8,28,53,.82);
}

@media (max-width: 992px){
    .home-value-strip__inner{
        grid-template-columns: 1fr 1fr;
        padding: 22px 10px;
        row-gap: 10px;
    }
    .home-value-strip__item{
        padding: 0 10px;
        border-right: none !important;
    }
    .home-value-strip__item:nth-child(odd){
        border-right: 1px solid rgba(8,28,53,.10);
        padding-left: 0;
    }
    .home-value-strip__item:nth-child(even){
        padding-right: 0;
    }
}

/* Home: popular destinations (static) */
.home-popular-dest{
    background: #ffffff;
    padding: 56px 0 64px;
    color: #081C35;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}
.home-popular-dest__head{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
}
.home-popular-dest__eyebrow{
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .22em;
    color: #CD9B52;
}
.home-popular-dest__title{
    margin: 0;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: clamp(34px, 4vw, 36px);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.home-popular-dest__see-all{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #081C35;
    white-space: nowrap;
}
.home-popular-dest__see-all:hover{
    color: #AE8554;
}
.home-popular-dest__see-all-arrow{
    font-weight: 700;
}
.home-popular-dest__swiper{
    overflow: hidden;
}
.home-popular-dest__swiper .swiper-wrapper{
    align-items: flex-start;
}
.home-popular-dest__swiper .swiper-slide{
    height: auto;
}
.home-pop-card{
    display: block;
    text-decoration: none;
    color: inherit;
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
}
.home-pop-card:hover .home-pop-card__name{
    color: #AE8554;
}
.home-pop-card__media{
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    overflow: hidden;
    background-color: #eef1f6;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 140px;
}
.home-pop-card__media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.home-popular-dest__swiper .swiper-slide:nth-child(1) .home-pop-card__media{
    background-image:
        radial-gradient(120% 90% at 18% 18%, rgba(255,255,255,.35) 0%, rgba(255,255,255,0) 55%),
        linear-gradient(180deg, rgba(8,28,53,.10) 0%, rgba(8,28,53,.55) 100%),
        linear-gradient(135deg, #2f6b3a 0%, #1f4a2a 38%, #6b3a1f 72%, #2b1a12 100%);
}
.home-popular-dest__swiper .swiper-slide:nth-child(3) .home-pop-card__media{
    background-image:
        radial-gradient(70% 55% at 55% 18%, rgba(255,214,160,.55) 0%, rgba(255,214,160,0) 60%),
        linear-gradient(180deg, rgba(8,28,53,.05) 0%, rgba(8,28,53,.55) 100%),
        linear-gradient(135deg, #ff9a4a 0%, #d85a2b 45%, #6a1f4d 100%);
}
.home-popular-dest__swiper .swiper-slide:nth-child(4) .home-pop-card__media{
    background-image:
        radial-gradient(85% 65% at 30% 20%, rgba(255,255,255,.22) 0%, rgba(255,255,255,0) 55%),
        linear-gradient(180deg, rgba(8,28,53,.12) 0%, rgba(8,28,53,.62) 100%),
        linear-gradient(135deg, #2a3f6b 0%, #1b2a4d 42%, #6b4a2f 78%, #1a1424 100%);
}
.home-popular-dest__swiper .swiper-slide:nth-child(5) .home-pop-card__media{
    background-image:
        radial-gradient(90% 70% at 40% 30%, rgba(190,255,210,.18) 0%, rgba(190,255,210,0) 55%),
        linear-gradient(180deg, rgba(8,28,53,.10) 0%, rgba(8,28,53,.58) 100%),
        linear-gradient(135deg, #1f3b2a 0%, #2f5a3a 45%, #0f2436 100%);
}
.home-pop-card__body{
    padding: 14px 0 0;
    text-align: left;
}
.home-pop-card__name{
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: #081C35;
    transition: color .15s ease;
}
.home-pop-card__desc{
    margin: 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.45;
    color: #6B7280;
}

@media (max-width: 992px){
    .home-popular-dest{
        padding: 44px 0 52px;
    }
    .home-popular-dest__head{
        flex-direction: column;
        align-items: flex-start;
    }
    .home-popular-dest__see-all{
        white-space: normal;
    }
}

/* Home: browse by collection (accommodation types) */
.home-collections{
    background: #ffffff;
    padding: 32px 0 72px;
    color: #081C35;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}
.home-collections__head{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
}
.home-collections__eyebrow{
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .22em;
    color: rgba(8,28,53,.55);
}
.home-collections__title{
    margin: 0;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.home-collections__see-all{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #081C35;
    white-space: nowrap;
}
.home-collections__see-all:hover{
    color: #AE8554;
}
.home-collections__see-all-arrow{
    font-weight: 700;
}
.home-collections__swiper{
    overflow: hidden;
}
.home-collections__swiper .swiper-wrapper{
    align-items: flex-start;
}
.home-collections__swiper .swiper-slide{
    height: auto;
}

@media (max-width: 992px){
    .home-collections{
        padding: 22px 0 56px;
    }
    .home-collections__head{
        flex-direction: column;
        align-items: flex-start;
    }
    .home-collections__see-all{
        white-space: normal;
    }
}

@media (max-width: 768px){
    .home-pop-card{
        width: 100%;
    }
    .hero-static{
        padding: 140px 0 70px;
        min-height: 680px;
        overflow-x: hidden;
    }
    .hero-static__title{
        font-size: 40px;
    }
    .header-search-form--hero{
        width: 100%;
        flex-direction: column !important;
        align-items: stretch !important;
        flex-wrap: wrap !important;
    }
    .header-search-form--hero .search-input-group{
        min-width: 100%;
    }
    .search-button--hero{
        width: 100%;
        min-width: 0 !important;
    }
    .hero-static__search{
        max-width: 100%;
    }
    .hero-where-value{
        min-width: 0;
    }
    .home-pop-card__media{
        height: 180px;
    }
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: 72px;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
}

.hero-featured-card {
    display: flex;
    align-items: center;
    gap: 30px;
    /* background-color: var(--color-black); */
    /* padding: 20px 30px; */
    border-radius: 10px 10px 0 0;
    width: auto;
    max-width: 90%;
}

.hero-card-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 30px;
    border-radius: 10px 10px 0 0;
    background-color: var(--color-black);
}

.hero-card-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    margin: 0;
}

.hero-card-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.hero-card-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.hero-card-link {
    font-size: 14px;
    text-decoration: underline;
}

.hero-arrow {
    cursor: pointer;
}

@media (max-width: 768px) {
    .hero-section {
        height: 500px;
        /* padding-top: 100px; */
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-featured-card {
        flex-direction: row;
        text-align: center;
        gap: 15px;
        /* padding: 15px; */
    }

    .hero-card-content {
        padding: 10px;
    }

    .hero-card-details {
        flex-direction: column;
        gap: 10px;
    }

    .hero-card-title {
        font-size: 12px;
        line-height: 16px;
    }

    .hero-card-link {
        font-size: 12px;
    }

    .hero-card-location {
        font-size: 12px;
    }

    .header-nav {
        justify-content: center;
    }

    .search-input-group {
        padding: 10px 12px;
    }

    .search-input-text {
        font-size: 12px;
    }
    .search-input-text input {
       width: 100%;
    }
    .search-input-text label{
        width: 45%;
    }

    .colTitle .margin-left-collections {
        margin-right: 32px;
    }
    .destination-accommodation-popup {
        /* margin-top: 10px; */
        width: 333px;
        max-height: 200px;
        overflow-y: auto;
    }

    .travelers-popup {
        width: 333px;
        max-height: 300px;
        overflow-y: scroll;
    }
    #sidebarTravelersPopup {
        width: 333px;
        left: 0;
        max-height: 300px;
        overflow-y: scroll;
    }

    .colTitle h4 {
        font-size: 12px;
    }

    .popup-column li {
        font-size: 10px;
    }

    /* .hero-arrow {
          transform: rotate(90deg);
      } */
}

/* CSS for section section:favorite-hotels */
/* Ensure outer container doesn't show scrollbars */
.fav-swiper {
    width: 100%;
    overflow: hidden;
    /* <-- hide native browser scrollbar */
    box-sizing: border-box;
}

/* Prevent any previously applied carousel-wrapper from forcing native scrolling */
.carousel-wrapper,
.swiper-wrapper {
    display: flex;
    /* necessary for Swiper layout */
    flex-wrap: nowrap;
    align-items: stretch;
    will-change: transform;
}

/* Each slide should not shrink and should be sized by Swiper */
.heroSwiper {
    flex: 0 0 auto;
    box-sizing: border-box;
}

/* Optional: keep the visual card styles exactly as before */
.hotel-card-fav {
    /* keep your existing styles — only ensure box-sizing */
    box-sizing: border-box;
}

/* Hide scrollbars on webkit browsers (extra) */
.fav-swiper::-webkit-scrollbar {
    display: none;
}

/* Style for nav images — place them exactly where your layout expects */
.carousel-nav .carousel-nav-btn {
    cursor: pointer;
    /* width: 36px; */
    height: auto;
    display: inline-block;
    vertical-align: middle;
}

.carousel-nav {
    display: flex;
    gap: 20px;
}

#section-favorite-hotels {
    padding: 70px 0 60px;
    background-color: var(--color-white);
}

#section-favorite-hotels .container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title {
    font-size: 32px;
    font-weight: 500;
    margin: 0;
}

.carousel-wrapper {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 20px;
    /* for scrollbar */
}

.hotel-card-fav {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    min-width: 300px;
    height: 514px;
    padding: 25px 20px;
    border-radius: 15px;
    color: var(--color-white);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hotel-card-fav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

.hotel-card-fav .card-content,
.hotel-card-fav .btn-book {
    position: relative;
    z-index: 2;
}

.hotel-card-fav .card-content {
    margin-bottom: 20px;
}

.hotel-card-fav h3 {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.1;
    margin: 0 0 10px 0;
}

.hotel-card-fav .location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.btn-book {
    border: 1px solid var(--color-white);
    border-radius: 22px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    color: var(--color-white);
}

@media (max-width: 1200px) {
    .carousel-wrapper {
        grid-auto-columns: 300px;
    }
}

/* Override: Featured Luxury Hotels (new home design) */
#section-favorite-hotels{
    padding: 56px 0 56px;
    background-color: #ffffff;
}

#section-favorite-hotels .container{
    display: block;
    gap: 0;
}

.featured-hotels{
    background: #EEF3FA;
    border-radius: 18px;
    padding: 22px 22px 18px;
}
.featured-hotels__head{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 4px 4px 14px;
}
.featured-hotels__eyebrow{
    margin: 0 0 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .22em;
    color: #CD9B52;
}
.featured-hotels__title{
    margin: 0;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #081C35;
}
.featured-hotels__see-all{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #081C35;
    white-space: nowrap;
    padding-top: 12px;
}
.featured-hotels__see-all:hover{ color: #AE8554; }
.featured-hotels__see-all-arrow{ font-weight: 700; }

.featured-hotels__carousel{
    position: relative;
}

.featured-hotels__nav{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.35);
    background: rgba(255,255,255,.92);
    box-shadow: 0 10px 24px rgba(8,28,53,.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    cursor: pointer;
}
.featured-hotels__nav--prev{ left: -15px; }
.featured-hotels__nav--next{ right: -15px; }
.featured-hotels__nav::before{
    content: '';
    width: 9px;
    height: 9px;
    border-right: 2px solid #081C35;
    border-bottom: 2px solid #081C35;
    transform: rotate(135deg);
    margin-left: 2px;
}
.featured-hotels__nav--next::before{
    transform: rotate(-45deg);
    margin-left: 0;
    margin-right: 2px;
}

.featured-hotel-card{
    display: block;
    text-decoration: none;
    color: inherit;
}
.featured-hotel-card__media{
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #dfe6f2;
}
.featured-hotel-card__media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.featured-hotel-card__media::after{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.00) 0%, rgba(0,0,0,.15) 40%, rgba(0,0,0,.78) 100%);
}
.featured-hotel-card__badge{
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(181,121,47,.92);
    border: 1px solid rgba(255,255,255,.22);
}
.featured-hotel-card__fav{
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 2;
    width: 34px;
    height: 34px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(255,255,255,.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.featured-hotel-card__fav svg{
    width: 20px;
    height: 20px;
    fill: #ffffff;
    opacity: .95;
}
.featured-hotel-card__overlay{
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 12px;
    z-index: 2;
    color: #ffffff;
}
.featured-hotel-card__overlay-top{
    margin-bottom: 10px;
}
.featured-hotel-card__name{
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,.35);
}
.featured-hotel-card__location{
    margin: 0;
    font-size: 12px;
    color: rgba(255,255,255,.85);
    text-shadow: 0 2px 10px rgba(0,0,0,.35);
}
.featured-hotel-card__bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 0;
}
.featured-hotel-card__stars{
    display: inline-flex;
    align-items: center;
    gap: 3px;
}
.featured-hotel-card__star{
    width: 12px;
    height: 12px;
    fill: rgba(255,255,255,.25);
}
.featured-hotel-card__star.is-on{
    fill: #CFA75C;
}
.featured-hotel-card__price{
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    font-size: 11px;
    color: rgba(255,255,255,.88);
    white-space: nowrap;
    text-shadow: 0 2px 10px rgba(0,0,0,.35);
}
.featured-hotel-card__price-label{ font-weight: 600; }
.featured-hotel-card__price-value{
    font-weight: 700;
    color: rgba(255,255,255,.92);
}

@media (max-width: 992px){
    .featured-hotels{
        padding: 18px 16px 14px;
    }
    .featured-hotels__head{
        flex-direction: column;
        align-items: flex-start;
    }
    .featured-hotels__see-all{
        padding-top: 0;
        white-space: normal;
    }
    .featured-hotels__nav{
        display: none;
    }
}

/* Home: articles + FAQs (static) */
.home-insights{
    padding: 18px 0 64px;
    background: #ffffff;
    color: #081C35;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}
.home-insights__grid{
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 22px;
    align-items: start;
}
.home-insights__panel{
    background: #EFEEE9;
    border-radius: 18px;
    padding: 18px 18px 16px;
}
.home-insights__head{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    padding: 4px 4px 24px;
}
.home-insights__eyebrow{
    margin: 0 0 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .22em;
    color: #E9C176;
}
.home-insights__title{
    margin: 0;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0D1C32;
}
.home-insights__see-all{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #081C35;
    white-space: nowrap;
    padding-top: 10px;
}
.home-insights__see-all:hover{ color: #AE8554; }
.home-insights__see-all-arrow{ font-weight: 700; }

.home-articles{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}
.home-articles--coming-soon{
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    isolation: isolate;
}
.home-articles__coming-soon{
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    cursor: default;
    background: linear-gradient(180deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,.28) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.home-articles__coming-soon span{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(8,28,53,.10);
    color: #081C35;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    box-shadow: 0 12px 28px rgba(8,28,53,.14);
}
.home-article-card{
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
}
.home-articles--coming-soon .home-article-card{
    pointer-events: none;
    cursor: default;
}
.home-articles--coming-soon .home-article-card__body{
    opacity: .75;
}
.home-articles--coming-soon .home-article-card__media{
    filter: saturate(.85) contrast(.95);
}

.home-article-card__media{
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #dfe6f2;
    background-size: cover;
    background-position: center;
}
.home-articles--coming-soon .home-article-card:nth-of-type(1) .home-article-card__media{
    background-image: linear-gradient(135deg, #213b5b 0%, #1e6aa8 45%, #0f2f3a 100%);
}
.home-articles--coming-soon .home-article-card:nth-of-type(2) .home-article-card__media{
    background-image: linear-gradient(135deg, #2f6b3a 0%, #1f4a2a 45%, #2b1a12 100%);
}
.home-articles--coming-soon .home-article-card:nth-of-type(3) .home-article-card__media{
    background-image: linear-gradient(135deg, #6b4a2f 0%, #2a3f6b 45%, #1a1424 100%);
}
.home-articles--coming-soon .home-article-card:nth-of-type(4) .home-article-card__media{
    background-image: linear-gradient(135deg, #ff9a4a 0%, #d85a2b 45%, #6a1f4d 100%);
}
.home-article-card__tag{
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 6;
    padding: 2px 8px;
    border-radius: 2px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(181,121,47,.92);
    border: 1px solid rgba(255,255,255,.22);
}
.home-article-card__body{
    padding: 10px 2px 2px;
}
.home-article-card__title{
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: 700;
    color: #081C35;
    line-height: 1.25;
}
.home-article-card__desc{
    margin: 0;
    font-size: 12px;
    line-height: 1.35;
    color: rgba(8,28,53,.62);
}

/* FAQ panel: compact list style (matches mock) */
/* .home-faq-list{
    background: rgb(255 255 255 / 0%);
    border: 1px solid rgba(8,28,53,.08);
    border-radius: 14px;
    overflow: hidden;
} */

/* Make accordion look like compact list rows */
.home-faq-list .accordion-item{
    background: #F1EAE2;
    border: 0;
    border-radius: 4px;
}

.home-faq-list .accordion-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px;
    cursor: pointer;
    user-select: none;
    color: rgba(8,28,53,.90);
    font-size: 13px;
    font-weight: 700;
}
.home-faq-item__q{
    display: block;
    min-width: 0;
}
.home-faq-item__icon-img{
    flex: 0 0 auto;
    width: 15px;
    height: 15px;
    /* border-radius: 999px; */
    /* padding: 7px;
    background: rgba(181,121,47,.10);
    border: 1px solid rgba(181,121,47,.18); */
}
.home-faq-list .accordion-content{
    padding: 0 10px;
    font-size: 11px;
    line-height: 1.5;
    color: rgba(8,28,53,.65);
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
}
.home-faq-list .accordion-item.open .accordion-content{
    max-height: 500px;
    padding-bottom: 10px;
}
.home-faq-list .accordion-content p{ margin: 0; }
.home-faq-list .accordion-content{
    padding-top: 0;
    padding-bottom: 0;
}

@media (max-width: 1200px){
    .home-articles{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 992px){
    .home-insights__grid{
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }
}

@media (max-width: 768px){
    .home-insights__grid{
        grid-template-columns: 1fr;
    }
}

/* CSS for section section:why-us */
#section-why-us {
    background-color: var(--color-background-light);
    padding: 75px 0;
}

.why-us-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.why-us-text {
    max-width: 932px;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

.tripadvisor-card {
    display: flex;
    align-items: center;
    gap: 50px;
    background-color: var(--color-white);
    padding: 25px 30px;
    border-radius: 14px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.tripadvisor-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.tripadvisor-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.company-name {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.stars-reviews {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .tripadvisor-card {
        flex-direction: column;
        gap: 20px;
    }
}

/* CSS for section section:popular-hotels */

#section-popular-hotels {
    padding: 60px 0;
    background-color: var(--color-white);
}

#section-popular-hotels .container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.see-all-link {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--color-primary);
    font-size: 16px;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* .hotel-grid {
      grid-template-columns: repeat(5, 1fr);
  } */
.hotel-swiper {
    width: 100%;
    padding-bottom: 20px;
}

.swiper-slide.hotel-card-pop {
    height: auto;
}

.hotel-card-pop {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-background-light);
    border-radius: 11px;
    overflow: hidden;
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
}

/* Mini slider inside hotel cards */
.card-image-wrapper .card-image-swiper,
.card-image-wrapper .swiper-wrapper,
.card-image-wrapper .swiper-slide {
    width: 100%;
    height: 100%;
}

.card-image-wrapper .swiper-pagination {
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
}

.card-image-wrapper .swiper-pagination-bullet {
    background: #ffffff00;
    opacity: 1;
    border: 1px solid #FFFFFF;
    width: 6px;
    height: 6px;
}

.card-image-wrapper .swiper-pagination-bullet-active {
    background: #ffffff;
    opacity: 1;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-dots {
    position: absolute;
    bottom: 9px;
    left: 50%;
    transform: translateX(-50%);
}

.card-body {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 15px 14px;
    flex-grow: 1;
}

.card-body h4 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.8px;
    margin: 0;
    /* for 2 lines */
}

.card-body .location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    letter-spacing: 0.8px;
}

.btn-book-outline {
    border: 1px solid var(--color-primary);
    border-radius: 22px;
    padding: 11px 21px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    color: var(--color-primary);
    margin-top: auto;
}

/* @media (max-width: 1200px) {
      .hotel-grid {
          grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      }
  } */

/* CSS for section section:bundle-save */
#section-bundle-save {
    background-color: var(--color-background-light);
    padding: 75px 0;
}

.bundle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    text-align: center;
}

.bundle-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.bundle-tag {
    color: var(--color-primary);
    font-size: 16px;
}

.bundle-title {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
    max-width: 736px;
    margin: 0;
}

.bundle-description {
    font-size: 16px;
    line-height: 1.5;
    max-width: 804px;
    margin: -20px 0 0 0;
}

.how-it-works {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.how-it-works-intro {
    background-color: var(--color-white);
    border-radius: 11px;
    padding: 30px;
    display: flex;
    gap: 115px;
    width: 100%;
    max-width: 1094px;
}

.how-it-works-tag {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
}

.how-it-works-details strong {
    display: block;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
}

.how-it-works-details p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

.how-it-works-steps {
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    max-width: 1094px;
}

.step-card {
    background-color: var(--color-white);
    border-radius: 11px;
    padding: 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-number {
    background-color: var(--color-primary);
    color: var(--color-white);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

.step-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.8px;
    margin: 0;
}

.step-description {
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 0.8px;
    margin: 0;
}

@media (max-width: 1024px) {
    .how-it-works-intro {
        flex-direction: column;
        gap: 20px;
        text-align: left;
    }

    .how-it-works-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .how-it-works-steps {
        grid-template-columns: 1fr;
    }
}

/* CSS for section section:explore-stays */
#section-explore-stays {
    padding: 60px 0;
    background-color: var(--color-white);
}

#section-explore-stays .container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#section-explore-stays .section-title {
    line-height: 54px;
}

.tabs-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tabs {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.tab {
    padding: 8px 20px;
    border-radius: 64px;
    border: 1px solid var(--color-background-light);
    background-color: var(--color-white);
    color: var(--color-black);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    cursor: pointer;
}

.tab.active {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.tab-divider {
    border: none;
    height: 1px;
    background-color: var(--color-background-light);
    margin: 0;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* CSS for section section:faq */
#section-faq {
    background-color: var(--color-background-light);
    padding: 80px 0;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accordion-item {
    background-color: var(--color-white);
    border-radius: 11px;
    padding: 0px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header h3 {
    font-size: 22px;
    font-weight: 400;
    margin: 0;
    color: var(--color-black);
}

.accordion-item .accordion-header:not([aria-expanded="true"]) h3 {
    color: var(--color-black);
}

.accordion-item .accordion-header[aria-expanded="true"] h3 {
    color: var(--color-primary);
}

.accordion-body {
    padding: 1rem 0rem 0rem;
}

.accordion-content:not(.collapse) {
    overflow: hidden;
    padding-top: 0;
    transition: max-height 0.35s ease, padding-top 0.35s ease;
    max-height: 0px;
    /* Ensure long text wraps and doesn't rely on manual <br> */
    word-break: break-word;
    overflow-wrap: anywhere;
}

.accordion-item.open .accordion-content:not(.collapse) {
    padding-top: 4px;
}

/* Smooth transition for Bootstrap-enabled FAQ */
.accordion-content.collapse {
    overflow: hidden;
}

.accordion-content.collapsing {
    overflow: hidden;
    transition: height 0.35s ease, padding-top 0.35s ease;
}

.accordion-content p {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 13px;
    line-height: 1.3;
    margin: 0;
    max-width: 95%;

}

.accordion-header img {
    transition: transform 0.2s ease;
}

/* CSS for section section:social */
#section-social {
    padding: 80px 0 85px;
}

.social-callout {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 37px;
    padding: 108px 20px;
    background-image: url('../../assets/images/ff46fe5c32e13da3218c804d3bee5414f8c79eb1.png');
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    color: var(--color-white);
    text-align: center;
}

.social-title {
    font-size: 72px;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
    max-width: 845px;
}

.social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.social-icons {
    display: flex;
    gap: 22px;
}

.social-handle {
    font-size: 22px;
    font-weight: 500;
    margin: 0;
}

@media (max-width: 768px) {
    .social-title {
        font-size: 42px;
    }

    .social-callout {
        padding: 60px 20px;
    }
}

/* CSS for section section:contact */
#section-contact {
    background-color: var(--color-background-light);
    padding: 90px 0;
}

.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.contact-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.contact-title {
    font-size: 32px;
    font-weight: 500;
    margin: 0;
}

.contact-subtitle {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    max-width: 866px;
}

.contact-subtitle strong {
    font-weight: 600;
}

.contact-cards-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-card {
    background-color: var(--color-white);
    border-radius: 16px;
    padding: 23px 40px;
    /* Adjusted padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    min-height: 164px;
    flex: 1;
    min-width: 300px;
}

.contact-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-height: 55px;
}

.contact-card-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.contact-card-link {
    font-size: 16px;
}

.contact-card-button {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 27px;
    padding: 12px 22px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    width: 100%;
    max-width: 259px;
    justify-content: center;
}

/* CSS for section section:footer */
.footer-section.footer-section--new{
    background: #F4F1EA;
    color: #081C35;
    padding: 54px 0 46px;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    background-image: var(--footer-decor);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: auto;
}

.footer-section.footer-section--new a{
    color: inherit;
    text-decoration: none;
}
.footer-section.footer-section--new a:hover{
    color: #AE8554;
}

.footer-new{
    position: relative;
}

.footer-new__grid{
    display: grid;
    grid-template-columns: 1.05fr .82fr .82fr .78fr .72fr 1.35fr;
    gap: 26px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.footer-new__brand{
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-new__logo{
    width: 180px;
    height: auto;
    display: block;
}
.footer-new__tagline{
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
    color: #44474D;
    max-width: 220px;
}
.footer-new__socials{
    display: flex;
    gap: 10px;
    margin-top: 6px;
}
.footer-new__social{
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(8,28,53,.12);
    background: rgba(255,255,255,.65);
    color: rgba(8,28,53,.78);
}
.footer-new__social i{
    font-size: 14px;
    line-height: 1;
}
.footer-new__social:hover{
    background: #ffffff;
    border-color: rgba(174,133,84,.35);
    color: #AE8554;
}

.footer-new__heading{
    margin: 0 0 14px;
    font-family: 'Playfair Display', serif;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #1B1C19;
}
.footer-new__links{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 12px;
    font-weight: 400;
    color: #44474D;
}
.footer-new__links a{
    color: rgba(8,28,53,.78);
}
.footer-new__links a:hover{
    color: #AE8554;
}

.footer-new__newsletter-text{
    margin: 0 0 14px;
    font-size: 12px;
    line-height: 1.5;
    color: rgba(8,28,53,.70);
    max-width: 280px;
}
.footer-new__form{
    display: flex;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(8,28,53,.12);
    background: rgba(255,255,255,.75);
    max-width: 360px;
    height: 44px;
}
.footer-new__input{
    flex: 1 1 auto;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0 14px 0 16px;
    font-size: 12px;
    color: #081C35;
    height: 44px;
    min-width: 0;
}
.footer-new__input::placeholder{
    color: rgba(8,28,53,.45);
}
.footer-new__submit{
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    background: #081C35;
    color: #ffffff;
    font-weight: 800;
    cursor: pointer;
    width: 52px;
    height: 44px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex: 0 0 auto;
}
.footer-new__submit:hover{
    background: #0B2546;
}
.footer-new__submit span{
    font-size: 18px;
    transform: translateY(-1px);
}
.footer-new__fineprint{
    margin-top: 10px;
    font-size: 10px;
    color: rgba(8,28,53,.55);
    display: inline-flex;
    gap: 8px;
    align-items: center;
    float: right;
}
.footer-new__fineprint a{
    color: rgba(8,28,53,.55);
}
.footer-new__fineprint a:hover{
    color: #AE8554;
}

.footer-new__decor{ display: none; }

@media (max-width: 1200px){
    .footer-new__grid{
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
    }
    .footer-new__newsletter{
        grid-column: 1 / -1;
        margin-top: 8px;
    }
}

@media (max-width: 768px){
    .footer-section.footer-section--new{
        padding: 44px 0 40px;
    }
    .footer-new__grid{
        grid-template-columns: 1fr 1fr;
        gap: 22px;
    }
    .footer-new__decor{
        opacity: .55;
        right: -70px;
    }
}

@media (max-width: 520px){
    .footer-new__grid{
        grid-template-columns: 1fr;
    }
    .footer-new__form{
        max-width: 100%;
    }
}