/* CSS Variables: White Background with Eye-Catchy Palette */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700');
:root {
/* NEW Core Palette */
--theme-light: #ffffff; /* Primary background color */
--theme-dark: #280848;  /* Primary dark color (deep purple) */
--theme-accent-yellow: #fcf106; /* Primary accent (bright yellow/gold) */
--theme-accent-purple: #280848; /* Secondary accent (alias for --theme-dark for clarity) */
--theme-text-dark: #280848; /* Main body text color for readability */
--theme-text-light: #ffffff; /* Text color on dark backgrounds */

/* Mapping new palette to old variable names for compatibility and logical use */
--conway-gold: var(--theme-accent-yellow);
--conway-gold-rgb: 252, 241, 6;
--conway-gold-light: var(--theme-accent-purple); /* This was problematic before; now clearly points to purple */
--conway-dark: var(--theme-dark);
--conway-dark-light: rgba(40, 8, 72, 0.7); /* Lighter shade of purple for specific contexts */
--conway-light: var(--theme-light);
--text-gray-medium: rgba(40, 8, 72, 0.7); /* Changed from grey to a transparent purple for harmony */
--white: var(--theme-text-light);
--black: var(--theme-dark); /* Now directly maps to deep purple */

/*
   MODIFIED: Font variables - All font declarations streamlined to use two main variables:
   --font-heading-primary for all headings and --font-body-primary for all paragraphs and general text.
*/
--font-heading-primary: 'Cormorant Garamond', serif; /* Changed to an imported serif font */
--font-body-primary: 'Montserrat', sans-serif; /* Consistently using Lato */

/* Variables for "Corporate Image Layout" and "Hotel Portfolio Carousel" */
--text-color-light: var(--white);
--text-color-dark: var(--theme-text-dark);
--card-bg-color: var(--theme-dark); /* Dark background for cards on light sections */
--gold-accent: var(--theme-accent-yellow);
--nav-arrow-bg: var(--theme-accent-purple); /* Used in previous luxury-rooms, mapped to new color */
--title-font: var(--font-heading-primary); /* MODIFIED */
--body-font: var(--font-body-primary);     /* MODIFIED */
--text-overlay: rgba(40, 8, 72, 0.6); /* Purple overlay */

/* Team Section specific colors */
--color-light-background: var(--conway-light);
--color-white: var(--white);
--color-off-white: #f8f8f8; /* Kept as it is subtle, not violating color count */
--color-dark-text: var(--theme-text-dark);
--color-medium-gray: rgba(40, 8, 72, 0.6); /* Subtle shade of purple */
--color-gold: var(--conway-gold);
--color-gold-light: var(--conway-gold-light); /* This is now purple */
--color-gold-dark: rgba(40, 8, 72, 0.8); /* Used a darker purple here */
--section-padding: 80px;

/* FIXED: Header height variables defined here */
--header-main-height: 110px; /* Estimated height for desktop header */
--mobile-header-height: 70px; /* Estimated height for mobile header */
/* Add this variable to easily control initial height for top bar */
--header-top-bar-height-visual: 45px; /* Adjust this to actual visual height of the top bar including its paddings */

/* Slider specific variable for width */
--width-default: min(1200px, 90vw);

/* Reusing these for CTA from original file context for simplicity */
--cta-color: var(--theme-accent-yellow); /* Used in "Book Now" CTA */
--cta-hover-color: var(--theme-accent-purple); /* Hover state of "Book Now" */
--dark-text: var(--theme-text-dark); /* Ensure it resolves correctly */
--primary-color: var(--theme-accent-purple); /* For back of 3D box, seems to imply the red accent */
--active-color: var(--theme-accent-purple); /* For active nav item */
--light-text: var(--theme-text-light); /* For text on active nav item */

/* Adina template font variable mappings (these affect .td- classes from merged assets/css/main.css) */
--td-ff-manrope: var(--font-body-primary);
--td-ff-poppins: var(--font-body-primary);
--td-ff-inter: var(--font-body-primary);
--td-ff-fontawesome: "Font Awesome 6 Pro"; /* Kept as specific icon font */

/* Keeping Adina color variables as original where they existed, to maintain layout without changes,
   unless explicitly overridden in other parts of this stylesheet */
--td-common-white: #fff;
--td-common-bg: #223035;
--td-common-line: #e6e6e6;
--td-grey-1: #f5f9ff;
--td-grey-2: #666; /* Note: this conflicts with text-gray-medium's value, keeping for td-specific elements if needed */
--td-theme-primary: #20282d; /* Note: this conflicts with theme-dark's value, keeping for td-specific elements if needed */

}

/* Base HTML & Body */
html {
scroll-behavior: smooth;
}
body {
/* MODIFIED: Use the new primary body font variable */
font-family: var(--font-body-primary);
color: var(--theme-text-dark); /* Main text is now dark for readability on white BG */
background-color: var(--conway-light); /* Main background is now WHITE */
line-height: 1.6;
position: relative;
overflow-x: hidden;
margin: 0;
font-size: 15px;
}

* {
box-sizing: border-box;
padding: 0;
margin: 0;
list-style: none;
}
/* MODIFIED: Use the new primary heading font variable for all headings */
h1, h2, h3, h4, h5, h6 {
font-family: var(--font-heading-primary);
font-weight: 700;
color: var(--theme-text-dark); /* Headings are dark by default */
}

main {
min-height: 100vh;
position: relative;
overflow: hidden;
/* This padding will now be set dynamically by JavaScript to prevent jumps */
padding-top: 0 !important;;
}

svg {
color: var(--theme-text-dark); /* SVG color default */
}

/* Utility Classes */
.visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.container {  margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 1rem; }
.text-center { text-align: center; }
.hidden { display: none !important; }


/* ===== Header Styles ===== */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    background: rgb(0 0 0 / 43%);
}

#main-header.is-sticky {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    background: rgb(25 135 84 / 49%);
    backdrop-filter: blur(10px);
}

.header-top-bar {
    background:rgb(25 135 84 / 38%);
    color: white;
    padding: 6px 0 10px 0;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease-in-out;
    border-bottom: 0px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

#main-header.is-sticky .header-top-bar {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    visibility: hidden;
    border: none;
}

.header-top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.widget-contact {
    display: flex;
    gap: 2rem;
}

.widget-contact a, .widget-contact span {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.widget-contact a:hover, .widget-contact span:hover {
    transform: translateY(-2px);
}

.widget-contact i {
    color: gold; /* Using a generic color for visibility */
    margin-right: 8px;
    font-size: 1.1rem;
}

.widget-social {
    display: flex;
    gap: 0.5rem;
}

.widget-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.widget-social a:hover {
    background: gold;
    color: #111;
    transform: translateY(-3px);
}

.header-main {
    height: 90px; /* Example height */
    display: flex;
    align-items: center;
    transition: height 0.3s ease-in-out;
    backdrop-filter: blur(10px);
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    width: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 77px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease-in-out;
}

#main-header.is-sticky .logo-img {
    height: 70px;
}

.nav-and-cta {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.desktop-nav {
    display: flex;
}

.nav-menu {
    display: flex;
    gap: 20px;
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.nav-item {
    position: relative;
    perspective: 600px;
}

/**************************************************/
/* --- CRITICAL FIX FOR PC DROPDOWN --- START --- */
/**************************************************/

/* This forces the parent LI not to clip or hide its children,
   which is essential for the dropdown to appear. */
.nav-item.has-dropdown {
    overflow: visible !important;
}

/* Default state: Hide the dropdown menu */
.nav-item .dropdown-menu {
    display: block; /* Keep it as block for transitions */
    position: absolute;
    top: 110%; /* Position it slightly below the button */
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    padding: 10px 0;
    list-style: none;
    z-index: 9999; /* Extremely high z-index to be on top of everything */
    
    /* Animation properties */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

/* Hover state: Show the dropdown menu */
.nav-item:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    background-color: transparent;
    text-transform: none; /* Sub-menu items are not uppercase */
}

.dropdown-menu li a:hover {
    background-color: #f5f5f5;
    color: #1a73e8; /* A nice highlight color */
    padding-left: 25px; /* Indent on hover for effect */
}

/**************************************************/
/* --- CRITICAL FIX FOR PC DROPDOWN --- END ---   */
/**************************************************/

.nav-link {
    display: block;
    height: 35px;
    line-height: 35px;
    padding: 0 13px;
    font-weight: 600;
    font-size: 13px;
    color: transparent; /* For the 3D effect */
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
}

.three-d-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    transform-style: preserve-3d;
    transform: translateZ(-18px); /* Adjusted for line-height */
}

.nav-item:hover .three-d-box {
    transform: translateZ(-18px) rotateX(-90deg);
}

.front, .back {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    backface-visibility: hidden;
    transition: all 0.3s ease;
}

.front {
    transform: rotateX(0deg) translateZ(18px);
    background: #fff;
    color: #333;
    border: 1px solid #f0f0f0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.nav-item:hover .front {
    color: #1a73e8;
    border-color: #1a73e8;
}

.back {
    transform: rotateX(90deg) translateZ(18px);
    background: #062c06;
    color: white;
}

.nav-item.active .front {
    background-color: #062c06;
    color: white;
}

.nav-item.active:hover .front {
    color: white;
}

.nav-item.active:hover .three-d-box {
    transform: translateZ(-18px) rotateX(0deg);
}

/* "Book Now" CTA Button */
.nav-cta-button a {
    display: block;
    padding: 14px 32px;
    background: gold;
    color: #111;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(252, 241, 6, 0.3);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-cta-button a:hover {
    background: #1d331e;
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(40, 8, 72, 0.4);
}

/* Responsive & Mobile Navigation */
.mobile-header, .hamburger-menu, .mobile-menu-container {
    display: none;
}

@media (max-width: 900px) {
    /* Hide desktop nav and show mobile nav */
    .desktop-nav, .header-top-bar, .header-main {
        display: none;
    }

    .mobile-header, .hamburger-menu {
        display: block;
    }

    .mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 70px;
        width: 100%;
        padding: 0 25px;
        background-color: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1003;
    }
    
    .mobile-header .logo-img {
        height: 50px;
    }

    .hamburger-menu {
        cursor: pointer;
        z-index: 1004;
    }
    
    .hamburger-menu .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        background-color: #333;
        transition: all 0.3s ease-in-out;
    }
    
    .hamburger-menu.is-active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger-menu.is-active .bar:nth-child(2) { opacity: 0; }
    .hamburger-menu.is-active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .mobile-menu-container {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 1002;
    }
    
    .mobile-menu-container.is-active { pointer-events: auto; }

    .mobile-menu-overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        opacity: 0;
        transition: opacity 0.4s ease;
    }
    
    .mobile-menu-container.is-active .mobile-menu-overlay { opacity: 1; }

    .mobile-menu {
        position: absolute;
        top: 0;
        right: -85%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: #fff;
        padding: 30px;
        overflow-y: auto;
        transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .mobile-menu-container.is-active .mobile-menu { right: 0; }

    .mobile-menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        cursor: pointer;
        z-index: 1005;
    }

    .mobile-menu ul {
        list-style: none;
        padding-left: 0;
    }
    
    .mobile-menu ul li a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        border-radius: 5px;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        text-decoration: none;
        color: #333;
        background: #f8f8f8;
        margin-bottom: 10px;
    }
    
    /* Mobile Submenu (Accordion) Styles */
    .mobile-menu .dropdown-arrow {
        transition: transform 0.3s ease-in-out;
        font-size: 0.8em;
    }

    .mobile-menu li.has-dropdown.submenu-open > a .dropdown-arrow {
        transform: rotate(180deg);
    }

    .mobile-submenu {
        list-style: none;
        padding-left: 20px;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.4s ease-in-out;
    }

    .mobile-menu li.has-dropdown.submenu-open > .mobile-submenu {
        max-height: 500px;
        margin-top: 5px;
    }

    .mobile-submenu li a {
        font-size: 1rem;
        background-color: #f0f0f0;
    }

    .mobile-menu ul li a.mobile-cta {
        display: block;
        background: gold;
        color: #111;
        text-align: center;
    }
}


