﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Inter:wght@400;700;800;900&display=swap');

/* Reset & Base Layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  /* Montserrat is clean and professional for long reading */
  font-family: 'Montserrat', sans-serif;
  background-color: #f8f9fa; /* Slightly cleaner off-white to let the logo colors pop */
  color: #1a1a1a;
  line-height: 1.6;
}

/* Headings: Using Inter to match the Bold, Geometric logo text */
h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 400; /* Extra bold like "HomeStay" */
  text-transform: uppercase; /* Matching the all-caps "INN & SUITES" */
  letter-spacing: -0.02em; /* Tighter tracking for that modern premium feel */
  color: #2a3e83; /* Brand Navy Blue for headings */
}

/* --- Base Container to Layer Everything Correctly --- */
.hero-page-wrapper {
    position: relative;
    width: 100%;
    
}

/* --- Main Header Grid Layout (Layered on top) --- */
.hotel-header {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%); /* Centers the 1280px grid over the background slider */
    width: 1280px;
    max-width: 100%;
    padding: 25px 20px 0 20px;
    display: flex;
    align-items: flex-end;
    gap: 25px;
    z-index: 20; /* High index to sit safely above the slider images and captions */
    background: transparent;
}

/* Left Side: Logo Column */
.logo-column {
    background-color: #ffffff;
    padding: 10px 15px;
    border-radius: 4px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.property-logo {
    height: 80px;
    width: auto;
    display: block;
}

/* Right Side: Split Content Column */
.content-column {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 105px;
}

/* Top Action & Info Row */
.top-info-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-bottom: 15px;
    gap: 20px;
    flex-wrap: wrap; /* Keeps it responsive on smaller screens */
}

/* Address Box text rules (WCAG contrast protected) */
.header-address {
    color: #ffffff;
    font-size: 14px;
    background-color: rgba(0, 0, 0, 0.65); /* Ensures readable contrast over arbitrary slider images */
    padding: 8px 12px;
    border-radius: 4px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.89);
}

.header-call-wrapper {
    flex-shrink: 0;
}

/* --- Added Social Media Styles --- */
.header-socials {
    display: flex;
    gap: 10px;
    align-items: center;
}

.header-socials a {
    color: #ffffff;
    font-size: 16px;
    background-color: rgba(0, 0, 0, 0.45); /* Matches your address box style */
    width: 39px;
    height: 39px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

/* Subtle hover effect for interactivity */
.header-socials a:hover {
    background-color: rgba(0, 0, 0, 0.75);
    transform: translateY(-2px);
}

/* Call Button */
.header-call-btn {
    background-color: #3a3a3a;
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    
    display: inline-block;
    box-shadow: 0px 1px 3px rgba(0,0,0,0.3);
    transition: background-color 0.2s ease;
}

.header-call-btn:hover {
    background-color: #1a1a1a;
}

/* --- Navigation Strip --- */
.header-nav-bar {
    display: flex;
    background-color: #1D3375; /* Logo Blue */
    width: max-content;
    border-radius: 2px 2px 0 0;
    overflow: hidden;
}

.header-nav-item {
    color: #ffffff; 
    text-decoration: none; 
    padding: 12px 22px; 
    font-size: 13px; 
   
    text-transform: uppercase; 
    letter-spacing: 0.5px; 
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    transition: background-color 0.2s ease;
}

.header-nav-bar .active-nav {
    background-color: #A61D22; /* Logo Red */
}

.header-nav-item:hover:not(.active-nav) {
    background-color: #111e46;
}

.header-nav-bar .no-border {
    border-right: none;
}
/* --- Navigation Strip --- */
.header-nav-bar {
    display: flex;
    background-color: #1D3375; /* Logo Blue */
    width: max-content;
    border-radius: 2px 2px 0 0;
    overflow: hidden;
}

.header-nav-item {
    color: #ffffff; 
    text-decoration: none; 
    padding: 12px 22px; 
    font-size: 13px; 
    
    text-transform: uppercase; 
    letter-spacing: 0.5px; 
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    transition: background-color 0.2s ease;
}

.header-nav-bar .active-nav {
    background-color: #A61D22; /* Logo Red */
}

.header-nav-item:hover:not(.active-nav) {
    background-color: #111e46;
}

.header-nav-bar .no-border {
    border-right: none;
}

/* --- Mobile Menu Trigger Button (Hidden on Desktop) --- */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    justify-content: space-between;
    width: 74px;
    height: 36px;
    z-index: 100;
}

.hamburger-bar {
    display: block;
    width: 100%;
    height: 4px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 1px 3px rgba(0,0,0,0.5);
}

/* Hamburger Animation On Open Class */
.mobile-nav-toggle.open .hamburger-bar:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
}
.mobile-nav-toggle.open .hamburger-bar:nth-child(2) {
    opacity: 0;
}
.mobile-nav-toggle.open .hamburger-bar:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
}
/* --- Hero Slider Framework (Stretches across background) --- */
.hero-slider-container {
    position: relative;
    width: 100%;
    height: 700px; /* Slightly taller to frame both the overlapping header and nice imagery room */
    background-color: #000000;
    overflow: hidden;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    z-index: 1;
}

.hero-slide.active-slide {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Bottom-Right Title Badge --- */
.slide-caption {
    position: absolute;
    bottom: 25px;
    right: 40px;
    background-color: rgba(30, 30, 30, 0.85); 
    color: #ffffff;
    font-size: 14px;
 
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 18px;
    border-radius: 2px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.4);
    z-index: 5;
    pointer-events: none;
}

