/* --- CONSOLIDATED MOBILE STYLES (992px and below) --- */
/* 1. Hide mobile elements by default (Desktop/Large Screens) */
.mobile-menu-overlay, 
.mobile-header {
    display: none !important;
}

/* 2. Show ONLY on Mobile/Tablets */
@media (max-width: 992px) {
    .mobile-header {
        display: flex !important; /* Shows the bar with logo and hamburger */
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background: #fff;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    /* The overlay should only exist when the toggle function triggers it */
    .mobile-menu-overlay {
        /* Keep this as none or flex depending on your JavaScript toggleMenu() logic */
        display: none; 
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        z-index: 2000;
    }
    
    /* This class is likely what your toggleMenu() function adds/removes */
    .mobile-menu-overlay.active {
        display: block !important;
    }
}

@media (max-width: 992px) {
    /* 1. Reset & Global Fixes */
    header:not(.mobile-header), 
    nav, 
    .about-sub-nav, 
    .social-icons, 
    .reserve-wrapper {
        display: none !important;
    }

    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    /* 2. Fixed Header Alignment */
    .mobile-header {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 80px;
        background: #197b7e;
        padding: 0 20px;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        box-sizing: border-box;
        border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    }

    .logo-left img {
        width: 150px;
        height: auto;
        display: block;
    }

    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 6px;
        padding: 10px;
        cursor: pointer;
    }

    .bar {
        width: 28px;
        height: 2px;
        background-color: #c5a059;
    }

    /* 3. Menu Overlay & Content */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        right: -100%; 
        width: 100%;
        height: 100%;
        background: #197b7e;
        z-index: 9999;
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        padding: 90px 30px 40px 30px;
        overflow-y: auto;
        box-sizing: border-box;
    }

    .mobile-menu-overlay.active {
        right: 0;
    }

    .close-menu {
        position: absolute;
        top: 20px;
        right: 25px;
        font-size: 40px;
        color: #c5a059;
        cursor: pointer;
    }

    .menu-section {
        margin-bottom: 35px;
        width: 100%;
    }

    .menu-label {
        color: #c5a059;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 12px;
        border-bottom: 1px solid rgba(197, 160, 89, 0.2);
        padding-bottom: 5px;
        display: block;
    }

    /* 4. Shared List Styling for Both Menus */
    .mob-list, .about-menu-list {
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .mob-list li, .about-menu-list li {
        width: 100%;
    }

    .mob-list li a, 
    .about-menu-list li a, 
    .mob-drop-btn {
        color: #ffffff;
        text-decoration: none;
        font-size: 20px;
        font-family: 'Cormorant Garamond', serif;
        display: block;
        padding: 12px 0;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* 5. Destination Dropdown with Icon Gap */
    .mob-drop-btn {
        display: flex !important;
        justify-content: space-between; /* Pushes + to the right */
        align-items: center;
    }

    .mob-drop-btn i {
        font-size: 14px;
        color: #c5a059;
        margin-right: 5px;
    }

    .mob-sub {
        display: none;
        list-style: none;
        padding-left: 20px;
        background: rgba(255, 255, 255, 0.03);
    }

    .mob-sub li a {
        font-size: 18px;
        color: rgba(255,255,255,0.7);
        border-bottom: none;
    }

    /* 6. Book Now Button */
    .mobile-book-container {
        margin-top: 15px;
        width: 100%;
    }

    .mob-book-btn {
        display: block;
        width: 100%;
        background: #c5a059;
        color: #fff;
        text-align: center;
        padding: 16px;
        text-decoration: none;
        font-family: 'Montserrat', sans-serif;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
}
@media (max-width: 992px) {
    /* 1. Add the gap to the second button container */
    .quick-pay-margin {
        margin-top: 12px !important; /* Adjust this number for more or less gap */
        pointer-events: none; /* Makes the 12px gap non-clickable */
    }

    /* 2. Ensure the link inside remains clickable */
    .quick-pay-margin .mob-book-btn {
        pointer-events: auto;
        display: block;
        /* Inherits all gold styling from your existing .mob-book-btn */
    }

    /* 3. Global fix: ensure the container itself doesn't trigger clicks in the gaps */
    .mobile-book-container {
        width: 100%;
        display: block;
    }
}
/* Helper to hide mobile header on desktop */
@media (min-width: 993px) {
    .mobile-header { display: none !important; }
}
/* --- UPDATED LOGO SIZE SECTION --- */
@media (max-width: 992px) {
    .logo-left {
        /* Increased from 150px to 220px to allow for a larger logo */
        max-width: 220px; 
    }

    .logo-left img {
        /* This ensures the image fills the 220px container */
        width: 100%; 
        height: auto;
        display: block;
        /* Optional: adjust vertical alignment if the logo feels too close to the top */
        padding: 5px 0; 
    }

    .mobile-header {
        /* Increased height slightly to 90px to accommodate the larger logo comfortably */
        height: 90px; 
    }
}
.logo-left img {
    width: 180px;
    height: auto;
    /* This boosts the brightness and contrast slightly to make it pop */
    filter: brightness(1.1) contrast(1.1); 
}
@media (max-width: 992px) {
    /* --- LOGO CLEARNESS FIX --- */
    .logo-left img {
        width: 120px; 
        height: auto;
        display: block;

        /* 1. Remove the 'Glass' filters that cause blur on white */
        filter: none !important; 

        /* 2. Sharpen the image rendering for mobile screens */
        image-rendering: -webkit-optimize-contrast; 
        image-rendering: crisp-edges;

        /* 3. Add a very faint shadow to give it a "3D" clear look */
        filter: drop-shadow(0px 1px 2px rgba(0,0,0,0.1)) !important;
        
        /* 4. Ensure no opacity is hiding the details */
        opacity: 1 !important;
    }

    /* --- HEADER BACKGROUND (STAYS WHITE) --- */
    .mobile-header {
        background: #ffffff !important;
        border-bottom: 1px solid #f0f0f0 !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03) !important;
        height: 80px;
        display: flex;
        align-items: center;
        padding: 0 20px;
    }

    /* --- ICON TOGGLE (REDUCED GAP) --- */
    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 5px !important; 
        padding: 10px;
    }

    .bar {
        background-color: #197b7e !important;
        height: 2px;
        width: 28px;
        margin: 0 !important;
    }
}
/* next */
@media screen and (max-width: 768px) {
    /* 1. HIDE LOGO AND WELCOME TEXT */
    .hero-logo, 
    .welcome-tag,
    .hero-brand-wrapper {
        display: none !important;
    }

    /* 2. PUSH CONTENT DOWN & CENTER */
    .video-text-overlay {
         height: 180vh !important; /* Change this value (e.g., 100vh, 120vh, 800px) to your desired height */
        padding-top: 50vh !important; 
        padding-left: 8%;
        padding-right: 8%;
        justify-content: flex-start !important; 
        align-items: center !important;
        text-align: center !important;
        background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
    }

    /* 3. TYPOGRAPHY & SPACING */
    .hero-main-title {
        font-size: 28px !important;
        line-height: 1.2 !important;
        margin-bottom: 15px !important;
    }

    .accent-line {
        margin: 0 auto 20px auto !important;
        width: 40px !important;
    }

    /* 4. JUSTIFIED DESCRIPTION */
    .hero-description {
       font-family: 'DM Sans', sans-serif !important;
        font-weight: 400 !important;
        font-size: 15px !important;
        line-height: 1.6 !important;
        color: #f0ecec !important;
        text-align: justify !important; /* Kept your requested alignment */
        -webkit-font-smoothing: antialiased;

    }

    /* 5. CENTER THE BUTTON */
    .hero-actions {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }
}
@media screen and (max-width: 768px) {
    /* INCREASING THE MAIN CONTAINER HEIGHT */
    .top-video-section {
        height: 740px !important; /* Increase this number to make the section taller */
    }

    /* Ensuring the wrapper fills that new height */
    .video-wrapper {
        height: 100% !important;
    }
}
/* next */


/* --- MOBILE ONLY STYLES --- */
@media (max-width: 767px) {
    /* 1. SECTION SPACING - Creates room at the top of the block */
.about-section {
        padding: 0px 20px 10px 20px !important;
        background-color: #fcfbf7 !important;
        overflow: hidden;

        /* Changed from -50px to -100px to move it higher */
        margin-top: -70px !important;
    }

    /* 2. THE FIX: MOVES CONTENT DOWN */
    .about-content {
        /* This kills the desktop -130px pull and pushes it down 140px */
        margin-top: 140px !important; 
        position: relative !important;
        z-index: 10;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    /* 3. WRAPPER ADJUSTMENT */
    .about-wrapper {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important; 
    }

    /* 4. TYPOGRAPHY - Centered and Balanced */
    .section-badge {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        margin-bottom: 10px !important;
    }

    .section-badge span:first-child {
        font-family: 'DM Sans', sans-serif !important;
        font-size: 10px !important;
        letter-spacing: 2.5px !important;
        margin-bottom: 15px !important;
    }

    .brand-name {
        font-size: 13px !important;
        color: #197b7e !important;
        font-weight: 600 !important;
        margin-top: -10px !important;
    }

    .section-title {
        font-size: 20px !important;
        line-height: 1.2 !important;
        font-style: normal !important;
        margin-bottom: 15px !important;
        font-weight: 600 !important;
    }

    .section-desc {
    /* The core font style from the screenshot */
    font-family: Arial, Helvetica, sans-serif !important; 
    font-size: 0.92rem !important; /* Slightly smaller to match the screenshot scale */
    line-height: 1.6 !important;
    color: #333333 !important; /* Dark grey/black like the image */
    
    /* Alignment fix: screenshot is NOT justified, it is left-aligned */
    text-align: justify !important; 
    
    padding: 0 10px;
    margin-top: 15px;
    letter-spacing: normal !important;
    word-spacing: normal !important;
    margin-bottom: 20px !important;
}

    /* 5. IMAGE LAYOUT */
    .about-images {
        width: 100% !important;
        height: auto !important;
        margin-top: 20px !important;
    }

    .img-large {
        position: relative !important;
        width: 100% !important;
        height: 250px !important;
        border-radius: 4px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }

    /* 6. HIDE DECORATIVE ELEMENTS ON MOBILE */
    .img-small, 
    .gold-frame, 
    .gold-line {
        display: none !important;
    }
}
@media (max-width: 767px) {
    /* 1. Reset the wrapper to stop the grid from locking the div in place */
    .about-wrapper {
        display: block !important; 
    }

    /* 2. This is the only way to force it down if margin-top is failing */
    .about-content {
        margin-top: 0 !important; /* Kills the -130px pull */
        padding-top: 180px !important; /* Physically pushes the text down 180px */
        
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    /* 3. Ensure the images don't overlap the text now that it moved */
    .about-images {
        margin-top: 40px !important;
        position: relative !important;
    }
}
/* next */


 /* --- CONSOLIDATED PREMIUM MOBILE CSS --- */
@media screen and (max-width: 768px) {
    .premium-about {
        padding: 40px 15px !important; 
        text-align: left; /* Aligns with the compact grid */
    }

    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    /* 1. Header & Typography */
    .display-title {
        margin-bottom: 20px !important;
    }

    .display-title .large-text {
        font-size: 30px !important;
        line-height: 1.1;
    }

    .lead-text, .description {
        font-size: 14px !important;
        line-height: 1.6 !important;
        text-align: justify !important; /* Your requested justification */
        max-width: 100% !important;
        margin-bottom: 15px !important;
    }

    .suitability-list {
        font-family: 'DM Sans', sans-serif !important;
        font-weight: 400 !important;
        font-size: 11px !important;
        line-height: 1.6 !important;
        /* color: #363535 !important; */
        text-align: justify !important; /* Kept your requested alignment */
        -webkit-font-smoothing: antialiased;

    }

    /* 2. Compact 2-Column Grid for Highlights */
    .highlights-block {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important; 
        gap: 20px !important;
        margin-top: -30px;
    }

    .highlight-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
        border-bottom: none !important;
    }

    /* 3. Synchronized Point Headings (DM Sans) */
    .highlight-item .num {
        font-family: 'DM Sans', sans-serif !important;
        font-size: 22px !important;
        font-weight: 600 !important;
        color: #c5a059;
        margin-bottom: -5px !important;
    }

    .highlight-item h3 {
        font-family: 'DM Sans', sans-serif !important;
        font-size: 15px !important; /* Sync with lead-text style */
        font-weight: 500 !important;
        line-height: 1.3 !important;
        margin-bottom: 5px !important;
        color: #1a1a1a !important;
        margin-top: -15px !important;
    }

    .highlight-item p {
        font-size: 17px !important;
        line-height: 1.4 !important;
        color: #666 !important;
    }
}

/* --- DESKTOP SYNC (Place outside media query) --- */
.highlight-item h3 {
    font-family: 'DM Sans', sans-serif !important;
    font-weight: 500 !important;
}
/* --- 1. DESKTOP TYPOGRAPHY SYNC --- */
.highlight-item h3 {
    /* Matching your Lead Text exactly */
    font-family: 'DM Sans', sans-serif !important;
    font-size: 18px !important;
    font-weight: 500 !important; /* Slightly firmer weight for headings */
    color: #1a1a1a !important;
    letter-spacing: -0.2px !important;
    margin-bottom: 8px !important;
}

/* --- 2. CLEANED MOBILE BLOCK (No Redundancy) --- */
@media screen and (max-width: 768px) {
    .premium-about {
        padding: 10px 15px !important;
    }

    /* Titles & Intro */
    .display-title .large-text {
        font-size: 30px !important;
        text-align: left;
        margin-top: -30px !important;
    }

    .lead-text, .description {
       font-family: 'DM Sans', sans-serif !important;
        font-weight: 400 !important;
        font-size: 15px !important;
        line-height: 1.6 !important;
        color: #363535 !important;
        text-align: justify !important; /* Kept your requested alignment */
        -webkit-font-smoothing: antialiased;

    }

    /* Compact 2-Column Grid */
    .highlights-block {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important; 
        gap: 20px !important;
        margin-top: -10px;
    }

    .highlight-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
        border-bottom: none !important;
        padding-bottom: 0 !important;
    }

    /* Point Headings - Mobile Sync */
    .highlight-item .num {
        font-family: 'DM Sans', sans-serif !important;
        font-size: 22px !important;
        font-weight: 600 !important;
        margin-bottom: 5px !important;
    }

    .highlight-item h3 {
       font-family: 'DM Sans', sans-serif !important;
        font-weight: 400 !important;
        font-size: 17px !important;
        line-height: 1.6 !important;
        color: #363535 !important;
        text-align: justify !important; /* Kept your requested alignment */
        -webkit-font-smoothing: antialiased;

    }

    .highlight-item p {
       font-family: 'DM Sans', sans-serif !important;
        font-weight: 400 !important;
        font-size: 14px !important;
        line-height: 1.6 !important;
        color: #363535 !important;
        text-align: left !important; /* Kept your requested alignment */
        -webkit-font-smoothing: antialiased;

    }
}


/* next */

@media screen and (max-width: 767px) {
    /* 1. SECTION & LAYOUT */
    .rooms-section {
        padding: 10px 0 5px 20px !important;
        background-color: #ffffff !important;
        overflow: visible !important; /* Changed from hidden to show headings */
        display: block !important;
        margin-top: -20px !important;
        margin-bottom: -80px !important;
    }

    /* 2. THE HEADINGS FIX (High Specificity) */
    .rooms-section .rooms-header {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-bottom: 25px !important;
        text-align: left !important;
        padding-right: 20px;
    }

    /* "Luxury Stay" */
    .rooms-section .rooms-header .eyebrows {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        color: #c5a059 !important; /* Gold */
        -webkit-text-fill-color: #c5a059 !important;
        font-size: 45px !important;
        letter-spacing: 2px !important;
        text-transform: uppercase !important;
        margin-bottom: -10px !important;
        font-family: 'DM Sans', sans-serif !important;
    }

    /* "Accommodations" */
    

    /* 3. HORIZONTAL SCROLLING GRID */
    .rooms-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        gap: 20px !important;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
    }

    .rooms-grid::-webkit-scrollbar {
        display: none;
    }

    .room-card {
        flex: 0 0 80% !important;
        scroll-snap-align: start;
        background: transparent;
    }

    .room-image {
        height: 280px !important;
        border-radius: 4px;
    }

    .room-info h3 {
        font-size: 18px !important;
        font-family: 'DM Sans', sans-serif !important;
        margin-top: -5px !important;
        color: #1a1a1a !important;
    }

    /* 4. CENTERED FOOTER BUTTON */
    .rooms-section .rooms-footer {
        margin-top: 20px !important;
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
        padding-right: 20px;
    }

    /* Unique Styling for the Explore Button */
    .rooms-section .uiverse-explore-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: 1px solid #1a1a1a;
        color: #1a1a1a;
        padding: 12px 25px !important;
        font-size: 11px !important;
        letter-spacing: 2px !important;
        text-decoration: none;
        text-transform: uppercase;
    }
}
/* --- MOBILE ONLY HEADINGS (767px and below) --- */
@media screen and (max-width: 767px) {
    
    /* 1. POSITIONING: Fix the blank space gap */
    .rooms-section {
        padding-top: 50px !important; /* Adjust this to move headings up/down */
        background-color: #ffffff !important;
        display: block !important;
    }

    /* 2. THE HEADER BOX: Manual Force */
    .rooms-section .rooms-header {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        text-align: left !important;
        margin-bottom: 25px !important;
        transform: none !important; /* Stops any hidden animations */
    }

    /* 3. MANUALLY COLOR 'Luxury Stay' (Gold) */
    .rooms-section .rooms-header .eyebrows {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        
        /* The Force Color */
        color: #c5a059 !important; 
        -webkit-text-fill-color: #c5a059 !important;
        
        font-size: 17px !important;
        font-family: 'DM Sans', sans-serif !important;
        text-transform: uppercase !important;
        letter-spacing: 2px !important;
         margin-bottom: 15px !important; 
    }

    /* 4. MANUALLY COLOR 'Accommodations' (Dark Charcoal) */
    
    /* 5. GRID SYNC: Ensure the rooms start after the text */
    .rooms-grid {
        margin-top: 20px !important;
        display: flex !important;
    }
}
@media screen and (max-width: 767px) {
    /* 1. Clear the old invisible heading */
    

    /* 2. MANUALLY WRITE THE TEXT using CSS */
    

    /* 3. DO THE SAME FOR "Luxury Stay" IF IT IS MISSING */
    

    .rooms-section .rooms-header::before {
        content: "Luxury Stay" !important;
        display: block !important;
        color: #c5a059 !important; /* Gold */
        font-family: 'DM Sans', sans-serif !important;
        font-size: 12px !important;
        text-transform: uppercase !important;
        letter-spacing: 3px !important;
        margin-bottom: 5px !important;
    }
}
@media screen and (max-width: 767px) {
    /* 1. Reset the heading container */
    .rooms-section .rooms-header {
        text-align: center !important; /* Center the text like screenshot 933 */
        display: block !important;
        margin-bottom: 10px !important;
    }

    /* 2. Style for "Accommodations" */
    .rooms-section .rooms-header .display-title .normal-acc {
         font-family: 'DM Sans', sans-serif !important;
        font-size: 23px !important;
        line-height: 1.2;
        margin-bottom: 12px !important;
        color: #2b2a2a;
        text-align: center !important;
        margin-left: 10px !important;
        margin-top: -50px !important;
    }
}
@media screen and (max-width: 767px) {
    /* 1. Center the button container */
    .rooms-section .rooms-footer {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
        margin: 40px 0 20px 0 !important;
        padding: 0 !important;
    }

    /* 2. Button with Black Border */
    .rooms-section .uiverse-explore-btn {
        /* Positioning Fixes */
        margin: 0 auto !important;
        transform: none !important;
        display: flex !important;
        align-items: center !important;
        
        /* Your original Font & Colors */
        font-family: 'DM Sans', sans-serif !important;
        color: #1a1a1a !important; 
        background: #ffffff !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        
        /* THE BLACK BORDER LINE */
        border: 1.5px solid #1a1a1a !important; 
        
        /* Shape & Spacing */
        padding: 10px 10px 10px 25px !important;
        border-radius: 50px !important;
        gap: 12px !important;
        text-decoration: none !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
        margin-top: -60px !important;
        margin-bottom: 50px !important;
    }

    /* 3. Icon Circle (Stays same) */
    .rooms-section .icon-circle {
    /* Fixed the typo: changed 25x to 25px */
    width: 25px !important;
    height: 25px !important; 
    
    border: 1px solid #1a1a1a !important;
    background: transparent !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transform: rotate(45deg) !important;
    
    /* Added this to ensure the circle doesn't collapse */
    flex-shrink: 0 !important; 
    box-sizing: border-box !important;
}

.rooms-section .icon-circle svg {
    /* Reduced SVG size to fit perfectly inside a 25px circle */
    width: 10px !important;
    height: 10px !important;
    fill: #1a1a1a !important;
    display: block !important;
}
}
/* next */
@media (max-width: 767px) {
    /* 1. Section Wrapper - Clean & Centered */
    .luxe-container { 
        padding: 50px 0 !important; /* Vertical gap reduced; 0 horizontal for swipe bleed */
        text-align: center !important;
        background-color: #ffffff;
        overflow: hidden;
        margin-top: -30px !important;
        margin-bottom: -100px !important;
    }

    /* 2. Header - Centered & Premium Typography */
    .luxe-header {
        margin-bottom: 25px !important;
        padding: 0 5px !important; /* Breathable padding for centered text */
        text-align: center !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .luxe-header h2 {
        font-family: 'DM Sans', sans-serif !important;
        font-size: 26px !important;
        line-height: 1.2;

        margin-bottom: 12px !important;
        color: #0a0a0a;
        text-align: center !important;
    }

    .luxe-header p {
    font-family: 'DM Sans', sans-serif !important;
        font-weight: 400 !important;
        font-size: 15px !important;
        line-height: 1.6 !important;
        color: #363535 !important;
        text-align: justify !important; /* Kept your requested alignment */
        -webkit-font-smoothing: antialiased;

}

    /* 3. Horizontal Swipe Grid - Editorial Style */
    .activity-grid {
        display: flex !important; /* Converts grid to horizontal row */
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        gap: 15px !important;
        padding: 0 20px 20px 20px !important; /* Aligns first card with header */
        margin: 0 !important;
        max-width: none !important;
        -webkit-overflow-scrolling: touch; /* Smooth iOS scrolling */
    }

    /* Hide Scrollbar */
    .activity-grid::-webkit-scrollbar {
        display: none;
    }

    /* 4. Image Cards - Cinematic "Peek" */
    .grid-box {
        flex: 0 0 80% !important; /* Card size + next card peek */
        height: 250px !important; /* Premium vertical height */
        scroll-snap-align: center; /* Snaps image to middle of screen */
        border-radius: 8px !important; /* Elegant rounded corners */
        position: relative;
        overflow: hidden;
        /* Reset desktop grid spans */
        grid-column: auto !important;
        grid-row: auto !important;
        margin-bottom: 50px !important;
    }

    /* 5. Centered Premium Button */
    .cta-wrapper {
        margin-top: 10px;
        width: 100%;
        display: flex;
        justify-content: center;
        text-align: center !important;
    }

    
}
@media (max-width: 767px) {
    /* 1. Ensure the parent container is a full-width flexbox */
    .cta-wrapper {
        margin-top: 25px !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important; /* Centers horizontally */
        align-items: center !important;
        text-align: center !important;
        padding-right: 0 !important; /* Removes any previous right padding */
        margin-left: 0 !important;
    }

    /* 2. Refine the button for mobile touch */
   
}
@media screen and (max-width: 767px) {
    .uiverse-explore-btn {
        /* 1. POSITIONING & MOVE UP */
        margin-left: 0 !important;
        margin-top: 0 !important;
        transform: translateY(-80px) !important;
        width: fit-content !important;
        margin-inline: auto !important;

        /* 2. ADD THIN DARK BORDER */
        border: 1px solid #1a1a1a !important; /* This is your thin dark borderline */
        background: #ffffff !important;
        color: #1a1a1a !important;
        box-shadow: none !important; /* Optional: remove shadow for a flatter, more modern look */

        /* 3. SIZE & STYLE SETTINGS */
        padding: 6px 6px 6px 18px !important;
        height: 40px !important;
        font-size: 11px !important;
        gap: 8px !important;
        letter-spacing: 1.5px !important;
        border-radius: 30px !important;
        display: flex !important;
        align-items: center !important;
        margin-bottom: -170px !important;
    }

    /* 4. ICON CIRCLE - Matches the dark theme */
    .icon-circle {
        width: 28px !important;
        height: 28px !important;
        border: 1px solid #1a1a1a !important; /* Matches the button border */
    }

    .icon-circle svg {
        width: 10px !important;
        height: 10px !important;
        fill: #1a1a1a !important; /* Ensures the arrow is dark too */
    }
}
/* next */


@media (max-width: 767px) {
    /* 1. Section Wrapper - Clean & Centered */
    .luxe-container-facilities {
        padding: 10px 0 !important; /* Reduced vertical gap; 0 horizontal for swipe */
        background-color: #ffffff;
        overflow: hidden;
        margin-bottom: -70px !important;
       
    }

    /* 2. Header - Centered Typography */
    .luxe-header {
        margin-bottom: 25px !important;
        padding: 0 20px !important; /* Side padding for text safety */
        text-align: center !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .luxe-header h2 {
        font-family: 'DM Sans', sans-serif !important;
        font-size: 20px !important;
        line-height: 1.2;
        margin-bottom: 12px !important;
        color: #1a1a1a;
         margin-top: -12px !important;
    }

    .luxe-header p {
        font-family: 'DM Sans', sans-serif !important;
        font-weight: 400 !important;
        font-size: 15px !important;
        line-height: 1.6 !important;
        color: #363535 !important;
        text-align: justify !important; /* Kept your requested alignment */
        -webkit-font-smoothing: antialiased;
        
    }

    /* 3. Horizontal Swipe Grid (Peek-a-boo) */
    .facilities-grid {
        display: flex !important; /* Changes grid to horizontal row */
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        gap: 15px !important;
        padding: 0 20px 20px 20px !important; /* Aligns first card with header */
        margin: 0 !important;
        max-width: none !important;
        grid-template-rows: none !important; /* Resets desktop grid rows */
        -webkit-overflow-scrolling: touch;
    }

    /* Hide Scrollbar */
    .facilities-grid::-webkit-scrollbar {
        display: none;
    }

    /* 4. Card Styling - Cinematic Focus */
    .grid-box {
        flex: 0 0 80% !important; /* Card takes 80% width, showing a peek of next */
        height: 250px !important; /* Matching your other cinematic sections */
        scroll-snap-align: center;
        border-radius: 4px !important;
        /* Reset desktop asymmetry spans */
        grid-column: auto !important;
        grid-row: auto !important;
    }

    /* 5. Centered Premium Button */
    .cta-wrapper {
        margin-top: 10px;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 0 !important;
    }

    .explore-btn {
        display: inline-block !important;
        padding: 12px 35px !important;
        font-size: 11px !important;
        letter-spacing: 2px !important;
        text-transform: uppercase;
        border: 1px solid #1a2f23 !important; /* Keeping your dark green theme */
        color: #1a2f23 !important;
        text-decoration: none;
        margin: 0 auto !important;
    }
}

/* next */

/* --- MOBILE ONLY: UNIQUE CAFÉ SWIPE & BUTTON --- */
@media (max-width: 767px) {
    /* 1. Reset Container */
    .premium-stepped-gallery {
        padding: 30px 0 !important;
        overflow: hidden !important;
        
    }

    /* 2. Center Text & Reset Desktop 420px Margin */
    .premium-stepped-gallery .gallery-intro {
        text-align: center !important;
        margin: 0 auto 20px auto !important;
        padding: 0 20px !important;
        position: relative !important;
        left: 0 !important;
    }

    .premium-stepped-gallery .gold-labell {
          font-family: 'Inter', sans-serif !important;
        font-size: 13px !important;
        letter-spacing: 2px !important;
        text-transform: uppercase;
        color: #b38e44 !important;
        margin-bottom: 5px !important;
        display: block;

        margin: 0 auto 10px auto !important;
        text-align: center !important;
    }

    .premium-stepped-gallery .gallery-title {
        margin: 0 auto !important;
        text-align: center !important;
        font-size: 24px !important;
    }

    /* 3. FORCE HORIZONTAL (Prevents stacking) */
    .premium-stepped-gallery .stepped-grid {
        display: flex !important;           /* Forces side-by-side */
        flex-direction: row !important;      /* Forces horizontal line */
        flex-wrap: nowrap !important;        /* PREVENTS IMAGES FROM GOING BELOW */
        overflow-x: auto !important;         /* Enables swiping */
        scroll-snap-type: x mandatory;
        gap: 15px !important;
        padding: 0 20px 20px 20px !important;
        margin: 0 !important;
        -webkit-overflow-scrolling: touch;
    }

    /* Hide scrollbar */
    .premium-stepped-gallery .stepped-grid::-webkit-scrollbar {
        display: none;
    }

    /* 4. Fix Image Sizing */
    .premium-stepped-gallery .gallery-item {
        flex: 0 0 80% !important;      /* Each image takes 80% of screen width */
        width: 80% !important;         /* Extra force for width */
        height: 280px !important;      /* Fixed height for all images */
        scroll-snap-align: center;
        
        /* Kill Desktop Grid Spans */
        grid-column: auto !important;
        grid-row: auto !important;
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        margin-bottom: 50px !important;
    }

    /* 5. Center the Unique Button */
    .premium-stepped-gallery .explore-container {
        margin-top: 15px !important;
        display: flex !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .premium-stepped-gallery .explore-btn {
        margin: 0 auto !important;    /* Removes desktop -60px margin */
        padding: 12px 35px !important;
        display: inline-block !important;
        position: relative !important;
        left: 0 !important;
    }
}

/* next */

/* Mobile Optimization for Retreat Section */
@media (max-width: 768px) {
    .retreat-section {
        /* On mobile, 100vh can sometimes be glitchy with the browser address bar. 
           We use 80vh to ensure the video stays crisp and the content is visible. */
        height: 87vh !important; 
        min-height: 500px;
        position: relative; /* Changing from sticky to relative for better mobile performance */
        z-index: 1;
        margin-top: -80px !important;
    }

    /* Reset z-index for the next section on mobile so it flows naturally */
    .next-section {
        z-index: 1;
    }

    .retreat-content {
        padding: 0 5%; /* Tighten padding for smaller screens */
    }

    .main-heading {
        font-size: 20px !important; /* Slightly smaller for mobile readability */
        letter-spacing: 2px;
        line-height: 1.2;
        margin-bottom: 8px;
        /* Adding a stronger text-shadow for better legibility over moving video */
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }

    .sub-heading {
        font-size: 14px !important;
        margin-bottom: 20px;
        letter-spacing: 1px;
        font-weight: 800 !important;
    }

    .text-block {
        padding-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.4);
    }

    .body-text {
       font-family: 'DM Sans', sans-serif !important;
        font-weight: 400 !important;
        font-size: 11px !important;
        line-height: 1.4 !important;
        /* color: #363535 !important; */
        text-align: justify !important; /* Kept your requested alignment */
        -webkit-font-smoothing: antialiased;

    }

    /* Video adjustments for mobile aspect ratios */
    .bg-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Prevent potential mobile browser grey-out/dimming */
        filter: brightness(0.9); 
    }
}
@media (max-width: 768px) {
    .retreat-section {
    /* Change 'sticky' to 'relative' so the video scrolls away with the text */
    position: relative !important; 
    top: auto !important; 
    
    /* Ensure z-index doesn't push it behind the gallery anymore */
    z-index: 1 !important; 
    
    height: 50vh !important;
    width: 100%;
    background-color: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Pull the section up to remove the gap from the gallery above */
    /* margin-top: 10px !important;  */
}

    .retreat-content {
        /* 4. Ensure no margins are pushing the text down internally */
        margin-top: 0 !important;
        padding: 0 5%;
        width: 100%;
    }

    /* Keep your existing heading/video styles below */
    .main-heading {
        font-size: 26px;
        letter-spacing: 2px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    
    .bg-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Ensures the video stays locked to the top of the container */
        object-position: top; 
    }
    

.video-container {
    /* Container stays absolute to fill the section, but moves with it */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensure no fixed attachment is applied here */
}
}

/* next */

/* --- MOBILE ONLY: PACKAGE INCLUSIONS --- */
@media (max-width: 767px) {
    /* 1. Tighten Section & Background */
    .package-section {
        padding: 40px 20px !important; /* Reduced top/bottom gap */
        background-color: #f8f7f2 !important;
    }

    /* 2. Center Header Typography */
    .package-section .main-header {
        text-align: center !important;
        margin-bottom: 40px !important; /* Reduced from 80px */
    }

    .package-section .title {
        font-size: 24px !important;
        margin-bottom: 12px !important;
        text-align: center !important;
        margin-top: -20px !important;
    }

    .package-section .welcome {
         font-family: 'DM Sans', sans-serif !important;
        font-weight: 400 !important;
        font-size: 15px !important;
        line-height: 1.6 !important;
        color: #363535 !important;
        text-align: justify !important; /* Kept your requested alignment */
        -webkit-font-smoothing: antialiased;
      

    }

    /* 3. Stack Groups with Premium Spacing */
    .package-section .inclusions-row {
        display: flex !important;
        flex-direction: column !important; /* Vertical stack for mobile */
        gap: 40px !important; /* Space between Dining, Adventure, etc. */
         margin-top: -5px !important; 
    }

    .package-section .inclusion-group {
        min-width: 100% !important;
        text-align: left !important; /* List items look better left-aligned */
        margin-bottom: 5px !important;
    }

    /* 4. Category Tags & Titles */
    .package-section .category-tag {
        font-size: 11px !important;
        letter-spacing: 2px !important;
        margin-bottom: 5px !important;
        text-align: left !important;
    }

    .package-section .group-title {
        font-size: 18px !important;
        padding-bottom: 10px !important;
        margin-bottom: 20px !important;
        border-bottom: 1px solid rgba(196, 164, 132, 0.3) !important; /* Subtle bronze line */
    }

    /* 5. Item List Refinement */
    .package-section .item-list li {
        font-family: 'DM Sans', sans-serif !important;
        font-weight: 400 !important;
        font-size: 15px !important;
        line-height: 1.6 !important;
        color: #363535 !important;
        text-align: justify !important; /* Kept your requested alignment */
        -webkit-font-smoothing: antialiased;
        
    }

    .package-section .item-list li::before {
        width: 15px !important; /* Slightly shorter lines for mobile */
        margin-right: 12px !important;
    }

    /* Disable the hover padding effect on mobile to prevent "shaking" screen */
    .package-section .item-list li:hover {
        padding-left: 0 !important;
    }

    /* Hide background giant text on mobile for a cleaner look */
    .package-section .bg-text {
        display: none !important;
    }
}
@media (max-width: 767px) {
    /* 1. Reduce space between the three main groups (Dining, Adventure, Leisure) */
    .package-section .inclusions-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important; /* Reduced from 40px */
        margin-top: -5px !important; 
    }

    /* 2. Tighten the individual group container */
    .package-section .inclusion-group {
        min-width: 100% !important;
        margin-bottom: 0px !important; /* Removed extra bottom margin */
    }

    /* 3. Tighten the space between Category Tag and Title */
    .package-section .category-tag {
        margin-bottom: 2px !important; /* Reduced from 5px */
    }

    /* 4. Reduce space below the Title (Meals Included, etc.) */
    .package-section .group-title {
        font-size: 17px !important;
        padding-bottom: 5px !important; /* Reduced padding */
        margin-bottom: 12px !important; /* Reduced from 20px */
        border-bottom: 1px solid rgba(196, 164, 132, 0.2) !important;
    }

    /* 5. Tighten the list items themselves */
    .package-section .item-list li {
        margin-bottom: 4px !important; /* Adds a tiny gap between list items */
        line-height: 1.4 !important; /* Slightly tighter line height */
    }
}
/* next */

