/* 1. Hide mobile elements by default (Desktop/Large Screens) */
.mobile-menu-overlay, 
.mobile-header {
    display: none !important;
}
@media (max-width: 992px) {
    /* 1. Force the main background to white so gaps aren't black */
    html, body {
        background-color: #ffffff !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;
    }
}

/* 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;
    }
}

@media (max-width: 992px) {
    /* 1. Reset the Container to ensure no desktop "leak" affects it */
    .book-now-container, 
    .mobile-book-container {
        display: flex !important;
        justify-content: flex-start !important; /* Align left to match menu items */
        width: 100% !important;
        margin-top: 30px !important; /* Space between the last menu item and button */
        padding: 0 !important;
    }

    /* 2. The Unique Button Styling */
    .book-now-standalone, 
    .mob-book-btn {
        /* Keep your OK width/height, but refine the scale */
        width: 280px !important;  /* Slightly narrower looks more "boutique" */
        height: 18px !important;  
        
        /* Font Fix: Small & Spaced Out = Premium */
        font-family: 'Montserrat', sans-serif !important;
        font-size: 11px !important;      /* Reduced size makes the button feel smaller */
        font-weight: 600 !important;
        text-transform: uppercase !important;
        letter-spacing: 2.5px !important; /* Extra space makes it look high-end */
        font-style: normal !important;   /* No italics here either */

        /* Design Fix */
        background-color: #c5a059 !important;
        color: #ffffff !important;
        border: none !important;
        border-radius: 0 !important;      /* Sharp edges like the screenshot */
        
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-decoration: none !important;
    }
}
@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;
    }
}

