/* ==========================================================================
   1. VARIABLES & BASE STYLES
   ========================================================================== */

:root {
    --color-primary: #8e734b;
    --color-primary-dark: #5c4f40;
    --color-gold: #d3bc97;
    --color-cream: #F5F1E8;
    --color-cream-dark: #f0ebe3;
    --color-text: #3d352e;
    --color-white: #ffffff;
    --text-grey: #4c4c4c;
    --off-white: #f8f6ef;
    --font-heading: 'Libre Baskerville', serif;
    --font-body: 'Inter', sans-serif;
    /* Typography */
    --fs-h1: clamp(1.6rem, 1.2rem + 3vw, 4.375rem);
    --fs-h2: clamp(1.4rem, 1.12rem + 1.6vw, 3rem);
    --fs-h3: clamp(1.3rem, 1rem + 0.8vw, 1.875rem);
    --fs-h4: clamp(1.2rem, 1.1rem + 0.4vw, 1.6rem);
    --fs-h5: clamp(1.2rem, 1rem + 0.2vw, 1.375rem);
    --fs-body: clamp(0.9375rem, 0.9rem + 0.2vw, 1rem);
    --fs-subtext: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-grey);
    background-color: var(--color-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

p {
    font-size: var(--fs-body);
    color: var(--text-grey);
    line-height: 1.5;
}

h1 {
    font-size: var(--fs-h1);
    line-height: 1.1;
    margin-bottom: 1rem;
}

h2 {
    font-size: var(--fs-h2);
    color: var(--color-text);
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    line-height: 1.2;
}

h3 {
    font-size: var(--fs-h3);
    line-height: 1.3;
    margin-bottom: 2rem;
}


/* ==========================================================================
   2. UTILITIES & TYPOGRAPHY
   ========================================================================== */

.color-primary {
    color: var(--color-primary) !important;
}

.subhead {
    font-size: var(--fs-subtext);
    line-height: 1.6;
    margin-bottom: 3.8rem;
}

.subhead-v2 {
    font-size: clamp(1.75rem, 1.2rem + 1.5vw, 2.25rem);
    line-height: 1.4;
}

.max-910 {
    max-width: 910px;
}

.mb-180 {
    margin-bottom: 180px;
}

.section-space {
    padding-bottom: 120px;
    padding-top: 120px;
}

.section-space-bottom {
    padding-bottom: 120px;
}

.section-label {
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 12px;
}


/* ==========================================================================
   3. GLOBAL COMPONENTS
   ========================================================================== */


/* Buttons */

.btn-custom {
    padding: 14px 36px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    width: fit-content;
    border: 1px solid transparent;
    display: inline-block;
}

.btn-primary-custom {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary-custom:hover {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--color-primary);
    border: 1.5px solid var(--color-primary);
}

.btn-outline-custom:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-custom-white {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.btn-custom-white:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: 1px solid #fff;
}


/* Scroll Reveal Animations */


/* Scroll Reveal Animations */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

.reveal-delay-6 {
    transition-delay: 0.6s;
}


/* ==========================================================================
   4. NAVIGATION & MODALS
   ========================================================================== */


/* Navbar */

.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled .nav-link {
    color: var(--text-grey) !important;
}

.navbar .navbar-brand img {
    max-width: 150px;
    transition: all 0.3s ease-in;
    filter: brightness(0) invert(1);
}

.navbar.scrolled .navbar-brand img {
    max-width: 85px;
    transition: all 0.3s ease-in;
    filter: none;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-white) !important;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-icon {
    width: 35px;
    height: 35px;
    position: relative;
}

.brand-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid currentColor;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}

.brand-icon::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 60%;
    border: 2px solid currentColor;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    top: 20%;
    left: 20%;
}

.nav-link {
    color: var(--color-white) !important;
    font-size: 1rem;
    font-weight: 400;
    margin: 0 17px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active::after {
    width: 100%;
    background: var(--color-primary);
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0 !important;
    padding-left: 0 !important;
    padding-bottom: 0 !important;
    padding-top: 0 !important;
}


/* Mobile navbar when menu is opened */

.navbar.menu-open {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar.menu-open .navbar-brand img {
    filter: none;
}

.navbar.menu-open .nav-link {
    color: var(--color-primary) !important;
}

.navbar.menu-open .navbar-toggler-icon {
    filter: none !important;
}

.navbar.menu-open .bi-chevron-down {
    color: var(--color-primary);
}


/* mobile toggler css start here */

.navbar-toggler {
    border: none;
    background: transparent;
    box-shadow: none !important;
    padding: 0px 0px;
}


/* Default = hamburger */

.navbar-toggler-icon {
    background-image: none;
    position: relative;
    width: 24px;
    height: 2px;
    background: #000;
    display: block;
    transition: 0.3s;
}


/* create 3 lines */

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 2px;
    background: #000;
    transition: 0.3s;
    left: 0;
}

.navbar-toggler-icon::before {
    top: -7px;
}

.navbar-toggler-icon::after {
    top: 7px;
}


/* OPEN STATE â†’ turn into X */

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    top: 0;
}


/* Default */

.navbar .navbar-toggler-icon,
.navbar .navbar-toggler-icon::before,
.navbar .navbar-toggler-icon::after {
    background: #fff;
    transition: all .3s ease;
}


/* Sticky */

.navbar.scrolled .navbar-toggler-icon,
.navbar.scrolled .navbar-toggler-icon::before,
.navbar.scrolled .navbar-toggler-icon::after,
.navbar.menu-open .navbar-toggler-icon,
.navbar.menu-open .navbar-toggler-icon::before,
.navbar.menu-open .navbar-toggler-icon::after {
    background: var(--color-primary);
}


/* Keep the X visible */

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
}


/* ==========================================================================
   1. VARIABLES & BASE STYLES
   ========================================================================== */