/* Hero Video Slider Section (Dark Section) */
#hero-section {
    width: 100vw;
    height: 120vh;
    position: relative;
    overflow: hidden;
    /* background-color: var(--conway-dark); */
    display: block;
}
.swiper-container-hero { width: 100%; height: 100%; }
.swiper-slide {
position: relative; display: flex; justify-content: center; align-items: center;
overflow: hidden; background-color: white;
}
.swiper-slide video {
width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0;
filter: brightness(0.4); transition: filter 2s;
}
.swiper-slide-active video { filter: brightness(0.8); }

.hero-video-slide-content {
position: relative; z-index: 30; text-align: center;
/* MODIFIED: Changed general font for slide content (including p) */
color: var(--white); font-family: var(--font-body-primary);
text-shadow: 0 2px 20px rgba(0,0,0,0.7);
padding-top: 259px; width: min(800px, 90vw); max-width: 90%; margin: 0 auto;
}

.swiper-slide-active .hero-video-slide-content h1 {
    transform: translateY(0);
    opacity: 1;
}

.hero-video-slide-content h1 {
    font-size: 6.8em;
    font-family: var(--font-heading);
    line-height: 0.9em;
    margin-bottom: 20px;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 1s 
cubic-bezier(0.2, 0.8, 0.2, 1), opacity 1s 
cubic-bezier(0.2, 0.8, 0.2, 1);
    color: #eeeee8;
}

.hero-video-slide-content h2 {
/* MODIFIED: Explicitly keep or re-align H2 here with main heading font */
font-size: 3.5em; font-family: var(--font-heading-primary); line-height: 0.9em; margin-bottom: 20px;
transform: translateY(100%); opacity: 0;
transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1);
color: #ced4da; /* Eye-catching yellow hero title */
text-transform: uppercase;
}
.swiper-slide-active .hero-video-slide-content h2 { transform: translateY(0); opacity: 1; }
.hero-video-slide-content p {
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(20px);
    transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s, opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s;
    font-weight: 600;
}
.swiper-slide-active .hero-video-slide-content p { transform: translateY(0); opacity: 1; }

@media all and (max-width: 1024px) { .hero-video-slide-content h2 { font-size: 6em; } }
@media all and (max-width: 767px) {
#hero-section { height: 100vh; }
.hero-video-slide-content h2 { font-size: 4em; }
.hero-video-slide-content p { font-size: 1em; }
}

/* General Section Styles (for light background) */
/* MODIFIED: Apply primary body font to section subtitle */
.section-title { font-size: 2.25rem; margin-bottom: 1rem; color: var(--theme-dark); }
.section-subtitle { font-family: var(--font-body-primary); font-size: 1.125rem; color: var(--text-gray-medium); margin-bottom: 3rem; }

@media (min-width: 768px) { .section-title { font-size: 3rem; } .section-subtitle { font-size: 1.25rem; } }


/* Your Comfort Section (Dark Section) */
#your-comfort-section {
    background-color: var(--black); /* Uses deep purple */
     /* Added to give more room for the top image */
    padding-bottom: 100px; /* Increased to give more room for the bottom image */
    color: #dcdcdc; /* Subtle light text */
    overflow: hidden; /* Important for bubble background */
    margin-top: -70px;
    position: relative;
    z-index: 1;
}

#your-comfort-section h1, #your-comfort-section h2, #your-comfort-section h3 {
    color: var(--white);
}

#your-comfort-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(40, 8, 72, 0.4); /* Uses deep purple */
    z-index: 0;
}

.bubbles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: var(--theme-dark); /* Uses deep purple */
    z-index: -1;
}

.bubble {
    position: absolute;
    bottom: -50px;
    background-color: rgba(var(--conway-gold-rgb), 0.3); /* Uses yellow RGB */
    border-radius: 50%;
    animation: bubbleUp linear infinite;
}

@keyframes bubbleUp {
    0% { transform: translateY(0) scale(0); opacity: 0; }
    10% { opacity: 0.5; transform: scale(0.3); }
    90% { opacity: 0.8; }
    100% { transform: translateY(-1000px) scale(1.2); opacity: 0; }
}

.bubble:nth-child(2), .bubble:nth-child(5), .bubble:nth-child(8), .bubble:nth-child(12), .bubble:nth-child(15) {
    background-color: rgba(40, 8, 72, 0.3); /* Deep purple bubbles */
}
.bubble:nth-child(1) { left: 10%; width: 60px; height: 60px; animation-duration: 10s; animation-delay: 0s; }
.bubble:nth-child(2) { left: 20%; width: 40px; height: 40px; animation-duration: 8s; animation-delay: 1.5s; }
.bubble:nth-child(3) { left: 25%; width: 70px; height: 70px; animation-duration: 12s; animation-delay: 3s; }
.bubble:nth-child(4) { left: 40%; width: 50px; height: 50px; animation-duration: 9s; animation-delay: 0.5s; }
.bubble:nth-child(5) { left: 45%; width: 30px; height: 30px; animation-duration: 7s; animation-delay: 2s; }
.bubble:nth-child(6) { left: 50%; width: 80px; height: 80px; animation-duration: 11s; animation-delay: 4s; }
.bubble:nth-child(7) { left: 60%; width: 45px; height: 45px; animation-duration: 9.5s; animation-delay: 1s; }
.bubble:nth-child(8) { left: 70%; width: 65px; height: 65px; animation-duration: 10.5s; animation-delay: 2.5s; }
.bubble:nth-child(9) { left: 80%; width: 35px; height: 35px; animation-duration: 8.5s; animation-delay: 3.5s; }
.bubble:nth-child(10) { left: 90%; width: 75px; height: 75px; animation-duration: 13s; animation-delay: 0.8s; }
.bubble:nth-child(11) { left: 5%; width: 55px; height: 55px; animation-duration: 10.2s; animation-delay: 1.2s; }
.bubble:nth-child(12) { left: 33%; width: 48px; height: 48px; animation-duration: 8.8s; animation-delay: 2.8s; }
.bubble:nth-child(13) { left: 68%; width: 72px; height: 72px; animation-duration: 11.5s; animation-delay: 0.3s; }
.bubble:nth-child(14) { left: 15%; width: 28px; height: 28px; animation-duration: 6.5s; animation-delay: 4.5s; }
.bubble:nth-child(15) { left: 85%; width: 62px; height: 62px; animation-duration: 9.2s; animation-delay: 1.8s; }

#your-comfort-section .main-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* Retain original 3-column grid */
    align-items: center; /* Helps center content vertically */
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

#your-comfort-section .image-column {
    position: relative; /* Maintain relative positioning for columns within grid */
    width: 100%;
}

#your-comfort-section .image-column img {
    width: 100%;
    max-width: 500px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    display: block;
}

/* FIX: Achieved "top corner" effect using negative margin-top */
#your-comfort-section .image-column.left {
    justify-self: end; /* Aligns to the right within its left grid column */
    margin-top: -440px; /* Moves image column upwards into the "top corner" */
    z-index: 1;
}

/* FIX: Achieved "bottom corner" effect using positive margin-top */
#your-comfort-section .image-column.right {
    justify-self: start; /* Aligns to the left within its right grid column */
    margin-top: 630px; /* Moves image column downwards into the "bottom corner" */
    z-index: 1;
}

#your-comfort-section .content-column {
    background-color: #4f1985; /* Uses deep purple */
    padding: 45px 55px;
    text-align: center;
    max-width: 500px;
    position: relative;
    z-index: 10; /* Ensures content is always on top if any minor overlap occurs */
    border: 1px solid var(--theme-accent-yellow); /* Uses bright yellow */
    margin-top: 100px; /* Maintain vertical offset for the content column */
    color: #dcdcdc;
}

#your-comfort-section .subtitle {
    font-size: 11px;
    font-weight: 600;
    color: var(--conway-gold); /* Uses bright yellow */
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

#your-comfort-section .content-column h1 {
    /* MODIFIED: Changed h1 font family */
    font-family: var(--font-heading-primary);
    font-size: 42px;
    font-weight: 700;
    color: var(--theme-accent-yellow); /* Used theme variable instead of hardcoded hex */
    line-height: 1.2;
    margin: 0 0 20px 0;
}

#your-comfort-section .content-column p {
    /* MODIFIED: Changed paragraph font family */
    font-family: var(--font-body-primary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #dcdcdc;
}

#your-comfort-section .reservation-info {
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
}

#your-comfort-section .reservation-info span {
    color: var(--conway-gold); /* Uses bright yellow */
    margin-left: 8px;
}

#your-comfort-section .cta-button {
    display: inline-block;
    background-color: var(--conway-gold); /* Uses bright yellow */
    color: var(--theme-dark); /* Uses deep purple */
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#your-comfort-section .cta-button:hover {
    background-color: var(--conway-gold-light); /* Uses deep purple */
    color: var(--white);
}

/* Media Query for responsiveness */
@media (max-width: 1024px) {
    #your-comfort-section {
        padding-top: 50px; /* Reset padding for mobile */
        padding-bottom: 50px;
    }
    #your-comfort-section .main-container {
        grid-template-columns: 1fr; /* Stack columns on smaller screens */
        gap: 0;
        margin: 40px auto;
        padding: 0 20px;
        display: flex;
        flex-direction: column;
    }
    #your-comfort-section .image-column.left, #your-comfort-section .image-column.right {
        transform: none; /* Ensure transforms are off for mobile */
        margin-top: 0; /* Reset margins for mobile */
        margin-bottom: 20px;
        justify-self: center; /* Center images horizontally on mobile */
        width: 100%;
        max-width: 600px;
        order: 1; /* Puts images before text on mobile */
    }
    #your-comfort-section .image-column.right {
        margin-bottom: 40px; /* Specific spacing for the second image on mobile */
    }
    #your-comfort-section .image-column img {
        height: 250px;
        max-width: 100%;
    }
    #your-comfort-section .content-column {
        order: 2; /* Puts content after images on mobile */
        margin: 0 auto;
        max-width: 600px;
        width: 100%;
        margin-top: 0;
        padding: 40px 30px;
    }
}