/* next */
@media screen and (max-width: 850px) {
    .page-section-container {
        margin-top: 10px !important;
        /* Adjust this value (e.g., -20px, -80px) to move it higher */
    }
}
@media screen and (max-width: 850px) {
    /* Hides the "Unforgettable Gatherings" title on mobile */
    .main-title {
        display: none !important;
        
    }

    /* Adjusts the top row layout now that the title is gone */
    .row-one {
        margin-bottom: 20px !important;
        display: block !important;
    }

    /* Optional: Ensure the privacy tag looks good alone */
    

    /* Removes the large background ghost text to prevent horizontal scrolling */
    .ghost-text {
        display: none !important;
    }
}
@media screen and (max-width: 850px) {
    /* Target the tag with high specificity */
    .editorial-wrapper .row-one .privacy-tag {
        font-size: 17px !important; /* Small but readable */
        line-height: 1.2 !important;
        display: block !important;
        width: 100% !important;
        max-width: none !important;
        border-left: 2px solid #b59b7c !important;
        padding-left: 10px !important;
        margin-bottom: 30px !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
       
    }

    /* Ensure the title is gone so the tag has room */
    .main-title {
        display: none !important;
    }
}
@media screen and (max-width: 850px) {
    /* 1. Reduce the massive 120px padding from the section */
    .editorial-section {
        padding: 40px 5% !important; 
    }

    /* 2. Reset the wrapper to start at the top */
    .editorial-wrapper {
        margin-top: 0 !important;
    }

    /* 3. Ensure the top row (where the tag is) has no top margin */
    .row-one {
        margin-top: 0 !important;
        margin-bottom: 20px !important;
    }

    /* 4. Completely remove the subheading gap/hidden space */
    .editorial-subheading {
      font-size: 14px !important;
        font-weight: 400;
        line-height: 1.2;
        /* margin-top: 2px !important; */
        margin-bottom: 20px !important;
        color: #1a1a1a;
        font-style: normal !important;
    }
    
    /* 5. Hide the title as requested previously */
    .main-title {
        display: none !important;
    }
   
}
@media screen and (max-width: 850px) {
    /* 1. Set the main paragraph style */
    .resort-intro {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        text-align: justify !important;
        color: #444 !important; /* Standard dark grey/black */
        font-family: 'Inter', sans-serif !important; /* Or your preferred main font */
    }

    /* 2. Strip unique colors/fonts from the highlighted spans */
    .resort-intro .brand-highlight, 
    .resort-intro .waterway-link {
        color: inherit !important;        /* Forces it to match the main text color */
        font-family: inherit !important;   /* Forces it to match the main font */
        font-size: inherit !important;     /* Forces it to match the 0.95rem */
        font-weight: inherit !important;   /* Removes the bolding */
        font-style: normal !important;     /* Removes any italics */
        border-bottom: none !important;    /* Removes the gold/teal underline */
        text-transform: none !important;   /* Removes uppercase if any */
        letter-spacing: normal !important;
        padding: 0 !important;
    }

    /* 3. Handle the gap for the <br> */
    .resort-intro br {
        display: block !important;
        content: "";
        margin-top: 10px !important;
    }
}
@media screen and (max-width: 850px) {
    /* 1. Privacy Tag - Using DM Sans and Signature Gold */
    .editorial-wrapper .row-one .privacy-tag {
        font-family: 'DM Sans', sans-serif !important;
        font-weight: 500 !important;
        font-size: 14px !important; /* Refined for a tag look */
        line-height: 1.3 !important;
        color: #b38e44 !important; /* Signature Gold */
        text-transform: uppercase !important;
        letter-spacing: 1.5px !important;
        border-left: 2px solid #b38e44 !important;
        padding-left: 12px !important;
        margin-bottom: 25px !important;
        -webkit-font-smoothing: antialiased;
    }

    /* 2. Editorial Subheading (DM Sans 15px Model) */
    .editorial-subheading {
        font-family: 'DM Sans', sans-serif !important;
        font-weight: 500 !important;
        font-size: 15px !important;
        line-height: 1.4 !important;
        color: #313030 !important;
        margin-bottom: 15px !important;
        font-style: normal !important;
        -webkit-font-smoothing: antialiased;
    }

    /* 3. Resort Intro Paragraph (DM Sans 15px Model) */
    .resort-intro {
        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;
    }

    /* 4. Strip unique styles from links/highlights to match the model */
    .resort-intro .brand-highlight, 
    .resort-intro .waterway-link {
        font-family: inherit !important;
        font-size: inherit !important;
        font-weight: inherit !important;
        color: inherit !important;
        text-decoration: none !important;
        border: none !important;
        padding: 0 !important;
    }

    /* 5. Handle the line break spacing */
    .resort-intro br {
        content: "";
        display: block;
        margin-bottom: 10px;
    }
}
@media screen and (max-width: 850px) {
    /* Change 40px to 100px (or higher) to move it further down */
    .editorial-section {
        padding: 100px 5% 40px 5% !important; 
    }

    /* Additionally, you can add margin to the wrapper for more space */
    .editorial-wrapper {
        margin-top: 30px !important;
    }
}
@media screen and (max-width: 850px) {
    /* 1. Reset the Section Padding to move it down */
    .editorial-section {
        padding: 80px 5% 40px 5% !important;
    }

    /* 2. THE FIX: Stop the overlapping */
    .editorial-subheading {
        margin-top: 0 !important;   /* REMOVE the negative -100px */
        top: 0 !important;          /* Reset fine-tuning */
        position: relative !important;
        display: block !important;
        
        /* Gold Heading Styling */
        font-family: 'DM Sans', sans-serif !important;
        font-size: 14px !important;
        
        text-transform: uppercase !important;
        letter-spacing: 2px !important;
        margin-bottom: 15px !important; /* Space between Gold and Black text */
    }

    /* 3. Privacy Tag Reset (If you are using this as the gold text) */
    .editorial-wrapper .row-one .privacy-tag {
        margin-top: 0 !important;
        margin-bottom: 15px !important;
        border-left: 2px solid #b38e44 !important;
        padding-left: 12px !important;
    }

    /* 4. Ensure Paragraph starts below the headings */
    .resort-intro {
        margin-top: 20px !important;
        display: block !important;
        clear: both !important;
        margin-bottom: 20px !important;
    }
}
@media screen and (max-width: 850px) {
    /* 1. Reset the Row layout to stack vertically */
    .row-one, .row-two {
        display: flex !important;
        flex-direction: column !important;
        margin-bottom: 0 !important;
    }

    /* 2. Fix the Gold Heading (Privacy Tag) */
    .editorial-wrapper .row-one .privacy-tag {
        margin-top: 0 !important;
        margin-bottom: 10px !important; /* Controlled gap below gold text */
        position: static !important;   /* Removes any 'top' or 'left' shifts */
        line-height: 1.4 !important;
    }

    /* 3. Fix the Black Heading (Subheading) - THE CRITICAL PART */
    .editorial-subheading {
        margin-top: 0 !important;      /* Removes the -100px pull */
        margin-bottom: 20px !important; /* Space before the paragraph starts */
        top: 0 !important;             /* Removes the -10px shift */
        position: static !important;   /* Forces it to stay in line */
        display: block !important;
        line-height: 1.3 !important;   /* Prevents letters from touching */
    }

    /* 4. Ensure the paragraph sits below everything */
    .resort-intro {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}
/* next */

@media (max-width: 800px) {
    /* 1. Eliminate Section Gaps */
    .editorial-gallery {
        padding: 0 20px 20px 20px !important; /* Zero top padding, minimal bottom */
        margin-top: -10px !important;         /* Pulls it up to meet the previous section */
    }

    .page-block {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    /* 2. Editorial Staggered Grid (Not just a list) */
    .gallery-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important; /* 2-column layout */
        grid-auto-rows: 150px !important;                 /* Base row height */
        gap: 12px !important;
        height: auto !important;
    }

    /* 3. Custom Image Sizing for "Magazine" Look */
    .gallery-item {
        height: 100% !important;
        border-radius: 4px !important; /* Softer edges for mobile */
    }

    /* Make the first image span both columns for impact */
    .pic-1 { 
        grid-column: 1 / 3 !important; 
        grid-row: span 2 !important; 
    }

    /* Make the second image tall */
    .pic-2 { 
        grid-column: 1 / 2 !important; 
        grid-row: span 2 !important; 
    }

    /* Square smaller images */
    .pic-3 { 
        grid-column: 2 / 3 !important; 
        grid-row: span 1 !important; 
    }

    .pic-4 { 
        grid-column: 2 / 3 !important; 
        grid-row: span 1 !important; 
    }

    /* 4. Touch Interactions */
    .gallery-item img {
        filter: contrast(100%) brightness(100%) !important; /* Keep images bright on mobile */
        transform: scale(1) !important; /* Disable hover scale for performance */
    }

    /* Show a hint of the overlay for premium branding */
    .img-overlay {
        opacity: 0.8 !important;
        top: 10px !important;
        left: 10px !important;
    }
}

    /* ... rest of your mobile gallery CSS ... */




@media (max-width: 800px) {
    /* 1. The Container: Create the horizontal track */
    .page-block .editorial-gallery .gallery-grid {
        display: flex !important;           /* Stack side-by-side */
        flex-direction: row !important;      /* Force horizontal */
        overflow-x: auto !important;         /* Enable scrolling */
        scroll-snap-type: x mandatory !important; /* Premium snap effect */
        gap: 12px !important;
        padding: 0 20px 25px 20px !important; /* Space on sides and bottom */
        
        /* Hide scrollbar for clean look */
        scrollbar-width: none; 
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch; /* Smooth swipe for iOS */
    }

    /* Hide scrollbar for Chrome/Safari */
    .gallery-grid::-webkit-scrollbar {
        display: none !important;
    }

    /* 2. The Image Boxes: Define the swipe size */
    .gallery-item {
        flex: 0 0 82% !important;   /* Each image takes 82% width */
        height: 320px !important;   /* Fixed height for a cinematic feel */
        scroll-snap-align: center !important; /* Centers the image on snap */
        
        /* Reset any desktop grid positions */
        grid-column: auto !important;
        grid-row: auto !important;
        width: 82% !important;
        position: relative !important;
    }

    /* 3. The Images: Fix the fit */
    .gallery-item img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 8px !important; /* Modern rounded look */
    }

    /* 4. Overlay Fix (Optional) */
    .img-overlay {
        opacity: 1 !important;
        bottom: 20px !important;
        top: auto !important;
        left: 20px !important;
    }
}
/* next */

