/* Global Expansion Styles for Guhantara */

:root {
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --ivory-white: #fffeef;
    --gold-brand: #c9a63c;
    --earth-tone: #85733c;
    --deep-bg: #2E2318;
    --charcoal-light: #494747;
    --header-bg-scroll: rgba(46, 35, 24, 0.9);
    /* Transparent Brown */
}

/* Global Button Styling - Border Radius */
button,
.btn-premium,
.btn-solid-moss,
.btn-outline-modern,
[class*="btn-"] {
    border-radius: 50px !important;
}




/* Day Out Popup - Reuse Room Popup Styles */
.DayOutPopup-wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInBlur 0.6s ease-out forwards;
}

.DayOutPopup-wrapper.exit {
    animation: fadeOutBlur 0.6s ease-out forwards;
}

.DayOutPopup-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 95%;
    max-width: 1200px;
    height: auto;
    max-height: 90vh;
    overflow-y: auto;
    background: rgb(242, 242, 242);
    padding: 30px;
    flex-wrap: wrap;
    overflow-x: hidden;
    border-radius: 20px;
    position: relative;
}

.DayOutPopup-container::-webkit-scrollbar {
    width: 8px;
    height: 12px;
}

.DayOutPopup-container::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #f1f1f1, #e0e0e0);
    border-radius: 10px;
}