:root {
    --color-primary: #8e734b;
    --color-primary-dark: #5c4f40;
    --color-gold: #d3bc97;
    --color-cream: #F5F1E8;
    --color-cream-dark: #f0ebe3;
    --color-text: #3d352e;
    --color-white: #ffffff;
    --text-grey: #4c4c4c;
    --off-white: #f8f6ef;
    --font-heading: 'Libre Baskerville', serif;
    --font-body: 'Inter', sans-serif;
    /* Typography */
    --fs-h1: clamp(1.6rem, 1.2rem + 3vw, 4.375rem);
    --fs-h2: clamp(1.4rem, 1.12rem + 1.6vw, 3rem);
    --fs-h3: clamp(1.3rem, 1rem + 0.8vw, 1.875rem);
    --fs-h4: clamp(1.2rem, 1.1rem + 0.4vw, 1.6rem);
    --fs-h5: clamp(1.2rem, 1rem + 0.2vw, 1.375rem);
    --fs-body: clamp(0.9375rem, 0.9rem + 0.2vw, 1rem);
    --fs-subtext: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-grey);
    background-color: var(--color-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

p {
    font-size: var(--fs-body);
    color: var(--text-grey);
    line-height: 1.5;
}

h1 {
    font-size: var(--fs-h1);
    line-height: 1.1;
    margin-bottom: 1rem;
}

h2 {
    font-size: var(--fs-h2);
    color: var(--color-text);
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    line-height: 1.2;
}

h3 {
    font-size: var(--fs-h3);
    line-height: 1.3;
    margin-bottom: 2rem;
}


/* ==========================================================================
   2. UTILITIES & TYPOGRAPHY
   ========================================================================== */

.color-primary {
    color: var(--color-primary) !important;
}

.subhead {
    font-size: var(--fs-subtext);
    line-height: 1.6;
    margin-bottom: 3.8rem;
}

.subhead-v2 {
    font-size: clamp(1.75rem, 1.2rem + 1.5vw, 2.25rem);
    line-height: 1.4;
}

.max-910 {
    max-width: 910px;
}

.mb-180 {
    margin-bottom: 180px;
}

.section-space {
    padding-bottom: 120px;
    padding-top: 120px;
}

.section-space-bottom {
    padding-bottom: 120px;
}

.section-label {
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 12px;
}


/* ==========================================================================
   3. GLOBAL COMPONENTS
   ========================================================================== */


/* Buttons */

.btn-custom {
    padding: 14px 36px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    width: fit-content;
    border: 1px solid transparent;
    display: inline-block;
}

.btn-primary-custom {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary-custom:hover {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--color-primary);
    border: 1.5px solid var(--color-primary);
}

.btn-outline-custom:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-custom-white {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.btn-custom-white:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: 1px solid #fff;
}


/* Scroll Reveal Animations */


/* Scroll Reveal Animations */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

.reveal-delay-6 {
    transition-delay: 0.6s;
}


/* ==========================================================================
   4. NAVIGATION & MODALS
   ========================================================================== */


/* Navbar */

.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled .nav-link {
    color: var(--text-grey) !important;
}

.navbar .navbar-brand img {
    max-width: 150px;
    transition: all 0.3s ease-in;
    filter: brightness(0) invert(1);
}

.navbar.scrolled .navbar-brand img {
    max-width: 85px;
    transition: all 0.3s ease-in;
    filter: none;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-white) !important;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-icon {
    width: 35px;
    height: 35px;
    position: relative;
}

.brand-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid currentColor;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}

.brand-icon::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 60%;
    border: 2px solid currentColor;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    top: 20%;
    left: 20%;
}

.nav-link {
    color: var(--color-white) !important;
    font-size: 1rem;
    font-weight: 400;
    margin: 0 17px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active::after {
    width: 100%;
    background: var(--color-primary);
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0 !important;
    padding-left: 0 !important;
    padding-bottom: 0 !important;
    padding-top: 0 !important;
}


/* Mobile navbar when menu is opened */

.navbar.menu-open {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar.menu-open .navbar-brand img {
    filter: none;
}

.navbar.menu-open .nav-link {
    color: var(--color-primary) !important;
}

.navbar.menu-open .navbar-toggler-icon {
    filter: none !important;
}

.navbar.menu-open .bi-chevron-down {
    color: var(--color-primary);
}


/* mobile toggler css start here */

.navbar-toggler {
    border: none;
    background: transparent;
    box-shadow: none !important;
    padding: 0px 0px;
}


/* Default = hamburger */

.navbar-toggler-icon {
    background-image: none;
    position: relative;
    width: 24px;
    height: 2px;
    background: #000;
    display: block;
    transition: 0.3s;
}


/* create 3 lines */

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 2px;
    background: #000;
    transition: 0.3s;
    left: 0;
}

.navbar-toggler-icon::before {
    top: -7px;
}

.navbar-toggler-icon::after {
    top: 7px;
}


/* OPEN STATE â†’ turn into X */

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    top: 0;
}


/* Default */

.navbar .navbar-toggler-icon,
.navbar .navbar-toggler-icon::before,
.navbar .navbar-toggler-icon::after {
    background: #fff;
    transition: all .3s ease;
}


/* Sticky */

.navbar.scrolled .navbar-toggler-icon,
.navbar.scrolled .navbar-toggler-icon::before,
.navbar.scrolled .navbar-toggler-icon::after,
.navbar.menu-open .navbar-toggler-icon,
.navbar.menu-open .navbar-toggler-icon::before,
.navbar.menu-open .navbar-toggler-icon::after {
    background: var(--color-primary);
}


/* Keep the X visible */

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
}


/*================ MEGA MENU =================*/

.mega-dropdown {
    position: static;
}

.mega-menu {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    margin-top: 0;
    background: #000;
    padding: 50px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    transition: opacity .2s ease, visibility .2s ease;
    transform-origin: top;
    z-index: 999;
}

.mega-menu:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 55px;
    background: transparent;
    left: 0;
    top: -55px;
    z-index: 1000;
}

.navbar.scrolled .mega-menu::after {
    content: "";
    top: -32px;
    left: 28%;
    width: 45%;
}


/* Force close mega menu while scrolling */