/* About Section (Light Section) */
.about-section {
    padding: 2rem 0;
    color: black;
    border-radius: 12px;
    font-size: 17px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

/* --- NEW --- This is the new parent container for the images */
.about-image-column {
    position: relative;
    margin-bottom: 4rem;
}

/* On desktop, remove the mobile margin, as grid gap handles spacing */
@media (min-width: 1024px) {
    .about-image-column {
        margin-top: -206px;
    }
}

/* Main image container styling */
.about-image-wrapper {
    position: relative;
    padding: 1rem;
    /* background-color: var(--theme-accent-yellow); */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-radius: 0.5rem;
    z-index: 2;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 0rem;
    object-fit: cover;
    transition: transform 0.5s;
    display: block;
}

.about-image-wrapper img:hover {
    transform: scale(1.01);
}

.image-caption {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background-color: var(--conway-gold);
    color: var(--theme-dark);
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    /* MODIFIED: Apply primary body font for caption */
    font-family: var(--font-body-primary);
    font-size: 0.875rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

/* --- MODIFIED --- Overlapping image styling */
.overlap-image-container {
    width: 65%; /* Adjusted for a better look on mobile */
    height: auto;
    border: 5px solid white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 4; /* Ensures it's on top */
}

/* Mobile-first styling for the overlapping image */
.overlap-image-container {
    /* Position it cleanly stacked on mobile */
    margin-left: auto;
    margin-right: 1rem; /* Add some spacing from the edge */
    margin-top: -80px;  /* Pull it up over the main image */
    transform: rotate(3deg);
}


.overlap-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Desktop positioning for the overlapping image */
@media (min-width: 1024px) {
    .overlap-image-container {
        position: absolute;
        /* bottom: -50px; */
        right: 176px;
        width: 45%;
        /* margin: 0; */
        transform: rotate(16deg);
    }
}


.overlap-image-container:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.about-content-wrapper .section-title {
    text-align: left;
    color: #084810;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    font-size: 2.1rem;
    text-transform: uppercase;
}

.lead-text {
    font-size: 1.19rem;
    margin-bottom: 1rem;
    color: black;
    font-weight: 500;
    line-height: 1.7;
    /* This will inherit var(--font-body-primary) from <body> */
}

.about-content-wrapper p {
    margin-bottom: 1.5rem;
    color: black; /* Fixed missing color value */
    line-height: 1.7;
    /* This will inherit var(--font-body-primary) from <body> */
}

.about-contact-link {
    margin-bottom: 1.5rem;
    font-weight: 500;
    /* This will inherit var(--font-body-primary) from <body> */
}

.btn-text-icon {
    display: inline-flex;
    align-items: center;
    color: var(--theme-accent-purple);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    /* This will inherit var(--font-body-primary) from <body> */
}

.btn-text-icon:hover {
    color: var(--conway-gold);
}

.btn-text-icon .icon-arrow-right {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn-text-icon:hover .icon-arrow-right {
    transform: translateX(4px);
}

.about-award-usp {
    padding: 1.5rem;
    background-color: #280848;
    border-left: 4px solid var(--conway-gold);
    border-radius: 0 0.5rem 0.5rem 0;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 2rem;
}

.about-award-usp p { /* Added specific style for P in usp, removed inline from HTML */
    color: white;
}

.usp-icon {
    color: var(--conway-gold);
    font-size: 2.25rem;
}

.usp-title {
    /* MODIFIED: Apply primary heading font to USP title */
    font-family: var(--font-heading-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fcf106;
}

/* USP Carousel Styles */
.about-usp-carousel-wrapper {
    margin-top: 4rem;
    position: relative;
    padding: 1.5rem 0;
    border-radius: 8px;
}

.about-usp-carousel {
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
    animation: marquee 25s linear infinite;
}

.about-usp-carousel-wrapper:hover .about-usp-carousel {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.usp-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px -3px rgba(0, 0, 0, 0.1);
    min-width: 180px;
    border: 1px solid rgba(40, 8, 72, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.usp-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px -3px rgba(0, 0, 0, 0.15);
}

.usp-item img {
    height: 3.5rem;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.usp-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* --- RESPONSIVE REFINEMENTS --- */
@media (max-width: 1023px) {
    .about-content-wrapper .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .overlap-image-container {
        width: 75%; /* Adjust width for tablets */
        margin-top: -60px; /* Adjust overlap amount for tablet */
    }
    .about-usp-carousel {
        gap: 1.5rem;
        animation-duration: 20s;
    }
    .usp-item {
        min-width: 150px;
        padding: 1.2rem;
    }
    .usp-item img {
        height: 2.8rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 2.5rem 0;
    }
    .overlap-image-container {
      width: 80%;
      margin-right: 0.5rem;
    }
    .about-award-usp {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .about-usp-carousel {
        gap: 1rem;
    }
    .usp-item {
        min-width: 130px;
        padding: 1rem;
    }
    .usp-item img {
        height: 2.5rem;
    }
}


/* Vision Section (Light Section) */
.vision-section {
background-color: var(--conway-light); color: var(--theme-text-dark); display: flex;
justify-content: center; align-items: center; min-height: 90vh; padding: 30px; position: relative; overflow: hidden;
}
#vision .main-container {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 30px;
    width: 100%;
    max-width: 1400px;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    min-height: auto;
    font-family: var(--font-body-primary); /* Explicitly set font */
}
#vision .image-container { grid-row: 1; width: 100%; height: 350px; margin: 0 auto; display: flex; align-items: center; justify-content: center; z-index: 10; }
#vision .presenter-image { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 8px 20px rgba(0,0,0,0.08)); transition: all 0.6s cubic-bezier(0.65, 0, 0.35, 1); }
#vision .focus-box {
background-color: var(--white); color: var(--text-gray-medium);
padding: 25px; border-radius: 10px; box-shadow: 0 3px 15px rgba(0,0,0,0.06);
text-align: center; width: 90%; max-width: 400px; margin: 0 auto; cursor: pointer;
border: 1px solid var(--theme-accent-yellow); /* Bright yellow */ transition: all 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
#vision .focus-box h2 { margin: 0 0 10px 0; font-size: 22px; color: var(--theme-dark); }
#vision .focus-box p { margin: 0; line-height: 1.5; font-size: 15px; color: black; }
#vision .focus-box:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 6px 25px rgba(40,8,72,0.15); /* Deep purple shadow */ border-color: var(--theme-accent-purple); /* Deep purple */ }
.vision-close-btn { position: fixed; top: 20px; right: 20px; font-size: 30px; font-weight: 300; color: var(--white); background: var(--theme-dark); /* Deep purple */ border: none; cursor: pointer; opacity: 0; pointer-events: none; transition: opacity 0.3s ease-in-out; z-index: 2000; border-radius: 50%; width: 40px; height: 40px; line-height: 40px; text-align: center; padding: 0;}
body.focus-active .vision-close-btn { opacity: 1; pointer-events: all; }
body.focus-active #vision .main-container > .focused { transform: scale(1.02); box-shadow: 0 12px 40px rgba(0,0,0,0.12); border-color: var(--theme-accent-purple);}
#vision .main-container[data-focused] .focus-box:not(.focused) { filter: blur(2px); opacity: 0.7; }
@media (min-width: 1024px) { #vision .main-container { grid-template-columns: 1fr auto 1fr; grid-template-rows: auto auto auto; gap: 20px; min-height: 700px; } #vision .image-container { grid-column: 2; grid-row: 1 / span 3; width: 600px; height: 800px; } #vision .presenter-image { width: 130%; } #vision .focus-box { max-width: 300px; text-align: left; justify-self: center; } #vision .top-left { grid-column: 1; grid-row: 1; align-self: end; margin-bottom: 10px; margin-right: -40px; } #vision .top-right { grid-column: 3; grid-row: 1; align-self: end; margin-bottom: 10px; margin-left: -40px; } #vision .bottom-left { grid-column: 1; grid-row: 3; align-self: start; margin-top: 10px; margin-right: -40px; } #vision .bottom-right { grid-column: 3; grid-row: 3; align-self: start; margin-top: 10px; margin-left: -40px; } body.focus-active #vision .main-container > * { filter: blur(6px); transform: scale(0.9); opacity: 0.5; } body.focus-active #vision .main-container > .focused { filter: blur(0); transform: scale(1.05); opacity: 1; box-shadow: 0 12px 40px rgba(0,0,0,0.12); } body.focus-top-left #vision .main-container { transform: translate(15%, 15%); } body.focus-top-right #vision .main-container { transform: translate(-15%, 15%); } body.focus-bottom-left #vision .main-container { transform: translate(15%, -15%); } body.focus-bottom-right #vision .main-container { transform: translate(-15%, -15%); } .vision-close-btn { top: 40px; right: 50px; font-size: 40px; } }

/* Team Section (Dark Section) */
.team-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.team-section h1,
.team-section h2,
.team-section h3,
.team-section h4 {
  color: var(--white);
}

.team-section .parallax-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-image: url('images/leader-2.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
  filter: brightness(0.8) contrast(1.2); /* Image filter remains */
}

.team-section .parallax-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay for readability */
  z-index: 1;
  pointer-events: none;
}

.team-section .team-container {
  position: relative;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 2;
}

.team-section .team-heading {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}

.team-section .heading-gradient {
  display: block;
  font-size: 3.5rem;
  font-weight: 800;
  background: #fcf106;
  /* Yellow to deep purple */
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent; /* Set to transparent so gradient can show through */
  margin-bottom: 15px;
  font-family: var(--font-heading-primary); /* Changed to use primary heading font variable */
  letter-spacing: 1px;
}

.team-section .heading-sub {
  display: block;
  font-size: 1.2rem;
  color: white;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.team-section .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
}

.team-section .team-card {
  width: 100%;
  height: 380px;
  perspective: 1000px;
  cursor: pointer;
}

.team-section .card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.team-section .team-card:hover .card-inner {
  transform: rotateY(180deg);
}

.team-section .card-front,
.team-section .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 15px;
  overflow: hidden;
}

.team-section .card-front {
  background: linear-gradient(135deg, rgba(40, 8, 72, 0.9) 0%, rgba(56, 12, 101, 0.9) 100%);
  /* Purple gradient */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(252, 241, 6, 0.2);
  /* Yellow transparent border */
  backdrop-filter: blur(5px);
}

.team-section .card-back {
  background: linear-gradient(135deg, rgba(56, 12, 101, 0.9) 0%, rgba(40, 8, 72, 0.9) 100%);
  /* Purple gradient */
  transform: rotateY(180deg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  /* IMPROVEMENT: Change border to a transparent yellow for consistency with front and more theme integration */
  border: 1px solid rgba(252, 241, 6, 0.3); /* Changed from rgba(40, 8, 72, 0.3) to match previous instruction/comment */
  backdrop-filter: blur(5px);
}

.team-section .team-avatar {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 25px;
}

.team-section .avatar-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--theme-accent-yellow) 0%, rgba(252, 241, 6, 0.8) 100%);
  /* Yellow gradient */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  font-size: 48px;
  position: relative;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.team-section .avatar-decor {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(252, 241, 6, 0.8) 0%, rgba(40, 8, 72, 0.5) 50%, transparent 100%);
  /* Yellow to purple gradient */
  z-index: 1;
  animation: team-avatar-rotate 10s linear infinite;
}

@keyframes team-avatar-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.team-section .team-card h3 {
  font-family: var(--font-heading-primary); /* Changed to use primary heading font variable */
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--theme-accent-yellow);
  position: relative;
  z-index: 2;
}

.team-section .team-card p {
  font-family: var(--font-body-primary); /* Changed to use primary body font variable */
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

.team-section .card-hover-indicator {
  color: rgba(252, 241, 6, 0.7);
  font-size: 1.2rem;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.team-section .team-card:hover .card-hover-indicator {
  transform: translateY(5px);
  opacity: 0;
}

.team-section .back-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.team-section .back-content h4 {
  font-family: var(--font-heading-primary); /* Changed to use primary heading font variable */
  font-size: 1.1rem;
  /* IMPROVEMENT: Change header color to yellow accent for better contrast and theme consistency */
  color: var(--theme-accent-yellow); /* Changed from var(--theme-accent-purple) */
  margin-bottom: 15px;
  padding-bottom: 10px;
  /* IMPROVEMENT: Change border-bottom to a transparent yellow, related to theme */
  border-bottom: 1px solid rgba(252, 241, 6, 0.2); /* Changed from rgba(40, 8, 72, 0.3) */
}

.team-section .back-content ul {
  flex-grow: 1;
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.team-section .back-content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-family: var(--font-body-primary); /* Changed to use primary body font variable */
}

.team-section .back-content ul li:before {
  content: "•";
  /* IMPROVEMENT: Change bullet point color to yellow accent */
  color: var(--theme-accent-yellow); /* Changed from var(--theme-accent-purple) */
  position: absolute;
  left: 0;
}

.team-section .contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: var(--theme-accent-purple);
  /* Solid deep purple - retained for call to action */
  color: var(--white);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  margin-top: auto;
}

.team-section .contact-btn i {
  margin-right: 8px;
}

.team-section .contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40, 8, 72, 0.4);
  /* Deep purple shadow - retained */
}

@media (max-width: 1200px) {
  .team-section .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .team-section .heading-gradient {
    font-size: 2.8rem;
  }
  .team-section .heading-sub {
    font-size: 1rem;
  }
  .team-section .team-card {
    height: 360px;
  }
}

@media (max-width: 576px) {

  .team-section {
    padding: 70px 0;
  }
  .team-section .heading-gradient {
    font-size: 2.2rem;
  }
  .team-section .team-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }
  .team-section .parallax-background {
    background-attachment: scroll;
  }
  .gr-container {
    padding: 0 15px !important;
  }
    
}

