/* ===== GLOBAL STYLES ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;

  background: white;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

.container { /* Global container for general use */
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

.font-alata {
  font-family: 'Alata', sans-serif;
}

/* Hide scrollbar utility */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}


/*
**********************************************************
* START: Styles from 'Super 8 - Premium Experience' Header
**********************************************************
*/

 header {
        position: sticky;
        top: 0;
        z-index: 1000;
        transition: all 0.3s ease; 
    }

    .header-widgets {
        width: 100%;
        height: 45px; 
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 8%; 
        background: #206c56;
        color: #fff;
        position: relative;
        box-shadow: 0 2px 15px rgba(0,0,0,0.3);
        transition: all 0.4s ease; 
        font-family: 'Montserrat', sans-serif;
    }

    .widget-weather {
        font-size: 14px; 
        font-weight: 500;
        letter-spacing: 0.5px;
        display: flex;
        align-items: center;
    }

    .widget-date {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        font-weight: 500;
        letter-spacing: 0.5px;
        top: -35px;
        color: white;
        border-radius: 20px;
        white-space: nowrap;
        font-family: 'Montserrat', sans-serif !important;
    }

    .widget-social {
        display: flex;
        gap: 20px;
        align-items: center;
    }

    .social-icon {
        color: #fff;
        font-size: 16px;
        transition: color 0 0.3s ease;
    }

    .social-icon:hover {
        color: #f8d56b;
    }

    .btn-book-now {
        background-color: #f8d56b;
        color: #1a1a1a;
        padding: 12px 25px; 
        text-decoration: none;
        border-radius: 25px; 
        font-weight: 600;
        font-size: 15px; 
        transition: all 0.3s ease;
        white-space: nowrap; 
        /* margin-left: 25px; REMOVED - Spacing now handled by .menu-right's gap */
        border: none;
        cursor: pointer;
        box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    }

    .btn-book-now:hover {
        background-color: #e0b030;
        color: #000;
        transform: translateY(-2px);
        box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    }

    .navigasi {
        width: 100%;
        background: #fff;
        /* Adjusted padding for more consistent side spacing */
        padding: 20px 0.5%; 
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        display: flex; 
        align-items: center; 
        justify-content: space-between; 
        position: relative; 
        font-family: 'Georgia', serif;
    }

    header.sticky {
        position: fixed;
        top: 0;
        width: 100%;
    }

    header.sticky .header-widgets {
        height: 0;
        padding: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-100%); 
    }

    header.sticky .navigasi {
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        padding: 15px 1%; 
    }

    header.sticky .logo {
        width: 140px; 
        height: 60px; 
    }

    header.sticky .menu-item a {
        padding: 10px 20px; 
        font-size: 15px;   
    }
    header.sticky .btn-book-now {
        padding: 10px 20px; 
        font-size: 14px; 
    }

    .logo-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 2;
        transition: all 0.3s ease;
        flex-shrink: 0; 
        /* Original: margin: 0 20px; */
        margin: 0 5px; /* MODIFIED: Decreased space on both sides of the logo to 5px */
    }

    .logo {
        position: relative;
        width: 180px; 
        height: 80px; 
        perspective: 1000px;
        z-index: 3;
        transition: all 0.3s ease; 
    }

    .logo-img {
        position: relative; 
        width: 90%; 
        height: 100%;
        transform-style: preserve-3d;
        transform: rotateY(0deg); 
    }

    .logo-img img {
        width: 90%; 
        height: 100%;
        object-fit: contain;
    }

    .menu-left, .menu-right {
        display: flex;
        align-items: center;
        flex: 1;
    }

    .menu-right {
        justify-content: flex-end;
        /* Added gap to provide consistent spacing between menu items and the "Book Now" button */
        gap: 20px; 
    }

    .menu-left ul, .menu-right ul {
        display: flex;
        list-style: none;
        padding: 0;
        margin: 0;
        align-items: center; 
        gap: 20px; 
    }

    .menu-item a { 
        text-decoration: none;
        color: #333;
        font-size: 16px; 
        font-weight: 600;
        padding: 12px 24px; 
        transition: all 0.3s ease;
        border-radius: 30px;
        background: rgba(255,255,255,0.8);
        box-shadow: 0 3px 6px rgba(0,0,0,0.1);
        border: 1px solid rgba(248,213,107,0.3);
        white-space: nowrap; 
        display: block; 
    }

    .menu-item a:hover {
        color: #000;
        background: #f9dd90; 
        transform: translateY(-2px);
        box-shadow: 0 5px 10px rgba(0,0,0,0.15);
    }

    .menu-item.active a {
        color: white;
        background: #206c56;
        transform: translateY(-2px);
        box-shadow: 0 5px 10px rgba(0,0,0,0.15);
        font-weight: 700;
    }

    /* Dropdown Menu Styles - Vertical */
    .menu-item-has-children {
        position: relative;
    }

    .menu-item-has-children > a {
        position: relative;
        padding-right: 35px !important;
    }

    .menu-item-has-children > a:after {
        content: '\f078';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 12px;
        transition: all 0.3s ease;
    }

    .menu-item-has-children:hover > a:after {
        transform: translateY(-50%) rotate(180deg);
    }

    .menu-item-has-children .sub-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 280px;
        background: white;
        padding: 10px 0;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 100;
        transform: translateY(10px);
        display: block !important;
    }

    .menu-item-has-children:hover .sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .sub-menu {
        display: block;
    }

    .sub-menu li {
        padding: 0;
        margin: 0;
        display: block;
        width: 100%;
    }

    .sub-menu a {
        padding: 10px 20px !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        color: #555 !important;
        border-bottom: 1px solid #f0f0f0 !important;
        display: block;
        width: 100%;
        white-space: nowrap;
        text-align: left;
        transform: none !important;
        margin: 0 !important;
    }

    .sub-menu a:hover {
        background: #f8f8f8 !important;
        color: #206c56 !important;
    }

    .sub-menu li:last-child a {
        border-bottom: none !important;
    }

    .mobile-header {
        display: none;
        width: 100%;
        padding: 15px 20px;
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        align-items: center;
        justify-content: space-between;
    }

    .mobile-logo {
        width: 120px;
        height: 50px;
    }

    .mobile-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .mobile-book-now {
        background-color: #f8d56b;
        color: #1a1a1a;
        padding: 10px 20px;
        border-radius: 25px;
        font-weight: 600;
        font-size: 14px;
        text-decoration: none;
    }

    .hamburger {
        width: 30px;
        height: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #333;
        transition: all 0.3s ease;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 1001;
        transition: right 0.3s ease;
        padding: 80px 30px 30px;
        overflow-y: auto;
    }

    .mobile-menu.active {
        right: 0;
    }

    .mobile-menu ul {
        list-style: none;
        padding: 0;
    }

    .mobile-menu > ul > li {
        margin-bottom: 15px;
    }

    .mobile-menu a {
        display: block;
        padding: 12px 20px;
        background: #f9f9f9;
        color: #333;
        text-decoration: none;
        border-radius: 5px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .mobile-menu a:hover {
        background: #f8d56b;
        color: #1a1a1a;
    }

    .mobile-menu li.active > a {
        background: #f8d56b;
        color: #1a1a1a;
        font-weight: 700;
    }

    /* Mobile dropdown styles */
/* ===================================================================
   MOBILE-ONLY DROPDOWN STYLES 
   (Only applies to screens 992px wide or smaller)
   =================================================================== */
@media (max-width: 992px) {

    /* --- Step 1: Override Desktop Styles within the Mobile Menu --- */
    
    /* Make the list item a flex container for alignment */
    .mobile-menu .menu-item-has-children {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    
    /* Let the link take up the available space */
    .mobile-menu .menu-item-has-children > a {
        flex-grow: 1;
        /* Remove desktop-specific padding for the icon */
        padding-right: 20px !important; 
    }

    /* !! CRITICAL FIX: Hide the desktop hover icon on mobile !! */
    .mobile-menu .menu-item-has-children > a:after {
        display: none !important;
    }

    /* !! CRITICAL FIX: Reset desktop absolute positioning !! */
    .mobile-menu .sub-menu {
        position: static !important; /* This is key for the accordion effect */
        width: 100%;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
        display: block !important; /* Ensure it's not hidden by other rules */
    }

    
    /* --- Step 2: Define the NEW Mobile Accordion Behavior --- */
    
    /* Show the dedicated mobile dropdown trigger */
    .mobile-menu .dropdown-toggle {
        display: block;
        padding: 12px 20px; /* Generous tap area */
        cursor: pointer;
        line-height: 1; /* Center the icon vertically */
        color: black;
    }

    /* Style the actual chevron icon inside the trigger */
    .mobile-menu .dropdown-icon {
        display: inline-block;
        transition: transform 0.3s ease;
    }
    
    /* Rotate the icon when the menu is active */
    .mobile-menu .menu-item-has-children.active .dropdown-icon {
        transform: rotate(180deg);
    }

    /* The mobile sub-menu accordion style */
    .mobile-menu .sub-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out; /* Smooth animation */

        /* Attractive styling */
        margin-top: 8px;
        padding: 0 !important; /* Override inline or other styles */
        list-style: none;
        flex-basis: 100%; /* Ensure it takes full width below the parent */
        background-color: #f1f1f1 !important; /* Softer background */
        border-radius: 8px;
    }
    
    /* When active, expand the sub-menu */
    .mobile-menu .menu-item-has-children.active > .sub-menu {
        max-height: 500px; /* Adjust if your menu is longer */
    }

    /* Indent sub-menu items for better visual hierarchy */
    .mobile-menu .sub-menu a {
        padding: 12px 20px 12px 40px !important;
        border-bottom: 1px solid #e9e9e9 !important;
        background: transparent !important;
        font-weight: 500 !important;
        color: #555 !important;
    }

    /* Remove border from the very last item */
    .mobile-menu .sub-menu li:last-child a {
        border-bottom: none !important;
    }
}

    /* Responsive Adjustments */
    @media (max-width: 1200px) {
        .header-widgets,
        .navigasi {
            padding: 0 5%;
        }
        .logo {
            width: 160px;
            height: 70px;
        }
    }

    @media (max-width: 992px) { 
        .navigasi {
            display: none;
        }
        
        .mobile-header {
            display: flex;
        }
        
        .header-widgets {
            display: none;
        }
        
        .widget-date {
            display: none;
        }
        
        header.sticky .mobile-header {
            padding: 10px 20px;
        }
        
        header.sticky .mobile-logo {
            width: 100px;
            height: 40px;
        }
    }

    @media (max-width: 768px) {
        .mobile-book-now {
            padding: 8px 15px;
            font-size: 13px;
        }
        
        .mobile-logo {
            width: 100px;
            height: 40px;
        }
    }

    @media (max-width: 576px) {
        .mobile-menu {
            width: 90%;
        }
        
        .mobile-header {
            padding: 10px 15px;
        }
    }

/*
**********************************************************
* END: Styles from 'Super 8 - Premium Experience' Header
**********************************************************
*/


/*
**********************************************************
* START: Styles from 'The Kemilau Canggu - Luxury Resort' (Hero Slider & Reservation)
**********************************************************
*/
:root {
    --gold: #f9dd90;
    --gold-light: #f9dd90;
    --gold-dark: #eb9b43;
    --dark: #0B1B1B;
    --light: #F8F5F0;
    --overlay: rgba(11, 27, 27, 0.6);
}

/* Base Desktop Styles (unchanged) */
.kemilau-section-wrapper {
    background-color: #ffffff !important;
    color: var(--dark);
    font-family: 'Montserrat', sans-serif;
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

.hero-slider {
    height: 100vh;
    min-height: 800px;
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
}

.slider-container {
    height: 100%;
    display: flex;
    transition: transform 1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 10s ease-out;
}

.slide:hover img {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 2rem;
    z-index: 10;
}

.slide-tag {
    display: inline-block;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0.75rem 1.5rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    margin-bottom: 2.5rem;
}

.slide-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.slide-title span {
    color: var(--gold);
    position: relative;
    display: inline-block;
}

.slide-description {
    font-size: 1.2rem;
    max-width: 700px;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-weight: 300;
}

.slide-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: white;
    color: var(--dark);
    border: 2px solid white;
}

.btn-primary:hover {
    background: transparent;
    color: white;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--dark);
}

