﻿/* ==========================================================================
   Microtel Inn & Suites by Wyndham Perry - Brand Typography & Core Styles
   ========================================================================== */

/* Font Pairing: Montserrat (Logo-Matched Headings) + Inter (Clean UI Body Text) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Montserrat:wght@700;800;900&display=swap');

/* Reset & Base Layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;           /* Highly legible font for body text */
  background-color: #F5EFEB;                  /* Property exterior soft warm cream */
  color: #1A1A1A;                             /* High contrast dark slate for text readability */
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Headings: Custom tailored to mirror the geometric weight of the Microtel Logo */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;                           /* Extra bold to emulate blocky logo font */
                              /* Exact Microtel logo deep blue */
  text-transform: uppercase;
  letter-spacing: -0.01em;                    /* Tightened slightly for a structured corporate feel */
  margin-bottom: 1rem;
}

/* ==========================================================================
   AERO-GLIDE V4 - ARCHITECTURAL HEADER (REBRANDED)
   Property: Days Inn by Wyndham Wooster
   Theme: Clear Weather Sky & Pillar Midnight
   Colors:
     - Deep Sky Midnight (#0A1A2A) -> Flat canvas dark background integration
     - Pillar Midnight Blue (#1E3A52) -> High-contrast structural container block background
     - Clear Weather Sky Blue (#2D9BCE) -> Laser-focused action highlight & accent text
   ========================================================================== 
*/

/* 1. CORE WRAPPER & CONTAINER */
.aero-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    padding-top: 10px;
}

.aero-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
}

/* 2. TOP UTILITY BAR (REBRANDED WITH SOLID DARK PILL PODS) */
.aero-top-bar {
    padding: 12px 0;
    border-bottom: 1px solid rgba(45, 155, 206, 0.12); /* Subtle Sky Blue partition indicator edge */
}

.aero-top-bar .aero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.aero-info { 
    display: flex; 
    gap: 25px; 
    align-items: center; 
}

/* Address Pod - Styled inline with the unified dark-mode panel canvas */
.aero-address {
    display: flex;
    align-items: center;
    background: rgba(30, 58, 82, 0.9); /* Translucent Pillar Midnight backdrop */
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid rgba(45, 155, 206, 0.2); /* Soft Sky Blue technical frame */
    
}

.aero-address a { 
    color: #ffffff; 
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    
}

.aero-address a:hover { 
    color: #2D9BCE; /* Switches instantly to Sky Blue on hover actions */
}

/* Social Media Pod - Matching the identical dark pill container matrix */
.aero-socials { 
    display: flex; 
    gap: 16px; 
    align-items: center;
    background: rgba(30, 58, 82, 0.9);
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid rgba(45, 155, 206, 0.2);
}

.aero-socials a { 
    color: #ffffff; 
    font-size: 18px; 
    
    transition: all 0.3s ease; 
    display: flex;
    align-items: center;
    text-decoration: none;
}

.aero-socials a:hover { 
    opacity: 1; 
    color: #2D9BCE; /* Vibrates directly into operational Sky Blue */
    transform: translateY(-1px);
}

/* 3. MAIN NAVIGATION (HIGH-CONTRAST DARK THEME OVERHAUL) */
.aero-main-nav {
    margin: 15px 20px;
    background: #0A1A2A; /* Aligned with Deep Sky Midnight footer base block */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px; 
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4); /* Solid deep dark elevation shadowing */
    padding: 10px 0;
    transition: all 0.4s ease;
}

.wing-layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
}

.aero-logo {
    grid-column: 2;
    padding: 0 45px;
}

.aero-logo img { 
    height: 75px; 
    width: auto; 
    display: block;
    margin: 0 auto;
    background: #ffffff; /* Contrast mask backing protection for the corporate emblem */
    padding: 6px 12px;
    border-radius: 4px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.aero-menu-desktop {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    justify-content: flex-start;
    padding-left: 25px;
}

.nav-list { 
    display: flex; 
    list-style: none; 
    gap: 30px; 
    margin: 0;
    padding: 0;
}

.nav-list a {
    text-decoration: none;
    color: #ffffff; /* Pure white text for ideal layout contrast profiles */
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    overflow: hidden;
    height: 20px;
    display: block;
    position: relative;
}

.nav-list a span { 
    display: block; 
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); 
}

.nav-list a::after {
    content: attr(data-hover);
    display: block;
    color: #2D9BCE; /* Text flips seamlessly to clean Sky Blue on tracker hover states */
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-list a:hover span { transform: translateY(-100%); }
.nav-list a:hover::after { transform: translateY(-100%); }

/* 4. ACTION HUB */
.aero-actions { 
    grid-column: 3;
    display: flex; 
    align-items: center; 
    justify-content: flex-end;
    gap: 30px; 
    padding-right: 25px;
}

.aero-contact-stack { 
    display: flex; 
    flex-direction: column; 
    text-align: right; 
}

.aero-contact-stack .label { 
    font-size: 9px; 
    font-weight: 800; 
    color: #2D9BCE; /* Tag labels map to bright sky blue punctuation highlights */
    text-transform: uppercase; 
    letter-spacing: 1px;
}

.aero-contact-stack a { 
    color: #ffffff; 
    text-decoration: none; 
    font-weight: 700; 
    font-size: 14px; 
    transition: color 0.2s ease;
}

.aero-contact-stack a:hover {
    color: #2D9BCE;
}
.aero-address .fa-location-dot {
  color: #d9232d;
  margin-right: 8px; /* Adjust spacing as needed */
}

/* Call To Action Button - Dynamic Sky-Midnight Layout */
.aero-book-btn {
    background: #1E3A52; /* Grounded core block base color set to Pillar Midnight */
    color: #ffffff;
    text-decoration: none;
    padding: 14px 28px;
    border: 1px solid rgba(45, 155, 206, 0.3);
    border-radius: 4px; 
    font-weight: 700; 
    font-size: 12px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.aero-book-btn:hover { 
    background: #2D9BCE; /* Transitions entirely into vibrant operational Clear Sky Blue */
    color: #0A1A2A; /* Inverts text background cleanly back into deepest dark shade for supreme clarity */
    border-color: #2D9BCE;
    transform: translateY(-1px); 
    box-shadow: 0 8px 25px rgba(45, 155, 206, 0.35);
}

/* 5. MOBILE TRIGGER SETUP */
.aero-mobile-trigger { 
    display: none; 
    background: none; 
    border: none; 
    flex-direction: column; 
    gap: 6px; 
    cursor: pointer;
    padding: 10px;
}

.aero-mobile-trigger span { 
    width: 26px; 
    height: 2.5px; 
    background: #ffffff; /* Vector menu tracks set to high-contrast white layout */
    border-radius: 2px;
    transition: 0.3s ease;
}

@media (max-width: 1200px) {
    .aero-top-bar, 
    .aero-menu-desktop, 
    .aero-contact-stack, 
    .aero-actions { 
        display: none !important; 
    }

    .wing-layout {
        display: flex;
        justify-content: space-between;
        padding: 0 10px;
    }

    .aero-mobile-trigger { 
        display: flex; 
    }

    .aero-logo {
        padding: 0;
    }

    .aero-main-nav { 
        background: #0A1A2A; /* Secure unified deep backdrop on space-constrained viewports */
        border-radius: 6px; 
        margin: 10px 15px; 
        padding: 8px 0; 
    }
}
/* ==========================================================================
   AERO-SPLIT MOBILE MENU V5 - DAYS INN WOOSTER BRANDED
   Theme: Clear Weather Sky & Pillar Midnight Blue
   Colors:
     - Deep Sky Midnight (#0A1A2A) -> Flat canvas dark panel grounding
     - Pillar Midnight Blue (#1E3A52) -> Symmetrical panel layout columns
     - Clear Weather Sky Blue (#2D9BCE) -> Numeric counters and menu hover tags
   ========================================================================== */

.aero-mobile-overlay {
    position: fixed;
    inset: 0;
    background: #0A1A2A; /* Grounded with Deep Sky Midnight */
    z-index: 19999; /* Positioned securely relative to core header mechanics */
    visibility: hidden;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.85, 0, 0.15, 1);
}

.aero-mobile-overlay.active {
    visibility: visible;
    opacity: 1;
}

.aero-menu-inner {
    display: grid;
    grid-template-columns: 40% 60%;
    width: 100%;
    height: 100%;
}

/* LEFT SIDE: Information Ledger Panel */
.menu-blade-left {
    background: #0D2235; /* Elevated dark depth slate (ensures white web assets pop elegantly) */
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateX(-100%);
    transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1);
    font-family: 'Inter', sans-serif;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.aero-mobile-overlay.active .menu-blade-left { 
    transform: translateX(0); 
}

.blade-logo { 
    width: 180px; 
    height: auto;
    background: #ffffff; /* Contrast mask backing protection for the corporate emblem */
    padding: 8px 14px;
    border-radius: 4px;
    margin-bottom: 40px; 
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.blade-label {
    display: block;
    font-size: 10px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #2D9BCE; /* Rebranded: Sky Blue minimal category tag indicator labels */
    font-weight: 800;
    margin-bottom: 8px;
}

.blade-item p, .blade-phone {
    font-size: 18px;
    color: #ffffff; /* High contrast reading levels over dark layout plates */
    font-weight: 600;
    text-decoration: none;
    line-height: 1.4;
}

.blade-phone {
    transition: color 0.2s ease;
}

.blade-phone:hover {
    color: #2D9BCE; /* Highlights to active Sky Blue on mouse interaction */
}

.license-line {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6); /* Softened baseline readability copy */
    line-height: 1.6;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
}

.blade-legal { 
    font-size: 11px; 
}

.blade-legal a { 
    color: #ffffff; 
    text-decoration: none; 
    font-weight: 700; 
    transition: color 0.2s ease;
}

.blade-legal a:hover {
    color: #2D9BCE;
    text-decoration: none;
}

.blade-legal .sep { 
    margin: 0 8px; 
    color: rgba(45, 155, 206, 0.3); /* The structural separations adopt a muted Sky Blue tone */
}

/* RIGHT SIDE: Interactive Link Navigation Panel */
.menu-blade-right {
    background: #0A1A2A; /* Deep Sky Midnight Base Panel Canvas */
    padding: 80px 60px;
    position: relative;
    display: flex;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1);
}

.aero-mobile-overlay.active .menu-blade-right { 
    transform: translateX(0); 
}