@media (max-width: 800px) {
    /* 1. Reduce Section Spacing */
    .luxury-privacy-section {
        padding: 40px 10px !important; /* Tight top/bottom padding */
        background: #fafafa !important;
        margin-bottom: -30px !important;
    }

    /* 2. Layout Alignment */
    .privacy-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
    }

    /* 3. Title Box Refinement */
    .privacy-title-box {
        padding-left: 20px !important;
        border-left: 3px solid #1a868a !important;
    }

    .privacy-title-box h2 {
        font-size: 1.7rem !important; /* Large, bold editorial title */
        line-height: 1.1 !important;
        color: #1a1a1a !important; /* Darker for readability */
        margin-bottom: 15px !important;
        letter-spacing: -0.5px !important;
        text-transform: none !important; /* Sentence case feels more modern */
    }

    .privacy-title-box p {
        font-size: 15px !important;
        line-height: 1.5 !important;
        color: #555 !important;
    }

    /* 4. Feature Cards: Slim & Clean */
    .feature-points {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
    }

    .point-card {
        padding: 25px 20px !important;
        box-shadow: none !important; /* Remove heavy shadow for clean look */
        border: 1px solid #efefef !important;
        border-radius: 2px !important;
        transform: none !important; /* Disable hover movement on mobile */
    }

    .point-card::before {
        top: 15px !important;
        right: 15px !important;
        font-size: 9px !important;
        opacity: 0.6;
    }

    .point-card h4 {
        font-size: 16px !important;
        margin-bottom: 5px !important;
        letter-spacing: 0.5px !important;
    }

    .point-card p {
        font-size: 13px !important;
        line-height: 1.4 !important;
        color: #777 !important;
    }

    /* 5. Closing Statement */
   .closing-statement {
        /* 1. THE FONT (Clean & Modern) */
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
        font-size: 15px !important; /* Standard mobile reading size from image */
        font-weight: 400 !important;
        
        /* 2. SPACING (The 'Why' it looked wrong) */
        line-height: 1.65 !important; /* This gives that 'breathable' look in the image */
        letter-spacing: -0.01em !important;
        
        /* 3. COLOR & ALIGNMENT */
        color: #333333 !important; /* Soft charcoal grey */
        text-align: left !important;
        
        /* 4. BOX SPACING */
        margin-top: 10px !important;
        padding: 0 20px !important;
        display: block !important;
    }
}