.slider-nav {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 20;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
}

.slider-arrow:hover {
    background: rgba(0,0,0,0.5);
    transform: translateY(-50%) scale(1.05);
}

.slider-arrow i {
    font-size: 1.2rem;
}

.slider-arrow-prev {
    left: 3rem;
}

.slider-arrow-next {
    right: 3rem;
}

.reservation-container {
    position: absolute;
    bottom: -4rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: linear-gradient(135deg, #206c56, #eb9b43, #f9dd90, #206c56);
    background-size: 300% 300%; /* Expand gradient area */
    border-radius: 10px;
    box-shadow: 0 30px 50px rgba(0,0,0,0.2);
    padding: 1.5rem 2rem;
    z-index: 30;
    animation: gradientFlow 8s ease infinite;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.reservation-title {
    display: none;
}

.reservation-form {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.form-group {
    position: relative;
    flex: 1;
    min-width: 0;
}

.form-group.compact {
    flex: 0 0 auto;
}

.form-group label {
    display: none;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1.5rem 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
    color: var(--dark);
    transition: all 0.3s ease;
    background: white;
    appearance: none;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(198, 167, 105, 0.2);
}

.has-icon {
    position: relative;
}

.has-icon .form-control {
    padding-right: 2.5rem;
}

.form-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
}

.submit-btn {
    background: #206c56;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.8rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(198, 167, 105, 0.3);
}

.ui-datepicker {
    width: 350px;
    background: white;
    border: 1px solid #eee;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.ui-datepicker-header {
    background: #206c56;
    color: white;
    border: none;
    border-radius: 3px;
    padding: 0.5rem;
}

.ui-datepicker-title {
    font-weight: 500;
}

.ui-datepicker-prev, .ui-datepicker-next {
    cursor: pointer;
    top: 0.5rem;
}

.ui-datepicker-prev:hover, .ui-datepicker-next:hover {
    background: transparent;
    border: none;
}

.ui-datepicker-calendar {
    width: 100%;
}

.ui-datepicker-calendar th {
    color: #666;
    font-weight: 500;
    padding: 0.5rem;
}

.ui-datepicker-calendar td {
    padding: 0.25rem;
}

.ui-datepicker-calendar td a {
    text-align: center;
    padding: 0.5rem;
    border-radius: 3px;
    transition: all 0.2s ease;
    width: 100%;
    display: block;
}

.ui-datepicker-calendar td a:hover {
    background: var(--gold-light);
    color: white;
}

.ui-datepicker-calendar .ui-state-active {
    background: #ee2722;
    color: white;
    border: none;
}

.ui-datepicker {
    position: absolute;
    z-index: 1000;
    margin-left: -175px;
}

/* Tablet Responsive Adjustments (768px and below) */
@media (max-width: 820px) {
    .hero-slider {
        min-height: 650px;
    }
    
    .slide-title {
        font-size: 3.5rem;
        margin-bottom: 1.2rem;
    }
    
    .slide-tag {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
        margin-bottom: 2rem;
    }
    
    .slide-description {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        max-width: 85%;
    }
    
    .slide-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .btn {
        padding: 0.9rem 1.8rem;
    }
    
    .slider-nav {
        bottom: 4rem;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .slider-dot.active {
        width: 25px;
    }
    
    .slider-arrow {
        width: 50px;
        height: 50px;
    }
    
    .slider-arrow-prev {
        left: 1.5rem;
    }
    
    .slider-arrow-next {
        right: 1.5rem;
    }
    
    .reservation-container {
        bottom: -4rem;
        width: 95%;
        padding: 1.2rem;
		position: relative;
    }
    
    .reservation-form {
        flex-wrap: wrap;
        gap: 0.8rem;
    }
    
    .form-group {
        flex: 1 0 calc(50% - 0.4rem);
        margin-bottom: 0.4rem;
    }
    
    .form-group:nth-child(5),
    .form-group:nth-child(6) {
        flex: 1 0 100%;
    }
    
    .form-control {
        padding: 0.7rem 1rem;
    }
    
    .submit-btn {
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .ui-datepicker {
        width: 320px;
        margin-left: -160px;
    }
}

/* Mobile Responsive Adjustments (377px and below) */
/* Mobile Responsive Adjustments (377px and below) */
@media (max-width: 377px) {
    .hero-slider {
        min-height: 550px;
        /* 
         * ADD THIS: This creates space below the slider for the reservation 
         * form to sit in without overlapping the content that follows. 
         * The value should be slightly larger than the 'bottom' value of your form.
        */
        margin-bottom: 5rem;
    }
    
    .slide-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .slide-tag {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .slide-description {
        font-size: 0.9rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .slide-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 260px;
        gap: 0.7rem;
    }
    
    .btn {
        width: 100%;
        padding: 0.8rem;
    }
    
    .slider-nav {
        bottom: 3rem;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .reservation-container {
       /* bottom: -9rem;*/
	   bottom: 0rem;
        padding: 1rem;
		  position: relative;
    }
    
    .form-group {
        flex: 1 0 100%;
    }
    
    .form-control {
        padding: 0.7rem;
    }
    
    .submit-btn {
        padding: 0.8rem;
    }
    
    .ui-datepicker {
        width: 280px;
        margin-left: -140px;
        left: 50% !important;
    }
}

/* Mobile Responsive Adjustments (377px and below) */



/*
**********************************************************
* END: Styles from 'The Kemilau Canggu - Luxury Resort' (Hero Slider & Reservation)
**********************************************************
*/


/*
**********************************************************
* START: Styles from 'About Section'
**********************************************************
*/

.s2-about {
  /* Overlay is now 65% opaque, making the background image more visible */
  background-image: linear-gradient(rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.65)), url('images/sketch.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #333;
  padding: 80px 0;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  position: relative;
}

.s2-about .section-header {
  margin-bottom: 60px;
}

.s2-about .section-header h1 {
  font-size: 2.5rem;
  color: #206c56;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  /* Added subtle shadow for readability */
  text-shadow: 0px 1px 4px rgba(0, 0, 0, 0.15); 
  padding-top: 30px;
}

.s2-about .header-divider {
  width: 100px;
  height: 3px;
  background-color: #eb9b43;
  margin: 0 auto;
  position: relative;
}

.s2-about .about-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 64px;
  width: 90%;
  margin: 0 auto;
  align-items: start;
}

.s2-about .about-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: left;
}

.s2-about .about-text {
  font-size: 1rem;
  color: #222;
  line-height: 1.8;
  margin: 0;
  font-weight: 400;
  /* Added subtle shadow for readability */
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2); 
}

.s2-about .image-container {
  position: relative;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
}

.s2-about .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.s2-about .image-container:hover img {
  transform: scale(1.05);
}

/* S2 About Responsive Adjustments */
@media (max-width: 1200px) {
  .s2-about .image-container {
    width: 350px;
    height: 350px;
  }
}

@media (max-width: 992px) {
  .s2-about .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .s2-about .image-container {
    grid-row: 1;
    width: 300px;
    height: 300px;
  }
  
  .s2-about .about-section {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .s2-about {
    padding: 60px 0;
  }
  
  .s2-about .section-header h1 {
    font-size: 2rem;
  }
  
  .s2-about .about-text {
    font-size: 0.95rem;
  }
  
  .s2-about .image-container {
    width: 280px;
    height: 280px;
  }
}
/*
**********************************************************
* START: Styles from 'Rooms Section'
**********************************************************
*/

/* Container for consistent content width */
    .container {
      margin-left: auto;
      margin-right: auto;
      padding: 0 20px;
      box-sizing: border-box;
    }

    /* CSS for the s3-rooms section (Room Cards) */
    .s3-rooms {
      width: 100%; 
      box-sizing: border-box; 
    /*  padding: 50px 0;*/
	padding: 15px 0;
    }

    .s3-rooms .rooms-header {
      text-align: center;
      margin-bottom: 50px; 
      margin-left: auto;
      margin-right: auto;
      padding: 0 20px;
    }
    .s3-rooms .rooms-subheading {
      font-size: 14px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #888;
      margin-bottom: 10px;
    }
    .s3-rooms .rooms-main-heading {
      font-family: 'Playfair Display', serif;
      font-size: 38px; /* Slightly larger heading */
      font-weight: 400; 
      margin-bottom: 15px;
      color: #222;
    }
    .s3-rooms .rooms-header hr {
      width: 60px;
      height: 2px;
      background-color: #d4af37;
      border: none;
      margin: 0 auto;
    }
    
    /* === REDESIGN FOR PROFESSIONAL LOOK & LARGER IMAGES === */
    .s3-rooms .rooms-container {
      display: grid;
      /* Increased minmax for larger cards and increased gap */
      grid-template-columns: repeat(auto-fit, minmax(640px, 1fr)); 
      gap: 60px;
      margin: 0px;
      padding: 0px;
      box-sizing: border-box;
    }

    .s3-rooms .room-card {
      display: flex;
      flex-direction: row; 
      background-color: white;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0,0,0,0.08);
      align-items: center; /* Vertically align content */
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .s3-rooms .room-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    }

    /* Visual Area: Enlarged and uses a proper aspect ratio */
    .s3-rooms .room-visual-area {
        position: relative; 
        flex: 0 0 55%; /* Image area now takes up 55% of the card width */
        height: 0; 
        padding-bottom: 36.63%; /* Creates a 3:2 aspect ratio (55% width * 0.666) */
    }
    
    /* Simplified and balanced green backdrop for a cleaner offset effect */
    .s3-rooms .room-colored-backdrop {
        position: absolute;
        top: 5%;
        left: 0;
        width: 95%;
        height: 95%;
        background-color: #005946;
        border-radius: 12px;
        z-index: 0; 
    }

    /* Simplified photo positioning for a professional, stable look */
    .s3-rooms .actual-room-photo {
        position: absolute; 
        top: 0;
        left: 5%;
        width: 95%;
        height: 95%;
        object-fit: cover; 
        display: block;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.2); 
        z-index: 1;
    }

    /* Style for the room content section */
    .s3-rooms .room-content {
      flex: 1;
      padding: 25px 40px; /* Increased horizontal padding */
      display: flex; 
      flex-direction: column; 
      justify-content: center;
    }
    
    .s3-rooms .room-number {
      font-size: 14px;
      color: #888;
      margin-bottom: 5px;
    }

    .s3-rooms .room-title {
      font-family: 'Playfair Display', serif;
      font-size: 26px; /* Increased font size */
      margin-bottom: 12px;
      font-weight: 600;
      color: #222;
      line-height: 1.3;
    }

    .s3-rooms .room-desc {
      font-size: 16px; /* Increased font size */
      color: #666;
      margin-bottom: 25px; 
      line-height: 1.7;
    }

    .s3-rooms .room-features {
      display: flex;
      flex-wrap: wrap; 
      gap: 10px 18px; /* Increased gap */
      margin-bottom: 30px; /* Increased margin */
    }

    .s3-rooms .room-feature {
      font-size: 14px; /* Increased font size */
      color: #555;
      display: flex;
      align-items: center;
      gap: 8px; 
    }

    .s3-rooms .room-feature svg {
      width: 18px; /* Increased icon size */
      height: 18px; /* Increased icon size */
      fill: #d4af37;
      flex-shrink: 0;
    }
    
    .s3-rooms .btn-details {
      background: none;
      border: 1px solid #d4af37;
      color: #d4af37;
      padding: 12px 25px; /* Increased padding */
      font-size: 12px; 
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      cursor: pointer;
      transition: all 0.3s ease;
      border-radius: 4px;
      align-self: flex-start; 
    }

    .s3-rooms .btn-details:hover {
      background-color: #d4af37;
      color: white;
    }
    /* === END REDESIGN === */

    /* Responsive Adjustments */
    @media (max-width: 1280px) {
        .s3-rooms .rooms-container {
             /* Allow single column earlier on smaller desktop screens */
            grid-template-columns: 1fr;
             /* Constrain max-width in single column */
        }
    }
    
    @media (max-width: 768px) { 
      .s3-rooms .rooms-container {
          grid-template-columns: 1fr; 
          max-width: none;
          gap: 40px;
      }
      .s3-rooms .room-card {
        flex-direction: column; 
        align-items: stretch; /* Reset alignment for stacked layout */
      }
      .s3-rooms .room-visual-area {
        flex: auto;
        width: auto;
        padding-bottom: 60%; /* Maintained aspect ratio for mobile */
        margin: 20px 20px 0; /* Add margin for spacing */
      }
      .s3-rooms .room-content {
          padding: 25px; 
      }
    }

    @media (max-width: 480px) {
      .s3-rooms { padding: 30px 0; }
      .s3-rooms .rooms-main-heading { font-size: 30px; }
      .s3-rooms .btn-details {
          width: 100%;
          text-align: center;
      }
      .s3-rooms .room-visual-area {
          margin: 15px 0px 0;
      }
       .s3-rooms .room-content {
          padding: 25px 20px; 
      }
    }
/*
**********************************************************
* Start: Styles from 'Read more Section'
**********************************************************
*/
  /* 3D Section Styles */
  .three-d-section {
    perspective: 1000px;
  /*  padding: 40px 0;*/
    overflow: hidden;
  }
  
  .container-3d {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  /* 3D Button Container */
.btn-3d-container {
  text-align: center;
  margin-bottom: 30px;
  perspective: 1000px; /* Stronger perspective for better depth */
}

/* Main 3D Button */
.btn-3d {
  position: relative;
  width: 200px;
  height: 60px;
  border: none;
  background: transparent;
  color: white;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); /* Smooth flip animation */
  border-radius: 12px;
  outline: none;
  transform: rotateX(0deg); /* Initial state */
}

/* Flip the button on click (shows back face) */
.btn-3d.flipped {
  transform: rotateX(180deg);
}

/* Front & Back Faces (Absolute Positioning) */
.btn-3d .front,
.btn-3d .back {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden; /* Hide the opposite side */
  border-radius: 12px;
  top: 0;
  left: 0;
}

/* Front Face (Visible by Default) */
.btn-3d .front {
  background: #206c56;
  transform: translateZ(30px); /* Push forward in 3D space */
}

/* Back Face (Initially Hidden) */
.btn-3d .back {
  background: #eb9b43;
  transform: rotateX(180deg) translateZ(30px); /* Flip and position correctly */
}
  
  /* 3D Content Panel */
  .content-3d-panel {
    display: none;
    transform-style: preserve-3d;
    transition: all 0.5s ease;
  }
  
  .scene-3d {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    justify-content: center;
  }
  
  .card-3d {
    flex: 1 1 calc(50% - 30px);
    min-width: 300px;
    max-width: 500px;
    height: auto;
    min-height: 300px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 1s;
    cursor: pointer;
    margin-bottom: 30px;
  }
  
  @media (max-width: 768px) {
    .card-3d {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }
  
  .card-3d:hover {
    transform: rotateY(180deg);
  }
  
  .card-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
  }
  
  .card-front {
    background: white;
    border: 1px solid rgba(74, 107, 255, 0.2);
  }
  
  .card-back {
    background: #206c56;
    color: white;
    transform: rotateY(180deg);
  }
  
  .parallax-title-3d {
    font-size: 28px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    color: #206c56;
  }
  
  .card-back .parallax-title-3d {
    color: white;
  }
  
  .parallax-title-3d:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #F39C12;
  }
  
  .card-back .parallax-title-3d:after {
    background: white;
  }
  
  .parallax-desc-3d p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #000000;
  }
  
  .card-back .parallax-desc-3d p {
    color: white;
  }
  
  /* 3D Facts Section */
  .facts-3d-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transform: translateZ(20px);
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
  }
  
  .facts-title-3d {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    color: #333;
  }
  
  .facts-grid-3d {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
  
  @media (max-width: 600px) {
    .facts-grid-3d {
      grid-template-columns: 1fr;
    }
  }
  
  .fact-box-3d {
    background: #f8faff;
    padding: 25px;
    border-radius: 10px;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  
  .fact-box-3d:hover {
    background: #F39C12 !important;
    transform: translateY(-5px) translateZ(10px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
  }
  
  .fact-box-3d:hover p,
  .fact-box-3d:hover .fact-icon-3d {
    color: white !important;
  }
  
  .fact-icon-3d {
    font-size: 30px;
    margin-bottom: 15px;
    color: #F39C12;
    transition: color 0.3s ease;
  }
  
  .fact-box-3d p {
    font-size: 15px;
    line-height: 1.5;
    color: #000000;
    margin: 0;
    max-width: 100%;
    transition: color 0.3s ease;
  }
  
  /* Animation for showing content */
  @keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .content-visible {
    display: block;
    animation: slideUp 0.8s ease forwards;
  }

  .content-3d-panel {
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      padding: 20px;
    }
    
    .card-3d {
      width: 100%;
      max-width: 600px;
      min-height: 400px; /* Increased height */
      height: auto;
      margin: 20px auto;
    }
    
    .parallax-desc-3d p {
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 15px;
    }
    
    .scene-3d {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }
    
    @media (max-width: 768px) {
      .card-3d {
        max-width: 100%;
        min-height: 350px;
      }
    }

  /* Responsive Cards */
  .card-3d {
    width: 100%;
    min-height: 400px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 1s;
    cursor: pointer;
    margin-bottom: 25px;
  }


  /* Responsive Typography */
  .parallax-title-3d {
    font-size: clamp(22px, 3vw, 28px);
    margin-bottom: 15px;
  }

  .parallax-desc-3d p {
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.6;
    margin-bottom: 15px;
    word-break: break-word; /* Prevents horizontal overflow */
    overflow-wrap: break-word; /* Breaks long words if needed */
  }

  /* Tablet View (768px) */
  @media (max-width: 768px) {
    .card-3d {
      min-height: 350px;
    }
    .card-face {
      padding: 20px;
    }
  }

  /* Mobile View (480px) */
  @media (max-width: 480px) {
    .scene-3d {
      grid-template-columns: 1fr;
    }
    .card-3d {
      min-height: 300px;
    }
    .card-face {
      padding: 15px;
    }
  }

  /* Small Mobile View (360px) */
  @media (max-width: 360px) {
    .card-3d {
      min-height: 280px;
    }
    .parallax-title-3d {
      font-size: 20px;
    }
    .parallax-desc-3d p {
      font-size: 14px;
    }
  }

  /* For tablets */
@media only screen and (min-width: 481px) and (max-width: 1024px) {
    .parallax-desc-3d p {
        font-size: clamp(15px, 2vw, 1px);
        line-height: 1.6;
        margin-bottom: 1px;
        word-break: break-word;
        overflow-wrap: break-word;
    }
}



/* For tablets */
@media only screen and (min-width: 820px) and (max-width: 1180px) {
    .parallax-desc-3d p {
        font-size: clamp(12px, 2vw, 1px);
        line-height: 1.6;
        margin-bottom: 1px;
        word-break: break-word;
        overflow-wrap: break-word;
    }
}



/* For mobile devices */
@media only screen and (max-width: 480px) {
    .parallax-desc-3d p {
        font-size: clamp(11.4px, 2vw, 1px);
        line-height: 1.6;
        margin-bottom: 1px;
        word-break: break-word;
        overflow-wrap: break-word;
    }
}

/*
**********************************************************
* START: Styles from 'Hotel Amenities' section
**********************************************************
*/

/* Animated Background Section */
.premium-facilities {
    background: #206c56;
    position: relative;
    overflow: hidden;
    color: #f8f8f8;
    /*padding: 120px 0;*/
	padding: 50px 0;
	
}

/* Continuous Bubble Background */
.premium-facilities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23f9dd90' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
    animation: moveBackground 120s linear infinite;
}

@keyframes moveBackground {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 100%;
    }
}

/* Continuous Floating Gold Elements */
.floating-gold {
    position: absolute;
    border-radius: 50%;
    background: rgba(249, 221, 144, 0.05);
    filter: blur(40px);
    z-index: 0;
    animation: float 20s infinite ease-in-out;
}

.floating-gold:nth-child(1) {
    width: 400px;
    height: 400px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
    animation-iteration-count: infinite;
}

.floating-gold:nth-child(2) {
    width: 300px;
    height: 300px;
    bottom: 15%;
    left: 10%;
    animation-delay: 5s;
    animation-iteration-count: infinite;
}

.floating-gold:nth-child(3) {
    width: 350px;
    height: 350px;
    top: 60%;
    left: 20%;
    animation-delay: 8s;
    animation-iteration-count: infinite;
}

.floating-gold:nth-child(4) {
    width: 250px;
    height: 250px;
    top: 30%;
    left: 30%;
    animation-delay: 12s;
    animation-iteration-count: infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    25% {
        transform: translate(50px, 50px) scale(1.1);
        opacity: 1;
    }
    50% {
        transform: translate(0, 100px) scale(1);
        opacity: 0.8;
    }
    75% {
        transform: translate(-50px, 50px) scale(1.1);
        opacity: 1;
    }
}

/* Main Content Container */
.facilities-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.luxury-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.divider-line {
    width: 80px;
    height: 1px;
    display: block;
    background: linear-gradient(90deg, transparent, rgba(249, 221, 144, 0.7), transparent);
}

.luxury-icon {
    margin: 0 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(249, 221, 144, 0.3);
    background: rgba(249, 221, 144, 0.1);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 300;
    margin: 0 0 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #f9dd90;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #eb9b43;
    border-radius: 3px;
}

.section-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    margin: 0;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Facilities Grid */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.facility-card {
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    z-index: 1;
    padding: 25px 15px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(249, 221, 144, 0.15);
}

.facility-card:hover {
    transform: translateY(-10px);
    background: rgba(235, 155, 67, 0.15);
    border-color: rgba(249, 221, 144, 0.4);
    box-shadow: 0 8px 25px rgba(32, 108, 86, 0.3);
}

.facility-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: all 0.4s ease;
    border: 1px solid rgba(249, 221, 144, 0.3);
    background: rgba(249, 221, 144, 0.1);
}

