:root {
    /* Main Brand Colors (Primary Global Definitions) */
    --brand-red: #c63332; /* New custom color, replacing primary-blue's role */
    --accent-gold: #d4af37; /* Grand Royale's main gold accent */
    --dark-gold: #feda44;   /* Darker shade of gold */
    --light-gold: #feda44;  /* Lighter shade of gold (Relax Inn's accent-gold) */

    /* Backgrounds */
    --dark-bg: #1A1A1A; /* Grand Royale's main dark background */
    --light-bg: #F8F5F0; /* Grand Royale's main light background */
    --form-bg: #ffffff; /* For form panels etc. */

    /* Overlays & Header (consolidated from a mid-file :root block) */
    --overlay-color: rgba(0, 0, 0, 0.55); /* Prefer Relax Inn's overlay opacity for hero slider */
    --header-bg: rgba(29, 31, 38, 0.9); /* Dark background for header */
    --transparent-red: rgba(198, 51, 50, 0.2); /* Transparent version of new red */
    --transparent-gold: rgba(212, 175, 55, 0.2); /* Transparent version of gold */
    --trans-white-light: rgba(255, 255, 255, 0.12);
    --trans-white-dark: rgba(255, 255, 255, 0.03);
    --header-height: 101px; /* Approximate height of header (logo height + padding * 2) */


    /* Text Colors */
    --text-color-on-dark: #ffffff; /* Text on dark backgrounds (consolidated) */
    --softer-text-on-dark: rgba(255, 255, 255, 0.8);
    --text-color-on-light: #333333; /* Text on light backgrounds */
    --gray-text: Black;
    --panel-text: #2c3e50; /* For text in booking panel - remains dark bluish gray for contrast on light background */
    --error-text: #c63332; /* For offer text in booking panel */

    /* Form specific colors */
    --form-border-color: #bbbbbb;
    --form-focus-color: var(--brand-red); /* Previously primary-blue */

    /* Fonts */
    --font-heading: 'Playfair Display', serif; /* Consolidated to Grand Royale's preference */
    --font-body: 'Poppins', sans-serif; /* Consolidated to Grand Royale's preference */

    /* Generic component shadow/radius - to be moved or duplicated in specific sections */
    --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;
}

/* Global Styles & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color-on-light);
    background-color: var(--light-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #feda44; /* General H tag color, may be overridden by section specifics */
    margin-bottom: 0.5em;
    line-height: 1.2;
}

p {
    margin-bottom: 1em;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Reusable Components */
.gr-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.gr-section {
    position: relative;
    z-index: 1; /* Ensure sections stack correctly */
}

.gr-section-heading {
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.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-section-heading h2 {
    font-size: 3.2em;
    margin-bottom: 15px;
    color: var(--text-color-on-light);
}
.gr-section-heading h2 span { /* For Grand Royale in About */
    color: var(--brand-red); /* Using global brand-red */
}

.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-section-heading p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--gray-text);
    font-size: 1.1em;
}

.gr-text-center {
    text-align: center;
}

.gr-text--accent {
    color: var(--accent-gold) !important;
}

.gr-font-bold {
    font-weight: 700;
}

.gr-mt-4 {
    margin-top: 2rem;
}

/* Buttons (Hero Section specific & General GR buttons) */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 17.6px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

/* Hero Section specific primary button */
.btn-primary {
    background-color: var(--accent-gold);
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    background-color: var(--brand-red);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-primary:active, .btn-action:active {
    transform: translateY(1px);
}

/* General Grand Royale Buttons */
.gr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.05em;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.gr-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.gr-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15); /* Subtle hover shine */
    transition: all 0.4s ease-out;
    transform: skewX(-20deg);
}
.gr-btn:hover::before {
    left: 100%;
}


.gr-btn--primary {
    background-color: var(--accent-gold);
    color: var(--text-color-on-light);
    box-shadow: 0 5px 15px var(--transparent-gold);
}

.gr-btn--primary:hover {
    background-color: var(--dark-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--overlay-color);
}

.gr-btn--secondary {
    background-color: #d4af37;
    color: var(--text-color-on-dark);
    border: 2px solid var(--text-color-on-dark);
    padding: 14px 34px;
}

.gr-btn--secondary:hover {
    background-color: var(--accent-gold);
    color: var(--text-color-on-light);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--overlay-color);
}

.gr-btn--secondary i {
    transform: translateX(0);
}

.gr-btn--secondary:hover i {
    transform: translateX(5px);
}

.gr-btn--block {
    width: 100%;
}

.gr-btn-more {
    font-weight: 600;
    font-size: 1.1em;
    color: var(--accent-gold);
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 2px;
}
.gr-btn-more:hover {
    color: var(--light-gold);
    border-color: var(--light-gold);
}


/* --- Main Header --- */
/* --- Main Header --- */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: blur(15px);
    color: var(--text-color-on-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 60px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.main-header .logo img {
    max-height: 65px;
    filter: drop-shadow(0 0 8px rgba(0,0,0,0.4));
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 32px;
    color: var(--text-color-on-dark);
    cursor: pointer;
    transition: color 0.3s ease;
}

.menu-toggle:hover {
    color: #feda44;
}

/* Main Navigation */
.main-nav {
    display: flex;
    gap: 40px;
    align-items: center;
    font-size: 1.1rem;
    transition: all 0.4s ease-out;
}

.main-nav a {
    color: var(--text-color-on-dark);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease-out;
    letter-spacing: 0.5px;
}

.main-nav a:hover {
    color: #feda44;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #feda44;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease-out;
}

.main-nav a:hover::after {
    width: 100%;
}

/* --- ACTIVE LINK STYLES --- */
.main-nav a.active {
    color: #feda44; /* Apply active color */
}

.main-nav a.active::after {
    width: 100%; /* Show underline for active link */
}

/* For the parent dropdown link (desktop) */
.main-nav .nav-link-text.active {
    color: #feda44;
}
.main-nav .nav-link-text.active::after {
    width: 100%;
}

/* Book Now Button */
.nav-book-now {
    background: #d4af37;
    color: #c63332;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: none;
    transition: all 0.3s ease;
}

.nav-book-now:hover {
    background-color: #c63332;
    color: white !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-1px);
}

.nav-book-now::after {
    content: none !important;
}

/* Desktop Dropdown Styles */
.main-nav .nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Desktop hover effects - ONLY apply on larger screens */
@media (min-width: 901px) {
    .nav-dropdown:hover .nav-dropdown-content {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .nav-dropdown:hover .dropdown-arrow {
        transform: rotate(180deg);
    }
}

.main-nav .nav-link-text {
    color: var(--text-color-on-dark);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease-out;
    letter-spacing: 0.5px;
    padding: 0;
    white-space: nowrap;
}

.main-nav .nav-link-text:hover {
    color: #feda44;
}

.main-nav .nav-link-text::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #feda44;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease-out;
}

.main-nav .nav-link-text:hover::after {
    width: 100%;
}

.main-nav .dropdown-toggle {
    background: none;
    border: none;
    color: var(--text-color-on-dark);
    cursor: pointer;
    font-size: 0.9em;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, color 0.3s ease, background 0.2s ease;
    border-radius: 4px;
}

.main-nav .dropdown-toggle:hover {
    color: #feda44;
    background: rgba(255,255,255,0.08);
}

.nav-dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--header-bg);
    backdrop-filter: blur(10px);
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.4);
    z-index: 1001;
    border-radius: 6px;
    padding: 10px 0;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% + 5px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-dropdown-content a {
    color: var(--text-color-on-dark);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    transition: background-color 0.2s, color 0.2s;
    font-weight: normal;
    letter-spacing: normal;
}

.nav-dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #feda44;
}

.nav-dropdown-content a::after {
    content: none;
}

/* Hide mobile button on desktop */
.mobile-dropdown-button {
    display: none;
}

/* Content area */
.content {
    margin-top: 120px;
    padding: 40px;
    text-align: center;
}

