@import url('https://fonts.googleapis.com/css2?family=Italiana&family=Cormorant+Garamond:wght@300;400&display=swap');

/*============================================================================================*/
/* Your custom styles below */
/*============================================================================================*/

/* ── BOOKING WIDGET DROPDOWNS — downward, no clip ── */
.booking_wrapper {
    overflow: visible !important;
}
.booking_wrapper .nice-select {
    width: 100% !important;
}
.booking_wrapper .nice-select .list {
    max-height: none !important;
    overflow: visible !important;
    z-index: 9999 !important;
    min-width: max-content !important;
    width: max-content !important;
}
.booking_wrapper .nice-select .option {
    white-space: nowrap !important;
    font-size: 13px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    line-height: 38px !important;
}
/* Booking filters */
.booking-filters-row {
    display: flex;
    gap: 8px;
    width: 100%;
    flex-wrap: wrap;
}
.bfilter {
    flex: 1 1 0;
    height: 52px;
    padding: 0 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
    color: #444;
    appearance: auto;
    cursor: pointer;
    outline: none;
}
.bfilter:focus {
    border-color: #c4a97d;
}
@media (max-width: 767px) {
    .bfilter { flex: 1 1 100%; }
}

/* ── TEXT LOGO ── */
.logo_text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 7px;
    text-decoration: none;
}
.logo_name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-weight: 300;
    line-height: 1;
}
.logo_sub {
    font-family: 'Italiana', serif;
    font-size: 8.5px;
    letter-spacing: 0.6em;
    text-transform: uppercase;
    font-weight: 400;
}
.logo_normal .logo_text .logo_sub,
.logo_normal .logo_text .logo_name { color: #fff !important; }
.logo_sticky .logo_text .logo_sub,
.logo_sticky .logo_text .logo_name { color: #2d2d2d !important; }
.logo_panel .logo_text .logo_sub,
.logo_panel .logo_text .logo_name { color: #2d2d2d !important; }

@media (max-width: 767px) {
    .logo_name {
        font-size: 19px;
        letter-spacing: 0.2em;
        white-space: nowrap;
    }
    .logo_sub {
        font-size: 8px;
        letter-spacing: 0.45em;
    }
}


/* Other Rooms cards — fix image fill */
.box_cat_rooms figure {
    position: relative !important;
    overflow: hidden !important;
}
.box_cat_rooms figure .background-image {
    position: absolute !important;
    top: 0 !important; left: 0 !important;
    right: 0 !important; bottom: 0 !important;
    background-size: cover !important;
    background-position: center !important;
}

/* Gallery carousel — limit image height */
.carousel_item_centered .item img {
    max-height: 480px;
    width: 100%;
    object-fit: cover;
}

/* Pinned video overlay - lighter */
.pinned-image__container-overlay {
    background: rgba(0, 0, 0, 0.2) !important;
}

/* Nav panel: no scroll, pinned footer */
.nav_panel {
    overflow-y: hidden !important;
}
.sidebar-navigation {
    bottom: 140px !important;
}
.nav_panel_footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 140px;
    padding: 20px 25px;
    border-top: 1px solid #ededed;
    background: #fff;
    z-index: 99999;
}
.nav_panel_footer .phone_element a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}
.nav_panel_footer .phone_element a i {
    font-size: 20px;
    color: #978667;
}
.nav_panel_footer .social ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}
.nav_panel_footer .social ul li a {
    font-size: 20px;
    color: #555;
    transition: color 0.2s;
}
.nav_panel_footer .social ul li a:hover {
    color: #978667;
}

/* Video Mosaic (used inside pinned-image section) */
.hero_mosaic {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mosaic_videos {
    position: absolute;
    inset: 0;
    display: flex;
    gap: 4px;
}
#section_video .mosaic_videos {
    position: absolute;
    width: 100%;
    height: 100%;
}
.mosaic_col {
    flex: 1;
    overflow: hidden;
    position: relative;
}
.mosaic_col video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
/* tablet: hide 3rd column */
.mosaic_col--desktop {
    display: none;
}
/* mobile: hide 2nd column */
@media (max-width: 575px) {
    .mosaic_col--tablet {
        display: none;
    }
}
/* tablet: show 2 videos */
@media (min-width: 576px) and (max-width: 991px) {
    .mosaic_col--tablet {
        display: flex;
    }
    .mosaic_col--desktop {
        display: none;
    }
}
/* desktop: show all 3 */
@media (min-width: 992px) {
    .mosaic_col--tablet,
    .mosaic_col--desktop {
        display: flex;
    }
}
.mosaic_overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}
.mosaic_content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Hero Experiences button — pinned toward bottom of hero */
.hero .slide-animated.three {
    position: absolute;
    bottom: 90px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}