.facility-card:hover .icon-circle {
    transform: scale(1.1);
    background: rgba(235, 155, 67, 0.2);
    border-color: rgba(249, 221, 144, 0.5);
}

.facility-icon-wrapper .material-icons {
    font-size: 40px;
    z-index: 2;
    transition: all 0.3s ease;
    color: #f9dd90;
}

.facility-card:hover .material-icons {
    transform: scale(1.1);
}

.hover-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    background: radial-gradient(circle at center, rgba(249, 221, 144, 0.25) 0%, transparent 70%);
}

.facility-card:hover .hover-effect {
    opacity: 1;
}

.facility-name {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0 0 8px;
    letter-spacing: 0.5px;
    color: #f9dd90;
    position: relative;
    display: inline-block;
}

.facility-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: #eb9b43;
    transition: all 0.3s ease;
}

.facility-card:hover .facility-name::after {
    width: 50px;
    background: #f9dd90;
}

.facility-description {
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
    font-weight: 300;
}

/* Gallery Styles */
.facility-gallery {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    height: 600px;
}

.gallery-viewport {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease;
    transform: scale(1.05);
    pointer-events: none;
}

.gallery-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
    pointer-events: auto;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    color: white;
    text-align: left;
}

.slide-caption h3 {
    font-size: 1.8rem;
    font-weight: 300;
    margin: 0 0 10px;
    letter-spacing: 1px;
    color: #f9dd90;
}