/* Mobile Styles */
@media (max-width: 900px) {
    .main-header {
        padding: 18px 30px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        flex-direction: column;
        background: var(--header-bg);
        backdrop-filter: blur(15px);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        padding: 30px 0;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        z-index: 999;
        overflow-y: auto;
        gap: 0;
        align-items: center;
        justify-content: flex-start;
    }

    .main-nav.nav-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    /* Mobile navigation items - CENTER ALIGNED */
    .main-nav > a:not(.nav-book-now) {
        width: 90%;
        text-align: center;
        padding: 18px 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: block;
        font-size: 1.1rem;
        font-weight: 500;
        margin: 0 auto;
    }

    .main-nav > a::after {
        display: none;
    }

    .main-nav > a:hover {
        background-color: rgba(255, 255, 255, 0.08);
        color: #feda44;
    }
    
    /* Mobile Active Link Styles */
    .main-nav > a.active:not(.nav-book-now) {
        background-color: rgba(255, 255, 255, 0.08); /* Mimic hover for active */
        color: #feda44;
    }

    /* Hide desktop dropdown elements on mobile */
    .main-nav .nav-link-text {
        display: none;
    }

    .main-nav .dropdown-toggle {
        display: none;
    }

    /* Show mobile dropdown button */
    .mobile-dropdown-button {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 18px 30px;
        cursor: pointer;
        transition: background-color 0.2s ease;
        width: 90%;
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--text-color-on-dark);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        background: none;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        gap: 10px;
        margin: 0 auto;
    }

    .mobile-dropdown-button:hover {
        background-color: rgba(255, 255, 255, 0.08);
        color: #feda44;
    }

    /* For active parent dropdown for mobile */
    .nav-dropdown.active-parent .mobile-dropdown-button {
        background-color: rgba(255, 255, 255, 0.08); /* Highlight parent button */
        color: #feda44;
    }

    .mobile-dropdown-button .dropdown-arrow {
        transition: transform 0.3s ease;
        font-size: 0.9rem;
    }

    .nav-dropdown.dropdown-open .mobile-dropdown-button .dropdown-arrow {
        transform: rotate(180deg);
    }

    /* Mobile Dropdown Container - CENTER ALIGNED */
    .main-nav .nav-dropdown {
        width: 90%;
        display: block;
        position: relative;
        margin: 0 auto;
    }

    /* Mobile dropdown content */
    .nav-dropdown-content {
        background-color: rgba(0, 0, 0, 0.4);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        position: static;
        box-shadow: none;
        padding: 0;
        min-width: unset;
        transform: none;
        border-radius: 0;
        margin: 0;
        display: block;
        opacity: 1;
        visibility: visible;
        width: 100%;
        backdrop-filter: none;
    }

    /* Open state for mobile dropdown */
    .nav-dropdown.dropdown-open .nav-dropdown-content {
        max-height: 300px;
    }

    /* Mobile dropdown links - CENTER ALIGNED */
    .nav-dropdown-content a {
        padding: 15px 30px;
        text-align: center;
        width: 100%;
        display: block;
        font-size: 1rem;
        font-weight: 400;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.2s ease;
    }
    /* Mobile Dropdown Link Active */
    .nav-dropdown-content a.active {
        background-color: rgba(255, 255, 255, 0.1);
        color: #feda44;
    }

    .nav-dropdown-content a:last-child {
        border-bottom: none;
    }

    .nav-dropdown-content a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #feda44;
    }

    /* COMPLETELY DISABLE ALL HOVER EFFECTS ON MOBILE */
    .nav-dropdown:hover .nav-dropdown-content {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        max-height: 0 !important;
        padding: 0 !important;
    }

    .nav-dropdown:hover .dropdown-arrow {
        transform: none !important;
    }

    /* Force mobile dropdown to ignore all hover states */
    .nav-dropdown {
        pointer-events: auto;
    }

    .nav-dropdown:hover {
        background: none !important;
    }

    /* Ensure mobile dropdown content only responds to click */
    .nav-dropdown.dropdown-open .nav-dropdown-content {
        display: block !important;
        max-height: 300px !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: static !important;
        transform: none !important;
    }

    /* Mobile Book Now Button - CENTER ALIGNED */
    .main-nav .nav-book-now {
        margin: 20px auto 10px auto;
        padding: 15px 25px;
        text-align: center;
        border-radius: 8px;
        background: #c63332;
        color: white !important;
        font-size: 1.1rem;
        font-weight: bold;
        width: 90%;
        max-width: 300px;
    }

    .main-nav .nav-book-now:hover {
        background-color: #a82a29;
        transform: none;
    }
}
/* END OF MODIFIED NAVIGATION STYLES FOR "THINGS TO DO" DROPDOWN */


/* Hero Slider Section */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: var(--brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px; /* Accounts for a fixed header if present */
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.hero-slide.active {
    z-index: 2;
    opacity: 1;
    visibility: visible;
}

.slide-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 23%); /* Kept your exact opacity */
    top: 0;
    left: 0;
    z-index: 2;
}

.slide-content {
    position: absolute;
    left: 7%; /* Left positioning based on previous refinement */
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    color: white !important;
    text-align: left;
    max-width: 380px; /* Reduced max-width for image visibility */
    background: rgba(0, 0, 0, 0.35);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(2px); /* Kept your blur value */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
    animation: fadeInSlideContent 0.8s ease-out forwards; /* Content box fade-in */
}