.hero_experiences_btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
}
.hero_experiences_btn span {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.95;
}
.hero_experiences_btn i {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(180deg, #fff5c0 0%, #f5c842 30%, #c8922a 70%, #ffe066 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 6px rgba(245, 200, 66, 0.8));
    animation: bounce_arrow 1.6s infinite;
}
@keyframes bounce_arrow {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50%       { transform: translateY(8px); opacity: 0.5; }
}

/* Hero title block */
.hero_main_title {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 6px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
@media (max-width: 767px) {
    .hero_main_title { font-size: 32px; }
}
.hero_sub_brand {
    display: block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c4a97d;
    margin-bottom: 18px;
}
.hero_tagline {
    font-family: 'Caveat', cursive !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    letter-spacing: 1px;
    text-transform: none;
    color: rgba(255,255,255,0.95) !important;
}
@media (max-width: 767px) {
    .hero_main_title { font-size: 32px; }
}

/* Programs / Packages — attention grabber (nav + hero) */
a.nav_programs_link {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 18px;
    background: linear-gradient(135deg, #978667, #c4a97d);
    color: #fff !important;
    border-radius: 30px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(151, 134, 103, 0.4);
    transition: all 0.3s ease;
}
a.nav_programs_link:hover {
    background: linear-gradient(135deg, #c4a97d, #978667);
    box-shadow: 0 6px 20px rgba(151, 134, 103, 0.6);
    transform: translateY(-2px);
    color: #fff !important;
}

/* Fix horizontal scroll globally */
html, body {
    overflow-x: hidden;
    width: 100%;
}

/* Pinned video section full width on mobile */
.mobile_hero_video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}
@media (max-width: 575px) {
    .pinned-image__container {
        transform: none !important;
        border-radius: 0 !important;
    }
    .pinned_over_content {
        z-index: 10;
    }
    .pinned-image__container-overlay {
        z-index: 5;
    }
}

/* About section image pair */
.parallax_wrapper > .img-fluid.rounded-img {
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
    border-radius: 16px;
    width: 100%;
}
.parallax_wrapper .img_over {
    left: -38% !important;
    bottom: 15% !important;
}
.parallax_wrapper .img_over img {
    border: 6px solid #fff !important;
    border-radius: 14px !important;
    width: 260px !important;
    height: 260px !important;
    object-fit: cover !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2) !important;
}
.parallax_wrapper .img_over_tr {
    position: absolute;
    top: 5%;
    right: -30%;
    z-index: 99;
}
.parallax_wrapper .img_over_tr img {
    border: 6px solid #fff;
    border-radius: 14px;
    width: 260px;
    height: 260px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Mobile: hide floating images, show only main image clean */
@media (max-width: 991px) {
    .parallax_wrapper .img_over,
    .parallax_wrapper .img_over_tr {
        display: none !important;
    }
    .parallax_wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
    }
    .parallax_wrapper > .img-fluid.rounded-img {
        border-radius: 20px;
        max-height: 320px;
        object-fit: cover;
        object-position: center top;
        width: 70%;
        display: block;
        margin: 0 auto 32px;
        position: relative;
        left: 0;
        right: 0;
    }
}

/* About section headline size */
.intro .title h2 {
    font-size: 30px;
    line-height: 1.3;
}

/* About section bullet points */
.healing_bullets {
    list-style: none;
    padding: 0;
    margin: 16px 0 20px;
}
.healing_bullets li {
    padding: 6px 0 6px 22px;
    position: relative;
    font-size: 15px;
    color: #555;
    border-bottom: 1px solid #f0ebe4;
}
.healing_bullets li:last-child {
    border-bottom: none;
}
.healing_bullets li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #c4a97d;
    font-size: 10px;
    top: 9px;
}

/* Testimonials PiP video background */
.testimonials_video_bg {
    position: relative;
    overflow: hidden;
}
.testimonials_bg_video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}
.testimonials_pip {
    position: absolute;
    bottom: 40px;
    width: 380px;
    height: 380px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.45);
    z-index: 10;
}
.pip_left {
    left: 40px;
}
.pip_right {
    right: 40px;
}
/* The decorative side circles only fit on wide monitors — hide on laptops/tablets
   so they never overlap the testimonial text. */
@media (max-width: 1599px) {
    .testimonials_pip { display: none; }
}
@media (max-width: 767px) {
    .testimonials_pip {
        display: none;
    }
    .parallax_section_1 .wrapper {
        padding: 40px 0;
    }
    .parallax_section_1 .title.white h2 {
        font-size: 26px !important;
    }
    .parallax_section_1 .title.white small {
        font-size: 11px;
    }
    .carousel_testimonials .box_overlay {
        padding: 20px 16px;
    }
    .carousel_testimonials .box_overlay .comment {
        font-size: 13px;
        line-height: 1.6;
    }
    .carousel_testimonials .box_overlay .pic h4 {
        font-size: 14px;
    }
    .carousel_testimonials .box_overlay .pic img {
        width: 56px;
        height: 56px;
    }
}
.testimonials_video_bg .wrapper {
    position: relative;
    z-index: 5;
}
.carousel_testimonials .box_overlay {
    background: rgba(0, 0, 0, 0.25) !important;
    backdrop-filter: blur(4px);
}
.carousel_testimonials .box_overlay .pic img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #c4a97d;
    margin-bottom: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* ===================== HISTORY PAGE ===================== */