/* --- Navigation Arrow System --- */
.slider-btn {
    position: absolute;
    top: 55%; /* Shifted down slightly to stay clear of the layout elements above */
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    font-size: 24px;
    padding: 14px 18px;
    cursor: pointer;
    border-radius: 4px;
    z-index: 10;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.slider-btn:hover,
.slider-btn:focus {
    background-color: rgba(0, 0, 0, 0.85);
    border-color: #ffffff;
    outline: none;
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }
/* --- Content Overlay Panels Styles (WCAG Compliant) --- */
.hero-info-panel {
    position: absolute;
    bottom: 40px;
    right: 40px;
    max-width: 420px;
    /* Rich background mask ensures crisp AAA accessibility ratios over white or dark photos */
    background-color: rgba(15, 23, 42, 0.9); 
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
    z-index: 5;
    color: #ffffff;
    
}

.info-item .eyebrow {
    display: block;
    color: #ffcc00; /* Warm golden brand pop */
    font-size: 12px;
  
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.info-item .display-title {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 12px;
    text-transform: uppercase;
}

/* Accessible clean styling for special display classes */
.info-item .display-title .outline {
    color: #ffffff;
    font-weight: 400;
    opacity: 0.9;
}

.info-item p {
    font-size: 14px;
    line-height: 1.5;
    color: #e2e8f0;
    margin-bottom: 20px;
}

.expert-cta {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    background-color: #A61D22; /* Logo Red Accent */
    text-decoration: none;
    font-size: 13px;
        text-transform: uppercase;
    padding: 10px 18px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.expert-cta:hover {
    background-color: #7d1216;
}

.expert-cta .arrow {
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.expert-cta:hover .arrow {
    transform: translateX(4px);
}
/* ==========================================================================
   NEW RESPONSIVE MEDIA QUERIES (Fixes iPad and Mobile Views)
   ========================================================================== */

/* --- iPad / Tablet Viewports (max-width: 1024px) --- */
@media (max-width: 1024px) {
    .hero-slider-container {
        height: 550px; /* Scale container height down slightly */
    }

    .hero-info-panel {
        bottom: 30px;
        right: 30px;
        max-width: 360px; /* Slightly narrower profile for tablet sidebars */
        padding: 20px;
    }

    .info-item .display-title {
        font-size: 24px; /* Drop heading sizes safely */
    }
    
    .slider-btn {
        top: 50%; /* Re-center arrows visually */
        padding: 10px 14px;
        font-size: 20px;
    }
}

/* --- Mobile Viewports (max-width: 768px) --- */
@media (max-width: 768px) {
    .hero-slider-container {
        height: auto; /* Dynamic height adjustment */
        display: flex;
        flex-direction: column;
    }

    /* Keep the image window restricted and force content card underneath it */
    .hero-slide {
        position: relative;
        display: none;
        flex-direction: column;
        height: auto;
        opacity: 0;
        visibility: hidden;
    }
    
    .hero-slide.active-slide {
        display: flex;
        opacity: 1;
        visibility: visible;
    }

    .hero-slide img {
        height: 320px; /* Fixed viewport window for the photo asset on mobile */
    }

    /* Transform Absolute Box into a clean, relative content stack */
    .hero-info-panel {
        position: relative;
        bottom: 0;
        right: 0;
        max-width: 100%;
        width: 100%;
        padding: 25px 20px;
        border-radius: 0; /* Align flat against screen edges */
        background-color: #0f172a; /* Solid background card for absolute readability */
        box-shadow: none;
        text-align: center; /* Center typography accents for clean presentation layout */
    }

    .info-item .display-title {
        font-size: 22px;
    }

    .expert-cta {
        width: 100%;
        justify-content: center; /* Make CTA button full-width and touch-friendly */
    }

    /* Reposition arrow adjustments above the info box so they don't block text */
    .slider-btn {
        top: 160px; /* Lock vertically to the center center of the image area above */
        transform: translateY(-50%);
        padding: 8px 12px;
        font-size: 18px;
        background-color: rgba(0, 0, 0, 0.7);
    }

    .prev-btn { left: 10px; }
    .next-btn { right: 10px; }

    /* Hide redundant absolute captions to avoid cluttering small UI screens */
    .slide-caption {
        display: none;
    }
}
/* Responsiveness tweak for small screens */
@media (max-width: 768px) {
 
	/* Top Action & Info Row */
.top-info-row {
    display: none;
    
}
}
/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .hotel-header {
        position: relative; /* Returns header to normal block flow on mobile so it doesn't squish elements */
        left: 0;
        transform: none;
        width: 100%;
        background: #1D3375; /* Uses branding blue background color fallback for small viewports */
        padding: 15px 20px;
    }
	.content-column {
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        min-height: auto;
        gap: 20px;
        width: auto;
    }

    .top-info-row {
        margin-bottom: 0;
        width: auto;
    }

    .header-address {
        display: none; /* Hide long address line on small screens for visual clarity */
    }

    /* Reveal Hamburger Toggle */
    .mobile-nav-toggle {
        display: flex;
    }

    /* Transform Horizontal Navigation into an Accessible Slide-Down Drawer */
    .header-nav-bar {
        display: none; /* Controlled completely by JavaScript class injection */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        max-width: 100%;
        background-color: #1D3375;
        flex-direction: column;
        border-radius: 0;
        box-shadow: 0px 8px 16px rgba(0,0,0,0.3);
    }

    /* Active Visibility Trigger */
    .header-nav-bar.menu-open {
        display: flex;
    }

    .header-nav-item {
        width: 100%;
        padding: 15px 25px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 15px;
    }
}
}

@media (max-width: 768px) {
    .hotel-header {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .content-column {
        width: 100%;
        align-items: center;
        min-height: auto;
    }
    .top-info-row {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .header-nav-bar {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }
    .header-nav-item {
        flex: 1 1 auto;
        text-align: center;
        padding: 10px;
    }
   
	.header-call-btn {
        padding: 8px 12px;
        font-size: 13px;
    }
}

/* --- Accessibility Banner Styling --- */
.accessibility-assistance-row {
    width: 100%;
    background-color: #002244; /* Deep corporate brand navy blue ensures robust contrast foundation */
    padding: 18px 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.accessibility-container {
    width: 1280px;
    max-width: 100%;
    text-align: center;
}

/* Forces the sentence into a single row on desktop resolutions */
.accessibility-text {
    color: #ffffff; /* Crisp white for clean readability */
    
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    letter-spacing: 0.3px;
    white-space: nowrap; /* Forces text to sit strictly in one single row */
}

/* High Contrast Phone Link Element */
.accessibility-phone-link {
    color: #ffd700; /* Rich gold/yellow offers a stellar AAA contrast ratio against dark blue backgrounds */
    text-decoration: none;
    font-weight: 500;
    margin-left: 4px;
    display: inline-block;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

.accessibility-phone-link:hover,
.accessibility-phone-link:focus {
    color: #ffea60; /* Slightly brighter vivid yellow for dynamic hover feedback */
    text-decoration: underline;
    outline: none; /* Focus indicator managed visually via underline */
}

/* ==========================================================================
   RESPONSIVE DESIGN SYSTEM BREAKPOINTS
   ========================================================================== */

/* Tablet & Smaller Screens - Break the single row restriction gracefully to avoid overflow clipping */
@media (max-width: 1120px) {
    .accessibility-text {
        white-space: normal; /* Permits the text block to fold naturally onto a second line instead of running offscreen */
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .accessibility-assistance-row {
        padding: 15px 15px;
    }
    
    .accessibility-text {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .accessibility-phone-link {
        display: inline; /* Wrap closely inline on tiny mobile profiles */
        margin-left: 2px;
    }
}
/* --- Booking Bar Layout Framework --- */
.booking-bar-section {
    width: 100%;
    background-color: #fcfcfc;
    background-image: radial-gradient(#f0f0f0 0.5px, transparent 0.5px), radial-gradient(#f0f0f0 0.5px, #fcfcfc 0.5px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    padding: 35px 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #e2e8f0;
}

.booking-bar-container {
    width: 1280px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.booking-bar-title {
    color: #1D3375; 
    
    font-size: 26px;
    font-weight: 400;
    margin: 0 0 25px 0;
    text-align: center;
    letter-spacing: 0.5px;
}

.booking-bar-form {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    gap: 15px;
    flex-wrap: nowrap;
}

.booking-form-group {
    display: flex;
    flex-direction: column;
    flex: 2 1 200px;
}

.booking-group-small { flex: 1 1 80px; }
.booking-group-medium { flex: 1.2 1 110px; }
.booking-action-group { flex-shrink: 0; }

.booking-field-label {
    
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    margin-bottom: 6px;
    text-align: left;
}

/* --- Container for the input and calendar icon --- */
.input-icon-container {
    position: relative;
    width: 100%;
    cursor: pointer;
}

.booking-field-input {
    width: 100%;
    height: 42px;
    background-color: #fdfdfd;
    border: 1px solid #b8c2cc; 
    border-radius: 4px;
    padding: 0 12px;
    
    font-size: 14px;
    color: #2d3748;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* --- Expanded Area Hit Detection Modifications --- */
.custom-date-picker {
    cursor: pointer !important;
    position: relative;
    padding-right: 40px; /* Leave room for visual indicator */
}

/* Force native date picker trigger zones to expand across the entire spatial box layout */
.custom-date-picker::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    opacity: 0; /* Hidden but fully clickable over the entire element area */
    cursor: pointer;
}

/* Custom Visual Calendar Icon placed below the invisible click capture layer */
.calendar-custom-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #1D3375; /* Logo Blue color theme sync */
    font-size: 16px;
    pointer-events: none; /* Let clicks pass directly through to input layer */
}

.booking-field-input:focus {
    border-color: #1D3375;
    box-shadow: 0 0 0 3px rgba(29, 51, 117, 0.15);
}

.booking-submit-btn {
    height: 42px;
    background-color: #A61D22; 
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 0 28px;
    
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
    transition: background-color 0.2s ease;
}

.booking-submit-btn:hover { background-color: #851418; }

/* Responsive System Overrides */
@media (max-width: 1024px) {
    .booking-bar-form { flex-wrap: wrap; gap: 20px 15px; }
    .booking-form-group { flex: 1 1 calc(50% - 10px); }
    .booking-group-small, .booking-group-medium { flex: 1 1 calc(33.33% - 10px); }
    .booking-action-group { width: 100%; margin-top: 5px; }
    .booking-submit-btn { width: 100%; }
}

@media (max-width: 576px) {
    .booking-bar-section { padding: 25px 15px; }
    .booking-bar-title { font-size: 20px; margin-bottom: 20px; }
    .booking-form-group, .booking-group-small, .booking-group-medium { flex: 1 1 100%; }
}

/* --- Welcome Section Container Styles --- */
.welcome-section {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.welcome-container {
    width: 1280px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* Primary Section Header - Structured in Core Logo Blue (#1D3375) */
.welcome-main-heading {
    color: #1D3375;
    
    font-size: 32px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.welcome-main-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #A61D22; /* Logo Crimson Red Accent */
    border-radius: 2px;
}

/* --- Traditional Newspaper Text-Wrap Flow Engine --- */
.welcome-newspaper-flow {
    display: block; /* Overrides modern flex grids to allow true text-wrapping behavior */
    width: 100%;
}

/* Float the Video Content to the right exactly like the print asset image */
.welcome-video-block {
    float: right;
    width: 50%; /* Takes up exactly half the container row width on desktop */
    margin-left: 30px; /* Forces clear spacing gutter between text edges and video borders */
    margin-bottom: 15px; /* Ensures text flowing underneath doesn't smash into the video player */
}

/* Typography Paragraph Content Settings (WCAG Clean Balanced Black) */
.welcome-paragraph {
    
    font-size: 15px;
    line-height: 1.7;
    color: #333333;
    margin: 0 0 18px 0;
    text-align: justify; /* Force neat, formal block alignments like real newsprint columns */
}

.welcome-paragraph strong {
    color: #1D3375; /* Enhances semantic branding layout structure */
}

/* --- Smooth CSS Drawer Slide Transitions --- */
.welcome-drawer-collapsed {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1), opacity 0.4s ease;
}

.welcome-drawer-expanded {
    max-height: 2000px; /* High threshold allows hidden text blocks to open without breaking layout flow */
    opacity: 1;
    transition: max-height 0.6s cubic-bezier(1, 0, 1, 0), opacity 0.5s ease;
    margin-bottom: 15px;
}

/* High Contrast Yellow Expand Trigger Button styling */
.welcome-action-wrapper {
    display: block;
    margin-top: 15px;
    clear: left; /* Keeps button rendering cleanly near the text content flow */
}

.welcome-toggle-btn {
    background-color: #FFCC00; /* Gold/Yellow from logo dots */
    color: #111111; /* Jet Black ensures rock-solid AAA accessibility contrast ratio */
    border: none;
    border-radius: 4px;
    padding: 10px 24px;
    
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.welcome-toggle-btn:hover {
    background-color: #e5b800; /* Darker amber tint on hover states */
}

.welcome-toggle-btn:focus {
    outline: 3px solid #1D3375;
    outline-offset: 2px;
}

/* Responsive 16:9 Aspect Ratio Video Box Wrapper */
.video-aspect-ratio-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* Establishes true native 16:9 space grid bounding boxes */
    background-color: #000000;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.video-aspect-ratio-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================================================
   RESPONSIVE LAYOUT BREAKPOINTS
   ========================================================================== */

/* Tablet & iPad Viewport Adjustments */
@media (max-width: 992px) {
    .welcome-main-heading {
        font-size: 28px;
    }
    
    .welcome-video-block {
        width: 45%; /* Slightly shrinks video width footprint to allow text columns to breathe */
        margin-left: 20px;
    }
}

/* Mobile Screen Formatting Overrides (Drop floats to avoid squished text columns) */
@media (max-width: 768px) {
    .welcome-section {
        padding: 40px 15px;
    }

    .welcome-main-heading {
        font-size: 24px;
    }

    /* Clear the float completely so video stacks naturally above or between paragraphs on small phones */
    .welcome-video-block {
        float: none;
        width: 100%;
        margin-left: 0;
        margin-bottom: 25px;
    }

    .welcome-paragraph {
        font-size: 14px;
        line-height: 1.6;
        text-align: left; /* Left alignment is much easier to read on tight mobile screen margins */
    }
    
    .welcome-toggle-btn {
        width: 100%; /* Spans element full width to act as an accessible mobile tap target */
        text-align: center;
    }
}
/* --- Hotel Facilities Grid Styles --- */
.hotel-facilities-section {
    width: 100%;
    /* Elegant multi-stop linear gradient transitioning from logo corporate blue to logo brand crimson red */
    background: #1d3375;
    background: linear-gradient(135deg, #1D3375 0%, #152554 45%, #60181D 80%, #A61D22 100%);
    padding: 60px 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Optional fine overlay texture layer to enhance modern aesthetics slightly */
.hotel-facilities-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.03), transparent);
    pointer-events: none;
}

.facilities-container {
    width: 1280px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 45px;
    position: relative;
    z-index: 1;
}

/* Section Header Typography style */
.facilities-heading {
    color: #ffffff;
    
    font-size: 32px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
}

/* Fluid Row Flexbox Layout Blueprint mapping */
.facilities-icon-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: nowrap; /* Rigid standard horizontal grid strip structure on desktops */
    width: 100%;
    gap: 20px;
}

/* Individual Feature Grid Blocks configuration setup */
.facility-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 200px;
    text-align: center;
    padding: 15px 10px;
    box-sizing: border-box;
    border-radius: 8px;
   
   
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

/* Interactive card focus states */
.facility-card:hover {
    background-color: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px); /* Modern floating micro-movement */
}

/* Font Awesome Icon Box Controls layer rules */
.facility-icon-wrapper {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

/* Font Awesome Glyph Styling & High Contrast Drop Shadow styling */
.facility-icon-wrapper span {
    font-size: 74px;
    color: #ffffff;
    display: block;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
}

/* High Contrast Yellow Typography Labels (WCAG Balanced over the Logo Gradient Grid) */
.facility-label {
    color: #FFCC00; /* Signature Golden-Yellow Palette match from Logo circles */
    
    font-size: 18px;
  
    line-height: 1.35;
    margin: 0;
    letter-spacing: 0.4px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Secondary Meta Instructions styling rules */
.facility-sub-label {
    font-size: 13px;
    font-weight: normal;
    color: #ffffff; /* Sets sub-instructions to crisp contrast white for secondary layer depth split */
    opacity: 0.9;
}

/* ==========================================================================
   RESPONSIVE LAYOUT SYSTEM CONTROLS (Fixes Tablets, iPad & Mobile Views)
   ========================================================================== */

/* Tablet Optimization (iPad Air / Pro Breakpoints) */
@media (max-width: 992px) {
    .facilities-icon-grid {
        flex-wrap: wrap; /* Wraps fields smoothly to prevent truncation layout bugs on narrow windows */
        gap: 25px 20px;
    }
    
    .facility-card {
        flex: 1 1 calc(33.33% - 15px); /* Structured three-column layout variant setup across intermediate screen profiles */
    }
    
    .facilities-heading {
        font-size: 28px;
    }
}

/* Mobile Screen Formats (Responsive layout mapping controls for small smartphones) */
@media (max-width: 576px) {
    .hotel-facilities-section {
        padding: 45px 15px;
    }
    
    .facilities-heading {
        font-size: 24px;
    }
    
    .facilities-icon-grid {
        gap: 20px 10px;
    }
    
    .facility-card {
        flex: 1 1 calc(50% - 10px); /* Well-balanced double column layout array scales beautifully on compact viewports */
        padding: 12px 8px;
    }
    
    .facility-icon-wrapper {
        width: 55px;
        height: 55px;
        margin-bottom: 10px;
    }

    .facility-icon-wrapper span {
        font-size: 34px; /* Perfectly proportions glyph footprints downwards for smartphones */
    }
    
    .facility-label {
        font-size: 13px;
    }
}

/* --- Call to Action Promo Banner Section Layout Styles --- */
.booking-promo-banner {
    width: 100%;
    min-height: 580px; /* Generous height footprint to showcase the ambient stadium backdrop asset */
    /* Add your background asset picture path configuration below */
    background-image: url('../images/contact2.jpg'); 
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll; /* Clean, responsive-friendly movement layer configuration */
    display: flex;
    position: relative;
    box-sizing: border-box;
}

/* Fallback enhancement for high-end desktop displays supporting smooth viewport image panning */
@media (min-width: 1025px) {
    .booking-promo-banner {
        background-attachment: fixed; /* Parallax effect engine rule toggle */
    }
}

/* Semi-transparent protective brand overlay color layer matrix */
.promo-banner-overlay {
    width: 100%;
    padding: 60px 20px;
    background-color: rgba(0, 0, 0, 0.25); /* Prevents image details from clashing with the central panel */
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

/* Central Framed Content Block Panel with Logo Blue Transparent Profile Mapping */
.promo-message-box {
    width: 1080px;
    max-width: 100%;
    background-color: rgba(29, 51, 117, 0.85); /* Exact Logo Navy Blue formulated with 85% opacity layer grid */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 50px 40px;
    box-sizing: border-box;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    backdrop-filter: blur(4px); /* Modern soft-focus background filter */
}

/* High Contrast Title Typography Styles (White Text Configuration Match) */
.promo-message-text {
    color: #ffffff;
   
    font-size: 26px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* High Contrast Yellow Call to Action Button Core Setup (Strict AAA Usability Match) */
.promo-action-btn {
    display: inline-block;
    background-color: #FFCC00; /* Signature Logo Golden-Yellow Accent */
    color: #111111; /* Rich dark body charcoal yields maximum accessibility visibility over yellow background */
   
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    text-transform: capitalize;
    padding: 12px 36px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}

/* Interactive Action Button Focus Rules */
.promo-action-btn:hover {
    background-color: #e5b800; /* Subtle warm amber depth color tint shift */
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

.promo-action-btn:active {
    transform: translateY(0);
}

/* Keyboard accessibility outline safety */
.promo-action-btn:focus {
    outline: 3px solid #ffffff;
    outline-offset: 2px;
}

/* ==========================================================================
   RESPONSIVE LAYOUT SYSTEM CONTROLS (Fixes Tablets, iPad & Mobile Views)
   ========================================================================== */

/* Tablet Optimization (Intermediate Viewport Configurations) */
@media (max-width: 992px) {
    .booking-promo-banner {
        min-height: 400px;
    }

    .promo-message-box {
        padding: 40px 30px;
        gap: 20px;
    }

    .promo-message-text {
        font-size: 22px;
        letter-spacing: 0.5px;
    }
}

/* Mobile Smartphone Layout Overrides */
@media (max-width: 576px) {
    .booking-promo-banner {
        min-height: 340px;
    }

    .promo-banner-overlay {
        padding: 30px 15px;
    }

    .promo-message-box {
        padding: 35px 20px;
        gap: 22px;
    }

    .promo-message-text {
        font-size: 17px;
        line-height: 1.45;
        letter-spacing: 0px;
    }

    .promo-action-btn {
        width: 100%; /* Spans button container full width to optimize safe mobile tap handling fields */
        box-sizing: border-box;
        text-align: center;
        padding: 14px 20px; /* Enhanced vertical click-height profile spacing */
        font-size: 16px;
    }
}
/* --- Root Footer Structure & Background Layout Styles --- */
.site-main-footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

/* Master gradient section matching the hotel facilities background configuration profile */
.footer-top-gradient-container {
    width: 100%;
    background: #1d3375;
    background: linear-gradient(135deg, #1D3375 0%, #152554 45%, #60181D 80%, #A61D22 100%);
    padding: 50px 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.footer-grid-wrapper {
    width: 1280px;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

/* Base column layouts rules matching the target directory presentation format */
.footer-grid-column {
    flex: 1 1 22%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

/* Clear Column Header styles with signature high contrast brand gold text colors */
.footer-column-heading {
    color: #FFCC00; /* Signature Golden Yellow Palette Accent from Property Logo circles */
  text-decoration:none;
    font-size: 25px;
    font-weight: 400;
    margin: 0 0 20px 0;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.social-heading-margin {
    margin-top: 25px;
}

/* Clean Unordered Navigation Link styling controls */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list li a {
    color: #ffffff;
   
    font-size: 18px;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}

.footer-links-list li a:hover {
    color: #FFCC00;
    padding-left: 4px; /* Micro UI interaction response cue */
}

/* Address and Info block components settings rules */
.footer-property-address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.address-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0;
    color: #ffffff;
 
    font-size: 18px;
    line-height: 1.4;
}
.gen {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0;
    color: #ffffff;
 
    font-size: 15px;
    line-height: 1.4;
}
/* Container for the footer contact info */
.footer-contact-info {
    color: rgba(255, 255, 255, 0.85); /* Clean, high-contrast light grey/white */
    font-size: 16px;
    line-height: 1.6;
  
}

/* Styles the phone number line wrapper */
.footer-contact-info .phone-wrapper {
    margin-top: 8px;
}

/* Forces the link to inherit the same nice color instead of default blue */
.footer-contact-info a.cgsl {
    color: rgba(255, 255, 255, 0.85); 
    text-decoration: underline; /* Keeps it clear that it's a clickable link */
    transition: color 0.2s ease;
	 text-decoration:none;
}

/* Subtle hover effect for the phone link */
.footer-contact-info a.cgsl:hover {
    color: #ffffff; /* Turns bright white on hover */
}
.address-detail-row span {
    color: #FFCC00;
    font-size: 18px;
    margin-top: 2px;
    width: 16px;
    text-align: center;
}

.address-detail-row a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.address-detail-row a:hover {
    color: #FFCC00;
}

/* Policy and operations layout guidelines configuration */
.footer-policy-hours {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-policy-hours p {
    margin: 0;
    color: #ffffff;
  
    font-size: 17px;
}

.footer-policy-hours strong {
    color: #FFCC00;
    font-weight: 400;
}

/* Font Awesome round social icon link badges layout */
.footer-social-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-social-row a {
    width: 36px;
    height: 36px;
    background-color: #FFCC00; /* Vibrant high visibility yellow button circles matching original asset */
    color: #111111; /* Clean high contrast dark charcoal glyph placement */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.footer-social-row a span {
    font-size: 16px;
}

.footer-social-row a:hover {
    background-color: #ffffff;
    color: #1D3375; /* logo core branding color toggle trigger */
    transform: translateY(-3px);
}

/* --- Bottom Compliance / Legal Strip Styles Bar rules --- */
.footer-bottom-compliance-bar {
    width: 100%;
    background-color: #2D2D2D; 
    padding: 25px 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.compliance-content-container {
    width: 1280px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px; /* Adds clean spacing between paragraphs */
}

.ownership-disclaimer {
    margin: 0;
    font-size: 15px;
    color: #ffffff;
    line-height: 1.4;
    letter-spacing: 0.2px;
}

/* FIX: Forces the entire credits sentence to stay inline and flow naturally */
.credit-disclaimer {
    margin: 0;
    font-size: 15px;
    color: #ffffff;
    line-height: 1.4;
    letter-spacing: 0.2px;
    display: block; 
    width: 100%;
}

/* Prevents links from breaking into separate lines internally */
.credit-disclaimer a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    white-space: nowrap; /* Keeps 'Hotel Website Design' on one line */
    display: inline-block;
}

.credit-disclaimer a:hover {
    color: #FFCC00;
    text-decoration: underline;
}

.credit-disclaimer .gen {
    color: #ffffff;
    font-weight: 400;
    display: inline-block;
    padding: 0 4px; /* Gives nice spacing around 'and' and 'by' */
}

/* Legal Links Row formatting */
.legal-links-row {
    margin-top: 4px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.legal-links-row a {
    color: #FFCC00; 
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.legal-links-row a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.divider-pipe {
    color: #fff; /* Darkened from #555555 to achieve a > 4.5:1 contrast ratio against light backgrounds */
    font-size: 12px;
    user-select: none;
}
/* ==========================================================================
   RESPONSIVE LAYOUT SYSTEM CONTROLS (Optimized with 2-Column Quick Links)
   ========================================================================== */

/* Tablet & iPad Optimization (Medium Viewports) */
@media (max-width: 992px) {
    .footer-top-gradient-container {
        padding: 40px 30px;
    }

    /* Outer layout: Main footer sections stack into a clean 2-column layout */
    .footer-grid-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr); 
        gap: 40px 30px;
    }

    .footer-grid-column {
        flex: none; 
        width: 100%;
    }

    /* Crucial Fix: If Column 2 was just a continuation of links, 
       we remove the forced hidden heading logic to keep text aligned properly */
    .footer-grid-column:nth-child(2) .footer-column-heading {
        display: block;
        visibility: visible;
        height: auto;
        margin-bottom: 20px;
    }
}

/* Mobile Smartphone Optimization (Small Viewports) */
@media (max-width: 600px) {
    .footer-top-gradient-container {
        padding: 40px 20px;
    }

    /* Outer layout: Main sections stack vertically to prevent cramped text boxes */
    .footer-grid-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        gap: 35px 0;
    }

    .footer-grid-column {
        flex: none;
        width: 100%;
        align-items: center;  
        text-align: center;   
    }

    /* Creates horizontal lines to cleanly separate stacked sections on mobile */
    .footer-grid-column:not(:first-child) {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 25px;
    }

    /* ----------------------------------------------------------------------
       THE 2-COLUMN QUICK LINKS SYSTEM
       ---------------------------------------------------------------------- */
    .footer-links-list {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important; /* Splitting the link list itself into 2 columns */
        gap: 12px 20px !important; 
        width: 100%;
        max-width: 320px; /* Restricts width so links stay grouped near the center */
        margin: 0 auto;   /* Centers the entire 2-column link block */
        padding: 0;
        text-align: left; /* Keeps the text left-aligned inside their grid slots */
    }

    /* Ensure text links don't wrap awkwardly when forced side-by-side */
    .footer-links-list li {
        width: 100%;
    }

    .footer-links-list li a:hover {
        padding-left: 0; /* Disables side padding animation on mobile touch targets */
    }

    /* ----------------------------------------------------------------------
       Address, Policies, and Socials Layout Resets
       ---------------------------------------------------------------------- */
    .footer-property-address,
    .footer-policy-hours {
        align-items: center;
        width: 100%;
    }

    .address-detail-row {
        justify-content: center;
        text-align: center;
    }

    /* Bottom Compliance Strip Bar Layout Alignments */
    .footer-bottom-compliance-bar {
        padding: 25px 20px;
    }

    .compliance-content-container {
        width: 100%;
    }

    .ownership-disclaimer, 
    .credit-disclaimer {
        font-size: 13px;
        line-height: 1.5;
    }

    /* Stacks compliance documents perfectly on narrow mobile screens */
    .legal-links-row {
        flex-direction: column;
        gap: 12px;
        margin-top: 15px;
        width: 100%;
    }

    .legal-links-row a {
        font-size: 14px;
        display: block;
        width: 100%;
    }

    /* Hide the divider pipes once the layout is stacked vertically */
    .divider-pipe {
        display: none;
    }
}

/* --- Inner Page Hero Section Styles --- */
.inner-hero-section {
    position: relative;
    width: 100%;
    height: 520px; /* Perfect height balance for desktop inner page headers */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Forces the HTML image to act like a full-bleed cover background */
.inner-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

/* Semi-transparent dark overlay matching your homepage aesthetic */
.inner-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(16, 28, 54, 0.65), rgba(45, 17, 30, 0.45));
    z-index: 2;
}

/* Holds the text layers neatly centered inside a faded, blurred backdrop card structure */
.inner-hero-container {
    position: relative;
    z-index: 3;
    width: 840px; /* Constrained width so the backdrop card wraps tightly and looks clean */
    max-width: 90%; /* Responsive fallback for smaller screens */
    margin: 0 auto;
    
    /* Card Faded Blur Properties */
    background: rgba(16, 28, 54, 0.45); /* Elegant faded tint based on your brand palette */
    backdrop-filter: blur(12px); /* High-fidelity background glass blurring effect */
    -webkit-backdrop-filter: blur(12px); /* Seamless Safari engine rendering support */
    
    /* Card Border & Shadow Details */
    border: 1px solid rgba(255, 255, 255, 0.12); /* Subtle edge glow */
    border-radius: 16px; /* Smooth rounded card frame corners */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25); /* Lift effect over background frame */
    
    padding: 40px 30px; /* Spacious frame buffer around content text lines */
    box-sizing: border-box;
    text-align: center;
}

/* Clean, crisp header styling */
.inner-hero-title {
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 14px 0;
    letter-spacing: 1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3); /* Softened text-shadow since background card handles contrast */
}

/* Breadcrumbs section for visual navigation and SEO health */
.inner-hero-breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.inner-hero-breadcrumbs a {
    color: #FFCC00; /* Matching your brand accent gold color */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.inner-hero-breadcrumbs a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
    user-select: none;
}

.breadcrumb-current {
    color: #ffffff;
    font-weight: 400;
}

/* Mobile Responsive Optimization adjustments */
@media (max-width: 768px) {
    .inner-hero-container {
        padding: 25px 20px;
    }
    .inner-hero-title {
        font-size: 30px;
        margin-bottom: 10px;
    }
}

/* Responsive adjustments for mobile phone viewports */
@media (max-width: 768px) {
    .inner-hero-section {
        height: 220px; /* Shorter header footprint on small mobile panels */
    }
    
    .inner-hero-title {
        font-size: 28px;
    }
}
/* --- Amenities Page Content Presentation Grid Layout --- */
.amenities-display-section {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 20px;
    box-sizing: border-box;
   
}

.amenities-container {
    width: 1280px;
    max-width: 100%;
    margin: 0 auto;
}

/* Header Text Rules */
.amenities-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.amenities-main-title {
    color: #101C36; /* Dark blue matching your layout brand identity */
    font-size: 45px;
    font-weight: 400;
    margin: 0 0 16px 0;
    position: relative;
    padding-bottom: 12px;
}

/* Small visual decorative bar below title matching your brand style */
.amenities-main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #B30006; /* Elegant primary brand dark red/burgundy line link */
}

.amenities-main-desc {
    color: #000;
    font-size: 18px;
    line-height: 1.6;
    max-width: 1280px;
    margin: 0 auto;
}

/* Highlights Box Row styles */
.amenities-highlights-bar {
    background: linear-gradient(135deg, #101C36, #2D111E); /* Matches your homepage visual header hero styles gradient block */
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.highlight-title {
    color: #FFCC00; /* Distinct brand color accent yellow link formatting */
    font-size: 22px;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.highlight-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 25px;
}

.highlight-badges span {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.highlight-badges span {
    color: #FFCC00;
}

/* Core Multi-Column Amenities Grid Component */
.amenities-grid-system {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Perfect Equal Columns on Wide Screens */
    gap: 30px;
}

/* Card Component Formatting Rules */
.amenity-category-card {
    background-color: #fcfcfc;
    border: 1px solid #eef0f3;
    border-top: 4px solid #101C36; /* Clean crisp dark blue top edge accents */
    border-radius: 6px;
    padding: 25px;
    box-sizing: border-box;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.amenity-category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* Highlight Pet Policy box with subtle brand red border accent styling */
.amenity-category-card.policy-card {
    border-top-color: #B30006;
}

.card-title-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    border-bottom: 1px solid #eef0f3;
    padding-bottom: 10px;
}

.card-title-wrapper span {
    font-size: 20px;
    color: #B30006; /* Clean brand red/burgundy tone for vectors */
}

.card-title-wrapper  {
    margin: 0;
    color: #101C36;
    font-size: 22px;
    font-weight: 400;
}

.amenity-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.amenity-list li {
    color: #444444;
    font-size: 17px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.amenity-list li span {
    color: #888888;
    font-size: 14px;
    margin-top: 2px;
    width: 16px;
    text-align: center;
}

/* Responsive Adaptive Viewport Layout Changes */
@media (max-width: 992px) {
    .amenities-grid-system {
        grid-template-columns: repeat(2, 1fr); /* Snaps down cleanly to 2 columns on tablets */
    }
}

@media (max-width: 768px) {
    .amenities-grid-system {
        grid-template-columns: 1fr; /* 1 Column single linear grid layout flow on smartphones */
        gap: 20px;
    }
    
    .amenities-main-title {
        font-size: 26px;
    }
}
/* --- Accordion Showcase UI Layout --- */
.accordion-showcase-section {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 20px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.showcase-container {
    width: 1280px;
    max-width: 100%;
    margin: 0 auto;
}

.showcase-header {
    text-align: center;
    margin-bottom: 40px;
}

.showcase-title {
    color: #101C36;
    font-size: 45px;
    font-weight: 400;
    margin: 0 0 12px 0;
}

.showcase-subtitle {
    color: #000000;
    font-size: 18px;
    margin: 0;
}

/* Master Grid split frame container */
.showcase-workspace {
    display: flex;
    gap: 40px;
    align-items: stretch;
    min-height: 480px;
}

/* Left Accordion Column Track */
.accordion-panel-left {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.accordion-item {
    border-bottom: 1px solid #eef0f3;
    padding: 18px 10px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.accordion-item:hover {
    background-color: #fafbfc;
}

.accordion-header-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.item-number {
    font-size: 14px;
    font-weight: bold;
    color: #000; /* Primary accent branding red color */
    opacity: 0.6;
}

.accordion-item.active .item-number {
    opacity: 1;
}

.accordion-header-row h3 {
    margin: 0;
    flex-grow: 1;
    font-size: 25px;
    color: #444444;
    font-weight: 600;
    transition: color 0.2s ease;
}

.accordion-item.active .accordion-header-row h3 {
    color: #101C36;
    font-weight: 700;
}

/* FIX: Forces the new span icon to render inline-block, isolating it from roadmap styles */
.status-arrow {
    display: inline-block;
    font-size: 14px;
    color: #888888;
    line-height: 1;
    width: auto;
    height: auto;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    transition: transform 0.3s ease, color 0.3s ease;
}

.accordion-item.active .status-arrow {
    transform: rotate(90deg);
    color: #B30006;
}

/* Hidden container state expanded via active toggles */
.accordion-body-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding-top 0.3s ease;
    padding-left: 31px;
}

.accordion-item.active .accordion-body-content {
    max-height: 260px; /* Room enough to unfold cleanly without cropping texts */
    padding-top: 12px;
}

.accordion-body-content p {
    margin: 0;
    color: #000000;
    font-size: 18px;
    line-height: 1.6;
}

/* Right Static Graphic Panel layout */
.accordion-panel-right {
    flex: 1;
    position: relative;
}

.live-image-frame {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    background-color: #eaeaea;
}

.live-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.2s ease-in-out;
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .showcase-workspace {
        flex-direction: column-reverse; /* Put picture panel beneath content flow on mobiles */
        gap: 25px;
    }
    .live-image-frame {
        min-height: 240px;
        height: 240px;
    }
}
/* --- Unique Vertical Proximity Roadmap Track Styles --- */
.proximity-timeline-section {
    width: 100%;
    background-color: #f7f9fc; /* Seamless background continuation beneath mosaic container */
    padding: 0 20px 80px 20px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.timeline-wrapper-container {
    width: 1280px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

/* Vertical Core Spine Pathway Connecting Bars */
.timeline-road-track {
    position: relative;
    padding-left: 45px; /* Creates clearance space for the left-hand category badges */
    border-left: 2px dashed #cbd5e1; /* The line track that visually links all cards together */
    margin-left: 15px;
    display: flex;
    flex-direction: column;
    gap: 45px;
}

/* Category Structural Block Node Labels */
.timeline-group-block {
    position: relative;
    width: 100%;
}

.timeline-category-marker {
    position: absolute;
    left: -71px; /* Positions icon element center-aligned directly above line track */
    top: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 5;
}

/* Graphical Icon Circle Badge Setup */
.timeline-category-marker .marker-icon {
    width: 50px;
    height: 50px;
    background-color: #101C36; /* Brand main dark blue block color */
    color: #FFCC00; /* Yellow vector accent details link */
    border: 4px solid #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(16, 28, 54, 0.15);
    box-sizing: border-box;
}

/* Category Text Description Block Setup */
.timeline-category-marker .marker-text {
    font-size: 16px;
    font-weight: 700;
    color: #101C36;
    white-space: nowrap;
    background-color: #f7f9fc;
    padding: 2px 8px;
}

/* Horizontal Cards Flow Container Layout rules */
.timeline-cards-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Perfect Equal card rows for restaurant listings */
    gap: 20px;
    padding-top: 65px; /* Gives clearance padding so cards slide neatly underneath category labels */
}

/* Fallback override to make smaller list sets take full grid widths beautifully */
.timeline-card.full-span-card {
    grid-column: span 3;
}

/* The Individual Card Layout */
.timeline-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.timeline-card:hover {
    transform: translateY(-2px);
    border-color: #cbd5e1;
    box-shadow: 0 6px 18px rgba(16, 28, 54, 0.06);
}

.card-interior {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.location-label {
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    color: #000;
    letter-spacing: 0.8px;
}

.card-interior h4 {
    margin: 0;
    color: #101C36;
    font-size: 16px;
    font-weight: 700;
}

/* Floating Distance Badges */
.distance-badge-pill {
    font-size: 13px;
    font-weight: bold;
    padding: 6px 14px;
    border-radius: 30px;
    white-space: nowrap;
    background-color: rgba(179, 0, 6, 0.08); /* Light tint brand red */
    color: #B30006;
}

/* Distinct color variation for items further away (greater than 1 mile) */
.distance-badge-pill.accent-blue {
    background-color: rgba(16, 28, 54, 0.08); /* Light tint brand blue */
    color: #101C36;
}

/* Responsive Overrides for Tablets and Smartphones */
@media (max-width: 1024px) {
    .timeline-cards-flow {
        grid-template-columns: repeat(2, 1fr);
    }
    .timeline-card.full-span-card {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .timeline-road-track {
        padding-left: 25px;
    }
    .timeline-category-marker {
        left: -51px;
    }
    .timeline-category-marker .marker-icon {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    .timeline-category-marker .marker-text {
        font-size: 14px;
    }
    .timeline-cards-flow {
        grid-template-columns: 1fr; /* Formats everything down into a single card stack layout */
        gap: 15px;
    }
    .timeline-card.full-span-card {
        grid-column: span 1;
    }
}
/* --- Corporate Split-Screen Location Feature Module --- */
.location-section-hero {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 20px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.location-wrapper-hero {
    width: 1280px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: stretch;
}

/* Left Content Column Card Styling */
.location-info-box {
    flex: 1;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 40px 35px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-main-title {
    color: #101C36; /* Brand deep blue tone */
    font-size: 45px;
    font-weight: 400;
    margin: 0 0 16px 0;
    line-height: 1.2;
}



.location-info-box p {
    color: #000000;
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 30px 0;
}

/* Coordinates Layout Panel subsegment */
.coordinates-area, .directions-area {
    margin-bottom: 25px;
}

.location-info-box h3 {
    margin: 0 0 12px 0;
    color: #101C36;
    font-size: 22px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-info-box h3 span {
    color: #B30006;
}

.coordinates-area ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 25px;
}

.coordinates-area li {
    color: #000;
    font-size: 18px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 8px 16px;
    border-radius: 6px;
}

.coordinates-area strong {
    color: #101C36;
}

/* Interactive Input Router Form Styling */
.directions-area form {
    display: flex;
    gap: 12px;
    width: 100%;
    margin-top: 15px;
}

.directions-area input[type="text"] {
    flex-grow: 1;
    padding: 14px 18px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 18px;
    outline: none;
    color: #333333;
    background-color: #ffffff;
    transition: border-color 0.2s ease;
}

.directions-area input[type="text"]:focus {
    border-color: #101C36;
    box-shadow: 0 0 0 3px rgba(16, 28, 54, 0.05);
}

.directions-area button {
    background-color: #101C36;
    color: #ffffff;
    border: none;
    padding: 0 24px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.directions-area button:hover {
    background-color: #B30006; /* Shifts button focus dynamically to brand red on hover */
}

/* Right Map Block Frame Container Layer */
.location-map-box {
    flex: 1.1;
    min-height: 450px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(16, 28, 54, 0.06);
}

/* Responsive Adaptive Layout Viewport adjustments */
@media (max-width: 992px) {
    .location-wrapper-hero {
        flex-direction: column; /* Collapses down neatly to single column stream configuration */
        gap: 30px;
    }
    
    .location-map-box {
        height: 400px;
        min-height: 400px;
    }
}

@media (max-width: 640px) {
    .location-info-box {
        padding: 30px 20px;
    }
    
    .coordinates-area ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .directions-area form {
        flex-direction: column;
    }
    
    .directions-area button {
        padding: 14px 0;
        text-align: center;
    }
}
/* --- Corporate Contact Section Styles --- */
.contact-page-section {
    width: 100%;
    background-color: #ffffff;
    padding: 30px 20px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.contact-page-container {
    width: 1280px;
    max-width: 100%;
    margin: 0 auto;
}

/* Page Intro Top Section Header Text Rules */
.contact-section-header {
    text-align: center;
    max-width: 1280px;
    margin: 0 auto 50px auto;
}

.contact-section-title {
    color: #101C36; /* Brand deep blue */
    font-size: 45px;
    font-weight: 400;
    margin: 0 0 16px 0;
}



.contact-section-desc {
    color: #000000;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

/* Clean Info Grid System Layout */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 clean, balanced columns */
    gap: 30px;
    align-items: stretch;
}

.detail-info-block {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 30px 25px;
    display: flex;
    flex-direction: column; /* Stacks icons above content naturally */
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.detail-info-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(16, 28, 54, 0.05);
}

.block-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(16, 28, 54, 0.06);
    color: #101C36;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.block-text h3 {
    margin: 0 0 12px 0;
    color: #101C36;
    font-size: 22px;
    font-weight: 400;
}

.block-text p {
    margin: 0;
    color: #000000;
    font-size: 18px;
    line-height: 1.6;
}

.contact-phone-link {
    color: #B30006;
    text-decoration: none;
    font-weight: 400;
    font-size: 18px;
    display: inline-block;
    margin-top: 6px;
}

.contact-phone-link:hover {
    text-decoration: underline;
}

/* Special border indicator styling for Check-in hours policy */
.policy-highlight-block {
    border-top: 4px solid #B30006;
}

.policy-highlight-block .block-icon-wrapper {
    background-color: rgba(179, 0, 6, 0.06);
    color: #B30006;
}

.policy-hours-row {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    width: 100%;
}

.policy-tag {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.policy-label {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: bold;
    color: #888888;
    letter-spacing: 0.5px;
}

.policy-time {
    font-size: 15px;
    font-weight: 700;
    color: #101C36;
}

/* Responsive Adaptive Layout Parameters */
@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr); /* Moves to a 2-column layout on tablets */
    }
    /* Makes the policy block span full width if it's the odd item out */
    .policy-highlight-block {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr; /* Single column stack for smartphones */
    }
    .policy-highlight-block {
        grid-column: span 1;
    }
    .contact-section-title {
        font-size: 28px;
    }
}
/* --- Premium Editorial Sitemap Grid Styles --- */
.sitemap-page-section {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 20px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.sitemap-page-container {
    width: 1280px;
    max-width: 100%;
    margin: 0 auto;
}

/* Section Header Styles */
.sitemap-section-header {
    text-align: center;
    max-width: 1280px;
    margin: 0 auto 50px auto;
}

.sitemap-section-title {
    color: #101C36; /* Brand deep blue */
    font-size: 45px;
    font-weight: 400;
    margin: 0 0 16px 0;
}



.sitemap-section-desc {
    color: #000000;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

/* Core Navigation Grid Structural Framework */
.sitemap-navigation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Columns on Wide Desktop views */
    gap: 25px;
    align-items: stretch;
}

/* Individual Category Panel Cards */
.sitemap-index-card {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-top: 4px solid #101C36; /* Clean brand blue top indicator strip */
    border-radius: 8px;
    padding: 25px 20px;
    box-sizing: border-box;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-top-color 0.2s ease;
}

.sitemap-index-card:hover {
    transform: translateY(-3px);
    border-top-color: #B30006; /* Softly transitions card header strip to brand red on hover */
    box-shadow: 0 8px 24px rgba(16, 28, 54, 0.06);
}

/* Card Header Section Layout */
.card-category-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 14px;
    margin-bottom: 20px;
}

.card-category-indicator span {
    font-size: 18px;
    color: #101C36;
    transition: color 0.2s ease;
}

.sitemap-index-card:hover .card-category-indicator span {
    color: #B30006;
}

.card-category-indicator h3 {
    margin: 0;
    color: #101C36;
    font-size: 18px;
    font-weight: 700;
}

/* Custom Anchor Link Lists formatting */
.sitemap-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sitemap-link-list li {
    display: flex;
    align-items: center; /* Centered layout block since url subtext is gone */
    gap: 10px;
    font-size: 15px;
}

/* Small interactive layout indicator icon vectors */
.list-arrow {
    font-size: 11px;
    color: #888888;
    transition: transform 0.2s ease, color 0.2s ease;
}

.sitemap-link-list li:hover .list-arrow {
    transform: translateX(3px);
    color: #B30006;
}

.sitemap-link-list a {
    color: #444444;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
    display: block;
    width: 100%;
}

.sitemap-link-list li:hover a {
    color: #101C36;
}

/* RESPONSIVE PARAMS: Re-arranges columns for tablet and smartphone viewports */
@media (max-width: 1024px) {
    .sitemap-navigation-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns layout balance */
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .sitemap-navigation-grid {
        grid-template-columns: 1fr; /* Formats down into single column line track layout */
        gap: 15px;
    }
    
    .sitemap-section-title {
        font-size: 28px;
    }
    
    .sitemap-index-card {
        padding: 20px;
    }
}
/* --- Premium Corporate FAQ Page Layout Styles --- */
.faq-page-section {
    width: 100%;
    background-color: #ffffff;
    padding: 40px 20px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.faq-page-container {
    width: 1280px;
    max-width: 100%;
    margin: 0 auto;
}

/* Page Intro Top Section Header Text Rules */
.faq-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.faq-section-title {
    color: #101C36; /* Corporate Deep Blue */
    font-size: 45px;
    font-weight: 400;
    margin: 0 0 16px 0;
}


.faq-section-desc {
    color: #000;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

/* Master Columns Arrangement Grid Workspace */
.faq-layout-workspace {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* LEFT SIDEBAR: Sticky Floating Anchors Navigator Column */
.faq-nav-sidebar {
    flex: 0 0 300px;
    position: sticky;
    top: 30px; /* Locks module beautifully when scrolling past content nodes */
}

.sticky-nav-card {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 24px;
    box-sizing: border-box;
}

.sticky-nav-card h3 {
    margin: 0 0 16px 0;
    color: #101C36;
    font-size: 22px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
}

.faq-jump-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555555;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 14px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.faq-jump-link span {
    font-size: 16px;
    color: #888888;
    width: 20px;
    text-align: center;
}

.faq-jump-link:hover {
    background-color: #ffffff;
    color: #101C36;
}

/* RIGHT SIDEBAR: Question Content Cards Area Layout */
.faq-content-track {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.faq-group-block {
    scroll-margin-top: 30px; /* Offsets scroll tracking cleanly under sticky margins */
}

.group-block-title {
    color: #101C36;
    font-size: 22px;
    font-weight: 400;
    margin: 0 0 20px 0;
    border-left: 4px solid #B30006; /* Crisp red marker line tag */
    padding-left: 12px;
}

/* Individual Card Blocks System */
.faq-qa-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.01);
}

.faq-question-row, .faq-answer-row {
    display: flex;
    gap: 20px;
    padding: 20px 24px;
    box-sizing: border-box;
}

.faq-question-row {
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

/* Circular Letter Q / A Index Labels Formatting */
.qa-indicator {
    width: 28px;
    height: 28px;
    background-color: #101C36;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    font-size: 15px;
    flex-shrink: 0;
}

.qa-indicator.text-red {
    background-color: rgba(179, 0, 6, 0.08);
    color: #B30006;
}

.faq-question-row h4 {
    margin: 0;
    color: #101C36;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.4;
    padding-top: 3px;
}

.faq-answer-row p {
    margin: 0;
    color: #000000;
    font-size: 18px;
    line-height: 1.6;
    padding-top: 2px;
}

/* Inside Hyperlinks Formatting rules */
.faq-answer-row a {
    color: #B30006;
    text-decoration: none;
    font-weight: 600;
}

.faq-answer-row a:hover {
    text-decoration: underline;
}

.faq-tel-link {
    color: #101C36 !important;
    white-space: nowrap;
}

/* RESPONSIVE SUB-OVERRIDES: Adapts columns layout for tablet devices */
@media (max-width: 992px) {
    .faq-layout-workspace {
        flex-direction: column; /* Stacks navigation lists above the data cards track */
    }
    
    .faq-nav-sidebar {
        width: 100%;
        position: relative;
        top: 0;
    }
    
    .sticky-nav-card {
        display: flex;
        flex-direction: row;
        overflow-x: auto; /* Enables sliding tab row configuration on mobile viewports */
        gap: 10px;
        white-space: nowrap;
        padding: 15px;
    }
    
    .sticky-nav-card h3 {
        display: none; /* Hides internal sub-headings on linear row streams */
    }
}

@media (max-width: 640px) {
    .faq-section-title {
        font-size: 28px;
    }
    
    .faq-question-row, .faq-answer-row {
        padding: 16px;
        gap: 12px;
    }
    
    .group-block-title {
        font-size: 18px;
    }
}

/* --- UNIVERSAL COOKIE BANNER --- */
.uni-cookie-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111c28; /* Deep charcoal navy matching the dark tones of the header & footer */
  border-top: 3px solid #b31d22; /* Signature brand red accent border */
  z-index: 999999;
  padding: 12px 20px;
  box-sizing: border-box;
  display: none; /* Controlled dynamically by JavaScript */
}

.uni-cookie-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.uni-cookie-text {
  color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  text-align: center;
  line-height: 1.4;
}

.uni-cookie-link {
  color: #ffcc00; /* Vibrant gold/yellow matching your secondary CTAs ("Book Your Stay") */
  text-decoration: underline;
  margin-left: 2px;
  font-weight: bold;
  transition: color 0.2s ease;
}

.uni-cookie-link:hover {
  color: #ffffff;
}

.uni-cookie-btn {
  background-color: #b31d22; /* Signature brand red matching your primary "BOOK NOW" buttons */
  color: #ffffff; /* White text for crisp, high-contrast readability */
  border: none;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
  text-transform: uppercase; /* Aligns with the uppercase style of your header navigation */
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}

.uni-cookie-btn:hover {
  background-color: #ffcc00; /* Flips to the vibrant brand yellow on hover */
  color: #111c28; /* Dark navy text on hover for perfect visibility */
}

/* Responsive adjustment for mobile screen breakpoints */
@media (max-width: 600px) {
  .uni-cookie-container {
    flex-direction: column;
    gap: 10px;
    padding: 5px 0;
  }
  .uni-cookie-text {
    font-size: 13px;
  }
}
/* --- BACK TO TOP BUTTON --- */
.back-to-top {
  position: fixed;
  bottom: 75px;
  right: 25px;
  width: 45px;
  height: 45px;
  background-color: #111c28; /* Deep charcoal navy matching the header/footer */
  border: 2px solid #ffcc00; /* Subtle gold accent border to help it pop against content */
  border-radius: 4px; /* Matches the subtle rounding on your booking buttons */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999; /* Higher than normal elements, but below the cookie banner */
  opacity: 0; /* Hidden by default, toggled via JavaScript */
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Upward arrow icon inside the button */
.back-to-top::before {
  content: "";
  width: 10px;
  height: 10px;
  border-left: 3px solid #ffffff;
  border-top: 3px solid #ffffff;
  transform: rotate(45deg);
  margin-top: 4px; /* Centers the arrow optically */
  transition: border-color 0.2s ease;
}

/* Hover state styling */
.back-to-top:hover {
  background-color: #ffcc00; /* Flips to vibrant brand yellow on hover */
  border-color: #ffcc00;
}

.back-to-top:hover::before {
  border-left-color: #111c28; /* Arrow changes to dark navy for contrast on hover */
  border-top-color: #111c28;
}

/* Class to be added via JS when the user scrolls down */
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

/* Responsive adjustment so it doesn't block content on small mobile screens */
@media (max-width: 600px) {
  .back-to-top {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }
}