@keyframes fadeInSlideContent {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

/* **RESTORING ORIGINAL TEXT ANIMATION PROPERTIES** */
/* Added .slide-content .btn and .slide-content .btn-primary for initial hidden state */
.slide-content h1,
.slide-content p,
.slide-content .btn, /* Targeting a general button class */
.slide-content .btn-primary /* Targeting a primary button class specifically */
{
    opacity: 0; /* Ensures initial hidden state for animation */
    /* Add a transition here so JavaScript can smoothly fade it in/out */
    transition: opacity 0.6s ease-out; /* Adjust timing to match your text animation if needed */

    overflow: hidden; /* **Restored for typing effect (for text)** */
    border-right: 3px solid transparent; /* **Restored for typing cursor effect (for text)** */
    box-sizing: border-box; /* **Restored from original** */
    white-space: nowrap; /* **Restored for typing effect (important for text)** */
}

/* Specific overrides for buttons within slide-content as text typing properties don't apply */
.slide-content .btn,
.slide-content .btn-primary {
    overflow: visible; /* Buttons shouldn't hide content that overflows */
    border-right: none; /* No typing cursor on a button */
    white-space: normal; /* Allow button text to wrap normally */
    /* Add margin-top if your button pushes down text or other elements after it */
    margin-top: 25px; /* Adjust as needed for spacing */
    display: inline-block; /* Ensure padding and margin work correctly */
}


.slide-content h1 {
    font-family: var(--font-heading);
    font-size: 3rem; /* Kept recent responsive size */
    margin-bottom: 18px; /* Kept recent responsive size */
    line-height: 1.15;
    text-shadow: 0 5px 12px rgba(0,0,0,0.6);
    font-weight: 800;
    /* white-space: nowrap; - Now part of the combined rule and overridden for buttons */
}

.slide-content p {
    font-family: var(--font-body);
    font-size: 1.25rem; /* Kept recent responsive size */
    margin-bottom: 25px; /* Kept recent responsive size */
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
    font-weight: 500;
    /* white-space: nowrap; - Now part of the combined rule and overridden for buttons */
}

/* Example styles for the button itself if it's inside .slide-content */
/* (Assuming a generic .btn class for the content button, adjust if you use .btn-primary specifically) */
.slide-content .btn {
    background-color: var(--brand-red);
    color: var(--text-color-on-dark);
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none; /* If it's an <a> tag */
    display: inline-block; /* Essential for padding to work */
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.slide-content .btn:hover {
    background-color: var(--accent-gold);
    color: var(--brand-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}
/* If you use .btn-primary, apply similar styles */
.slide-content .btn-primary {
    /* Copy the styles from .slide-content .btn here if .btn-primary is its distinct style */
    background-color: var(--brand-red);
    color: var(--text-color-on-dark);
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.slide-content .btn-primary:hover {
    background-color: var(--accent-gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}



/* Slider Navigation Buttons */
.slide-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: var(--text-color-on-dark);
    border: none;
    padding: 16px 22px;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.slide-nav-btn:hover {
    background-color: var(--brand-red);
    color: var(--accent-gold);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

.slide-nav-btn.prev {
    left: 30px;
}

.slide-nav-btn.next {
    right: 30px;
}

/* Slider Navigation Dots */
.slide-nav-dots-container {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 15px;
}

.slide-nav-dots-container .dot {
    width: 14px;
    height: 14px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s ease-out;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 1px 6px rgba(0,0,0,0.2);
}

.slide-nav-dots-container .dot.active {
    background-color: var(--accent-gold);
    transform: scale(1.3);
    border-color: var(--accent-gold);
    box-shadow: 0 0 12px rgba(255,215,0,0.8);
}

/* Booking Panel */
.booking-panel {
    position: absolute;
    right: 7%; /* Right positioning based on previous refinement */
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: var(--form-bg);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    width: 280px; /* Reduced width for image visibility */
    color: var(--panel-text);
    border: 1px solid rgba(255,255,255,0.6);
    backdrop-filter: blur(8px);
    box-sizing: border-box;
    animation: fadeInBookingPanel 0.8s ease-out forwards;
    animation-delay: 0.1s;
}

@keyframes fadeInBookingPanel {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}


.booking-panel h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.9rem;
    font-family: var(--font-heading);
    color: var(--brand-red);
    font-weight: 700;
}

.booking-panel .form-group {
    margin-bottom: 18px;
}

.booking-panel label {
    font-size: 0.9rem;
    margin-bottom: 6px;
    display: block;
    font-weight: 600;
    color: var(--panel-text);
}

.booking-panel input[type="date"],
.booking-panel select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid var(--form-border-color);
    background-color: #fcfcfc;
    color: var(--panel-text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.booking-panel input[type="date"]:focus,
.booking-panel select:focus {
    border-color: var(--form-focus-color);
    box-shadow: 0 0 0 3px rgba(198, 51, 50, 0.2);
    outline: none;
}

.btn-action {
    background-color: var(--brand-red);
    color: white !important;
    width: 100%;
    margin-top: 20px;
    font-size: 17.6px;
    padding: 16px 0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-action:hover {
    background-color: var(--accent-gold);
    color: var(--brand-red);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Scroll Down Arrow */
.scroll-down {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.8rem;
    color: var(--text-color-on-dark);
    z-index: 5;
    animation: bounce 2s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    text-shadow: 0 3px 8px rgba(0,0,0,0.5);
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 20px); }
}


/* --- Responsive Adjustments --- */

/* Tablets / Smaller Laptops (max-width 1200px) */
@media (max-width: 1200px) {
    .slide-content {
        left: 4%;
        max-width: 350px;
        padding: 25px;
    }
    .slide-content h1 {
        font-size: 2.6rem;
    }
    .slide-content p {
        font-size: 1.15rem;
    }
    /* Adjusted font size for slide content button */
    .slide-content .btn,
    .slide-content .btn-primary {
        font-size: 1rem;
        padding: 10px 20px;
    }


    .booking-panel {
        right: 4%;
        width: 260px;
        padding: 20px;
    }
    .booking-panel h3 {
        font-size: 1.8rem;
    }
    .booking-panel input[type="date"],
    .booking-panel select {
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    .slide-nav-btn.prev { left: 20px; }
    .slide-nav-btn.next { right: 20px; }
    .scroll-down { bottom: 60px; }
}

/* Tablets (max-width 992px) - Content stacks, becomes smaller */
@media (max-width: 992px) {
    .hero-slider-section {
        height: auto;
        min-height: 100vh;
        flex-direction: column;
        justify-content: flex-start;
    }

    .hero-slide {
        position: static;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .slide-visual {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .slide-content {
        position: relative;
        top: 15%;
        left: auto;
        transform: none;
        width: 90%;
        max-width: 400px;
        text-align: center;
        z-index: 3;
        background: rgba(0, 0, 0, 0.3);
        animation: none;
        margin: 0 auto;
        padding: 25px;
        /* When content is stacked on tablets/mobiles, `white-space: nowrap` for animation can cause horizontal scroll,
           consider removing it for these smaller breakpoints if not managing overflow well with JS */
        /* white-space: normal; - This property is now controlled by specific rules below */
    }
    /* Override to allow text wrap for headings/paragraphs and buttons on smaller screens */
    .slide-content h1,
    .slide-content p,
    .slide-content .btn, /* Apply this to the button as well for consistency */
    .slide-content .btn-primary {
        white-space: normal;
        overflow: visible; /* Prevent text/button content being hidden if it wraps */
        border-right: none; /* Remove "typing cursor" style when text wraps or for buttons */
    }


    .slide-content h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    .slide-content p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    /* Assuming a class .btn for the slide content button */
    .slide-content .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .slide-content .btn-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }


    .booking-panel {
        position: relative;
        bottom: 30px;
        left: auto;
        right: auto;
        transform: none;
        width: 90%;
        max-width: 350px;
        margin: 0 auto;
        z-index: 11;
        padding: 20px;
        background: var(--form-bg);
        animation: none;
    }

    .slide-nav-dots-container {
        bottom: 15px;
    }

    .slide-nav-btn {
        top: 20%;
        padding: 12px 16px;
        font-size: 1.6rem;
    }
    .slide-nav-btn.prev { left: 10px; }
    .slide-nav-btn.next { right: 10px; }
    .scroll-down {
        display: none;
    }
}

/* Mobile (max-width 768px) */
@media (max-width: 768px) {
    .hero-slider-section {
        margin-top: 60px;
    }

    .slide-content {
        top: 10%;
        width: 95%;
        max-width: 300px;
        padding: 18px;
    }
    .slide-content h1 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    .slide-content p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    .slide-content .btn-primary { /* Assumed primary class */
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    .slide-content .btn { /* Assumed generic button class */
        padding: 8px 15px;
        font-size: 0.85rem;
    }


    .booking-panel {
        bottom: 10px;
        width: 95%;
        max-width: 320px;
        padding: 15px;
    }
    .booking-panel h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    .booking-panel input[type="date"],
    .booking-panel select {
        padding: 8px 10px;
        font-size: 0.8rem;
    }
    .booking-panel .btn-action {
        padding: 12px 0;
        font-size: 0.95rem;
    }

    .slide-nav-dots-container {
        display: none;
    }

    .slide-nav-btn {
        top: 25%;
        padding: 8px 12px;
        font-size: 1.4rem;
    }
}



.ada {
    width: 100%;
    margin: 0 auto;
    padding: 20px 12px; /* Increased vertical padding */
    text-align: left;
    color: black; /* Fixed typo from 'Blacl' */
    font-size: 18px; /* Increased from 16px */
    background-color: white;
    font-family: 'Roboto Slab', serif;
    position: relative;
    z-index: 1;
    box-sizing: border-box; /* Ensures padding is included in width */
}

.ada .container {
    max-width: 1200px; /* Changed from 1200px to use full width */
    margin: 0 auto;
    padding: 0 15px;
}

.ada a {
    color: #fff;
    text-decoration: underline;
    font-size: 18px; /* Increased from 16px */
    font-family: 'poppins', sans-serif;
    background-color: transparent;
    transition: all 0.3s ease; /* Smooth transition for hover effects */
}

/* Different color for phone numbers */
.ada a[href^="tel:"] {
    color: var(--brand-red); /* Using global brand-red */
    text-decoration: none;
}

/* Hover effects */
.ada a:hover {
    color: var(--accent-gold); /* Using global accent-gold */
    text-decoration: none; /* Removes underline on hover */
}

.ada a[href^="tel:"]:hover {
    color: var(--accent-gold); /* Using global accent-gold for consistency */
    text-decoration: none; /* Adds underline on hover */
}

/* Welcome Section */
.welcome-section {
    padding: 100px 0;
    text-align: center;
    position: relative; /* For proper stacking context */
}

/* About Us Section */
.gr-about-section {
    background-color: var(--light-bg);
    position: relative;
    margin-top: -150px;
    z-index: 1;
    overflow: hidden; /* Prevent any potential overflow causing gaps */
}

.gr-about-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: start; /* Changed from 'center' to 'start' */
}

/* About content styles remain the same */
.gr-about-content {
    line-height: 1.8;
}

.gr-about-content .gr-section-heading {
    text-align: left;
    margin-bottom: 40px;
}
.gr-about-content .gr-section-heading::after {
    left: 0;
    transform: translateX(0);
}

.gr-about-content .gr-section-heading h2 {
    font-size: 2.8em;
    color: var(--text-color-on-light);
}

.gr-about-content .gr-lead-paragraph {
    font-size: 1.15em;
    color: var(--text-color-on-light);
    margin-bottom: 25px;
    font-weight: 500;
}

.gr-about-content p {
    color: var(--gray-text);
    margin-bottom: 20px;
}

.gr-signature-block {
    display: flex;
    align-items: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--light-border);
}

.gr-signature-block img {
    width: 140px;
    filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.1));
    margin-right: 25px;
}

.gr-signature-text h5 {
    font-size: 1.4em;
    color: var(--text-color-on-light);
    margin-bottom: 5px;
}

.gr-signature-text .gr-role {
    font-size: 0.95em;
    color: var(--gray-text);
    font-style: italic;
    margin-bottom: 0;
}

/* Fixed image container styles */
.gr-about-images {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    margin: 0;
    padding: 0;
    line-height: 0;
    font-size: 0;
}

.gr-image-wrapper {
    position: absolute;
    margin: 0;
    padding: 0;
    border: none;
    overflow: hidden;
}

.gr-img-main {
    width: 80%;
    height: 70%;
    top: 0;
    left: 0;
}

.gr-img-secondary {
    width: 70%;
    height: 60%;
    bottom: 0;
    right: 0;
}

.gr-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
}

/* Amenities Section (Grid Layout) */
.gr-amenities-section {
    padding: 120px 0;
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
    color: var(--text-color-on-dark);
}
.gr-amenities-section .gr-section-heading h2,
.gr-amenities-section .gr-section-heading p {
    color: var(--text-color-on-dark);
}
.gr-amenities-section .gr-section-heading::after {
    background-color: var(--accent-gold);
}

/* SVG Background Animation */
.gr-amenities-bg-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.6;
}

.gr-amenities-bg-lines path {
    stroke: var(--accent-gold);
    fill: none;
    filter: drop-shadow(0 0 8px var(--accent-gold));
}

.gr-amenities-container {
    position: relative;
    z-index: 1;
}

.gr-amenities-items-container {
    margin-top: 80px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns for desktop */
    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: 0; /* Initial hidden state, animated by JS */
}

.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: 3.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 .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;
}

.gr-amenity-item p {
    font-size: 1em;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
    color: var(--softer-text-on-dark);
}


/* Guest Information / Policies Section */

.gr-policies-section {
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

/* Background image with black overlay */
.gr-policies-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/double-bed-room.jpg') center/cover;
    z-index: 0;
}

/* Black overlay to improve content visibility */
.gr-policies-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Adjust opacity (0.6) as needed */
    z-index: 0;
}

.gr-policies-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    gap: 30px;
}