.DayOutPopup-container::-webkit-scrollbar-thumb {
    background: rgb(100, 100, 100);
    border-radius: 10px;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.DayOutPopup-container::-webkit-scrollbar-thumb:hover {
    background: rgb(45, 45, 45);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.dayoutpopup-close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    border: 2px solid var(--gold-brand);
    width: 40px;
    height: 40px;
    font-size: 20px;
    background: var(--deep-bg);
    color: var(--gold-brand);
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.dayoutpopup-close-button:hover {
    background: var(--gold-brand);
    color: var(--deep-bg);
    transform: rotate(90deg);
}

.DayOutPopup-Content {
    padding: 20px;
    flex: 1;
}

.DayOutPopup-Content-h1 {
    font-family: 'Poiret One', sans-serif;
    font-weight: 300;
    font-size: var(--fs-page-h1);
    line-height: 1;
}

.DayOutPopup-Content-p {
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 15px;
    margin-top: 3%;
    width: 100%;
    max-width: 430px;
    color: rgb(33, 33, 33);
    font-weight: 600;
    margin-bottom: 3%;
}

.DayOutPopup-Collage {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.DayOutPopup-features-list li {
    font-size: 0.95rem;
    color: rgb(33, 33, 33);
    margin-bottom: 8px;
}

.DayOutPopup-features-list li i {
    color: var(--gold-brand);
    margin-right: 8px;
}

.dayout-pop-swiper {
    display: none;
}

@media (max-width: 900px) {
    .dayoutpopup-close-button {
        width: 35px;
        height: 35px;
        top: 10px;
        right: 10px;
        left: auto;
    }

    .DayOutPopup-Collage {
        display: none;
    }

    .dayout-pop-swiper {
        display: block;
        width: 100%;
        margin-top: 20px;
        position: relative;
        overflow: hidden;
    }

    .dayout-pop-card__content {
        width: 100%;
        height: 350px;
        overflow: hidden;
        border-radius: 15px;
        position: relative;
    }

    .dayout-swiper-img {
        width: 100%;
        height: 300px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .DayOutPopup-container {
        width: 95% !important;
        max-height: 90vh !important;
        padding: 15px !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        display: block !important;
        /* Change from flex to block to ensure vertical stacking */
    }

    .DayOutPopup-Content {
        padding: 5px !important;
        width: 100% !important;
        flex: none !important;
        box-sizing: border-box !important;
    }

    .DayOutPopup-Content-h1 {
        font-size: var(--fs-page-h1) !important;
        margin-top: 5px !important;
    }

    .DayOutPopup-Content-p {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 0.9rem !important;
        margin-bottom: 20px !important;
    }

    .dayout-pop-swiper {
        display: block !important;
        width: 100% !important;
        margin: 20px 0 !important;
        position: relative !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    .dayout-pop-card__content {
        width: 100% !important;
        height: 250px !important;
        /* Smaller height for mobile */
    }

    .dayout-swiper-img {
        width: 100% !important;
        height: 250px !important;
        object-fit: cover !important;
    }
}

/* Scroll Header Style */
.header-scrolled {
    background-color: var(--header-bg-scroll);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    padding-bottom: 20px;
    /* Give some breathing room */
}

/* Theme Utilities */
.theme-deep {
    background-color: var(--deep-bg);
    color: var(--ivory-white);
}

.theme-gold {
    background-color: var(--gold-brand);
    color: var(--deep-bg);
}

.theme-gold .text-gold {
    color: #fff;
}

.theme-ivory {
    background-color: var(--ivory-white);
    color: var(--deep-bg);
}

.theme-ivory .text-gold {
    color: var(--gold-brand);
}

.theme-ivory .glass-card {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
    color: inherit;
}

.theme-earth {
    background-color: var(--earth-tone);
    color: var(--ivory-white);
}

.theme-charcoal {
    background-color: var(--charcoal-light);
    color: var(--ivory-white);
}

/* Link resets */
a[href^="tel"],
.hero-phone-number,
.Footer-phone {
    color: white !important;
    text-decoration: none !important;
}

.expansion-page {
    background-color: var(--ivory-white);
    color: var(--deep-bg);
    overflow-x: hidden;
    min-height: 100vh;
}

main {
    padding-top: 0;
}

/* --- Unified Expansion Header --- */
.expansion-nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    z-index: 1000;
    background: transparent;
    border-bottom: none;
}

.logo {
    display: flex;
    flex-direction: row;
    gap: 15px;
    position: fixed;
    top: 30px;
    /* Match index page */
    left: 30px;
    /* Match index page */
    width: auto;
    padding: 0;
    display: flex;
    align-items: center;
    z-index: 1001;
    transition: all 0.5s ease-in-out !important;
    background: transparent;
    /* Revert to transparent */
    padding: 10px 25px;
    border-radius: 50px;
}

/* Add dynamic background on scroll */
.logo.header-scrolled {
    background: var(--deep-bg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    padding: 15px 50px;
    /* Padding for full bar look */
    width: 100% !important;
    /* Full width */
    top: 0;
    left: 0;
    border-radius: 0;
    /* Square edges */
    height: 90px;
    /* Consistent height */
}

/* Override Hero.css hidden default state for static pages */
.Logo-Img-HEro {
    opacity: 1 !important;
    display: block !important;
}

#logoImg {
    display: none !important;
    /* Hide secondary logo on static pages */
}

#resortName {
    opacity: 1 !important;
    display: block !important;
}

.logo .Logo-Img-HEro,
.logo .ResortName-logo {
    position: relative;
}

.Hero-Resort-names-Logo {
    display: flex;
    align-items: center;
}

.ResortName-logo {
    font-family: 'Quicksand', sans-serif;
    color: #fff5dc;
    font-size: 2rem;
    /* Reduced from 2.5rem */
    font-weight: 400;
}

.Logo-Img-HEro {
    height: 55px;
    /* Reduced from 70px */
}

.menuicon-wrapper {
    position: fixed;
    top: 30px;
    /* Match index page */
    right: 20px;
    /* Match index page */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
    z-index: 1002;
    transition: all 0.4s ease;
}

.hero-phone-number {
    transition: opacity 0.3s ease;
}

/* Hide number when menu checkbox is checked */
.menuicon-wrapper:has(#menu-toggle:checked) .hero-phone-number {
    opacity: 0;
    pointer-events: none;
}

/* Adjust position on scroll if needed */
.header-scrolled+.menuicon-wrapper {
    top: 15px;
}

.hero-phone-number a {
    text-decoration: none;
    color: white;
    font-family: 'Quicksand', sans-serif;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.menuicon {
    width: 50px;
    height: 50px;
    cursor: pointer;
    background-color: var(--deep-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    z-index: 1001;
}

.Hero-Hamburger-logo-hamburger svg {
    height: 3em;
    margin-top: 5px;
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.Hero-Hamburger-logo-line {
    fill: none;
    stroke: var(--gold-brand);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.Hero-Hamburger-logo-line-top-bottom {
    stroke-dasharray: 12 63;
}

.Hero-Hamburger-logo-hamburger input:checked+svg {
    transform: rotate(-45deg);
}

.Hero-Hamburger-logo-hamburger input:checked+svg .Hero-Hamburger-logo-line-top-bottom {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42;
}

.menu {
    position: fixed;
    top: 30px;
    /* Match index page */
    right: -1000px;
    display: flex;
    flex-direction: row;
    z-index: 1010;
    background-color: var(--deep-bg);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);

}

.menu ul {
    list-style-type: none;
    display: flex;
    padding: 0 30px;
    gap: 20px;
    width: fit-content;
}

.menu ul li {
    margin: 13px 0;
}

.menu ul li a {
    color: var(--ivory-white);
    font-family: 'Quicksand', sans-serif;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: 0.3s;
    cursor: pointer;
    display: block;
    transform: translateX(-100%);
    animation: slideIn 0.5s ease forwards;
}

.menu ul li:nth-child(1) a {
    animation-delay: 0.1s;
}

.menu ul li:nth-child(2) a {
    animation-delay: 0.2s;
}

.menu ul li:nth-child(3) a {
    animation-delay: 0.3s;
}

.menu ul li:nth-child(4) a {
    animation-delay: 0.4s;
}

.menu ul li:nth-child(5) a {
    animation-delay: 0.5s;
}

.menu ul li:nth-child(6) a {
    animation-delay: 0.6s;
}


.menu ul li a:hover,
.menu ul li a.active {
    color: var(--gold-brand);
    cursor: pointer;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* --- Premium Contact Icons --- */
.pillar-icon-outer-contact {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.pillar-icon-contact {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

.service-card-flat:hover .pillar-icon-outer-contact {
    transform: scale(1.1) rotate(5deg);
}

/* Premium Hero Refinement */
.hero-mini-refined {
    height: 60vh;
    margin-top: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-mini-refined h1 {
    font-size: var(--fs-hero-h1);
    letter-spacing: 0.2rem;
    z-index: 2;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    color: var(--ivory-white);
}

.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(46, 35, 24, 0.4), var(--deep-bg));
    z-index: 1;
}

/* Glassmorphic Sections */
.section-premium {
    padding: 8vw 10vw;
    position: relative;
    overflow: visible;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 2vw;
    padding: 3vw;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-brand);
    background: rgba(255, 255, 255, 0.05);
}

/* Typography Enhancements */
.text-gold {
    color: var(--gold-brand);
}

.text-ivory {
    color: var(--ivory-white);
}

.text-shadow-sm {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Buttons - Standardized to match Accommodation 'Book-your-stay-btn' */
.btn-premium {
    margin-top: 20px;
    font-family: 'Montserrat', sans-serif;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    font-size: 15px;
    background-color: var(--dark-color);
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: none;
    text-transform: none;
    letter-spacing: normal;
}

.btn-premium:hover {
    background-color: var(--lightt-color);
    color: white;
    border: none;
    transform: none;
    /* Removed transform to match exact styles */
    box-shadow: none;
}

/* Alternating Layouts */
.split-section {
    display: flex;
    align-items: center;
    gap: 4vw;
    overflow: visible;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

@media (max-width: 900px) {
    .split-section {
        flex-direction: column !important;
    }

    .section-premium {
        padding: 15vw 5vw;
    }
}

/* --- Anti-Gravity Activity Section REFINED --- */
.activity-grid-floating {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
    justify-items: center;
    /* Surgical alignment */
}

.activity-pill-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 60px;
    /* More defined pill shape */
    padding: 18px 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    color: var(--ivory-white);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: float-subtle 6s ease-in-out infinite;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 300px;
    /* Consistent card width */
    position: relative;
}

.activity-pill-card:nth-child(even) {
    animation-delay: 1s;
    animation-duration: 7s;
}

.activity-pill-card:nth-child(3n) {
    animation-delay: 2s;
    animation-duration: 8s;
}

.activity-pill-card:hover {
    transform: translateY(-15px) scale(1.03) !important;
    background: rgba(201, 166, 60, 0.2);
    border-color: var(--gold-brand);
    box-shadow: 0 20px 40px rgba(201, 166, 60, 0.25);
    color: #fff;
    z-index: 10;
}

.activity-icon-box {
    width: 45px;
    height: 45px;
    background: rgba(201, 166, 60, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--gold-brand);
    transition: 0.4s;
    flex-shrink: 0;
}

.activity-pill-card:hover .activity-icon-box {
    background: var(--gold-brand);
    color: var(--deep-bg);
    transform: rotate(15deg);
}

.activity-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes float-subtle {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.activity-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--ivory-white);
    padding: 10px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: 0.4s;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gold-brand);
    color: var(--deep-bg);
    border-color: var(--gold-brand);
    transform: scale(1.05);
}

/* --- Grid & Card Layouts --- */
/* --- Signature Boutique Pillars (V2) --- */
.service-grid-premium {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 80px;
    flex-wrap: wrap;
}

/* Standardized Card Style matching Accommodation Components */
/* Standardized Card Style matching Accommodation Components */
.service-card-flat {
    background: #ffffff;
    background-size: cover !important;
    background-position: center !important;
    border: none;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    color: white;
    /* Default text color for image cards */
    width: auto;
    /* Allow Swiper to control width */
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Center content vertically */
    min-height: 400px;
    margin: 0 auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    /* Ensure readability */
}

/* Contact Card - Light Mode Modifier */
.service-card-flat.card-contact {
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    /* Stronger shadow for depth */
    border: 1px solid rgba(201, 166, 60, 0.2);
    /* Subtle gold border */
    border-top: 5px solid var(--gold-brand);
    /* Premium accent */
    text-shadow: none !important;
    color: var(--deep-bg);
    padding: 30px 20px;
    /* Ensure breathing room */
    width: 350px;
    max-width: 90vw;
    /* Prevent overflow on mobile */
    flex: 0 0 auto;
    /* Prevent flexing/shrinking */
}

.service-card-flat.card-contact::before {
    display: none !important;
    /* Remove dark overlay */
}

.service-card-flat.card-contact h3 {
    color: var(--deep-bg) !important;
    text-shadow: none !important;
}

.service-card-flat.card-contact p {
    color: #555 !important;
    text-shadow: none !important;
}

.service-card-flat.card-contact:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Dark Overlay for Image Cards */
.service-card-flat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
    z-index: 0;
    transition: all 0.4s ease;
}

.service-card-flat:hover::before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
}

.service-card-flat>* {
    position: relative;
    z-index: 1;
}

/* Gold Pill Tag */
.card-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--lightt-color);
    color: var(--deep-bg);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

/* Gold Arrow Icon (simulated valid for swiper next/prev or separate icon) */
.card-arrow-icon {
    position: absolute;
    right: -20px;
    /* Hidden initially or positioned */
    top: 50%;
    color: var(--lightt-color);
    font-size: 2rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.service-card-flat:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.service-card-flat:hover::before {
    width: 100%;
    left: 0;
    opacity: 1;
}

.service-card-flat.active {
    background: #ffffff;
    border-color: rgba(201, 166, 60, 0.4);
}

.pillar-icon-outer {
    width: 110px;
    height: 110px;
    margin-bottom: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-icon-container {
    font-size: 3rem;
    z-index: 2;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
    transition: 0.6s ease;
}

.pillar-icon-outer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px dashed rgba(201, 166, 60, 0.4);
    border-radius: 50%;
    animation: spin-slow 15s linear infinite;
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.service-card-flat:hover .pillar-icon-container {
    transform: scale(1.1) rotate(5deg);
}

.service-card-flat h3 {
    font-family: 'Poiret One', sans-serif;
    font-size: 2rem;
    color: var(--deep-bg);
    margin-bottom: 15px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1.4;
    margin-top: 20px;
}

.pillar-divider {
    width: 40px;
    height: 2px;
    background: var(--gold-brand);
    margin: 0 auto 25px;
    opacity: 0.3;
    transition: 0.6s;
}

.service-card-flat:hover .pillar-divider {
    width: 80px;
    opacity: 1;
}

.service-card-flat p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 35px;
    font-weight: 400;
}

.pillar-link {
    color: var(--gold-brand);
    font-size: 0.8rem;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 8px;
    transition: 0.4s;
}

.pillar-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gold-brand);
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateX(-50%);
}

.pillar-link:hover {
    letter-spacing: 6px;
}

.pillar-link:hover::after {
    width: 100%;
}

/* --- Leadership Section Premium Refined (V5) --- */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    margin-top: 80px;
}

.leadership-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.leadership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 166, 60, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.leadership-card:hover {
    transform: translateY(-15px);
    border-color: var(--gold-brand);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.leadership-card:hover::before {
    opacity: 1;
}

.leadership-img-wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto 40px;
    border-radius: 50%;
    padding: 10px;
    border: 2px dashed rgba(201, 166, 60, 0.3);
    position: relative;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.leadership-img-wrapper::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 1px solid var(--gold-brand);
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease;
}

.leadership-card:hover .leadership-img-wrapper {
    border-color: var(--gold-brand);
    transform: rotate(10deg);
}

.leadership-card:hover .leadership-img-wrapper::after {
    opacity: 0.5;
    transform: scale(1.1);
}

.leadership-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #000;
    filter: grayscale(10%) contrast(1.1);
    transition: all 0.6s ease;
    border: 4px solid rgba(255, 255, 255, 0.05);
}