/* Stat infobox */
.history_infobox {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    border: 1px solid #e8e0d4;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}
.history_infobox_item {
    flex: 1;
    min-width: 140px;
    padding: 28px 20px;
    text-align: center;
    border-right: 1px solid #e8e0d4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.history_infobox_item:last-child { border-right: none; }
.history_stat {
    font-size: 32px;
    font-weight: 700;
    color: #978667;
    line-height: 1;
}
.history_stat small {
    font-size: 16px;
    font-weight: 500;
}
.history_label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
}
@media (max-width: 767px) {
    .history_infobox_item {
        flex: 0 0 50%;
        border-bottom: 1px solid #e8e0d4;
    }
    .history_infobox_item:nth-child(even) { border-right: none; }
    .history_stat { font-size: 26px; }
}

/* Chapter sections */
.history_chapter {
    margin-top: 90px;
    margin-bottom: 90px;
}
.history_chapter_label {
    font-size: 72px;
    font-weight: 800;
    color: #f0ebe4;
    line-height: 1;
    margin-bottom: -10px;
    font-family: 'Montserrat', sans-serif;
}
.history_chapter_title {
    font-size: 32px;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 24px;
    line-height: 1.25;
}

/* Pull quote */
.history_pullquote {
    border-left: 4px solid #c4a97d;
    padding: 16px 24px;
    margin: 28px 0;
    font-size: 17px;
    font-style: italic;
    color: #555;
    background: #faf8f5;
    border-radius: 0 8px 8px 0;
    line-height: 1.7;
}

/* Figure captions */
.history_figure {
    margin: 0;
}
.history_figure img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}
.history_figure figcaption {
    font-size: 12px;
    color: #999;
    margin-top: 10px;
    font-style: italic;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Timeline */
.history_timeline {
    margin-top: 40px;
    position: relative;
    padding-left: 30px;
}
.history_timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #c4a97d, #e8e0d4);
}
.history_timeline_item {
    display: flex;
    gap: 28px;
    margin-bottom: 44px;
    position: relative;
}
.history_timeline_item::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #c4a97d;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #c4a97d;
}
.history_timeline_year {
    min-width: 70px;
    font-size: 13px;
    font-weight: 700;
    color: #c4a97d;
    letter-spacing: 1px;
    padding-top: 2px;
    text-align: right;
}
.history_timeline_content strong {
    display: block;
    font-size: 15px;
    color: #1c1c1c;
    margin-bottom: 6px;
}
.history_timeline_content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.7;
}
@media (max-width: 767px) {
    .history_timeline_item { flex-direction: column; gap: 6px; }
    .history_timeline_year { text-align: left; }
    .history_chapter_title { font-size: 24px; }
    .history_chapter_label { font-size: 48px; }
}