/* Footer (Dark Section) */
.main-footer {
    background:#198754;
    color: var(--white);
    padding: 5rem 0 3rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(252, 241, 6, 0.2); /* Yellow transparent border */
}

.container {
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    width: 1200px;
    margin: 0 auto;
}

/* Brand Section */
.footer-brand .footer-logo {
    font-size: 1.8rem;
    /* MODIFIED: Apply primary heading font to footer logo */
    font-family: var(--font-heading-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-brand .footer-logo:hover {
    color: var(--conway-gold); /* Bright yellow on hover */
}

.logo-icon {
    width: 36px;
    height: 36px;
    color: var(--conway-gold); /* Bright yellow */
}

.logo-accent {
    color: var(--conway-gold); /* Bright yellow */
    font-weight: 700;
}

.brand-moto {
    /* MODIFIED: Apply primary body font to brand motto */
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1rem;
    max-width: 350px; /* Prevents text from stretching too wide */
}

.footer-address {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    /* Will inherit var(--font-body-primary) from <body> */
}

.address-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.address-icon {
    width: 20px;
    height: 20px;
    color: var(--conway-gold); /* Bright yellow */
    flex-shrink: 0;
    margin-top: 5px;
}

.footer-address strong {
    color: #ffc107;
    font-weight: 600;
}

.footer-address p {
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px !important;
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
    text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

.footer-address span {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px !important;
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
    text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

.phone-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.phone-link:hover {
    color: var(--conway-gold); /* Bright yellow on hover */
}

/* Footer Columns */
.footer-heading {
    font-size: 1.55rem;
    /* MODIFIED: Apply primary heading font to footer headings */
    font-family: var(--font-heading-primary);
    margin-bottom: 1.5rem;
    color: #fff;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--conway-gold); /* Bright yellow */
}

.footer-links-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 120px;
    /* Will inherit var(--font-body-primary) from <body> */
}

.footer-links a {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0rem;
    padding: 0.5rem 0;
}

.link-icon {
    color: var(--conway-gold); /* Bright yellow */
    font-size: 0.8rem;
    opacity: 1;
    transition: all 0.3s ease;
    transform: translateX(-5px);
}

.footer-links a:hover {
    color: var(--conway-gold); /* Bright yellow on hover */
    transform: translateX(5px);
}

.footer-links a:hover .link-icon {
    opacity: 1;
    transform: translateX(0);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.social-button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.social-button:hover {
    background: var(--conway-gold); /* Bright yellow on hover */
    border-color: var(--conway-gold); /* Bright yellow border */
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(252, 241, 6, 0.25); /* Yellow shadow */
}

.social-button:hover .social-icon {
    color: var(--theme-dark); /* Deep purple icon on hover */
}

/* Footer Bottom (REVISED) */
.footer-bottom {
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.9rem;
    text-align: center;
    width: 1200px;
    margin: 0 auto;
}

.footer-copyright {
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.7);
}

/* Elegant separator using pseudo-elements */
.footer-legal-links a + a::before {
    content: "•";
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0.75rem;
    font-size: 0.8rem;
}

.footer-legal-links a {
    transition: all 0.3s ease;
    color: inherit;
    text-decoration: none;
}

.footer-legal-links a:hover {
    color: var(--conway-gold); /* Bright yellow on hover */
    transform: translateY(-2px);
}

.design-credit-wrapper {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.design-credit-wrapper a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
    text-decoration: none;
}

.design-credit-wrapper a:hover {
    color: var(--conway-gold); /* Bright yellow on hover */
}

/* Responsive Styles */
@media (min-width: 768px) {
    /* Adjusted grid for better balance */
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 2.5rem;
        text-align: left;
    }

    /* Justify content within columns as needed */
    .footer-column {
      display: flex;
      flex-direction: column;
    }

    .footer-social .social-links {
        justify-content: flex-start; /* Aligns icons to the left */
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        gap: 5rem;
    }
    /* Full width, distributed layout for the bottom bar */
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        gap: 2rem;
    }

    .footer-copyright {
      text-align: left;
    }

    .design-credit-wrapper {
        text-align: right;
        white-space: nowrap;
    }
}


/* Miscellaneous & Components */
#backToTopBtn {
position: fixed; bottom: 1.5rem; right: 1.5rem; background-color: var(--conway-gold); /* Bright yellow */
color: var(--theme-dark); /* Deep purple */ width: 48px; height: 48px; display: none; align-items: center;
justify-content: center; border-radius: 50%; box-shadow: 0 4px 6px rgba(0,0,0,0.1);
font-size: 1.125rem; transition: all 0.3s; z-index: 50; border: none; cursor: pointer;
}
#backToTopBtn:hover { background-color: var(--brand-green); /* Deep purple */ transform: scale(1.1); color: var(--white); }
#backToTopBtn svg { color: inherit; }
/* Note: Swiper arrow/pagination colors are directly set by Swiper; override them in JS or by being more specific if they don't match after global var updates */
.swiper-button-next, .swiper-button-prev { color: var(--conway-gold) !important; /* Forces bright yellow */ }
.swiper-pagination-bullet { background-color: rgba(255, 255, 255, 0.5) !important; opacity: 0.7; }
.swiper-pagination-bullet-active { background-color: var(--conway-gold) !important; opacity: 1; }

.phone-link {
    color: #fff; /* Default color on dark background for `your-comfort-section` */
    text-decoration: none;
}

/* Optional: Add hover/focus states for better UX */
.phone-link:hover,
.phone-link:focus {
    text-decoration: none;
    color: var(--theme-accent-yellow); /* Bright yellow on hover */
}

/* Existing image wrapper background */
.about-image-wrapper {
    /* background-color: var(--theme-accent-yellow); */
    padding: 10px;
    border-radius: 0px;
}


/*
=============================================================
--- New Corporate Image Layout Section ---
--- Styles for #image-layout-container directly from HTML embed, adapted ---
=============================================================
*/


.gr-amenities-section {
    padding: 52px 0;
    background-color:#05351f;
    position: relative;
    overflow: hidden;
    color: #fff;
}
.gr-amenities-bg-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.6;
}

.gr-section-heading .gr-subheading {
    font-family: 'Playfair Display', serif;
    font-size: 1.3em;
    color: #d4af37;
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

svg:not(:root) {
    overflow: hidden;
}
.gr-amenities-bg-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.6;
}
img, svg {
    margin: 0;
}
img, svg {
    vertical-align: middle;
}

.gr-amenities-bg-lines path {
    stroke: #d4af37;
    fill: none;
    filter: drop-shadow(0 0 8px #d4af37);
}

.gr-amenities-container {
    position: relative;
    z-index: 1;
}

.gr-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0px;
}

.gr-section-heading {
    margin-bottom: 0px;
    text-align: center;
    position: relative;
    padding-bottom: 25px;
}

.gr-section-heading .gr-subheading {
    font-family: 'Playfair Display', serif;
    font-size: 1.3em;
    color: var(--accent-gold);
    display: block;
    margin-bottom: -5px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gr-amenities-section .gr-section-heading h2, .gr-amenities-section .gr-section-heading p {
    color: var(--text-color-on-dark);
}

.gr-section-heading p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px !important;
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
    text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
    color: #000;
}

.gr-section-heading h2 {
    font-size: 3.2em;
    margin-bottom: 5px;
    color: var(--text-color-on-light);
}

h1, h2, h3, h4, h5, h6 {
    color: rgba(5, 104, 57, 1);
    font-weight: normal;
    font-family: 'Playfair Display', serif;
    line-height: 1.1;
    margin: 0 0 5px 0;

    font-weight: 500 !important;
}

.gr-amenities-section .gr-section-heading::after {
    background-color: var(--accent-gold);
}

.gr-amenities-section .gr-section-heading::after {
    background-color: var(--accent-gold);
}
.gr-section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-gold);
    border-radius: 2px;
}