/* next */

@media (max-width: 850px) {
    /* 1. Reduce Section Gaps */
    .architectural-section {
        padding: 10px 20px !important; /* Balanced breathing room */
        background: #ffffff;
    }

    /* 2. Stack Layout */
    .arch-wrapper {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }

    /* 3. Image Collage Refinement */
    .image-side {
        display: grid !important;
        grid-template-columns: 1.2fr 0.8fr !important; /* Asymmetric for premium feel */
        gap: 10px !important;
        order: 1; /* Images appear first on mobile */
    }

    .square-box {
        border-radius: 4px;
        aspect-ratio: 1 / 1 !important;
    }

    .main-img {
        grid-row: span 2 !important;
        aspect-ratio: 0.8 / 1 !important; /* Vertical focus */
    }

    /* 4. Text Content Alignment */
    .arch-content {
        order: 2;
        text-align: left !important;
    }

    /* 5. Subtitle & Line Fix */
    .subtitle-container {
        gap: 10px !important;
        margin-bottom: 15px !important;
    }

    .gold-subtitle {
        font-size: 13px !important; /* Scaled for mobile */
        white-space: nowrap;
    }

    .center-line {
        transform: translateY(-2px) !important; /* Re-aligned for smaller text */
    }

    /* 6. Typography Refinement */
    

    .gold-highlight {
        padding: 0 4px !important;
        font-size: 0.9em !important;
    }

    .luxury-heading + p {
        font-size: 15px !important;
        line-height: 1.6 !important;
        color: #555 !important;
        text-align: left !important; /* Better readability on small screens */
    }

    .water-name {
        font-weight: 700 !important;
        color: #111;
        border-bottom: 1px solid rgba(197, 160, 89, 0.4) !important;
    }
}
@media (max-width: 850px) {
    /* Target the Heading: "Unique 3-Side..." */
    

    /* Target the "3-Side" span inside the heading */
    .luxury-heading .gold-highlight {
        font-family: inherit !important;
        font-weight: 400 !important; /* Matches the rest of the sentence */
        font-size: inherit !important;
        color: #c5a059 !important;
        text-transform: none !important;
        padding: 0 !important;
    }

    /* Target the Paragraph: "Nestled at the..." */
    .luxury-heading + p {
        font-family: 'Inter', Arial, sans-serif !important;
        font-size: 15px !important;
        font-weight: 400 !important;
        color: #555 !important;
        line-height: 1.6 !important;
        text-align: left !important;
    }

    /* Ensure place names inside the paragraph are also normal/lowercase */
    .water-name {
        font-family: inherit !important;
        font-weight: 400 !important;
        text-transform: none !important; /* Removes the all-caps look */
        font-style: normal !important;
        border: none !important;
    }
}
@media (max-width: 850px) {
    /* 1. Reduce section spacing */
    .architectural-section {
        padding: 15px 20px !important;
    }

    /* 2. Style ONLY the paragraph: Normal & Small */
    .luxury-heading + 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. Style the place names inside that paragraph */
    .water-name {
        font-family: inherit !important;
        font-weight: 400 !important;
        text-transform: none !important; /* Removes uppercase */
        font-style: normal !important;
        border: none !important;
        color: inherit !important;
    }

    /* 4. NOTE: .luxury-heading is left alone here, 
       so it will keep your original bold/luxury font. */
}
@media (max-width: 850px) {
    /* Target the heading and its inner gold span */
    .luxury-heading, 
    .luxury-heading .gold-highlight {
        /* 1. Force a clean, standard font (Removes Tenor Sans/Desktop font) */
        font-family: 'Inter', Arial, sans-serif !important;
        
        /* 2. Set to "Normal" weight (Removes the bold) */
        font-weight: 300 !important; 
        
        /* 3. Set a standard mobile size */
        font-size: 19px !important;
        
        /* 4. Ensure it reads like a normal sentence, not all caps */
        text-transform: none !important;
        letter-spacing: 0 !important;
        line-height: 1.4 !important;
        color: #111 !important;
    }

    /* Optional: If the line break <br> is making it look too big, hide it */
    .luxury-heading br {
        display: inline !important;
        content: " " !important;
    }
}