/* --- MOBILE ONLY: PACKAGE COST (No Gold Border on 2nd Box) --- */
@media (max-width: 767px) {
    /* 1. Tighten Section & Fix Alignment */
    .pricing-section {
        padding: 10px 20px 40px 20px !important; 
        margin-left: 0 !important; 
        background-color: #f8f7f2 !important;
    }

    /* 2. Header */
    .pricing-section .main-header {
        text-align: center !important;
        margin-bottom: 25px !important;
    }

    /* 3. Pricing Grid - Vertical List */
    .pricing-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        margin-bottom: 35px !important;
    }

    .price-item {
        padding: 20px 20px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        background: #fff !important;
        border: 1px solid #dcdcdc !important; /* Standard border for all */
        border-radius: 4px !important;
        transition: none !important;
    }

    /* REMOVE GOLD BORDER: Force the second box to use the standard border */
    .price-item.highlighted {
        border-color: #dcdcdc !important; /* Matches others exactly */
        box-shadow: none !important; /* Keeps it clean and flat */
    }

    .room-type {
        font-family: 'DM Sans', sans-serif !important;
        font-weight: 400 !important;

        font-size: 15px !important;
        margin-bottom: 0 !important;
        color: #333 !important;
        font-weight: 400 !important;
    }

    .cost {
        font-family: 'DM Sans', sans-serif !important;
        font-weight: 400 !important;

        font-size: 17px !important;
        font-weight: 600 !important;
        color: #c4a484 !important; /* Keep the price gold for a premium touch */
    }

    /* 4. Additional Costs Row Fix */
    .additional-costs {
        max-width: 100% !important;
    }

    .extra-row {
        font-size: 15px !important;
        margin-bottom: 12px !important;
        display: flex !important;
        justify-content: space-between !important;
    }

    .line-spacer {
        margin: 0 10px !important;
        background: #eee !important;
    }

    .line-spacer::after {
        width: 40px !important; /* Subtle accent */
    }

    /* 5. Tax Note */
    .tax-note {
        margin-top: 20px !important;
        font-size: 13px !important;
        color: #e03731 !important;
    }
}
@media screen and (max-width: 767px) {
    /* 1. SECTION WRAPPER - Reduce outer gaps */
    

    /* 2. HEADER - Center and tighten */
   

    /* 3. UNIQUE TITLE - Scale for mobile */
    .pricing-section .title {
        font-family: 'DM Sans', sans-serif !important;
        font-size: 24px !important; /* Adjusted to fit one line */
        color: #201f1f !important;
        white-space: nowrap !important; /* Forces one line */
        margin: 0 0 10px 0 !important; /* FIX: Removes the -40px desktop margin */
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-bottom: 30px !important;
        margin-top: 10px !important;

    }

    /* 4. WELCOME TEXT - Minimalist sub-line */
    .pricing-section .welcome {
        font-family: 'Montserrat', sans-serif !important;
        font-size: 14px !important;
        color: #555555 !important;
        line-height: 1.5 !important;
        margin: 0 auto !important;
        max-width: 250px !important; /* Keeps it on two clean lines */
        text-transform: none !important;
    }

    /* 5. DURATION HIGHLIGHT - Make '2-night' pop */
    .pricing-section .welcome strong {
        color: #c4a484 !important; /* Elegant bronze/gold */
        font-weight: 600 !important;
        border-bottom: 1px solid rgba(196, 164, 132, 0.3);
    }
}