.leadership-card:hover .leadership-img {
    filter: grayscale(0%) brightness(1.1);
    transform: scale(1.05) rotate(-10deg);
}

.leadership-info {
    position: relative;
    z-index: 2;
}

.leadership-info h3 {
    font-family: 'Poiret One', sans-serif;
    font-size: var(--fs-page-h1);
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.leadership-role {
    color: var(--gold-brand);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 25px;
    display: inline-block;
    border-bottom: 1px solid rgba(201, 166, 60, 0.3);
    padding-bottom: 5px;
}

.leadership-bio {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 400;
}

/* --- Accordion Styles --- */
.accordion-item {
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.theme-deep .accordion-item {
    border-color: rgba(255, 255, 255, 0.1);
}

.accordion-header {
    background: rgba(0, 0, 0, 0.03);
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.theme-deep .accordion-header {
    background: rgba(255, 255, 255, 0.05);
}

.accordion-content {
    background: transparent;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease-out;
}

.accordion-item.active .accordion-content {
    padding: 20px;
    max-height: 500px;
}

/* --- Testimonial Slider --- */
.testimonial-slider-container {
    overflow: visible;
    /* Allow buttons to hang out */
    position: relative;
    width: 100%;
    max-width: 600px;
    /* Constrain width */
    margin: 30px auto 0;
    padding: 0;
    /* Space for buttons */
    box-sizing: border-box;
    /* Ensure padding doesn't overflow width */
}

.testimonial-mask {
    overflow: hidden;
    width: 100%;
    position: relative;
    border-radius: 20px;
    /* Optional: Keep rounded corners on the slider content */
}

.testimonial-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.testimonial-slide {
    flex: 0 0 100%;
    padding: 10px;
    box-sizing: border-box;
}

.testimonial-card-v2 {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--gold-brand);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(201, 166, 60, 0.5);
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.testimonial-user img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-brand);
}

/* --- Newsletter Section --- */
.newsletter-section {
    padding: 6vw 10vw;
    text-align: center;
}

.newsletter-box {
    max-width: 600px;
    margin: 40px auto 0;
    display: flex;
    gap: 10px;
}

.newsletter-box input {
    flex: 1;
    padding: 15px 25px;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    outline: none;
}

/* --- Luxury Expanding Slider --- */
.lux-expanding-slider {
    display: flex;
    width: 100%;
    height: 550px;
    gap: 15px;
    margin-top: 50px;
}

.lux-slider-item {
    position: relative;
    flex: 1;
    height: 100%;
    border-radius: 40px;
    overflow: hidden;
    cursor: pointer;
    transition: all 1.0s cubic-bezier(0.25, 1, 0.2, 1);
    background: var(--deep-bg);
    border: 1px solid var(--glass-border);
}

.lux-slider-item.active {
    flex: 5;
    border-color: var(--gold-brand);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.lux-slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: transform 1.5s ease, filter 1.0s ease;
}

.lux-slider-item:hover .lux-slider-img {
    transform: scale(1.05);
}

.lux-slider-item.active .lux-slider-img {
    filter: brightness(0.8);
}

.lux-slider-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(46, 35, 24, 0.9), transparent);
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.3s;
    z-index: 5;
}

.lux-slider-item.active .lux-slider-overlay {
    opacity: 1;
    transform: translateY(0);
}

.lux-slider-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold-brand);
    transition: all 0.5s ease;
    z-index: 2;
    pointer-events: none;
}

.lux-slider-item.active .lux-slider-label {
    opacity: 0;
}

@media (max-width: 900px) {
    .lux-expanding-slider {
        flex-direction: column;
        height: auto;
    }

    .lux-slider-item {
        height: 120px;
        flex: none !important;
    }

    .lux-slider-item.active {
        height: 400px;
    }

    .lux-slider-label {
        transform: translate(-50%, -50%);
    }
}

/* --- Premium Amenity Cards --- */
.amenity-lux-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.amenity-lux-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    padding: 40px 30px;
    border-radius: 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.amenity-lux-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(201, 166, 60, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.amenity-lux-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-brand);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.amenity-lux-card:hover::before {
    opacity: 1;
}

.amenity-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(201, 166, 60, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--gold-brand);
    transition: all 0.5s ease;
}

.amenity-lux-card:hover .amenity-icon-wrapper {
    background: var(--gold-brand);
    color: #fff;
    transform: rotate(10deg);
}

.amenity-lux-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.amenity-lux-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.7;
}

/* --- 3D Coverflow Carousel --- */
.coverflow-section {
    padding: 100px 0;
    overflow: hidden;
    perspective: 1500px;
    background: var(--deep-bg);
}

.coverflow-container {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

.coverflow-item {
    position: absolute;
    width: 320px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.25, 1, 0.2, 1);
    cursor: pointer;
    border: 1px solid var(--glass-border);
    background: #000;
}

.coverflow-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: 0.8s;
}

.coverflow-item.active {
    transform: translate3d(0, 0, 300px) rotateY(0deg);
    z-index: 10;
    border-color: var(--gold-brand);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.coverflow-item.active img {
    opacity: 1;
}

.coverflow-item.prev {
    transform: translate3d(-250px, 0, 0) rotateY(45deg);
    z-index: 5;
}

.coverflow-item.next {
    transform: translate3d(250px, 0, 0) rotateY(-45deg);
    z-index: 5;
}

.coverflow-item.far-prev {
    transform: translate3d(-450px, 0, -200px) rotateY(60deg);
    z-index: 1;
    opacity: 0.5;
}

.coverflow-item.far-next {
    transform: translate3d(450px, 0, -200px) rotateY(-60deg);
    z-index: 1;
    opacity: 0.5;
}

.coverflow-item:hover img {
    transform: scale(1.05);
}

.coverflow-pagination {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.cover-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--gold-brand);
    cursor: pointer;
    transition: 0.3s;
}