/* next */

@media (max-width: 900px) {
    /* 1. Wrapper & Main Header */
    .packages-wrapper {
        padding: 50px 10px !important; /* Reduced side padding to prevent overflow */
        overflow-x: hidden; /* Safety lock */
    }

    .package-header-main {
        margin-bottom: 25px !important;
    }

    .package-header-main h3 {
        margin-bottom: 60px !important;
        font-size: 16px !important;
        letter-spacing: 1px !important;
        
        
    }

    /* 2. Block & Identity */
    .package-block {
        margin-bottom: 30px !important;
        width: 100% !important;
        box-sizing: border-box;
        border-radius: 8px;
        overflow: hidden;
    }

    .block-identity {
        padding: 15px !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 5px !important;
    }

    .package-title {
        font-size: 11px !important;
        letter-spacing: 1px !important;
        white-space: normal !important; /* Allows title to wrap if too long */
    }

    .night-tag {
        font-size: 1.1rem !important;
    }

    /* 3. Layout Stacking */
    .block-content-flex {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
    }

    .col-left, .col-right {
        padding: 25px 15px !important; /* Balanced padding for narrow screens */
        width: 100% !important;
        box-sizing: border-box !important;
        border-left: none !important;
        border-top: none !important;
    }

    /* 4. Left Column & Price (The Hook) */
    .col-left {
        order: 1;
    }

    .schedule-text {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        padding: 12px !important;
        word-wrap: break-word;
    }

    .price-box-screenshot {
        width: 100% !important;
        text-align: center !important;
        margin: 15px 0 0 0 !important;
        padding: 20px 10px !important;
        box-sizing: border-box !important;
    }

    .price-amt-gold {
        font-size: 1.5rem !important; /* Slightly smaller to prevent breaking */
        display: block;
        width: 100%;
    }

    /* 5. Right Column (Inclusions) */
    .col-right {
        order: 2;
        padding-top: 0 !important;
    }

    .incl-list {
        margin-top: 5px !important;
    }

    .incl-list li {
         font-family: 'DM Sans', sans-serif !important;
        font-weight: 400 !important;
        font-size: 15px !important;
        line-height: 1.3 !important;
        color: #363535 !important;

    }

    /* T&C Line Break */
    .tc-text {
        display: block !important;
        margin-top: 4px !important;
        font-size: 11px !important;
        opacity: 0.8;
    }

    /* 6. Info Footer */
    .info-content {
        background: #f9f9f9;
        padding: 20px 15px !important;
        margin: 0 -15px -25px -15px !important; /* Aligns with new padding */
        width: auto !important;
    }

    .info-content p {
        font-size: 0.9rem !important;
        word-wrap: break-word;
    }
}
@media (max-width: 900px) {
    /* 1. Remove Bottom Gap completely */
    .packages-wrapper {
        padding-top: 40px !important;
        padding-bottom: 0 !important; /* Forces bottom gap to zero */
        margin-bottom: 20px !important; /* Removes any external spacing */
        margin-top: -20px !important;
    }

    /* 2. Fix the last block's margin */
    .package-block:last-child {
        margin-bottom: 0 !important; /* Removes gap after the last package card */
    }

    /* 3. Adjust the grey info footer inside the card */
    .info-content {
        /* This ensures the grey box touches the bottom of the card perfectly */
        margin-bottom: -25px !important; 
    }
}
@media (max-width: 900px) {
    /* 1. Force the labels and prices to behave as equal columns */
    .price-box-screenshot table {
        width: 100% !important;
    }

    /* Labels: Left aligned */
    .price-box-screenshot td:first-child {
        width: 50% !important;
        text-align: left !important;
        font-size: 10px !important; /* Smaller label for elegance */
    }

    /* Amounts: Right aligned so currency symbols (₹) line up perfectly */
    .price-box-screenshot td.price-amt-gold {
        width: 50% !important;
        text-align: right !important; /* This aligns the currency symbols */
        font-size: 1.25rem !important; /* Reduced amount size */
        padding-top: 5px !important; /* Balanced spacing */
        white-space: nowrap;
    }
}
/* next */