.slide-caption p {
    font-size: 1rem;
    font-weight: 300;
    margin: 0;
    max-width: 600px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Navigation Controls */
.gallery-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.control-prev, 
.control-next {
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin: 0 5px;
    color: #f9dd90;
    background: rgba(235, 155, 67, 0.15);
    border: 1px solid rgba(249, 221, 144, 0.3);
}

.control-prev:hover, 
.control-next:hover {
    background: rgba(235, 155, 67, 0.3);
    transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 1200px) { 
    .facility-gallery { height: 500px; } 
    .floating-gold:nth-child(1) {
        width: 300px;
        height: 300px;
    }
    .floating-gold:nth-child(2) {
        width: 200px;
        height: 200px;
    }
    .floating-gold:nth-child(3),
    .floating-gold:nth-child(4) {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 992px) { 
    .facilities-grid { grid-template-columns: repeat(3, 1fr); } 
    .facility-gallery { height: 450px; } 
    .slide-caption { padding: 30px; } 
    .slide-caption h3 { font-size: 1.5rem; } 
}

@media (max-width: 768px) { 
    .premium-facilities { padding: 80px 0; } 
    .section-title { font-size: 2.2rem; } 
    .facilities-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } 
    .facility-gallery { height: 400px; } 
    .slide-caption { padding: 20px; } 
    .slide-caption h3 { font-size: 1.3rem; } 
    .slide-caption p { font-size: 0.9rem; } 
    .floating-gold {
        display: none;
    }
}

@media (max-width: 576px) { 
    .facilities-container { padding: 0 20px; } 
    .section-title { font-size: 1.8rem; } 
    .section-subtitle { font-size: 1rem; } 
    .facility-card { padding: 20px 10px; } 
    .facility-icon-wrapper { width: 80px; height: 80px; } 
    .facility-name { font-size: 1rem; } 
    .facility-description { font-size: 0.8rem; } 
    .facility-gallery { height: 350px; } 
}

/*
**********************************************************
* END: Styles from 'Hotel Amenities' section
**********************************************************
*/


/*
**********************************************************
* START: Styles from 'Luxury Hotel - Premium Zoom Effect' (Roosevelt Inn and Suites)
**********************************************************
*/

/*
**********************************************************
* END: Styles from 'Luxury Hotel - Premium Zoom Effect' (Roosevelt Inn and Suites)
**********************************************************
*/

/* --- Base Section Scoped Styles --- */
    .anderson-experience {
        box-sizing: border-box;
        width: 100%;
        /*padding: 8rem 0;*/
		padding: 4rem 0;
        background: white;
        font-family: 'Poppins', sans-serif; /* This font will only apply within this section */
        position: relative;
        overflow: hidden;
    }

    .anderson-experience:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('https://images.unsplash.com/photo-1563231454-94e4325a7721?auto=format&fit=crop&w=1350&q=80'); /* Mounds State Park image */
        background-position: center;
        background-size: cover;
        opacity: 0.04;
        z-index: 0;
    }

    .anderson-experience .experience-container {
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
        position: relative;
        z-index: 1;
    }

    /* --- Scoped Header --- */
    .anderson-experience .experience-header {
        text-align: center;
        margin-bottom: 6rem;
    }
    .anderson-experience .experience-subtitle {
        font-size: 1.2rem;
        letter-spacing: 0.4rem;
        color: #5a6b6c;
        text-transform: uppercase;
        margin-bottom: 1.5rem;
        font-weight: 500;
    }
    .anderson-experience .experience-title {
        font-family: 'Playfair Display', serif;
        font-size: 4.5rem;
        color: #206c56;
        margin: 0;
        background: linear-gradient(90deg, #b8860b, #daa520, #ffd700, #daa520, #b8860b);
        background-size: 300% 300%;
        -webkit-background-clip: text;
        background-clip: text;
        animation: anderson-exp-gradientShift 8s ease infinite;
        text-shadow: 0 2px 20px rgba(184, 134, 11, 0.2);
    }
    .anderson-experience .title-word {
        display: inline-block;
        opacity: 0;
        transform: translateY(20px);
        animation: anderson-exp-titleReveal 0.6s ease forwards;
    }
    .anderson-experience .title-underline {
        height: 4px;
        width: 0;
        background: linear-gradient(90deg, #b8860b, #ffd700);
        margin: 2rem auto 0;
        border-radius: 2px;
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
        animation: anderson-exp-expandWidth 1.2s cubic-bezier(0.19, 1, 0.22, 1) 1.4s forwards;
    }

    /* --- Scoped Category Filter Styles --- */
    .anderson-experience .experience-filters {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin: -2rem 0 4rem;
        flex-wrap: wrap;
    }
    .anderson-experience .filter-btn {
        padding: 0.75rem 1.75rem;
        font-size: 1rem;
        font-weight: 500;
        color: #5a6b6c;
        background-color: #fff;
        border: 2px solid #ddd;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }
    .anderson-experience .filter-btn:hover {
        background-color: #f0f0f0;
        border-color: #ccc;
        transform: translateY(-2px);
    }
    .anderson-experience .filter-btn.active {
        color: #fff;
        border-color: #b8860b;
        background: linear-gradient(90deg, #b8860b, #daa520);
        box-shadow: 0 8px 20px rgba(184, 134, 11, 0.3);
    }

    /* --- Scoped Interactive Leaflet Map Styles --- */
    /* Updated map ID to anderson-map for consistency with HTML structure. Original CSS referenced #map, new structure will have #anderson-map for its map div */
    .anderson-experience #anderson-map {
        width: 80%;
        height: 450px;
        margin: 0 auto 5rem;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 30px 60px -10px rgba(0,0,0,0.2);
        border: 4px solid white;
        z-index: 5;
    }
    /* Leaflet-specific icons are global by necessity, but names are scoped */
    .anderson-experience .leaflet-div-icon { background: transparent; border: none; }
    .anderson-experience .map-marker-icon {
        display: flex; justify-content: center; align-items: center;
        width: 40px; height: 40px; border-radius: 50% 50% 50% 0;
        transform: rotate(-45deg); color: white;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2); border: 2px solid white;
        transition: transform 0.3s ease, background-color 0.3s ease;
    }
    .anderson-experience .map-marker-icon:hover { transform: rotate(-45deg) scale(1.1); }
    .anderson-experience .map-marker-icon i { transform: rotate(45deg); font-size: 1.2rem; }
    .anderson-experience .icon-attraction { background-color: #c0392b; }
    .anderson-experience .icon-business { background-color: #2980b9; }
    .anderson-experience .icon-restaurant { background-color: #f39c12; }

    /* --- Scoped Timeline Section --- */
    .anderson-experience .experience-timeline { margin-top: 2rem; }
    .anderson-experience .timeline-container { position: relative; max-width: 1000px; margin: 0 auto; padding: 0 2rem; }
    .anderson-experience .timeline-progress {
        position: absolute; top: 0; left: 50%; transform: translateX(-50%);
        width: 4px; height: 100%; background: #206c56; z-index: 1;
    }
    .anderson-experience .timeline-items { position: relative; z-index: 2; }

    .anderson-experience .timeline-item { display: flex; justify-content: flex-start; padding: 0; position: relative; margin-bottom: 2rem; }
    .anderson-experience .timeline-item:nth-child(even) { justify-content: flex-end; }
    .anderson-experience .timeline-item .timeline-spacer { width: calc(50% + 2rem); order: 2; }
    .anderson-experience .timeline-item:nth-child(even) .timeline-spacer { order: 1; }
    .anderson-experience .timeline-dot { position: absolute; top: 2rem; left: 50%; transform: translate(-50%, -50%); width: 20px; height: 20px; border-radius: 50%; background: #fff; border: 4px solid #b8860b; z-index: 3; }
    .anderson-experience .timeline-content { width: calc(50% - 2rem); position: relative; order: 1; text-align: left; }
    .anderson-experience .timeline-item:nth-child(even) .timeline-content { order: 2; }

    .anderson-experience .timeline-card { background: #fff; border-radius: 8px; box-shadow: 0 10px 30px -5px rgba(0,0,0,0.1); position: relative; overflow: hidden; transition: all 0.3s ease; cursor: pointer; border: 3px solid transparent; text-align: left; }
    .anderson-experience .timeline-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15); }
    .anderson-experience .timeline-card.highlight { transform: translateY(-5px) scale(1.03); box-shadow: 0 20px 40px -10px rgba(184, 134, 11, 0.4); border-color: #daa520; }
    .anderson-experience .timeline-card img { width: 100%; height: 150px; object-fit: cover; display: block; }
    .anderson-experience .timeline-details { padding: 1rem; }
    .anderson-experience .timeline-details h3 { color: #b8860b; margin: 0 0 0.5rem 0; font-size: 1.5rem; font-family: 'Playfair Display', serif; }
    .anderson-experience .timeline-details .timeline-miles { margin: 0; color: #5a6b6c; font-weight: 500; text-transform: uppercase; font-size: 0.9rem; }

    .anderson-experience .timeline-card::after { content: ''; position: absolute; top: 1.5rem; left: auto; right: -10px; width: 0; height: 0; border-top: 10px solid transparent; border-bottom: 10px solid transparent; border-left: 10px solid white; transition: border-color 0.3s ease; }
    .anderson-experience .timeline-item:nth-child(even) .timeline-card::after { left: -10px; right: auto; border-left: none; border-right: 10px solid white; }
    .anderson-experience .timeline-card.highlight::after { border-left-color: #daa520; }
    .anderson-experience .timeline-item:nth-child(even) .timeline-card.highlight::after { border-left-color: transparent; border-right-color: #daa520; }


    /* --- Scoped Keyframes to prevent conflicts --- */
    @keyframes anderson-exp-titleReveal { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes anderson-exp-expandWidth { from { width: 0; } to { width: 200px; } }
    @keyframes anderson-exp-gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

    /* --- Responsive Design (already well-scoped) --- */
    @media (max-width: 992px) {
        .anderson-experience .experience-title { font-size: 3.2rem; }
        .anderson-experience .timeline-progress { left: 2rem; transform: translateX(0); }
        .anderson-experience .timeline-dot { left: 2rem; transform: translate(-50%,-50%); }
        .anderson-experience .timeline-item, .anderson-experience .timeline-item:nth-child(even) { justify-content: flex-start; }
        .anderson-experience .timeline-item .timeline-spacer { display: none; }
        .anderson-experience .timeline-content, .anderson-experience .timeline-item:nth-child(even) .timeline-content { width: 100%; padding-left: 4rem; order: 1; text-align: left; }
        .anderson-experience .timeline-item:nth-child(even) .timeline-spacer { display: none; }
        .anderson-experience .timeline-item:nth-child(even) .timeline-content { order: 1; }
        .anderson-experience .timeline-card::after, .anderson-experience .timeline-item:nth-child(even) .timeline-card::after { right: auto; left: -10px; border-left: none; border-right: 10px solid white; }
        .anderson-experience .timeline-card.highlight::after, .anderson-experience .timeline-item:nth-child(even) .timeline-card.highlight::after { border-right-color: #daa520; border-left-color: transparent; }
    }
    @media (max-width: 768px) {
        .anderson-experience { padding: 6rem 0; }
        .anderson-experience .experience-container { padding: 0 1.5rem; }
        .anderson-experience .experience-title { font-size: 2.5rem; }
        .anderson-experience .experience-filters { gap: 0.5rem; }
        .anderson-experience .filter-btn { padding: 0.6rem 1.2rem; font-size: 0.9rem;}
        .anderson-experience #anderson-map { height: 350px; } /* Updated ID */
    }
    @media (max-width: 576px) {
        .anderson-experience { padding: 5rem 0; }
        .anderson-experience .experience-title { font-size: 2.2rem; }
        .anderson-experience .timeline-progress { left: 1rem; }
        .anderson-experience .timeline-dot { left: 1rem; }
        .anderson-experience .timeline-content, .anderson-experience .timeline-item:nth-child(even) .timeline-content { padding-left: 2.5rem; }
    }

/*
**********************************************************
* START: Styles from 'Testimonial section'
**********************************************************
*/
/* Luxury Testimonial Section with High-Tech SVG Background */
#testimonial-section-container {
  background: 
    linear-gradient(135deg, #0d2e26 0%, #154538 100%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 2000 2000' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='grid' width='40' height='40' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 40 0 L 0 0 0 40' fill='none' stroke='%23144b3a' stroke-width='0.5'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23grid)'/%3E%3Cpath d='M0 0h2000v2000H0z' fill='url(%23grid)' opacity='0.2'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 2000 2000' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3CradialGradient id='a' cx='0' cy='0' r='1' gradientTransform='rotate(90) scale(800)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0.1' stop-color='%23144b3a' stop-opacity='0'/%3E%3Cstop offset='0.9' stop-color='%23f9dd90' stop-opacity='0.1'/%3E%3C/radialGradient%3E%3C/defs%3E%3Cpath d='M0 0h2000v2000H0z' fill='url(%23a)'/%3E%3C/svg%3E");
  color: #e5e5e5;
  position: relative;
  overflow: hidden;
  padding: 50px 20px;
  /*padding: 100px 20px;*/
  isolation: isolate;
}

/* High-Tech Decorative Elements */
#testimonial-section-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    url("data:image/svg+xml,%3Csvg viewBox='0 0 2000 2000' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cfilter id='noise' x='0%25' y='0%25' width='100%25' height='100%25'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.5' numOctaves='3'/%3E%3CfeColorMatrix type='matrix' values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0.15 0'/%3E%3C/filter%3E%3C/defs%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E"),
    linear-gradient(
      135deg,
      rgba(13, 46, 38, 0.9) 0%,
      rgba(21, 69, 56, 0.95) 100%
    );
  z-index: -1;
  opacity: 0.8;
}

#testimonial-section-container::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: 
    url("data:image/svg+xml,%3Csvg viewBox='0 0 2000 2000' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3CradialGradient id='a' cx='0' cy='0' r='1' gradientTransform='rotate(45) scale(1000)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23eb9b43' stop-opacity='0.05'/%3E%3Cstop offset='1' stop-color='%23eb9b43' stop-opacity='0'/%3E%3C/radialGradient%3E%3C/defs%3E%3Cpath d='M0 0h2000v2000H0z' fill='url(%23a)'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 2000 2000' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='circuit' width='40' height='40' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='20' cy='20' r='0.5' fill='%23f9dd90' fill-opacity='0.3'/%3E%3Cpath d='M20 0v20M0 20h20' stroke='%23f9dd90' stroke-width='0.3' stroke-opacity='0.2'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23circuit)'/%3E%3C/svg%3E");
  z-index: -1;
  animation: rotate 120s linear infinite;
}

/* Digital Connection Lines */
.digital-connections {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: 
    url("data:image/svg+xml,%3Csvg viewBox='0 0 2000 2000' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpath id='line' d='M0,0 Q1000,500 2000,0' stroke='%23f9dd90' stroke-width='1' stroke-opacity='0.05' fill='none'/%3E%3C/defs%3E%3Cuse href='%23line' y='200'/%3E%3Cuse href='%23line' y='400'/%3E%3Cuse href='%23line' y='600'/%3E%3Cuse href='%23line' y='800'/%3E%3Cuse href='%23line' y='1000'/%3E%3Cuse href='%23line' y='1200'/%3E%3Cuse href='%23line' y='1400'/%3E%3Cuse href='%23line' y='1600'/%3E%3Cuse href='%23line' y='1800'/%3E%3C/svg%3E");
  opacity: 0.3;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Container */
#testimonial-section-container .container { 
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* Header Styles with Digital Flair */
#testimonial-section-container .title-wrapper {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

#testimonial-section-container .subtitle {
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 16px;
  color: #f9dd90;
  font-weight: 500;
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
  padding-bottom: 12px;
}

#testimonial-section-container .subtitle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #eb9b43 50%, transparent 100%);
}

#testimonial-section-container .main-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: #fff;
  font-weight: 700;
  margin: 0 auto 40px;
  max-width: 800px;
  line-height: 1.3;
  text-shadow: 0 4px 8px rgba(0,0,0,0.3);
  position: relative;
}

#testimonial-section-container .main-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #f9dd90 50%, transparent 100%);
  filter: drop-shadow(0 0 5px rgba(249, 221, 144, 0.5));
}

/* Digital Grid Testimonial Cards */
#testimonial-section-container .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 40px;
  position: relative;
  align-items: stretch;
}

#testimonial-section-container .testimonial-card {
  background: 
    linear-gradient(145deg, rgba(20, 75, 58, 0.9) 0%, rgba(13, 46, 38, 0.95) 100%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='grid' width='20' height='20' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 20 0 L 0 0 0 20' fill='none' stroke='%23f9dd90' stroke-width='0.3' stroke-opacity='0.1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23grid)'/%3E%3C/svg%3E");
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(249, 221, 144, 0.1),
    0 0 20px rgba(32, 108, 86, 0.5);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  border: none;
  backdrop-filter: blur(5px);
  height: 100%;
  display: flex;
  flex-direction: column;
}

#testimonial-section-container .testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #144b3a 0%, #f9dd90 50%, #eb9b43 100%);
  box-shadow: 0 0 10px rgba(249, 221, 144, 0.3);
}

#testimonial-section-container .testimonial-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(249, 221, 144, 0.05) 0%, transparent 25%),
    radial-gradient(circle at 80% 70%, rgba(235, 155, 67, 0.05) 0%, transparent 25%);
  pointer-events: none;
}

#testimonial-section-container .testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(249, 221, 144, 0.2),
    0 0 30px rgba(32, 108, 86, 0.7);
}

/* Testimonial Image Wrapper */
#testimonial-section-container .testimonial-image-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

#testimonial-section-container .testimonial-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

#testimonial-section-container .testimonial-card:hover .testimonial-image-wrapper img {
  transform: scale(1.05);
}

#testimonial-section-container .testimonial-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(21, 69, 56, 0.8);
  color: #f9dd90;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(2px);
}