.gr-amenities-items-container {
    margin-top: 29px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    justify-content: center;
    align-items: start;
    overflow: visible;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.gr-amenity-item {
    width: auto;
    height: 300px;
    min-height: 280px;
    background: linear-gradient(145deg, var(--trans-white-light), var(--trans-white-dark));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-color-on-dark);
    box-shadow: 0 15px 35px var(--overlay-color), 0 5px 15px var(--transparent-gold);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform, box-shadow;
    cursor: pointer;
    opacity: 1;
}

.gr-amenity-item:hover {
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.4);
    border-color: var(--accent-gold);
    z-index: 10;
}

.gr-amenity-icon {
    font-size: 4.8em;
    color: var(--accent-gold);
    margin-bottom: 20px;
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

.gr-amenity-item:hover {
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.4);
    border-color: var(--accent-gold);
    z-index: 10;
}

.gr-amenity-item:hover .gr-amenity-icon {
    transform: scale(1.2) rotateY(360deg);
    color: var(--light-gold);
    filter: drop-shadow(0 0 20px var(--accent-gold));
}

.gr-amenity-item h3 {
    font-size: 1.6em;
    margin-bottom: 12px;
    color: var(--text-color-on-dark);
    font-weight: 500;
}

@media (max-width: 992px) {
    .gr-amenity-item {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 250px;
        transform: none !important;
    }
}

@media (max-width: 576px) {

    .gr-amenities-items-container {
        grid-template-columns: 1fr;
    }
}

:root {
    --brand-red: #c63332;
    --brand-green: rgb(25 135 84);
    --accent-gold: #d4af37;
    --dark-gold: #feda44;
    --light-gold: #feda44;
    --dark-bg: #1A1A1A;
    --light-bg: #F8F5F0;
    --form-bg: #ffffff;
    --overlay-color: rgba(0, 0, 0, 0.55);
    --header-bg: rgba(29, 31, 38, 0.9);
    --transparent-red: rgba(198, 51, 50, 0.2);
    --transparent-gold: rgba(212, 175, 55, 0.2);
    --trans-white-light: rgba(255, 255, 255, 0.12);
    --trans-white-dark: rgba(255, 255, 255, 0.03);
    --header-height: 101px;
    --text-color-on-dark: #ffffff;
    --softer-text-on-dark: rgba(255, 255, 255, 0.8);
    --text-color-on-light: #333333;
    --gray-text: Black;
    --panel-text: #2c3e50;
    --error-text: #c63332;
    --form-border-color: #bbbbbb;
    --form-focus-color: var(--brand-red);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
}


#image-layout-container {
    width: 70%;
    box-sizing: border-box;
    display: block;
    font-family: var(--font-body-primary);
    margin: 0 auto;
}

#image-layout-container .row {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap on smaller screens */
    justify-content: center; /* Center rows of columns */
    padding: 10px; /* Consistent padding around rows */
    margin-top: 20px;
    margin-bottom: 20px;
}

#image-layout-container .column {
    flex: 1; /* Each column takes equal space within its row */
    min-width: 300px; /* Minimum width before wrapping */
    height: 250px; /* Horizontal rectangular shape */
    margin: 10px; /* Space between columns */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    text-decoration: none; /* Remove underline for anchor tag */
    overflow: hidden; /* Ensure content does not overflow on hover effects */
    box-sizing: border-box; /* Include padding/border in element's total width/height */
    border-radius: 8px; /* Smooth corners for the image containers */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); /* Soft shadow for depth */
}

/* Inner image element that will zoom */
#image-layout-container .column .inner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s ease, filter 0.5s ease; /* Smooth zoom transition and filter */
    transform: scale(1.05); /* Slight initial zoom */
    filter: brightness(0.9) saturate(1.1); /* Subtle visual enhancement */
}

/* Zoom effect on hover */
#image-layout-container .column:hover .inner-image {
    transform: scale(1.15); /* Zoom in effect */
    filter: brightness(1) saturate(1.2); /* Enhanced brightness and saturation on hover */
}

#image-layout-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(40, 8, 72, 0.4); /* Deep purple overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease; /* Smooth transition for hover effects */
    opacity: 0.9; /* Slightly visible by default */
}

#image-layout-container .column:hover .overlay {
    opacity: 1;
    background-color: rgba(40, 8, 72, 0.5); /* Slightly darker purple overlay on hover */
}

#image-layout-container .overlay-text {
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    padding: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    transition: transform 0.4s ease;
    line-height: 1.2em;
    text-transform: uppercase;
    font-family: 'Playfair Display', serif;
}

#image-layout-container .column:hover .overlay-text {
    transform: translateY(-5px); /* Subtle text lift effect */
}

/* Specific background images for each section */
#image-layout-container #who-we-are .inner-image {
    background-image: url('images/corporate-1.jpg'); /* Your image path */
}

#image-layout-container #what-we-do .inner-image {
    background-image: url('images/spa.jpg');
}

#image-layout-container #hotel-portfolio .inner-image {
    background-image: url('images/corporate-2.jpg'); /* Your image path */
}

#image-layout-container #careers .inner-image {
    background-image: url('images/corporate-3.jpg'); /* Your image path */
}

#image-layout-container #contact-us .inner-image {
    background-image: url('images/corporate-4.jpg'); /* Your image path */
}

/* Responsive adjustments for the isolated container */
@media (max-width: 1200px) {
    #image-layout-container .column {
        height: 200px; /* Further reduce height on smaller screens to maintain rectangle shape */
        font-size: 1.5em;
    }
}

@media (max-width: 900px) {
    #image-layout-container .row {
        /* flex-direction: column; */
        align-items: center;
    }
    #image-layout-container .column {
        width: calc(100% - 20px); /* Full width minus margins */
        height: 180px; /* Ensure rectangle when stacked vertically */
        margin: 10px 0; /* Adjust vertical margins */
    }
    /* When stacking, both career and contact should take full width */
    #image-layout-container .bottom-row #careers,
    #image-layout-container .bottom-row #contact-us {
        flex-basis: auto; /* Revert to default flex for stacking */
        width: calc(100% - 20px); /* Take full width again */
        margin-left: 0;
        margin-right: 0;
    }
    #image-layout-container .overlay-text {
        font-size: 1.2em; /* Smaller text on smaller screens */
    }
}


/*
=============================================================
--- Encapsulated Styles for Top Destinations Section ---
--- These styles will ONLY affect #top-destinations-section ---
=============================================================
*/

/* ===== Section Background & Header ===== */
#top-destinations-section {
    background-color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

#top-destinations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#top-destinations-section .destinations-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

#top-destinations-section .destinations-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* Removed small tag style as small tag is not present in the HTML header */

#top-destinations-section .destinations-header h2 {
    font-weight: 800;
    font-size: 3rem;
    color: var(--theme-dark); /* Uses deep purple */
    margin: 0;
    line-height: 1.2;
    /* MODIFIED: Explicitly apply primary heading font */
    font-family: var(--font-heading-primary);
}

#top-destinations-section .destinations-header .destinations-subtitle {
    font-size: 1.1rem;
    color: black; /* Used transparent purple variable instead of black */
    margin-top: 1rem;
    font-weight: 400;
    /* Will inherit var(--font-body-primary) from <body> */
}

/* ===== Carousel & Cards ===== */
#top-destinations-section .carousel-container {
    position: relative;
    margin: 2rem auto 0;
    /* This padding is for Desktop/Larger Screens (base styling) */
    padding: 0 60px; 
}

#top-destinations-section .carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    height: 500px;
    overflow: visible;
    position: relative;
}

#top-destinations-section .card {
    position: absolute;
    width: 340px;
    height: 480px;
    border-radius: 16px;
    will-change: transform;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
    overflow: hidden;
    background: #fff;
    user-select: none;
    border: 1px solid rgba(40, 8, 72, 0.1); /* Deep purple transparent border */
}

#top-destinations-section .card > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

#top-destinations-section .card:hover > img {
    transform: scale(1.05);
}

#top-destinations-section .card.active {
    box-shadow: 0 25px 50px rgba(40, 8, 72, 0.2); /* Deep purple transparent shadow */
    transform: scale(1.05) translateY(-10px);
    z-index: 10;
}

#top-destinations-section .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: white;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body-primary); /* Explicitly set font */
}

#top-destinations-section .card-content .title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
    width: 100%;
    /* MODIFIED: Explicitly apply primary heading font */
    font-family: var(--font-heading-primary);
}

#top-destinations-section .card-content .listing {
    font-weight: 500;
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0;
    padding: 4px 12px;
    background-color: rgba(40, 8, 72, 0.9); /* Deep purple with transparency */
    border-radius: 20px;
    /* Will inherit var(--font-body-primary) from its parent .card-content */
}

/* Removed btn-group styles as they are not used in HTML for this carousel */

#top-destinations-section .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--theme-accent-purple); /* Uses deep purple */
    border: none;
    color: white;
    width: 60px; /* Default for Desktop */
    height: 60px; /* Default for Desktop */
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    box-shadow: 0 4px 15px rgba(40, 8, 72, 0.3); /* Deep purple transparent shadow */
    font-family: var(--font-body-primary); /* Explicitly set font */
}

#top-destinations-section .carousel-btn:hover {
    background-color: var(--theme-accent-yellow); /* Uses bright yellow */
    color: var(--theme-accent-purple); /* Uses deep purple */
    transform: translateY(-50%) scale(1.1);
}

/* Default positioning for Desktop/Larger Screens */
#top-destinations-section .carousel-btn.prev {
    left: 20px; 
}

#top-destinations-section .carousel-btn.next {
    right: 20px; 
}

#top-destinations-section .carousel-btn svg {
    width: 24px; /* Default for Desktop */
    height: 24px; /* Default for Desktop */
    color: inherit; /* Inherits from parent button */
}

/* Responsive Adjustments (DO NOT affect desktop) */
@media (max-width: 1024px) {
    #top-destinations-section .card {
        width: 300px;
        height: 420px;
    }
    
    #top-destinations-section .card-content .title {
        font-size: 1.5rem;
    }

    /* Tablet: Adjust container padding */
    #top-destinations-section .carousel-container {
        padding: 0 25px; /* Reduced from 60px */
    }

    /* Tablet: Slightly reduce button size */
    #top-destinations-section .carousel-btn {
        width: 55px;
        height: 55px;
    }

    /* Tablet: Position buttons closer to the new padding edge */
    #top-destinations-section .carousel-btn.prev {
        left: 5px; 
    }
    #top-destinations-section .carousel-btn.next {
        right: 5px; 
    }
}

@media (max-width: 768px) {
    #top-destinations-section .destinations-header h2 {
        font-size: 2rem;
    }
    
    #top-destinations-section .carousel {
        height: 380px;
    }
    
    #top-destinations-section .card {
        width: 240px;
        height: 340px;
    }
    
    #top-destinations-section .card-content {
        padding: 15px;
    }
    
    #top-destinations-section .card-content .title {
        font-size: 1.3rem;
    }
    
    #top-destinations-section .card-content .listing {
        font-size: 0.9rem;
    }
    
    /* Mobile/Small Tablet: Further adjust container padding */
    #top-destinations-section .carousel-container {
        padding: 0 10px; /* More reduced padding */
    }

    /* Mobile/Small Tablet: Standard button size */
    #top-destinations-section .carousel-btn {
        width: 50px; 
        height: 50px;
    }

    /* Mobile/Small Tablet: Position buttons flush with container's new padding edge */
    #top-destinations-section .carousel-btn.prev {
        left: 0px; 
    }
    #top-destinations-section .carousel-btn.next {
        right: 0px; 
    }
}