@media screen and (max-width: 767px) {
    /* 1. FORCE HEADING SIZE (Overriding your Inline Style) */
    .authority-section .auth-left h2[style] { 
        font-size: 15px !important; /* Smaller font */
        margin-top: 5px !important;  /* Reduces gap above heading */
        margin-bottom: 5px !important; /* Reduces gap below heading */
        line-height: 1.4 !important;
        font-weight: 400 !important;
        max-width: 100% !important;
    }

    /* 2. REMOVE LARGE GAPS BETWEEN BLOCKS */
    .authority-section {
        padding: 30px 20px !important; /* Shrinks the overall section height */
    }

    .auth-left { 
        padding-bottom: 10px !important; /* Pulls the list up closer */
        border-bottom: 1px solid #eeeeee; 
    }

    .auth-right { 
        padding-top: 15px !important; /* Pulls the list up closer */
    }

    /* 3. SHRINK THE LIST SPACING */
    .point-row {
        padding: 6px 0 !important; /* Makes the list items tighter */
    }

    .point-desc {
        font-size: 14px !important;
        line-height: 1.3 !important;
    }

    /* 4. FIX THE TRUST BADGE */
    .trust-badge {
        font-size: 5px !important;
        margin-bottom: 2px !important;
        display: inline-block !important;
        margin-left: 30px !important;
    }
}
@media screen and (max-width: 767px) {
    /* 1. THE BADGE: Use Scale to get below the browser's limit */
    .trust-badge {
        display: inline-block !important;
        font-size: 14px !important; /* Set to the browser's minimum */
        
        /* SHRINK EFFECT */
        transform: scale(0.7) !important; /* This makes 10px look like 7px */
        transform-origin: left center !important; /* Keeps it aligned to the left */
        
        /* REMOVE GAPS */
        margin-left: 50px !important; /* Removed the 30px offset that causes gaps */
        margin-bottom: 20px !important;
        padding-bottom: 0 !important;
        
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        color: #c5a059 !important;
    }

    /* 2. THE HEADING: Pull it up to close the gap */
    .authority-section .auth-left h2[style] {
        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. THE SECTION: Remove the overall large empty space */
    .authority-section {
        padding-top: 20px !important;   /* Reduced from 50px */
        padding-bottom: 20px !important;
    }

    .auth-left {
        padding-bottom: 5px !important; /* Closes gap between top and list */
    }
}
@media screen and (max-width: 767px) {
    /* 1. The Main Text (Descriptions) */
    .point-desc {
        /* Matches your Screenshot 934 Style */
       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;

        line-height: 1.4 !important;
        color: #444444 !important; /* Soft grey for readability */
        letter-spacing: -0.1px !important;
    }

    /* 2. The Numbers (01, 02, etc.) */
    .point-num {
        font-family: 'DM Sans', sans-serif !important;
        font-size: 12px !important;
        font-weight: 700 !important; /* Bold numbers for better contrast */
        color: #c5a059 !important; /* Matches your Gold theme */
        margin-right: 15px !important; /* Closes the gap between number and text */
    }

    /* 3. Tighten the Vertical Gap between items */
    .point-row {
        padding: 8px 0 !important; /* Reduces large gaps between rows */
        display: flex !important;
        align-items: center !important;
    }
    
}
@media screen and (max-width: 767px) {
    /* 1. THE QUOTE CONTAINER */
    .auth-footer {
        margin-top: -30px !important; /* Gap between the list and the quote */
        padding: 0 10px !important;
    }

    /* 2. THE QUOTE TEXT STYLE */
    .auth-footer p {
        /* Matches your Screenshot 934 Style */
        font-family: 'Inter', 'DM Sans', Arial, sans-serif !important;
        font-size: 15px !important;
        font-weight: 400 !important;
        line-height: 1.6 !important;
        color: #555555 !important;
        
        /* THE "QUOTE" DESIGN */
        text-align: left !important;
        padding-left: 15px !important;
        border-left: 2px solid #c5a059 !important; /* Gold vertical line for premium look */
        font-style: italic !important; /* Makes it look like a real testimonial */
    }

    /* 3. OVERRIDE THE RED COLOR (Optional) */
    /* If you want the word 'trust' to match your gold theme instead of red: */
    .auth-footer p span {
        color: #c5a059 !important; /* Change this to #c82333 if you want to keep the red */
    }
}
/* 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: 10px 0 30px !important; /* Tight top space */
        text-align: center !important;
        margin-top: -20px !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 */
    }

   

    
}