.gr-policies-content {
    flex: 0 0 50%;
    max-width: 500px;
    padding: 30px;
    background: rgba(198, 51, 50, 0.7); /* Using global brand-red with 70% opacity */
    border-radius: 15px;
    backdrop-filter: blur(8px);
    border-left: 4px solid var(--accent-gold, #FFD700);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
    text-align: center;
    z-index: 2;
}

.gr-policies-subheading {
    color: var(--accent-gold);
    font-size: 1em;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.gr-policies-title {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    position: relative;
    display: inline-block;
}

.gr-policies-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--accent-gold);
}

.gr-policy-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 20px;
    margin-top: 25px;
}

.gr-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.gr-feature-item i {
    font-size: 1.5em;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.gr-policy-detail {
    font-weight: 600;
    color: white;
    display: block;
    margin-top: 5px;
    font-size: 1.1em;
}

.gr-feature-item--full {
    grid-column: 1 / -1;
    text-align: left;
    flex-direction: row;
    align-items: flex-start;
    padding: 15px 20px;
    font-size: 0.9em;
}

.gr-feature-item--full i {
    margin-right: 15px;
    margin-bottom: 0;
}

.gr-policies-images {
    flex: 0 0 20%;
    position: relative;
    height: 350px;
}

.gr-policies-img-left, .gr-policies-img-right {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.gr-policies-img-left {
    right: 0;
    transform: perspective(800px) rotateY(-10deg);
}

.gr-policies-img-right {
    left: 0;
    transform: perspective(800px) rotateY(10deg);
}

.gr-policies-img-left img, .gr-policies-img-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .gr-policies-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .gr-policies-images {
        display: none;
    }
    
    .gr-policies-content {
        flex: 1;
        width: 85%;
        max-width: 100%;
    }
    
    .gr-policies-section {
        padding: 50px 0;
    }
}

@media (max-width: 576px) {
    .gr-policy-features {
        grid-template-columns: 1fr;
    }
    
    .gr-feature-item--full {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .gr-feature-item--full i {
        margin-right: 0;
        margin-bottom: 10px;
    }
}


/* Rooms Section */
.gr-rooms-section {
    padding: 40px 0;
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden; /* Important for transform effects */
}

.gr-rooms-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(212, 175, 55, 0.03)" d="M0,0 L100,0 L100,100 Q50,80 0,100 Z"></path></svg>');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.8;
    pointer-events: none;
}

/* Overall Container (Adapted from nearby-content-container, no max-width) */
.nearby-content-container {
    margin: 0 auto;
    padding: 0 20px; /* From the attraction section for full-width layout */
    position: relative;
    z-index: 1; /* To be above the pattern */
}

/* Main Section Heading Styles (Customized from original gr-section-heading for overall rooms section) */
.main-room-section-header {
    text-align: center;
    margin-bottom: 60px; /* Space below header */
    position: relative;
}

/* Using existing gr-subheading properties from common styles */
/* Using existing gr-section-heading h2 properties from common styles */

.main-room-section-header h2 { /* Targeting the main h2 for styling */
    font-size: 3em; /* Slightly larger for main heading */
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--text-color-on-light);
    font-family: var(--font-heading);
    font-weight: 700;
}

.main-room-description { /* From original room section CSS */
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1em;
    line-height: 1.8;
    color: var(--gray-text);
}

/* Individual Room Listing Styles (Based on .nearby-section) */
.nearby-section {
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* Ensures boxes have equal height */
    margin-bottom: 40px;
    gap: 20px;
    transform-style: preserve-3d;
    perspective: 1200px;
    z-index: 1; /* Ensure these are above the pattern */
}

/* Common styles for content and image boxes */
.nearby-list-box,
.nearby-image-box {
    width: calc(50% - 10px);
    aspect-ratio: auto; /* Remove fixed aspect ratio for flexible height content */
    min-height: 350px; /* Maintain minimum height for better visual */
    max-height: unset; /* Remove max-height constraint */
    display: flex;
    transition: all 0.5s ease;
    overflow: hidden; /* For images */
    border-radius: 12px;
    border: 1px solid #f0f0f0;
}

/* Styling for the content box */
.nearby-list-box {
    background: var(--form-bg); /* Use white for background */
    padding: 30px; /* Adjust padding for inner content */
    box-shadow: 15px 5px 25px -10px rgba(0,0,0,0.15); /* Default shadow for content on left */
    transform: rotateY(-10deg); /* Default transform for content on left */
    flex-direction: column; /* Allows content inside to stack */
}

/* Styling for the image box */
.nearby-image-box {
    box-shadow: -15px 5px 25px -10px rgba(0,0,0,0.15); /* Default shadow for image on right */
    transform: rotateY(10deg); /* Default transform for image on right */
}

/* Hover effects - applied based on element type, as per original nearby-section */
.nearby-section:hover .nearby-list-box {
    transform: rotateY(-15deg) translateX(-5px);
    box-shadow: 20px 8px 35px -10px rgba(0,0,0,0.2);
}

.nearby-section:hover .nearby-image-box {
    transform: rotateY(15deg) translateX(5px);
    box-shadow: -20px 8px 35px -10px rgba(0,0,0,0.2);
}

/* Overrides for the sections where image is on the left (e.g., Executive Suite) */
.room-image-left .nearby-image-box {
    transform: rotateY(-10deg); /* Image now on left, so its initial rotation is reversed */
    box-shadow: 15px 5px 25px -10px rgba(0,0,0,0.15); /* Shadow adjusted for image on left */
}
.room-image-left .nearby-list-box {
    transform: rotateY(10deg); /* Content now on right, so its initial rotation is reversed */
    box-shadow: -15px 5px 25px -10px rgba(0,0,0,0.15); /* Shadow adjusted for content on right */
}

.room-image-left:hover .nearby-image-box {
    transform: rotateY(-15deg) translateX(-5px); /* Image on left, tilts left on hover */
    box-shadow: 20px 8px 35px -10px rgba(0,0,0,0.2);
}
.room-image-left:hover .nearby-list-box {
    transform: rotateY(15deg) translateX(5px); /* Content on right, tilts right on hover */
    box-shadow: -20px 8px 35px -10px rgba(0,0,0,0.2);
}

/* Content within nearby-list-box */
.nearby-column {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes button to bottom */
    flex-grow: 1; /* Allow content to fill space */
}

.nearby-section-headline { /* Room name H3 */
    font-size: 2em; /* Match original room h3 size */
    margin-bottom: 12px;
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-weight: 700;
    text-align: left;
    padding: 0;
    position: relative;
}

.room-content-wrapper { /* General wrapper for description, features, price/btn */
    flex-grow: 1; /* Ensures this part fills available space, pushing button to bottom */
    display: flex;
    flex-direction: column;
}

.room-description-para {
    color: var(--gray-text);
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 0.95em;
    flex-grow: 1; /* Let description expand */
}

.room-features-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.room-feature-tag { /* Matches old gr-feature-tag style */
    display: flex;
    align-items: center;
    color: var(--gray-text);
    font-size: 0.9em;
    background-color: var(--light-bg);
    padding: 8px 15px;
    border-radius: 5px;
    white-space: nowrap;
}

.room-feature-tag i {
    color: var(--accent-gold);
    margin-right: 8px;
    font-size: 1.1em;
}

.room-price-and-btn {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* Align to the bottom if there's extra space */
    margin-top: auto; /* Push this container to the bottom */
    padding-top: 20px; /* Some padding above price/btn */
}