/* Card Content - Equal Height */
#testimonial-section-container .testimonial-content {
  padding: 35px 30px;
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

#testimonial-section-container .testimonial-content::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 24 24' fill='none' stroke='%23f9dd90' stroke-width='1' stroke-linecap='round' stroke-linejoin='round' opacity='0.1'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.2;
}

/* Stars Rating */
#testimonial-section-container .stars {
  color: #f9dd90;
  font-size: 18px;
  margin-bottom: 25px;
  letter-spacing: 3px;
}

/* Quote Text */
#testimonial-section-container .quote-text {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 30px;
  position: relative;
  font-weight: 300;
  font-style: italic;
  padding-left: 20px;
  border-left: 2px solid rgba(249, 221, 144, 0.4);
  flex-grow: 1;
}

/* Author Section */
#testimonial-section-container .author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}

#testimonial-section-container .author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(249, 221, 144, 0.4);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

#testimonial-section-container .testimonial-card:hover .author-img {
  transform: scale(1.1);
  border-color: rgba(235, 155, 67, 0.7);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

#testimonial-section-container .author-info {
  display: flex;
  flex-direction: column;
}

#testimonial-section-container .author-name {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

#testimonial-section-container .author-role {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  #testimonial-section-container .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}

@media (max-width: 1024px) {
  #testimonial-section-container .main-title {
    font-size: 3rem;
  }
  
  #testimonial-section-container .testimonial-content {
    padding: 30px 25px;
  }
}

@media (max-width: 768px) {
  #testimonial-section-container {
    padding: 60px 0px;
  }
  
  #testimonial-section-container .main-title {
    font-size: 2.5rem;
  }
  
  #testimonial-section-container .title-wrapper {
    margin-bottom: 60px;
  }
  
  #testimonial-section-container .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
  
  #testimonial-section-container .testimonial-image-wrapper {
    height: 200px;
  }
}

@media (max-width: 480px) {
  #testimonial-section-container .main-title {
    font-size: 2rem;
  }
  
  #testimonial-section-container .subtitle {
    font-size: 14px;
    letter-spacing: 4px;
  }
  
  #testimonial-section-container .quote-text {
    font-size: 15px;
  }
  
  #testimonial-section-container .author-img {
    width: 50px;
    height: 50px;
  }
}