.mega-dropdown.hide-mega .mega-menu {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

@media (min-width: 992px) {
    .mega-dropdown>.nav-link {
        position: relative;
    }
    .mega-dropdown:hover .mega-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

.mega-resort-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-resort-list li {
    margin-bottom: 30px;
}

.mega-resort-list a {
    color: #fff;
    text-decoration: none;
    font-size: 26px;
    font-family: var(--font-heading);
    display: inline-block;
    position: relative;
    transition: .3s;
}

.mega-resort-list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: .3s;
}

.mega-resort-list a:hover,
.mega-resort-list a.active {
    color: var(--color-primary);
}

.mega-resort-list a:hover::after,
.mega-resort-list a.active::after {
    width: 100%;
}

.mega-image img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    object-position: center;
}

.mega-content {
    color: #fff;
}

.mega-content h2 {
    font-family: var(--font-heading);
    margin-bottom: 10px;
}

.mega-content h5 {
    color: var(--color-primary);
    margin-bottom: 25px;
}

.mega-content p {
    line-height: 1.8;
    color: var(--color-white);
    margin-bottom: 0px;
}


/* Book Now Modal */

.book-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.book-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.book-modal {
    background: var(--color-white);
    border-radius: 24px;
    padding: 40px;
    max-width: 700px;
    width: 90%;
    position: relative;
    text-align: center;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.book-modal-overlay.active .book-modal {
    transform: scale(1);
}

.book-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--color-cream);
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-modal-close:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.book-modal h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.book-modal p {
    color: var(--color-text-light);
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.book-modal-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.book-modal-item {
    flex: 1;
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.3s ease;
    border-radius: 16px;
    overflow: hidden;
    background: var(--color-cream);
}

.book-modal-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.book-modal-item img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.book-modal-item span {
    display: block;
    padding: 14px;
    font-size: 0.85rem;
    font-weight: 500;
    background: var(--color-cream);
}


/* ==========================================================================
   5. PAGE: HOME
   ========================================================================== */


/* Hero Section */

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: end;
    color: var(--color-white);
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-bottom: 130px;
}

.hero-content h1 {
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 20px;
    max-width: 850px;
    font-weight: 300;
    color: #fff;
}


/* Welcome Section */

.welcome-section {
    padding: 120px 0 0 0;
    background-color: var(--color-white);
}

.welcome-card-wrapper {
    display: flex;
    justify-content: center;
}

.welcome-card {
    background-color: #f5f1e8;
    border-radius: 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 555px;
    width: 100%;
    min-height: 520px;
    padding: 130px 100px;
}

.welcome-img-left,
.welcome-img-right {
    position: absolute;
    max-width: 413px;
    border-radius: 24px;
    overflow: hidden;
}

.welcome-img-left {
    left: -66%;
    top: 11%;
}

.welcome-img-right {
    right: -66%;
    top: 11%;
}

.welcome-img-left img,
.welcome-img-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

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

.welcome-content h2 {
    margin-bottom: 2rem;
}

.welcome-content .subhead {
    margin-bottom: 2.8rem;
}


/* ==========================================================
   Resorts Section
========================================================== */


/* Centered Header Styles */

.resort-header {
    margin-bottom: 2.5rem;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 15%;
    width: 100%;
}

.resort-header .section-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 3.5px;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.resort-header .section-title {
    font-family: var(--font-heading);
    font-size: var(--fs-h2);
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.15;
    margin: 0;
}


/* ==========================================================================
           3. PINNED SECTION (DESKTOP DEFAULT)
           ========================================================================== */

.pinned-section {
    position: relative;
    background-color: var(--color-white);
    overflow: hidden;
}

.pinned-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 2rem;
    /* padding-bottom: 2rem; */
}


/* Left Navigation */

.tab-nav {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    z-index: 10;
}

.tab-nav-btn {
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-size: var(--fs-h3);
    font-weight: 700;
    color: rgba(61, 53, 46, 0.28);
    transition: color 0.4s ease, transform 0.4s ease, border-color 0.3s ease;
    cursor: pointer;
    padding: 0.25rem 0;
    outline: none;
    white-space: nowrap;
}

.tab-nav-btn:hover {
    color: var(--color-primary-dark);
}

.tab-nav-btn.active {
    color: var(--color-text);
    transform: translateX(10px);
}


/* Right Window Container for Vertical Scrolling Stack */

.resort-window {
    position: relative;
    height: 68vh;
    /* Adjusted to fit nicely under top header */
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}


/* Moving Track */

.resort-track {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    will-change: transform;
}


/* Individual Resort Item */

.resort-item {
    opacity: 0.35;
    transform: scale(0.92);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.resort-item.active {
    opacity: 1;
    transform: scale(1);
}

.property-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    background: var(--color-cream);
}

.property-card-img-wrapper {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.property-card-img-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.property-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.property-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.btn-explore {
    color: #fff;
    border: none;
    font-weight: 400;
    padding: 0.65rem 1.6rem;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: 1px solid #fff;
}

.btn-explore:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.property-card:hover .property-card-img {
    transform: scale(1.05);
}

.resort-item:hover .property-overlay {
    opacity: 1;
    transform: translateY(0);
}

.panel-description {
    padding-top: 1.25rem;
}

.panel-description h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.4rem;
}

.panel-description p {
    color: #555e6d;
    font-size: 0.95rem;
    max-width: 620px;
    margin-bottom: 0;
}


/* ==========================================================================
           4. MOBILE & TABLET RESPONSIVE OVERRIDES (< 992px)
           ========================================================================== */

@media (max-width: 1199px) {
    .resort-header {
        margin-bottom: 2.5rem;
        text-align: center;
        position: absolute;
        left: 0;
        right: 0;
        top: 9%;
        width: 100%;
    }
}