@media (max-width: 576px) {
    #top-destinations-section {
        padding: 3rem 0;
    }
    
    #top-destinations-section .destinations-header h2 {
        font-size: 1.8rem;
    }
    
    #top-destinations-section .carousel {
        height: 320px;
    }
    
    #top-destinations-section .card {
        width: 200px;
        height: 280px;
    }
    
    #top-destinations-section .card-content .title {
        font-size: 1.1rem;
    }

    /* Smallest Mobile: Minimal padding */
    #top-destinations-section .carousel-container {
        padding: 0 5px; 
    }

    /* Smallest Mobile: Smallest button size */
    #top-destinations-section .carousel-btn {
        width: 40px; 
        height: 40px;
    }
    /* Smallest Mobile: Adjust SVG icon size to fit smaller buttons */
    #top-destinations-section .carousel-btn svg {
        width: 20px; 
        height: 20px;
    }

    /* Smallest Mobile: Allow buttons to slightly extend beyond container for visibility */
    #top-destinations-section .carousel-btn.prev {
        left: -5px; 
    }
    #top-destinations-section .carousel-btn.next {
        right: -5px; 
    }
}







/*
**********************************************************
* END: Styles for Top Destination Carousel
**********************************************************
*/

/*
**********************************************************
* start: Attraction Carousel
**********************************************************
*/

.gr-experiences-section {
    padding: 60px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    color: var(--text-color-on-dark);
    z-index: 1;
}

.gr-experience-particle-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

svg:not(:root) {
    overflow: hidden;
}
.gr-particle-svg
 {
    opacity: 0.3;
    width: 100%;
    height: 100%;
}
.gr-particle-svg circle {
    will-change: transform, opacity;
}

.gr-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0px;
}

html:not(.no-js) [data-aos^=fade][data-aos^=fade].aos-animate {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}

}
.gr-section-heading .gr-subheading {
    font-family: var(--font-heading);
    font-size: 1.3em;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gr-experience-card.is-active {
    transform: scale(1.05);
    /*box-shadow: 0 0 25px -5px var(--accent-gold), 0 15px 40px rgba(0, 0, 0, 0.6);*/
}

.gr-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--overlay-color);
    color: var(--accent-gold);
    /*border: 2px solid var(--accent-gold);*/
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
    pointer-events: all;
}
.gr-nav-arrow:hover {
    background-color: var(--brand-green);
    color: var(--text-color-light);
    transform: translateY(-50%) scale(1.1);
    /*box-shadow: 0 5px 15px var(--brand-green);*/
}
.gr-nav-arrow--prev { left: 0px; }
.gr-nav-arrow--next { right: 0px; }


.gr-nav-arrow--next {
    right: 0px;
}
.gr-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--accent-gold);
    color: var(--form-bg);
    /*border: 2px solid var(--accent-gold);*/
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
    pointer-events: all;
}

.gr-experience-card h3 {
    font-size: 1.8em;
    color: var(--text-color-on-dark);
    margin-bottom: 8px;
}

.gr-experience-content-inner {
    position: relative;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
}

.gr-experience-card::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 80%);
    z-index: 1;
    transition: background 0.5s ease;
}

.gr-experience-card.is-active::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, transparent 100%);
}

.gr-orbital-experience-wrapper {
    position: relative;
    width: 100%;
    height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0px;
    perspective: 1500px;
    transform-style: preserve-3d;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
}

.gr-experience-card {
    position: absolute;
    width: 380px;
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);*/
    will-change: transform, opacity;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    color: var(--text-color-on-dark);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}



/*----------------------------------------*/
/*  7.22 testimonial css (From Adina template - Only relevant classes kept)
/*----------------------------------------*/
.td-testimonial-qoute {
  -webkit-animation: rotate-infinite 15s linear infinite;
  animation: rotate-infinite 15s linear infinite;
}
.td-testimonial-qoute-2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  overflow: hidden; /* This is the viewport for the scrolling text */
}

/* 
  NEW Class: This is the new wrapper for your text elements.
  The animation is now applied HERE instead of on the title classes.
  The speed has been changed from 30s to 60s.
*/
.td-text-slide-wrapper {
  display: flex;
  width: fit-content; /* Let the container size itself to its children */
  -webkit-animation: td-text-slide 60s linear infinite; /* Increased duration to 60s */
  animation: td-text-slide 60s linear infinite;
  will-change: transform;
  margin-top: 47px;
}


.td-testimonial-slider-title {
  font-weight: 600;
  font-size: 40px;
  line-height: 1;
  color: #03311b;
  font-family: var(--td-ff-manrope);
  white-space: nowrap;
  /* 
    REMOVED: Animation properties have been moved to the new wrapper class.
  */
  margin-bottom: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-testimonial-slider-title {
    font-size: 100px;
  }
}
.td-testimonial-slider-title-tr {
  font-weight: 600;
  font-size: 40px;
  line-height: 1;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: #03311b;
  -webkit-text-stroke-width: 1px;
  margin-bottom: 0;
  background: white;
  font-family: var(--td-ff-manrope);
  white-space: nowrap;
  /* 
    REMOVED: Animation properties have been moved to the new wrapper class.
  */
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-testimonial-slider-title-tr {
    font-size: 100px;
  }
}
.td-testimonial-2-thumb {
  margin-top: 0px;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px), only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-testimonial-2-thumb {
    height: 100%;
  }
  .td-testimonial-2-thumb img {
    height: 100%;
    object-fit: cover;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-testimonial-2-thumb {
    margin-top: 0;
  }
}


.td-testimonial-2-bottom {
  position: relative;
  z-index: 2;
}
.td-testimonial-2-qoute {
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px), only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-testimonial-2-qoute {
    display: none;
  }
}
.td-testimonial-2-qoute-2 {
  position: absolute;
  bottom: 0;
  right: 90px;
}
.td-testimonial-2-space {
  padding-left: 300px;
  padding-top: 28px;
  padding-bottom: 107px;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px), only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .td-testimonial-2-space {
    padding-left: 81px;
  }
}


@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-testimonial-2-space {
    padding-left: 30px;
  }
}

.td-testimonial-2-slider-wrap {
    background: var(--td-common-white);
    padding: 25px 25px 25px 25px;
    margin-right: -95px;
    z-index: 4;
    border-radius: 0 28px 28px 0px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .td-testimonial-2-slider-wrap {
    margin-right: 30px;
  }
}
@media (max-width: 575px) {
  .td-testimonial-2-slider-wrap {
    padding: 45px 20px 50px 20px;
  }
}
.td-testimonial-2-slider p {
    font-size: 15px;
    line-height: 2;
    color: #000;
    margin-bottom: 14px;
    font-family: 'Montserrat', sans-serif;
}

@media (max-width: 575px) {
  .td-testimonial-2-slider p {
    font-size: 14px;
  }
}
.td-testimonial-2-avater-thumb {
  margin-right: 15px;
}
.td-testimonial-2-avater-thumb img {
  border-radius: 50%;
}
.td-testimonial-2-avater-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 0;
  color: var(--td-theme-primary); /* Uses Adina's theme primary color */
  font-family: var(--td-ff-manrope); /* Ensure correct font */
}
.td-testimonial-2-avater-designation {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: var(--td-grey-2); /* Uses Adina's grey-2 color */
  font-family: var(--td-ff-manrope); /* Ensure correct font */
}
.td-testimonial-video {
  position: absolute !important;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
}