.cover-dot.active {
    background: var(--gold-brand);
    transform: scale(1.3);
}

/* --- Room Spotlight Boutique V2 --- */
.room-spotlight {
    padding: 60px 5%;
    display: flex;
    align-items: center;
    gap: 60px;
    /* Reduced from 100px for tighter alignment */
    max-width: 1400px;
    margin: 20px auto;
    position: relative;
    overflow: visible;
}

.room-spotlight.reverse {
    flex-direction: row-reverse;
}

.room-visuals {
    flex: 1.2;
    position: relative;
    padding: 30px;
    z-index: 10;
    cursor: pointer;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 15px;
    max-width: 600px;
}

/* Artisan Staggered Frame */
.room-visuals::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 70%;
    border-top: 3px solid var(--gold-brand);
    border-left: 3px solid var(--gold-brand);
    z-index: -1;
    opacity: 0.4;
    transition: 0.5s;
}

.room-visuals::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
    height: 70%;
    border-bottom: 3px solid var(--gold-brand);
    border-right: 3px solid var(--gold-brand);
    z-index: -1;
    opacity: 0.4;
    transition: 0.5s;
}

.room-visuals:hover::before {
    transform: translate(-10px, -10px);
    opacity: 0.8;
}

.room-visuals:hover::after {
    transform: translate(10px, 10px);
    opacity: 0.8;
}

.room-img-main {
    width: 100%;
    height: 100%;
    grid-row: span 2;
    grid-column: span 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.room-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-img-sub {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.room-img-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Single image override for rooms page */
.room-visuals:not(:has(.room-img-sub)) {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    max-width: none;
    width: 100%;
}

.room-visuals:not(:has(.room-img-sub)) .room-img-main {
    width: 100%;
    max-width: 500px;
    height: 400px;
    grid-row: auto;
    grid-column: auto;
}

.room-visuals:hover .room-img-main {
    transform: scale(1.02);
}

/* Decorative Typography Layout */
.room-content-detailed {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    min-height: 500px;
    padding: 20px 0;
}

.room-title-box {
    position: relative;
    margin-bottom: 40px;
}

.room-bg-letter {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    /* Centered vertically relative to title box */
    font-size: 12rem;
    font-family: 'Poiret One', sans-serif;
    color: var(--gold-brand);
    opacity: 0.04;
    line-height: 0.8;
    pointer-events: none;
    z-index: 0;
}

.room-type-label {
    color: var(--gold-brand);
    letter-spacing: 8px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.room-content-detailed h2 {
    font-family: 'Poiret One', sans-serif;
    font-size: 3rem;
    color: var(--deep-bg);
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: normal;
    line-height: 1.2;
    margin: 0;
    position: relative;
    z-index: 1;
}

.room-description-detailed {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 600px;
    /* Constrained for better readability and alignment */
}

/* Artisan Spec Grid V2 */
.room-spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.room-spec-item {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(201, 166, 60, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.room-spec-item:hover {
    border-color: var(--gold-brand);
    background: rgba(201, 166, 60, 0.02);
    transform: translateX(5px);
}

.room-spec-icon {
    font-size: 1.5rem;
    color: var(--gold-brand);
}

.room-spec-text h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    color: var(--deep-bg);
    font-weight: 700;
}

.room-spec-text p {
    font-size: 0.75rem;
    opacity: 0.6;
    margin: 0;
}

/* Feature Badges */
.feature-badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.feature-badge {
    background: rgba(201, 166, 60, 0.03);
    border: 1px solid rgba(201, 166, 60, 0.15);
    color: var(--gold-brand);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.3s;
}

.feature-badge:hover {
    background: var(--gold-brand);
    color: #fff;
}

@media (max-width: 1200px) {
    .room-content-detailed h2 {
        font-size: 3rem;
    }
}

@media (max-width: 1100px) {
    .room-spotlight {
        flex-direction: column !important;
        gap: 60px;
        padding: 80px 5%;
        text-align: center;
    }

    .room-content-detailed {
        align-items: center;
    }

    .room-type-label {
        padding-left: 0;
    }

    .room-type-label::before {
        display: none;
    }

    .room-spec-grid {
        justify-content: center;
        width: 100%;
        max-width: 700px;
    }

    .room-visuals {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2, 280px);
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .room-spec-grid {
        grid-template-columns: 1fr;
    }

    .room-visuals {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 300px 180px;
        gap: 15px;
    }

    .room-img-main {
        grid-row: span 1;
        grid-column: span 2;
    }

    .room-img-sub {
        grid-column: span 1;
    }
}

/* --- About Us - Authority & Legacy Sections --- */
.authority-logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    padding: 60px 0;
    opacity: 0.7;
    transition: 0.5s;
}

.authority-logo-grid:hover {
    opacity: 1;
}

.authority-logo-item {
    height: 60px;
    filter: none;
    transition: 0.4s;
    cursor: help;
}

.authority-logo-item:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Timeline Layout */
.legacy-timeline {
    position: relative;
    max-width: 1000px;
    margin: 80px auto;
    padding: 40px 0;
}

.legacy-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--gold-brand), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 100px;
    position: relative;
}

.timeline-content {
    width: 45%;
    padding: 30px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--gold-brand);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 10px rgba(201, 166, 60, 0.1);
    z-index: 2;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    font-family: 'Poiret One', sans-serif;
    font-size: 3rem;
    color: var(--gold-brand);
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

/* Proof Cards */
.proof-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.proof-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.04);
    transition: 0.5s;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.proof-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.08);
}

.proof-img-box {
    height: 220px;
    overflow: hidden;
}

.proof-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s;
}

.proof-card:hover .proof-img-box img {
    transform: scale(1.1);
}

.proof-details {
    padding: 30px;
    text-align: center;
}

.proof-count {
    font-family: 'Poiret One', sans-serif;
    font-size: 2.5rem;
    color: var(--gold-brand);
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

@media (max-width: 800px) {
    .legacy-timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 60px;
    }

    .timeline-content {
        width: 100%;
    }

    .timeline-dot {
        left: 20px;
    }
}

/* --- Room Overview Grid --- */
.room-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 items = 4 columns on desktop */
    gap: 30px;
    margin: 50px auto 0;
    max-width: 1400px;
    padding: 0 20px;
}

.room-overview-card {
    height: 500px;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--deep-bg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.room-overview-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
}

.room-overview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: brightness(0.8) contrast(1.1);
}

.room-overview-card:hover .room-overview-img {
    transform: scale(1.15);
    filter: brightness(1) contrast(1);
}

.room-overview-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 25px;
    /* Reduced padding for better fit on tablets */
    background: linear-gradient(to top, rgba(46, 35, 24, 0.95) 20%, rgba(46, 35, 24, 0.4) 60%, transparent);
    color: #fff;
    z-index: 2;
    transition: 0.5s;
}

.room-overview-card:hover .room-overview-content {
    padding-bottom: 70px;
    background: linear-gradient(to top, rgba(201, 166, 60, 0.4), rgba(46, 35, 24, 0.95) 40%, transparent);
}

@media (max-width: 1200px) {
    .room-overview-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Balanced 2x2 on tablet */
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .room-overview-grid {
        grid-template-columns: 1fr;
        /* Balanced 1 column on mobile */
    }

    .room-overview-card {
        height: 400px;
    }
}