/*
**********************************************************
* END: Styles from 'Testimonial section'
**********************************************************
*/
/* ===== SCROLL ZONE ===== */
        .scroll-zoom-section {
            position: relative;
            width: 100%;
            height: 300vh; /* Triple viewport height for smooth journey */
            margin: 0;
        }

        /* ===== ZOOM CONTAINER ===== */
        .zoom-container {
            position: sticky;
            top: 0;
            width: 100%;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            background: white;
        }

        /* ===== IMAGE ELEMENT ===== */
        .zoom-image {
            width: 30vw;
            height: 22.5vw; /* 3:4 aspect ratio */
            min-width: 300px;
            min-height: 225px;
            max-width: 100vw;
            max-height: 100vh;
            object-fit: cover;
            object-position: center;
            border-radius: 16px;
            box-shadow: 0 25px 50px rgba(0,0,0,0.5);
            transform-origin: center center;
            will-change: transform, width, height, border-radius;
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* ===== CONTENT OVERLAY ===== */
        .zoom-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
            z-index: 2;
            padding: 20px;
            pointer-events: none;
            color: white;
        }

        /* ===== TYPOGRAPHY ===== */
        .zoom-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 6vw, 4.5rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 20px rgba(0,0,0,0.8);
            transform: scale(0.95);
            transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s;
            will-change: transform, opacity;
        }

        .zoom-subtitle {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(1rem, 1.5vw, 1.2rem);
            font-weight: 400;
            max-width: 600px;
            margin-bottom: 2.5rem;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
            text-shadow: 0 1px 10px rgba(0,0,0,0.8);
            will-change: transform, opacity;
        }

        /* ===== BUTTON STYLES ===== */
        .zoom-button {
            display: inline-block;
            padding: 18px 48px;
            background: linear-gradient(135deg, #d4af37 0%, #f1c40f 100%);
            border: none;
            border-radius: 50px;
            color: #111;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            pointer-events: auto;
            opacity: 0;
            transform: translateY(15px) scale(0.98);
            transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s;
            will-change: transform, opacity;
        }

        .zoom-button:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 15px 40px rgba(0,0,0,0.4);
        }

        /* Active state when content is visible */
        .zoom-content.active .zoom-title {
            transform: scale(1);
        }
        
        .zoom-content.active .zoom-subtitle {
            opacity: 0.9;
            transform: translateY(0);
        }
        
        .zoom-content.active .zoom-button {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        /* ===== SCROLL INDICATOR ===== */
        .scroll-hint {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 0.9rem;
            letter-spacing: 3px;
            opacity: 0.7;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
            40% {transform: translateY(-15px) translateX(-50%);}
            60% {transform: translateY(-7px) translateX(-50%);}
        }

        /* ===== MOBILE ADJUSTMENTS ===== */
        @media (max-width: 768px) {
            .zoom-image {
                width: 80vw;
                height: 60vw;
                min-width: 280px;
                min-height: 210px;
            }
            
            .scroll-zoom-section {
                height: 200vh;
            }
            
            .zoom-subtitle {
                max-width: 80%;
            }
        }

/*
**********************************************************
* START: Styles from 'Smooth Continuous Scrolling Gallery'
**********************************************************
/*
 * Gallery Section Specific Styles
 * Applies styles to the main gallery container and its children.
 */
/*
  New CSS for Gallery 4.

  Key Changes:
  1.  **CSS Animations Removed**: The `@keyframes` for `scroll` and `scrollReverse`
      along with the `animation` properties on `.grid-container-1` and `.grid-container-2`
      have been removed. The infinite looping is now solely handled by the JavaScript.
  2.  **Image Containers Made Bigger**: The `flex` property of `.grid-item` has been
      adjusted at various breakpoints to display fewer items per row,
      making each item appear larger.
  3.  **Pseudo-elements Removed**: The `::before`/`::after` rules for duplication have
      been removed as JavaScript handles the actual DOM cloning for seamless looping.
*/

.gallery4 {
    position: relative;
    overflow: hidden; /* Essential for containing the overflowing scrolling content */
    /*padding: 5rem 0;*/
	    padding: 3rem 0;
    background-color: #f8f9fa;
}

.gallery-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    overflow: hidden; /* Secondary overflow control */
}

.grid-container {
    display: flex;
    flex-direction: column;
    gap: 3.5rem; /* Gap between the two scrolling rows */
}

.grid-container-1,
.grid-container-2 {
    display: flex;
    flex-wrap: nowrap; /* Ensures items stay in a single row for horizontal scrolling */
    gap: 2.5rem; /* Default gap between grid items in a row */
    will-change: transform; /* Performance hint for smooth JavaScript-driven transforms */
    /* CSS animations (scroll, scrollReverse) removed as JavaScript now controls the transform */
}

.grid-item {
    /* Make items 'bigger' by showing fewer per row */
    /* Default: Change from approx 4 items to approx 2 items for a larger appearance */
    flex: 0 0 calc(50% - 2.5rem);
    border-radius: 16px;
    overflow: hidden; /* Crucial to clip image if it scales beyond container on hover */
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
    transition: all 0.3s ease; /* Smooth transition for hover effects */
    cursor: pointer;
    aspect-ratio: 16/9; /* Maintain a consistent aspect ratio for the image containers */
}

.grid-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 36px rgba(0,0,0,0.18);
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image fills container, cropping as needed without distortion */
    display: block; /* Removes any default inline-block spacing */
    transition: transform 0.5s ease; /* Smooth transition for image zoom */
}

.grid-item:hover img {
    transform: scale(1.08); /* Slight zoom effect on image when hovered */
}

/* --- Responsive Adjustments for 'Bigger' Images --- */

@media (max-width: 1400px) {
    .grid-item {
        /* On screens up to 1400px, still aim for ~2 items per row */
        /* Changed from 33.333% to 50% for bigger items */
        flex: 0 0 calc(50% - 2.5rem);
    }
}

@media (max-width: 900px) {
    .grid-container-1,
    .grid-container-2 {
        gap: 2rem; /* Adjusted gap between items for this breakpoint */
        padding: 0 2rem; /* Add horizontal padding to the containers */
    }
    .grid-item {
        /* On screens up to 900px, show a single large item per row (100% width) */
        /* Changed from 50% to 100%, and calc adjusted for 2rem gap */
        flex: 0 0 calc(100% - 2rem);
    }
}

@media (max-width: 700px) {
    /* Base styles from original 700px query, keep 100% for full width items */
    .grid-item {
        flex: 0 0 calc(100% - 3rem); /* This uses a 3rem buffer in its calculation */
    }
    .gallery4 {
        padding: 6rem 0;
    }
    .grid-container {
        gap: 3rem;
        margin-top: 3.5rem;
    }
    /* Note: If .gallery4 or .gallery-wrapper have overflow: hidden, then
       overflow-x: visible here will have no effect for visible content outside. */
    /* .grid-container-1, .grid-container-2 { overflow-x: visible; } Removed due to parent overflow hidden */
}

@media (max-width: 500px) {
    .grid-container-1,
    .grid-container-2 {
        gap: 1.5rem; /* Smallest gap for very small screens */
        padding: 0 1.5rem; /* Corresponding padding */
    }
    .grid-item {
        /* Single large item, adjusted for the new 1.5rem gap */
        /* Changed from 100% - 3rem to 100% - 1.5rem for better fit */
        flex: 0 0 calc(100% - 1.5rem);
    }
}



/* Add this CSS to style the airport icons with a blue color */
.map-marker-icon.icon-airport {
    background-color: #3498db;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.map-marker-icon.icon-airport i {
    font-size: 20px;
}

.timeline-description {
    color: black;
    font-size: 14px;
    margin-top: 5px;
    line-height: 1.4;
}


/*
**********************************************************
* END: Styles from 'Smooth Continuous Scrolling Gallery'
**********************************************************
*/


/*
**********************************************************
* START: Styles from 'Map and Image section'
**********************************************************
*/

/* No further direct CSS required; Tailwind handles styles for classes on parent and children elements within the section. */
/*
**********************************************************
* END: Styles from 'Map and Image section'
**********************************************************
*/

#footer {
        background-color: #206c56;
        color: #f9dd90;
        padding: 40px 0 0;
        font-size: 14px;
        line-height: 1.6;
        text-align: center;
        padding-bottom: 30px;
    }

    #footer .container {
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
    }

    /* Responsive container widths */
    @media (min-width: 576px) { #footer .container { max-width: 540px; } }
    @media (min-width: 768px) { #footer .container { max-width: 720px; } }
    @media (min-width: 992px) { #footer .container { max-width: 960px; } }
    @media (min-width: 1200px) { #footer .container { max-width: 1400px; } }

    #footer .row {
        display: flex;
        flex-wrap: wrap;
        margin-right: -15px;
        margin-left: -15px;
        justify-content: center;
    }
    
    /* Grid Columns */
    #footer [class*="col-"] {
        position: relative;
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
        #footer .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
        #footer .col-md-6 { flex: 0 0 50%; max-width: 50%; }
        #footer .col-md-12 { flex: 0 0 100%; max-width: 100%; }
    }
    @media (min-width: 992px) {
        #footer .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
        #footer .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    }

    /* Footer Content Styling */
    .footer-heading {
        font-size: 16px;
        font-weight: 700;
        color: #eb9b43;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        position: relative;
        padding-bottom: 12px;
        margin-bottom: 20px;
    }
    .footer-heading::after {
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        height: 2px;
        width: 40px;
        background-color: #eb9b43;
    }

    #footer .hotel-name {
        font-weight: 700;
        font-size: 18px;
        color: white;
        margin-bottom: 12px;
    }

    #footer address {
        font-style: normal;
        margin-bottom: 12px;
    }

    /* Links Styling */
    #footer .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    #footer .footer-links ul {
        list-style: none;
        padding: 0;
        margin: 0 15px;
        text-align: left;
        display: inline-block;
    }
    #footer .footer-links li {
        padding: 6px 0;
    }
    #footer .footer-links a {
        color: #f9dd90;
        text-decoration: none;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
    }
    #footer .footer-links a:hover {
        color: #eb9b43;
    }

    /* Social Icons Section */
    #footer .social-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    #footer .social-links {
        display: flex;
        justify-content: center;
        margin: 15px 0 20px;
    }
    #footer .social-links ul {
        display: flex;
        list-style: none;
        padding: 0;
        margin: 0;
        gap: 12px;
    }
    #footer .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background-color: #f9dd90;
        color: #206c56;
        font-size: 16px;
        transition: all 0.3s ease;
    }
    #footer .social-links a:hover {
        background-color: #eb9b43;
        color: #fff;
        transform: translateY(-3px);
    }

    /* Footer Logo */
    #footer .footer-logo {
        max-width: 180px;
        height: auto;
        margin: 0 auto 15px;
        display: block;
    }

    /* Footer Bottom */
    .footer-bottom {
        padding: 20px 0;
        margin-top: 30px;
        border-top: 1px solid rgba(249, 221, 144, 0.3);
        font-size: 13px;
    }
    .footer-bottom .copyright {
        margin-bottom: 8px;
        line-height: 1.5;
    }
    .footer-bottom .credits a {
        color: white;
        text-decoration: none;
    }
    .footer-bottom .credits a:hover {
        text-decoration: underline;
    }

    /* Font Awesome Icons */
    #footer .fas {
        margin-right: 8px;
        font-size: 14px;
        color: #eb9b43;
    }

    /* Responsive adjustments */
    @media (max-width: 767px) {
        #footer .footer-links ul {
            margin: 0;
            width: 100%;
            text-align: center;
        }
        #footer .footer-links a {
            justify-content: center;
        }
    }
	
.choice-bg{
		    background: #fff;
    padding: 10px 09px 0px 09px;
}
	