@media (max-width: 991.98px) {
    .pinned-container {
        height: auto;
        padding-top: 3rem;
        padding-bottom: 3rem;
        justify-content: flex-start;
    }
    .resort-header {
        margin-bottom: 1.75rem;
    }
    /* Horizontal Scrollable Tabs */
    .tab-nav {
        flex-direction: row;
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 1.25rem;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid #e2e8f0;
        scrollbar-width: none;
    }
    .tab-nav::-webkit-scrollbar {
        display: none;
    }
    .tab-nav-btn {
        font-size: 16px;
        padding: 0.5rem 0.25rem;
        border-bottom: 2px solid transparent;
        white-space: nowrap;
        flex-shrink: 0;
        /* ðŸ‘ˆ à´‡à´¤àµ à´¨à´¿àµ¼à´¬à´¨àµà´§à´®à´¾à´¯àµà´‚ à´‰à´£àµà´Ÿà´¾à´¯à´¿à´°à´¿à´•àµà´•à´£à´‚ */
    }
    .tab-nav-btn.active {
        transform: none;
        color: var(--color-primary);
        border-bottom-color: var(--color-primary);
    }
    /* Horizontal Scroll Snap Window */
    .resort-window {
        height: auto;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-top: 1rem;
    }
    .resort-window::-webkit-scrollbar {
        display: none;
    }
    .resort-track {
        position: relative;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        flex-direction: row;
        gap: 0;
        width: 100%;
    }
    .resort-item {
        flex: 0 0 100%;
        width: 100%;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        opacity: 1;
        transform: none;
        padding: 0 0.25rem;
    }
    .property-overlay {
        opacity: 1;
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    }
    .resort-header {
        position: inherit;
    }
    .property-card-img-wrapper {
        width: 100%;
        height: auto;
        overflow: hidden;
    }
}

@media (max-width: 991.98px) {
    .tab-nav-btn {
        font-size: 14px;
        padding: 0.5rem 0.25rem;
        border-bottom: 2px solid transparent;
    }
    .tab-nav {
        gap: 1rem;
    }
}

@media (min-width: 991px) and (max-width: 1440px) {
    .resort-item {
        display: flex;
        background-color: #f5f1e8;
        border-radius: 10px;
    }
    .property-card-img-wrapper {
        height: auto;
    }
    .panel-description {
        padding: 18px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .property-card {
        border-radius: 10px;
    }
}


/* Experiences Section */

.experience-main-card {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 86px 38px;
    border-radius: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.experience-main-card p {
    font-size: 18px;
    color: var(--off-white);
    margin-bottom: 38px;
}

.experience-card {
    background-color: var(--color-cream);
    padding: 30px;
    border-radius: 16px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.experience-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--color-cream-dark);
    transform: translateY(-5px);
}

.experience-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5rem;
}

.experience-icon img {
    width: 100%;
    height: auto;
}

.experience-card h4 {
    font-size: clamp(1.25rem, 1rem + 1vw, 1.625rem);
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.experience-card p {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.4;
    margin-bottom: 0;
}


/* Video Section */

.video-section {
    position: relative;
    height: 740px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    width: 100%;
}

.play-button {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
}

.play-button:hover {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.3);
}

.play-button i {
    font-size: 2rem;
    color: var(--color-white);
    margin-left: 5px;
}

.video-section .modal-content {
    background: transparent;
}

.video-section .modal-body video {
    max-height: 80vh;
    object-fit: cover;
}

.video-section .btn-close {
    z-index: 10;
}

.video-modal-blur {
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(5px) !important;
}


/* Offers Section */

.offer-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
}

.offer-card img {
    width: 100%;
    display: block;
    border-radius: 28px;
}

.offer-card a {
    position: absolute;
    bottom: 60px;
    left: 38px;
}


/* Gallery Section (Home) */

.gallery-section {
    background-color: var(--color-white);
    overflow: hidden;
}

.gallery-header {
    text-align: left;
}

.gallery-header .section-label {
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: var(--color-primary);
    margin-bottom: 0.8rem;
}

.gallery-slider-wrapper {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.gallery-slider-wrapper:active {
    cursor: grabbing;
}

.gallery-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

.gallery-slide {
    flex-shrink: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.gallery-slide img {
    width: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.gallery-slide-tall {
    width: 370px;
    align-self: flex-start;
}

.gallery-slide-short {
    width: 370px;
    align-self: flex-end;
    margin-top: 100px;
}


/* Testimonials Section */

.testimonials-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 3%, rgba(255, 237, 212, 0) 29%), url(../images/testimonial-bg-1.jpg) center / cover no-repeat;
    position: relative;
    padding-bottom: 400px;
}

.testimonial-card {
    background: #ffffffc7;
    border-radius: 20px;
    border: 1px solid var(--color-primary);
    padding: 28px;
    height: 100%;
    margin-bottom: 22px;
}

.testimonial-tag {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.3px;
    margin-bottom: 1.2rem;
}

.tag-green {
    background-color: #53a56f;
    color: #ffffff;
}

.tag-blue {
    background-color: #315ba7;
    color: #ffffff;
}

.tag-brown {
    background-color: #8e744c;
    color: #ffffff;
}

.testimonial-card h5 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--color-black);
    font-weight: 400;
    font-family: var(--font-body);
}

.testimonial-card p {
    font-size: 16px;
    color: var(--color-black);
    line-height: 1.65;
    margin-bottom: 14px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 18px;
    color: var(--color-primary);
    font-weight: 500;
}

.element-bg {
    position: absolute;
    bottom: 0;
}

.element-bg-2 {
    position: absolute;
    top: 0;
    z-index: 1;
}

.testimonial-slider-wrapper {
    overflow: hidden;
    position: relative;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.testimonial-slider-wrapper:active {
    cursor: grabbing;
}

.testimonial-slide {
    flex-shrink: 0;
    max-width: 532px;
}

.testimonial-slide .testimonial-card {
    height: auto;
}

.testimonial-track {
    display: flex;
    gap: 24px;
    width: max-content;
    will-change: transform;
}


/* Newsletter Section */

.newsletter-section {
    padding: 60px 0;
    background-color: var(--color-cream);
    color: var(--color-primary);
}

.newsletter-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
    font-weight: 400;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    align-items: center;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 28px;
    border-radius: 50px;
    border: 1px solid var(--color-primary);
    outline: none;
    font-size: 16px;
    background-color: var(--color-white);
    color: var(--color-primary);
}