.room-overview-content h3 {
    font-family: 'Poiret One', sans-serif;
    font-size: 2rem;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.room-overview-content p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

.room-overview-btn {
    display: inline-block;
    color: var(--gold-brand);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid var(--gold-brand);
    padding-bottom: 5px;
    transition: 0.3s;
}

.room-overview-card:hover .room-overview-btn {
    letter-spacing: 5px;
}

@media (max-width: 600px) {
    .room-overview-card {
        height: 300px;
    }
}

.room-visuals {
    cursor: pointer;
}

/* --- Room Details Popup styles --- */
.PopUpContainer-wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 100000 !important;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* --- Room Details Popup styles (Ported from Accomodation.css) --- */
.PopUpContainer-wrapper {
    display: none;
    /* Hidden initially */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    /* Dimmed background */
    z-index: 100000 !important;
    /* Ensure it overlays content */
    display: flex;
    justify-content: center;
    /* Horizontally center */
    align-items: center;
    /* Vertically center */

}

.pop-swiper {
    display: none;
}

/* Fade In with Background Blur */
@keyframes fadeInBlur {
    0% {
        transform: scale(1.05);
        opacity: 0;
        filter: blur(5px);
    }

    100% {
        transform: scale(1);
        opacity: 1;
        filter: blur(0);
    }
}

/* Exit Fade Out with Blur */
@keyframes fadeOutBlur {
    0% {
        transform: scale(1);
        opacity: 1;
        filter: blur(0);
    }

    100% {
        transform: scale(1.05);
        opacity: 0;
        filter: blur(5px);
    }
}

/* Apply fade-in and blur effect */
.PopUpContainer-wrapper {
    animation: fadeInBlur 0.6s ease-out forwards;
}

/* Apply the exit animation */
.PopUpContainer-wrapper.exit {
    animation: fadeOutBlur 0.6s ease-out forwards;
}

.PopUpContainer-container {
    display: flex;
    flex-direction: row;
    /* Adjust layout inside the container if needed */
    justify-content: center;
    align-items: center;
    width: 1200px;
    height: auto;
    /* Adjust height if necessary */
    max-height: 90vh;
    /* Limit the height to 90% of the screen */
    overflow: auto;
    /* Enables scrolling if content overflows */
    background: rgb(242, 242, 242);
    /* Background for the popup content */
    padding: 10px 50px;
    /* Adds spacing inside the popup */
    flex-wrap: wrap;
    overflow-x: hidden;

    border-radius: 1.5%;
}

/* Modern scrollbar styling */
.PopUpContainer-container::-webkit-scrollbar {
    width: 8px;
    /* Increase width of the vertical scrollbar */
    height: 12px;
    /* Increase height of the horizontal scrollbar */
}

/* Scrollbar track with gradient for more contrast */
.PopUpContainer-container::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #f1f1f1, #e0e0e0);
    /* Track color with gradient */
    border-radius: 10px;
    /* Round track edges */
}

/* Scrollbar thumb with vibrant color */
.PopUpContainer-container::-webkit-scrollbar-thumb {
    background: rgb(100, 100, 100);
    /* Darker thumb color for contrast */
    border-radius: 10px;
    /* Round thumb edges */
    border: 2px solid rgba(0, 0, 0, 0.1);
    /* Border around the thumb for emphasis */
}

/* Thumb color on hover */
.PopUpContainer-container::-webkit-scrollbar-thumb:hover {
    background: rgb(45, 45, 45);
    /* Darker thumb color when hovered */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    /* Add shadow for visibility on hover */
}

.close-button {
    position: absolute;
    top: 1.2vw;
    right: 1.2vw;
    border: 0.1px solid var(--lightt-color);
    width: 30px;
    height: 30px;
    font-size: 18px;
    background: var(--dark-color);
    color: var(--lightt-color);
    cursor: pointer;
    border-radius: 50%;
    transition: transform 0.3s ease;
    /* Adds a smooth hover effect */
}

@media(max-width:900px) {
    .close-button {
        width: 30px;
        height: 30px;
    }
}


.PopUpContainer-Content {
    padding: 20px;
    flex: 1;
}

.PopUpContainer-Content-h1 {
    font-family: 'Poiret One', sans-serif;
    font-weight: 300;
    font-size: var(--fs-page-h1);
    line-height: 1;
}

.PopUpContainer-Content-p {
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 15px;
    margin-top: 3%;
    width: 430px;
    color: rgb(33, 33, 33);
    font-weight: 600;
    margin-bottom: 3%;
}

.PopUpContainer-logos {
    display: flex;
    gap: 15px;
}

.PopUpContainer-logo {
    width: 60px;
    height: 60px;
    background-size: 80%;
    /* Shrinks the background image */
    background-position: center;
    background-color: white;
    border-radius: 50%;
    padding: 10px;
    /* Now this works as expected */
    background-repeat: no-repeat;
}

.PopUpContainer-logo .inner-logo {
    width: 40px;
    /* Adjust this to fit inside */
    height: 40px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    /* Ensure circular shape */
}

.key-features {
    color: black;
    font-family: 'Montserrat';
    font-weight: 600;
    color: rgb(33, 33, 33);
}

.key-features h2 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.features-list {
    display: flex;
    gap: 1vw;
    flex-wrap: wrap;
}

.features-list ul {
    list-style-type: none;
    margin: 0;
    padding-left: 0;
    flex: 1;
}