/* next */

/* --- MOBILE ONLY: SIGNATURE PRIVE EXPERIENCE --- */
@media (max-width: 767px) {
    /* 1. Tighten Section Wrapper */
    .prive-outer-container {
        padding: 30px 20px !important; /* Balanced gap from previous sections */
        background-color: #ffffff;
    }

    /* 2. Center Heading & Kill Desktop Margin (360px) */
    .prive-heading {
        text-align: center !important;
        margin-left: 0 !important;      /* Removes the 360px desktop push */
        margin-bottom: 25px !important; /* Reduced from 80px */
        font-size: 22px !important;
        line-height: 1.2;
        color: #201f1f !important;

    }

    /* 3. Hero Card Structure */
    .prive-hero-card {
        display: flex !important;
        flex-direction: column !important; /* Stack image on top of box */
        height: auto !important;
        justify-content: flex-start !important;
    }

    /* 4. Image Wrap: Full width with slight overlap effect */
    .prive-image-wrap {
        position: relative !important;
        width: 100% !important;
        height: 250px !important; /* Cinematic height for mobile */
        z-index: 1;
        border-radius: 4px 4px 0 0 !important; /* Rounded top corners only */
    }

    /* 5. Dark Content Box: Premium Floating Effect */
    .prive-content-box {
        position: relative !important;
        width: 90% !important;        /* Narrower than image for "overlap" look */
        margin: -40px auto 0 auto !important; /* Pulls box UP over the image */
        padding: 30px 25px !important;
        z-index: 2;
        background: #1a2f23 !important; /* Maintains Forest Green */
        box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
        border-radius: 4px;
        text-align: center !important; /* Center text for premium mobile feel */
    }

    .prive-content-box .leaf-icon {
        margin-bottom: 10px !important;
        font-size: 1.2rem !important;
    }

    .prive-content-box h3 {
        font-size: 17px !important;
        margin-bottom: 15px !important;
        text-align: center !important;
    }

    .prive-content-box p {
       font-family: 'DM Sans', sans-serif !important;
        font-weight: 400 !important;
        font-size: 15px !important;
        line-height: 1.6 !important;
        /* color: #363535 !important; */
        text-align: justify !important; /* Kept your requested alignment */
        -webkit-font-smoothing: antialiased;



    }

    /* 6. Centered Unique Button */
    .prive-button {
        font-size: 11px !important;
        padding-bottom: 3px !important;
        display: inline-block !important;
    }
}