.room-current-price { /* Matches old gr-price style */
    font-size: 1.8em;
    color: var(--accent-gold);
    font-weight: 700;
    line-height: 1;
}

.room-current-price span {
    font-size: 1.4em;
    font-family: var(--font-heading);
}

.book-room-button {
    line-height: 1;
}

.book-room-button:hover {
    background-color: var(--dark-gold);
    transform: translateY(-2px);
}

.nearby-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.nearby-section:hover .nearby-image-box img {
    transform: scale(1.05);
}

.room-features-list {
    margin: 15px 0;
    padding-left: 0;
    list-style: none;
}

.room-features-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    font-size: 15px;
}

.room-features-list i {
    margin-right: 10px;
    color: var(--brand-red);
    width: 20px;
    text-align: center;
}

.room-description-para {
    margin-bottom: 15px;
    line-height: 1.4;
}

/* Experiences Section (Orbital Layout) */
/* --- Final CSS with Blended Background for Best Visibility --- */

.gr-experiences-section {
    padding: 120px 0;
    
    /* CHANGE 1: The background is now a softer red glow that fades to black much sooner. */
    background-image: radial-gradient(circle at center, var(--brand-red) 0%, black 100%); /* Using global brand-red */

    position: relative;
    overflow: hidden;
    color: var(--text-color-on-dark);
    z-index: 1;
}
.gr-experiences-section .gr-section-heading h2,
.gr-experiences-section .gr-section-heading p {
    color: var(--text-color-on-dark);
}
.gr-experiences-section .gr-section-heading::after {
    background-color: var(--accent-gold);
}

.gr-experience-particle-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}
.gr-particle-svg {
    /* Made particles slightly more transparent */
    opacity: 0.3;
    width: 100%;
    height: 100%;
}
.gr-particle-svg circle {
    will-change: transform, opacity;
}

.gr-orbital-experience-wrapper {
    position: relative;
    width: 100%;
    height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
    perspective: 1500px;
    transform-style: preserve-3d;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
}

.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(--accent-gold);
    color: var(--text-color-on-light);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px var(--transparent-gold);
}
.gr-nav-arrow--prev { left: 0px; }
.gr-nav-arrow--next { right: 0px; }


.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);
    /* Added transition for smooth scaling */
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* CHANGE 2: NEW STYLE TO MAKE THE ACTIVE CARD "POP" */
.gr-experience-card.is-active {
    transform: scale(1.05); /* Makes the card slightly larger */
    /* Adds a gold glow to highlight it as the main focus */
    box-shadow: 0 0 25px -5px var(--accent-gold), 0 15px 40px rgba(0,0,0,0.6);
}

.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-experience-content-inner {
    position: relative;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
}
.gr-experience-card h3 {
    font-size: 1.8em;
    color: var(--text-color-on-dark);
    margin-bottom: 8px;
}
.gr-experience-card p {
    font-size: 0.95em;
    line-height: 1.5;
    margin-bottom: 15px;
    opacity: 0.9;
    color: var(--softer-text-on-dark);
}

.gr-experiences-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://pixydrops.com/solinom-html/assets/images/shapes/feature-2-1.png');
    background-repeat: repeat-x; 
    background-size: auto 100%;
    /* CHANGE 3: The animated pattern is now much more subtle and less distracting. */
    opacity: 0.08; 
    z-index: -1; 
    animation: bgSlide 10s linear infinite;
}

@keyframes bgSlide {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 100% 0;
    }
}


/* Photo Gallery */
.gr-gallery-section {
    background: linear-gradient(to bottom, var(--light-bg), rgba(248, 245, 240, 0.8), rgba(212, 175, 55, 0.08));
    padding: 20px 0;
    text-align: center;
    position: relative;
}

.gr-gallery-header {
    margin-bottom: 60px;
    padding: 0 20px;
}

.gr-gallery-header .gr-subheading {
    color: var(--text-color-on-light);
    margin-bottom: 15px;
}

.gr-gallery-header h2 {
    font-size: 3.2em;
    font-weight: 600;
    color: var(--text-color-on-light);
    margin: 15px 0;
}

.gr-gallery-description {
    font-size: 1.1em;
    color: var(--gray-text);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.gr-gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    width: 100%;
    margin: 40px auto;
    padding: 0;
}

.gr-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    aspect-ratio: 1/1;
}

.gr-gallery-item--tall {
    grid-row: span 2;
    aspect-ratio: 1/1.5;
}

.gr-gallery-item--wide {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

.gr-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gr-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.gr-gallery-item:hover img {
    transform: scale(1.05);
}

.gr-gallery-button-container {
    margin-top: 80px;
}

.gr-explore-gallery-btn {
    display: inline-block;
    background: var(--accent-gold); /* Using global accent-gold */
    color: white !important;
    font-size: 1.1em;
    font-weight: bold;
    padding: 10px 25px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: none;
}

.gr-explore-gallery-btn:hover {
    background-color: var(--brand-red); /* Using global brand-red */
    color: white !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-1px);
}

/* Lightbox Styles */
.gr-gallery-preview {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gr-gallery-preview.show {
    display: flex;
    opacity: 1;
}

.gr-preview-content {
    position: relative;
    max-width: 80%;
    max-height: 80vh;
    text-align: center;
}

.gr-preview-content img {
    max-height: 80vh;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: fadeIn 0.3s ease;
}

#preview-caption {
    color: white;
    font-size: 1.2em;
    margin-top: 20px;
    text-align: center;
    padding: 0 20px;
}

.gr-close-btn {
    position: fixed;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

.gr-close-btn:hover {
    color: var(--accent-gold);
    transform: scale(1.2);
}

.gr-nav-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 40px;
    background: rgba(0,0,0,0.3);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gr-prev-btn {
    left: 30px;
}

.gr-next-btn {
    right: 30px;
}

.gr-nav-btn:hover {
    background: rgba(0,0,0,0.6);
    transform: translateY(-50%) scale(1.1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


/* Video Section */
.gr-video-section {
    position: relative;
    height: 550px;
    background: url('images/traveler.jpg') center center / cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    border-top: 2px solid var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
    box-sizing: border-box;
}

.gr-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(30, 30, 47, 0.8), rgba(30, 30, 47, 0.5));
    z-index: 1;
}

.gr-video-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gr-video-content .gr-play-btn {
    background: none;
    border: 3px solid var(--accent-gold);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px auto; /* Ensures horizontal centering */
    font-size: 3em;
    color: var(--accent-gold);
    cursor: pointer;
    transition: all 0.4s ease-out;
    position: relative;
    padding: 0;
}

.gr-video-content .gr-play-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background-color: var(--accent-gold);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    animation: gr-pulse-glow 2s infinite ease-out;
    z-index: -1;
}

@keyframes gr-pulse-glow {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.3); opacity: 0; }
}

.gr-video-content .gr-play-btn:hover {
    box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.3);
    transform: scale(1.05);
    background-color: rgba(212, 175, 55, 0.1);
}

.gr-video-content .gr-play-btn i {
    transform: translateX(4px);
}

.gr-video-content h2 {
    font-size: 3.5em;
    margin-top: 0;
    margin-bottom: 20px;
    color: #ffffff;
}

.gr-video-content p {
    font-size: 1.1em;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* --- Isolated Popup Modal Styles --- */
.gr-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    box-sizing: border-box;
}

.gr-popup-content {
    position: relative;
    background-color: #000;
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    border-radius: 5px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
}

.gr-popup-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.5);
    border: 1px solid #aaa;
    border-radius: 50%;
    font-size: 1.5em;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.gr-popup-close-btn:hover {
    color: #fff;
    background: rgba(212, 175, 55, 0.7);
    border-color: var(--accent-gold);
}

.gr-popup-content .gr-video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ccc;
}
.gr-popup-content .gr-video-placeholder h3 {
    font-size: 1.8em;
    color: var(--accent-gold);
    margin: 0;
}
.gr-popup-content .gr-video-placeholder p {
    font-size: 1.1em;
    color: #ddd;
    margin-top: 10px;
}


/* Footer */