.features-list li {
    margin-bottom: 12px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.PopUpContainer-Collage {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.PopUpContainer-Collage-Colomn1,
.PopUpContainer-Collage-Colomn2,
.PopUpContainer-Collage-Colomn3 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Base image sizes */
.PopUpContainer-Collage-Colomn1-img1,
.PopUpContainer-Collage-Colomn1-img2,
.PopUpContainer-Collage-Colomn2-img1,
.PopUpContainer-Collage-Colomn2-img2,
.PopUpContainer-Collage-Colomn3-img1,
.PopUpContainer-Collage-Colomn3-img2,
.PopUpContainer-Collage-Colomn3-img3 {
    background-color: gray;
    background-size: cover;
    /* Makes the image cover the entire area without distortion */
    background-position: center;
    /* Centers the image */
    background-repeat: no-repeat;
    /* Prevents the image from repeating */
    object-fit: cover;
}

/* Default image sizes for large screens */
.PopUpContainer-Collage-Colomn1-img1,
.PopUpContainer-Collage-Colomn1-img2,
.PopUpContainer-Collage-Colomn2-img1,
.PopUpContainer-Collage-Colomn2-img2,
.PopUpContainer-Collage-Colomn3-img1,
.PopUpContainer-Collage-Colomn3-img2,
.PopUpContainer-Collage-Colomn3-img3 {
    width: 190px;
}

/* Column-specific image heights */
.PopUpContainer-Collage-Colomn1-img1 {
    height: 150px;
    object-fit: cover;
}

.PopUpContainer-Collage-Colomn1-img2 {
    height: 300px;
    object-fit: cover;
}

.PopUpContainer-Collage-Colomn2-img1 {
    height: 320px;
    object-fit: cover;
}

.PopUpContainer-Collage-Colomn2-img2 {
    height: 130px;
    object-fit: cover;
}

.PopUpContainer-Collage-Colomn3-img1 {
    height: 147px;
    object-fit: cover;
}

.PopUpContainer-Collage-Colomn3-img2 {
    height: 147px;
    object-fit: cover;
}

.PopUpContainer-Collage-Colomn3-img3 {
    height: 146px;
    object-fit: cover;
}

/* Zoom-In animation */
@keyframes zoomIn {
    0% {
        transform: scale(0.8);
        /* Start smaller */
        opacity: 0;
    }

    100% {
        transform: scale(1);
        /* End at original size */
        opacity: 1;
    }
}

/* Lightbox Styling */
.lightbox {
    display: none;
    /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    /* Semi-transparent background */
    justify-content: center;
    align-items: center;
    z-index: 9999999;
    /* Above popup and all other content */
    cursor: pointer;
    /* Indicating clickability */
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: zoomIn 0.4s ease-out;
    /* Apply the zoom-in animation */
}

/* Optional hover effect for images */
.PopUpContainer-Collage div {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.PopUpContainer-Collage div:hover {
    transform: scale(1.05);
}

@media(max-width:1182px) {
    .PopUpContainer-Content-p {
        width: 550px;
        padding-left: 4%;
        padding-right: 4%;
        font-size: 1.5rem;
    }

    .features-list ul li {
        font-size: 1.2rem;
    }

    .PopUpContainer-Content {
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .PopUpContainer-container {
        height: 70%;
        width: 80%;
    }

    .PopUpContainer-Collage-Colomn1-img1,
    .PopUpContainer-Collage-Colomn1-img2,
    .PopUpContainer-Collage-Colomn2-img1,
    .PopUpContainer-Collage-Colomn2-img2,
    .PopUpContainer-Collage-Colomn3-img1,
    .PopUpContainer-Collage-Colomn3-img2,
    .PopUpContainer-Collage-Colomn3-img3 {
        width: 20.5vw;
    }

    /* Column-specific image heights */
    .PopUpContainer-Collage-Colomn1-img1 {
        height: 10vh;
        object-fit: cover;
    }

    .PopUpContainer-Collage-Colomn1-img2 {
        height: 30vh;
        object-fit: cover;
    }

    .PopUpContainer-Collage-Colomn2-img1 {
        height: 30vh;
        object-fit: cover;
    }

    .PopUpContainer-Collage-Colomn2-img2 {
        height: 10vh;
        object-fit: cover;
    }

    .PopUpContainer-Collage-Colomn3-img1 {
        height: 12.5vh;
        object-fit: cover;
    }

    .PopUpContainer-Collage-Colomn3-img2 {
        height: 12.5vh;
        object-fit: cover;
    }

    .PopUpContainer-Collage-Colomn3-img3 {
        height: 14.75vh;
        object-fit: cover;
    }
}

@media(max-width: 800px) {
    .PopUpContainer-Content-p {
        font-size: 1.2rem;
    }
}

@media (max-width: 705px) {

    .PopUpContainer-Content-h1 {
        padding-left: 3vw;
        padding-right: 3vw;
        text-align: center;
        font-size: var(--fs-page-h1);
    }

    .PopUpContainer-Content-p {
        /* padding-left: 5vw;
    padding-right: 5vw; */
        font-size: 1rem;
        width: 100%;

    }

    .PopUpContainer-Content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 77vw;
    }

    .features-list {
        padding-left: 8%;
        padding-right: 8%;
        /* justify-content: center; */
        margin-left: 0;
    }

    .PopUpContainer-container {
        height: 65%;
    }

    .PopUpContainer-Collage-Colomn1-img1,
    .PopUpContainer-Collage-Colomn1-img2,
    .PopUpContainer-Collage-Colomn2-img1,
    .PopUpContainer-Collage-Colomn2-img2,
    .PopUpContainer-Collage-Colomn3-img1,
    .PopUpContainer-Collage-Colomn3-img2,
    .PopUpContainer-Collage-Colomn3-img3 {
        width: 18.5vw;
    }

    /* Column-specific image heights */
    .PopUpContainer-Collage-Colomn1-img1 {
        height: 8.5vh;
        object-fit: cover;
    }

    .PopUpContainer-Collage-Colomn1-img2 {
        height: 28.5vh;
        object-fit: cover;
    }

    .PopUpContainer-Collage-Colomn2-img1 {
        height: 28.5vh;
        object-fit: cover;
    }

    .PopUpContainer-Collage-Colomn2-img2 {
        height: 8.5vh;
        object-fit: cover;
    }

    .PopUpContainer-Collage-Colomn3-img1 {
        height: 11vh;
        object-fit: cover;
    }

    .PopUpContainer-Collage-Colomn3-img2 {
        height: 11vh;
        object-fit: cover;
    }

    .PopUpContainer-Collage-Colomn3-img3 {
        height: 14.5vh;
        object-fit: cover;
    }

}

@media(max-width:628px) {

    .PopUpContainer-Content-h1 {
        font-size: 7vw;
    }

    .PopUpContainer-Content-p {
        /* padding-left: 10vw;
    padding-right: 10vw; */
        font-size: 1rem;
    }

    .features-list li {
        font-size: 1rem;
    }



}

@media screen and (min-width: 480px) and (max-width: 932px) and (orientation: landscape) {
    .PopUpContainer-container {
        height: 100%;
        width: 85%;
    }

    .PopUpContainer-Content-h1 {
        font-size: 6.5vw;
    }

    .PopUpContainer-Collage-Colomn1-img1 {
        height: 10vw;
        object-fit: cover;
    }

    .PopUpContainer-Collage-Colomn1-img2 {
        height: 30vw;
        object-fit: cover;
    }

    .PopUpContainer-Collage-Colomn2-img1 {
        height: 30vw;
        object-fit: cover;
    }

    .PopUpContainer-Collage-Colomn2-img2 {
        height: 10vw;
        object-fit: cover;
    }

    .PopUpContainer-Collage-Colomn3-img1 {
        height: 12.5vw;
        object-fit: cover;
    }

    .PopUpContainer-Collage-Colomn3-img2 {
        height: 12.5vw;
        object-fit: cover;
    }

    .PopUpContainer-Collage-Colomn3-img3 {
        height: 14.75vw;
        object-fit: cover;
    }
}

@media (max-width: 586px) {
    .PopUpContainer-Content-h1 {
        font-size: 8.5vw;
        /* padding-left: 10%;
    padding-right: 10%; */
    }

    .pop-swiper {
        padding-top: 5%;
        padding-bottom: 11%;
        display: block;
    }

    .PopUpContainer-Collage {
        display: none;
    }

    .PopUpContainer-Content-p {
        /* padding-left: 20vw;
    padding-right: 20vw; */
    }



    .features-list ul li {
        font-size: 1rem;
    }

}

@media (max-width: 548px) {
    .PopUpContainer-Content-h1 {
        font-size: 8vw;
        /* padding-left: 20%;
    padding-right: 20%; */
    }
}

@media(max-width:510px) {
    .PopUpContainer-Content-h1 {
        font-size: 8vw;
        /* padding-left: 10%;
    padding-right: 10%; */
    }

    .PopUpContainer-Content-p {
        /* width: 100vw; */
        font-size: 1rem;
    }

    .PopUpContainer-logo {
        height: 12vw;
        width: 12vw;
    }

    .features-list {
        margin-left: 6vw;
    }
}

@media(max-width:410px) {
    .PopUpContainer-Content-p {
        /* width: 100vw; */
        font-size: 1rem;
    }

    .PopUpContainer-logo {
        height: 14vw;
        width: 14vw;
    }

    .features-list {
        margin-left: 6vw;
    }
}

@media(max-width:340px) {


    .PopUpContainer-Content-p {
        font-size: 4.75vw;
        /* width: 100vw; */
    }

    .features-list li {
        font-size: 4.75vw;
    }
}

@media(min-width:1950px) {

    .Book-your-day-ou-btn,
    .know-more-btn {
        font-size: 10px;
        padding: 5px 10px;
        border-radius: 50px;
    }

    .acc-card__data {
        height: 23vh;
        padding: 2vw;
    }

    .acc-card__data ul {
        font-size: 1vw;
        width: 50%;
    }

    .acc-card__data h3 {
        font-size: 1.5vw;
    }

    .acc-key-features {
        font-size: 1.2vw;
    }

    .acc-key-features ul li {
        font-size: 1.2vw;
    }

    .PopUpContainer-container {
        width: 80%;
        height: 80%;
        padding: 2.5vw;
    }

    .PopUpContainer-Content-h1 {
        font-size: 4.5vw;
    }

    .PopUpContainer-Content-p {
        width: 30vw;
        font-size: 1.2vw;
    }

    .PopUpContainer-logo {
        height: 4.5vw;
        width: 4.5vw;
    }

    .PopUpContainer-logo .inner-logo {
        height: 4vw;
        width: 4vw;
    }

    .features-list li {
        font-size: 1.1vw;
    }

    .PopUpContainer-Content h2 {
        font-size: var(--fs-section-h2);
    }

    .pop-up-button {
        font-size: 1.2vw;
        padding: 1vh 2vw;
        border-radius: 2vw;
    }

    /* Default image sizes for large screens */
    .PopUpContainer-Collage-Colomn1-img1,
    .PopUpContainer-Collage-Colomn1-img2,
    .PopUpContainer-Collage-Colomn2-img1,
    .PopUpContainer-Collage-Colomn2-img2,
    .PopUpContainer-Collage-Colomn3-img1,
    .PopUpContainer-Collage-Colomn3-img2,
    .PopUpContainer-Collage-Colomn3-img3 {
        width: 12vw;
    }

    /* Column-specific image heights */
    .PopUpContainer-Collage-Colomn1-img1 {
        height: 20vh;
        object-fit: cover;
    }

    .PopUpContainer-Collage-Colomn1-img2 {
        height: 40vh;
        object-fit: cover;
    }

    .PopUpContainer-Collage-Colomn2-img1 {
        height: 40vh;
        object-fit: cover;
    }

    .PopUpContainer-Collage-Colomn2-img2 {
        height: 20vh;
        object-fit: cover;
    }

    .PopUpContainer-Collage-Colomn3-img1 {
        height: 20vh;
        object-fit: cover;
    }

    .PopUpContainer-Collage-Colomn3-img2 {
        height: 20vh;
        object-fit: cover;
    }

    .PopUpContainer-Collage-Colomn3-img3 {
        height: 19.5vh;
        object-fit: cover;
    }
}

/* --- Culinary Expedition Section (Gastronomy) --- */
.culinary-section {
    padding: 80px 5%;
    background: #fdfdfd;
    position: relative;
    overflow: hidden;
}

.culinary-grid {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.culinary-img-box {
    flex: 1;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 600px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.culinary-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.culinary-slider {
    width: 100%;
    height: 100%;
}

.culinary-slider .swiper-slide {
    width: 100%;
    height: 100%;
}

.culinary-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.culinary-content {
    flex: 1;
    padding-left: 20px;
}

.culinary-content h2 {
    font-size: 3.5rem;
    color: #2E2318;
    margin: 10px 0 30px;
}

.food-feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.food-feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.food-feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 166, 60, 0.1);
    color: var(--gold-brand);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.food-feature-text h4 {
    font-family: 'Poiret One', sans-serif;
    font-size: 1.2rem;
    color: #2E2318;
    margin: 0 0 5px;
    font-weight: bold;
}

.food-feature-text p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .culinary-grid {
        flex-direction: column;
        gap: 40px;
    }

    .culinary-img-box {
        width: 100%;
        /* Full width on smaller screens */
        height: 400px;
        /* Reduced height */
    }

    .culinary-content {
        padding-left: 0;
        /* Remove left padding */
        width: 100%;
    }

    .culinary-content h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .food-feature-list {
        grid-template-columns: 1fr;
        /* Stack definition list */
    }

    .culinary-content h2 {
        font-size: 2.2rem;
    }
}


/* --- Global Utilities & Animations --- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    visibility: hidden;
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

/* --- Live Counter Section --- */
.live-counter-section {
    padding: 80px 20px;
    background: var(--deep-bg);
    color: var(--ivory-white);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.live-counter-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.counter-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.counter-number {
    font-family: 'Poiret One', sans-serif;
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--gold-brand);
    display: block;
    margin-bottom: 5px;
}

.counter-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.counter-divider {
    width: 2px;
    height: 60px;
    background: rgba(201, 166, 60, 0.3);
    margin: auto 0;
}

@media (max-width: 768px) {
    .counter-divider {
        display: none;
    }

    .live-counter-grid {
        gap: 30px;
        flex-direction: column;
        align-items: center;
    }

    .counter-item {
        margin-bottom: 20px;
    }
}

/* --- Responsiveness for Tailored Packages --- */
@media (max-width: 1100px) {
    .service-grid-premium {
        gap: 30px;
    }

    .service-card-flat {
        width: 300px;
        padding: 50px 30px;
    }
}

@media (max-width: 768px) {
    .service-grid-premium {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .service-card-flat {
        width: 100%;
        max-width: 350px;
        min-height: auto;
        padding: 40px 25px;
    }

    .service-card-flat h3 {
        font-size: 1.8rem;
    }

    .live-counter-section {
        padding: 60px 20px;
    }

    .counter-number {
        font-size: 2.5rem;
    }

    .counter-label {
        font-size: 0.8rem;
    }
}


/* --- Tailored Packages Redesign --- */
.service-slider {
    padding-bottom: 50px;
    width: 100%;
    padding-top: 40px;
    /* Space for hover lift */
}



.swiper-slide {
    height: auto;
    width: 380px;
    /* Explicit width required for 'auto' loop calculation */
    display: flex;
    justify-content: center;
    transition: transform 0.3s;
}

@media (max-width: 768px) {
    .swiper-slide {
        width: 85vw;
        /* Responsive width for mobile */
    }
}

.service-card-flat {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 20px 40px;
    /* Adjusted padding for bottom text alignment layout */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    background-size: cover !important;
    background-position: center !important;
    text-align: left;
    /* Text alignment change */
    position: relative;
    max-width: 350px;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Push content to bottom */
    height: 450px;
    /* Fixed height for consistency */
}

/* Strong Gradient Overlay */
.service-card-flat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.95) 100%);
    z-index: -1;
    transition: opacity 0.3s;
}

.service-card-flat:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: var(--gold-brand);
    /* Highlight border on hover */
}