/* Close Control Panel Elements */
.aero-close-btn {
    position: absolute;
    top: 40px;
    right: 40px;
    background: none;
    border: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.aero-close-btn:hover {
    color: #2D9BCE; /* Changes straight to Sky Blue on hover states */
}

.close-text { 
    font-size: 12px; 
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 3px; 
    font-weight: 700; 
    opacity: 0.8; 
}

.close-icon { 
    font-size: 40px; 
    font-weight: 200; 
    line-height: 1;
}

/* Navigation List Arrays */
.mobile-nav-v5 { 
    display: flex; 
    flex-direction: column; 
    gap: 30px; 
}

.mobile-nav-v5 a {
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(30px, 5vw, 50px);
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    padding-left: 50px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-nav-v5 a::before {
    content: attr(data-num);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #2D9BCE; /* Rebranded: Sky Blue incremental numeric numbering labels */
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.mobile-nav-v5 a:hover {
    padding-left: 70px;
    color: #2D9BCE; /* Main header text links highlight completely to Sky Blue */
}

/* RESPONSIVE SCALING AND VIEWPORT STACKING OVERRIDES */
@media (max-width: 900px) {
    .aero-menu-inner { 
        grid-template-columns: 100%; 
        overflow-y: auto; 
    }
    
    .menu-blade-left { 
        order: 2; 
        padding: 40px 30px; 
        transform: translateY(100%); 
        transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1);
        border-right: none;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .menu-blade-right { 
        order: 1; 
        padding: 100px 30px 60px 30px; 
        transform: translateY(-100%); 
        transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1);
    }
    
    .aero-mobile-overlay.active .menu-blade-left,
    .aero-mobile-overlay.active .menu-blade-right { 
        transform: translateY(0); 
        transform: translateX(0);
    }
    
    .blade-logo { 
        width: 150px; 
    }
    
    .aero-close-btn {
        top: 30px;
        right: 30px;
    }
}
/* ==========================================================================
   AERO-GLIDE V4 - STICKY INSTRUMENT POD (REBRANDED)
   Property: Days Inn by Wyndham Wooster
   Theme: Clear Weather Sky & Pillar Midnight Blue
   Colors:
     - Deep Sky Midnight (#0A1A2A) -> Text & inverted element colors
     - Pillar Midnight Blue (#1E3A52) -> Glassmorphic solid framing components
     - Clear Weather Sky Blue (#2D9BCE) -> High-clarity hover triggers & status highlights
   ========================================================================== */

.aero-sticky-pod {
    position: fixed;
    top: 25px; 
    left: 50%;
    transform: translateX(-50%) translateY(-160%); /* Hidden by default */
    z-index: 19000; /* Layered consistently over standard view containers */
    width: 92%;
    max-width: 1100px;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0;
}

/* State: User scrolls UP */
.aero-sticky-pod.reveal-up {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* State: User scrolls DOWN / Inactive */
.aero-sticky-pod.hide-away {
    transform: translateX(-50%) translateY(-160%);
    opacity: 0;
}

.pod-wrapper {
    /* Premium dark-mode glassmorphic framework echoing the corporate palette */
    background: rgba(10, 26, 42, 0.92); 
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(45, 155, 206, 0.2); /* Soft Sky Blue tracking contour rim */
    border-bottom: 3px solid #1E3A52; /* Anchor baseline set to solid Pillar Midnight */
    border-radius: 100px;
    padding: 8px 12px 8px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* Left Logo Area */
.pod-logo-area {
    display: flex;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 25px;
}

.pod-logo {
    height: 38px;
    width: auto;
    display: block;
    background: #ffffff; /* Contrast protective shield backing for corporate logo */
    padding: 4px 10px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Center Nav Links */
.pod-nav { 
    display: flex; 
    gap: 35px; 
}

.pod-nav a {
    text-decoration: none;
    color: #ffffff; /* Clean readable white type for absolute layout safety */
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.25s ease;
    display: inline-block;
    position: relative;
}

/* Navigation Links Hover Alignment */
.pod-nav a:hover {
    color: #2D9BCE; /* Vibrates seamlessly to clear operational Sky Blue */
    text-decoration: none;
}

/* Right Actions Frame */
.pod-actions { 
    display: flex; 
    align-items: center; 
    gap: 20px; 
}

.pod-icon-link { 
    color: #ffffff; 
    font-size: 16px; 
    transition: color 0.25s ease; 
}

.pod-icon-link:hover { 
    color: #2D9BCE; /* Shifts directly to dynamic Sky Blue */
}

/* Reserve Action Button */
.pod-book-btn {
    background: #1E3A52; /* Grounded core block setup using Pillar Midnight */
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(45, 155, 206, 0.3);
}

.pod-book-btn:hover {
    background: #2D9BCE; /* Overhaul shift to crisp vibrant Sky Blue */
    border-color: #2D9BCE;
    box-shadow: 0 8px 20px rgba(45, 155, 206, 0.35);
}

.btn-text1 { 
    font-family: 'Montserrat', sans-serif;
    font-weight: 800; 
    letter-spacing: 2px; 
    font-size: 11px; 
    color: #ffffff; 
    transition: color 0.4s ease;
}

.pod-book-btn:hover .btn-text1 {
    color: #0A1A2A; /* Flips baseline text typography neatly into deep dark space for layout legibility */
}

/* Mobile Hamburger Toggle Circles */
.pod-trigger {
    display: none; 
    background: rgba(30, 58, 82, 0.4); /* Semi-transparent Pillar Midnight container shield */
    border: 2px solid #2D9BCE; /* Sharp highlight framing ring using Sky Blue */
    width: 44px; 
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    padding: 0;
}

.dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.dots span { 
    width: 5px; 
    height: 5px; 
    background: #2D9BCE; /* Crisp Sky Blue active structural vector map points */
    border-radius: 50%; 
    transition: background 0.3s ease;
}

.pod-trigger:hover {
    background: #2D9BCE; /* Total inversion transition */
    border-color: #2D9BCE;
    box-shadow: 0 6px 15px rgba(45, 155, 206, 0.4);
}

.pod-trigger:hover .dots span {
    background: #0A1A2A; /* Dots turn back cleanly into deep dark tint vector points */
}

/* --- MOBILE/TABLET RESPONSIVE BREAKPOINT MATRICES --- */
@media (max-width: 991px) {
    .pod-trigger { 
        display: flex; 
    }
    
    .pod-nav,
    .pod-actions .pod-icon-link { 
        display: none; 
    }
    
    .pod-wrapper {
        padding-right: 15px; /* Symmetrical edge alignment buffer */
    }
    
    .pod-logo-area {
        border-right: none;
        padding-right: 0;
    }
}

/* ==========================================================================
   CINEMATIC MONOLITHIC FULL-COVER HERO SLIDER (MINIMALIST REBRANDED EDITION)
   Property: Days Inn by Wyndham Wooster
   Theme: Clear Weather Sky & Pillar Midnight Blue
   Colors:
     - Deep Sky Midnight (#0A1A2A) -> Safe, immersive backdrop to hide visual clipping
     - Pillar Midnight Blue (#1E3A52) -> Principal button surface and component ink
     - Clear Weather Sky Blue (#2D9BCE / rgb(45 155 206)) -> Secondary accent line marker & interactive highlights
     - Clear Sky Stone (#E4ECF0) -> High-contrast bright element surfaces
   ========================================================================== */

.mono-hero-slider {
    position: relative;
    width: 100%;
    height: 110vh;
    min-height: 600px;
    background: #0A1A2A; 
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

/* --- SLIDE MATRIX STATES --- */
.mono-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    overflow: hidden;
    transition: visibility 0s 1.4s, opacity 0s 1.4s;
}

.mono-slide.active-mono {
    z-index: 10;
    visibility: visible;
    opacity: 1;
    transition: none;
}

/* --- THE FULL-COVER BACKGROUND CANOPY --- */
.mono-bg-canopy {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    clip-path: circle(0% at 50% 50%);
    transition: clip-path 1.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.mono-slide.active-mono .mono-bg-canopy {
    clip-path: circle(150% at 50% 50%); 
}

.mono-img-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
    /* MODIFIED: Lifted brightness closer to 1 (natural exposure) and smoothed out contrast */
    filter: brightness(0.85) contrast(1.0); 
    
    transform: scale(1.15);
    transition: transform 1.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.mono-slide.active-mono .mono-img-full {
    transform: scale(1);
}

/* --- MONOLITHIC TYPOGRAPHIC LAYER CONTAINER --- */
.mono-content-hull {
    position: relative;
    width: 100%;
    z-index: 5;
    padding: 0 10%;
}

.mono-inner-bounds {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; 
    gap: 40px;
    align-items: center;
}

/* Left Section: Headings Lift */
.mono-header-block {
    opacity: 0;
    transform: translateY(40px);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s, opacity 1.2s ease 0.5s;
}

.mono-slide.active-mono .mono-header-block {
    opacity: 1;
    transform: translateY(0);
}

.mono-tagline {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #ffffff; /* Rebranded: Clear Weather Sky Blue Tagline */
    margin-bottom: 15px;
}

.mono-heading {
    font-size: clamp(2.8rem, 4.8vw, 5.2rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    text-transform: uppercase;
}

.mono-heading em {
    font-style: normal;
    color: #2D9BCE; /* Rebranded: Dynamic inline typographic emphasis points */
}

/* Right Section: Buttons Alignment Lift */
.mono-body-block {
    opacity: 0;
    transform: translateY(40px);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s, opacity 1.2s ease 0.6s;
    display: flex;
    justify-content: flex-end;
    margin-top: 260px;
}

.mono-slide.active-mono .mono-body-block {
    opacity: 1;
    transform: translateY(0);
}

/* --- CALL TO ACTION ELEMENT SCHEMES --- */
.mono-cta-row {
    display: flex;
    align-items: center;
    gap: 30px;
}

.mono-btn-primary {
    display: inline-block;
    background: #1E3A52; 
    color: #ffffff;
    border: 2px solid #1E3A52;
    padding: 18px 40px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 82, 0.2);
}

.mono-btn-primary:hover {
    background: #2D9BCE; /* Rebranded: Flashes forward into brand secondary sky blue */
    border-color: #2D9BCE;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(45, 155, 206, 0.35);
}

.mono-btn-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mono-arrow {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mono-btn-text:hover {
    color: #2D9BCE; /* Rebranded: Inline subtle action shifts smoothly to sky blue */
}

.mono-btn-text:hover .mono-arrow {
    transform: translateX(6px);
}

/* --- MONOLITHIC HUD PANELS --- */
.mono-hud {
    position: absolute;
    bottom: 60px;
    left: 10%;
    right: 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
}

.mono-pagination {
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

.mono-num-large {
    font-size: 36px;
    font-weight: 900;
    color: #ffffff;
    line-height: 0.8;
}

.mono-num-small {
    font-size: 14px;
    font-weight: 700;
    color: rgba(228, 236, 240); 
}

.mono-progress-track {
    width: 140px;
    height: 2px;
    background: rgba(228, 236, 240, 0.15);
    margin-bottom: 6px;
    position: relative;
}

.mono-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 25%;
    background: #2D9BCE; /* Rebranded: Sky Blue slider timeline loader bar indicator */
    transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Trigger Controls */
.mono-arrows {
    display: flex;
    gap: 12px;
}

.mono-arrow-btn {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(228, 236, 240, 0.2);
    background: rgba(10, 26, 42, 0.4);
    color: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.mono-arrow-btn:hover {
    background: #2D9BCE; /* Rebranded: Navigation controls switch cleanly on interaction */
    border-color: #2D9BCE;
    color: #ffffff;
}

/* Inline Highlight Text for Local Proximities */
.mono-amenity-highlights {
    margin-top: 15px;
   
    font-size: 13px;
    color: #ffffff; 
    letter-spacing: 0.5px;
    font-weight: 500;
}

.mono-amenity-highlights span {
   color: #ffffff;  /* Rebranded: Distance and location tags emphasized in sky blue */
    font-weight: 600;
}
/* ==========================================================================
   BREAKPOINTS AND MEDIA RESPONSIVENESS OVERRIDES
   ========================================================================== */

@media (max-width: 991px) {
    .mono-content-hull {
        padding: 120px 6% 140px 6%;
    }
    .mono-inner-bounds {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .mono-body-block {
        justify-content: center;
        margin-top: 40px; /* Reset extreme desk layout offsets on mobile screens */
    }
    .mono-cta-row {
        justify-content: center;
    }
    .mono-hud {
        bottom: 40px;
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .mono-cta-row {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    .mono-btn-primary {
        width: 100%;
        text-align: center;
    }
    .mono-progress-track {
        width: 80px;
    }
}
/* ===== RESERVATION BOX SECTION (REBRANDED SYSTEM CANVAS) ===== */
.below-section {
  position: relative;
  padding: 30px 0;
  text-align: center;
  background: #0A1A2A; /* Rebranded: Matches dark void space matrix */
  z-index: 20;
}

/* Base structural grid lines background matching site styling */
.below-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(45, 155, 206, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 155, 206, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center;
  pointer-events: none;
  z-index: 0;
}

/* ================================
   RESERVATION BOX WRAPPER
================================ */
.reservation-box {
  display: flex;
  justify-content: center;
  width: 100%;
  z-index: 2;
  position: relative;
}

.reservation-container {
  display: flex;
  justify-content: center;
  border-radius: 4px; /* Matches sharp modular structural block styling */
  background: rgba(30, 58, 82, 0.3); /* Rebranded: Base solid container path to midnight blue */
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(45, 155, 206, 0.2); /* Rebranded: Sky Blue boundaries */
  width: 90%;
  max-width: 1280px;
  position: relative; /* Anchors the absolute positioned elements correctly */
  /* overflow: hidden; -> Removed to prevent calendar from cutting off */
}

/* ================================
   FLEX FORM LAYOUT
================================ */
.reservation-container form {
  display: flex;
  width: 100%;
}

.res-flex {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  align-items: stretch;
}

/* ================================
   EACH ITEM
================================ */
.res-item {
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(45, 155, 206, 0.15);
  background: transparent;
  flex: 1;
  transition: all 0.4s ease;
}

.res-item.small {
  width: auto;
  min-width: 120px;
  text-align: center;
}

.res-item:hover {
  background: rgba(30, 58, 82, 0.5);
}

/* ================================
   LABELS
================================ */
.res-item label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  color: #2D9BCE; /* Rebranded: Clear Weather Sky Blue Header tags */
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 2px;
  text-align: left;
}

.res-item.small label {
  text-align: center;
}

/* ================================
   CONTENT (INPUTS & ICONS)
================================ */
.res-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.res-content.center {
  justify-content: center;
}

/* ================================
   ICON STYLING
================================ */
.res-content .calendar-icon {
  font-size: 18px;
  color: #2D9BCE; /* Rebranded: Sky blue accent tracking */
  filter: drop-shadow(0 0 4px rgba(45, 155, 206, 0.3));
  margin-left: 15px;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}
.res-content:hover .calendar-icon {
  color: #ffffff;
  transform: scale(1.05);
}

/* ================================
   INPUT & SELECT STYLING
================================ */
.res-input, .res-select {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  width: 100%;
}

.res-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.res-select {
  text-align-last: center;
}

.res-select option {
  background: #0A1A2A;
  color: #ffffff;
}

/* ================================
   CHECK AVAILABILITY ACTION
================================ */
.res-button {
  background: #2D9BCE; /* Rebranded: High-visibility play and primary action component block */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  min-width: 250px;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(45, 155, 206, 0.15);
  border-top-right-radius: 4px;   /* Maintains corner shape since parent wrapper has no overflow hidden */
  border-bottom-right-radius: 4px;
}

.res-button button {
  background: none;
  border: none;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0 30px;
  font-size: 14px;
  height: 100%;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.res-button:hover {
  background: #1E3A52; /* Snaps elegantly into structural midnight blue context on hover */
  box-shadow: 0 0 30px rgba(45, 155, 206, 0.3);
}

/* ================================
   RESPONSIVE DESIGN INTERFACE 
================================ */
@media (max-width: 992px) {
  .reservation-box {
    padding: 0 20px;
  }

  .reservation-container {
    width: 100%;
    flex-direction: column;
  }

  .reservation-container form,
  .res-flex {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .res-item {
    border-right: none;
    border-bottom: 1px solid rgba(45, 155, 206, 0.15);
    padding: 20px;
  }

  .res-item.small {
    text-align: left;
  }
  
  .res-item.small label {
    text-align: left;
  }

  .res-select {
    text-align-last: left;
  }

  .res-button {
    border: none;
    width: 100%;
    min-width: auto;
    border-radius: 0 0 4px 4px; /* Flattens and cleans edges for mobile vertical stack elements */
  }

  .res-button button {
    padding: 22px 0;
  }
}

/* ================================
   DATEPICKER SYSTEM CUSTOM OVERRIDE
================================ */
.ui-datepicker {
  background: #0A1A2A !important;
  border: 1px solid #2D9BCE !important;
  color: #ffffff !important;
  font-family: 'Montserrat', sans-serif !important;
  padding: 12px !important;
  border-radius: 4px !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6) !important;
  z-index: 9999999 !important; /* Force displays calendar above all structured content rows */
}

.ui-datepicker-header {
  background: #1E3A52 !important;
  color: #2D9BCE !important;
  border: 1px solid rgba(45, 155, 206, 0.2) !important;
  border-radius: 4px !important;
}

.ui-datepicker-calendar th {
  color: #2D9BCE !important;
  font-weight: 700 !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
}

.ui-state-default {
  background: transparent !important;
  border: 1px solid transparent !important;
  color: rgba(255, 255, 255, 0.8) !important;
  text-align: center !important;
  font-weight: 600 !important;
}

.ui-state-hover {
  background: #2D9BCE !important;
  color: #ffffff !important;
}

.ui-state-active {
  background: #1E3A52 !important;
  border: 1px solid #2D9BCE !important;
  color: #ffffff !important;
}
/* ==========================================================================
   FLIPPED LAYERED WELCOME MODULE STYLING (REBRANDED EDITION + GRID MATRIX)
   Property: Days Inn by Wyndham Wooster
   Theme: Clear Weather Sky & Pillar Midnight Blue
   Colors:
     - Deep Sky Midnight (#0A1A2A) -> Deep base/drawer shadow foundations
     - Pillar Midnight Blue (#1E3A52) -> Primary typographic headings, lines, and solids
     - Clear Weather Sky Blue (#2D9BCE / rgb(45 155 206)) -> Secondary color for accents, highlights & interactive states
     - Clear Sky Stone (#E4ECF0) -> Delicate tracking matrices and borders
   ========================================================================== */

/* --- SECTION WRAPPER & RUNTIME CANVAS CONFIGURATION --- */
.expert-welcome {
    position: relative;
    padding: 20px 0; /* Expanded padding slightly to let the grid breathe */
    background: #fcfbf9;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

/* --- RUNTIME INTERACTIVE GRID BACKGROUND LAYERS --- */

/* Fixed structural background matrix lines */
.expert-welcome::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Clean micro-grid pattern utilizing the Pillar Midnight Blue tint */
    background-image: 
        linear-gradient(rgba(30, 58, 82, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 58, 82, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center;
    /* Fades the grid toward the edges smoothly */
    mask-image: radial-gradient(circle at center, black 50%, transparent 95%);
    -webkit-mask-image: radial-gradient(circle at center, black 50%, transparent 95%);
    pointer-events: none;
    z-index: 1;
}

/* Dynamic Mouse-tracking Ambient Glow Layer */
.expert-welcome::after {
    content: '';
    position: absolute;
    inset: 0;
    /* Tied directly to JS-updated custom variables with strict fallbacks (Clear Weather Sky Blue glow) */
    background: radial-gradient(
        500px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
        rgba(45, 155, 206, 0.12) 0%, 
        rgba(30, 58, 82, 0.04) 45%, 
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none; /* Prevents background from hijacking interactive text and nodes */
    z-index: 2;
}

/* Triggered by mouse movement updates in JS */
.expert-welcome.mouse-inside::after {
    opacity: 1;
}

/* Background Texture Decor - Shifted under grid to remain subtle */
.ew-bg-accent {
    position: absolute;
    top: 10%; 
    left: -5%;
    width: 40%; 
    height: 80%;
    background: rgba(30, 58, 82, 0.02); 
    z-index: 0;
    clip-path: polygon(0% 0%, 75% 0%, 100% 100%, 25% 100%);
    pointer-events: none;
}

.ew-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10; /* Lifts content safely above tracking layers */
}

/* --- LEFT SIDE: CONTENT CARD (FLIPPED via order: 1) --- */
.ew-content-group {
    flex: 1;
    margin-right: -100px; /* Overlaps onward to the right side layout matrix */
    margin-left: 0;
    position: relative;
    z-index: 6;
    order: 1; /* Pushes content group to the left side */
}

.ew-text-card {
    background: #ffffff;
    padding: 40px 70px;
    box-shadow: -20px 40px 100px rgba(10, 26, 42, 0.08); /* Re-centered shadow over dark blue architectural base */
}

.ew-eyebrow {
    font-size: 11px; 
    font-weight: 800; 
    letter-spacing: 5px; 
    color: #1E3A52; /* Rebranded: Clear Weather Sky Blue Eyebrow */
    display: block; 
    margin-bottom: 20px;
    text-align: left;
    text-transform: uppercase;
}

.ew-title {
    font-size: clamp(2.5rem, 4.5vw, 4.2rem);
    color: #1E3A52; /* Rebranded: Pillar Midnight Blue Main Headings */
    line-height: 1.15; 
    margin-bottom: 30px;
    text-transform: uppercase;
}

.ew-title span { 
    color: #2D9BCE; /* Rebranded: Highlighted inline accent with Clear Weather Sky Blue */
    font-weight: 600; 
}

.ew-lead { 
    font-family: 'Inter', sans-serif;
    font-size: 19px; 
    font-weight: 600; 
    color: #1E3A52; /* Pillar Midnight Blue highlighted lead text */
    margin-bottom: 25px; 
    line-height: 1.6; 
}

.ew-para { 
    font-family: 'Inter', sans-serif;
    font-size: 15px; 
    color: #555555; 
    line-height: 1.8; 
    margin-bottom: 45px; 
    max-height: 250px; 
    overflow-y: auto;  
}

.ew-para a {
    color: #555555; 
    text-decoration: none;
    font-weight: bold; /* Makes all anchor tags inside .ew-para bold */
}

/* Discovery Button Controls */
.ew-btn-discover {
    background: none; 
    border: none; 
    display: inline-flex; 
    align-items: center;
    gap: 20px; 
    cursor: pointer; 
    padding: 0;
}

.btn-circle {
    width: 60px; 
    height: 60px; 
    border: 2px solid #1E3A52; /* Rebranded: Structural brand line to core midnight blue */
    color: #1E3A52;
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-text { 
    font-weight: 800; 
    letter-spacing: 2px; 
    font-size: 12px; 
    color: #1E3A52; 
}

.ew-btn-discover:hover .btn-circle { 
    background: #2D9BCE; /* Rebranded: Active hover shifts cleanly to secondary sky blue background state */
    border-color: #2D9BCE;
    color: #ffffff; /* Enhanced contrast legibility on active state */
    transform: scale(1.05);
}

/* --- RIGHT SIDE: REDESIGNED LAYERED MEDIA CANVAS (FLIPPED via order: 2) --- */
.ew-media-group {
    flex: 1.3; 
    position: relative;
    order: 2; 
    perspective: 1000px;
}

.ew-image-canvas {
    position: relative;
    height: 700px;
    width: 85%;
    z-index: 5;
    overflow: hidden;
    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%); 
    left: auto;
    right: -100px; 
    box-shadow: 0 30px 60px rgba(10, 26, 42, 0.2);
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ew-main-img {
    width: 100%; 
    height: 100%;
    object-fit: cover;
    transform: scale(1.15) rotate(-1deg); 
    transition: transform 1.8s cubic-bezier(0.19, 1, 0.22, 1);
}

/* The Canvas Hover Interactions */
.ew-image-canvas:hover {
    transform: translateY(-5px) rotateX(2deg) rotateY(-2deg);
}

.ew-image-canvas:hover .ew-main-img { 
    transform: scale(1.05) rotate(0deg); 
}

/* --- REDESIGNED SOLID BACKING PLATFORM DECORATION --- */
.ew-outline-frame {
    position: absolute;
    bottom: -40px; 
    right: 5px; 
    left: auto;
    width: 85%; 
    height: 100%;
    /* Rebranded: Gradient transitions dynamically from deep Pillar Midnight Blue into Clear Weather Sky Blue */
    background: linear-gradient(135deg, rgba(30, 58, 82, 0.95) 0%, rgba(45, 155, 206, 0.85) 100%);
    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
    border: none;
    z-index: 2;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), background 0.8s ease;
    box-shadow: -10px 20px 40px rgba(10, 26, 42, 0.15);
}

/* Parallax Counter-Movement Frame Hover */
.ew-media-group:hover .ew-outline-frame {
    transform: translate(-15px, 15px) scale(0.98);
    /* Inverse transition color paths for visual elegance */
    background: linear-gradient(135deg, rgba(45, 155, 206, 0.95) 0%, rgba(30, 58, 82, 0.95) 100%);
}

/* --- EXPANDABLE FULL DRAWER LOCAL INFO PANEL --- */
.ew-depth-panel {
    position: fixed; 
    inset: 0; 
    background: #0A1A2A; 
    z-index: 999;
    display: flex; 
    align-items: center;
    justify-content: center;
    transform: translateX(100%); 
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -20px 0 50px rgba(10, 26, 42, 0.4);
    padding: 40px 0;
}

.ew-depth-panel.active { 
    transform: translateX(0); 
}

.ew-panel-content-wrapper {
    width: 1200px; 
    max-width: 90%; 
    max-height: 85vh; /* Restricts max height to 85% of viewport */
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    position: relative;
    padding-top: 30px; /* Gives room for the close button */
}

.ew-panel-close {
    position: absolute; 
    top: -10px; 
    right: 0; 
    background: transparent; 
    border: 1px solid rgba(228, 236, 240, 0.3);
    color: #ffffff; 
    padding: 10px 22px; 
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 11px;
    transition: all 0.3s ease;
    z-index: 10;
}

.ew-panel-close:hover {
    background: #2D9BCE;
    color: #ffffff;
    border-color: #2D9BCE;
}

.ew-panel-header {
    flex-shrink: 0; /* Keeps header pinned at top */
}



.panel-main-title { 
    color: #ffffff; 
    font-size: 42px; 
    margin-bottom: 30px; 
    text-align: center;
    letter-spacing: 1px;
    font-weight: 700;
    text-transform: uppercase;
}

.panel-main-title span { 
    color: #2D9BCE; 
}

/* Scrollable Container Area */
.ew-grid-details { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 40px 60px; 
    width: 100%; 
    align-items: start;
    overflow-y: auto; /* Adds vertical scrollbar when content overflows */
    padding-right: 15px; /* Spacing so content doesn't overlap scrollbar */
}

/* Custom Scrollbar Styling */
.ew-grid-details::-webkit-scrollbar {
    width: 6px;
}

.ew-grid-details::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.ew-grid-details::-webkit-scrollbar-thumb {
    background: #2D9BCE;
    border-radius: 4px;
}

.ew-detail-item { 
    color: #ffffff; 
    border-left: 2px solid #2D9BCE; 
    padding-left: 25px;
}

.ew-num { 
    color: #2D9BCE; 
    font-size: 24px; 
    font-weight: 700;
    display: block; 
    margin-bottom: 4px; 
}

.ew-detail-item .detailtitle { 
    color: #ffffff;
    font-size: 20px; 
    margin-bottom: 12px; 
    letter-spacing: 0.5px;
    font-weight: 600;
}

.ew-detail-item p { 
    font-family: 'Inter', sans-serif;
    color: rgba(228, 236, 240, 0.85); 
    line-height: 1.7; 
    font-size: 14.5px;
    margin: 0;
}

/* Enhanced Hyperlink Visibility */
.ew-detail-item p a {
    color: #59c0f0;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
}

.ew-detail-item p a:hover {
    color: #ffffff;
}
/* --- LIGHTBOX VIDEO FRAME OVERLAY --- */
.ew-video-overlay {
    position: fixed; 
    inset: 0; 
    background: #0A1A2A; /* Soft dark customized architectural void backdrop space */
    z-index: 1000;
    display: none; 
    flex-direction: column;
}

.ew-video-close {
    background: #2D9BCE; /* Rebranded: High-contrast clear brand sky blue closure header label */
    border: none; 
    padding: 15px; 
    font-weight: 800; 
    cursor: pointer; 
    color: #ffffff;
    letter-spacing: 1.5px;
    transition: background 0.3s ease;
}

.ew-video-close:hover {
    background: #ffffff;
    color: #1E3A52;
}
/* --- RESPONSIVE MEDIA BREAKPOINTS --- */
@media (max-width: 991px) {
    .ew-wrapper { flex-direction: column; gap: 60px; }
    .ew-content-group { margin-right: 0; order: 2; width: 100%; }
    .ew-media-group { order: 1; width: 100%; }
    .ew-image-canvas { width: 100%; right: 0; height: 450px; }
    .ew-outline-frame { width: 100%; right: -15px; bottom: -20px; }
    .ew-grid-details { grid-template-columns: 1fr; gap: 30px; }
    .ew-text-card { padding: 30px; }
}

/* ==========================================================================
   ADVANCED RESPONSIVE MATRIX (TABLET, IPAD & MOBILE BREAKPOINTS)
   ========================================================================== */

/* --- 1. NOTEBOOKS & SMALL DESKTOPS --- */
@media (max-width: 1199px) {
    .ew-panel-content-wrapper {
        width: 100%;
        padding: 0 30px;
    }
    
    .ew-image-canvas {
        right: -30px; /* Neutralized extreme push-out to protect layouts */
        width: 90%;
    }
    
    .ew-text-card {
        padding: 60px 45px; /* Restructured micro-whitespace paddings */
    }
    
    .ew-title {
        font-size: 3rem;
    }
}

/* --- 2. IPADS & PORTRAIT TABLETS --- */
@media (max-width: 991px) {
    .expert-welcome {
        padding: 60px 0 80px 0; /* Balanced vertical breathing room */
    }

    .ew-wrapper {
        flex-direction: column !important; /* Forces strict linear document structure */
        gap: 50px;
    }

    /* Media Area Layout Corrections */
    .ew-media-group {
        order: 1 !important; /* Media takes semantic priority on smaller devices */
        width: 100%;
        max-width: 650px; /* Keeps the frame crisp on mid-size tablet devices */
        margin: 0 auto;
        padding: 0 15px;
    }

    .ew-image-canvas {
        width: 100% !important;
        height: 450px !important; /* Dynamic scale transition away from hardcoded desktop 700px */
        right: 0 !important;
        left: 0 !important;
        clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%); /* Softer angle presentation for wider banners */
    }

    .ew-outline-frame {
        width: 100%;
        height: 100%;
        bottom: -20px;
        right: -15px;
        clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
    }

    /* Content Area Layout Corrections */
    .ew-content-group {
        order: 2 !important;
        width: 100%;
        max-width: 650px;
        margin: 0 auto !important; /* Obliterates negative overlap margins safely */
        padding: 0 15px;
    }

    .ew-text-card {
        padding: 40px 35px;
        text-align: center; /* Optical center alignment matches vertical flow */
        box-shadow: 0 20px 50px rgba(0, 40, 66, 0.08);
    }

    .ew-eyebrow {
        text-align: center !important;
    }

    .ew-title {
        font-size: 2.4rem !important;
        margin-bottom: 20px;
    }

    .ew-lead {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .ew-para {
        font-size: 14px;
        margin-bottom: 35px;
    }

    .ew-btn-discover {
        margin: 0 auto; /* True center alignment for interactive CTA buttons */
    }

    /* Expandable Detail Panel Responsive Overrides */
    .ew-panel-close {
        top: 25px;
        right: 25px;
        padding: 10px 20px;
        font-size: 10px;
    }

    .panel-main-title {
        font-size: 36px;
        margin-top: 60px;
        margin-bottom: 40px;
    }

    .ew-grid-details {
        grid-template-columns: 1fr !important; /* Structural single row distribution grid */
        gap: 30px;
    }

    .ew-detail-item {
        border-left: 2px solid rgba(0, 164, 196, 0.4);
        padding-left: 20px;
    }
    
    .ew-detail-item h4 {
        font-size: 19px;
    }
}

/* --- 3. MOBILE SMARTPHONES --- */
@media (max-width: 575px) {
    .expert-welcome {
        padding: 40px 0 60px 0;
    }

    .ew-image-canvas {
        height: 320px !important; /* Native aspect optimization for phone viewports */
        clip-path: none !important; /* Removes clipping entirely on mobile to prevent layout issues */
        border-radius: 4px;
    }

    .ew-outline-frame {
        clip-path: none !important;
        border-radius: 4px;
        bottom: -12px;
        right: -12px;
    }

    .ew-text-card {
        padding: 35px 20px; /* Streamlined breathing borders for compact layouts */
    }

    .ew-title {
        font-size: 1.8rem !important; /* Clean scale prevents text clipping and broken line-breaks */
        line-height: 1.2;
    }

    .ew-lead {
        font-size: 15px;
    }

    .play-icon-wrap {
        width: 65px;
        height: 65px;
        font-size: 14px;
    }
    
    .panel-main-title {
        font-size: 28px;
    }
}


/* ==========================================================================
   KINETIC AMENITIES - REBRANDED MOUSE TRACKING MATRIX SPECIFICATION
   Property: Days Inn by Wyndham Wooster
   Theme: Clear Weather Sky & Pillar Midnight Blue
   Colors:
     - Deep Sky Midnight (#0A1A2A) -> Primary layout wrapper background
     - Pillar Midnight Blue (#1E3A52) -> Node backgrounds and secondary solid borders
     - Clear Weather Sky Blue (#2D9BCE / rgb(45 155 206)) -> Signature focus accent, tracking glow, and highlights
   ========================================================================== */

.kinetic-amenities {
    position: relative;
    padding: 60px 0;
    background: #0A1A2A; /* Rebranded: Dark systemic void space background */
    overflow: hidden;
    min-height: 730px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Base structural grid lines */
.kinetic-amenities::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(45, 155, 206, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(45, 155, 206, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center;
    mask-image: radial-gradient(circle, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle, black 40%, transparent 80%);
    pointer-events: none;
    z-index: 1;
}

/* --- THE RUNTIME RADIAL ILLUMINATION OVERLAY --- */
.kinetic-amenities::after {
    content: '';
    position: absolute;
    inset: 0;
    /* Rebranded: Tied explicitly to interactive Clear Weather Sky Blue tracking color matrices */
    background: radial-gradient(
        600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
        rgba(45, 155, 206, 0.08) 0%, 
        rgba(30, 58, 82, 0.04) 40%, 
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none; 
    z-index: 2;
}

/* Dynamic activation class thrown by JS */
.kinetic-amenities.mouse-inside::after {
    opacity: 1;
}

/* Ensure content sits cleanly on top of the lighting layers */
.ka-container {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 10;
    pointer-events: auto; 
}

.ka-watermark {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12vw;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: rgba(45, 155, 206, 0.008); /* Rebranded: Shadowy watermark background identity accent */
    z-index: 1;
    letter-spacing: 40px;
    pointer-events: none;
    text-transform: uppercase;
}

.ka-column {
    width: 100vw;
    height: 90px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
}

.ka-track {
    display: flex;
    flex-direction: row;
    gap: 35px;
    width: max-content;
    white-space: nowrap;
    will-change: transform;
}

.ka-node {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6); 
    background: rgba(30, 58, 82, 0.3); /* Rebranded: Base solid node containers path to midnight blue */
    border: 1px solid rgba(45, 155, 206, 0.15); 
    padding: 18px 32px;
    border-radius: 4px;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.ka-node span {
    font-size: 16px;
    color: #2D9BCE; /* Rebranded: Vector icons match sky blue accent */
    filter: drop-shadow(0 0 6px rgba(45, 155, 206, 0.35));
    transition: transform 0.4s ease;
}

.ka-node.ka-outline {
    background: transparent;
    border-style: dashed;
    border-color: rgba(45, 155, 206, 0.25);
}

.ka-hero { 
    text-align: center; 
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    position: relative;
    z-index: 15;
}

.ka-hero::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(45, 155, 206, 0.08) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.ka-eyebrow1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px; 
    letter-spacing: 6px; 
    color: #2d9bce; /* Rebranded: Clear Weather Sky Blue Header label */
    font-weight: 800; 
    display: block; 
    margin-bottom: 20px;
    text-transform: uppercase;
}

.ka-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 3.8rem);
    color: #ffffff;
    line-height: 1.2; 
    margin-bottom: 35px;
    font-weight: 800;
    text-transform: uppercase;
}

.ka-title span { 
    font-family: 'Montserrat', sans-serif !important;
    color: #2D9BCE !important; /* Rebranded: Bold inline emphasis blocks */
    font-weight: 800 !important;
}

.ka-badges {
    display: flex; 
    justify-content: center; 
    gap: 20px;
}

.badge {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px; 
    font-weight: 700; 
    color: #ffffff; 
    display: inline-flex; 
    align-items: center; 
    gap: 10px; 
    letter-spacing: 2px;
    border: 1px solid rgba(228, 236, 240, 0.1);
    background: rgba(228, 236, 240, 0.02);
    padding: 12px 24px;
    border-radius: 0px;
    border-left: 3px solid #2D9BCE; /* Rebranded: Dynamic color indicator rules */
    text-transform: uppercase;
}

.badge span {
    color: #2D9BCE;
}

.col-up .ka-track { animation: streamLeft 35s linear infinite; }
.col-down .ka-track { animation: streamRight 35s linear infinite; }
.ka-column:hover .ka-track { animation-play-state: paused; }

@keyframes streamLeft {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 17.5px)); }
}
@keyframes streamRight {
    from { transform: translateX(calc(-50% - 17.5px)); }
    to { transform: translateX(0); }
}

/* Target only the icon span, not the text span */
.ka-node .ka-icon {
    font-size: 16px;
    color: #2D9BCE; /* Rebranded: Vector icons match sky blue accent */
    filter: drop-shadow(0 0 6px rgba(45, 155, 206, 0.35));
    transition: transform 0.4s ease;
}

/* Ensure the text span retains its proper alignment and styles */
.ka-node span:not(.ka-icon) {
    display: inline-block;
}

/* Hover effect ONLY for the icon */
.ka-node:hover .ka-icon {
    color: #ffffff; 
    filter: none;
    transform: scale(1.1) rotate(360deg);
}
/* --- STABLE RESPONSIVE MATRIX OVERRIDES --- */
@media (max-width: 768px) {
    .kinetic-amenities { padding: 80px 0; min-height: auto; }
    .ka-hero { padding: 10px 24px; }
    .ka-badges { flex-direction: column; align-items: center; gap: 12px; }
    .badge { width: 100%; max-width: 280px; justify-content: center; }
    .ka-node { padding: 14px 22px; font-size: 13px; }
    .col-up .ka-track { animation-duration: 20s; }
    .col-down .ka-track { animation-duration: 20s; }
}
/* ==========================================================================
   REGIONAL PANORAMIC CONTROLLER - REBRANDED PRODUCTION DESIGN
   Property: Days Inn by Wyndham Wooster
   Colors: 
     - Deep Sky Midnight Base (#0A1A2A)
     - Pillar Midnight Blue (#1E3A52)
     - Clear Weather Sky Blue Accent (#2D9BCE)
   ========================================================================== */

.room-cinematic {
    background-color: #0A1A2A; /* Rebranded: Deep sky midnight background foundation */
    padding: 0;
    overflow: hidden;
    position: relative;
    font-family: 'Montserrat', sans-serif;
}

/* --- THE 50/50 PANORAMIC LAYOUT MATRIX --- */
.rc-container {
    max-width: 100%;
    margin: 0;
    position: relative;
    display: flex;
    flex-direction: row;
    min-height: 750px;
}

/* --- THE LEFT-SIDE CINEMASCOPE CANVAS --- */
.rc-visual-canvas {
    position: relative; 
    flex: 1.2;
    height: 750px;
    z-index: 1;
    background: #0A1A2A; /* Rich background contrast */
    overflow: hidden;
}

.rc-image-wrapper { 
    width: 100%; 
    height: 100%; 
    position: relative; 
}

.rc-image-wrapper img {
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    filter: brightness(0.9) contrast(1.05); /* Calibrated display parameters */
    transition: filter 0.6s cubic-bezier(0.19, 1, 0.22, 1), transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.rc-vignette {
    position: absolute; 
    inset: 0;
    /* Vignette gradients blend smoothly into the dark right-side interface card */
    background: linear-gradient(90deg, transparent 60%, rgba(10, 26, 42, 0.7) 100%);
    pointer-events: none; 
    z-index: 2;
}

/* --- VERTICAL SLIDE APERTURE (CONTRAST CURTAIN OVERLAYS) --- */
.rc-shutter-blade {
    position: absolute;
    left: 0; 
    width: 100%; 
    height: 0%;
    background: #1E3A52; /* Rebranded: Pillar Midnight Blue structural transition curtains */
    z-index: 15;
    transition: height 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

#shutter-l { 
    top: 0; 
    border-bottom: 2px solid #2D9BCE; /* Rebranded: Sky Blue tracking indicator rule */
}

#shutter-r { 
    bottom: 0; 
    border-top: 2px solid #2D9BCE; /* Rebranded: Sky Blue tracking indicator rule */
}

/* Animation state rule handled by JavaScript slide engine */
.room-cinematic.switching #shutter-l,
.room-cinematic.switching #shutter-r { 
    height: 50.5%; 
}

/* --- THE RIGHT-SIDE ARCHITECTURAL CONTROL CARD --- */
.rc-floating-card {
    position: relative; 
    z-index: 10;
    flex: 1;
    background: #0A1A2A; /* Rebranded: Unified deep midnight display card container */
    padding: 80px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid rgba(45, 155, 206, 0.12); /* Branded structural accent dividing line */
}

/* Structural Detail Frame Lines */
.rc-frame-corner {
    position: absolute; 
    background: rgba(45, 155, 206, 0.3); /* Rebranded: Sky Blue precision detailing frames */
}
.top-left { top: 40px; left: 40px; width: 40px; height: 1px; }

/* --- TYPOGRAPHY SYSTEMS --- */
.rc-card-inner {
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateY(0);
}

.rc-eyebrow {
    color: #2D9BCE; /* Rebranded: Signature sky blue eyebrow title accent */
    font-size: 11px; 
    font-weight: 800;
    text-transform: uppercase; 
    letter-spacing: 4px;
    display: inline-block; 
    margin-bottom: 20px;
    padding-bottom: 6px;
    border-bottom: 2px solid #2D9BCE;
}

.antique-title {
    font-size: 38px; 
    color: #ffffff; /* Rebranded: Clean stark white for maximum contrast visibility over midnight void */
    line-height: 1.2; 
    margin-bottom: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.rc-tags-row { 
    color: rgba(255, 255, 255, 0.6); /* Soft white midtone text properties */
    font-size: 13px; 
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 35px; 
    display: flex;
    align-items: center;
    gap: 8px;
}

.rc-tags-row::before {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    background: #2D9BCE; /* Rebranded: Sky blue list block accent bullets */
    border-radius: 50%;
}

.antique-copy {
    font-family: 'Inter', sans-serif;
    font-size: 15px; 
    color: rgba(255, 255, 255, 0.75); /* Clean architectural description body copy */
    line-height: 1.7;
    margin-bottom: 40px;
}

/* --- TECHNICAL SPECS MATRIX --- */
.rc-specs {
    border-top: 1px solid rgba(45, 155, 206, 0.15);
    border-bottom: 1px solid rgba(45, 155, 206, 0.15);
    padding: 25px 0; 
    margin-bottom: 45px;
    display: flex; 
    gap: 50px;
    justify-content: flex-start;
}

.spec-item {
    display: flex;
    flex-direction: column;
}

.spec-label { 
    font-size: 10px; 
    color: #2D9BCE; /* Rebranded: Sky blue parameter category labels */
    text-transform: uppercase; 
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-weight: 700;
}

.spec-value { 
    font-size: 18px; 
    color: #ffffff; 
    font-weight: 700; 
}

/* --- CONTROLLER FOOTER HUB --- */
.rc-footer { 
    display: flex; 
    align-items: center; 
    justify-content: flex-start; /* Groups everything to the left side */
    gap: 40px; /* Adjust spacing between the book button and nav group */
}

.rc-button-antique {
    background: transparent; 
    color: #ffffff; 
    padding: 18px 35px;
    text-decoration: none; 
    font-size: 12px; 
    font-weight: 800;
    letter-spacing: 2px; 
    text-transform: uppercase;
    border: 1px solid #2D9BCE; /* Rebranded: Clean accent boundary borders */
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease, border-color 0.4s ease;
}

.rc-button-antique::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 0%; height: 100%;
    background: #2D9BCE; /* Rebranded: Active fill block state */
    z-index: -1;
    transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.rc-button-antique:hover::before {
    width: 100%;
}

.rc-button-antique:hover {
    color: #ffffff; 
    border-color: #2D9BCE;
}

.rc-nav-group { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
}

.antique-btn {
    background: #1E3A52; /* Rebranded: Pillar Midnight Blue structural button base backgrounds */
    border: 1px solid rgba(45, 155, 206, 0.2); 
    color: #ffffff; 
    width: 46px; 
    height: 46px; 
    border-radius: 0px; 
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.antique-btn:hover { 
    background: #2D9BCE; /* Rebranded: Swaps cleanly to highlight sky blue on functional hover paths */
    border-color: #2D9BCE;
    color: #ffffff; 
}

.rc-counter-wrap { 
    color: rgba(255, 255, 255); 
    font-weight: 700; 
    display: flex; 
    align-items: center; 
    gap: 10px;
    font-size: 12px;
}

#curr-num {
    color: #2D9BCE; /* Rebranded: Sky Blue vector highlights for targeted room tracker slider metrics */
}

.counter-line { 
    width: 20px; 
    height: 1px; 
    background: rgba(45, 155, 206); 
}


/* --- MOBILE & IPAD RESPONSIVE SYSTEM OVERRIDES --- */
@media (max-width: 991px) {
    .rc-container { 
        flex-direction: column; 
    }
    .rc-visual-canvas { 
        width: 100%; 
        height: 400px; 
        flex: none;
    }
    .rc-vignette {
        background: linear-gradient(180deg, transparent 60%, rgba(252, 251, 249, 0.9) 100%);
    }
    .rc-floating-card { 
        width: 100%; 
        border-left: none;
        border-top: 1px solid rgba(0, 40, 66, 0.06);
        padding: 50px 30px; 
    }
    .top-left, .bottom-right { display: none; }
    .antique-title { font-size: 28px; }
    .rc-specs { gap: 30px; }
}

/* ==========================================================================
   KINETIC ATTRACTIONS MODULAR ACCORDION - DARK THEME MATRIX
   Property: Days Inn by Wyndham Wooster
   Colors: 
     - Deep Sky Midnight (#0A1A2A) -> Base deep canvas & resting panels
     - Pillar Midnight Blue (#1E3A52) -> Active panel backdrop overlay shifts
     - Clear Weather Sky Blue (#2D9BCE) -> High-contrast interactive focus lines & text tracks
   ========================================================================== */

.kinetic-attractions {
  position: relative;
  height: 750px;
  background: #0A1A2A; /* Rebranded: Deep sky midnight background foundation */
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
  padding: 0;
  margin: 0;
}

/* Outer layout wrapping constraints */
.ka-content-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row; /* Aligns accordion strips horizontally */
  align-items: stretch;
}

/* --- THE ACCORDION STRIP LAYER --- */
.ka-panel-strip {
  position: relative;
  flex: 1; /* All columns start with equal width */
  height: 100%;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px 30px;
  box-sizing: border-box;
  border-right: 1px solid rgba(45, 155, 206, 0.15); /* Rebranded: Sky Blue architectural divider rules */
  background-color: #0A1A2A;
  transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.ka-panel-strip:last-child {
  border-right: none;
}

/* --- THE KINETIC FOCUS STATE --- */
.ka-panel-strip.is-active {
  flex: 4; /* The selected node expands dynamically */
  cursor: default;
  background-color: #1E3A52; /* Rebranded: High-contrast Pillar Midnight Blue structural base card */
}

/* --- BACKGROUND FRAMES WITH DESATURATION --- */
.ka-strip-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) brightness(0.35); /* Deeper desaturation for resting state in dark mode */
  transform: scale(1);
  z-index: 1;
  transition: filter 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.ka-panel-strip.is-active .ka-strip-bg {
  filter: grayscale(30%) brightness(0.5); /* Color surfaces elegantly without blinding the content text */
  transform: scale(1.03);
}

/* Deep protective scrim masking text fields */
.ka-strip-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 26, 42, 0.85) 0%, rgba(10, 26, 42, 0.95) 100%);
  z-index: 2;
  opacity: 0.9;
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), background 0.6s ease;
}

.ka-panel-strip.is-active .ka-strip-scrim {
  /* Crisp linear vignette gradient favoring content visibility from left-to-right */
  background: linear-gradient(90deg, rgba(30, 58, 82, 0.98) 0%, rgba(30, 58, 82, 0.85) 50%, rgba(10, 26, 42, 0.4) 100%);
  opacity: 1;
}

/* --- STANDBY VERTICAL TYPOGRAPHY (The Closed State Label) --- */
.ka-vertical-header {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg); /* Beautiful rotated sidebar typography */
  transform-origin: center center;
  white-space: nowrap;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 15px;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.ka-panel-strip.is-active .ka-vertical-header {
  opacity: 0;
  transform: translate(-50%, -100%) rotate(-90deg);
}

.ka-v-num {
  font-size: 11px;
  font-weight: 800;
  color: #fff; /* Rebranded: Sky Blue high-visibility category tracker label */
  text-transform: uppercase;
  letter-spacing: 2px;
}

.ka-v-title {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85); /* High-contrast clean white readability */
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* --- THE REVEAL CONTENT ELEMENT BLOCK --- */
.ka-expanded-content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 460px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateX(-20px);
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.ka-panel-strip.is-active .ka-expanded-content {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  transition-delay: 0.2s; /* Delays animation until panel finishes expanding */
}

.ka-eyebrow {
  color: #fff; /* Rebranded: Clear Weather Sky Blue eyebrow accent track */
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
  display: block;
}

.ka-expanded-content h3 {
  font-size: 34px;
  font-weight: 900;
  color: #ffffff; /* Crisp white titles */
  text-transform: uppercase;
  line-height: 1.15;
  margin: 0 0 15px 0;
  letter-spacing: -0.5px;
}

.ka-expanded-content p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75); /* Clean architectural description body copy */
  line-height: 1.7;
  margin: 0 0 35px 0;
}

/* Clean Minimalist Outlined CTA Button */
.ka-btn {
  align-self: flex-start;
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid #2D9BCE; /* Rebranded: Outlined boundary border anchors to Sky Blue */
  padding: 14px 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.ka-btn:hover {
  background: #2D9BCE; /* Rebranded: Active state shifts completely into solid Sky Blue blocks */
  color: #ffffff; /* Keeps stark white text visibility on active hover states */
  border-color: #2D9BCE;
}



/* --- HIGH PERFORMANCE TABLET & MOBILE VIEWPORT ADJUSTMENTS --- */
@media (max-width: 991px) {
  .kinetic-attractions {
    height: auto;
  }

  .ka-content-wrapper {
    flex-direction: column; /* Transforms from vertical columns to flat stacked modules */
  }

  .ka-panel-strip {
    flex: none !important;
    width: 100%;
    height: auto;
    /* Sets a stable height budget so the background image is visible even when closed */
    min-height: 160px; 
    padding: 40px 25px;
    border-right: none;
    border-bottom: 1px solid rgba(0, 164, 196, 0.15);
    justify-content: center;
  }

  /* Keep the background images active and visible across all portable screen profiles */
  .ka-strip-bg { 
    display: block !important; 
    filter: grayscale(80%) brightness(0.25); /* Muted down color profile so it does not distract */
  }

  /* When the panel is tapped/expanded, bring back color vibrancy */
  .ka-panel-strip.is-active .ka-strip-bg {
    filter: grayscale(30%) brightness(0.4);
  }

  /* Protective layout mask overlay - blends from dark to transparent instead of flat solid black */
  .ka-strip-scrim {
    background: linear-gradient(180deg, rgba(0, 12, 20, 0.9) 0%, rgba(0, 12, 20, 0.7) 100%) !important;
    opacity: 1 !important;
  }

  /* Standard horizontal header placement for portable devices */
  .ka-vertical-header {
    position: relative;
    top: auto; 
    left: auto;
    transform: none !important; /* Discards rotation matrix safely */
    flex-direction: row;
    justify-content: flex-start;
    gap: 15px;
    width: 100%;
    pointer-events: auto;
    opacity: 1 !important;
  }

  .ka-panel-strip.is-active .ka-vertical-header {
    margin-bottom: 20px;
  }

  .ka-v-title { 
    font-size: 18px; 
    white-space: normal; /* Prevents overflow clipping on small screen layers */
  }

  .ka-expanded-content {
    max-width: 100%;
    height: auto;
    display: none;
    transform: none !important;
  }

  .ka-panel-strip.is-active .ka-expanded-content {
    display: flex;
  }
}
/* ==========================================================================
   CINEMATIC REVEAL & COLLAGE GALLERY - REBRANDED DESIGN MATRIX
   Property: Days Inn by Wyndham Wooster
   Colors: 
     - Deep Sky Midnight (#0A1A2A) -> Base canvas and overlay voids
     - Pillar Midnight Blue (#1E3A52) -> Structural interface bases
     - Clear Weather Sky Blue (#2D9BCE) -> High-visibility play components and accents
   ========================================================================== */

/* --- CINEMATIC REVEAL SECTION (60vh) --- */
.pro-cinematic {
    height: 60vh;
    position: relative;
    overflow: hidden;
    background: #0A1A2A; /* Rebranded: Seamlessly matches dark site void matrix */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Sticky Reveal Logic */
.reveal-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.4) saturate(0.75);
    z-index: 1;
}

/* Letterbox Frames (Top and Bottom) */
.cinema-frame {
    position: absolute;
    left: 0;
    width: 100%;
    height: 0%;
    background: #0A1A2A;
    z-index: 5;
}
.cinema-frame-top { 
    top: 0; 
    border-bottom: 1px solid rgba(45, 155, 206, 0.25); /* Rebranded: Sky Blue horizon separator rules */
}
.cinema-frame-bottom { 
    bottom: 0; 
    border-top: 1px solid rgba(30, 58, 82, 0.5); /* Rebranded: Structural Midnight Blue bounding tracks */
}

/* Glass-morphism Trigger Component */
.interface-layer {
    position: relative;
    z-index: 10;
}

.play-trigger {
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    background: rgba(10, 26, 42, 0.45); /* Soft deep blur backing */
    padding: 15px 40px 15px 15px;
    border-radius: 100px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(45, 155, 206, 0.3); /* Rebranded: Sky Blue glass boundaries */
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.glass-circle {
    width: 60px;
    height: 60px;
    background: #1E3A52; /* Rebranded: Pillar Midnight Blue structural button node */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(30, 58, 82, 0.4);
    transition: transform 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
}

.play-arrow {
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid #2D9BCE; /* Rebranded: Clean vector path uses Sky Blue */
    margin-left: 4px;
}

.trigger-labels {
    display: flex;
    flex-direction: column;
}

.small-tag {
    font-size: 10px;
    color: #2D9BCE; /* Rebranded: Sky Blue contextual category tracker */
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
}

.main-action {
    font-size: 18px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Interaction Hover States */
.play-trigger:hover {
    background: rgba(30, 58, 82, 0.4);
    transform: translateY(-5px);
    border-color: rgba(45, 155, 206, 0.8); /* Sharp glowing focus amplification on hover */
}

.play-trigger:hover .glass-circle {
    transform: scale(1.1) rotate(90deg);
    background: #2D9BCE; /* Rebranded: Plate element snaps completely into brilliant Sky Blue on hover activation */
    box-shadow: 0 0 25px rgba(45, 155, 206, 0.6);
}

.play-trigger:hover .play-arrow {
    border-left-color: #ffffff; /* Vector arrow turns stark white for maximum contrast over solid active sky blue state */
}

/* --- PROFESSIONAL MODAL SYSTEM --- */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.video-modal.is-active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 26, 42, 0.95); /* Deep Sky Midnight overlay backing structure */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    z-index: 10;
    transform: translateY(30px);
    transition: transform 0.4s ease;
}

.video-modal.is-active .modal-content {
    transform: translateY(0);
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: #000000;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.7);
}

.video-responsive iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.close-btn {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.close-btn:hover {
    color: #2D9BCE; /* Rebranded: Interface closer button shifts elegantly to Sky Blue accent tracks */
}
/* --- SPLIT CANVAS WRAPPER --- */
.cinematic-booking-split {
    display: grid;
    grid-template-columns: 1fr;
    background: #0A1A2A;
    min-height: 700px;
}

@media(min-width: 992px) {
    .cinematic-booking-split {
        grid-template-columns: 1.1fr 0.9fr; /* Left video side takes slightly more emphasis */
    }
    .pro-cinematic {
        height: auto !important; /* Overwrite original height for match-height sync */
    }
}

/* --- THE BRANDED INPUT SYSTEM --- */
.group-form-container {
    padding: 50px 40px;
    background: #0A1A2A;
    border-top: 1px solid rgba(45, 155, 206, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media(min-width: 992px) {
    .group-form-container {
        border-top: none;
        border-left: 1px solid rgba(45, 155, 206, 0.15);
        padding: 60px;
    }
}

.form-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    border-left: 4px solid #2D9BCE;
    padding-left: 15px;
    line-height: 1.2;
}

.form-title span {
    color: #2D9BCE;
    display: block;
    font-size: 16px;
    letter-spacing: 1px;
    margin-top: 4px;
}

.group-request-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media(min-width: 576px) {
    .form-grid { grid-template-columns: 1fr 1fr; }
}

.form-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media(min-width: 576px) {
    .form-grid-3 { grid-template-columns: 1fr 1fr 1fr; }
    .span-2 { grid-column: span 2; }
}

.form-divider {
    position: relative;
    text-align: center;
    margin: 15px 0 5px 0;
}

.form-divider::before {
    content: '';
    position: absolute;
    top: 50%; left: 0; right: 0;
    height: 1px;
    background: rgba(45, 155, 206, 0.15);
    z-index: 1;
}

.form-divider span {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #2D9BCE;
    background: #0A1A2A;
    padding: 0 15px;
    position: relative;
    z-index: 5;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

.form-group input, 
.form-group select {
    background: rgba(30, 58, 82, 0.2);
    border: 1px solid rgba(45, 155, 206, 0.2);
    border-radius: 4px;
    padding: 12px 16px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus, 
.form-group select:focus {
    border-color: #2D9BCE;
    background: rgba(30, 58, 82, 0.4);
    box-shadow: 0 0 10px rgba(45, 155, 206, 0.15);
}

/* Style for native date & select options wrappers */
.form-group select option {
    background: #0A1A2A;
    color: #ffffff;
}

/* --- INTERACTIVE ACTION BUTTON --- */
.form-submit-btn {
    margin-top: 10px;
    background: #2D9BCE;
    border: 1px solid #2D9BCE;
    color: #0A1A2A;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 16px;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(45, 155, 206, 0.2);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-submit-btn:hover {
    background: transparent;
    color: #2D9BCE;
    box-shadow: 0 15px 30px rgba(45, 155, 206, 0.3);
    transform: translateY(-2px);
}
/* ==========================================================================
   SPLIT 50/50 MASTER CONTAINER SYSTEM
   ========================================================================== */
.split-layout-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Exact 50/50 side-by-side break */
    width: 100%;
    background: #0A1A2A; /* Your primary layout dark background */
    overflow: hidden;
    min-height: 80vh;
}

/* --- LEFT SIDE: FAQ STYLING MODULE --- */
.split-faq-column {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #0A1A2A;
    border-right: 1px solid rgba(45, 155, 206, 0.1);
}

.faq-section-title {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    letter-spacing: 1px;
}

.brand-gradient-line.left-aligned {
    margin: 0 0 30px 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #1E3A52 50%, #2D9BCE 50%);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #1E3A52; /* Pillar Midnight Blue secondary solid fill */
    border: 1px solid rgba(45, 155, 206, 0.15);
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item.active {
    border-color: #2D9BCE; /* Highlights to Sky Blue when open */
}

.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-trigger:hover {
    background: rgba(45, 155, 206, 0.05);
}

.faq-icon {
    font-style: normal;
    font-size: 20px;
    color: #2D9BCE;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg); /* Turns the plus into a close indicator */
    color: #ffffff;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: rgba(10, 26, 42, 0.4);
}

.faq-item.active .faq-content {
    max-height: 200px; /* Gives plenty of room to expand cleanly */
}

.faq-content p {
    margin: 0;
    padding: 0 20px 20px 20px;
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.6;
}

/* --- RIGHT SIDE: GALLERY CONTROL ADJUSTMENTS --- */
.split-gallery-column {
    width: 100%;
    height: 100%;
    position: relative;
}

.collage-slider {
    width: 100%;
    height: 100%; /* Spans the full height assigned by the grid container */
}

.collage-col {
    height: 100%;
    padding: 4px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.collage-item {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #0A1A2A;
    cursor: pointer;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.collage-col.stacked { gap: 8px; }
.collage-col.stacked .collage-item { height: 50%; }

/* Overlay & Interaction Matrix profiles */
.item-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    background: linear-gradient(to top, rgba(10, 26, 42, 0.98) 0%, rgba(10, 26, 42, 0.5) 60%, transparent 100%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.item-info {
    text-align: center;
    transform: translateY(30px);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.collage-item:hover img { transform: scale(1.06); }
.collage-item:hover .item-overlay { opacity: 1; }
.collage-item:hover .item-info { transform: translateY(0); }

.gallery-label {
    color: #2D9BCE;
    font-weight: 800;
    letter-spacing: 3px;
    font-size: 10px;
    margin-bottom: 8px;
    display: block;
}

.item-overlay h3 {
    font-size: 1.4rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.item-overlay p {
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 90%;
}

.brand-gradient-line {
    width: 50px;
    height: 2px;
    margin: 0 auto 10px auto;
    background: linear-gradient(to right, #1E3A52 50%, #2D9BCE 50%); 
}

.collage-arrow {
    background: #1E3A52 !important;
    width: 45px !important;
    height: 45px !important;
    border: 1px solid rgba(45, 155, 206, 0.2);
    transition: all 0.3s ease;
}
.collage-arrow:hover { 
    background: #2D9BCE !important;
    border-color: #2D9BCE;
}
.collage-arrow:after { font-size: 14px !important; color: #ffffff !important; }

/* Dynamic Layout Multipliers for Column Sizing inside Slide Containers */
.collage-col.vertical { width: 70% !important; }
.collage-col.featured { width: 70% !important; }
.collage-col.stacked { width: 40.333% !important; }

/* --- LIGHTBOX MODAL --- */
.collage-lightbox {
    position: fixed;
    inset: 0;
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.collage-lightbox.is-visible { opacity: 1; visibility: visible; pointer-events: auto; }
.lightbox-overlay { position: absolute; inset: 0; background: rgba(10, 26, 42, 0.96); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); cursor: zoom-out; }
.lightbox-stage { position: relative; max-width: 85vw; max-height: 80vh; z-index: 20010; transform: scale(0.95); transition: transform 0.4s ease; }
.collage-lightbox.is-visible .lightbox-stage { transform: scale(1); }
.lightbox-stage img { max-width: 100%; max-height: 80vh; object-fit: contain; box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6); border: 1px solid rgba(45, 155, 206, 0.15); }
.lightbox-close { position: absolute; top: 30px; right: 40px; background: none; border: none; color: #ffffff; font-size: 45px; cursor: pointer; z-index: 20020; transition: color 0.3s ease; }
.lightbox-close:hover { color: #2D9BCE; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(30, 58, 82, 0.7); border: 1px solid rgba(45, 155, 206, 0.3); color: #ffffff; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; font-size: 20px; cursor: pointer; z-index: 20020; transition: all 0.3s ease; }
.lightbox-nav:hover { background: #2D9BCE; border-color: #2D9BCE; }
.lightbox-prev { left: 40px; }
.lightbox-next { right: 40px; }

/* ==========================================================================
   RESPONSIVE LAYOUT BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
    .split-layout-container {
        grid-template-columns: 1fr; /* Stack columns on tablets and mobile screens */
    }
    .split-faq-column {
        padding: 40px 25px;
    }
    .split-gallery-column {
        height: 60vh; /* Control maximum height limits when stacked */
    }
    .collage-col.vertical, .collage-col.featured, .collage-col.stacked { 
        width: 75% !important; /* Adjust slide display parameters on mobile tracks */
    }
}

/* --- UNIQUE WAYFINDER BACK TO TOP --- */
.mke-back-to-top {
  position: fixed;
  right: 40px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transform: translateY(20px);
}

/* State when scrolled down */
.mke-back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* The Growing Line (Aviation Needle) */
.mke-scroll-line {
  width: 1px;
  height: 0;
  background: linear-gradient(to top, #00acc1, transparent);
  transition: height 0.4s ease;
  margin-bottom: 15px;
}

.mke-back-to-top:hover .mke-scroll-line {
  height: 60px; /* Line grows on hover */
}

/* The Arrow & Text Wrap */
.mke-arrow-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #00acc1;
  transition: transform 0.3s ease;
}

.mke-top-text {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 5px;
  font-family: 'Montserrat', sans-serif;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;

}

.mke-arrow-wrap span {
  font-size: 18px;
  transition: all 0.3s ease;
}

/* Hover Animations */
.mke-back-to-top:hover .mke-top-text {
  opacity: 1;
  transform: translateY(0);
}

.mke-back-to-top:hover .mke-arrow-wrap span {
  transform: translateY(-5px); /* Arrow floats up */
  color: #ffffff;
}

/* Mobile Tweak */
@media (max-width: 768px) {
  .mke-back-to-top { right: 20px; bottom: 20px; }
  .mke-scroll-line { display: none; } /* Simpler on mobile */
}
/* ==========================================================================
   BRAND INTEGRATED FOOTER MASTER - REBRANDED DESIGN MATRIX
   Property: Days Inn by Wyndham Wooster
   Colors: 
     - Deep Sky Midnight (#0A1A2A) -> Core background foundation canvas
     - Pillar Midnight Blue (#1E3A52) -> Sidebar dividers and containers
     - Clear Weather Sky Blue (#2D9BCE) -> Structural titles and highlight states
   ========================================================================== */

.site-estate-footer {
    /* Matches the flat, immersive dark block layout from the screenshot */
    background: #0A1A2A; 
    position: relative;
    padding-top: 80px;
    color: #ffffff;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

/* BACKGROUND WATERMARK */
.footer-watermark {
    position: absolute;
    top: 50%;
    left: 50://;
    transform: translate(-50%, -50%);
    font-size: 6vw;
    font-weight: 800;
    /* Soft technical opacity stamp sinking cleanly behind data cards */
    color: rgba(255, 255, 255, 0.015); 
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.site-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4%;
    position: relative;
    z-index: 5;
}

/* --- IDENTITY PLATFORM --- */
.f-logo {
    height: auto;
    max-width: 180px; /* Precise layout sizing based on brand proportions */
    display: block;
    background: #ffffff; /* Contrast Protection canvas backing mask */
    padding: 12px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.f-logo:hover {
    transform: scale(1.03);
}

.footer-grid {
    display: grid;
    /* Optimized symmetrical grid columns mirroring the screenshot card layout */
    grid-template-columns: 1.2fr 0.9fr 1.1fr;
    gap: 70px;
    padding-bottom: 80px;
    align-items: start;
}

/* --- TYPOGRAPHY & BRAND ACCENTS --- */
.f-heading {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 35px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    text-decoration: none;
}

/* Brand Accent Underline Indicator Line */
.f-heading::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #2D9BCE; /* Rebranded: Clear Weather Sky Blue structural line */
}

.f-tagline {
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    font-size: 14px;
    margin: 25px 0 0 0;
}

/* --- INTERACTIVE NAVIGATION LAYOUT --- */
.link-columns { 
    display: flex; 
    gap: 50px; 
}

.f-list { 
    list-style: none; 
    padding: 0; 
    margin: 0;
}

.f-list li { 
    margin-bottom: 16px; 
}

.f-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.f-list a:hover { 
    color: #2D9BCE; /* Rebranded: Changes directly to Sky Blue on tracking states */
    transform: translateX(4px); 
}

/* Custom Highlight Anchor Configurations */
.brand-teal-cta {
    color: #2D9BCE !important; 
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Social Icon Footprints */
.f-socials {
    margin-top: 25px;
    display: flex;
    gap: 12px;
}

.f-socials a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: rgba(255, 255, 255, 0.03);
    text-decoration: none;
}

.f-socials a:hover {
    border-color: #2D9BCE; /* Highlights to crisp Sky Blue */
    background: #2D9BCE;
    color: #0A1A2A; /* Inverts vector icon layout back against deep theme background void */
    transform: translateY(-4px);
}

/* --- THE CONCIERGE SPECIFICATION DATA CARD --- */
.contact-ledger-card {
    background: rgba(30, 58, 82, 0.2); /* Integrated semi-transparent Pillar Midnight layer */
    padding: 35px;
    border: 1px solid rgba(45, 155, 206, 0.15); /* Soft technical frame halo edge */
    border-left: 3px solid #2D9BCE; /* Highlights the vertical axis boundary */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.contact-row { 
    display: flex; 
    gap: 18px; 
    margin-bottom: 22px; 
    align-items: flex-start;
}
.cgsl{
     color: #2D9BCE; /* Direct icon vector map anchor points colorized to Sky Blue */
    font-size: 16px; 
    text-decoration: none;
}
.contact-row:last-child { 
    margin-bottom: 0; 
}

.contact-row span { 
    color: #2D9BCE; /* Direct icon vector map anchor points colorized to Sky Blue */
    font-size: 16px; 
    margin-top: 3px; 
}

.contact-row p, .contact-row a { 
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.85); 
    text-decoration: none; 
    font-size: 14px; 
    line-height: 1.6; 
    margin: 0;
    transition: color 0.3s ease;
}

.contact-row a:hover {
    color: #2D9BCE;
}

/* --- BOTTOM LEGAL BASE ESTATE FOOTER FLOOR --- */
.estate-bar {
    background: #06121F; /* Slightly deeper tint for absolute visual grounding */
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* Spatial Balance Allocations */
.bar-content .ownership {
    flex: 2;
    margin: 0;
    text-align: left;
}

.bar-content .legal-links {
    flex: 1;
    display: flex;
    white-space: nowrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.bar-content .credit {
    flex: 1.2;
    text-align: right;
    margin: 0;
}

/* Footer Link Actions & States */
.legal-links a, .credit a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.legal-links a:hover, .credit a:hover { 
    color: #2D9BCE; /* Clean baseline unified hover color parameter */
}

.bar-sep { 
    color: rgba(45, 155, 206); /* Dotted dividers shift to a muted Sky Blue shade */
    font-weight: bold;
}

/* RESPONSIVE CONTROL PANEL MATRICES */
@media (max-width: 1150px) {
    .footer-grid { 
        grid-template-columns: 1fr 1fr; 
        gap: 40px; 
    }
    .footer-col.brand-vault { 
        grid-column: span 2; 
    }
}

@media (max-width: 768px) {
    .site-estate-footer { padding-top: 60px; }
    .footer-grid { grid-template-columns: 1fr; gap: 45px; padding-bottom: 50px; }
    .footer-col.brand-vault { grid-column: span 1; }
    .link-columns { gap: 30px; justify-content: space-between; }
    .contact-ledger-card { padding: 25px; }
    .bar-content { flex-direction: column; gap: 20px; text-align: center; }
    .bar-content .credit { text-align: center; }
}
/* ==========================================================================
   ARCHITECTURAL SCROLL WAYFINDER - REBRANDED DESIGN MATRIX
   Property: Days Inn by Wyndham Wooster
   Colors: 
     - Deep Sky Midnight (#0A1A2A) -> Base page depth profiles
     - Pillar Midnight Blue (#1E3A52) -> Solid track frameworks & backings
     - Clear Weather Sky Blue (#2D9BCE) -> Glowing progress tracks & interaction text
   ========================================================================== */

.mke-back-to-top {
    position: fixed;
    right: 40px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 19999; /* Confidently layered above typical container layouts */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Visibility State Triggered by Scroll Progress */
.mke-back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Vertical Elevation Gauge Track */
.mke-gauge-track {
    width: 2px;
    height: 60px;
    background: rgba(30, 58, 82, 0.4); /* Rebranded: Clean track foundation via Pillar Midnight */
    position: relative;
    margin-bottom: 12px;
    overflow: hidden;
    border-radius: 1px;
}

/* Dark Layout Fallback (Maintains contrast rules over the Deep Sky Midnight footer block) */
.site-estate-footer ~ .mke-back-to-top .mke-gauge-track {
    background: rgba(255, 255, 255, 0.1);
}

/* Dynamic Fill Bar Linked to JavaScript Percentage Tracker */
.mke-gauge-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%; /* Live recalculations handled by script */
    background: linear-gradient(to top, #2D9BCE, #1E3A52); /* Rebranded: Seamless Sky Blue rising up into Midnight */
    transition: height 0.1s linear;
}

/* Interactive Label Content Stack */
.mke-arrow-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.mke-top-text {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff; /* Rebranded: Sky Blue minimal tracking text */
   
    margin-bottom: 6px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-transform: uppercase;
}

/* The Core Icon Housing Button */
.mke-icon-box {
    width: 44px;
    height: 44px;
    background: #1E3A52; /* Rebranded: Solid structural base block set to Pillar Midnight */
    border: 1px solid rgba(45, 155, 206, 0.3); /* Rebranded: Outlined clean Sky Blue frame edge */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mke-icon-box span {
    font-size: 14px;
    color: #ffffff; /* Clean high-contrast white vector point */
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* --- MOTION INTERACTION HOVER STATES --- */
.mke-back-to-top:hover .mke-top-text {
    opacity: 1;
    transform: scale(1);
}

.mke-back-to-top:hover .mke-icon-box {
    background: #2D9BCE; /* Rebranded: Changes completely to Sky Blue on viewport interaction */
    border-color: #2D9BCE;
    box-shadow: 0 12px 30px rgba(45, 155, 206, 0.4);
    transform: translateY(-4px);
}

.mke-back-to-top:hover .mke-icon-box span {
    color: #0A1A2A; /* Flips arrow icon cleanly to deep dark midnight for immediate legibility */
    transform: translateY(-2px);
}


/* --- RESPONSIVE MOBILE OVERRIDES --- */
@media (max-width: 768px) {
    .mke-back-to-top {
        right: 20px;
        bottom: 25px;
    }
    .mke-gauge-track {
        display: none; /* Safely hides vertical line elements on mobile layouts */
    }
    .mke-top-text {
        display: none;
    }
    .mke-icon-box {
        width: 40px;
        height: 40px;
        background: #1E3A52;
        border-color: #2D9BCE;
    }
}
/* --- Accessibility Banner Styling --- */
.accessibility-assistance-row {
    width: 100%;
    background-color: #0A1A2A; /* Updated: Matches your dark system canvas layout color */
    padding: 18px 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(45, 155, 206, 0.15); /* Clean architectural accent border line */
}

.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: 16px; 
    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 */
    font-family: 'Montserrat', sans-serif; /* Aligned to system brand typography typography */
}

/* High Contrast Phone Link Element */
.accessibility-phone-link {
    color: #2D9BCE; /* Updated: Matches your layout's core corporate teal-blue color */
    text-decoration: none;
    font-weight: 700;
    margin-left: 4px;
    display: inline-block;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.accessibility-phone-link:hover,
.accessibility-phone-link:focus {
    color: #ffffff; /* Updated: Clean inversion state matching layout behaviors */
    background-color: #1E3A52; /* Updated: Deep complementary blue wrapper highlighting accent */
    border-radius: 3px;
    padding: 0 4px;
    text-decoration: underline;
    outline: none; 
}

/* ==========================================================================
   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;
        padding: 0; /* Clear padding wrapper for safe inline flow on mobile layout */
    }
}
/* --- Amenities Page Content Presentation Grid Layout --- */
.amenities-display-section {
    width: 100%;
    background-color: #0A1A2A; /* Main deep dark layer canvas background */
    padding: 40px 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: 50px;
}

.amenities-main-title {
    color: #ffffff; /* Crisp white header definition */
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 16px 0;
    position: relative;
    padding-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Brand split-gradient border layout line below main title */
.amenities-main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #1E3A52 50%, #2D9BCE 50%); /* Signature dual-brand color accent stripe */
}

.amenities-main-desc {
    max-width: 1280px; /* Constrained column footprint for enhanced readability */
    margin: 30px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.amenities-main-desc p {
    color: rgba(255, 255, 255); /* Soft white readability contrast */
  
    font-size: 18px;
    line-height: 1.75;
    margin: 0;
    text-align: center;
}

.amenities-main-desc p a{
    color: rgba(255, 255, 255); /* Soft white readability contrast */
   text-decoration: none;
   font-weight: bold;
}

/* Highlights Box Row styles */
.amenities-highlights-bar {
    background: #1E3A52; /* Midnight blue structural fill panel */
    padding: 35px 30px;
    border-radius: 6px;
    margin-bottom: 50px;
    border: 1px solid rgba(45, 155, 206, 0.15);
    box-shadow: 0 10px 30px rgba(10, 26, 42, 0.3);
}

.highlight-title {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    margin: 0 0 24px 0;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Changed from Flex to Grid for strict 3-column arrangement */
.highlight-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Equal structural columns */
    gap: 16px 20px; /* Explicit row and column gaps */
}

.highlight-badges span {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(10, 26, 42, 0.4); /* Dark composite embedded fill */
    padding: 12px 16px; /* Slightly increased vertical padding for grid balance */
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: border-color 0.3s ease, background-color 0.3s ease;
    box-sizing: border-box;
}

.highlight-badges span:hover {
    border-color: rgba(45, 155, 206, 0.4);
    background: rgba(10, 26, 42, 0.6);
}

/* FontAwesome span compliance fix */
.highlight-badges span .fa-solid {
    color: #2D9BCE; /* Deep sky blue icon highlights */
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", sans-serif;
    font-weight: 900; /* Required for solid variant generation */
    display: inline-block;
    width: 50px; /* Fixed width prevents text alignment shifting */
    text-align: center;
}

/* Mobile Responsive Override */
@media (max-width: 768px) {
    .highlight-badges {
        grid-template-columns: 1fr; /* Drops down to a clean single column list on mobile viewports */
        gap: 10px;
    }
}

/* Core Multi-Column Amenities Grid Component */
.amenities-grid-system {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Equal structural columns */
    gap: 30px;
}

/* Card Component Formatting Rules */
.amenity-category-card {
    background-color: #1E3A52; /* Matching dark core container fills */
    border: 1px solid rgba(45, 155, 206, 0.15);
    border-top: 4px solid #1E3A52; /* Controlled baseline color */
    border-radius: 6px;
    padding: 30px 25px;
    box-sizing: border-box;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.amenity-category-card:hover {
    transform: translateY(-4px);
    border-color: rgba(45, 155, 206, 0.4);
    box-shadow: 0 12px 30px rgba(10, 26, 42, 0.5);
}

/* Highlight the ADA/Policy card using the light sky blue accent */
.amenity-category-card.policy-card {
    border-top-color: #2D9BCE;
}

.card-title-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(45, 155, 206, 0.15);
    padding-bottom: 14px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
}

/* Replaced i selector with span tracker */
.card-title-wrapper .fa-solid {
    font-size: 18px;
    color: #2D9BCE;
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", sans-serif;
    font-weight: 900;
    display: inline-block;
}

.amenity-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.amenity-list li {
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

/* Replaced i selector with list span checkmarks */
/* Update the core checklist item icon selector */
.amenity-list li .fa-solid {
    color: #2D9BCE;
    font-size: 13px;
    margin-top: 4px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", sans-serif;
    font-weight: 900;
    display: inline-block;
}

.policy-note {
    font-size: 13px;
    color: rgba(255, 255, 255);
    line-height: 1.5;
    display: block;
    margin-top: 5px;
}

/* Responsive Adaptive Viewport Layout Changes */
@media (max-width: 1024px) {
    .amenities-grid-system {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns on medium tablets */
        gap: 25px;
    }
    .amenities-display-section {
        padding: 60px 20px;
    }
}

@media (max-width: 768px) {
    .amenities-grid-system {
        grid-template-columns: 1fr; /* Single column linear flow on smartphones */
        gap: 20px;
    }
    
    .amenities-main-title {
        font-size: 28px;
    }
    
    .highlight-badges {
        flex-direction: column;
        gap: 10px;
    }

    .highlight-badges span {
        width: 100%; /* Spans full horizontal container area cleanly on mobile tracks */
        box-sizing: border-box;
    }
}
/* --- Featured Amenities Image & Description Cards --- */
.featured-amenities-wrapper {
    margin-top: 60px;
}

.featured-section-title {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.5px;
}

.featured-amenity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.featured-amenity-card {
    background-color: #1E3A52;
    border: 1px solid rgba(45, 155, 206, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
    border-color: rgba(45, 155, 206, 0.5);
}

.featured-img-wrap {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.featured-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-amenity-card:hover .featured-img-wrap img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(10, 26, 42, 0.85);
    color: #2D9BCE;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid rgba(45, 155, 206, 0.3);
}

.featured-content {
    padding: 22px;
}

.featured-content h4 {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.featured-content p {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .featured-amenity-grid {
        grid-template-columns: 1fr;
    }
}
/* --- Unique Inner Page Hero Section Structure --- */
.inner-hero-section {
    position: relative;
    width: 100%;
    height: 80vh; /* Scaled down slightly from index hero for fast content access */
    min-height: 480px;
    background: #0A1A2A; 
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
}

/* --- THE SINGLE BACKGROUND ASYMMETRIC CANOPY --- */
.inner-hero-bg-canopy {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    clip-path: circle(0% at 50% 50%);
    animation: innerCanopyReveal 1.4s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.inner-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45) contrast(1.05); /* Slightly darker mask to elevate content contrast */
    transform: scale(1.15);
    animation: innerImgScale 1.4s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

/* --- TYPOGRAPHIC CONTENT FRAME CONTAINER --- */
.inner-hero-content-hull {
    position: relative;
    width: 100%;
    z-index: 5;
    padding: 0 10%;
    margin-top: 120px;
}

.inner-hero-inner-bounds {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; 
    gap: 40px;
    align-items: center;
}

/* Left Heading Block Lift Animation */
.inner-hero-header-block {
    opacity: 0;
    transform: translateY(40px);
    animation: innerBlockLift 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

/* Premium Breadcrumb Architecture */
.inner-hero-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.inner-hero-breadcrumbs a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.inner-hero-breadcrumbs a:hover {
    color: #2D9BCE;
}

.inner-hero-crumb-separator {
    color: rgba(45, 155, 206);
}

.inner-hero-current-crumb {
    color: #ffffff;
}

.inner-hero-title {
    font-size: clamp(2.2rem, 3.8vw, 4.2rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    text-transform: uppercase;
    margin: 0;
}

.inner-hero-title em {
    font-style: normal;
    color: #2D9BCE; /* Premium Accent Color Focus Point */
}

/* Right Feature Callout Block Animation */
.inner-hero-body-block {
    opacity: 0;
    transform: translateY(40px);
    animation: innerBlockLift 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
    display: flex;
    justify-content: flex-end;
}

/* Contextual Feature Overlay Card Panel */
.inner-hero-info-card {
    background: rgba(30, 58, 82, 0.45); /* Blended #1E3A52 layer translucency */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(45, 155, 206, 0.2);
    padding: 30px;
    border-radius: 6px;
    max-width: 380px;
    box-shadow: 0 15px 35px rgba(10, 26, 42, 0.4);
}

.inner-hero-card-tagline {
    display: block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #2D9BCE;
    margin-bottom: 12px;
}

.inner-hero-card-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 20px 0;
}

.inner-hero-quick-specs {
    display: flex;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.inner-hero-quick-specs span {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 6px;
}

.inner-hero-quick-specs span .fa-solid {
    color: #2D9BCE;
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", sans-serif;
    font-weight: 900;
}

/* --- MOTION PHYSICS ENGINES (ANIMATIONS) --- */
@keyframes innerCanopyReveal {
    to { clip-path: circle(150% at 50% 50%); }
}

@keyframes innerImgScale {
    to { transform: scale(1); }
}

@keyframes innerBlockLift {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- VIEWPORT RESPONSIVENESS OVERRIDES --- */
@media (max-width: 991px) {
    .inner-hero-section {
        height: auto;
        padding: 120px 0 80px 0; /* Dynamic clear-space protection for fixed navigation bars */
    }
    
    .inner-hero-inner-bounds {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .inner-hero-body-block {
        justify-content: flex-start;
    }

    .inner-hero-info-card {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .inner-hero-content-hull {
        padding: 0 20px;
    }
    .inner-hero-title {
        font-size: 28px;
    }
}
/* --- Unique Orbital Matrix Attractions Panel Style Rules --- */
.orbital-attractions-section {
    width: 100%;
    background-color: #0A1A2A; 
    padding: 90px 20px;
    box-sizing: border-box;
    overflow: hidden;
}

.orbital-canvas-wrapper {
    width: 1320px;
    max-width: 100%;
    margin: 0 auto;
}

/* Header Text Rules */
.orbital-header-block {
    text-align: center;
    margin-bottom: 60px;
}

.orbital-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #2D9BCE;
    display: block;
    margin-bottom: 12px;
}

.orbital-main-title {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    margin: 0 auto 20px auto;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.orbital-main-title em a{
    font-style: normal;
    color: #2D9BCE;
    text-decoration: none;
}

.orbital-main-desc {
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255);
    font-size: 17px;
    line-height: 1.75;
    max-width: 1280px;
    margin: 0 auto;
}
.orbital-main-desc a{
   text-decoration: none;
   font-weight: bold;
    color: rgba(255, 255, 255);
    
}

/* The Horizontal Accordion Grid System */
.orbital-matrix-container {
    display: flex;
    width: 100%;
    height: 550px;
    gap: 16px;
    align-items: stretch;
}

/* Individual Card Blocks */
.orbital-card {
    position: relative;
    flex: 1;
    background: #1E3A52;
    border: 1px solid rgba(45, 155, 206, 0.15);
    border-radius: 12px;
    padding: 35px 25px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    box-sizing: border-box;
    transition: flex 0.8s cubic-bezier(0.25, 1, 0.3, 1), 
                border-color 0.4s ease, 
                box-shadow 0.4s ease;
}

/* Interactive Column Sizing */
.orbital-card.active {
    flex: 3.2;
    border-color: rgba(45, 155, 206, 0.5);
    box-shadow: 0 20px 45px rgba(5, 15, 25, 0.7);
}

/* Radial Image Canvas Layer */
.orbital-parallax-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    opacity: 0.04;
    transform: scale(1.15);
    filter: grayscale(1) contrast(1.1);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.3, 1), filter 0.8s ease;
}

.orbital-card.active .orbital-parallax-bg {
    opacity: 0.18;
    transform: scale(1);
    filter: grayscale(0) contrast(1);
}

/* Gradient Mask Protection for Content Elements */
.orbital-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,26,42,0.95) 0%, rgba(10,26,42,0.2) 100%);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.orbital-card.active::after {
    opacity: 1;
}

/* Dynamic Radial Timer Track Indicator Components */
.orbital-progress-ring {
    position: relative;
    width: 44px;
    height: 44px;
    z-index: 5;
    flex-shrink: 0;
}

.ring-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 2;
}

.ring-fill {
    fill: none;
    stroke: #2D9BCE;
    stroke-width: 2.5;
    stroke-linecap: round;
    transition: stroke-dasharray 0.8s cubic-bezier(0.25, 1, 0.3, 1);
}

.orbital-num {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255);
    transition: color 0.4s ease;
}

.orbital-card.active .orbital-num {
    color: #ffffff;
}

/* Card Content Blocks */
.orbital-card-content {
    position: relative;
    z-index: 5;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.orbital-category {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
    
    transition: opacity 0.4s ease, margin-bottom 0.5s ease;
}

.orbital-card.active .orbital-category {
    opacity: 1;
    margin-bottom: 12px;
}

.orbital-category .fa-solid {
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", sans-serif;
    font-weight: 900;
}

/* --- KINETIC VERTICAL / HORIZONTAL TITLE ENGINE --- */
.orbital-title {
    font-family: 'Montserrat', sans-serif;
    color: rgba(255, 255, 255, 0.85);
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
    
    /* Force title layout along a vertical reading path when static */
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    transform-origin: center center;
    align-self: center;
    
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.3, 1), 
                color 0.4s ease, 
                writing-mode 0.4s steps(1, end);
}

/* Restore title structural properties seamlessly on interaction */
.orbital-card.active .orbital-title {
    color: #ffffff;
    writing-mode: horizontal-tb;
    transform: rotate(0deg);
    align-self: flex-start;
    white-space: normal;
}

/* Kinetic Mask Unfolding Content Mechanics */
.orbital-body-reveal {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.7s cubic-bezier(0.25, 1, 0.3, 1), margin-top 0.5s ease;
}

.orbital-card.active .orbital-body-reveal {
    grid-template-rows: 1fr;
    margin-top: 15px;
}

.orbital-body-reveal p {
   
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    overflow: hidden;
}

/* --- Responsive Layout Modifications --- */
@media (max-width: 1024px) {
    .orbital-matrix-container {
        height: 500px;
    }
    .orbital-title {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .orbital-matrix-container {
        display: flex;
        flex-direction: column;
        height: auto;
        gap: 16px;
    }
    .orbital-card {
        flex: none !important;
        width: 100%;
        height: auto;
        min-height: 130px;
        padding: 25px;
    }
    /* Disable vertical structural transformation entirely on mobile layouts for clear viewing maps */
    .orbital-title {
        writing-mode: horizontal-tb !important;
        transform: rotate(0deg) !important;
        align-self: flex-start !important;
        white-space: normal !important;
    }
    .orbital-category {
        margin-bottom: 10px !important;
    }
    .orbital-body-reveal {
        grid-template-rows: 0fr !important;
        margin-top: 0 !important;
    }
    .orbital-card.active .orbital-body-reveal {
        grid-template-rows: 1fr !important;
        margin-top: 12px !important;
    }
    .orbital-progress-ring {
        margin-bottom: 15px;
    }
}
/* Base Smooth Behavior */
html {
    scroll-behavior: smooth;
}

/* --- Premium Unique Proximity Dual-Pane Layout --- */
.proximity-explorer-section {
    width: 100%;
    background-color: #faf9f5;
    padding: 80px 20px;
    box-sizing: border-box;
}

.explorer-wrapper-container {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

/* Sidebar Dock Setup */
.explorer-sidebar-dock {
    width: 300px;
    flex-shrink: 0;
}

.sidebar-sticky-element {
    position: sticky;
    top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    z-index: 100;
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-header span.fa-solid {
    font-size: 20px;
    color: #0086da;
}

.sidebar-header h2 {
    margin: 0;
    font-size: 22px;
    color: #012b55;
    font-weight: 700;
}

.sidebar-nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-left: 2px solid #e1e5eb;
    padding-left: 0;
}

.nav-anchor {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #012b55;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-left: 2px solid transparent;
    margin-left: -2px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.nav-anchor span.fa-solid {
    width: 20px;
    text-align: center;
}

.nav-anchor:hover, .nav-anchor.active {
    color: #012b55;
    border-left-color: #0086da;
    background-color: rgba(0, 134, 218, 0.04);
}

/* Content Pane Stream */
.explorer-content-stream {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.explorer-group-pane {
    scroll-margin-top: 40px;
}

.pane-group-title {
    margin: 0 0 25px 0;
    font-size: 24px;
    color: #012b55;
    font-weight: 700;
    border-bottom: 2px solid #e1e5eb;
    padding-bottom: 12px;
}

.explorer-rows-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background-color: #e1e5eb;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(1, 43, 85, 0.03);
}

.explorer-item-row {
    background-color: #ffffff;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    transition: background-color 0.2s ease;
}

.explorer-item-row:hover {
    background-color: #fcfbfa;
}

.item-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.item-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color:  #012b55;
    letter-spacing: 0.5px;
}

.item-heading {
    margin: 0;
    font-size: 18px;
    color: #012b55;
    font-weight: 700;
}

/* Distance micro-bars engine */
.item-distance-metric {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    width: 140px;
    flex-shrink: 0;
}

.distance-text {
    font-size: 14px;
    font-weight: 700;
    color: #012b55;
}

.distance-progress-track {
    width: 100%;
    height: 4px;
    background-color: #e1e5eb;
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background-color: #0086da;
    border-radius: 2px;
}

.progress-bar.accent {
    background-color: #012b55;
}

/* Responsive UI Engine */
@media (max-width: 992px) {
    .explorer-wrapper-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .explorer-sidebar-dock {
        width: 100%;
    }
    
    .sidebar-sticky-element {
        position: sticky;
        top: 0; /* Sticks to the top of the viewport on tablet/mobile */
        background-color: #faf9f5;
        padding: 15px 0;
        z-index: 100;
    }
    
    .sidebar-header {
        display: none; /* Keeps layout clean on smaller views */
    }
    
    /* MODIFIED: Changed from flex row to an elegant responsive grid */
    .sidebar-nav-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Generates 2 equal columns on tablets */
        gap: 10px;
        border-left: none;
        padding-left: 0;
    }
    
    .nav-anchor {
        border: 1px solid #e1e5eb;
        border-radius: 4px;
        padding: 12px 14px;
        white-space: nowrap;
        background-color: #ffffff;
        justify-content: center; /* Centers text and icon inside the grid item box */
    }
    
    .nav-anchor:hover, .nav-anchor.active {
        border-color: #0086da;
    }
    
    .explorer-group-pane {
        scroll-margin-top: 150px; /* Increased offset to accommodate the 2-row sticky grid layout */
    }
}

@media (max-width: 576px) {
    /* OPTIONAL: Changes grid down to 1 item per row on very small smartphones if desired, 
       or keep it at 'repeat(2, 1fr)' for a tighter compact layout */
    .sidebar-nav-links {
        grid-template-columns: repeat(2, 1fr); 
    }
    
    .nav-anchor {
        font-size: 13px; /* Slightly drops text size so labels fit on small mobile views */
        padding: 10px 8px;
        gap: 8px;
    }

    .explorer-item-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .item-distance-metric {
        width: 100%;
        align-items: flex-start;
    }
}
/* --- Asymmetric Luxury Destination Panel Styles --- */
.asymmetric-destination-section {
    width: 100%;
    background-color: #ffffff;
    padding: 100px 20px;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.destination-grid-container {
    width: 1280px;
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: start;
}

/* Identity Column Left */
.destination-identity-column {
    display: flex;
    flex-direction: column;
}

.destination-meta-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #012b55;
    margin-bottom: 10px;
}

.destination-main-title {
    color: #012b55;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 44px;
    font-weight: 700;
    margin: 0 0 35px 0;
    line-height: 1.15;
}

.destination-main-title span a{
    color: #0086da;
    display: block;
    font-size: 38px;
    margin-top: 5px;
    text-decoration: none;
}

/* Floating Interactive Command Badge Setup */
.interactive-command-badge {
    background-color: #012b55;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 20px 40px rgba(1, 43, 85, 0.12);
    margin-bottom: 40px;
    position: relative;
}

.badge-coordinates-strip {
    display: flex;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 18px;
    margin-bottom: 18px;
}

.coord-pill {
    background-color: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 13px;
}

.coord-pill span.fas {
    color: #0086da;
}

.badge-router-ui h3 {
    margin: 0 0 12px 0;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-router-ui h3 span {
    color: #0086da;
}
/* Visually hides elements while keeping them readable by screen readers & accessibility scanners */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
.input-glow-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: 6px;
    padding: 4px;
    overflow: hidden;
}

.input-glow-wrapper input[type="text"] {
    width: 100%;
    border: none;
    outline: none;
    padding: 12px 16px;
    font-size: 14px;
    color: #333333;
    background: transparent;
}

.input-glow-wrapper button {
    background-color: #0086da;
    color: #ffffff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.input-glow-wrapper button:hover {
    background-color: #006eb3;
    transform: translateX(2px);
}

/* Editorial Body Text Layout */
.destination-editorial-body {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.destination-editorial-body p {
    color: #000;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.destination-editorial-body a {
    color: #012b55;
    text-decoration: none;
    font-weight: bold;
}

/* Right Side Map Frame Column Layout */
.destination-viewport-column {
    position: sticky;
    top: 40px;
}

.cinematic-map-frame {
    width: 100%;
    height: 520px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e1e5eb;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    background-color: #faf9f5;
}

.address-footer-plate {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
    padding: 15px 20px;
    background-color: #faf9f5;
    border: 1px solid #e1e5eb;
    border-radius: 6px;
}

.address-footer-plate span {
    color: #012b55;
    font-size: 16px;
}

.address-footer-plate p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #444444;
}

/* --- Responsive Layout Engine --- */
@media (max-width: 1024px) {
    .destination-grid-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .destination-viewport-column {
        position: relative;
        top: 0;
    }
    .cinematic-map-frame {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .asymmetric-destination-section {
        padding: 60px 20px;
    }
    .destination-main-title {
        font-size: 34px;
    }
    .destination-main-title span {
        font-size: 28px;
    }
    .badge-coordinates-strip {
        flex-direction: column;
        gap: 10px;
    }
    .coord-pill {
        width: max-content;
    }
}
/* Custom background color shift or unique overlay behavior just for the Attractions Hero */
.attraction-hero-modifier .inner-hero-img {
    filter: brightness(0.4) sepia(0.1); /* Custom visual tone for attractions */
}

.attraction-hero-modifier .inner-hero-current-crumb {
    color: #ff9800; /* Example of changing the active accent color just on this page */
}
/* Custom visual treatment only for the Location page hero */
.location-hero-modifier .inner-hero-img {
    filter: brightness(0.5) contrast(1.1); /* Slightly punchier tone for maps/exteriors */
}

.location-hero-modifier .inner-hero-current-crumb {
    color: #0086da; /* Matches your active brand blue accent */
}
/* Custom visual treatment exclusively for the Contact Hero */
.contact-hero-modifier .inner-hero-img {
    filter: brightness(0.4) contrast(1.0); /* Keeps the background crisp and text readable */
}

.contact-hero-modifier .inner-hero-current-crumb {
    color: #0086da; /* Dynamic active brand blue alignment */
}
/* ============================================================
   CONTACT LEDGER SUITE - DAYS INN BY WYNDHAM WOOSTER
   Primary Navy: #012b55 | Active Brand Blue: #0086da | Neutral Light: #faf9f5
   ============================================================ */

.contact-ledger-suite {
  padding: 80px 5%;
  background: linear-gradient(rgba(1, 43, 85, 0.92), rgba(1, 43, 85, 0.88)), 
              url('../images/new/exterior.webp'); 
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.ledger-outer-frame {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  border: 1px solid #e1e5eb;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(1, 43, 85, 0.25);
  overflow: hidden;
}

.ledger-accent-sidebar {
  width: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  background-color: #012b55; /* Corporate Primary Navy Anchor Panel */
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-logo-mark {
  color: #0086da; /* Active Brand Blue Accent Icon */
}

.ledger-main-content {
  flex: 1;
  padding: 60px;
}

.ledger-headline {
  font-size: 2.4rem;
  color: #012b55; /* Corporate Primary Navy Headline */
  margin: 0 0 15px 0;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
}

.ledger-headline span {
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0.5px;
  font-size: 27px;
  color: #64748b; 
  display: block;
  margin-top: 10px;
}

.ledger-headline span a {
  color: #64748b;
  text-decoration: none;
  border-bottom: 1px dashed rgba(0, 134, 218, 0.4);
  transition: all 0.3s ease;
}

.ledger-headline span a:hover {
  color: #0086da; /* Active Brand Blue Shift */
  border-bottom-style: solid;
}

.ledger-subtext {
  color: #444444;
  max-width: 820px;
  line-height: 1.8;
  margin: 0 0 50px 0;
  font-size: 1.02rem;
  font-weight: 500;
}
.ledger-subtext a{
  color: #444444;
 text-decoration: none;
 font-weight: bold;
}
.ledger-details-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* --- INNER MODULE ITEMS --- */
.item-meta {
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 15px;
  color: #012b55; /* Active Brand Blue Tag Identifiers */
}

.estate-name {
  color: #012b55;
  font-weight: 700;
  margin: 0 0 8px 0;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.estate-address {
  color: #444444;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
}

.ledger-link {
  font-size: 1.3rem;
  font-weight: 800;
  text-decoration: none;
  color: #012b55; /* Corporate Navy Link Elements */
  transition: all 0.3s ease;
  display: inline-block;
  margin-bottom: 5px;
}

.ledger-link:hover {
  color: #0086da; /* Active Brand Blue Interaction */
  transform: translateX(4px);
}

.item-description {
  color: #444444;
  line-height: 1.6;
  margin: 5px 0 0 0;
  font-size: 0.95rem;
  font-weight: 500;
}

.item-description strong {
  color: #012b55;
}

/* ============================================================
   RESPONSIVE LAYOUT ENGINE (MOBILE & IPAD)
   ============================================================ */

@media (max-width: 1024px) {
  .ledger-outer-frame { 
    flex-direction: column; 
    border-radius: 12px;
  }
  
  .ledger-accent-sidebar { 
    width: 100%; 
    height: 10px; 
    border-right: none;
    background-color: #0086da; /* Transforms to brand blue strip on mobile/tablet */
  }

  .sidebar-logo-mark {
    display: none;
  }
  
  .ledger-details-row { 
    grid-template-columns: 1fr; 
    gap: 35px; 
  }
  
  .ledger-main-content { 
    padding: 40px 25px; 
  }
  
  .ledger-headline { 
    font-size: 2rem; 
  }
  
  .ledger-subtext { 
    margin-bottom: 35px; 
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  .contact-ledger-suite {
    padding: 40px 15px;
  }

  .ledger-headline { 
    font-size: 1.65rem; 
  }
  
  .ledger-link { 
    font-size: 1.2rem; 
  }
}
/* Custom visual treatment for the Sitemap Hero */
.sitemap-hero-modifier .inner-hero-img {
    filter: brightness(0.45) contrast(1.05);
}

.sitemap-hero-modifier .inner-hero-current-crumb {
    color: #0086da; /* Active Brand Blue */
}
/* ============================================================
   SITEMAP INDEX SUITE - DAYS INN BY WYNDHAM WOOSTER
   Primary Navy: #012b55 | Active Brand Blue: #0086da | Neutral Text: #444444
   ============================================================ */

.sitemap-index-suite {
  padding: 80px 20px;
  background: linear-gradient(rgba(1, 43, 85, 0.93), rgba(1, 43, 85, 0.89)), 
              url('../images/new/exterior.webp'); 
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.index-parchment {
  max-width: 1140px;
  margin: 0 auto;
  background: #ffffff;
  padding: 60px;
  border: 1px solid rgba(1, 43, 85, 0.08);
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(1, 43, 85, 0.2);
  position: relative;
}

.index-label {
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color:#012b55; /* Active Brand Blue Descriptor Tag */
  font-weight: 800;
  display: block;
  margin-bottom: 5px;
}

.index-title {
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  color: #012b55; /* Primary Corporate Navy Heading */
  margin: 0 0 20px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
}

.index-title a {
  color: #012b55;
  text-decoration: none;
  transition: color 0.3s ease;
}

.index-title a:hover {
  color: #0086da;
}

.index-description {
  font-size: 0.98rem;
  line-height: 1.8;
  color: #444444;
  max-width: 1050px;
  font-weight: 500;
}

.index-description a.titlelink {
  color: #012b55;
  text-decoration: none;
  border-bottom: 1px dashed rgba(0, 134, 218, 0.4);
  font-weight: bold;
}

.index-description a.titlelink:hover {
  border-bottom-style: solid;
}

.index-ornament {
  width: 60px;
  height: 3px;
  background: #0086da; /* Active Brand Blue Anchor Bar Accent */
  margin: 30px 0 50px;
  border-radius: 2px;
}

.index-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 1px solid #f1f5f9;
  padding-top: 40px;
}

.index-col {
  min-width: 0;
}

.col-heading {
  font-size: 1.3rem;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #012b55; /* Primary Corporate Navy Subheading */
  font-weight: 800;
  border-left: 3px solid #0086da; /* Active Brand Blue Indicator */
  padding-left: 15px;
}

.index-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.index-list li {
  margin-bottom: 16px;
}

.index-list a {
  text-decoration: none;
  color: #444444;
  font-size: 0.92rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.index-list a:hover {
  color: #0086da; /* Interactive Shift to Brand Blue */
  transform: translateX(6px);
}

/* Specific Style Overrides for Action-Oriented Call-To-Action Links */
.index-list a.brand-teal-cta {
  color: #0086da;
  font-weight: 700;
}

.index-list a.brand-teal-cta:hover {
  color: #012b55;
}

/* ============================================================
   RESPONSIVE LAYOUT ENGINE (MOBILE & IPAD)
   ============================================================ */

@media (max-width: 992px) {
  .index-columns { 
    grid-template-columns: 1fr; 
    gap: 35px; 
    padding-top: 30px;
  }
  
  .index-parchment { 
    padding: 40px 25px; 
    border-radius: 12px;
  }
  
  .index-title { 
    font-size: 2rem; 
  }
  
  .index-ornament {
    margin: 20px 0 35px;
  }
}

@media (max-width: 600px) {
  .sitemap-index-suite {
    padding: 40px 10px;
  }
  
  .index-title {
    font-size: 1.6rem;
  }
}
/* Custom visual treatment for the FAQ Page Hero */
.faq-hero-modifier .inner-hero-img {
    filter: brightness(0.45) contrast(1.05);
}

.faq-hero-modifier .inner-hero-current-crumb {
    color: #0086da; /* Active Brand Blue Accent */
}
/* ============================================================
   FAQ LEDGER SUITE - DAYS INN BY WYNDHAM WOOSTER
   Primary Navy: #012b55 | Brand Blue Accent: #0086da | Clean Light: #f8fafc
   ============================================================ */

.faq-ledger-suite {
  background: #ffffff;
  padding: 100px 5%;
  border-top: 1px solid #f1f5f9; 
}

.faq-ledger-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
}

/* --- Sidebar Column Framing --- */
.faq-sidebar {
  flex: 0 0 350px;
}

.sidebar-sticky {
  position: sticky;
  top: 120px;
}

.faq-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #012b55; /* Brand Blue Accent */
  display: block;
  margin-bottom: 15px;
  font-weight: 800;
}

.faq-headline {
  font-size: 3rem;
  color: #012b55; /* Primary Navy Heading */
  line-height: 1.15;
  margin: 0 0 25px 0;
  text-transform: uppercase;
  font-weight: 900;
}

.faq-headline a {
  color: #012b55;
  text-decoration: none;
  transition: color 0.3s ease;
}

.faq-headline a:hover {
  color: #0086da;
}

.faq-context {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.98rem;
  color: #475569;
  line-height: 1.8;
  font-weight: 500;
}

/* --- Content Entries (Right Side Loop Column) --- */
.faq-entries {
  flex: 1;
}

.faq-entry {
  display: flex;
  gap: 30px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.3s ease;
}

.entry-no {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  color: #012b55; /* Brand Blue Content Numbers */
  font-weight: 800;
  padding-top: 2px;
}

.faq-entry h2, h3{
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  color: #012b55; /* Primary Navy Title Blocks */
  margin: 0 0 15px 0;
  font-weight: 800;
  line-height: 1.4;
}

.faq-entry p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.8;
  font-weight: 500;
}

/* Universal Inline & Standalone Link Behaviors */
.faq-entry p a.faq-phone-link,
.faq-entry p a.faq-inline-link {
  color: #012b55;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px dashed rgba(0, 134, 218, 0.4);
  transition: color 0.3s ease;
}

.faq-entry p a.faq-phone-link:hover,
.faq-entry p a.faq-inline-link:hover {
  color: #012b55;
  border-bottom-style: solid;
}

.antique-link {
  color: #012b55; /* Primary Action Target: Blue */
  text-decoration: none;
  font-weight: 800;
  margin-top: 12px;
  display: inline-block;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.antique-link:hover {
  color: #012b55; /* Flips to Navy during mouse track */
  border-bottom: 2px solid #0086da; /* Underline indicator reveals on hover state */
  transform: translateX(5px);
}

/* ============================================================
   RESPONSIVE LAYOUT
   ============================================================ */

@media (max-width: 1024px) {
  .faq-ledger-wrapper { 
    flex-direction: column; 
    gap: 50px; 
  }
  
  .faq-sidebar { 
    flex: none; 
    text-align: left; 
  }
  
  .sidebar-sticky { 
    position: static; 
  }
  
  .faq-headline { 
    font-size: 2.5rem; 
  }
}

@media (max-width: 768px) {
  .faq-entry { 
    flex-direction: column; 
    gap: 15px; 
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  
  .entry-no { 
    font-size: 1.25rem; 
  }
  
  .faq-headline { 
    font-size: 2rem; 
  }
  
  .faq-ledger-suite { 
    padding: 60px 5%; 
  }
}
/* ============================================================
   ATTRACTIVE ROOMS SHOWCASE - DAYS INN BY WYNDHAM WOOSTER
   Primary Navy: #012b55 | Accent Blue: #0086da | Canvas BG: #f8fafc
   ============================================================ */

.rooms-showcase-section {
  padding: 30px 5%;
  background-color: #f8fafc;
  background-image: radial-gradient(rgba(1, 43, 85, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}

.rooms-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* Header Section */
.rooms-section-header {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 60px auto;
}
/* --- Heritage / Eyebrow Descriptor Tag --- */
.heritage-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  color: #012b55; /* Days Inn Brand Accent Blue */
  text-transform: uppercase;
  letter-spacing: 4px;
  display: inline-block;
  margin-bottom: 5px;
}
.rooms-main-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: #012b55;
  margin: 10px 0 15px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

.rooms-intro-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.8;
  margin-top: 15px;
  font-weight: 500;
}

/* Rooms Grid Architecture */
.rooms-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Card Framing */
.room-card {
  display: flex;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(1, 43, 85, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(1, 43, 85, 0.12);
  border-color: rgba(0, 134, 218, 0.3);
}

.featured-suite {
  border: 2px solid rgba(0, 134, 218, 0.3);
  box-shadow: 0 15px 35px rgba(0, 134, 218, 0.08);
}

/* Room Image Presentation */
.room-card-image {
  flex: 0 0 420px;
  position: relative;
  overflow: hidden;
  background: #012b55;
}

.room-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 1, 0.3, 1), opacity 0.4s ease;
}

.room-card:hover .room-card-image img {
  transform: scale(1.08);
  opacity: 0.92;
}

/* Floating Badges */
.room-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #012b55;
  color: #000;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 16px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hottub-badge {
  background: #0086da;
}

.deluxe-badge {
  background: #012b55;
  color: #fff;
}

.access-badge {
  background: #0284c7;
}

/* Card Body Content */
.room-card-content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.room-header-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.room-category {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #012b55;
}

.smoke-policy {
  font-size: 0.8rem;
  font-weight: 700;
  color:#012b55;
  background: #f0fdf4;
  padding: 4px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.room-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  color: #012b55;
  font-weight: 800;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.room-description {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #475569;
  margin: 0 0 25px 0;
  font-weight: 500;
}

/* Feature Tag Badges */
.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.feature-tag {
  background: #f1f5f9;
  color: #334155;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.feature-tag i {
  color: #0086da;
  font-size: 0.9rem;
}

.room-card:hover .feature-tag {
  background: #ffffff;
  border-color: #cbd5e1;
}

.highlight-feature {
  background: #e0f2fe;
  color: #0369a1;
  border-color: #bae6fd;
  font-weight: 700;
}

.highlight-feature i {
  color: #0284c7;
}

/* Card Actions */
.room-card-footer {
  border-top: 1px solid #f1f5f9;
  padding-top: 25px;
  display: flex;
  justify-content: flex-end;
}

.btn-room-action {
  background: #012b55;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-room-action:hover {
  background: #0086da;
  transform: translateX(4px);
  box-shadow: 0 6px 18px rgba(0, 134, 218, 0.25);
}

/* Universal Banner Accent */
.universal-features-banner {
  margin-top: 70px;
  background: linear-gradient(135deg, #012b55 0%, #001933 100%);
  border-radius: 16px;
  padding: 40px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 30px;
  box-shadow: 0 15px 35px rgba(1, 43, 85, 0.15);
}

.banner-icon-side i {
  font-size: 3rem;
  color: #0086da;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-text-side h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  margin: 0 0 10px 0;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.banner-text-side p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #cbd5e1;
}

.banner-text-side strong {
  color: #ffffff;
}

.banner-text-side em {
  color: #38bdf8;
}

/* Responsive Scaling */
@media (max-width: 1024px) {
  .room-card {
    flex-direction: column;
  }

  .room-card-image {
    flex: none;
    height: 280px;
  }

  .room-card-content {
    padding: 30px;
  }

  .universal-features-banner {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }
}

@media (max-width: 600px) {
  .rooms-showcase-section {
    padding: 60px 4%;
  }

  .rooms-main-title {
    font-size: 2.4rem;
  }

  .room-title {
    font-size: 1.35rem;
  }

  .btn-room-action {
    width: 100%;
    justify-content: center;
  }
}
/* ============================================================
   MEETINGS, EVENTS & AUTHORIZATIONS - DAYS INN WOOSTER
   (Scoped Namespace: .diw-events-*)
   ============================================================ */

/* --- Layout & Main Section Setup --- */
.diw-events-section {
  padding: 90px 5%;
  background-color: #f8fafc;
}

.diw-events-container {
  max-width: 1280px;
  margin: 0 auto;
}

.diw-events-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.diw-events-heritage-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color:#012b55;
  margin-bottom: 8px;
}

.diw-events-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  color: #012b55;
  margin: 10px 0;
  text-transform: uppercase;
}

.diw-events-ornate-separator {
  color: #0086da;
  font-size: 1.2rem;
  margin: 5px 0;
}

.diw-events-subtitle {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.7;
  margin-top: 15px;
}

.diw-events-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: start;
}

/* --- Form 1 Card: Group Reservation Request --- */
.diw-events-form-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(1, 43, 85, 0.05);
}

.diw-events-form-header {
  margin-bottom: 30px;
  border-bottom: 2px solid #f1f5f9;
  padding-bottom: 15px;
}

.diw-events-form-header h3 {
  font-family: 'Montserrat', sans-serif;
  color: #012b55;
  font-size: 1.5rem;
  margin: 0 0 5px;
}

.diw-events-form-header p {
  color: #64748b;
  font-size: 0.9rem;
  margin: 0;
}

.diw-events-inquiry-form .diw-events-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.diw-events-inquiry-form .diw-events-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.diw-events-inquiry-form label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #012b55;
}

.diw-events-inquiry-form input,
.diw-events-inquiry-form select,
.diw-events-inquiry-form textarea {
  padding: 12px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.95rem;
  outline: none;
  background-color: #ffffff;
  color: #0f172a;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.diw-events-inquiry-form input:focus,
.diw-events-inquiry-form select:focus,
.diw-events-inquiry-form textarea:focus {
  border-color: #0086da;
  box-shadow: 0 0 0 3px rgba(0, 134, 218, 0.15);
}

/* Light Theme Adjustments for Checkboxes/Radios in Group Form */
.diw-events-form-card .diw-events-checkbox-label {
  color: #334155;
  font-weight: 500;
}

.diw-events-form-card .diw-events-input-inline {
  color: #334155;
  font-weight: 600;
}

.diw-events-btn-submit {
  width: 100%;
  background: #012b55;
  color: #ffffff;
  padding: 16px;
  border: none;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.3s ease;
}

.diw-events-btn-submit:hover {
  background: #0086da;
}

/* --- Card Authorization Sidebar Card --- */
.diw-events-cc-card {
  background: linear-gradient(135deg, #012b55 0%, #001933 100%);
  color: #ffffff;
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(1, 43, 85, 0.15);
}

.diw-events-cc-icon-wrapper span {
  font-size: 2.5rem;
  color: #0086da;
  background: rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.diw-events-cc-card h3 {
  font-size: 1.3rem;
  margin: 0 0 12px;
  color: #fff;
}

.diw-events-cc-card p {
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.diw-events-btn-cc-trigger {
  width: 100%;
  background: #0086da;
  color: #000;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.3s ease;
}

.diw-events-btn-cc-trigger:hover {
  background: #0284c7;
}

.diw-events-security-badge {
  margin-top: 20px;
  font-size: 0.75rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* --- Structural Section Dividers & Custom Inputs --- */
.diw-events-section-title {
  margin-top: 25px;
  margin-bottom: 15px;
  border-bottom: 2px solid #2D9BCE;
  padding-bottom: 6px;
}
.diw-events-section-title1 {
  margin-top: 25px;
  margin-bottom: 15px;
  border-bottom: 2px solid #2D9BCE;
  padding-bottom: 6px;
}
.diw-events-section-title h4 {
  color: #FFC72C;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.5px;
}
.diw-events-section-title1 h4 {
  color:  #001933;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.5px;
}

.diw-events-section-subtext {
  font-size: 0.85rem;
  color: #cbd5e1;
  margin-top: 4px;
}

.diw-events-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.diw-events-flex-2 {
  flex: 2;
}

.diw-events-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.diw-events-checkbox-inline-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 8px;
}

.diw-events-checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  cursor: pointer;
}

.diw-events-input-stacked {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.diw-events-input-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.diw-events-input-inline input[type="number"] {
  width: 90px;
}

.diw-events-other-input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.diw-events-other-input-wrap input[type="text"] {
  flex: 1;
  padding: 6px 10px;
}

/* --- Modal Overlay & PDF Form Styling --- */
.diw-events-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(1, 43, 85, 0.85);
  backdrop-filter: blur(4px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
}

.diw-events-pdf-modal {
  background: #122534;
  color: #ffffff;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 12px;
  padding: 35px;
  border: 1px solid #2D9BCE;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.diw-events-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #94a3b8;
  cursor: pointer;
  transition: color 0.2s ease;
}

.diw-events-modal-close:hover {
  color: #ffffff;
}

/* Modal Form Inputs */
.diw-events-pdf-form .diw-events-form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.diw-events-pdf-form .diw-events-form-group {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-bottom: 15px;
}

.diw-events-pdf-form label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #2D9BCE;
  margin-bottom: 5px;
}

.diw-events-pdf-form input[type="text"],
.diw-events-pdf-form input[type="email"],
.diw-events-pdf-form input[type="tel"],
.diw-events-pdf-form input[type="date"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #334155;
  border-radius: 6px;
  background: #0a1824;
  color: #ffffff;
  font-size: 0.9rem;
  outline: none;
}

.diw-events-pdf-form input:focus {
  border-color: #2D9BCE;
  box-shadow: 0 0 0 2px rgba(45, 155, 206, 0.2);
}

.diw-events-pdf-form .diw-events-checkbox-label {
  color: #ffffff;
}

.diw-events-highlight-checkbox {
  background: rgba(255, 199, 44, 0.1);
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255, 199, 44, 0.3);
  margin-top: 10px;
  width: 100%;
}

/* Header Branding inside Modal */
.diw-events-pdf-header {
  text-align: center;
  border-bottom: 2px dashed rgba(255, 255, 255, 0.2);
  padding-bottom: 20px;
  margin-bottom: 25px;
}

.diw-events-brand-title {
  color: #FFC72C;
  font-size: 1.8rem;
  margin: 0;
  font-weight: 800;
}

.diw-events-brand-sub {
  color: #ffffff;
  font-size: 0.85rem;
  display: block;
  letter-spacing: 2px;
}

.diw-events-hotel-address {
  font-style: normal;
  font-size: 0.85rem;
  color: #cbd5e1;
  margin-top: 6px;
  line-height: 1.4;
}

.diw-events-form-pdf-title {
  font-size: 1.25rem;
  color: #ffffff;
  margin-top: 15px;
  text-decoration: underline;
  letter-spacing: 1px;
}

/* Callout Boxes & Policies */
.diw-events-policy-callout, 
.diw-events-pci-notice {
  background: rgba(45, 155, 206, 0.1);
  border-left: 4px solid #2D9BCE;
  padding: 12px;
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 15px 0;
  border-radius: 0 4px 4px 0;
}

.diw-events-pci-notice {
  background: rgba(255, 199, 44, 0.1);
  border-left-color: #FFC72C;
}

.diw-events-policy-list {
  padding-left: 20px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #cbd5e1;
}

.diw-events-agreement-text {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #cbd5e1;
}

/* Upload Fields */
.diw-events-upload-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 15px 0;
}

.diw-events-upload-item label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 5px;
  color: #2D9BCE;
}

.diw-events-upload-item input {
  font-size: 0.75rem;
  width: 100%;
  color: #cbd5e1;
}

.diw-events-btn-submit-cc {
  width: 100%;
  padding: 14px;
  background-color: #FFC72C;
  color: #0A1A2A;
  font-weight: 800;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 20px;
  transition: background 0.3s ease;
}

.diw-events-btn-submit-cc:hover {
  background-color: #e6b020;
}

/* --- Responsive Media Queries --- */
@media (max-width: 900px) {
  .diw-events-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .diw-events-grid-2col, 
  .diw-events-upload-group,
  .diw-events-inquiry-form .diw-events-form-row,
  .diw-events-pdf-form .diw-events-form-row {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .diw-events-pdf-modal {
    padding: 20px;
  }

  .diw-events-title {
    font-size: 2.2rem;
  }
}
/* ============================================================
   CAREERS & JOBS STYLING - DAYS INN BY WYNDHAM WOOSTER
   ============================================================ */

.careers-section {
  padding: 50px 5%;
  background-color: #f8fafc;
}

.careers-container {
  max-width: 1100px;
  margin: 0 auto;
}

.careers-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}



.careers-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  color: #012b55;
  margin: 10px 0;
  text-transform: uppercase;
  font-weight: 700;
}

.ornate-separator {
  color: #0086da;
  font-size: 1.2rem;
  margin: 5px 0;
}

.careers-subtitle {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.7;
  margin-top: 15px;
}

/* Department Quick Cards */
.department-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.dept-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(1, 43, 85, 0.04);
}

.dept-card:hover {
  transform: translateY(-5px);
  border-color: #0086da;
  box-shadow: 0 10px 25px rgba(0, 134, 218, 0.12);
}

.dept-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 134, 218, 0.1);
  color: #0086da;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
  transition: background 0.3s ease, color 0.3s ease;
}

.dept-card:hover .dept-icon {
  background: #012b55;
  color: #ffffff;
}

.dept-card h3 {
  font-family: 'Montserrat', sans-serif;
  color: #012b55;
  font-size: 1.2rem;
  margin: 0 0 10px;
  font-weight: 700;
}

.dept-card p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Application Form Card */
.careers-form-card {
  background: #ffffff;
  padding: 45px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(1, 43, 85, 0.06);
  margin: 0 auto;
}

.form-header {
  margin-bottom: 30px;
  border-bottom: 2px solid #f1f5f9;
  padding-bottom: 15px;
}

.form-header h3 {
  font-family: 'Montserrat', sans-serif;
  color: #012b55;
  font-size: 1.6rem;
  margin: 0 0 5px;
  font-weight: 700;
}

.form-header p {
  color: #64748b;
  font-size: 0.9rem;
  margin: 0;
}

/* Form Structural Elements */
.form-section-title {
  margin-top: 30px;
  margin-bottom: 20px;
  border-bottom: 2px solid #0086da;
  padding-bottom: 6px;
}

.form-section-title h4 {
  color: #012b55;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.5px;
}

.section-subtext {
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 4px;
  margin-bottom: 0;
}

.career-application-form .form-row {
  display: flex;
  gap: 20px;
}

.career-application-form .form-group {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
  margin-bottom: 20px;
}

.career-application-form .full-width {
  width: 100%;
}

.career-application-form label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #012b55;
}

.career-application-form input[type="text"],
.career-application-form input[type="email"],
.career-application-form input[type="tel"],
.career-application-form input[type="date"],
.career-application-form input[type="password"],
.career-application-form select,
.career-application-form textarea {
  padding: 12px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.95rem;
  outline: none;
  background-color: #ffffff;
  color: #0f172a;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.career-application-form input:focus,
.career-application-form select:focus,
.career-application-form textarea:focus {
  border-color: #0086da;
  box-shadow: 0 0 0 3px rgba(0, 134, 218, 0.15);
}

.radio-group-inline {
  display: flex;
  gap: 20px;
  align-items: center;
  padding-top: 6px;
}

.radio-group-inline label {
  font-weight: 500;
  color: #334155;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.consent-box {
  background: #f1f5f9;
  padding: 15px 20px;
  border-radius: 8px;
  border-left: 4px solid #0086da;
}

.hidden {
  display: none !important;
}

.checkbox-highlight {
  background: #f8fafc;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: #012b55;
}

/* Work History Block */
.work-history-block {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.work-history-block h5 {
  margin: 0 0 15px 0;
  color: #000;
  font-size: 1rem;
  text-transform: uppercase;
}

/* Educational Table */
.edu-responsive-wrap {
  overflow-x: auto;
  margin-bottom: 20px;
}

.edu-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.edu-table th, 
.edu-table td {
  border: 1px solid #cbd5e1;
  padding: 10px;
  text-align: left;
  font-size: 0.85rem;
}

.edu-table th {
  background-color: #012b55;
  color: #ffffff;
  font-weight: 600;
}

.edu-table input,
.edu-table select {
  width: 100%;
  padding: 8px !important;
}

/* File Upload & Buttons */
.file-input {
  background: #f8fafc;
  padding: 10px !important;
  border: 1px dashed #cbd5e1 !important;
  cursor: pointer;
}

.flex-2 {
  flex: 2;
}

.btn-submit-career {
  width: 100%;
  background: #012b55;
  color: #ffffff;
  padding: 16px;
  border: none;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.3s ease;
  margin-top: 20px;
}

.btn-submit-career:hover {
  background: #0086da;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
  .careers-form-card {
    padding: 25px;
  }

  .career-application-form .form-row {
    flex-direction: column;
    gap: 0;
  }

  .careers-title {
    font-size: 2.2rem;
  }
}


/* ============================================================
   HOTEL POLICIES SECTION - PDF DOCUMENT STYLE
   (Scoped Namespace: .diw-policy-*)
   ============================================================ */

.diw-policy-section {
  padding: 30px 20px;
  background-color: #f4f6f8;
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  color: #1a1a1a;
}

.diw-policy-document {
  max-width: 850px;
  margin: 0 auto;
  background: #ffffff;
  padding: 50px 60px;
  border: 1px solid #dcdcdc;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Document Header Branding */
.diw-policy-header {
  text-align: center;
  border-bottom: 2px solid #0086da;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.diw-policy-brand {
  font-size: 2.2rem;
  font-weight: 800;
  color: #012b55;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.diw-policy-brand span {
  font-size: 1rem;
  display: block;
  color: #012b55;
  letter-spacing: 3px;
  font-weight: 600;
}

.diw-policy-doc-title {
  font-size: 1.4rem;
  color: #012b55;
  margin-top: 15px;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Greeting Block */
.diw-policy-greeting {
  font-size: 1rem;
  line-height: 1.6;
  color: #2c3e50;
  margin-bottom: 25px;
}

.diw-policy-greeting p {
  margin: 6px 0;
}

/* Section Divider Titles */
.diw-policy-heading {
  font-size: 1.1rem;
  color: #012b55;
  text-transform: uppercase;
  border-bottom: 1px solid #cbd5e1;
  padding-bottom: 5px;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 700;
}

/* Policy Content & Bullet Lists */
.diw-policy-list {
  padding-left: 20px;
  margin: 0;
}

.diw-policy-list li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 10px;
}

.diw-policy-list li strong {
  color: #012b55;
}

/* Document Callout / Warning Boxes */
.diw-policy-alert {
  background: #fef2f2;
  border-left: 3px solid #dc2626;
  padding: 10px 14px;
  margin-top: 8px;
  font-size: 0.9rem;
  color: #991b1b;
}

.diw-policy-notice {
  background: #fffbebfb;
  border-left: 3px solid #d97706;
  padding: 10px 14px;
  margin-top: 8px;
  font-size: 0.9rem;
  color: #92400e;
}

/* Document Footer & Contact Block */
.diw-policy-footer {
  margin-top: 40px;
  border-top: 1px solid #e2e8f0;
  padding-top: 20px;
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.6;
}

.diw-policy-contact-line {
  margin-top: 15px;
  font-weight: bold;
  color: #012b55;
}

.diw-policy-contact-line a {
  color: #0086da;
  text-decoration: none;
}

.diw-policy-contact-line a:hover {
  text-decoration: underline;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .diw-policy-document {
    padding: 25px;
  }
  .diw-policy-brand {
    font-size: 1.8rem;
  }
}