.gr-main-footer {
    background: radial-gradient(ellipse at center, var(--brand-red) 0%, #440000 75%); /* Using global brand-red */
    color: #ffffff;
    padding: 100px 0 30px;
    position: relative;
    overflow: hidden;
    border-top: none;
}

.gr-reflection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(255,255,255,0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.gr-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.gr-footer-col h3 {
    font-size: 1.6em;
    color: var(--accent-gold); /* Using global accent-gold */
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.gr-footer-col h3::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold); /* Using global accent-gold */
    bottom: 0;
    left: 0;
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}

.gr-footer-col p {
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    font-size: 0.95em;
    margin-bottom: 25px;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}

.gr-footer-col ul {
    list-style: none;
    padding-left: 0;
}

.gr-footer-col li {
    margin-bottom: 15px;
}

.gr-footer-col a {
    color: rgba(255,255,255,0.85);
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95em;
    text-decoration: none;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}

.gr-links-col a:hover {
    color: var(--accent-gold); /* Using global accent-gold */
    transform: translateX(8px);
    text-shadow: 0 0 6px rgba(212, 175, 55, 0.6);
}

.gr-footer-contact li {
    display: flex;
    align-items: flex-start;
}

.gr-footer-contact i {
    color: var(--accent-gold); /* Using global accent-gold */
    margin-right: 15px;
    font-size: 1.1em;
    line-height: inherit;
    padding-top: 4px;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

.gr-footer-contact a:hover {
    color: var(--accent-gold); /* Using global accent-gold */
    text-shadow: none;
}

.gr-social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.gr-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(0,0,0,0.2);
    border-radius: 50%;
    color: var(--accent-gold); /* Using global accent-gold */
    font-size: 1.1em;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.1);
}

.gr-social-links a:hover {
    background-color: var(--accent-gold); /* Using global accent-gold */
    color: var(--brand-red); /* Using global brand-red */
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.gr-footer-bottom {
    text-align: center;
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    font-size: 0.85em;
    position: relative;
    z-index: 2;
}

.cgs2 a {
    color: var(--accent-gold) !important; /* Using global accent-gold */
    text-decoration: none;
    transition: all 0.3s ease;
}

.cgs2 a:hover {
    color: #ffffff !important;
    text-shadow: 0 0 5px rgba(255,255,255,0.5);
}

.gr-main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="rgba(255,255,255,0.03)" width="50" height="50" x="0" y="0"></rect></svg>');
    background-size: 50px 50px;
    opacity: 0.5;
    z-index: 0;
}


/* --- Responsive Adjustments --- */
@media (max-width: 1200px) {
    .gr-section-heading h2 { font-size: 2.8em; }
    .slide-content h1 { font-size: 4em; } 
    
    .gr-nav-arrow--prev { left: -30px; }
    .gr-nav-arrow--next { right: -30px; }
    .gr-footer-content { gap: 40px; }

    .nearby-content-container { padding: 0 30px; }
}