/*
**********************************************************
* START: Styles from 'Footer'
**********************************************************
*/





/* ===================================================================
   COMPLETE CSS FOR ENHANCED VIDEO SECTION & POPUP
   =================================================================== */

/* ===================================================================
   COMPLETE & FINAL CSS: VIDEO SECTION, POPUP, LOADING & ALL STATES
   =================================================================== */

/* --- The Main Container --- */
.about .video-box-enhanced {
  position: relative;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  overflow: hidden;
}

/* --- The "Ken Burns" Background Animation --- */
.about .video-box-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  animation: kenburns 20s ease-out infinite;
  z-index: 1;
}

/* --- The Dark Overlay for Contrast --- */
.about .video-box-enhanced .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 2;
}

/* --- Text Content Styling --- */
.about .video-content {
  position: relative;
  z-index: 3;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.about .video-content h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.about .video-content p {
  font-size: 20px;
  margin-bottom: 30px;
}

/* --- The New Play Button --- */
.about .play-btn-enhanced {
  width: 90px;
  height: 90px;
  background: radial-gradient(#ffc451 50%, rgba(255, 196, 81, 0.4) 52%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  overflow: visible;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.about .play-btn-enhanced:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(255, 196, 81, 0.5);
}

.about .play-btn-enhanced::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid #fff;
  margin-left: 5px;
  transition: all 0.3s ease;
}

.about .play-btn-enhanced:hover::after {
  border-left-color: #ffc451;
}

.about .play-btn-enhanced::before {
  content: '';
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 5px solid rgba(255, 196, 81, 0.7);
  animation: pulsate-btn-enhanced 2.5s ease-out infinite;
  opacity: 0;
}


/* ===================================================================
   Video Popup Modal Styles (with Loading State)
   =================================================================== */

/* --- The Dark Overlay --- */
.video-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.video-popup-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

/* --- The Popup Container --- */
.video-popup-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  background: #111; /* Visible during loading */
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  transform: scale(0.8);
  transition: transform 0.4s ease;
}

.video-popup-overlay.is-active .video-popup-container {
  transform: scale(1);
}

/* --- THE LOADING SPINNER & TEXT (NEW) --- */
/* The spinner icon */
.video-popup-container.is-loading::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
  width: 60px;
  height: 60px;
  border: 5px solid rgba(255, 255, 255, 0.2);
  border-top-color: #ffc451;
  border-radius: 50%;
  animation: popup-spinner 1s linear infinite;
  z-index: 15;
}
/* The "Loading..." text */
.video-popup-container.is-loading::after {
  content: 'Loading, please wait...';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 50px;
  color: #aaa;
  font-family: sans-serif;
  font-size: 16px;
  z-index: 15;
}

/* --- The content wrapper to hide/show content --- */
.video-popup-container .popup-content-wrapper {
  /* THIS HIDES THE YOUTUBE ICON/IFRAME INITIALLY */
  opacity: 0; 
  transition: opacity 0.4s 0.1s ease; /* Fades in smoothly */
}
.video-popup-container.content-ready .popup-content-wrapper {
  /* THIS REVEALS THE CONTENT ONCE LOADED */
  opacity: 1;
}

/* Remove loading spinner when content is ready */
.video-popup-container.content-ready::before,
.video-popup-container.content-ready::after {
  display: none;
}


/* --- Content Styles (iFrame and Messages) --- */
.video-popup-container iframe,
.video-popup-message {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-popup-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  padding: 30px;
}

.video-popup-message h2 {
  font-size: 38px;
  margin: 0;
  font-family: 'Playfair Display', serif;
}

.video-popup-message p {
  font-size: 18px;
  opacity: 0.9;
  margin-top: 15px;
}


/* --- The 'X' Close Button --- */
.video-popup-close {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 44px;
  height: 44px;
  background: white;
  color: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  z-index: 20;
}

.video-popup-close:hover {
  transform: scale(1.1);
  color: #ffb03b;
}


/* ===================================================================
   Keyframes and Animations
   =================================================================== */
@keyframes pulsate-btn-enhanced {
  0% { transform: translateX(-50%) translateY(-50%) scale(0.8); opacity: 1; }
  100% { transform: translateX(-50%) translateY(-50%) scale(1.5); opacity: 0; }
}

@keyframes kenburns {
  0% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.15) translate(-2%, 2%); }
  100% { transform: scale(1) translate(0, 0); }
}

@keyframes popup-spinner {
  to { transform: rotate(360deg); }
}


/* ===================================================================
   Responsive Media Queries
   =================================================================== */
@media (max-width: 768px) {
  .about .video-content h2 { font-size: 32px; }
  .about .video-content p { font-size: 16px; margin-bottom: 20px; }
  .about .play-btn-enhanced { width: 70px; height: 70px; }
  .about .play-btn-enhanced::after { border-top-width: 10px; border-bottom-width: 10px; border-left-width: 16px; }
  .about .video-box-enhanced { min-height: 400px; }
  .video-popup-close { top: 5px; right: 5px; width: 34px; height: 34px; font-size: 20px; background: rgba(255, 255, 255, 0.9); }
  .video-popup-message h2 { font-size: 28px; }
  .video-popup-message p { font-size: 16px; }
}








/* Scoped styles only for the carousel */
#tour-categories-section .tour-categories-carousel-item {
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.7s ease-out;
    will-change: transform, opacity;
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center center;
    display: flex;
    flex-direction: column;
}

#tour-categories-section .tour-categories-carousel-container {
    perspective: 1500px;
    height: 100%;
    width: 100%;
}

#tour-categories-section .tour-categories-carousel {
    height: 100%;
    width: 100%;
}

#tour-categories-section .tour-categories-carousel-wrapper {
    margin: 0 auto;
}

/* Improved text styles */
#tour-categories-section .tour-categories-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-top: 1rem;
    text-align: center;
}

#tour-categories-section .tour-categories-readmore {
    font-size: 1rem;
    color: #000;
    font-weight: 600;
    text-align: center;
    margin-top: 0.5rem;
}

/* Improved image styling */
#tour-categories-section .tour-categories-image {
    border-radius: 1rem;
    object-fit: cover;
    width: 100%;
    height: 280px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Text container */
#tour-categories-section .tour-categories-text-container {
    padding: 0 10px;
    text-align: center;
    margin-top: 10px;
}


/* Scoped styles for both Highlighted and Premium amenities sections using .amenities-section-mod */
.amenities-section-mod {
    --primary-color: #076248;
    --secondary-color: #eb9b43;
    --accent-color: #076248;
    --text-color: #333;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;

    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.amenities-section-mod * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.amenities-section-mod .section-container {
    margin: 0 auto;
    padding: 0 20px;
}

.amenities-section-mod .section-title {
    text-align: center;
    margin-bottom: 70px; /* Note: An inline style for "Highlighted Amenities" will override this */
    font-size: 3rem;
    color: #076248;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    margin-top: -20px;
    font-family: Georgia, 'Times New Roman', Times, serif; /* From original inline style block */
}

.amenities-section-mod .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    border-radius: 2px;
}

.amenities-section-mod .amenity-container {
    display: flex;
    align-items: stretch;
    margin-bottom: 80px;
    gap: 40px;
    position: relative;
    min-height: 500px;
}

.amenities-section-mod .text-container {
    flex: 1;
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    z-index: 2;
    flex-direction: column;
    justify-content: center;
}

.amenities-section-mod .text-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.amenities-section-mod .image-container {
    flex: 1;
    min-height: 500px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.amenities-section-mod .image-scroller {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.amenities-section-mod .amenity-title {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #076248;
    position: relative;
    padding-bottom: 15px;
}

.amenities-section-mod .amenity-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
}

.amenities-section-mod .amenity-list {
    list-style-type: none;
}

.amenities-section-mod .amenity-list li {
    padding: 12px 0;
    font-size: 1.2rem;
    color: var(--text-color);
    position: relative;
    padding-left: 40px;
    transition: var(--transition);
}

.amenities-section-mod .amenity-list li::before {
    content: "•";
    position: absolute;
    left: 15px;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

@media (max-width: 1200px) {
    .amenities-section-mod .amenity-container {
        gap: 30px;
        min-height: 450px;
    }
}

@media (max-width: 768px) {
    .amenities-section-mod .amenity-container {
        flex-direction: column;
        min-height: 800px;
    }

    .amenities-section-mod .image-container,
    .amenities-section-mod .text-container {
        width: 100%;
        min-height: 400px;
    }
}










.attractions-container {
    position: relative; /* Ensures content stays above background */
    z-index: 1;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 20px 20px;
}

.category {
    border-radius: 16px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    position: relative;
}

.category:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.25);
}

.category-image {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-bottom: 4px solid #eb9b43;
}

.transport-image {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('https://images.unsplash.com/photo-1506929562872-bb421503ef21?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
}

.airport-image {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
}

.restaurant-image {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
}

.category-header {
    padding: 20px;
    background-color: #076248;
    color: white;
    position: relative;
    margin-top: -7px;
}

.category-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.category-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.attraction-list {
    padding: 20px;
}

.attraction {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.attraction:last-child {
    border-bottom: none;
}

.attraction-info {
    flex: 1;
}

.attraction-name {
    font-weight: 500;
    margin-bottom: 4px;
    color: #000;
}

.attraction-type {
    font-size: 0.85rem;
    color: Black;
}

.attraction-distance {
    background-color: #eb9b43;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    min-width: 70px;
    text-align: center;
    transition: all 0.3s ease;
}

.attraction:hover .attraction-distance {
    background-color: #076248;
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .attractions-container {
        grid-template-columns: 1fr;
    }
    
    .category {
        max-width: 500px;
        margin: 0 auto;
    }
}













 /* Scoped styles with nola- prefix */
#nola-attractions-section {
    /* Existing properties */
    --shopping: linear-gradient(135deg, #6a11cb, #2575fc);
    --education: linear-gradient(135deg, #11998e, #38ef7d);
    --health: linear-gradient(135deg, #ff416c, #ff4b2b);
    --recreation: linear-gradient(135deg, #4b6cb7, #182848);
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: white;
    --light-bg: white;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    font-family: 'Segoe UI', 'Roboto', system-ui, sans-serif;
    background-color: var(--light-bg);
    padding: 2rem 0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);

    /* --- New for reveal on scroll (initially hidden) --- */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
    will-change: opacity, transform; /* Optimization hint for smooth animation */
}

/* Style for when the section is in view */
#nola-attractions-section.reveal {
    opacity: 1;
    transform: translateY(0);
}

#nola-attractions-section .nola-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

#nola-attractions-section .nola-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

#nola-attractions-section .nola-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: #154734;
    margin-bottom: 0.75rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

#nola-attractions-section .nola-title i {
    margin-right: 12px;
    color: #ee8d03;
}

#nola-attractions-section .nola-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

#nola-attractions-section .nola-category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

#nola-attractions-section .nola-tab {
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s var(--ease);
    border: none;
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #076248;
}

#nola-attractions-section .nola-tab[data-category="shopping"] { background: var(--shopping); }
#nola-attractions-section .nola-tab[data-category="education"] { background: var(--education); }
#nola-attractions-section .nola-tab[data-category="health"] { background: var(--health); }
#nola-attractions-section .nola-tab[data-category="recreation"] { background: var(--recreation); }

#nola-attractions-section .nola-tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

#nola-attractions-section .nola-tab.active {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

#nola-attractions-section .nola-category-content {
    display: none;
    animation: fadeIn 0.5s var(--ease) forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

#nola-attractions-section .nola-category-content.active {
    display: block;
}