.newsletter-form input::placeholder {
    color: var(--color-text-light);
}


/* ==========================================================================
   6. PAGE: ABOUT US
   ========================================================================== */


/* Hero Banner */

.hero-banner {
    position: relative;
    width: 100%;
    height: 650px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.experience-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url(../images/experiance-hero-bg.jpg) center/cover no-repeat;
}

.offers-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url(../images/offer-hero-bg.jpg) center/cover no-repeat;
}

.contact-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url(../images/contact-hero-bg.jpg) center/cover no-repeat;
}

.hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-inner-content {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.hero-inner-content h1 {
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: var(--color-white);
}

.hero-inner-content p {
    font-size: 1.05rem;
    color: var(--color-white);
    font-weight: 300;
    max-width: 850px;
    margin: 0 auto;
    opacity: 0.95;
}

.breadcrumb {
    position: absolute;
    bottom: 25px;
    right: 50px;
    z-index: 1;
    color: var(--color-gold);
    font-size: 0.85rem;
}

.breadcrumb a {
    color: var(--color-white);
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    margin: 0 6px;
    opacity: 0.6;
    color: var(--color-white);
}


/* Intro Section */

.intro-section {
    max-width: 1320px;
    margin: 80px auto;
    padding: 0 12px;
    display: flex;
    gap: 50px;
    align-items: center;
}

.intro-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.intro-text {
    flex: 1;
}


/* Philosophy Section */

.philosophy-section {
    max-width: 1320px;
    margin: 0 auto 80px;
    padding: 0 12px;
}

.philosophy-section h2 {
    margin-bottom: 40px;
}

.philosophy-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.philosophy-card {
    background: var(--color-cream);
    border: 1px solid var(--color-primary);
    border-radius: 14px;
    padding: 35px 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.philosophy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.philosophy-card .icon {
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    opacity: 0.7;
}

.philosophy-card h4 {
    margin-bottom: 12px;
    color: var(--color-text);
}


/* Core Values Section */

.core-values-section {
    max-width: 1320px;
    margin: 0 auto 80px;
    padding: 0 24px;
}

.core-values-header {
    text-align: center;
    margin-bottom: 50px;
}

.core-values-header h2 {
    margin-bottom: 12px;
    color: var(--color-text);
}

.core-values-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.core-values-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
}

.core-values-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.core-values-accordions {
    flex: 1;
}

.accordion-item {
    border-bottom: 1px solid #ddd9cf;
    padding: 22px 0;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    background: transparent;
    border: 0;
    outline: none;
    padding: 22px 0;
    text-align: left;
    appearance: none;
    -webkit-appearance: none;
}

.accordion-header h4 {
    font-size: var(--fs-h4);
    color: var(--color-primary);
    font-weight: 500;
    margin: 0;
    flex: 1;
    pointer-events: none;
}

.accordion-toggle-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    margin-left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 24px;
    pointer-events: none;
}

.accordion-toggle-icon::before {
    content: "+";
}

.accordion-item.active .accordion-toggle-icon::before {
    content: "\2212";
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-item.active .accordion-body {
    max-height: 500px;
    padding-top: 14px;
}

.accordion-body p {
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}


/* CTA Section */

.cta-section {
    position: relative;
    width: 100%;
    padding: 350px 30px;
    text-align: center;
    background: url(../images/abt-cta-bottom.jpg) center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 55%);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
}

.cta-content h2 {
    color: var(--color-white);
    margin-bottom: 20px;
}

.cta-divider {
    width: 200px;
    height: 30px;
    margin: 0 auto 25px;
    opacity: 0.7;
}

.cta-content .desc {
    font-size: clamp(1.25rem, 1.1rem + 0.5vw, 1.5rem);
    color: var(--color-white);
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 300;
}

.cta-content .tagline {
    font-family: "Caveat", cursive;
    font-size: var(--fs-h3);
    color: var(--color-gold);
    margin-bottom: 35px;
}

.cta-btn {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: 14px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: background 0.3s, transform 0.3s;
    border: none;
    cursor: pointer;
}

.cta-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}


/* SVG Mountain Edge */

.mountain-edge {
    display: block;
    width: 100%;
    height: 80px;
    margin-bottom: -1px;
}

.mountain-edge svg {
    display: block;
    width: 100%;
    height: 100%;
}


/* ==========================================================================
   7. PAGE: GALLERY
   ========================================================================== */

.gallery-section-space {
    padding: clamp(3.125rem, 2.2rem + 2vw, 4.375rem) 0 clamp(7.5rem, 5rem + 6vw, 12.5rem);
}


/* Resort Selector */

.resort-selector {
    margin-bottom: 70px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.resort-selector select {
    padding: 14px 45px 14px 20px;
    border: 1.5px solid var(--color-primary);
    border-radius: 30px;
    font-size: 16px;
    color: var(--color-text);
    background-color: var(--color-white);
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238e734b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.resort-selector select:focus {
    outline: none;
    border-color: var(--color-primary-dark);
    box-shadow: 0 0 0 0.2rem rgba(142, 115, 75, 0.25);
}


/* Category Filter */

.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 50px;
}

.category-btn {
    padding: 10px 24px;
    border: 1.5px solid var(--color-primary);
    border-radius: 25px;
    background-color: transparent;
    color: var(--color-primary);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.category-btn:hover,
.category-btn.active {
    background-color: var(--color-primary);
    color: var(--color-white);
}


/* Gallery Grid */

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 5/3;
    transition: transform 0.3s ease, opacity 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item.hidden {
    display: none;
}


/* Lightbox */

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 85%;
    max-height: 85%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--color-white);
    font-size: 40px;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--color-gold);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-white);
    font-size: 50px;
    cursor: pointer;
    padding: 20px;
    transition: color 0.3s ease;
    user-select: none;
    z-index: 10000;
}

.lightbox-nav:hover {
    color: var(--color-gold);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-white);
    font-size: 16px;
    letter-spacing: 1px;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-grey);
    font-size: 18px;
    display: none;
}