/* next */

/* --- MOBILE ONLY: GATHERINGS SECTION --- */
@media (max-width: 767px) {
    /* 1. Tighten Section Wrapper */
    .gatherings-section {
        padding: 30px 0 40px 0 !important; /* Top/Bottom 30-40px, 0 sides for swipe bleed */
        background-color: #ffffff;
        overflow: hidden !important;
    }

    /* 2. Center & Refine Typography */
    .gatherings-top-title {
        font-family: 'DM Sans', sans-serif !important;
        font-size: 22px !important; /* Adjusted to fit one line */
        color: #201f1f !important;
        white-space: nowrap !important; /* Forces one line */
        margin: 0 0 10px 0 !important; /* FIX: Removes the -40px desktop margin */
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;

    }

    .gatherings-heading {
        font-size: 18px !important;
        line-height: 1.3 !important;
        margin-bottom: 20px !important;
        padding: 0 20px !important;
        text-align: center !important;
        color: #161616 !important;
    }

    .gatherings-content {
       font-family: 'DM Sans', sans-serif !important;
        font-weight: 400 !important;
        font-size: 15px !important;
        line-height: 1.6 !important;
        color: #363535 !important;
        text-align: justify !important; /* Kept your requested alignment */
        -webkit-font-smoothing: antialiased;

        padding: 0 25px !important;
        margin-bottom: 30px !important;
        text-align: justify !important;
    }

    .gatherings-content p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        text-align: justify;
    }

    /* 3. Horizontal Swipe Model (Force side-by-side) */
    .gatherings-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important; /* Prevents stacking one below another */
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        gap: 15px !important;
        padding: 0 20px 20px 20px !important; /* Adds "peek" room */
        margin: 0 0 30px 0 !important;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 60px !important;
    }

    /* Hide Scrollbar */
    .gatherings-grid::-webkit-scrollbar {
        display: none;
    }

    /* 4. Swipe Item Sizing (The Cards) */
    .gatherings-img-box {
        flex: 0 0 80% !important; /* Show 80% width for peek effect */
        height: 250px !important; /* Balanced height for mobile */
        scroll-snap-align: center;
        border-radius: 4px !important;
        position: relative !important;
    }

    /* 5. Unique Centered Button */
    .gatherings-btn {
        display: inline-block !important;
        padding: 12px 30px !important;
        font-size: 11px !important;
        margin: 0 auto !important;
        width: auto !important;
        text-align: center !important;
    }
}