/* Card Tag (Badge) */
.card-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--gold-brand);
    color: #2E2318;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(201, 166, 60, 0.3);
    z-index: 2;
}

/* Typography Enhancements */
.service-card-flat h3 {
    font-family: 'Poiret One', cursive;
    font-size: var(--fs-h3-card);
    font-weight: 900;
    margin: 10px 0;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.service-card-flat p {
    font-size: var(--fs-body-p);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-family: 'Quicksand', sans-serif;
}

/* Icon Design (No Circle) */
.service-card-flat>i {
    color: var(--gold-brand);
    font-size: 3.5rem !important;
    /* Large plain icon */
    width: auto;
    height: auto;
    line-height: normal;
    background: none;
    /* Remove circle background */
    border-radius: 0;
    transition: transform 0.3s ease;
    margin-bottom: 20px;
    display: inline-block;
}

.service-card-flat:hover>i {
    background: none;
    color: var(--gold-brand) !important;
    transform: scale(1.15) translateY(-5px);
    /* Simple pop effect */
}

/* Button Refinement */
.btn-premium {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--gold-brand) 0%, #b89530 100%);
    color: #fff;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 166, 60, 0.3);
    border-radius: 50px;
}

.btn-premium:hover {
    background: var(--gold-brand);
    box-shadow: 0 5px 15px rgba(201, 166, 60, 0.3);
    transform: scale(1.05);
}

/* --- Global Mobile & Tablet Optimization --- */
.responsive-title {
    font-size: var(--fs-section-h2) !important;
    line-height: 1.1;
    word-wrap: break-word;
    font-weight: 300;
    color: var(--gold-brand);
}