/* Forest wildlife medallions inside parallax */
.history_forest_section {
    min-height: 600px;
}
.history_forest_section .wrapper {
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}
.forest_chapter_num {
    font-size: 80px;
    font-weight: 800;
    color: #c4a97d;
    line-height: 1;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    opacity: 0.9;
}
.forest_medallions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    justify-items: center;
}
.forest_medallion {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.forest_medallion_ring {
    width: 230px;
    height: 230px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.forest_medallion_ring:hover {
    transform: scale(1.07);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}
.forest_medallion_ring img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.forest_medallion span {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 0 2px 6px rgba(0,0,0,0.8);
    font-family: 'Montserrat', sans-serif;
}
@media (max-width: 991px) {
    .forest_medallion_ring { width: 160px; height: 160px; }
    .forest_medallions { gap: 16px; }
    .forest_chapter_num { font-size: 60px; }
}
@media (max-width: 767px) {
    .forest_medallions { gap: 12px; }
    .forest_medallion_ring { width: 130px; height: 130px; }
    .history_forest_section .wrapper { padding: 50px 0; }
    .forest_chapter_num { font-size: 48px; }
}

/* ===================== END HISTORY PAGE ===================== */

/* Footer mobile — simple & compact */
@media (max-width: 767px) {
    .col-lg-3.col-md-6.ms-lg-auto,
    .col-lg-3.col-md-6 {
        display: none !important;
    }
    footer .col-lg-4.col-md-12 {
        text-align: center;
    }
    footer .col-lg-4.col-md-12 ul {
        padding: 0;
        list-style: none;
    }
    footer .col-lg-4.col-md-12 ul li {
        font-size: 13px;
        margin-bottom: 4px;
    }
    footer .col-lg-4.col-md-12 h5 {
        display: none;
    }
    footer .social ul {
        justify-content: center;
    }
    footer .move_content {
        padding: 30px 0 10px;
    }
    footer .copy {
        text-align: center;
        font-size: 12px;
    }
}

/* ===================== GALLERY PAGE ===================== */
/* Gallery hamburger — white over dark green header */
.gallery-page .fixed_header .hamburger__inner,
.gallery-page .fixed_header .hamburger__inner::before,
.gallery-page .fixed_header .hamburger__inner::after {
    background-color: #fff !important;
}
.gallery-page .fixed_header.sticky .hamburger__inner,
.gallery-page .fixed_header.sticky .hamburger__inner::before,
.gallery-page .fixed_header.sticky .hamburger__inner::after {
    background-color: #333 !important;
}

.gallery_intro {
    background: #1b2a1e;
    padding: 130px 0 0;
}
.gallery_intro_inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.gallery_intro small {
    display: block;
    color: #c4a97d;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.gallery_intro h1 {
    color: #fff;
    font-size: 88px;
    font-weight: 700;
    line-height: 0.9;
    margin: 0;
    letter-spacing: -2px;
}
.gallery_intro_count {
    font-size: 88px;
    font-weight: 300;
    color: rgba(255,255,255,0.12);
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    text-align: right;
    letter-spacing: -2px;
}
.gallery_intro_right p,
.gallery_intro_right p * {
    color: rgba(255,255,255,0.55) !important;
    font-size: 14px !important;
    line-height: 1.8;
    text-align: right;
    margin: 0;
    font-style: normal !important;
}
.gallery_filterbar {
    background: #fff;
    padding: 0 20px 40px;
    text-align: center;
    position: sticky;
    top: 68px;
    z-index: 200;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}
.gallery_filterbar_inner {
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}
.gal-filter-btn {
    background: transparent;
    border: 1px solid rgba(0,0,0,0.15);
    color: rgba(0,0,0,0.45);
    padding: 8px 22px;
    border-radius: 40px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.25s;
}
.gal-filter-btn:hover {
    border-color: rgba(196,169,125,0.6);
    color: #c4a97d;
}
.gal-filter-btn.active {
    background: #c4a97d;
    border-color: #c4a97d;
    color: #fff;
}
.gallery_masonry_wrap {
    background: #f7f7f7;
    padding: 20px 8px 60px;
}
.gallery_masonry {
    columns: 4;
    column-gap: 5px;
}
.gal-item {
    break-inside: avoid;
    margin-bottom: 5px;
    position: relative;
    overflow: hidden;
    display: block;
    cursor: pointer;
}
.gal-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.gal-item:hover img {
    transform: scale(1.05);
}
.gal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.gal-item:hover .gal-overlay {
    background: rgba(0,0,0,0.35);
}
.gal-overlay i {
    color: #fff;
    font-size: 30px;
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.3s;
}
.gal-item:hover .gal-overlay i {
    opacity: 1;
    transform: scale(1);
}
.gal-item.gal-hidden {
    display: none;
}
@media (max-width: 1199px) {
    .gallery_masonry { columns: 3; }
}
@media (max-width: 991px) {
    .gallery_masonry { columns: 2; }
    .gallery_intro h1 { font-size: 56px; letter-spacing: -1px; }
    .gallery_intro_count { font-size: 56px; }
}
@media (max-width: 575px) {
    .gallery_masonry { columns: 2; }
    .gallery_intro_inner { flex-direction: column; align-items: flex-start; gap: 12px; }
    .gallery_intro h1 { font-size: 42px; letter-spacing: -1px; }
    .gallery_intro_count { display: none; }
    .gallery_intro_right p { text-align: left; margin: 0; }
    .gallery_intro { padding: 110px 0 40px; }
    .gallery_filterbar { top: 60px; }
    .gal-filter-btn { font-size: 10px; padding: 7px 14px; }
}
/* ===================== END GALLERY PAGE ===================== */

/* ===================== EXPERIENCES PAGE ===================== */
.exp_intro_lead {
    font-size: 20px;
    line-height: 1.8;
    color: #444;
    font-weight: 300;
}
/* Experience Cards */
.exp_card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.exp_card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.13);
}
.exp_card_img {
    position: relative;
    overflow: hidden;
    height: 230px;
}
.exp_card_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.exp_card:hover .exp_card_img img {
    transform: scale(1.06);
}
.exp_cat_badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(196,169,125,0.92);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}
.exp_card_body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.exp_card_body h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 10px;
}
.exp_card_body p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 18px;
}
.exp_meta_row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.exp_meta_item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #888;
    font-weight: 500;
}
.exp_meta_item i {
    color: #c4a97d;
    font-size: 13px;
}
.exp_price_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}
.exp_price {
    font-size: 22px;
    font-weight: 700;
    color: #1c1c1c;
}
.exp_price small {
    font-size: 12px;
    color: #999;
    font-weight: 400;
}
.exp_book_btn {
    background: #1c1c1c;
    color: #fff;
    border: none;
    padding: 9px 18px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s;
    white-space: nowrap;
}
.exp_book_btn:hover {
    background: #c4a97d;
    color: #fff;
}