@media (max-width: 992px) {
    /* Header & Nav */
    .main-nav { 
        display: none; 
        flex-direction: column; 
        background: var(--header-bg); 
        width: 100%; 
        position: absolute; 
        top: 100%; 
        left: 0; 
        padding: -10px; 
        text-align: center;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }
    .main-nav.nav-open { display: flex; } /* Using nav-open consistently with JS */
    .main-nav a { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .main-nav a:last-child { border-bottom: none; margin-bottom: 0; }
    .main-nav .nav-book-now { margin-top: 15px; padding: 12px 25px; }
    .main-header { padding: 15px 30px; }
    .menu-toggle { display: block; }
    .main-header .logo img { max-height: 55px; }

    /* Hero Slider */
    .hero-slider-section {
        margin-top: 70px;
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        padding-bottom: 120px;
    }
    .hero-slide {
        position: relative;
        height: 85vh;
        min-height: 550px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .hero-slide:not(.active) {
        opacity: 0 !important;
        visibility: hidden !important;
        display: none !important;
    }
    .slide-content { 
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        max-width: 100%;
        text-align: center;
        margin: 50px auto 0 auto;
        padding: 30px;
        background: rgba(0, 0, 0, 0.4);
    }
    .slide-content h1 { font-size: 3.2rem; margin-bottom: 20px;}
    .slide-content p { font-size: 1.3rem; margin-bottom: 30px;}
    .slide-nav-btn { font-size: 1.8rem; padding: 12px 18px; }
    .slide-visual { background-position: center top; }
    .booking-panel {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        margin: 30px auto 0 auto;
        width: 90%;
        max-width: 450px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    .scroll-down { display: none; }
    .slide-nav-dots-container { bottom: 20px; gap: 12px;}
    .slide-nav-dots-container .dot { width: 12px; height: 12px; border-width: 2px;}

    /* About Section */
    .gr-about-container { grid-template-columns: 1fr; gap: 80px; }
    .gr-about-content .gr-section-heading { text-align: center; }
    .gr-about-content .gr-section-heading::after { left: 50%; transform: translateX(-50%); }
    .gr-about-images { height: 450px; }
    .gr-img-main, .gr-img-secondary { width: 90%; }
    
    /* Amenities */
    .gr-amenities-items-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        align-items: stretch;
        justify-items: center;
    }
    .gr-amenity-item {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 250px;
        transform: none !important;
    }

    /* Policies */
    .gr-policies-container {
        flex-direction: column;
        text-align: center;
    }
    
    .gr-policies-content { max-width: 100%; padding: 30px; }
    .gr-policy-features { grid-template-columns: 1fr; }
    .gr-policies-images { flex-direction: column; align-items: center; min-height: auto;}
    .gr-policies-img-main { max-width: 90%; transform: none;}
    .gr-policies-img-secondary { position: relative; bottom: 0; right: 0; transform: none; max-width: 80%; margin-top: 30px; }

    /* Rooms section tablet adjustments */
    .nearby-section {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center items when stacked */
        transform-style: unset; /* Remove 3d transform for stacked layout */
        perspective: unset;
        gap: 30px; /* Add gap between stacked items */
        margin-bottom: 30px;
    }

    /* Remove special "room-image-left" styling when stacked on mobile */
    .nearby-section,
    .room-image-left {
        flex-direction: column !important; /* Force column layout on mobile */
    }

    .nearby-list-box,
    .nearby-image-box,
    .nearby-section.room-image-left .nearby-list-box,
    .nearby-section.room-image-left .nearby-image-box {
        width: 100%; /* Take full width */
        max-width: 500px; /* Limit width for larger mobile screens/tablets */
        min-height: unset; /* Allow height to adjust naturally */
        transform: none !important; /* Remove all initial and hover transforms */
        box-shadow: 0 10px 20px rgba(0,0,0,0.1); /* Simpler shadow for mobile */
    }

    .nearby-list-box {
        padding: 25px;
    }

    .nearby-section-headline {
        font-size: 1.8em;
        text-align: center; /* Center individual room title on mobile */
    }
    .room-description-para { font-size: 0.9em; margin-bottom: 20px; }
    .room-features-group { gap: 10px; margin-bottom: 20px; }
    .room-feature-tag { font-size: 0.85em; padding: 6px 12px; }
    .room-price-and-btn {
        flex-direction: column; /* Stack price and button */
        align-items: center; /* Center them when stacked */
        gap: 15px; /* Space between price and button */
        padding-top: 15px;
    }
    .room-current-price { font-size: 1.6em; }
    .book-room-button { width: 100%; max-width: 250px; }

    .nearby-image-box img {
        height: 250px; /* Fixed height for image container on mobile for consistency */
        object-fit: cover;
    }
    .nearby-section:hover .nearby-image-box img { transform: scale(1); } /* No zoom on mobile hover */

    /* Experiences */
    .gr-orbital-experience-wrapper { height: auto; flex-direction: column; padding: 20px 0; perspective: none; }
    .gr-experience-card {
        position: relative !important;
        transform: none !important;
        opacity: 1 !important;
        margin-bottom: 30px;
        width: 95%;
        max-width: 380px;
        height: 250px;
        display: none; /* Hide non-active for mobile, managed by JS */
    }
    .gr-experience-card.is-active { display: flex; animation: grFadeIn 0.5s ease; }
    @keyframes grFadeIn { from { opacity: 0; } to { opacity: 1; } }
    .gr-experience-content-inner { transform: translateY(0); opacity: 1;}
    .gr-nav-arrow { transform: none; margin: 10px; }
    .gr-nav-arrow-wrapper { display: flex; justify-content: center; } /* Add a wrapper in HTML for this to work */

    /* Video Section */
    .gr-video-section { height: 400px; }
    .gr-video-content h2 { font-size: 2.5em; }

    /* Footer */
    .gr-footer-content { grid-template-columns: 1fr 1fr; }
    .gr-footer-col.gr-about-col { grid-column: 1 / -1; }

    /* Gallery */
    .gr-gallery-masonry { grid-template-columns: repeat(2, 1fr); }
    .gr-gallery-item--tall, .gr-gallery-item--wide {
        grid-column: span 1;
        grid-row: span 1;
        aspect-ratio: 1/1; /* Square for most on smaller screens */
    }
    .gr-preview-content { max-width: 90%; }
    .gr-close-btn { top: 20px; right: 20px; font-size: 30px; }
    .gr-nav-btn { width: 50px; height: 50px; font-size: 30px; }
    .gr-prev-btn { left: 15px; }
    .gr-next-btn { right: 15px; }
}

@media (max-width: 768px) {
    .gr-section-heading h2 { font-size: 2.5em; }
    .gr-section-heading p { font-size: 1em; }

    .slide-content { text-align: center; max-width: 90%; left: 45%; top: 20%; transform: translate(-50%, -50%); padding: 0;}
    .slide-content h1 { font-size: 2.5em; }

    .gr-about-section { margin-top: -100px; }
    .gr-about-images { height: 380px; }
    
    .gr-video-content .gr-play-btn { width: 80px; height: 80px; font-size: 2.5em; }

    .gr-gallery-masonry { padding: 10px; }
    .gr-preview-content img { max-width: 100%; }

    .gr-footer-content { grid-template-columns: 1fr; text-align: center;}
    .gr-footer-col h3::after { left: 50%; transform: translateX(-50%); }
    .gr-social-links { justify-content: center; }

    /* Hero section padding adjusted */
    .hero-slider-section { padding-bottom: 80px; }
    .booking-panel { padding: 30px; }
    .booking-panel h3 { font-size: 1.8rem; }
    .booking-panel .offer { font-size: 0.95rem; padding: 8px 15px; }
    .booking-panel label { font-size: 0.9rem; }
    .booking-panel input, .booking-panel select { padding: 14px 16px; font-size: 1rem; }
    .btn-action { font-size: 1.15rem; padding: 16px 0; }
}

@media (max-width: 576px) {
    .gr-container { padding: 0 15px; }

    /* Hero */
    .hero-slider-section { margin-top: 55px; }
    .slide-content { padding: 20px 15px; }
    .slide-content h1 { font-size: 2rem; }
    .slide-content p { font-size: 0.95rem; }
    .btn-primary { padding: 12px 25px; font-size: 0.95rem; border-radius: 6px; }
    .hero-slide { height: 50vh; min-height: 380px; }
    .slide-nav-dots-container { bottom: 10px; gap: 10px; }
    .slide-nav-dots-container .dot { width: 10px; height: 10px; }
    .booking-panel { 
        padding: 25px; 
        margin: 30px auto 0 auto; 
        width: 95%; 
        max-width: none; 
    }
    .booking-panel h3 { font-size: 1.6rem; }
    .booking-panel .offer { font-size: 0.85rem; padding: 6px 12px; }

    .gr-about-images { height: 300px; }
    
    .gr-amenities-items-container {
        grid-template-columns: 1fr; /* 1 column for mobile */
    }
    .gr-amenity-item {
        height: auto; /* allow height to adjust to content on small screens */
    }
    
    .nearby-content-container { padding: 0 15px; }
    .main-room-section-header h2 { font-size: 2em; }
    .main-room-description { font-size: 0.9em; }
    .nearby-list-box { padding: 20px; }
    .nearby-section-headline { font-size: 1.6em; }
    .room-price-and-btn { padding-top: 10px; }
    .room-current-price { font-size: 1.4em; }
    .book-room-button { padding: 10px 20px; font-size: 0.9em; }
    .nearby-image-box img { height: 200px; }

    .gr-gallery-item { height: 180px; } /* Adapt height for very small screens */
    .gr-explore-gallery-btn { font-size: 1em; padding: 14px 28px; }

    .gr-video-content h2 { font-size: 2em; }
    
    /* Adjust for very small screens (portrait tablet/large phone) */
    @media (max-height: 600px) {
        .hero-slide {
            min-height: 400px;
            height: 100vh; /* ensure it uses full viewport height if content allows */
        }
        .booking-panel {
            margin-top: 20px;
            padding: 20px;
        }
    }
}


/* Extra small devices (phones, 400px and down) */
@media (max-width: 400px) {
    .slide-content h1 { font-size: 1.8rem; }
    .slide-content p { font-size: 0.9rem; }
    .btn-primary { padding: 10px 20px; font-size: 0.9rem; }
    
    .booking-panel {
        padding: 20px 15px;
    }
    .booking-panel h3 { font-size: 1.4rem; }
    .booking-panel .offer { font-size: 0.8rem; }
    .btn-action { font-size: 1rem; padding: 12px 0; }
}

.back-to-top {
            position: fixed;
            right: 15px;
            bottom: 15px;
            z-index: 996;
            background: var(--brand-red); /* Using global brand-red */
            width: 40px;
            height: 40px;
            border-radius: 4px;
            transition: all 0.4s;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }
        .back-to-top.active {
            visibility: visible;
            opacity: 1;
        }
        .back-to-top:hover {
            background: var(--dark-gold); /* Using global dark-gold */
        }
        .back-to-top em {
            color: white;
            font-size: 24px;
        }









        /* Scoped styles for premium amenities */
    .amenities-section-mod {
        --primary-color: #c63332;
        --secondary-color: #feda44;
        --accent-color: #c63332;
        --text-color: #333;
        --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        --transition: all 0.3s ease;
        
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .amenities-section-mod * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .amenities-section-mod .section-container {
        margin: 0 auto;
        padding: 0 20px;
    }

    .amenities-section-mod .section-title {
        text-align: center;
        margin-bottom: 70px;
        font-size: 3rem;
        color: var(--primary-color);
        position: relative;
        display: inline-block;
        left: 50%;
        transform: translateX(-50%);
        margin-top: -20px;
    }

    .amenities-section-mod .section-title::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        border-radius: 2px;
    }

    .amenities-section-mod .amenity-container {
        display: flex;
        align-items: stretch;
        margin-bottom: 80px;
        gap: 40px;
        position: relative;
        min-height: 500px;
    }

    .amenities-section-mod .text-container {
        flex: 1;
        padding: 50px;
        border-radius: 15px;
        box-shadow: var(--shadow);
        transition: var(--transition);
        z-index: 2;
        flex-direction: column;
        justify-content: center;
    }

    .amenities-section-mod .text-container:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .amenities-section-mod .image-container {
        flex: 1;
        min-height: 500px;
        border-radius: 15px;
        box-shadow: var(--shadow);
        position: relative;
        overflow: hidden;
    }

    .amenities-section-mod .image-scroller {
        position: absolute;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .amenities-section-mod .amenity-title {
        font-size: 2rem;
        margin-bottom: 25px;
        color: var(--primary-color);
        position: relative;
        padding-bottom: 15px;
    }

    .amenities-section-mod .amenity-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: var(--secondary-color);
    }

    .amenities-section-mod .amenity-list {
        list-style-type: none;
    }

    .amenities-section-mod .amenity-list li {
        padding: 12px 0;
        font-size: 1.2rem;
        color: var(--text-color);
        position: relative;
        padding-left: 40px;
        transition: var(--transition);
    }

    .amenities-section-mod .amenity-list li::before {
        content: "•";
        position: absolute;
        left: 15px;
        color: var(--secondary-color);
        font-size: 1.5rem;
    }

    @media (max-width: 1200px) {
        .amenities-section-mod .amenity-container {
            gap: 30px;
            min-height: 450px;
        }
    }

    @media (max-width: 768px) {
        .amenities-section-mod .amenity-container {
            flex-direction: column;
            min-height: 800px;
        }
        
        .amenities-section-mod .image-container,
        .amenities-section-mod .text-container {
            width: 100%;
            min-height: 400px;
        }
    }





    /* Main Amenities Section (Roosevelt Specific) */
.roosevelt-amenities {
    --primary-text-color: #c63332;
    --secondary-text-color: #555;
    --accent-color: #feda44; /* Goldenrod - Local to Roosevelt section */
    --light-bg-color: #f9f8f4;
    --card-bg-color: #fff;
    --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;
    
    width: 100%;
    padding: 2rem 0;
    box-sizing: border-box; 
}

.roosevelt-amenities-container {
    width: 100%;
    max-width: 1280px; /* Slightly wider container */
    margin: 0 auto;
    padding: 0 2rem;
}

/* New Grid Container for Categories */
.roosevelt-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)); /* 2 columns for wider screens */
    gap: 3rem; /* Spacing between grid items (category cards) */
}

/* Individual Category Section (now a grid item) */
.roosevelt-category-section {

    padding: 2.5rem; /* Padding inside each category card */
    display: flex; /* Flexbox for internal stacking of title, image, features */
    flex-direction: column;
    align-items: center; /* Center items horizontally within the card */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center; /* Center text within the card */
    overflow: hidden; /* Ensures border-radius cuts content correctly */
}

.roosevelt-category-section:hover {
    transform: translateY(-8px); /* Lift effect on hover */
    box-shadow: var(--shadow-medium); /* Stronger shadow on hover */
}

/* Category Title */
.roosevelt-category-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem; 
    color: var(--primary-text-color);
    margin-top: 0; /* Reset default margin */
    margin-bottom: 1.5rem; 
    position: relative;
    font-weight: 700;
    width: 100%; /* Ensures title takes full width in column */
}