@-webkit-keyframes rotate-infinite {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate-infinite {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* 
  MODIFIED Keyframes: The animation logic is changed for the seamless loop.
  It now translates the wrapper by -50% of its total width. 
  Because the wrapper contains two identical children, this is the exact
  width of one child, resulting in a perfect loop.
*/
@-webkit-keyframes td-text-slide {
  0% { -webkit-transform: translateX(0%); }
  100% { -webkit-transform: translateX(-50%); }
}
@keyframes td-text-slide {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

/* Other Adina Template Specifics - Only keep general utility classes used in your HTML */
.td-black-bg {
  background: #4e4a4a; /* Defined separately to respect original design color for this class specifically */
}

/* Basic common styles */
a,
button,
p,
input,
select,
textarea,
li,
.transition-3 {
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.td-pulse-border::after, .td-pulse-border::before {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

/* typography css start */
/* Body already defined above, relying on primary font vars. Removing original td body here.*/

a {
  text-decoration: none;
}
/* h1-h6 already defined above, relying on primary font vars. Removing original td h here.*/

ul {
  margin: 0px;
  padding: 0px;
}

.gr-amenity-item p {
    font-size: 1em;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
    color: var(--softer-text-on-dark);
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

.m-img {
  max-width: 100%;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus {
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
}

.border-bottom {
  border-bottom: 1px solid #d3d3d3 !important;
}

/* Input/textarea styles - these affect contact forms */
input[type=text],
input[type=email],
textarea {
  outline: none;
  background-color: #fff;
  height: 56px;
  width: 100%;
  line-height: 56px;
  font-size: 14px;
  color: var(--td-theme-primary);
  padding-left: 26px;
  padding-right: 26px;
  border: 1px solid #E0E2E3;
  font-family: var(--td-ff-manrope); /* Specific Adina font here */
}
input[type=text]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #95999D;
}
input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder,
textarea::-moz-placeholder { /* Firefox 19+ */
  color: #95999D;
}
input[type=text]:-moz-placeholder,
input[type=email]:-moz-placeholder,
textarea:-moz-placeholder { /* Firefox 4-18 */
  color: #95999D;
}
input[type=text]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
textarea:-ms-input-placeholder { /* IE 10+ Edge*/
  color: #95999D;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
textarea::placeholder { /* MODERN BROWSER */
  color: #95999D;
}

textarea {
  line-height: 1.4;
  padding-top: 18px;
  padding-bottom: 17px;
}

*::-moz-selection {
  background: var(--td-theme-primary);
  color: var(--td-common-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--td-theme-primary);
  color: var(--td-common-white);
  text-shadow: none;
}

::selection {
  background: var(--td-theme-primary);
  color: var(--td-common-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--td-grey-1);
  font-size: 14px;
  opacity: 1;
}

*::placeholder {
  color: var(--td-grey-1);
  font-size: 14px;
  opacity: 1;
}

/* Common Classes (from Adina, if not conflicting with existing) */
.w-img {
  width: 100%;
}

.fix {
  overflow: hidden;
}

.z-index-1 {
  z-index: 1;
}

.text-center {
  text-align: center;
}

.p-relative {
  position: relative;
}

.include-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-position {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Animations from Adina */
@-webkit-keyframes borderanimate2 {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}
@keyframes borderanimate2 {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}
/* No longer need unused preloader or mobile menu Adina styles */
/* The general .td-section-title styles are used in the testimonial section, keep them */
.td-section-title {
    font-weight: 500;
    font-size: 40px;
    line-height: 1.16;
    font-family: var(--font-heading);
    margin: 0px 0 24px 0;
    text-transform: uppercase;
}
.td-white h2 a {
    color: var(--td-common-white);
}
.td-section-title h2 a {
    font-weight: 500;
    font-size: 40px;
    line-height: 1.16;
    font-family: var(--font-heading);
    margin-bottom: 33px;
    text-transform: uppercase;
}

.td-white h2 a:hover {
    color: var(--conway-gold);
}
.td-section-title h2 a:hover {
    font-weight: 500;
    font-size: 40px;
    line-height: 1.16;
    font-family: var(--font-heading);
    margin-bottom: 33px;
    text-transform: uppercase;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .td-section-title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .td-section-title {
    font-size: 50px;
  }
  .td-section-title br {
    display: none;
  }
}
@media (max-width: 575px) {
  .td-section-title {
    font-size: 40px;
  }
  .td-section-title br {
    display: none;
  }
}
.td-section-title-pre {
  color: var(--td-grey-2);
  display: inline-block;
  font-family: var(--td-ff-manrope);
}

.td-white {
  color: var(--td-common-white);
}

.td-gray {
  color: #bfccd1;
}

/* Video Play button for testimonial */
.td-video-play {
  height: 100px;
  width: 100px;
  display: inline-block;
  background: #fcf106;
  border-radius: 50%;
  text-align: center;
  line-height: 97px;
  color: var(--td-common-white);
}
.td-video-play:hover {
  color: var(--td-common-white);
}

.td-pulse-border {
  border-radius: 50%;
  z-index: 1;
  position: relative;
}
.td-pulse-border::after, .td-pulse-border::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  border-radius: 50%;
  border: 1px solid rgba(32, 40, 45, 0.4);
  animation: borderanimate2 2s linear infinite;
  animation-delay: 0s;
  z-index: -1;
}
.td-pulse-border::before {
  animation-delay: 0.7s;
}

/* General Swiper styles needed if not already in swiper-bundle.css or if overridden */
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}
/* Removed any redundant Swiper related CSS, assuming swiper-bundle.min.css handles most of this correctly. */

.td-testimonial-2-bottom .half {
    width: 100%;
    position: relative;
}

.td-testimonial-2-bottom .half.right-arrow:after {
    position: absolute;
    top: 50%;
    right: -110.1px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 15px;
    border-color: transparent transparent transparent #fff;
    z-index: 10;
}














/* Scoped styles for amenities slider */
.amenities-slider-section {
    --primary-color: #198754;   /* New Green */
    --accent-color: #fcf106;    /* New Yellow */
    --text-color: #000000;      /* New Black for text */
    --box-shadow: rgba(0, 0, 0, 0.1);
    --overlay-dark: rgba(0, 0, 0, 0.7);
    --hover-color: #fcf106;      /* New Yellow */
    
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 40px 0;
}

.amenities-slider-section .amenities-slider-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #198754; /* Changed from purple to new green */
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.amenities-slider-section .amenities-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.amenities-slider-section .amenities-slider {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollMarquee 30s linear infinite;
    padding: 20px 0;
}

.amenities-slider-section .amenities-slide {
    flex: 0 0 250px;
    background: white;
    border: 1px solid var(--box-shadow);
    border-radius: 10px;
    box-shadow: 0 4px 10px var(--box-shadow);
    text-align: center;
    padding: 25px 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    cursor: pointer;
}

.amenities-slider-section .amenities-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.amenities-slider-section .icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    border: 2px solid white;
}

/* Text inside yellow icon background should be dark for contrast */
.amenities-slider-section .icon-wrapper i {
    font-size: 2rem;
    color: #333; 
}

.amenities-slider-section .amenities-slide p {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-color); /* Now uses black */
    margin: 10px 0 0;
}

.amenities-slider-section .amenities-info-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.amenities-slider-section .amenities-info-overlay.active {
    display: flex;
}

.amenities-slider-section .info-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    width: 90%;
    max-width: 500px;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.15);
    position: relative;
}

.amenities-slider-section .close-btn {
    background: var(--primary-color);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.amenities-slider-section .close-btn:hover {
    background: var(--hover-color);
    color: #333; /* Dark color for text on yellow hover */
}

.amenities-slider-section .info-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.amenities-slider-section .info-details {
    font-size: 1rem;
    color: var(--text-color); /* Now uses black */
    line-height: 1.6;
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 1200px) {
    .amenities-slider-section .amenities-slide {
        flex: 0 0 220px;
    }

    .td-testimonial-2-space {
        padding-left: 25px;
        padding-top: 25px;
        padding-bottom: 37px;
    }

    .footer-bottom {
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.9rem;
    text-align: center;
    width: 100%;
    margin: 0 auto;
}
}

@media (max-width: 768px) {
    .amenities-slider-section {
        padding: 40px 0;
    }

    .amenities-slider-section .amenities-slider-title {
        font-size: 2rem;
        padding: 0 20px;
    }

    .amenities-slider-section .amenities-slide {
        flex: 0 0 200px;
        padding: 20px 15px;
    }

    .amenities-slider-section .icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .amenities-slider-section .icon-wrapper i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .amenities-slider-section .amenities-slider-title {
        font-size: 1.8rem;
    }
    
    .amenities-slider-section .amenities-slide {
        flex: 0 0 180px;
        padding: 15px 10px;
    }
    
    .amenities-slider-section .amenities-slide p {
        font-size: 1rem;
    }
}

/* Scoped styles for premium amenities */
.amenities-section-mod {
    --primary-color: #198754;   /* New Green */
    --secondary-color: #fcf106;    /* New Yellow */
    --accent-color: #198754;   /* Using Green as the accent */
    --text-color: #000000;      /* New Black for text */
    --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;
    font-size: 3rem;
    color: #198754; /* Changed from purple to new green */
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.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;
    background-color: #ffffff; /* Explicitly set background */
}

.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: #198754; /* Changed from purple to new green */
    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;
}

/* This targets the amenity list items, which function as paragraphs of text */
.amenities-section-mod .amenity-list li {
    padding: 12px 0;
    font-size: 1.2rem;
    color: var(--text-color); /* Now uses black */
    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;
    }
}


/* Rooms Section */
.gr-rooms-section {
    padding: 40px 0;
    position: relative;
    overflow: hidden; /* Important for containing transformed elements */
}

.gr-rooms-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.8;
    pointer-events: none;
}

.nearby-content-container {
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.nearby-section {
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 80px;
    gap: 20px;
    /* --- CRITICAL: These two properties create the 3D context --- */
    transform-style: preserve-3d;
    perspective: 1200px;
}

.nearby-list-box,
.nearby-image-box {
    width: 100%; 
    min-height: 350px;
    display: flex;
    transition: all 0.3s ease;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
}

@media (min-width: 768px) {
    .nearby-list-box,
    .nearby-image-box {
        width: calc(50% - 10px);
    }
}

.nearby-list-box {
    background: #ffffff;
    padding: 30px;
    box-shadow: 15px 5px 25px -10px rgba(0,0,0,0.15);
    /* --- SOLUTION Part 1: Lift the text box 60px forward --- */
    transform: rotateY(-10deg) translateZ(60px);
    flex-direction: column;
}

.nearby-image-box {
    box-shadow: -15px 5px 25px -10px rgba(0,0,0,0.15);
    transform: rotateY(10deg);
}

.room-image-left .nearby-image-box {
    transform: rotateY(-10deg);
    box-shadow: 15px 5px 25px -10px rgba(0,0,0,0.15);
    order: -1; 
}
.room-image-left .nearby-list-box {
    /* --- SOLUTION Part 2: Lift the text box forward in this layout too --- */
    transform: rotateY(10deg) translateZ(60px); 
    box-shadow: -15px 5px 25px -10px rgba(0,0,0,0.15);
}

.nearby-column {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.nearby-section-headline {
    font-size: 2em;
    margin-bottom: 12px;
    color: #198754; 
    font-family: 'Times New Roman', Times, serif;
    font-weight: 700;
}

.room-description-para {
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 1.05em; 
    flex-grow: 1;
}
.room-description-para strong {
    color: #000000;
}

.room-features-list {
    margin: 15px 0;
    padding-left: 0;
    list-style: none;
}

.room-features-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #333333;
}

.room-features-list i {
    margin-right: 12px;
    color: #198754;
    width: 22px;
    text-align: center;
    font-size: 1.1em;
}

.room-price-and-btn {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    margin-top: auto;
    padding-top: 20px;
}

.gr-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}
.gr-btn--primary {
    background-color: #fcf106;
    color: #000000;
}

.book-room-button:hover {
    background-color: #e0d505; /* A darker yellow for hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.nearby-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}







/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

.title2 {
    font-size: 25px;
    font-weight: 700;
    color: #ff5f03;
    font-family: "Cormorant Infant", serif;
}



.title2-sitemap {
    font-size: 25px;
    font-weight: 700;
    color: #081032;
    font-family: "Cormorant Infant", serif;
}


.title2-contact {
    font-size: 35px;
    font-weight: 700;
    color: #ff5f03;
    font-family: "Cormorant Infant", serif;
}


.cta {
   font-weight: 700;
    padding: 1px 0;
    background: #e9e6df;
    color: #ff5f03;
    font-size: 20px;
}

.container-fluid.bg {
    background: linear-gradient(135deg, #00145f, #30407d);
}
.title3 {
    color: #fff;
}

.title3-direction {
    color: #fff;
    font-size: 20px;
}

.title3-attraction {
    color: black;
    font-size: 20px !important;
}





/* =================================================================
   1. STYLES FOR THE "ATTRACTIONS" SECTION (REVISED COLORS)
   ================================================================= */
.attractions-container {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 20px;
}
.attractions-container .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;
    background-color: #fff; /* Kept card background white */
}
.attractions-container .category:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}
.attractions-container .category-image {
    height: 300px;
    width: 100%;
    object-fit: cover;
    border-bottom: 4px solid #fcf106; /* New Color */
}
.attractions-container .category-header {
    padding: 20px;
    background-color: #198754; /* New Color */
    color: white;
    position: relative;
    margin-top: -4px;
}
.attractions-container .category-header h2 {
    color: white;
    margin: 0;
}
.attractions-container .attraction-list {
    padding: 20px;
}
.attractions-container .attraction {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}
.attractions-container .attraction:last-child {
    border-bottom: none;
}
.attractions-container .attraction-info {
    flex: 1;
}
.attractions-container .attraction-name {
    margin-bottom: 4px;
    color: #000; /* Paragraph Text - Black */
}
.attractions-container .attraction-type {
    color: #000; /* Paragraph Text - Black */
}
.attractions-container .attraction-distance {
    background-color: #fcf106; /* New Color */
    color: #000; /* Text changed to black for contrast */
    padding: 5px 12px;
    border-radius: 20px;
    min-width: 70px;
    text-align: center;
    transition: all 0.3s ease;
}
.attractions-container .attraction:hover .attraction-distance {
    background-color: #198754; /* New Color */
    color: white; /* Text changed to white for contrast */
    transform: scale(1.05);
}
@media (max-width: 900px) {
    .attractions-container {
        grid-template-columns: 1fr;
    }
    .attractions-container .category {
        max-width: 500px;
        margin: 0 auto;
    }
}



