/* What's Included strip */
.exp_included_strip {
    background: #f9f7f4;
    padding: 50px 0;
    border-top: 1px solid #ede9e3;
    border-bottom: 1px solid #ede9e3;
}
.exp_included_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}
.exp_included_item i {
    font-size: 26px;
    color: #c4a97d;
}
.exp_included_item span {
    font-size: 12px;
    font-weight: 600;
    color: #555;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Packages */
.exp_packages_section {
    background: #1b2a1e;
    padding: 100px 0;
}
.exp_packages_section .title small { color: #c4a97d; }
.exp_packages_section .title h2 { color: #fff; }
.pkg_card {
    background: #22372a;
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.07);
    transition: transform 0.3s ease, border-color 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.pkg_card:hover {
    transform: translateY(-6px);
    border-color: rgba(196,169,125,0.3);
}
.pkg_card.pkg_popular {
    background: #fff;
    border-color: #c4a97d;
}
.pkg_popular_badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #c4a97d;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 20px;
    white-space: nowrap;
}
.pkg_label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c4a97d;
    margin-bottom: 8px;
}
.pkg_name {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}
.pkg_card.pkg_popular .pkg_name { color: #1c1c1c; }
.pkg_duration {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 28px;
}
.pkg_card.pkg_popular .pkg_duration { color: #888; }
.pkg_price_block {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pkg_card.pkg_popular .pkg_price_block { border-bottom-color: #ebebeb; }
.pkg_price_old {
    font-size: 14px;
    color: rgba(255,255,255,0.3);
    text-decoration: line-through;
    margin-bottom: 4px;
}
.pkg_card.pkg_popular .pkg_price_old { color: #bbb; }
.pkg_price_val {
    font-size: 44px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.pkg_card.pkg_popular .pkg_price_val { color: #1c1c1c; }
.pkg_price_val small {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.4);
}
.pkg_card.pkg_popular .pkg_price_val small { color: #888; }
.pkg_save {
    display: inline-block;
    background: rgba(196,169,125,0.15);
    color: #c4a97d;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 10px;
    margin-top: 6px;
}
.pkg_features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    flex: 1;
}
.pkg_features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 12px;
    line-height: 1.5;
}
.pkg_card.pkg_popular .pkg_features li { color: #444; }
.pkg_features li i {
    color: #c4a97d;
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}
.pkg_cta_btn {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s;
    border: 2px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
    margin-top: auto;
}
.pkg_cta_btn:hover {
    border-color: #c4a97d;
    color: #c4a97d;
}
.pkg_card.pkg_popular .pkg_cta_btn {
    background: #1c1c1c;
    border-color: #1c1c1c;
    color: #fff;
}
.pkg_card.pkg_popular .pkg_cta_btn:hover {
    background: #c4a97d;
    border-color: #c4a97d;
}
/* Note under packages */
.pkg_note {
    text-align: center;
    margin-top: 40px;
    color: rgba(255,255,255,0.35);
    font-size: 13px;
}
.pkg_note a { color: #c4a97d; text-decoration: none; }

/* Guide section */
.exp_guide_section {
    background: #fff;
    padding: 80px 0;
    border-top: 1px solid #ebebeb;
}
.exp_guide_avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #c4a97d;
}
.exp_guide_name {
    font-size: 18px;
    font-weight: 700;
    color: #1c1c1c;
    margin: 0;
}
.exp_guide_role {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c4a97d;
    margin: 0;
}

/* How to book steps */
.exp_steps_section { padding: 80px 0; background: #f9f7f4; }
.exp_step {
    text-align: center;
    padding: 0 20px;
}
.exp_step_num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #1c1c1c;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.exp_step h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 8px;
}
.exp_step p {
    font-size: 13px;
    color: #888;
    line-height: 1.7;
    margin: 0;
}
@media (max-width: 767px) {
    .exp_card_img { height: 190px; }
    .pkg_price_val { font-size: 36px; }
    .pkg_card { padding: 30px 22px; }
    .exp_step { margin-bottom: 40px; }
}
/* Clickable card image + overlay (links to detail page) */
.exp_card_img a.exp_card_imglink {
    display: block;
    width: 100%;
    height: 100%;
}
.exp_card_overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(28,28,28,0.45);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.exp_card:hover .exp_card_overlay { opacity: 1; }
.exp_card_body h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.exp_card_body h3 a:hover { color: #c4a97d; }
/* ===================== END EXPERIENCES PAGE ===================== */

/* ===================== EXPERIENCE DETAIL PAGES ===================== */
/* Sticky quick-facts bar under hero */
.expd_facts_bar {
    background: #fff;
    border-bottom: 1px solid #ececec;
    box-shadow: 0 6px 24px rgba(0,0,0,0.04);
}
.expd_facts {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 24px 0;
}
.expd_fact {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 6px 30px;
    border-right: 1px solid #eee;
}
.expd_fact:last-child { border-right: none; }
.expd_fact i { font-size: 24px; color: #c4a97d; }
.expd_fact_label {
    display: block;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #aaa;
    font-weight: 600;
    margin-bottom: 2px;
}
.expd_fact_val {
    font-size: 15px;
    font-weight: 700;
    color: #1c1c1c;
    line-height: 1.1;
}

/* Back to experiences link */
.expd_back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    color: #999;
    text-decoration: none;
    transition: color 0.2s;
}
.expd_back:hover { color: #c4a97d; }

/* Overview lead text */
.expd_lead {
    font-size: 20px;
    line-height: 1.8;
    color: #444;
    font-weight: 300;
}

/* What to expect — timeline */
.expd_timeline { margin: 8px 0 0; padding: 0; list-style: none; }
.expd_tl_item {
    position: relative;
    padding: 0 0 30px 34px;
    border-left: 2px solid #ece7df;
}
.expd_tl_item:last-child { border-left-color: transparent; padding-bottom: 0; }
.expd_tl_item::before {
    content: "";
    position: absolute;
    left: -9px;
    top: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #c4a97d;
    box-shadow: 0 0 0 4px #f4efe7;
}
.expd_tl_time {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #c4a97d;
    margin-bottom: 4px;
}
.expd_tl_item h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 6px;
}
.expd_tl_item p {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
    margin: 0;
}

/* Sticky booking card */
.expd_book_card {
    background: #fff;
    border: 1px solid #ece7df;
    border-radius: 18px;
    padding: 34px 30px;
    box-shadow: 0 14px 50px rgba(0,0,0,0.07);
    position: sticky;
    top: 100px;
}
.expd_book_cat {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #c4a97d;
    margin-bottom: 10px;
}
.expd_book_price {
    font-size: 42px;
    font-weight: 700;
    color: #1c1c1c;
    line-height: 1;
}
.expd_book_price small {
    font-size: 14px;
    font-weight: 400;
    color: #999;
}
.expd_book_list {
    list-style: none;
    padding: 24px 0;
    margin: 22px 0;
    border-top: 1px solid #f0ece5;
    border-bottom: 1px solid #f0ece5;
}
.expd_book_list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
    padding: 7px 0;
}
.expd_book_list li span:last-child { font-weight: 600; color: #1c1c1c; }
.expd_book_list li i { color: #c4a97d; margin-right: 8px; }
.expd_book_card .btn_1 { display: block; width: 100%; text-align: center; }
.expd_book_wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 12px;
    padding: 13px;
    border-radius: 40px;
    background: #fff;
    border: 2px solid #25d366;
    color: #1aa34a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s;
}
.expd_book_wa:hover { background: #25d366; color: #fff; }
.expd_book_note {
    text-align: center;
    font-size: 12px;
    color: #aaa;
    margin: 16px 0 0;
}

/* Gallery grid */
.expd_gallery_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.expd_gallery_grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.expd_gallery_grid img:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 40px rgba(0,0,0,0.16);
}

/* Editorial mosaic gallery (desktop bento -> mobile swipe carousel) */
.expd_mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 230px;
    gap: 14px;
}
.expd_mosaic_item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 14px;
    background: #f1ece4;
}
.expd_mosaic_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.expd_mosaic_item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(28,28,28,0);
    transition: background 0.35s ease;
    z-index: 1;
}
.expd_mosaic_item:hover img { transform: scale(1.07); }
.expd_mosaic_item:hover::after { background: rgba(28,28,28,0.28); }
.expd_mosaic_zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    color: #1c1c1c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
    z-index: 2;
}
.expd_mosaic_item:hover .expd_mosaic_zoom {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
/* first tile spans two columns -> wide "feature" tile */
.expd_mosaic_item:nth-child(1) { grid-column: span 2; }
.expd_mosaic_hint { display: none; }

@media (max-width: 991px) {
    .expd_mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
}
@media (max-width: 575px) {
    .expd_mosaic {
        display: flex;
        grid-template-columns: none;
        grid-auto-rows: auto;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        margin: 0 -15px;
        padding: 0 15px 14px;
    }
    .expd_mosaic_item {
        flex: 0 0 84%;
        height: 280px;
        scroll-snap-align: center;
    }
    .expd_mosaic_item:nth-child(1) { grid-column: auto; }
    .expd_mosaic_zoom {
        opacity: 1;
        width: 40px;
        height: 40px;
        font-size: 15px;
        top: auto;
        bottom: 12px;
        right: 12px;
        left: auto;
        transform: none;
    }
    .expd_mosaic::-webkit-scrollbar { height: 4px; }
    .expd_mosaic::-webkit-scrollbar-track { background: #efe9e1; border-radius: 4px; }
    .expd_mosaic::-webkit-scrollbar-thumb { background: #c4a97d; border-radius: 4px; }
    .expd_mosaic_hint {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: 12px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: #b0a48f;
        font-weight: 600;
        margin-top: 14px;
    }
}

/* Good to know info cards */
.expd_info_card {
    background: #f9f7f4;
    border-radius: 14px;
    padding: 28px;
    height: 100%;
}
.expd_info_card i {
    font-size: 28px;
    color: #c4a97d;
    margin-bottom: 14px;
    display: block;
}
.expd_info_card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 8px;
}
.expd_info_card p {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 991px) {
    .expd_book_card { position: static; margin-top: 40px; }
    .expd_gallery_grid { grid-template-columns: repeat(2, 1fr); }
    .expd_gallery_grid img { height: 200px; }
}
@media (max-width: 575px) {
    .expd_fact { border-right: none; padding: 10px 18px; }
    .expd_gallery_grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .expd_gallery_grid img { height: 140px; }
    .expd_lead { font-size: 17px; }
}
/* ===================== END EXPERIENCE DETAIL PAGES ===================== */

/* ===================== BOOKING PAGE ===================== */
.booking_trust {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}
.booking_trust_item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.booking_trust_item i {
    color: #c4a97d;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}
.booking_trust_item strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 2px;
}
.booking_trust_item span {
    font-size: 12px;
    color: #888;
}
.booking_alt_contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}
.booking_alt_btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.25s;
    border: 1px solid #ebebeb;
    color: #1c1c1c;
    background: #fff;
}
.booking_alt_btn:hover { border-color: #c4a97d; color: #c4a97d; }
.booking_alt_btn i { font-size: 20px; }
.booking_alt_btn.whatsapp { border-color: #25d366; color: #25d366; }
.booking_alt_btn.whatsapp:hover { background: #25d366; color: #fff; }
.booking_form_card {
    background: #fff;
    border-radius: 20px;
    padding: 44px 40px;
    box-shadow: 0 8px 48px rgba(0,0,0,0.09);
    border: 1px solid #f0f0f0;
}
.booking_form_card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 28px;
}
.booking_form_card .form-control,
.booking_form_card .form-select {
    border-radius: 10px;
    border-color: #e8e8e8;
    font-size: 14px;
}
.booking_form_card .form-control:focus,
.booking_form_card .form-select:focus {
    border-color: #c4a97d;
    box-shadow: 0 0 0 3px rgba(196,169,125,0.15);
}
.booking_form_card .form-floating label { font-size: 14px; color: #aaa; }
.booking_what_next {
    background: #f9f7f4;
    border-radius: 16px;
    padding: 32px 36px;
    margin-top: 40px;
}
.booking_what_next h5 {
    font-size: 14px;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.booking_what_next ol {
    padding-left: 18px;
    margin: 0;
}
.booking_what_next ol li {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.6;
}
@media (max-width: 767px) {
    .booking_form_card { padding: 28px 20px; }
}

/* ── Experience toggle pills ── */
.exp_toggle_group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.exp_toggle {
    cursor: pointer;
    margin: 0;
}
.exp_toggle input[type="checkbox"] {
    display: none;
}
.exp_toggle span {
    display: flex;
    flex-direction: column;
    border: 1.5px solid #e0dbd4;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    background: #fafaf8;
    transition: all 0.18s ease;
    line-height: 1.3;
    white-space: nowrap;
}
.exp_toggle span small {
    font-size: 11px;
    font-weight: 400;
    color: #aaa;
    margin-top: 2px;
}
.exp_toggle:hover span {
    border-color: #c4a97d;
    color: #c4a97d;
    background: #fdf9f4;
}
.exp_toggle input:checked + span {
    border-color: #c4a97d;
    background: #c4a97d;
    color: #fff;
}
.exp_toggle input:checked + span small {
    color: rgba(255,255,255,0.75);
}
.exp_toggle_popular span {
    border-color: #c4a97d;
}
/* ===================== END BOOKING PAGE ===================== */

/* ===================== ROOMS PAGE ===================== */
.room_section {
    border-bottom: 1px solid #f0f0f0;
}
.room_section:last-of-type { border-bottom: none; }
.room_gallery_col {
    position: relative;
    overflow: hidden;
}
.room_gallery_carousel .carousel-item img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    display: block;
}
.room_gallery_carousel .carousel-control-prev,
.room_gallery_carousel .carousel-control-next {
    width: 44px;
    height: 44px;
    background: rgba(0,0,0,0.45);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    margin: 0 14px;
    opacity: 1;
    transition: background 0.25s;
}
.room_gallery_carousel .carousel-control-prev:hover,
.room_gallery_carousel .carousel-control-next:hover {
    background: rgba(196,169,125,0.85);
}
.room_gallery_carousel .carousel-control-prev-icon,
.room_gallery_carousel .carousel-control-next-icon { width: 16px; height: 16px; }
.room_gallery_carousel .carousel-indicators { margin-bottom: 14px; }
.room_gallery_carousel .carousel-indicators [data-bs-target] {
    width: 7px; height: 7px;
    border-radius: 50%; border: none;
    background: rgba(255,255,255,0.45); margin: 0 4px;
}
.room_gallery_carousel .carousel-indicators .active { background: #c4a97d; }
.room_info_col {
    padding: 64px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}
.room_num {
    font-size: 88px;
    font-weight: 800;
    color: #f2f2f2;
    line-height: 1;
    margin-bottom: -16px;
    letter-spacing: -4px;
    font-family: 'Montserrat', sans-serif;
}
.room_type_label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c4a97d;
    margin-bottom: 10px;
    display: block;
}
.room_info_col h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1c1c1c;
    line-height: 1.1;
    margin-bottom: 18px;
}
.room_info_col > p {
    font-size: 15px;
    color: #666;
    line-height: 1.85;
    margin-bottom: 30px;
}
.room_amenity_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
    margin-bottom: 36px;
}
.room_amenity_item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    color: #444;
    font-weight: 500;
}
.room_amenity_item i { color: #c4a97d; font-size: 16px; flex-shrink: 0; }
.room_price_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
    border-top: 1px solid #ebebeb;
}
.room_price_from { font-size: 11px; color: #aaa; margin-bottom: 2px; }
.room_price_val {
    font-size: 36px;
    font-weight: 700;
    color: #1c1c1c;
    line-height: 1;
}
.room_price_val small { font-size: 14px; font-weight: 400; color: #999; }
@media (max-width: 991px) {
    .room_gallery_carousel .carousel-item img { height: 320px; }
    .room_info_col { padding: 40px 28px; }
    .room_num { font-size: 60px; }
    .room_info_col h2 { font-size: 28px; }
}
@media (max-width: 575px) {
    .room_gallery_carousel .carousel-item img { height: 250px; }
    .room_info_col { padding: 32px 20px; }
    .room_amenity_grid { grid-template-columns: 1fr; gap: 10px; }
    .room_price_val { font-size: 28px; }
}
/* ===================== ROOM DETAIL PAGE ===================== */
.room_stats_bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border: 1px solid #ede9e3;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    margin-bottom: 48px;
}
.room_stat_item {
    flex: 1;
    min-width: 140px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 22px 24px;
    border-right: 1px solid #ede9e3;
    font-size: 14px;
    font-weight: 600;
    color: #1c1c1c;
}
.room_stat_item:last-child { border-right: none; }
.room_stat_item i {
    font-size: 22px;
    color: #c4a97d;
    flex-shrink: 0;
}
@media (max-width: 767px) {
    .room_stat_item { flex: 0 0 50%; border-bottom: 1px solid #ede9e3; }
    .room_stat_item:nth-child(even) { border-right: none; }
}
.room_highlights_box {
    background: #f9f7f4;
    border-radius: 14px;
    padding: 28px 30px;
    border: 1px solid #ede9e3;
}
.room_highlights_box h5 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1c1c1c;
    margin-bottom: 18px;
}
.room_highlights_box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.room_highlights_box ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #444;
    padding: 8px 0;
    border-bottom: 1px solid #ede9e3;
}
.room_highlights_box ul li:last-child { border-bottom: none; }
.room_highlights_box ul li i { color: #c4a97d; font-size: 15px; }
.room_amenity_card {
    background: #fff;
    border: 1px solid #ede9e3;
    border-radius: 12px;
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    height: 100%;
}
.room_amenity_card i {
    font-size: 26px;
    color: #c4a97d;
    margin-bottom: 4px;
}
.room_amenity_card strong {
    font-size: 14px;
    font-weight: 700;
    color: #1c1c1c;
    line-height: 1.3;
}
.room_amenity_card span {
    font-size: 12px;
    color: #999;
}
.room_policies_box {
    background: #f9f7f4;
    border-radius: 14px;
    padding: 28px 32px;
    border: 1px solid #ede9e3;
}
.room_policies_box ul {
    list-style: disc;
    padding-left: 18px;
    margin: 0;
}
.room_policies_box ul li {
    font-size: 14px;
    color: #555;
    padding: 5px 0;
    line-height: 1.6;
}
.room_policies_box ul li strong { color: #1c1c1c; }
/* ===================== END ROOM DETAIL PAGE ===================== */

/* Price badge on room list cards */
.room_price_badge {
    display: inline-block;
    background: #c4a97d;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 14px;
    box-shadow: 0 4px 14px rgba(196,169,125,0.45);
}
/* ===================== END ROOMS PAGE ===================== */


/* Events Carousel */
.events_carousel .box_contents {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.events_carousel .box_contents:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.14);
}
.events_carousel figure {
    margin: 0;
    overflow: hidden;
}
.events_carousel figure img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}
.events_carousel .box_contents:hover figure img {
    transform: scale(1.05);
}
.events_carousel .wrapper {
    padding: 20px;
    border: 1px solid rgba(185, 128, 54, 0.3);
    border-top: none;
    border-radius: 0 0 12px 12px;
}
.events_carousel .wrapper small {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #b98036;
}
.events_carousel .wrapper h2 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 8px;
    color: #1c1c1c;
    line-height: 1.4;
}

/* Menu items without a thumbnail image (text-only menu) */
.menu_item.no_thumb {
    padding-left: 0;
    min-height: 0;
}
.menu_item .menu_title h3 small {
    font-size: 13px;
    color: #999;
    font-style: italic;
}

/* ===== Airport pick-up / "near Tirana" callout ===== */
.airport_band { background: linear-gradient(135deg, #1b2a1e, #2c4332); padding: 48px 0; }
.airport_band .airport_inner {
    display: flex; align-items: center; justify-content: center;
    gap: 28px; flex-wrap: wrap; text-align: left;
}
.airport_band .airport_ic { font-size: 48px; color: #c4a97d; line-height: 1; }
.airport_band .airport_txt { max-width: 560px; }
.airport_band .airport_txt small {
    display: block; color: #c4a97d; font-size: 11px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase; margin-bottom: 7px;
}
.airport_band .airport_txt h3 { color: #fff; font-size: 24px; font-weight: 700; margin: 0 0 6px; line-height: 1.25; }
.airport_band .airport_txt p { color: rgba(255,255,255,0.72); margin: 0; font-size: 14.5px; line-height: 1.6; }
.airport_band .airport_txt b { color: #fff; }
.airport_band .airport_cta { display: flex; gap: 10px; flex-wrap: wrap; }
.airport_band .airport_cta .btn_1 { margin: 0; }
@media (max-width: 767px) {
    .airport_band { padding: 36px 0; }
    .airport_band .airport_inner { text-align: center; }
    .airport_band .airport_txt { text-align: center; }
}

/* compact version for the booking sidebar */
.airport_box { background: #1b2a1e; color: #fff; border-radius: 14px; padding: 20px 22px; margin-top: 18px; }
.airport_box small { display: block; color: #c4a97d; font-size: 10.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
.airport_box .airport_h { display: block; color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.airport_box p { color: rgba(255,255,255,0.72); font-size: 13px; line-height: 1.6; margin: 0 0 12px; }
.airport_box .airport_box_btn { display: inline-flex; align-items: center; gap: 7px; background: #25d366; color: #fff; text-decoration: none; font-size: 13px; font-weight: 600; padding: 9px 16px; border-radius: 30px; }
.airport_box .airport_box_btn:hover { filter: brightness(1.07); }

/* Room cards: consistent landscape crop regardless of photo orientation */
.row_list_version_2 .rounded-img { aspect-ratio: 3 / 2; overflow: hidden; }
.row_list_version_2 .rounded-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