.roosevelt-category-title:after {
    content: '';
    display: block;
    width: 80px; /* Shorter line */
    height: 4px; /* Thicker line */
    background: var(--accent-color);
    margin: 0.8rem auto 0; /* Adjust margin below title */
    border-radius: 2px;
}

/* Category Image Block */
.roosevelt-category-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency in grid */
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 2rem; /* Spacing between image and features */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); /* Slight shadow for image itself */
}

.roosevelt-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1); 
}

.roosevelt-category-image:hover img {
    transform: scale(1.08); 
}

/* Features Grid (Column Holder) - now the content section of the card */
.roosevelt-amenities-features-grid {
    width: 100%;
}

.roosevelt-amenities-feature-column {
    padding: 0; /* Remove padding as the main category-section has padding */
    background: none; /* Remove background, main card has it */
    box-shadow: none; /* Remove shadow, main card has it */
    border-top: none; /* Remove border, this is for inner columns if multiple existed */
    border-radius: 0; /* Remove border-radius */
}

.roosevelt-amenities-feature-column:hover {
    transform: none; /* Disable transform on inner column */
    box-shadow: none; /* Disable shadow on inner column */
}

/* Feature List */
.roosevelt-amenities-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left; /* Align feature list items to the left */
}

.roosevelt-amenities-feature-list li {
    padding: 1rem 0; /* Padding for each list item */
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(184, 134, 11, 0.2); 
    transition: all 0.3s ease-in-out;
}

.roosevelt-amenities-feature-list li:hover {
    background-color: rgba(184, 134, 11, 0.05); 
    padding-left: 15px; 
}

.roosevelt-amenities-feature-list li:last-child {
    border-bottom: none;
}

.roosevelt-amenities-feature-icon {
    color: var(--accent-color);
    margin-right: 1.5rem; 
    font-size: 1.6rem; 
    min-width: 28px; 
    text-align: center;
}

.roosevelt-amenities-feature-text {
    color: var(--secondary-text-color); 
    font-size: 1.15rem; 
    font-weight: 500;
}

/* The divider is removed as grid gaps provide separation */
.roosevelt-amenities-divider {
    display: none; 
}

/* Responsive adjustments */
@media (max-width: 1280px) {
    .roosevelt-amenities-container {
        padding: 0 1.5rem;
    }
    .roosevelt-category-title {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .roosevelt-amenities {
        padding: 4rem 0;
    }
    .roosevelt-categories-grid {
        grid-template-columns: 1fr; /* Stack into a single column */
        gap: 2.5rem;
    }
    .roosevelt-category-section {
        padding: 2rem;
    }
    .roosevelt-category-image {
        height: 220px; /* Adjust height when stacked */
        margin-bottom: 1.5rem;
    }
    .roosevelt-category-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .roosevelt-amenities-container {
        padding: 0 1rem;
    }
    .roosevelt-category-section {
        padding: 1.8rem;
    }
    .roosevelt-category-image {
        height: 200px;
    }
    .roosevelt-category-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    .roosevelt-amenities-feature-list li {
        padding: 0.8rem 0;
    }
    .roosevelt-amenities-feature-icon {
        font-size: 1.4rem;
        min-width: 24px;
        margin-right: 1rem;
    }
    .roosevelt-amenities-feature-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .roosevelt-amenities {
        padding: 3rem 0;
    }
    .roosevelt-categories-grid {
        gap: 2rem;
    }
    .roosevelt-category-section {
        padding: 1.5rem;
    }
    .roosevelt-category-title {
        font-size: 1.5rem;
    }
    .roosevelt-category-title:after {
        width: 50px;
        height: 3px;
        margin-top: 0.5rem;
    }
    .roosevelt-category-image {
        height: 180px;
        margin-bottom: 1rem;
    }
}


/* Location Section */
.location-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.location-info {
  flex: 1;
  min-width: 300px;
}

.coordinates-box {
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(1, 72, 134, 0.1);
  border: 1px solid rgba(1, 72, 134, 0.1);
}

.coordinates-box h3 {
  margin-top: 0;
  margin-bottom: 15px;
  color: var(--brand-red); /* Using global brand-red */
  font-size: 1.4rem;
  font-weight: 600;
}

.coordinate {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 12px;
  font-size: 1.05rem;
}

.coordinate i {
  color: var(--dark-gold); /* Using global dark-gold */
  font-size: 1.2rem;
}

.directions-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(1, 72, 134, 0.1);
  border: 1px solid rgba(1, 72, 134, 0.1);
}

.directions-form label {
  font-weight: 600;
  color: var(--brand-red); /* Using global brand-red */
  font-size: 1.05rem;
}

.directions-form input {
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  width: 100%;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.directions-form input:focus {
  outline: none;
  border-color: var(--brand-red); /* Using global brand-red */
  box-shadow: 0 0 0 3px rgba(1, 72, 134, 0.2);
}

.directions-form button {
  background: var(--brand-red); /* Using global brand-red */
  color: white;
  border: none;
  padding: 14px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.directions-form button:hover {
  background: var(--dark-gold); /* Using global dark-gold */
  transform: translateY(-2px);
}

.location-map {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(1, 72, 134, 0.1);
  border: 1px solid rgba(1, 72, 134, 0.1);
  transition: transform 0.3s ease;
}

.location-map:hover {
  transform: translateY(-5px);
}

.location-map img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .location-content {
    flex-direction: column;
  }
  
  .location-info, .location-map {
    width: 100%;
  }
}



/* Contact Section */
.content-wrapper {
    display: flex;
    gap: 30px;
    margin: 0 auto;
    padding: 20px;
}

.contact-card {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: slideUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
    transform: translateY(20px);
    height: 450px;
}

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-card h2 {
    color: var(--brand-red); /* Using global brand-red */
    margin-bottom: 25px;
    font-size: 1.8rem;
    position: relative;
    text-align: center;
}

.contact-card h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--dark-gold); /* Using global dark-gold */
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item i {
    color: var(--dark-gold); /* Using global dark-gold */
    font-size: 1.5rem;
    margin-right: 15px;
    min-width: 24px;
    text-align: center;
}

.info-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--brand-red); /* Assuming var(--hampton-blue) meant to use a main brand color here */
}

.info-text p, .info-text a {
    font-size: 1.1rem;
    color: #000000;
    text-decoration: none;
    transition: color 0.3s;
}

.info-text a:hover {
    color: var(--brand-red); /* Assuming var(--hampton-blue) meant to use a main brand color here */
    text-decoration: underline;
}

.map-container {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: slideUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
    transform: translateY(20px);
    height: 450px;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }
    
    .contact-card, .map-container {
        width: 100%;
        height: auto;
    }
    
    .map-container {
        height: 350px;
    }
}







/* 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: #333;
    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 #e0e0e0;
    height: 120px; /* Fixed height for rectangular format */
}

#hotel-navigation-section .nav-link:hover {
    background: var(--brand-red); /* Using global brand-red */
    color: white;
    box-shadow: 0 8px 16px rgba(0, 98, 204, 0.2);
    transform: translateY(-3px);
}

#hotel-navigation-section .nav-icon {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--dark-gold); /* Using global dark-gold */
    transition: all 0.3s ease;
}

#hotel-navigation-section .nav-link:hover .nav-icon {
    color: white;
    transform: scale(1.1);
}

#hotel-navigation-section .nav-text {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}

#hotel-navigation-section .nav-desc {
    font-size: 13px;
    opacity: 0.8;
    line-height: 1.4;
}

/* Responsive styles */
@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;
    }
}





.faq-section {
    margin: 20px auto;
    padding: 0 20px;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h2 {
    color: var(--brand-red); /* Using global brand-red */
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.faq-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--brand-red), var(--dark-gold)); /* Using global variables */
    border-radius: 2px;
}

.faq-header p {
    color: black;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 25px;
}

.faq-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border-top: 4px solid var(--brand-red); /* Using global brand-red */
}

.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: var(--dark-gold); /* Using global dark-gold */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 18px;
}

.faq-question-text {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.faq-answer {
    padding: 25px;
    position: relative;
}

.faq-answer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    right: 25px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--brand-red), transparent); /* Using global brand-red */
}

.faq-answer p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.faq-answer a {
    color: var(--brand-red); /* Using global brand-red */
    font-weight: 600;
    text-decoration: none !important;
}

.faq-answer a:hover {
    color: var(--dark-gold); /* Using global dark-gold */
    border-bottom-color: var(--dark-gold);
}

.faq-answer .fa-caret-right {
    color: var(--dark-gold); /* Using global dark-gold */
    margin-right: 8px;
}

@media (max-width: 600px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-header h2 {
        font-size: 28px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-answer {
        padding: 20px;
    }
}