/* next */

/* --- MOBILE ONLY: DECORATIVE IMAGE SECTION --- */
/* --- MOBILE ONLY: DECORATIVE IMAGE (LEFT ALIGN & VISIBLE) --- */
@media (max-width: 767px) {
    .image-section {
        display: block !important;       
        width: 100% !important;
        padding: 0 !important;           /* Absolute zero gap top/bottom */
        margin: 0 !important;            
        background-color: #ffffff !important;
        overflow: hidden !important;     /* Ensures the container wraps the image */
        margin-top: -110px !important;
    }

    .image-section img {
        width: 220px !important;         /* Adjusted size for visibility */
        height: 110px !important;         /* Maintain aspect ratio */
        display: block !important;       /* Forces it to be a solid block */
        margin-left: 0 !important;       /* Hard left touch */
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        opacity: 1 !important;           /* Ensures it is fully visible */
        position: relative !important;
        left: 0 !important;
    }
}


/* next */
/* --- PREMIUM FOOTER MOBILE OPTIMIZATION --- */
/* --- THE ULTIMATE BAGO MOBILE FOOTER (CONSOLIDATED) --- */
@media screen and (max-width: 768px) {
    
    /* 1. SECTION RESET: Center & Kill Top Gaps */
    footer.premium-footer {
        padding: 20px 0 30px !important; /* Tight top space */
        text-align: center !important;
        margin-top: 0 !important;
    }

    /* 2. CONTAINER: Force Stack & Zero Gap */
    footer.premium-footer .footer-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0 !important; /* Kills all mechanical gaps between blocks */
        padding: 0 25px !important;
    }

    /* 3. LOGO: Perfect Center & Overlap */
    footer.premium-footer .footer-hotel-info {
        margin-top: -55px !important; /* Overlap control */
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    footer.premium-footer .footer-hotel-info img {
        width: 220px !important; /* Boutique logo size */
        margin-left: 0 !important;
        margin-bottom: -15px !important; /* Sucks pillars up to logo */
    }

    /* 4. BRAND PILLARS: Zero Gap Sentences */
    footer.premium-footer .brand-pillars {
        margin: 0 0 15px 0 !important; /* 15px is the ONLY gap before Explore */
        padding: 0 !important;
        width: 100% !important;
    }

    footer.premium-footer .brand-pillars p {
        margin: 0 !important;
        padding: 0 !important;
        font-size: 17px !important;
        line-height: 1.3 !important;
        text-align: center !important;
    }

    /* 5. EXPLORE SECTION: Tight Center */
    footer.premium-footer .footer-explore,
    footer.premium-footer .footer-about {
        margin-top: 10px !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    footer.premium-footer .footer-heading {
        font-size: 16px !important;
        margin-bottom: 15px !important;
        letter-spacing: 2px !important;
    }

    footer.premium-footer .footer-heading::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    /* 6. CONTACT & SOCIALS: Alignment Fix */
    footer.premium-footer .social-icons {
        justify-content: center !important;
        margin-bottom: 20px !important;
    }

    footer.premium-footer .contact-details {
        align-items: center !important;
        gap: 10px !important;
    }

    footer.premium-footer .contact-details p {
        justify-content: center !important;
        font-size: 13px !important;
        margin: 0 !important;
    }
}
@media screen and (max-width: 768px) {
    /* 1. Neutralize the container */
    footer.premium-footer .footer-hotel-info {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important; /* Force children to center */
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* 2. Force the Image to center */
    footer.premium-footer .footer-hotel-info img {
        display: block !important;
        margin-left: auto !important;  /* The "Magic" centering trick */
        margin-right: auto !important; /* The "Magic" centering trick */
        float: none !important;        /* Kills any left-float */
        width: 200px !important;       /* Adjust size as needed */
    }

    /* 3. Ensure Brand Pillars follow the center */
    footer.premium-footer .brand-pillars {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: center !important;
    }
}
@media screen and (max-width: 768px) {

    /* 1. Pull the text UP to the logo */
    footer.premium-footer .footer-hotel-info img {
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 200px !important;
        
        /* AGGRESSIVE GAP KILLER */
        margin-bottom: -25px !important; /* Pulls the brand pillars up into the logo's space */
        padding-bottom: 0 !important;
    }

    /* 2. Zero out the Brand Pillars spacing */
    footer.premium-footer .brand-pillars {
        margin-top: 0 !important; 
        padding-top: 0 !important;
        margin-bottom: 20px !important; /* This is the ONLY gap before 'Explore' */
    }

    /* 3. Tighten the individual lines of text */
    footer.premium-footer .brand-pillars p {
        margin-bottom: 2px !important; 
        line-height: 1.2 !important;
    }
}
/* --- FOLLOW US MOBILE SPACING FIX --- */
@media screen and (max-width: 768px) {

    /* 1. Gap between 'Follow Us' heading and the icons */
    .premium-footer .footer-about .footer-heading {
        margin-bottom: 15px !important; /* Increase this to move underline further from text */
    }

   

    
}