#nola-attractions-section .nola-hero-image {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.08);
}

#nola-attractions-section .nola-attraction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
}

#nola-attractions-section .nola-attraction-card {
    background: var(--white);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

#nola-attractions-section .nola-attraction-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    transition: all 0.3s var(--ease);
}

#nola-attractions-section .nola-attraction-card[data-category="shopping"]::before { background: var(--shopping); }
#nola-attractions-section .nola-attraction-card[data-category="education"]::before { background: var(--education); }
#nola-attractions-section .nola-attraction-card[data-category="health"]::before { background: var(--health); }
#nola-attractions-section .nola-attraction-card[data-category="recreation"]::before { background: var(--recreation); }

#nola-attractions-section .nola-attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

#nola-attractions-section .nola-attraction-card:hover::before {
    width: 6px;
}

#nola-attractions-section .nola-attraction-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #eb9b43;
    line-height: 1.3;
}

#nola-attractions-section .nola-attraction-description {
    color: black;
    line-height: 1.6;
    font-size: 0.95rem;
    /* --- New for words not going outside --- */
    word-wrap: break-word;   /* Allows long words to break and wrap to the next line */
    overflow-wrap: break-word; /* Modern equivalent, ensures text within bounds */
}

@media (max-width: 768px) {
    #nola-attractions-section .nola-category-tabs {
        gap: 0.75rem;
    }
    
    #nola-attractions-section .nola-tab {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    #nola-attractions-section .nola-hero-image {
        height: 220px;
    }
    
    #nola-attractions-section .nola-attraction-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    #nola-attractions-section .nola-attraction-card {
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    #nola-attractions-section .nola-title {
        font-size: 1.6rem;
    }
    
    #nola-attractions-section .nola-subtitle {
        font-size: 1rem;
    }
    
    #nola-attractions-section .nola-tab {
        flex: 1 0 calc(50% - 0.75rem);
        justify-content: center;
    }
    
    #nola-attractions-section .nola-hero-image {
        height: 180px;
    }
}




.location-container {
  width: 100%;
  max-width: 100%;
  padding: 40px 0;
  background: white;
}

.location-title {
  text-align: center;
  color: #206c56;
  font-size: 2.4rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.location-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #206c56;
}

.location-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.location-info {
  flex: 1;
  min-width: 300px;
}

.coordinates-box {
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(1, 72, 134, 0.1);
  border: 1px solid rgba(1, 72, 134, 0.1);
}

.coordinates-box h3 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #206c56;
  font-size: 1.4rem;
  font-weight: 600;
}

.coordinate {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 12px;
  font-size: 1.05rem;
}

.coordinate i {
  color: #eb9b43;
  font-size: 1.2rem;
}

.directions-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(1, 72, 134, 0.1);
  border: 1px solid rgba(1, 72, 134, 0.1);
}

.directions-form label {
  font-weight: 600;
  color: #264653;
  font-size: 1.05rem;
}

.directions-form input {
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  width: 100%;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.directions-form input:focus {
  outline: none;
  border-color: #206c56;
  box-shadow: 0 0 0 3px rgba(1, 72, 134, 0.2);
}

.directions-form button {
  background: #206c56;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.directions-form button:hover {
  background: #eb9b43;
  transform: translateY(-2px);
}

.location-map {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(1, 72, 134, 0.1);
  border: 1px solid rgba(1, 72, 134, 0.1);
  transition: transform 0.3s ease;
}

.location-map:hover {
  transform: translateY(-5px);
}

.location-map img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .location-content {
    flex-direction: column;
  }
  
  .location-info, .location-map {
    width: 100%;
  }
}




.content-wrapper {
    display: flex;
    gap: 30px;
    margin: 0 auto;
    padding: 20px;
}

.contact-card {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: slideUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
    transform: translateY(20px);
    height: 450px;
}

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-card h2 {
    color: #206c56;
    margin-bottom: 25px;
    font-size: 1.8rem;
    position: relative;
    text-align: center;
}

.contact-card h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #eb9b43;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item i {
    color: #eb9b43;
    font-size: 1.5rem;
    margin-right: 15px;
    min-width: 24px;
    text-align: center;
}

.info-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #206c56;
}

.info-text p, .info-text a {
    font-size: 1.1rem;
    color: #000000;
    text-decoration: none;
    transition: color 0.3s;
}

.info-text a:hover {
    color: var(--hampton-blue);
    text-decoration: underline;
}

.map-container {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: slideUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
    transform: translateY(20px);
    height: 450px;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }
    
    .contact-card, .map-container {
        width: 100%;
        height: auto;
    }
    
    .map-container {
        height: 350px;
    }
}






/* Scoped styles for the hotel navigation section */
#hotel-navigation-section {
    padding: 0 20px; /* Horizontal padding to prevent content from touching screen edges */
    display: flex; /* Enables flexbox for side-by-side layout */
    gap: 30px; /* Creates space between the two flex items */
    padding: 0 20px; /* Horizontal padding to prevent content from touching screen edges */
    align-items: stretch; /* Ensures both children stretch to occupy the same height */
    flex-wrap: wrap; /* Allows items to wrap onto the next line if space is insufficient */
}

#hotel-navigation-section .container {
    margin: 0 auto;
    padding: 0 20px;
}

#hotel-navigation-section .navigation-grid {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Space between rows of nav items */
}

#hotel-navigation-section .nav-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px; /* Space between individual nav items */
}

#hotel-navigation-section .nav-item {
    display: flex;
    height: 100%; /* Ensures nav-link can fill available height */
}

#hotel-navigation-section .nav-link {
    flex: 1; /* Allows the link to expand and fill the nav-item */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #206c56; /* A modern dark grey color from second block */
    text-decoration: none;
    background: white;
    border-radius: 8px;
    padding: 25px 15px; /* Larger padding for better touch targets from first block */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); /* Softer initial shadow from first block */
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    height: 120px; /* Fixed height for consistent rectangular format from first block */
}

#hotel-navigation-section .nav-link:hover {
    background: #206c56; /* Purple hover background from first block */
    color: white;
    box-shadow: 0 8px 16px rgba(0, 98, 204, 0.2); /* Stronger hover shadow from first block */
    transform: translateY(-3px);
}

#hotel-navigation-section .nav-icon {
    font-size: 24px;
    margin-bottom: 12px; /* Slightly more space below icon from first block */
    color: #eb9b43; /* Orange icon color from first block */
    transition: all 0.3s ease;
}

#hotel-navigation-section .nav-link:hover .nav-icon {
    color: white;
    transform: scale(1.1);
}

#hotel-navigation-section .nav-text {
    font-weight: 600;
    font-size: 16px; /* Base font size, overridden by media query */
    margin-bottom: 5px;
}

#hotel-navigation-section .nav-desc {
    font-size: 13px; /* Base font size, overridden by media query */
    opacity: 0.8;
    line-height: 1.4;
}

/* Responsive styles */

/* For medium screens (laptops, large tablets) - Two columns */
@media (max-width: 992px) {
    #hotel-navigation-section .nav-row {
        grid-template-columns: repeat(2, 1fr);
    }
    #hotel-navigation-section .nav-link {
        height: 110px; /* Reduced height */
        padding: 20px 10px; /* Reduced padding */
    }
}

/* For larger text on tablets and up (adapting from second block) */
@media (min-width: 768px) {
    #hotel-navigation-section .nav-text {
        font-size: 17px; /* Slightly larger font for main text */
    }
    #hotel-navigation-section .nav-desc {
        font-size: 14px; /* Slightly larger font for description */
    }
}

/* For small screens (mobile phones) - Single column */
@media (max-width: 576px) {
    #hotel-navigation-section {
        padding: 30px 0; /* Adjust section padding */
    }
    #hotel-navigation-section .nav-row {
        grid-template-columns: 1fr; /* Single column layout */
    }
    #hotel-navigation-section .nav-link {
        height: 100px; /* Further reduced height */
        padding: 15px 10px; /* Further reduced padding */
    }
}





.faq-section {
    padding: 0 20px; /* Horizontal padding to prevent content from touching screen edges */
    display: flex; /* Enables flexbox for side-by-side layout */
    flex-wrap: wrap; /* Allows items to wrap onto the next line if space is insufficient */
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h2 {
    color: #206c56;
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.faq-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #206c56, #eb9b43);
    border-radius: 2px;
}

.faq-header p {
    color: #666;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 25px;
}

.faq-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border-top: 4px solid #eb9b43;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.faq-question {
    padding: 25px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: #206c56;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 18px;
}

.faq-question-text {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.faq-answer {
    padding: 25px;
    position: relative;
}

.faq-answer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    right: 25px;
    height: 1px;
    background: linear-gradient(to right, transparent, #206c56, transparent);
}

.faq-answer p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.faq-answer a {
    color: #206c56;
    font-weight: 600;
    text-decoration: none !important;
}

.faq-answer a:hover {
    color: #206c56;
    border-bottom-color: #206c56;
}

.faq-answer .fa-caret-right {
    color: #eb9b43;
    margin-right: 8px;
}

@media (max-width: 600px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-header h2 {
        font-size: 28px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-answer {
        padding: 20px;
    }
}





.highlighted-attraction-section {
            color: black;
            text-align: center;
            margin-top: 45px;
        }
        .highlighted-container {
            max-width: 1200px;
            margin: 40px auto;
            border: 1px solid #e0e0e0;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            background: #ffffff;
        }
        .highlighted-header {
            margin-bottom: 40px;
            padding: 20px;
            background: linear-gradient(135deg, #f7f9fc, #dfeaf1);
        }
        .highlighted-title {
            font-size: 2.5rem;
            margin-bottom: 10px;
            font-weight: bold;
        }
        .highlighted-subtitle {
            font-size: 1.3rem;
        }
        .highlighted-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
            padding: 40px;
        }
        .highlighted-description {
            flex: 1;
            text-align: left;
        }
        .highlighted-features {
            list-style: none;
            padding: 0;
            margin-bottom: 20px;
        }
        .highlighted-features li {
            font-size: 1.1rem;
            margin-bottom: 15px;
            color: #444;
            display: flex;
            align-items: center;
        }
        .highlighted-features li strong {
            color: #206c56;
        }
        .highlighted-text {
            font-size: 1rem;
            line-height: 1.6;
            color: #444;
            margin-bottom: 15px;
        }
        .highlighted-reservation-btn {
            display: inline-block;
            padding: 12px 24px;
            background: #206c56;
            color: #fff !important;
            text-transform: uppercase;
            font-weight: bold;
            text-decoration: none;
            border-radius: 8px;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }
        .highlighted-reservation-btn:hover {
            background: #eb9b43;
            transform: translateY(-3px);
        }
        .highlighted-image {
            flex: 1;
            max-height: 300px;
            overflow: hidden;
        }
        .highlighted-img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .highlighted-img:hover {
            transform: scale(1.03);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        }
        @media (max-width: 768px) {
            .highlighted-content {
                flex-direction: column;
            }
            .highlighted-title {
                font-size: 2rem;
            }
            .highlighted-subtitle {
                font-size: 1.1rem;
            }
        }