@media (max-width: 1024px) {
    .section-premium {
        padding: 60px 5vw;
    }

    .split-section {
        gap: 30px;
        flex-direction: column !important;
        text-align: center;
        /* Center align text on tablet/mobile */
        align-items: center;
    }

    .split-section h2 {
        font-size: var(--fs-section-h2) !important;
        /* Reduce heading size */
        margin: 0 auto 20px;
        /* Center with margin */
    }

    .split-section p {
        text-align: center;
        /* Ensure paragraphs are centered */
        margin: 20px auto;
    }

    .split-section button {
        margin: 20px auto;
        /* Center button */
    }

    .hero-mini-refined h1 {
        font-size: 3.5rem;
        letter-spacing: 5px;
    }

    .room-overview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .logo {
        padding: 10px 20px;
    }

    .Logo-Img-HEro {
        height: 55px !important;
        /* Bit bigger as requested */
        width: auto !important;
        object-fit: contain !important;
    }

    .ResortName-logo,
    #resortName {
        display: none !important;
        /* Force hide to override JS inline styles */
    }

    .menuicon-wrapper {
        top: 10px;
        right: 15px;
        gap: 10px;
    }

    .hero-phone-number-span {
        font-size: 0.8rem;
    }

    .menuicon {
        width: 40px;
        height: 40px;
    }

    .Hero-Hamburger-logo-hamburger svg {
        height: 2.2em;
    }

    .hero-mini-refined {
        height: 50vh;
        margin-top: 70px !important;
    }

    .hero-mini-refined h1 {
        font-size: 2.5rem;
        /* Increased to balanced size */
        letter-spacing: 3px;
        padding: 0 10px;
    }

    /* Fix for Visionary Leadership Text */
    .section-premium h2 {
        font-size: var(--fs-section-h2) !important;
        /* Increased from 2rem to 2.8rem */
        letter-spacing: 5px !important;
        line-height: 1.2;
    }

    .hero-mini-refined p {
        font-size: 0.9rem !important;
        /* Smaller subtitle */
        letter-spacing: 1px !important;
    }

    .room-overview-grid {
        grid-template-columns: 1fr;
    }

    .room-overview-card {
        height: 400px;
    }

    .room-content-detailed h2 {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .room-bg-letter {
        font-size: 8rem;
    }

    .room-description-detailed {
        font-size: 0.95rem;
        text-align: center;
        max-width: 100%;
    }

    .room-spec-grid {
        grid-template-columns: 1fr 1fr;
    }

    .PopUpContainer-Content-h1 {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .features-list {
        flex-direction: column;
        gap: 10px;
    }

    .service-card-flat {
        padding: 30px 20px;
    }

    .service-card-flat h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 100% !important;
        height: 70px !important;
        background-color: #2E2318 !important;
        /* Start transparent */
        left: 0 !important;
        top: 0 !important;
        padding: 0 20px !important;
        z-index: 1000;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 12px !important;
        box-shadow: none !important;
        /* No shadow initially */
        border-radius: 0 !important;
        margin: 0 !important;
        position: fixed !important;
        transition: background-color 0.5s ease-in-out !important;
    }

    .logo.header-scrolled {
        background-color: var(--deep-bg) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
    }

    .Hero-Resort-names-Logo {
        display: contents !important;
        /* Make children direct flex items of .logo */
    }

    .ResortName-logo {
        display: block !important;
        font-size: 1.4rem !important;
        color: #fff !important;
        white-space: nowrap !important;
        margin: 0 !important;
        position: relative !important;
    }

    .Logo-Img-HEro {
        position: relative !important;
        height: 55px !important;
    }

    .menuicon-wrapper {
        height: 70px;
        padding: 0 15px;
        top: 0 !important;
        right: 0 !important;
    }

    .header-scrolled {
        width: 100% !important;
    }

    .room-spec-grid {
        grid-template-columns: 1fr;
    }

    .feature-badge {
        padding: 6px 15px;
        font-size: 0.6rem;
    }
}

/* --- Rooms Popup Mobile Styles & Fixes (Ported from Accomodation.css) --- */

/* Close Button */
.close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    border: 1px solid var(--gold-brand);
    width: 35px;
    height: 35px;
    font-size: 20px;
    background: var(--dark-color);
    color: var(--gold-brand);
    cursor: pointer;
    border-radius: 50%;
    transition: transform 0.3s ease;
    z-index: 2000;
    /* Ensure clickability */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
}

.close-button:hover {
    transform: scale(1.1);
    background: var(--gold-brand);
    color: var(--dark-color);
}

/* Mobile Image Swiper Default State */
.pop-swiper {
    display: none;
    /* Hidden on desktop, shown via media query */
}

/* Swiper Slide Content */
.pop-swiper-img {
    width: 100%;
    height: 250px;
    /* Fixed height for mobile visibility */
    border-radius: 12px;
    margin-bottom: 10px;
}

/* Mobile Responsive Overrides */
@media (max-width: 768px) {

    /* Hide the desktop collage on mobile */
    .PopUpContainer-Collage {
        display: none !important;
    }

    /* Show the swiper on mobile */
    .pop-swiper {
        display: block;
        width: 100%;
        padding-top: 10px;
        padding-bottom: 20px;
    }

    /* Adjust popup content for mobile */
    .PopUpContainer-Content {
        padding: 15px;
    }

    .PopUpContainer-Content-h1 {
        font-size: 2rem;
        margin-top: 20px;
        /* Space for close button */
    }

    /* Ensure popup scroll works */
    .PopUpContainer-container {
        height: 85%;
        width: 90%;
        overflow-y: auto;
    }
}

/* --- Google-Style Review Cards (Redesign) --- */
.review-card-google {
    border-radius: 25px;
    padding: 30px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
    box-shadow: none !important;
    transition: transform 0.3s ease;
}

.review-card-google:hover {
    transform: translateY(-5px);
}

.review-card-gold {
    background-color: #C1A03F;
    /* Gold from image */
    color: #fff;
}

.review-card-dark {
    background-color: #261F18;
    /* Dark brown from image */
    color: #fff;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.review-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.google-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
    font-style: normal;
    /* Override existing italic if any */
    border-left: 2px solid rgba(255, 255, 255, 0.3);
    padding-left: 15px;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle divider if needed, or remove */
    padding-top: 5px;
}

.rating-label {
    font-weight: 700;
    font-size: 1.2rem;
}

.rating-stars {
    color: #FFD700;
    /* Star yellow */
    font-size: 1.2rem;
    letter-spacing: 2px;
}

/* Testimonial Nav Buttons - Solid Premium */
.testimonial-prev,
.testimonial-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    color: var(--gold-brand);
    /* Gold Arrow */
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--gold-brand);
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(201, 166, 60, 0.4);
}

.testimonial-prev {
    left: -45px;
}

.testimonial-next {
    right: -45px;
}

/* Theme Adaptation for Ivory Background (Rooms Page) */
section.theme-ivory .testimonial-prev,
section.theme-ivory .testimonial-next {
    background: var(--gold-brand) !important;
    color: #fff !important;
    box-shadow: 0 5px 15px rgba(201, 166, 60, 0.3);
}

section.theme-ivory .testimonial-prev:hover,
section.theme-ivory .testimonial-next:hover {
    background: var(--deep-bg) !important;
    color: var(--gold-brand) !important;
}

@media (max-width: 768px) {

    .testimonial-prev,
    .testimonial-next {
        font-size: 1rem;
        width: 35px;
        height: 35px;
        left: -15px;
        /* Tighter on mobile */
        right: auto;
    }

    .testimonial-next {
        right: -15px;
        left: auto;
    }
}