/* =================================================================
   3. LOCATION SECTION
   ================================================================= */
.location-container {
    width: 100%;
    max-width: 100%;
    padding: 40px 0;
    background: white;
}
.location-title {
    text-align: center;
    color: #198754; /* Changed from #151b83 */
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 10px;
}
.location-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #fcf106; /* Changed from #ff5203 */
}
.location-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 90%;
    margin: 0 auto;
    align-items: stretch;
}
.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;
    /* Updated shadow and border to match the new green theme color */
    box-shadow: 0 5px 15px rgba(25, 135, 84, 0.1);
    border: 1px solid rgba(25, 135, 84, 0.1);
}
.coordinates-box h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #198754; /* Changed from #151b83 */
}
.coordinate {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 12px;
}
.coordinate i {
    color: #fcf106; /* Changed from #ff5203 */
    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;
    /* Updated shadow and border to match the new green theme color */
    box-shadow: 0 5px 15px rgba(25, 135, 84, 0.1);
    border: 1px solid rgba(25, 135, 84, 0.1);
}
.directions-form label {
    color: black; /* Changed to black as requested */
    text-align: left;
}
.directions-form input {
    padding: 9px;
    border: 1px solid #ddd;
    border-radius: 6px;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
}
.directions-form input:focus {
    outline: none;
    border-color: #198754; /* Changed from #151b83 */
    /* Updated focus shadow to match new green theme color */
    box-shadow: 0 0 0 3px rgba(25, 135, 84, 0.2);
}
.directions-form button {
    background: #198754; /* Changed from #151b83 */
    color: white;
    border: none;
    padding: 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.directions-form button:hover {
    background: #fcf106; /* Changed from #ff5203 */
    color: black; /* Added for better contrast on yellow */
    transform: translateY(-2px);
}
.location-map {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  /* Updated shadow and border to match the new green theme color */
  box-shadow: 0 5px 15px rgba(25, 135, 84, 0.1);
  border: 1px solid rgba(25, 135, 84, 0.1);
  transition: transform 0.3s ease;
}

.location-map:hover {
  transform: translateY(-5px);
}

.location-map img {
  width: 100%;
  height: 100%; 
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
    .location-content {
      flex-direction: column;
    }
    .location-info, .location-map {
      width: 100%;
    }
}








.attractions-section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #198754;
}

/* --- Creative Attraction Layout (Desktop First) --- */
.attractions-layout-grid {
    display: grid;
    height: 90vh;
    min-height: 700px;
    gap: 20px;
    grid-template-areas:
        "top-left   .      top-right"
        "top-left   center   top-right"
        "bottom-left center bottom-right"
        "bottom-left .      bottom-right";
    grid-template-columns: 1fr 1.5fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
}

/* Placing each card into its named grid area */
.card-top-left { grid-area: top-left; }
.card-top-right { grid-area: top-right; }
.card-center { grid-area: center; }
.card-bottom-left { grid-area: bottom-left; }
.card-bottom-right { grid-area: bottom-right; }


/* Individual Attraction Card Styling */
.attraction-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column; /* This is key for the new layout */
}

.attraction-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.attraction-card img {
    width: 100%;
    height: 65%; /* Allocate 65% of the card's height to the image */
    object-fit: cover;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.attraction-card:hover img {
    filter: brightness(1);
}

.card-content {
    /* REMOVED: position, background gradient, transform */
    height: 35%; /* Allocate 35% of the card's height to the text content */
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center the text vertically */
}

.card-title {
    font-size: 1.7rem;
    margin: 0 0 10px 0;
    color: #198754; /* Green Title */
}

.card-description {
    font-size: 1rem;
    line-height: 1.5;
    color: #000000; /* Black Paragraph as requested */
    /* REMOVED: opacity transitions, now always visible */
}


/* --- Media Queries for Responsiveness --- */
@media (max-width: 900px) {
    .attractions-layout-grid {
        height: auto;
        min-height: auto;
        grid-template-areas:
            "top-left   top-right"
            "center     center"
            "bottom-left bottom-right";
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .attraction-card {
        min-height: 350px; /* Adjust height for tablet view */
    }
}

@media (max-width: 600px) {
    .attractions-layout-grid {
        display: block;
        height: auto;
    }

    .attraction-card {
        margin-bottom: 20px;
        min-height: 300px; /* Adjust height for mobile view */
    }

    .attraction-card:last-child {
        margin-bottom: 0;
    }
}





/* =================================================================
   4. CONTACT SECTION
   ================================================================= */
.content-wrapper {
    display: flex;
    gap: 30px;
    padding: 30px;
}
.contact-card {
    flex: 1;
    background: white;
    padding: 25px;
    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: #198754; /* Changed from #151b83 */
    margin-bottom: 25px;
    position: relative;
}
.contact-card h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #fcf106; /* Changed from #ff5203 */
}
.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
}
.info-item i {
    color: #fcf106; /* Changed from #ff5203 */
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 25px;
}
.info-text h3 {
    margin-bottom: 5px;
    color: #198754; /* Changed from #151b83 */
}

.contact-info-text h3 {
    margin-bottom: 5px;
    color: #198754; /* Changed from #151b83 */
    font-size: 23px;
}

.info-text p, .info-text a {
    color: black; /* Set paragraph and related link text to black */
    text-decoration: none;
    transition: color 0.3s;
}
.info-text a:hover {
    color: #198754; /* Changed hover color */
}
.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;
    }
}

/* =================================================================
   5. HOTEL NAVIGATION SECTION
   ================================================================= */
#hotel-navigation-section .container {
    margin: 0 auto;
    padding: 0 20px;
}
#hotel-navigation-section .navigation-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
#hotel-navigation-section .nav-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
#hotel-navigation-section .nav-item {
    display: flex;
    height: 100%;
}
#hotel-navigation-section .nav-link {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #198754; /* Changed from #151b83 */
    text-decoration: none;
    background: white;
    border-radius: 8px;
    padding: 25px 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #fcf106; /* Changed from #ff5203 */
    height: 120px;
}
#hotel-navigation-section .nav-link:hover {
    background: #198754; /* Changed from #151b83 */
    color: white;
    box-shadow: 0 8px 16px rgba(25, 135, 84, 0.2); /* Changed shadow color to match new background */
    transform: translateY(-3px);
}
#hotel-navigation-section .nav-icon {
    font-size: 24px;
    margin-bottom: 12px;
    color: #fcf106; /* Changed from #ff5203 */
    transition: all 0.3s ease;
}
#hotel-navigation-section .nav-link:hover .nav-icon {
    color: white;
    transform: scale(1.1);
}
#hotel-navigation-section .nav-text {
    margin-bottom: 5px;
}
#hotel-navigation-section .nav-desc {
    opacity: 0.8;
}
@media (max-width: 992px) {
    #hotel-navigation-section .nav-row {
        grid-template-columns: repeat(2, 1fr);
    }
    #hotel-navigation-section .nav-link {
        height: 110px;
        padding: 20px 10px;
    }
}
@media (max-width: 576px) {
    #hotel-navigation-section .nav-row {
        grid-template-columns: 1fr;
    }
    #hotel-navigation-section .nav-link {
        height: 100px;
        padding: 15px 10px;
    }
    #hotel-navigation-section {
        padding: 30px 0;
    }
}







/* =================================================================
   6. FAQ SECTION (Updated)
   ================================================================= */
.faq-section {
    margin: 20px auto;
    padding: 0 20px;
}
.faq-header {
    text-align: center;
    margin-bottom: 40px;
}
.faq-header h2 {
    color: #198754;
    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, #198754, #fcf106);
    border-radius: 2px;
}
.faq-header p {
    color: black;
    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 #198754;
}
.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: #fcf106;
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 18px;
}
.faq-question-text {
    color: black;
}
.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, #198754, transparent);
}
.faq-answer p {
    margin: 0;
    color: black;
}
.faq-answer a {
    color: #198754;
    text-decoration: none !important;
}
.faq-answer a:hover {
    color: #fcf106;
    border-bottom-color: #fcf106;
}
.faq-answer .fa-caret-right {
    color: #fcf106;
    margin-right: 8px;
}
@media (max-width: 600px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .faq-question, .faq-answer {
        padding: 20px;
    }
}




































/* 
        ===========================================================
        CORE STYLES FOR ACTIVE AND DROPDOWN FUNCTIONALITY
        ===========================================================
        */

        /* Styles the link that is currently active */
        #mobile-menu-component .mobile-menu ul li.active > a {
            color: #198754; /* Active color from your request */
            font-weight: bold;
        }

        /* Hides the dropdown's sub-menu by default */
        #mobile-menu-component .mobile-menu .mobile-submenu {
            display: none;
            padding-left: 20px; /* Indents submenu items */
            margin-top: 10px;
        }

        /* This class is toggled by JavaScript to show the sub-menu */
        #mobile-menu-component .mobile-menu li.has-dropdown.open > .mobile-submenu {
            display: block;
        }

        /* Rotates the dropdown arrow icon when the menu is open */
        #mobile-menu-component .mobile-menu li.has-dropdown.open .dropdown-arrow {
            transform: rotate(180deg);
        }

        /* Provides a smooth animation for the arrow rotation */
        #mobile-menu-component .mobile-menu .dropdown-arrow {
            display: inline-block;
            transition: transform 0.3s ease;
            margin-left: 5px;
        }
        
        #mobile-menu-component .mobile-cta {
            background-color: #198754;
            color: white;
            padding: 10px 15px;
            border-radius: 5px;
            text-align: center;
        }
        #mobile-menu-component .mobile-cta:hover {
            background-color: #146c43;
        }


























.highlighted-attraction-section {
    color: black;
    text-align: center;
    margin-top: -30px;
}

.highlighted-container {
    max-width: 1200px;
    margin: 40px auto;
    border: 1px solid #198754; /* Replaced #e0e0e0 with new primary color */
    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, #198754, #fcf106); /* Replaced gradient with new colors */
}

.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: 30px;
}

.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: black; /* Changed text color to black */
    display: flex;
    align-items: center;
}

.highlighted-features li strong {
    color: #198754; /* Replaced #643d8d with new primary color */
}

.highlighted-text {
    font-size: 1rem;
    line-height: 1.6;
    color: black; /* Changed text color to black */
    margin-bottom: 15px;
}

.highlighted-reservation-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #198754; /* Replaced #643d8d with new primary color */
    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: #fcf106; /* Replaced #f1a74b with new secondary color */
    color: black !important; /* Added black color for readability on yellow background */
    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;
    }
}