/* ==========================================================================
   8. PAGE: CONTACT
   ========================================================================== */

.contact-section {
    padding: 100px 0px 200px 0px;
}

.contact-header {
    text-align: center;
    margin-bottom: 80px;
}

.contact-header .section-label {
    margin-bottom: 20px;
}

.contact-header h3 {
    max-width: 1133px;
    margin: 0 auto;
}

.contact-wrapper {
    margin-bottom: 100px;
}

.contact-image-wrapper {
    height: 100%;
    min-height: 600px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-form-section {
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-section .section-label {
    margin-bottom: 10px;
}

.contact-form-section h3 {
    margin-bottom: 15px;
}

.contact-form-section>p {
    margin-bottom: 30px;
    color: var(--text-grey);
}

.form-group {
    margin-bottom: 20px;
}

.form-control-custom {
    width: 100%;
    padding: 14px 20px;
    border: 1.5px solid #d4c4b0;
    border-radius: 15px;
    font-size: 15px;
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-white);
    transition: all 0.3s ease;
}

.form-control-custom:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(142, 115, 75, 0.1);
}

.form-control-custom::placeholder {
    color: #999;
}

select.form-control-custom {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238e734b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    cursor: pointer;
}

textarea.form-control-custom {
    min-height: 120px;
    resize: vertical;
}


/* Contact Info Styles */

.contact-info-section {
    margin-bottom: 80px;
}

.contact-info-col {
    position: relative;
}

.contact-info-col:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background-color: #e0d5c7;
}

.contact-info-item {
    text-align: center;
    padding: 30px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-icon-btm {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    color: var(--color-primary);
}

.contact-icon-btm svg {
    width: 100%;
    height: 100%;
}

.contact-info-item h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--color-text);
}

.contact-info-item p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-grey);
    margin: 0;
}

.contact-info-item a {
    color: var(--text-grey);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--color-primary);
}


/* Map Styles */

.map-section {
    margin-top: 60px;
}

.map-container {
    border-radius: 30px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
    filter: grayscale(100%) contrast(0.9) brightness(1.1);
}


/* ==========================================================================
   9. PAGE: EXPERIENCES
   ========================================================================== */

.exp-list {
    list-style: inside;
    padding: 0;
    margin: 0;
}

.exp-list li {
    margin-bottom: 8px;
}

.exp-list-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.exp-section {
    position: relative;
}

.exp-img-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.exp-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.exp-card {
    background: #fff;
    border-radius: 16px;
    padding: clamp(30px, 6vw, 90px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}

.exp-card h3 {
    color: var(--color-text);
}

.exp-card-left {
    margin-right: -30px;
}

.exp-card-right {
    margin-left: -30px;
}


/* Mountain Background */

.mountain-bg {
    position: relative;
    overflow: visible;
}

.mountain-bg::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    top: -154px;
    bottom: 111px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 3%, rgba(255, 237, 212, 0) 29%), url(../images/exp-bg.png) center bottom / cover no-repeat;
}


/* Experience Gallery Section */

.img-gallery {
    padding-bottom: clamp(80px, 18vw, 250px);
}

.img-gallery-item {
    overflow: hidden;
    aspect-ratio: 5 / 5;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.03);
}

.exp-section .row:nth-child(odd) .exp-card {
    margin-left: -150px;
}

.exp-section .row:nth-child(even) .exp-card {
    margin-right: -150px;
}


/* ==========================================================================
   10. PAGE: OFFERS
   ========================================================================== */

.offer-resort-select-wrapper {
    max-width: 520px;
    margin: 0 auto 60px;
}

.offer-resort-select {
    width: 100%;
    padding: 14px 40px 14px 20px;
    border: 1.5px solid #c5c0b8;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-grey);
    background-color: var(--color-white);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234c4c4c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s ease;
}

.resort-select:focus {
    border-color: var(--color-primary);
}

.resort-select option {
    padding: 10px;
}


/* Package Cards */

.package-col {
    margin-bottom: 54px;
    transition: all 0.4s ease;
}

.package-col.hidden {
    display: none !important;
}

.package-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card-img-wrapper {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 16 / 10;
}

.package-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.package-card:hover .package-card-img-wrapper img {
    transform: scale(1.03);
}

.package-card-title {
    font-family: var(--font-heading);
    font-size: var(--fs-h5);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.package-card-text {
    flex-grow: 1;
}

.package-card .btn-outline-custom {
    padding: 9px 26px;
    font-size: 13.5px;
}


/* No Results & Filter Info */

.no-results {
    text-align: center;
    padding: 80px 20px;
    display: none;
    width: 100%;
}

.no-results.show {
    display: block;
}

.no-results h3 {
    font-family: var(--font-heading);
    color: var(--color-text);
    margin-bottom: 12px;
}

.no-results p {
    color: var(--text-grey);
}

.filter-info {
    text-align: center;
    margin-bottom: 40px;
    font-size: 15px;
    color: var(--text-grey);
    display: none;
}

.filter-info.show {
    display: block;
}

.filter-info strong {
    color: var(--color-primary);
}


/* ==========================================================================
   11. FOOTER
   ========================================================================== */

.footer {
    background-color: var(--color-cream);
    color: var(--color-primary);
}

.footer-main-row {
    padding: 60px 0px;
    border-top: 1px solid #d5cec3;
}

.footer-col {
    margin-bottom: 30px;
}

.footer-logo-img {
    margin-bottom: 24px;
    display: flex;
}

.footer-logo-img img {
    max-width: 223px;
}

.footer h5 {
    font-family: var(--font-body);
}

.footer-brand-text {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 2.6rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 2px;
    letter-spacing: 1px;
}

.footer-tagline {
    font-size: 0.6rem;
    letter-spacing: 3.5px;
    margin-bottom: 3px;
    text-transform: uppercase;
    font-weight: 500;
}

.footer-subtag {
    font-size: 0.75rem;
    font-style: italic;
    margin-bottom: 18px;
}

.footer-address {
    font-size: 16px;
    text-align: left;
}

.footer-address strong {
    font-weight: 500;
    display: block;
    margin-bottom: 3px;
    font-size: 20px;
}

.footer-heading {
    font-weight: 500;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 46px;
    height: 1px;
    background-color: var(--color-primary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 7px;
}

.footer-links a {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #6b5a45;
    opacity: 1;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 7px;
    font-size: 16px;
    color: var(--color-primary);
}

.footer-contact-list i {
    font-size: 22px;
}

.contact-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.8;
}

.footer-contact-list a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}

.footer-contact-list a:hover {
    color: var(--primary-color);
}

.footer-social a {
    text-decoration: none;
}

.footer-follow {
    margin-top: 5px;
}

.footer-follow span {
    font-size: 16px;
    display: block;
    margin-bottom: 10px;
}

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-social a:hover {
    opacity: 0.7;
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-social i {
    font-size: 22px;
}

.footer-bottom {
    padding: 28px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    border-top: 1px solid #d5cec3;
}

.footer-bottom p {
    font-size: 16px;
    margin: 0;
    color: var(--color-primary);
}

.footer-bottom a:hover {
    text-decoration: underline !important;
}

.footer-divider {
    margin: 0 10px;
    color: var(--color-primary);
    opacity: 0.5;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-legal a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hidden-input-field {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
    pointer-events: none;
    border: 0;
    padding: 0;
    margin: 0;
}

.newsletter-input-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.newsletterEmailError {
    flex-basis: 100%;
    width: 100%;
    color: #dc3545 !important;
    font-size: 14px;
    line-height: 1.4;
    margin-top: 8px;
    display: none;
}

#newsletterEmail.is-invalid {
    border-color: #dc3545 !important;
}

#newsletterSubmit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}


/* ==========================================================================
   12. GLOBAL OVERFLOW FIXES
   ========================================================================== */

html,
body {
    overflow-x: hidden !important;
    max-width: 100vw;
}

.welcome-section,
.welcome-card-wrapper {
    overflow: hidden;
    position: relative;
}

section {
    max-width: 100vw;
    overflow-x: hidden;
}

.gallery-slider-wrapper,
.testimonial-slider-wrapper {
    max-width: 100vw;
    overflow: hidden;
}

.hero-section {
    max-width: 100vw;
    overflow: hidden;
}

.book-modal-overlay {
    max-width: 100vw;
}


/* ==========================================================================
   13. RESPONSIVE STYLES
   ========================================================================== */


/* Large Desktops */

@media (max-width: 1399px) {
    .welcome-img-left {
        left: -46%;
    }
    .welcome-img-right {
        right: -46%;
    }
    .welcome-img-left,
    .welcome-img-right {
        max-width: 327px;
    }
    .mega-image img {
        height: auto;
    }
    .mega-resort-list a {
        font-size: 20px;
    }
    .mega-content h3 {
        font-size: var(--fs-h4);
        margin-bottom: 1rem;
    }
}


/* Laptops / Small Desktops */

@media (max-width: 1199px) {
    .mb-180 {
        margin-bottom: 140px;
    }
    .nav-link {
        font-size: 14px;
        margin: 0 12px;
    }
    .welcome-img-left,
    .welcome-img-right {
        position: relative;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: 300px;
        margin: 0 auto;
    }
    .welcome-card {
        padding: 60px 30px !important;
        min-height: auto;
        flex-direction: column;
        gap: 30px;
        max-width: 88%;
    }
    .footer-bottom {
        justify-content: center;
    }
    .mountain-bg::before {
        top: -66px;
        bottom: 111px;
    }
    .img-height {
        height: 450px;
    }
    .exp-section .row:nth-child(odd) .exp-card {
        margin-left: 0px;
    }
    .exp-section .row:nth-child(even) .exp-card {
        margin-right: 0px;
    }
    .exp-img-wrapper {
        border-top-left-radius: 16px;
        border-top-right-radius: 16px;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
    }
    .exp-card {
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
    }
}


/* Tablets (Landscape) & Small Laptops */

@media (max-width: 991px) {
    .mb-180 {
        margin-bottom: 100px;
    }
    .nav-link {
        padding-bottom: 0px;
        margin-bottom: 10px;
        display: inline-block;
    }
    .nav-link {
        font-size: 16px;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .welcome-card {
        padding: 60px 180px;
        min-height: 420px;
    }
    .welcome-img-left,
    .welcome-img-right {
        width: 180px;
    }
    .welcome-img-left img,
    .welcome-img-right img {
        height: 280px;
    }
    .welcome-img-left {
        left: -30px;
    }
    .welcome-img-right {
        right: -30px;
    }
    .welcome-content h2 {
        font-size: 2.5rem;
    }
    .experience-main-card {
        margin-bottom: 20px;
    }
    .resort-content p {
        margin-bottom: 22px;
    }
    .resort-content .subtitle {
        margin-bottom: 18px;
    }
    .resort-content-mt {
        margin-top: 26px;
    }
    .resort-img-mt {
        margin-top: 10px;
    }
    .gallery-slide-tall,
    .gallery-slide-short {
        width: 300px;
    }
    .testimonials-section {
        padding-bottom: 135px !important;
    }
    .footer-logo-area {
        padding-right: 0;
        margin-bottom: 10px;
    }
    .footer-main-row {
        --bs-gutter-x: 1.5rem;
    }
    /* Merged from 992px */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-image-wrapper {
        min-height: 400px;
        margin-bottom: 30px;
    }
    .contact-info-col:not(:last-child)::after {
        display: none;
    }
    .exp-card-left,
    .exp-card-right {
        margin: 20px 0 0 0;
    }
    .img-height {
        height: 350px;
    }
    .hero-title {
        font-size: 1.8rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .mountain-bg::before {
        top: -66px;
        bottom: 111px;
    }
    /* mobile menu and megamenu css here */
    .mega-menu {
        position: relative;
        z-index: 9999;
        left: auto;
        top: auto;
        width: 100%;
        transform: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        padding: 0;
        display: none;
    }
    .mega-dropdown.show .mega-menu {
        display: block;
    }
    .mega-image,
    .mega-content {
        display: none;
    }
    .mega-resort-list li {
        margin: 0;
    }
    .mega-resort-list a {
        display: block;
        padding: 12px 20px;
        font-size: 16px;
        color: var(--color-primary);
        font-family: var(--font-body);
        position: relative;
        z-index: 10000;
        pointer-events: auto;
    }
    .mega-resort-list a::after {
        display: none;
    }
    .nav-link {
        font-size: 16px !important;
    }
}


/* Tablets (Portrait) */

@media (max-width: 900px) {
    .intro-section {
        flex-direction: column;
    }
    .intro-image img {
        height: 100%;
    }
    .philosophy-cards {
        grid-template-columns: 1fr;
    }
    .core-values-content {
        flex-direction: column;
    }
    .core-values-image img {
        height: 350px;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
}


/* Mobile Devices (Large) */

@media (max-width: 767px) {
    .mb-180 {
        margin-bottom: 70px;
    }
    .section-space {
        padding-bottom: 62px;
        padding-top: 62px;
    }
    .section-space-bottom {
        padding-bottom: 62px;
    }
    .welcome-card {
        max-width: 100%;
        padding: 40px 20px !important;
        min-height: auto;
        flex-direction: column;
        gap: 30px;
    }
    .welcome-section {
        padding: 40px 0 0 0;
    }
    .welcome-img-left,
    .welcome-img-right {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 300px;
    }
    .welcome-img-left img,
    .welcome-img-right img {
        height: 220px;
    }
    .welcome-content h2 {
        font-size: 2.2rem;
    }
    .experience-main-card p {
        font-size: 16px;
    }
    .experience-main-card h3 {
        margin-bottom: 15px;
    }
    .experience-main-card {
        padding: 40px 20px;
    }
    .experience-main-card p {
        margin-bottom: 27px;
    }
    .experience-main-card {
        margin-bottom: 0px;
    }
    .experience-card {
        padding: 20px;
    }
    .offer-card a {
        position: absolute;
        bottom: 40px;
        left: 30px;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content {
        padding-bottom: 50px;
    }
    .navbar .navbar-brand img {
        max-width: 110px;
    }
    .resort-tabs {
        gap: 20px;
    }
    .resort-tab {
        padding-bottom: 6px;
        margin-bottom: -3px;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .testimonial-slide {
        width: 300px;
    }
    .testimonial-slider-wrapper::before,
    .testimonial-slider-wrapper::after {
        width: 40px;
    }
    .gallery-slide-tall,
    .gallery-slide-short {
        width: 260px;
    }
    .gallery-slide-short {
        margin-top: 20px;
    }
    /* mega-menu-css */
    .mega-menu-dropdown {
        min-width: 320px;
        padding: 12px;
    }
    .mega-menu-item img {
        height: 70px;
    }
    .mega-menu-item span {
        font-size: 0.7rem;
    }
    .book-modal {
        padding: 30px 20px;
    }
    .book-modal h3 {
        font-size: 1.4rem;
    }
    .book-modal-item img {
        height: 160px;
    }
    .testimonial-slide {
        max-width: 100%;
        width: 85vw;
    }
    .testimonial-slide .testimonial-card-offset {
        display: none !important;
    }
    .testimonial-card {
        margin-bottom: 0;
    }
    /* Merged from 768px */
    .contact-form-section {
        padding: 30px 20px;
    }
    .contact-header {
        margin-bottom: 50px;
    }
    .contact-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .contact-image-wrapper {
        min-height: 300px;
    }
    .contact-info-item {
        border-bottom: 1px solid #e0d5c7;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
    .contact-info-col:last-child .contact-info-item {
        border-bottom: none;
        margin-bottom: 0;
    }
    /* Merged from Experience page 767px */
    .hero-section {
        padding: 50px 0 40px;
    }
    .hero-title {
        font-size: 1.5rem;
    }
    .video-section {
        position: relative;
        height: 500px;
    }
    .exp-section {
        padding: 20px 0;
    }
    .exp-card {
        padding: 30px 25px;
    }
    .img-height {
        height: 280px;
    }
    .newsletter-form input {
        width: 100%;
    }
    .newsletter-form .btn-custom {
        width: 100%;
        text-align: center;
    }
    .footer-logo-img img {
        max-width: 120px;
    }
    .mountain-bg::before {
        content: none;
    }
}


/* Mobile Devices (Small) */

@media (max-width: 600px) {
    .book-modal-item img {
        height: 140px;
    }
    .book-modal-overlay {
        height: auto;
    }
    .book-modal-grid {
        flex-direction: column;
        gap: 15px;
    }
    .hero-banner {
        height: 380px;
    }
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .breadcrumb {
        right: 20px;
        bottom: 15px;
    }
    .intro-section {
        margin: 50px auto;
    }
    .cta-section {
        padding: 80px 20px;
    }
    .video-section {
        position: relative;
        height: 400px;
    }
    .offer-card a {
        position: absolute;
        bottom: 20px;
        left: 22px;
    }
    .section-label {
        font-size: 14px;
    }
    h2 {
        line-height: 1.4;
    }
    .hero-content p {
        font-size: 16px;
    }
    .btn-custom {
        padding: 10px 26px;
        font-size: 15px;
    }
    .subhead {
        margin-bottom: 1.8rem;
    }
}


/* Mobile Devices (Extra Small) */

@media (max-width: 575px) {
    .mb-180 {
        margin-bottom: 50px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
    .category-filter {
        gap: 8px;
    }
    .category-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    .lightbox-nav {
        font-size: 35px;
        padding: 10px;
    }
    .lightbox-prev {
        left: 5px;
    }
    .lightbox-next {
        right: 5px;
    }
    .img-height {
        height: 240px;
    }
    .exp-card {
        padding: 25px 20px;
    }
    .experience-main-card {
        padding: 30px 20px;
    }
    .experience-icon {
        margin-bottom: 2rem;
    }
}
