﻿/* ==========================================================================
   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 */
  color: #004182;                             /* 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 - FULL ARCHITECTURAL HEADER
   Property: Microtel Inn & Suites by Wyndham Perry
   Colors: Logo Deep Blue (#004182), Accent Gold (#FFD200)
   ========================================================================== 
*/

/* 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 */
.aero-top-bar {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.aero-top-bar .aero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.aero-info { 
    display: flex; 
    gap: 25px; 
    align-items: center; 
}

/* Status Indicator - Styled using transparent Blue and clear Accent Gold */
.status-indicator {
    display: flex;
    align-items: center;
    background: rgba(0, 65, 130, 0.4);
    padding: 6px 14px;
    border-radius: 4px;
    border: 1px solid rgba(255, 210, 0, 0.4);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #FFD200; /* Marigold Gold */
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 10px #FFD200;
    animation: pulse-microtel 2s infinite;
}

@keyframes pulse-microtel { 
    0% { opacity: 1; transform: scale(1); } 
    50% { opacity: 0.4; transform: scale(1.2); } 
    100% { opacity: 1; transform: scale(1); } 
}

.status-text { 
    color: #ffffff; 
    font-size: 11px; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

.aero-address a { 
    color: #ffffff; 
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.aero-address a:hover { 
    color: #FFD200; /* Hover state turns gold */
}

.aero-socials { 
    display: flex; 
    gap: 20px; 
}

.aero-socials a { 
    color: #ffffff; 
    font-size: 14px; 
    opacity: 0.8; 
    transition: all 0.3s ease; 
}

.aero-socials a:hover { 
    opacity: 1; 
    color: #FFD200; 
    transform: translateY(-1px);
}

/* 3. MAIN NAVIGATION (CENTERED LOGO DESIGN) */
.aero-main-nav {
    margin: 15px 20px;
    background: #ffffff;
    border-radius: 8px; 
    box-shadow: 0 15px 40px rgba(0, 65, 130, 0.1); /* Blue tint soft shadow */
    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 40px;
}

.aero-logo img { 
    height: 75px; /* Proportional scaling height for the Microtel shape */
    width: auto; 
    display: block;
    margin: 0 auto;
}

.aero-menu-desktop {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    justify-content: flex-start;
}

.nav-list { 
    display: flex; 
    list-style: none; 
    gap: 28px; 
    margin: 0;
    padding: 0;
}

.nav-list a {
    text-decoration: none;
    color: #004182; /* Logo Blue */
    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.7, 0, 0.3, 1); 
}

.nav-list a::after {
    content: attr(data-hover);
    display: block;
    color: #FFD200; /* Gold dynamic drop swap on hover */
    transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 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; 
}

.aero-contact-stack { 
    display: flex; 
    flex-direction: column; 
    text-align: right; 
}

.aero-contact-stack .label { 
    font-size: 9px; 
    font-weight: 800; 
    color: #004182; 
    text-transform: uppercase; 
    letter-spacing: 1px;
}

.aero-contact-stack a { 
    color: #1A1A1A; 
    text-decoration: none; 
    font-weight: 700; 
    font-size: 14px; 
    transition: color 0.2s ease;
}

.aero-contact-stack a:hover {
    color: #004182;
}

/* Call To Action Button styling */
.aero-book-btn {
    background: #004182; /* Logo Blue Background */
    color: #ffffff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 4px; 
    font-weight: 700; 
    font-size: 12px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 65, 130, 0.2);
}

.aero-book-btn:hover { 
    background: #FFD200; /* Flips to crisp gold on interaction */
    color: #004182; /* Font color changes to dark blue for high text visibility */
    transform: translateY(-1px); 
    box-shadow: 0 6px 20px rgba(255, 210, 0, 0.3);
}

/* 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: #004182; 
    border-radius: 2px;
    transition: 0.3s;
}

@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;
    }

    .aero-mobile-trigger { 
        display: flex; 
    }

    .aero-logo {
        padding: 0;
    }

    .aero-main-nav { 
        border-radius: 6px; 
        margin: 10px 15px; 
        padding: 8px 0; 
    }
}

/* --- AERO-SPLIT MOBILE MENU V5 - MICROTEL PERRY BRANDED --- */
.aero-mobile-overlay {
    position: fixed;
    inset: 0;
    background: #004182; /* Branded Navy Base */
    z-index: 9999;
    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: Info Panel */
.menu-blade-left {
    background: #F5EFEB; /* Soft Warm Property Cream */
    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;
}

.aero-mobile-overlay.active .menu-blade-left { 
    transform: translateX(0); 
}

.blade-logo { 
    width: 180px; 
    height: auto;
    margin-bottom: 40px; 
}

.blade-label {
    display: block;
    font-size: 10px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #004182; /* Branded Deep Blue Sub-labels */
    font-weight: 800;
    margin-bottom: 8px;
}

.blade-item p, .blade-phone {
    font-size: 18px;
    color: #1A1A1A;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.4;
}

.blade-phone {
    transition: color 0.2s ease;
}

.blade-phone:hover {
    color: #004182;
}

.license-line {
    font-size: 12px;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 15px;
    border-top: 1px solid rgba(0, 65, 130, 0.15);
    padding-top: 20px;
}

.blade-legal { 
    font-size: 11px; 
}

.blade-legal a { 
    color: #004182; 
    text-decoration: none; 
    font-weight: 700; 
}

.blade-legal a:hover {
    text-decoration: underline;
}

.blade-legal .sep { 
    margin: 0 8px; 
    color: rgba(0, 65, 130, 0.2); 
}

/* RIGHT SIDE: Navigation Panel */
.menu-blade-right {
    background: #004182; /* Deep Corporate Navy Background */
    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 Button Styling */
.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: #FFD200; /* Turns Gold on Hover */
}

.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 Typography */
.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.3s cubic-bezier(0.25, 1, 0.5, 1);
    text-transform: uppercase;
}

.mobile-nav-v5 a::before {
    content: attr(data-num);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #FFD200; /* Branded Gold Markers */
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.mobile-nav-v5 a:hover {
    padding-left: 70px;
    color: #FFD200; /* Vibrant Hover Text Shift */
}

/* RESPONSIVE STACKING FOR MOBILE VIEWPORTS */
@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);
    }
    
    .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: 140px; 
    }
    
    .aero-close-btn {
        top: 30px;
        right: 30px;
    }
}

/* ==========================================================================
   AERO-GLIDE V4 - STICKY INSTRUMENT POD
   Property: Microtel Inn & Suites by Wyndham Perry
   Colors: Logo Deep Blue (#004182), Accent Gold (#FFD200)
   ========================================================================== */

.aero-sticky-pod {
    position: fixed;
    top: 25px; 
    left: 50%;
    transform: translateX(-50%) translateY(-160%); /* Hidden by default */
    z-index: 9000;
    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 {
    background: rgba(255, 255, 255, 0.96); /* Clean bright white glass floor */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 65, 130, 0.2); /* Brand Navy Frame border */
    border-bottom: 3px solid #004182; /* Heavy Solid Base Anchor */
    border-radius: 100px;
    padding: 8px 12px 8px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(0, 65, 130, 0.12);
}

/* Left Logo Area */
.pod-logo-area {
    display: flex;
    align-items: center;
    border-right: 1px solid rgba(0, 65, 130, 0.15);
    padding-right: 25px;
}

.pod-logo {
    height: 38px;
    width: auto;
    display: block;
}

/* Center Nav Links */
.pod-nav { 
    display: flex; 
    gap: 35px; 
}

.pod-nav a {
    text-decoration: none;
    color: #004182; /* Branded Blue */
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.25s ease;
    display: inline-block;
    position: relative;
}

/* Navigation Links Hover Contrast Alignment */
.pod-nav a:hover {
    color: #FFD200; /* Beautiful Transition to Accent Gold */
    text-decoration: none;
}

/* Right Actions Frame */
.pod-actions { 
    display: flex; 
    align-items: center; 
    gap: 20px; 
}

.pod-icon-link { 
    color: #004182; 
    font-size: 16px; 
    transition: color 0.25s ease; 
}

.pod-icon-link:hover { 
    color: #FFD200; /* Flips cleanly to Gold */
}

/* Reserve Action Button */
.pod-book-btn {
    background: #004182; /* Deep Solid Navy */
    color: #ffffff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 10px;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.pod-book-btn:hover {
    background: #FFD200; /* Flips beautifully to clear property gold */
    color: #004182; /* Swaps typography back to deep blue */
    border: 1px solid #FFD200;
    box-shadow: 0 8px 20px rgba(255, 210, 0, 0.25);
}
.btn-text1 { font-weight: 800; letter-spacing: 2px; font-size: 12px; color: #fff; }

/* Mobile Hamburger Circles */
.pod-trigger {
    display: none; 
    background: #ffffff; 
    border: 2px solid #004182; /* Crisp clean navy border shell */
    width: 44px; 
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 65, 130, 0.1);
    padding: 0;
}

.dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.dots span { 
    width: 5px; 
    height: 5px; 
    background: #004182; /* Brand Blue Navigation Dots */
    border-radius: 50%; 
    transition: background 0.3s ease;
}

.pod-trigger:hover {
    background: #004182;
    border-color: #004182;
}

.pod-trigger:hover .dots span {
    background: #ffffff; /* Dots cleanly shift white on interactions */
}

/* --- MOBILE/IPAD VISIBILITY ADAPTATIONS --- */
@media (max-width: 991px) {
    .pod-trigger { 
        display: flex; 
    }
    
    .pod-nav { 
        display: none; 
    }
    
    .pod-wrapper {
        padding-right: 15px; /* Adds alignment safety space for the circular toggle */
    }
    
    .pod-logo-area {
        border-right: none;
        padding-right: 0;
    }
}

/* ==========================================================================
   CINEMATIC MONOLITHIC FULL-COVER HERO SLIDER (MINIMALIST EDITION)
   Property: Microtel Inn & Suites by Wyndham Perry
   Colors: Navy Base (#004182), Accent Gold (#FFD200)
   ========================================================================== */

.mono-hero-slider {
    position: relative;
    width: 100%;
    height: 110vh;
    min-height: 600px;
    background: #002347; 
    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;
    filter: brightness(0.4) contrast(1.05); 
    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: #FFD200; 
    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: #FFD200;
}

/* 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: #004182; 
    color: #ffffff;
    border: 2px solid #004182;
    padding: 18px 40px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mono-btn-primary:hover {
    background: #FFD200;
    border-color: #FFD200;
    color: #004182;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 210, 0, 0.3);
}

.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: #FFD200;
}

.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(255, 255, 255, 0.4);
}

.mono-progress-track {
    width: 140px;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    margin-bottom: 6px;
    position: relative;
}

.mono-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 25%;
    background: #FFD200;
    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(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.2);
    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: #FFD200;
    border-color: #FFD200;
    color: #004182;
}

/* ==========================================================================
   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;
    }
    .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;
    }
}
/* ==========================================================================
   FLIPPED LAYERED WELCOME MODULE STYLING (REBRANDED EDITION + GRID MATRIX)
   Property: Microtel Inn & Suites by Wyndham Perry
   Colors: Core Navy Base (#004182), Accent Marigold Gold (#FFD200)
   ========================================================================== */

/* --- 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 your brand navy tint */
    background-image: 
        linear-gradient(rgba(0, 65, 130, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 65, 130, 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 */
    background: radial-gradient(
        500px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
        rgba(255, 210, 0, 0.12) 0%, 
        rgba(0, 65, 130, 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(0, 65, 130, 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(0, 65, 130, 0.08); /* Re-centered shadow over new navy base */
}

.ew-eyebrow {
    font-size: 11px; 
    font-weight: 800; 
    letter-spacing: 5px; 
    color: #FFD200; /* Rebranded: Microtel Marigold Gold Eyebrow */
    display: block; 
    margin-bottom: 20px;
    text-align: left;
    text-transform: uppercase;
}

.ew-title {
    font-size: clamp(2rem, 4vw, 3.8rem);
    color: #004182; /* Rebranded: Microtel Deep Core Navy Main Headings */
    line-height: 1.15; 
    margin-bottom: 30px;
    text-transform: uppercase;
}

.ew-title span { 
    color: #FFD200; /* Rebranded: Highlighted inline accent with brand gold */
    font-weight: 600; 
}

.ew-lead { 
    font-family: 'Inter', sans-serif;
    font-size: 19px; 
    font-weight: 600; 
    color: #004182; /* Core Navy 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; 
}

/* 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 #004182; /* Rebranded: Structural brand line to core navy */
    color: #004182;
    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: #004182; 
}

.ew-btn-discover:hover .btn-circle { 
    background: #FFD200; /* Rebranded: Active hover shifts cleanly to marigold yellow background */
    border-color: #FFD200;
    color: #004182; /* Keeps text contrast legible via core navy icon contrast */
    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%); 
    cursor: pointer;
    left: auto;
    right: -100px; 
    box-shadow: 0 30px 60px rgba(0, 65, 130, 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 blends beautifully from Core Navy down to Microtel Accent Gold */
    background: linear-gradient(135deg, rgba(0, 65, 130, 0.95) 0%, rgba(255, 210, 0, 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(0, 65, 130, 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(255, 210, 0, 0.95) 0%, rgba(0, 65, 130, 0.95) 100%);
}

/* Play Overlay Layer Controls */
.ew-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 65, 130, 0.4); /* Rebranded: Core brand navy overlay tint mask */
    display: flex; 
    align-items: center; 
    justify-content: center;
    opacity: 0; 
    transition: all 0.4s ease;
}

.ew-image-canvas:hover .ew-play-overlay { 
    opacity: 1; 
}

.ew-play-btn { 
    text-align: center; 
    color: #ffffff; 
}

.play-icon-wrap {
    width: 80px; 
    height: 80px;
    background: #ffffff; 
    color: #004182; /* Rebranded: Deep Navy Core active icon vector pointer */
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center;
    margin: 0 auto 15px; 
    font-size: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.ew-image-canvas:hover .play-icon-wrap {
    transform: scale(1.1);
    background: #FFD200; /* Pops into bright brand yellow when targeted directly */
}

/* --- EXPANDABLE FULL DRAWER LOCAL INFO PANEL --- */
/* --- EXPANDABLE FULL DRAWER LOCAL INFO PANEL --- */
.ew-depth-panel {
    position: fixed; 
    inset: 0; 
    background: #004182;
    z-index: 999;
    display: flex; 
    align-items: flex-start; /* Changed from center to allow top-to-bottom scrolling */
    justify-content: center;
    transform: translateX(100%); 
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -20px 0 50px rgba(0, 65, 130, 0.4);
    
    /* Enabled vertical scrolling for large content */
    overflow-y: auto; 
    padding: 80px 0 60px 0; /* Padding ensures close button & bottom content don't clip */
}

.ew-depth-panel.active { 
    transform: translateX(0); 
}

/* Custom Styled Scrollbar */
.ew-depth-panel::-webkit-scrollbar {
    width: 8px;
}

.ew-depth-panel::-webkit-scrollbar-track {
    background: rgba(0, 30, 60, 0.5);
}

.ew-depth-panel::-webkit-scrollbar-thumb {
    background: #FFD200; /* Brand Yellow Thumb */
    border-radius: 4px;
}

.ew-depth-panel::-webkit-scrollbar-thumb:hover {
    background: #e6bd00;
}

.ew-panel-content-wrapper {
    width: 1300px; 
    max-width: 90%; 
    margin: 0 auto;
    padding: 0 40px; 
    position: relative;
}

.ew-panel-close {
    position: fixed; /* Keeps the close button visible while scrolling */
    top: 30px; 
    right: 40px; 
    background: #004182; 
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff; 
    padding: 12px 25px; 
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 11px;
    transition: all 0.3s ease;
    z-index: 1000;
}

.ew-panel-close:hover {
    background: #FFD200;
    color: #004182;
    border-color: #FFD200;
}

.ew-eyebrow {
    display: block;
    color: #FFD200;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 10px;
}

.panel-main-title { 
    color: #ffffff; 
    font-size: 42px; 
    margin-bottom: 40px; 
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.2;
}

.panel-main-title span { 
    color: #FFD200;
}

.ew-panel-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: rgba(255, 255, 255, 0.85); /* High contrast light text for navy background */
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: left;
    max-width: 1280px;
    margin: 0 auto;
}

.ew-panel-body p {
    margin: 0;
}

.ew-panel-body strong {
    color: #ffffff;
    font-weight: 600;
}
.expert-welcome .ew-panel-close:hover {
    background: #FFD200;
    color: #004182;
    border-color: #FFD200;
}

.panel-main-title { 
    color: #ffffff; 
    font-size: 52px; 
    margin-bottom: 60px; 
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.panel-main-title span { 
    color: #FFD200; /* Rebranded: Title details focus directly onto brand yellow highlight */
}

.ew-grid-details { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 50px 80px; 
    width: 100%; 
}

.ew-detail-item { 
    color: #ffffff; 
    border-left: 1px solid rgba(255, 210, 0, 0.3); /* Rebranded: Gold structural side bounds rule line */
    padding-left: 25px;
}

.ew-num { 
    color: #FFD200; /* Rebranded: Bullet index counts highlighted yellow */
    font-size: 30px; 
    display: block; 
    margin-bottom: 8px; 
}

.ew-detail-item h4 { 
    font-size: 22px; 
    margin-bottom: 12px; 
    letter-spacing: 0.5px;
    font-weight: 700;
}

.ew-detail-item p { 
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.8); 
    line-height: 1.7; 
    font-size: 15px;
    margin: 0;
}

/* --- LIGHTBOX VIDEO FRAME OVERLAY --- */
.ew-video-overlay {
    position: fixed; 
    inset: 0; 
    background: #001a34; /* Soft dark customized navy black space anchor overlay */
    z-index: 1000;
    display: none; 
    flex-direction: column;
}

.ew-video-close {
    background: #FFD200; /* Rebranded: High-contrast clear brand gold closure header label */
    border: none; 
    padding: 15px; 
    font-weight: 800; 
    cursor: pointer; 
    color: #004182;
    letter-spacing: 1.5px;
    transition: background 0.3s ease;
}

.ew-video-close:hover {
    background: #ffffff;
}

/* --- 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 - MOUSE TRACKING MATRIX SPECIFICATION
   ========================================================================== */

.kinetic-amenities {
    position: relative;
    padding: 60px 0;
    background: #00152b; 
    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(255, 210, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 210, 0, 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;
    /* FIXED: Tied explicitly to custom properties with strict fallback positions */
    background: radial-gradient(
        600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
        rgba(255, 210, 0, 0.08) 0%, 
        rgba(0, 65, 130, 0.04) 40%, 
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none; /* Essential: prevents grid from intercepting actual mouse coords */
    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; /* Re-enable tracking for internal children nodes */
}

/* Keep original tracker rows, hero header typography, and animations below... */
.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(255, 210, 0, 0.008); 
    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.5); 
    background: rgba(0, 65, 130, 0.2); 
    border: 1px solid rgba(255, 210, 0, 0.15); 
    padding: 18px 32px;
    border-radius: 4px;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.ka-node i {
    font-size: 16px;
    color: #FFD200; 
    filter: drop-shadow(0 0 6px rgba(255, 210, 0, 0.35));
    transition: transform 0.4s ease;
}
.ka-node.ka-outline {
    background: transparent;
    border-style: dashed;
    border-color: rgba(255, 210, 0, 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(255, 210, 0, 0.08) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}
.ka-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px; 
    letter-spacing: 6px; 
    color: #FFD200; 
    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: #FFD200 !important; 
    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(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    padding: 12px 24px;
    border-radius: 0px;
    border-left: 3px solid #FFD200; 
    text-transform: uppercase;
}
.badge i {
    color: #FFD200;
}
.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); }
}

.ka-node:hover {
    color: #00152b; 
    background: #FFD200; 
    border-color: #FFD200;
    box-shadow: 0 10px 30px rgba(255, 210, 0, 0.45); 
    transform: scale(1.04) translateY(-3px);
}
.ka-node:hover i {
    color: #00152b; 
    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: Microtel Inn & Suites by Wyndham Perry
   Colors: Core Navy Base (#004182), Accent Marigold Gold (#FFD200)
   ========================================================================== */

.room-cinematic {
    background-color: #fcfbf9; /* Warm, premium luxury off-white gallery canvas */
    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: #00152b; /* Deep micro-navy background for rich imagery 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.95) contrast(1.02); /* Optimized crisp visibility for light mode */
    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 warm right-side card interface */
    background: linear-gradient(90deg, transparent 60%, rgba(252, 251, 249, 0.4) 100%);
    pointer-events: none; 
    z-index: 2;
}

/* --- VERTICAL SLIDE APERTURE (LIGHT CONTRAST OVERLAYS) --- */
.rc-shutter-blade {
    position: absolute;
    left: 0; 
    width: 100%; 
    height: 0%;
    background: #ffffff; /* Pristine white curtain wipe */
    z-index: 15;
    transition: height 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

#shutter-l { 
    top: 0; 
    border-bottom: 2px solid #FFD200; /* Rebranded: Microtel Marigold tracker line */
}

#shutter-r { 
    bottom: 0; 
    border-top: 2px solid #FFD200; /* Rebranded: Microtel Marigold tracker line */
}

/* 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: #fcfbf9; /* Warm, premium luxury off-white card base */
    padding: 80px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid rgba(0, 65, 130, 0.06); /* Structural brand-tinted divider line */
}

/* Structural Detail Frame Lines */
.rc-frame-corner {
    position: absolute; 
    background: rgba(255, 210, 0, 0.4); /* Rebranded: Soft marigold tech framing accents */
}
.top-left { top: 40px; left: 40px; width: 40px; height: 1px; }
.bottom-right { bottom: 40px; right: 77px; 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: #004182; /* Rebranded: Core Navy for structural balance */
    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 #FFD200; /* Rebranded: Thick marigold underline accent */
}

.antique-title {
    font-size: 38px; 
    color: #004182; /* Rebranded: Microtel Deep Core Navy for high readability */
    line-height: 1.2; 
    margin-bottom: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.rc-tags-row { 
    color: #556b79; /* Mid-tone slate gray for secondary details */
    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: #FFD200; /* Rebranded: Marigold bullet indicator */
    border-radius: 50%;
}

.antique-copy {
    font-family: 'Inter', sans-serif;
    font-size: 15px; 
    color: #4a555e; /* Premium highly readable charcoal body text */
    line-height: 1.7;
    margin-bottom: 40px;
}

/* --- TECHNICAL SPECS MATRIX --- */
.rc-specs {
    border-top: 1px solid rgba(0, 65, 130, 0.08);
    border-bottom: 1px solid rgba(0, 65, 130, 0.08);
    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: #004182; /* Rebranded: Core Navy labels */
    text-transform: uppercase; 
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-weight: 700;
}

.spec-value { 
    font-size: 18px; 
    color: #004182; /* Rebranded: Core Navy values */
    font-weight: 700; 
}

/* --- CONTROLLER FOOTER HUB --- */
.rc-footer { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    gap: 20px;
}

.rc-button-antique {
    background: transparent; 
    color: #004182; /* Rebranded: Core Navy text anchor */
    padding: 18px 35px;
    text-decoration: none; 
    font-size: 12px; 
    font-weight: 800;
    letter-spacing: 2px; 
    text-transform: uppercase;
    border: 1px solid #004182; /* Rebranded: Core Navy border link */
    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: #004182; /* Rebranded: Slide up overlay color uses deep navy */
    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; /* Flips text cleanly over solid dark navy fill */
    border-color: #004182;
}

.rc-nav-group { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
}

.antique-btn {
    background: #ffffff; 
    border: 1px solid rgba(0, 65, 130, 0.12); 
    color: #004182; /* Rebranded: Navy direction vectors */
    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.02);
}

.antique-btn:hover { 
    background: #004182; /* Rebranded: Filled background changes on active hover state */
    border-color: #004182;
    color: #FFD200; /* Rebranded: Icon highlights sharply to yellow across the dark button box */
}

.rc-counter-wrap { 
    color: rgba(0, 65, 130, 0.4); 
    font-weight: 700; 
    display: flex; 
    align-items: center; 
    gap: 10px;
    font-size: 12px;
}

#curr-num {
    color: #004182; /* Rebranded: Navy focal digit value */
}

.counter-line { 
    width: 20px; 
    height: 1px; 
    background: rgba(0, 65, 130, 0.15); 
}


/* --- 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: Microtel Inn & Suites by Wyndham Perry
   Colors: Core Dark Navy Matrix Base (#000c14), Accent Marigold Gold (#FFD200)
   ========================================================================== */

.kinetic-attractions {
  position: relative;
  height: 750px;
  background: #000c14; /* Deep structural space base */
  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(255, 210, 0, 0.15); /* Rebranded: Soft micro-marigold structural divider line */
  background-color: #000c14;
  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: #001322; /* High-contrast midnight navy card backdrop */
}

/* --- 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(0, 12, 20, 0.85) 0%, rgba(0, 12, 20, 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(0, 19, 34, 0.98) 0%, rgba(0, 19, 34, 0.85) 50%, rgba(0, 12, 20, 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: #FFD200; /* Rebranded: High-contrast Marigold Gold numerical indicator */
  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: #FFD200; /* Rebranded: High-contrast Marigold Gold tactical text 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.7); /* Soft premium silver body reading canvas */
  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 #FFD200; /* Rebranded: Anchor border line to Marigold Gold */
  padding: 14px 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.ka-btn:hover {
  background: #FFD200; /* Rebranded: Full Marigold block shift on layout hover */
  color: #000c14; /* Flips color profile clean against dark matrix background */
  border-color: #FFD200;
}


/* --- 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: Microtel Inn & Suites by Wyndham Perry
   Colors: Core Navy (#004182), Dark Navy Matrix (#000c14), Marigold Gold (#FFD200)
   ========================================================================== */

/* --- CINEMATIC REVEAL SECTION (60vh) --- */
.pro-cinematic {
    height: 60vh;
    position: relative;
    overflow: hidden;
    background: #000c14; /* Matches site dark theme background */
    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.7);
    z-index: 1;
}

/* Letterbox Frames (Top and Bottom) */
.cinema-frame {
    position: absolute;
    left: 0;
    width: 100%;
    height: 0%;
    background: #000c14;
    z-index: 5;
}
.cinema-frame-top { 
    top: 0; 
    border-bottom: 1px solid rgba(255, 210, 0, 0.25); /* Rebranded: Microtel Marigold accent line */
}
.cinema-frame-bottom { 
    bottom: 0; 
    border-top: 1px solid rgba(0, 65, 130, 0.4); /* Rebranded: Core Navy framing line */
}

/* Glass-morphism Trigger Component */
.interface-layer {
    position: relative;
    z-index: 10;
}

.play-trigger {
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    background: rgba(0, 40, 66, 0.4);
    padding: 15px 40px 15px 15px;
    border-radius: 100px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 210, 0, 0.3); /* Rebranded: Microtel Marigold glass boundary */
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.glass-circle {
    width: 60px;
    height: 60px;
    background: #004182; /* Rebranded: Core Deep Navy structural circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 65, 130, 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 #FFD200; /* Rebranded: High-contrast Marigold gold play icon vector */
    margin-left: 4px;
}

.trigger-labels {
    display: flex;
    flex-direction: column;
}

.small-tag {
    font-size: 10px;
    color: #FFD200; /* Rebranded: Marigold Gold label tracker */
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
}

.main-action {
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Interaction Hover States */
.play-trigger:hover {
    background: rgba(0, 65, 130, 0.4);
    transform: translateY(-5px);
    border-color: rgba(255, 210, 0, 0.8); /* Sharp glow enhancement on focus */
}

.play-trigger:hover .glass-circle {
    transform: scale(1.1) rotate(90deg);
    background: #FFD200; /* Rebranded: Flips entirely to brilliant marigold on hover active state */
    box-shadow: 0 0 25px rgba(255, 210, 0, 0.6);
}

.play-trigger:hover .play-arrow {
    border-left-color: #004182; /* Arrow element turns dark navy when circle snaps to gold */
}

/* --- 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(0, 12, 20, 0.95);
    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: #000;
    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: #fff;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.close-btn:hover {
    color: #FFD200; /* Rebranded: Close interactive button triggers to Marigold Gold */
}

/* --- COLLAGE GALLERY CSS --- */
.collage-gallery {
    width: 100%;
    background: #fcfbf9; /* Standard structural off-white background canvas */
    padding: 5px 0;
    overflow: hidden;
}

.collage-slider {
    width: 100%;
    height: 90vh;
}

.collage-col {
    height: 100%;
    padding: 3px;
    display: flex;
    flex-direction: column;
}

.collage-item {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000c14;
}

.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: 6px; }
.collage-col.stacked .collage-item { height: 50%; }

/* --- SLIDE-UP INFO MATRIX MODULE --- */
.item-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 21, 35, 0.98) 0%, rgba(0, 12, 20, 0.5) 50%, transparent 100%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.item-info {
    text-align: center;
    transform: translateY(40px);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Hover Engine Triggers */
.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: #FFD200; /* Rebranded: Marigold Gold localized high-visibility taxonomy tags */
    font-weight: 800;
    letter-spacing: 4px;
    font-size: 11px;
    margin-bottom: 12px;
    display: block;
}

.item-overlay h3 {
    font-size: 1.8rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 10px 0;
    letter-spacing: 1px;
}

.item-overlay p {
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 auto 15px auto;
    max-width: 85%;
}

.brand-gradient-line {
    width: 65px;
    height: 3px;
    margin: 0 auto 15px auto;
    background: linear-gradient(to right, #004182 50%, #FFD200 50%); /* Rebranded: Core Navy to Marigold Gold balance line segment */
}

.gallery-number {
    font-size: 20px;
    font-weight: 700;
    margin-top: 15px;
    color: #fff;
    letter-spacing: 1px;
}

/* Accent layout coloration parameter targets current page index text marker */
.gallery-number::first-letter {
    color: #FFD200; /* Rebranded: Active numeral initial to Marigold */
}

/* Slider Controls Configuration */
.collage-arrow {
    background: #ffffff !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 0px !important; /* Architectural technical crisp angle layout */
    opacity: 0.9;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}
.collage-arrow:hover { 
    background: #004182 !important; /* Rebranded: Swiper controller container to Navy */
}
.collage-arrow:after { 
    font-size: 16px !important; 
    color: #004182 !important; 
    font-weight: 900; 
}
.collage-arrow:hover:after { 
    color: #FFD200 !important; /* Rebranded: Navigation directional arrow tips shift crisp to gold on active state */
}
/* Responsive Grid Overrides */
@media (min-width: 1024px) {
    .collage-col.vertical { width: 25% !important; }
    .collage-col.featured { width: 45% !important; }
    .collage-col.stacked { width: 30% !important; }
}

@media (max-width: 768px) {
    .collage-gallery { padding: 40px 0; }
    .collage-slider { height: 65vh; }
    .collage-col { width: 85% !important; }
    .item-overlay { opacity: 1; padding: 25px; }
    .item-info { transform: translateY(0); }
    .item-overlay h3 { font-size: 1.4rem; }
    .item-overlay p { max-width: 100%; font-size: 13px; }
    .pro-cinematic { height: 40vh; }
    .cinema-frame { height: 8%; }
    .main-action { font-size: 15px; }
    .glass-circle { width: 50px; height: 50px; }
}


/* ==========================================================================
   BRAND INTEGRATED FOOTER MASTER - REBRANDED DESIGN MATRIX
   Property: Microtel Inn & Suites by Wyndham Perry
   Colors: Core Navy (#004182), Dark Matrix Base (#000c14), Marigold Gold (#FFD200)
   ========================================================================== */

.site-estate-footer {
    /* Rich Deep Navy blending down into an ultra-dark atmospheric foundation */
    background: linear-gradient(180deg, #001322 0%, #000c14 100%); 
    position: relative;
    padding-top: 80px;
    color: #ffffff;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

/* ANTIQUE BACKGROUND WATERMARK */
.footer-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6vw;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.012); /* Subtle architectural background text hint */
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.site-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 5;
}

/* --- IDENTITY PLATFORM --- */
.f-logo {
    height: 95px;
    width: auto;
    display: block;
    
    /* Contrast Protection: Generates a soft light-diffused glow behind the dark parts of the logo */
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    
    margin-bottom: 30px;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.3s ease;
}

.f-logo:hover {
    transform: scale(1.03);
    background: #ffffff; /* Total white pop on interaction */
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 80px;
}

/* --- TYPOGRAPHY & BRAND ACCENTS --- */
.f-heading {
    font-size: 19px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 35px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    text-decoration: none;
}

/* Cohesive Microtel Marigold Gold Structural Divider Line */
.f-heading::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 55px;
    height: 3px;
    background: #FFD200; /* Rebranded: Marigold Gold accent underline */
}

.f-tagline {
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    font-size: 14px;
    margin: 25px 0;
}

/* --- INTERACTIVE NAV ARRAYS --- */
.link-columns { display: flex; gap: 40px; }
.f-list { list-style: none; padding: 0; }
.f-list li { margin-bottom: 14px; }

.f-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.f-list a:hover { 
    color: #FFD200; /* Rebranded: Sharp Marigold Gold shift on list hover */
    padding-left: 6px; 
}

.brand-teal-cta {
    color: #FFD200 !important; /* Rebranded: Action links take primary brand gold highlight text */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.f-socials a {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.02);
}

.f-socials a:hover {
    border-color: #FFD200; /* Rebranded: Social ring illuminates gold */
    background: #FFD200; /* Container pops out in solid gold block */
    color: #000c14; /* Flips active icon vector back to ultra-dark navy */
    transform: translateY(-4px);
}

/* --- THE CONCIERGE CARD --- */
.contact-ledger-card {
    background: rgba(0, 12, 20, 0.4);
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 3px solid #004182; /* Rebranded: Anchored signature header striping set to Core Deep Navy */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-row { display: flex; gap: 18px; margin-bottom: 22px; }
.contact-row:last-child { margin-bottom: 0; }

.contact-row i { 
    color: #FFD200; /* Rebranded: Structural ledger inline icons highlight crisp gold */
    font-size: 16px; 
    margin-top: 4px; 
}

.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; 
    transition: color 0.3s;
}

.contact-row a:hover {
    color: #FFD200; /* Direct active interaction link changes to Marigold */
}

/* --- BOTTOM LEGAL BASE ESTATE BAR --- */
.estate-bar {
    background: #00080f; /* Deepest black-navy anchor floor block */
    padding: 35px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

.bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px; /* Prevents text elements from colliding */
}

/* Width Allocation Fixes */
.bar-content .ownership {
    flex: 2; /* Gives the long legal text the lion's share of the horizontal space */
    line-height: 1.6;
    margin: 0;
}

.bar-content .legal-links {
    flex: 1;
    display: flex;
    white-space: nowrap; /* Prevents the links from awkwardly stacking vertically */
    align-items: center;
    justify-content: center;
}

.bar-content .credit {
    flex: 1;
    text-align: right; /* Aligns clean with the right side of your container */
    white-space: nowrap;
    margin: 0;
}

/* Link Interactions */
.legal-links a, .credit a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.3s ease;
}

.legal-links a:hover, .credit a:hover { 
    color: #FFD200; /* Rebranded: Base copyright link inline parameters track cleanly to gold */
}

.bar-sep { 
    margin: 0 12px; 
    color: #FFD200; /* Rebranded: Inline structural separation dots turn into gold punctuation ticks */
    opacity: 0.4; 
}




/* RESPONSIVE SCALING ADAPTATIONS */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr; gap: 50px; }
    .estate-bar { padding: 40px 0; }
    .bar-content { flex-direction: column; gap: 20px; text-align: center; }
}
/* ==========================================================================
   UNIQUE AVIATION WAYFINDER BACK TO TOP - REBRANDED DESIGN MATRIX
   Property: Microtel Inn & Suites by Wyndham Perry
   Colors: Core Navy (#004182), Dark Matrix Base (#000c14), Marigold Gold (#FFD200)
   ========================================================================== */

.mke-back-to-top {
    position: fixed;
    right: 40px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px) 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 Altitude Gauge Track */
.mke-gauge-track {
    width: 2px;
    height: 70px;
    background: rgba(0, 65, 130, 0.15); /* Rebranded: Soft backdrop tint using Core Navy */
    position: relative;
    margin-bottom: 12px;
    overflow: hidden;
    border-radius: 1px;
}

/* Dark Layout Fallback (If button falls over dark panels like sections/footer) */
.site-estate-footer ~ .mke-back-to-top .mke-gauge-track,
.kinetic-attractions ~ .mke-back-to-top .mke-gauge-track {
    background: rgba(255, 255, 255, 0.12);
}

/* Dynamic Fill Bar Linked to JavaScript Percentage Tracker */
.mke-gauge-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%; /* Adjusted live by JS */
    background: linear-gradient(to top, #FFD200, #004182); /* Rebranded: Marigold Gold rising to Core Deep Navy */
    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: 8px;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: #004182; /* Rebranded: Primary Core Navy label text */
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 6px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
}

/* Overriding text color when hovering over dark sections */
.site-estate-footer ~ .mke-back-to-top .mke-top-text,
.kinetic-attractions ~ .mke-back-to-top .mke-top-text {
    color: rgba(255, 255, 255, 0.9);
}

/* The Core Icon Housing Button */
.mke-icon-box {
    width: 40px;
    height: 40px;
    background: #004182; /* Rebranded: Heavy structural base color set to Core Navy */
    border: 1px solid rgba(255, 210, 0, 0.3); /* Rebranded: Outlined clean Marigold frame edge */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 12, 20, 0.15);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mke-icon-box i {
    font-size: 14px;
    color: #FFD200; /* Rebranded: Internal arrow vector pops in high-contrast Marigold Gold */
    transition: transform 0.3s ease;
}

/* --- MOTION INTERACTION HOVER STATES --- */
.mke-back-to-top:hover .mke-top-text {
    opacity: 1;
    transform: scale(1);
    color: #FFD200 !important; /* Rebranded: Eye-guiding Marigold snap on mouse hover focus */
}

.mke-back-to-top:hover .mke-icon-box {
    background: #FFD200; /* Rebranded: Complete color inversion! Container turns solid gold block */
    border-color: #FFD200;
    box-shadow: 0 10px 25px rgba(255, 210, 0, 0.4);
    transform: translateY(-4px);
}

.mke-back-to-top:hover .mke-icon-box i {
    color: #000c14; /* Rebranded: Icon element flips clean into dark charcoal/navy for extreme clarity */
    animation: flightClimb 0.6s ease-in-out infinite alternate;
}

/* Takeoff Climb Simulation Effect */
@keyframes flightClimb {
    0% { transform: translateY(2px); }
    100% { transform: translateY(-4px); }
}


/* --- RESPONSIVE DOWN-SCALING VIEWPORTS --- */
@media (max-width: 768px) {
    .mke-back-to-top {
        right: 20px;
        bottom: 20px;
    }
    .mke-gauge-track {
        display: none; /* Hide gauge on mobile viewports for clean real estate */
    }
    .mke-icon-box {
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.95);
        border-color: rgba(0, 164, 196, 0.4);
    }
}
/* === LAYOUT-MATCHING COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  /* Primary Solid Brand Navy */
  background: #004182; 
  color: #ffffff;
  z-index: 9999;
  /* Deep navy shadow for floating effect */
  box-shadow: 0 -5px 30px rgba(0, 30, 60, 0.5);
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  /* Top accent line in Brand Yellow */
  border-top: 3px solid #FFD200;
}

.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}

/* Content Layout */
.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px 40px;
  font-size: 15px;
  line-height: 1.6;
}

.cookie-content p {
  flex: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.cookie-link {
  /* Yellow brand accent link */
  color: #FFD200;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cookie-link:hover {
  color: #ffffff;
}

/* Buttons Container */
.cookie-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-btn {
  border: none;
  border-radius: 4px; /* Matches clean squared/slightly rounded button styles */
  padding: 10px 24px;
  font-size: 13px;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

/* Primary Accept Button (Brand Yellow) */
.cookie-btn.accept {
  background: #FFD200;
  color: #004182;
  border: 1px solid #FFD200;
  box-shadow: 0 4px 15px rgba(255, 210, 0, 0.3);
}

.cookie-btn.accept:hover {
  background: #ffffff;
  color: #004182;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

/* Secondary Decline / Preferences Button */
.cookie-btn.decline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.cookie-btn.decline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
}

/* === Responsive (Tablet + Mobile Optimized) === */
@media (max-width: 1024px) {
  .cookie-banner {
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 150%);
    width: 90%;
    border-radius: 8px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5);
  }

  .cookie-banner.show {
    transform: translate(-50%, 0);
  }

  .cookie-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    gap: 15px;
    text-align: center;
  }

  .cookie-content p {
    font-size: 14px;
  }

  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    max-width: 140px;
    padding: 10px 0;
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  .cookie-banner {
    width: 92%;
    bottom: 12px;
  }

  .cookie-content {
    padding: 16px;
  }

  .cookie-content p {
    font-size: 13px;
  }
}
.accessibility-info {
    background-color: #ffffff; /* Clean white background to create a visual section break */
    border-top: 3px solid #002b5c; /* Primary Dark Navy top border */
    border-bottom: 3px solid #002b5c; /* Primary Dark Navy bottom border */
    color: #002b5c; /* Deep navy text for maximum contrast & crisp readability */
    text-align: center;
    padding: 22px 20px;
    font-size: 15px;
    letter-spacing: 0.5px;
    line-height: 1.6;
    position: relative;
}

/* Inner Gold/Navy Subtle Accent Frame */
.accessibility-info::before {
    content: "";
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 10px;
    right: 10px;
    border-top: 1px dashed rgba(0, 43, 92, 0.15);
    border-bottom: 1px dashed rgba(0, 43, 92, 0.15);
    pointer-events: none;
}

.acc-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 1380px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Icon styled in Primary Dark Navy */
.acc-container em {
    color: #002b5c; 
    font-size: 22px;
}

/* Links styled with Primary Navy text and a Gold/Yellow highlight underline */
.accessibility-info a {
    color: #002b5c;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
    border-bottom: 2px solid #FFD200; /* Yellow underline matching brand accent */
    transition: all 0.3s ease;
    margin-left: 6px;
    padding-bottom: 2px;
}

/* Hover effect highlights link with a solid Yellow background tag style */
.accessibility-info a:hover {
    color: #002b5c;
  
    border-bottom-color: #FFD200;
    padding-left: 6px;
    padding-right: 6px;
    border-radius: 2px;
}

/* --- Tablet & Mobile Logic --- */
@media (max-width: 1024px) {
    .accessibility-info {
        padding: 25px 15px;
    }

    .acc-container {
        flex-direction: column; 
        gap: 10px;
    }

    .acc-container span {
        max-width: 600px;
        display: block;
    }

    .accessibility-info::before {
        left: 5px;
        right: 5px;
    }
}

/* --- Specific Small Mobile Fix --- */
@media (max-width: 480px) {
    .accessibility-info {
        font-size: 14px;
        border-top-width: 2px;
        border-bottom-width: 2px;
    }

    .accessibility-info a {
        display: inline-block;
        margin-top: 6px;
        font-size: 15px;
    }

    .acc-container em {
        font-size: 24px;
    }
}
/* Container adjusted to merge cleanly into the layout */
.booking-container {
  width: 100%;
  background-color: #f4f6f8; /* Crisp neutral background matching the layout gaps */
  padding: 30px 20px;
  position: relative;
  z-index: 99;
  box-sizing: border-box;
}

/* Redesigned Reservation Box */
.reservation-box {
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 5px solid #FFD200; /* Signature Brand Yellow Accent Bar */
  box-sizing: border-box;
  padding: 30px 40px;
  box-shadow: 0 10px 25px rgba(0, 43, 92, 0.08); /* Soft Brand Navy Drop Shadow */
}

.reservation-box form {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  width: 100%;
}

.form-group {
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #002b5c; /* Primary Brand Navy */
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  height: 16px;
}

.form-group label svg {
  color: #002b5c; /* Icon matches Primary Navy */
}

/* Input and Select Fields */
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 2px;
  font-size: 14px;
  color: #002b5c;
  background: #ffffff;
  height: 48px;
  box-sizing: border-box;
  transition: all 0.2s ease-in-out;
  -webkit-appearance: none;
  appearance: none;
}

.input-with-icon {
  position: relative;
  width: 100%;
}

.input-with-icon input {
  cursor: pointer;
}

/* Vertically Centered Custom Dropdown Arrow */
.custom-select-wrapper {
  position: relative;
  width: 100%;
}

.custom-select-wrapper::after {
  content: "▼";
  font-size: 8px;
  color: #002b5c; /* Primary Navy arrow */
  position: absolute;
  right: 15px;
  bottom: 19px; 
  pointer-events: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #002b5c; /* Navy Focus Ring */
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 43, 92, 0.1);
}

/* Button Group Wrapper */
.form-btn-group {
  flex: 1.2; 
  min-width: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Check Availability Button */
.check-btn {
  width: 100%;
  height: 48px;
  background: #002b5c; /* Primary Brand Navy */
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.check-btn:hover {
  background: #FFD200; /* Brand Yellow Hover */
  color: #002b5c; /* Text shifts to Navy for strong contrast */
}

/* jQuery UI Datepicker Overrides */
.ui-datepicker {
  border: none !important;
  box-shadow: 0 10px 25px rgba(0, 43, 92, 0.15) !important;
}
.ui-datepicker-header {
  background: #002b5c !important; /* Header in Navy */
  color: #fff !important;
  border: none !important;
}
.ui-state-highlight, .ui-widget-content .ui-state-highlight {
  border: 1px solid #FFD200 !important;
  background: #fffdf0 !important;
  color: #002b5c !important;
}
.ui-state-active, .ui-widget-content .ui-state-active {
  background: #002b5c !important;
  color: #fff !important;
  border: 1px solid #002b5c !important;
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .booking-container {
    padding: 20px 15px;
  }
  .reservation-box {
    padding: 20px;
  }
  .reservation-box form {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
  .form-group {
    width: 100%;
  }
  .form-group label {
    height: auto;
  }
  .form-btn-group {
    width: 100%;
  }
}
/* --- INNER PAGE HERO --- */
.inner-hero {
  position: relative;
  height: 60vh; 
  min-height: 550px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 120px; 
  /* Fallback background set to Primary Navy */
  background-color: #002b5c; 
}

.inner-hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.inner-overlay {
  position: absolute;
  inset: 0;
  /* Gradient overlay using Primary Navy (#002b5c) tones */
  background: linear-gradient(
    to bottom,
    rgba(0, 43, 92, 0.40) 0%,     /* Protects visibility for top navigation */
    rgba(0, 43, 92, 0.75) 35%,    /* Vignette mask behind header text */
    rgba(0, 43, 92, 0.90) 70%,    /* High-contrast density for copy visibility */
    rgba(0, 43, 92, 0.60) 100%    /* Smooth transition to lower section */
  );
  z-index: 2;
}

.inner-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 1200px; 
  padding: 0 30px;
}

.inner-subtitle {
  font-size: 0.95rem;
  letter-spacing: 4px; 
  text-transform: uppercase;
  /* Accent color updated to Brand Yellow */
  color: #FFD200; 
  margin-bottom: 1.2rem;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.inner-title {
  font-size: clamp(2.5rem, 5.5vw, 4.8rem); 
  font-weight: 900;
  color: #ffffff;
  margin: 0;
  line-height: 1.1;
  text-transform: uppercase; 
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.8),
               0 2px 5px rgba(0, 0, 0, 0.6);
}

/* Accent Divider Bar in Brand Yellow */
.inner-divider {
  width: 80px; 
  height: 4px;
  background-color: #FFD200; 
  margin: 25px auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.inner-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  line-height: 1.75;
  color: #ffffff;
  max-width: 780px;
  margin: 0 auto;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

/* Responsive Scaling */
@media (max-width: 768px) {
  .inner-hero {
    height: 55vh;
    padding-top: 140px; 
  }
  .inner-subtitle {
    font-size: 0.85rem;
    letter-spacing: 3px;
  }
  .inner-desc {
    font-size: 1.05rem;
  }
}
/* --- PREMIUM HOTEL AMENITIES MATRIX --- */
.steward-ledger {
  background-color: #f4f6f8; /* Crisp neutral background */
  padding: 30px 4%;
}

.ledger-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* --- LOGO COHESIVE HEADER --- */
.ledger-header { 
  text-align: center; 
  max-width: 1280px;
  margin: 0 auto 60px; 
}

.ledger-pretitle {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: #002b5c; /* Primary Brand Navy */
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 10px;
}

.ledger-header h2 { 
  font-size: clamp(2.2rem, 4vw, 3.2rem); 
  color: #002b5c; /* Primary Brand Navy */
  text-transform: uppercase; 
  margin: 0; 
  letter-spacing: 1px;
  font-weight: 900;
}

.ledger-subtitle { 
  
  font-size: 28px; 
  letter-spacing: 1px; 
  color: #475569;
  font-weight: 600; 
  margin: 5px 0 0; 
}

.ledger-subtitle a {
  color: #002b5c;
  text-decoration: none;
  border-bottom: 2px solid #FFD200; /* Yellow Accent Line */
  transition: all 0.3s ease;
}

.ledger-subtitle a:hover {
  color: #FFD200; /* Yellow Hover Text */
  border-bottom-color: #002b5c;
}

.ledger-line { 
  height: 4px; 
  width: 60px; 
  background: #FFD200; /* Brand Yellow Accent Line */
  margin: 25px auto; 
}

.ledger-intro-text { 
  font-size: 1.05rem; 
  color: #334155;
  line-height: 1.8; 
  margin: 0;
}

.ledger-intro-text a { 
  font-size: 1.05rem; 
  color: #002b5c; /* Primary Navy */
  font-weight: 700;
  line-height: 1.8; 
  margin: 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 43, 92, 0.3);
  transition: all 0.2s ease;
}

.ledger-intro-text a:hover {
  color: #FFD200;
  background-color: #002b5c;
  border-bottom-color: transparent;
}

/* --- MINIMALIST POPULAR BAR --- */
.popular-facilities-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 60px;
  padding: 24px;
  background: #ffffff; 
  border-radius: 8px;
  border-left: 5px solid #FFD200; /* Yellow Accent Edge */
  box-shadow: 0 10px 25px rgba(0, 43, 92, 0.06);
}

.popular-facilities-bar > span {
  font-size: 0.9rem;
  font-weight: 700;
  color: #002b5c;
  display: flex;
  align-items: center;
}

.popular-facilities-bar .fa-solid {
  color: #002b5c; /* Primary Navy Icons */
  font-size: 1.1rem;
  margin-right: 10px;
  display: inline-block;
}

/* --- THE CARD-DECKS MATRIX GRID --- */
.ledger-grid { 
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px; 
  align-items: stretch; 
}

.ledger-panel { 
  background: #ffffff;
  border-radius: 8px;
  padding: 40px 30px; 
  box-shadow: 0 10px 30px rgba(0, 43, 92, 0.05);
  border: 1px solid #e2e8f0;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.ledger-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 43, 92, 0.12);
}

.ledger-panel.featured-panel {
  border-top: 4px solid #FFD200; /* Brand Yellow Header Top Border */
}

.panel-head { 
  text-align: center; 
  border-bottom: 1px solid #f1f5f9; 
  padding-bottom: 25px; 
  margin-bottom: 25px; 
}

.icon-sphere {
  width: 60px;
  height: 60px;
  background: rgba(0, 43, 92, 0.08); /* Light Navy Tint */
  color: #002b5c; /* Navy Icon */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 24px;
}

.panel-head h3 { 
  font-size: 1.25rem; 
  color: #002b5c; /* Primary Navy */
  margin: 0; 
  font-weight: 800;
}

.panel-tag { 
  display: inline-block; 
  font-size: 0.7rem; 
  color: #002b5c; 
  text-transform: uppercase; 
  margin-top: 8px; 
  letter-spacing: 1.5px;
  font-weight: 700;
  background: #f1f5f9;
  padding: 4px 12px;
  border-radius: 20px;
}

/* --- DIV-BASED LIST SECTION HEADINGS --- */
.ledger-group-heading { 
  font-size: 0.85rem; 
  color: #002b5c; /* Navy Headings */
  text-transform: uppercase; 
  margin: 25px 0 12px; 
  font-weight: 800;
  letter-spacing: 0.5px;
}

.ledger-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ledger-items li {
  font-size: 0.95rem;
  color: #334155; 
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: flex-start;
  line-height: 1.4;
}

.ledger-items li:last-child {
  border-bottom: none;
}

.ledger-items li span {
  color: #002b5c; /* Primary Navy checkmarks */
  margin-right: 12px;
  margin-top: 3px;
  font-size: 0.85rem;
}

/* --- FEMA FLAG BANNER SECTION --- */
.ledger-fema-ribbon {
  margin-top: 40px;
  background: #002b5c; /* Deep Primary Navy Ribbon */
  color: #ffffff;
  padding: 20px 30px;
  border-radius: 8px;
  border-left: 5px solid #FFD200; /* Yellow Highlight Edge */
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 43, 92, 0.15);
}

.ledger-fema-ribbon span:first-child {
  font-size: 24px;
  color: #FFD200; /* Yellow Icon inside Ribbon */
}

.ledger-fema-ribbon span:last-child {
  font-size: 0.95rem;
  line-height: 1.6;
}

.ledger-footer {
  margin-top: 40px;
  text-align: center;
  font-size: 0.85rem;
  color: #64748b;
}

.ledger-footer span {
  color: #002b5c;
  margin-right: 6px;
}

/* --- RESPONSIVE STRUCTURAL MEDIA VIEWPORTS --- */
@media (max-width: 1024px) {
  .ledger-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .ledger-panel {
    padding: 35px 25px;
  }
}

@media (max-width: 768px) {
  .steward-ledger {
    padding: 60px 20px;
  }
  .popular-facilities-bar {
    justify-content: flex-start;
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px;
    padding: 20px;
  }
  .ledger-fema-ribbon {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
  }
}

@media (max-width: 480px) {
  .popular-facilities-bar {
    grid-template-columns: 1fr; 
  }
}
/* ============================================================
   THINGS TO DO - MICROTEL PERRY AREA HIGHLIGHTS
   Primary Navy: #002b5c | Brand Yellow Accent: #FFD200 | Light Gray: #f8fafc
   ============================================================ */

/* 1. SECTION CONTAINER */
.spotlight-section {
  background-color: #f8fafc; 
  background-image: linear-gradient(180deg, rgba(241, 245, 249, 0.5), rgba(255, 255, 255, 0.8));
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  padding: 30px 0;
  overflow: clip;
}

/* 2. SECTION HEADER (Title & Intro) */
.ttd-section-header {
  width: 100%;
  text-align: center;
  max-width: 1280px;
  margin: 0 auto 60px auto;
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 43, 92, 0.04);
  border: 1px solid rgba(0, 43, 92, 0.04);
}

.ttd-main-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: #002b5c; /* Primary Brand Navy */
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 1px;
  line-height: 1.2; 
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 900;
  text-decoration: none;
}

.ttd-main-title span {
  font-size: 28px;
  letter-spacing: 1px; 
  color: #64748b;
  font-weight: 600; 
  text-transform: none;
  margin-top: 15px; 
}

.ttd-main-title span a {
  color: #002b5c;
  text-decoration: none;
  border-bottom: 2px solid #FFD200; /* Yellow Accent Line */
  transition: all 0.3s ease;
}

.ttd-main-title span a:hover {
  color: #FFD200; /* Yellow Hover Accent */
  border-bottom-color: #002b5c;
}

.ttd-main-intro {
  max-width: 1280px;
  margin: 0 auto;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.8;
}

.ttd-main-intro a {
  color: #002b5c; /* Primary Navy Links */
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 43, 92, 0.3);
  transition: all 0.2s ease;
}

.ttd-main-intro a:hover {
  color: #FFD200;
  background-color: #002b5c;
  border-bottom-color: transparent;
}

.header-divider {
  width: 60px;
  height: 4px;
  background: #FFD200; /* Brand Yellow Accent Divider */
  margin: 25px auto;
}

/* 3. MAIN SCROLLING WRAPPER */
.spotlight-wrapper {
  display: flex;
  position: relative;
  align-items: stretch; 
  max-width: 1240px;
  margin: 0 auto;
  background: #ffffff;  
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 43, 92, 0.05);
  border: 1px solid rgba(0, 43, 92, 0.04);
  overflow: visible;
}

/* 4. SCROLLING NARRATIVE COLUMN (LEFT) */
.spotlight-narrative {
  flex: 1;
  position: relative;
  z-index: 2;
  padding: 0 60px;
}

.narrative-block {
  min-height: 70vh; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
  opacity: 0.2;
  transition: all 0.6s ease-in-out;
}

.narrative-block.active {
  opacity: 1;
}

.narrative-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: #002b5c; /* Primary Navy Accent Number */
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.narrative-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: #002b5c; /* Primary Brand Navy */
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 800;
  margin: 0;
}

.narrative-divider {
  width: 50px;
  height: 3px;
  background: #FFD200; /* Brand Yellow Accent Bar */
  margin: 20px 0;
}

.narrative-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #475569;
  max-width: 480px;
  font-weight: 500;
}

/* 5. STICKY VISUAL COLUMN (RIGHT) */
.spotlight-visuals {
  flex: 1.2;
  height: 100vh;
  position: sticky;
  top: 0;
  z-index: 1;
  border-left: 1px solid #f1f5f9;
  overflow: hidden;
}

.visual-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.visual-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 43, 92, 0.15), rgba(0, 43, 92, 0.55)); /* Primary Navy Overlay */
  z-index: 5;
  pointer-events: none;
}

.spotlight-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out, transform 1.5s ease-out;
  transform: scale(1.05);
}

.spotlight-img.active {
  opacity: 1;
  transform: scale(1);
}

/* 6. VERTICAL PROGRESS BAR (Inside Visuals) */
.spotlight-progress {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  height: 250px;
  width: 4px;
  background: rgba(255, 255, 255, 0.25);
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.progress-fill {
  width: 100%;
  background: #FFD200; /* Brand Yellow Tracker Fill */
  transition: height 0.5s ease;
  height: 20%;
  box-shadow: 0 0 10px rgba(255, 210, 0, 0.8);
}

.progress-total {
  position: absolute;
  bottom: -40px;
  left: -8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 1px 1px 4px rgba(0, 43, 92, 0.8);
}

/* 7. VIEW DETAILS ACTION BUTTON */
.ttd-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 25px;
  padding: 14px 32px;
  background-color: #002b5c; /* Primary Navy CTA Button */
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 4px;
  border-bottom: 3px solid #FFD200; /* Yellow Button Bottom Border */
}

.ttd-btn em {
  margin-left: 10px;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.ttd-btn:hover {
  background-color: #FFD200; /* Yellow Hover Shift */
  color: #002b5c; /* Navy Text Hover */
  box-shadow: 0 5px 15px rgba(0, 43, 92, 0.25);
  border-bottom-color: #002b5c;
}

.ttd-btn:hover em {
  transform: translateX(5px);
}

/* 8. RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .spotlight-wrapper { 
    flex-direction: column; 
    border-radius: 12px;
  }
  
  .ttd-section-header { 
    padding: 40px 20px;
    margin-bottom: 40px;
  }

  .spotlight-visuals { 
    height: 45vh; 
    width: 100%;
    position: relative; 
    border-left: none;
    border-bottom: 1px solid #f1f5f9;
  }

  .spotlight-narrative { 
    width: 100%; 
    padding: 40px 25px; 
  }

  .narrative-block { 
    min-height: auto; 
    padding: 40px 0; 
    opacity: 1; 
  }

  .spotlight-progress { display: none; }
}

@media (max-width: 768px) {
  .spotlight-section {
    padding: 60px 20px;
  }
  .ttd-main-title { font-size: 2.2rem; }
  .narrative-title { font-size: 1.8rem; }
}
/* ============================================================
   NEARBY LEDGER - MICROTEL PERRY AREA HIGHLIGHTS
   Primary Navy: #002b5c | Brand Yellow Accent: #FFD200 | Light BG: #f8fafc
   ============================================================ */

.nearby-ledger-section {
  background-color: #f8fafc; 
  background-image: linear-gradient(180deg, rgba(241, 245, 249, 0.5), rgba(255, 255, 255, 0.8));
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  padding: 80px 5%;
  overflow: clip;
}

.ledger-container {
  max-width: 1240px;
  margin: 0 auto;
  border: 1px solid rgba(0, 43, 92, 0.05); 
  padding: 50px 40px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 43, 92, 0.04);
}

.nearby-grid {
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.nearby-panel {
  flex: 1;
  min-width: 320px;
  border: 1px solid #f1f5f9; 
  padding: 35px;
  background: #ffffff;
  border-radius: 12px;
  transition: all 0.3s ease;
}

/* --- THE HIGHLIGHT PANEL (PRIMARY NAVY & YELLOW) --- */
.nearby-panel.highlight {
  background: #002b5c; /* Primary Navy Highlight Card */
  color: #ffffff;
  border: 1px solid rgba(255, 210, 0, 0.3); 
  transform: scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 43, 92, 0.2);
  z-index: 2;
}

/* Typography Overrides for Center Priority Highlight Block */
.nearby-panel.highlight .panel-heading {
  color: #ffffff; 
  border-bottom-color: #FFD200; /* Yellow Accent Line on Dark Card */
}

.nearby-panel.highlight .nearby-list li {
  color: #e2e8f0;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.nearby-panel.highlight .panel-heading em {
  color: #FFD200; /* Brand Yellow Accent Icon */
}

/* --- PANEL HEADINGS --- */
.panel-heading {
  font-size: 1.2rem;
  color: #002b5c; /* Primary Navy */
  border-bottom: 3px solid #FFD200; /* Brand Yellow Anchor Bar */
  padding-bottom: 12px;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  font-weight: 800;
}

.panel-heading em {
  color: #002b5c; /* Primary Navy Icon */
  margin-right: 12px;
  font-size: 1.05rem;
}

/* --- LIST ITEMS --- */
.nearby-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nearby-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.9rem;
  color: #334155;
  transition: all 0.3s ease;
  font-weight: 500;
}

.nearby-list li:hover {
  color: #002b5c; /* Navy Text Hover */
  padding-left: 6px;
}

/* --- DISTANCE STYLING --- */
.distance {
  color: #002b5c; 
  background: #f1f5f9; /* Soft Light Grey Tag */
  padding: 5px 12px;
  border-radius: 4px;
  vertical-align: middle;
  font-weight: 700;
  font-size: 0.75rem;
  margin-left: 15px;
  white-space: nowrap;
  border-left: 3px solid #002b5c; /* Primary Navy Tag Accent */
}

/* Distance tags inside the highlighted dark navy panel */
.nearby-panel.highlight .distance {
  color: #002b5c;
  background: #FFD200; /* Converts cleanly to Brand Yellow Tag */
  border-left: none;
  font-weight: 800;
}

/* ============================================================
   NEARBY SECTION - MOBILE & IPAD RESPONSIVE ONLY
   ============================================================ */

@media (max-width: 1024px) {
  .nearby-ledger-section {
    padding: 60px 20px; 
    background-attachment: scroll; 
  }

  .ledger-container {
    padding: 30px 20px;
    border-radius: 12px;
  }

  .nearby-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px;
    margin-bottom: 15px;
  }

  .nearby-panel {
    min-width: 0; 
    padding: 25px 20px;
    transform: none !important; 
    box-shadow: none !important;
    border-radius: 8px;
  }

  .panel-heading {
    font-size: 1.05rem;
    padding-bottom: 8px;
    margin-bottom: 15px;
  }

  .nearby-list li {
    padding: 11px 0;
    font-size: 0.85rem;
    align-items: center; 
  }

  .distance {
    font-size: 0.75rem;
    margin-left: 8px;
  }
}

/* --- Mobile Specific (Phones) --- */
@media (max-width: 600px) {
  .nearby-grid {
    grid-template-columns: 1fr; 
    gap: 15px;
  }

  .nearby-ledger-section {
    padding: 40px 10px;
  }

  .ledger-container {
    padding: 20px 15px;
  }
  
  .nearby-panel {
    padding: 20px 15px;
  }
}
/* ============================================================
   NEARBY LOCATION - MICROTEL PERRY INTERACTIVE MAP
   Primary Navy: #002b5c | Brand Yellow Accent: #FFD200 | Light BG: #f8fafc
   ============================================================ */

.clarion-modern-location {
  position: relative;
  background: #f8fafc; 
  padding: 60px 5%;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.journal-wrapper {
  display: flex;
  width: 100%;
  max-width: 1240px;
  gap: 0;
  position: relative;
}

/* --- Map Section --- */
.map-window-wrapper {
  flex: 1.2;
  position: relative;
  height: 600px;
  z-index: 1;
}

.map-window {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(0, 43, 92, 0.08); 
  border-radius: 16px 0 0 16px;
  overflow: hidden;
  filter: contrast(1.02);
}

/* Floating Geo Tag Overlay */
.geo-tag {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: #002b5c; /* Primary Navy Frame */
  color: #ffffff;
  padding: 12px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  border: 1px solid rgba(255, 210, 0, 0.4); /* Brand Yellow Outline */
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 43, 92, 0.2);
}

.coord-divider {
  width: 25px;
  height: 2px;
  background: #FFD200; /* Brand Yellow Anchor Link Line */
}

/* --- Floating Information Canvas Card --- */
.info-glass-panel {
  flex: 0 0 580px;
  background: #002b5c; /* Primary Navy Solid Block */
  margin-left: -40px; 
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 50px;
  z-index: 2;
  border-radius: 12px;
  border-left: 5px solid #FFD200; /* Architectural Brand Yellow Line */
  box-shadow: 0 20px 50px rgba(0, 43, 92, 0.3);
}

.brand-accent-line {
  width: 40px;
  height: 4px;
  background: #FFD200; /* Brand Yellow Separator */
  margin-bottom: 20px;
}

.location-subtitle {
  color: #FFD200; /* Brand Yellow Sub-anchor Label */
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 2px;
  font-size: 0.75rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.location-main-title {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  margin: 0 0 20px 0;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.3;
}

.location-main-title a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.location-main-title a:hover {
  color: #FFD200;
}

.location-description {
  color: #e2e8f0; /* Smooth contrast text for Navy backdrop */
  line-height: 1.75;
  font-size: 0.95rem;
  margin-bottom: 35px;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}

.location-description a {
  color: #FFD200;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 210, 0, 0.6);
}

.location-description a:hover {
  border-bottom-style: solid;
  color: #ffffff;
}

.address-block {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 35px;
}

.address-block address {
  font-style: normal;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 600;
}

.address-block address span {
  color: #FFD200; /* Yellow highlight for Phone Number */
}

/* --- Route Form Input Matrix --- */
.route-form {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 25px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.input-group input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 14px 18px;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  border-radius: 6px;
  outline: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.input-group input:focus {
  border-color: #FFD200;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(255, 210, 0, 0.2);
}

.input-group input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.route-submit-btn {
  background: #FFD200; /* Brand Yellow Call-To-Action Button */
  color: #002b5c; /* Navy Text for High Contrast */
  border: none;
  padding: 16px;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.8rem;
}

.route-submit-btn:hover {
  background: #ffffff;
  color: #002b5c; /* Swaps to crisp White Background on Hover */
  box-shadow: 0 5px 15px rgba(255, 210, 0, 0.35);
}

.visual-hide {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  color: #ffffff !important;
  background-color: #000000 !important;
  text-shadow: 0 0 1px #000000;
}

/* ============================================================
   NEARBY SECTION - MOBILE & IPAD RESPONSIVE ONLY
   ============================================================ */

@media (max-width: 1024px) {
  .clarion-modern-location {
    padding: 40px 20px;
  }

  .journal-wrapper {
    flex-direction: column;
  }

  .map-window-wrapper {
    flex: none;
    width: 100%;
    height: 400px; 
  }

  .map-window {
    border-radius: 12px 12px 0 0; 
  }

  .geo-tag {
    left: 20px;
    bottom: 20px;
    padding: 8px 16px;
    font-size: 10px;
  }

  .info-glass-panel {
    flex: none;
    width: 100%;
    margin-left: 0; 
    margin-top: 0;   
    margin-bottom: 0;
    padding: 40px 25px;
    border-left: none;
    border-top: 5px solid #FFD200; /* Responsive Top Yellow Accent Bar */
    border-radius: 0 0 12px 12px;
  }

  .location-main-title {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .location-description {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }

  .address-block address {
    font-size: 1rem;
  }
}

/* --- Mobile Specific (Phones) --- */
@media (max-width: 600px) {
  .clarion-modern-location {
    padding: 20px 10px;
  }

  .map-window-wrapper {
    height: 320px; 
  }

  .info-glass-panel {
    padding: 30px 20px;
  }

  .geo-tag {
    display: none; 
  }

  .route-submit-btn {
    padding: 16px; 
    font-size: 0.8rem;
  }

  .input-group input {
    font-size: 16px; 
  }
}
/* ============================================================
   CONTACT LEDGER SUITE - MICROTEL PERRY
   Primary Navy: #002b5c | Brand Yellow Accent: #FFD200 | Light Gray: #f8fafc
   ============================================================ */

.contact-ledger-suite {
  padding: 80px 5%;
  background: linear-gradient(rgba(0, 43, 92, 0.92), rgba(0, 43, 92, 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 rgba(255, 255, 255, 0.1);
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 43, 92, 0.25);
  overflow: hidden;
}

.ledger-accent-sidebar {
  width: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  background-color: #002b5c; /* Primary Navy Anchor Panel */
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-logo-mark {
  color: #FFD200; /* Brand Yellow Accent Icon */
}

.ledger-main-content {
  flex: 1;
  padding: 60px;
}

.ledger-headline {
  font-size: 2.4rem;
  color: #002b5c; /* 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, 43, 92, 0.4);
  transition: all 0.3s ease;
}

.ledger-headline span a:hover {
  color: #002b5c; /* Navy Text Hover */
  border-bottom-style: solid;
}

.ledger-subtext {
  color: #475569;
  max-width: 820px;
  line-height: 1.8;
  margin: 0 0 50px 0;
  font-size: 1.02rem;
  font-weight: 500;
}

.ledger-subtext1 {
  color: #64748b;
  text-decoration: none;
}

.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: #002b5c; /* Primary Navy Tag Identifiers */
}

.estate-name {
  color: #002b5c;
  font-weight: 700;
  margin: 0 0 8px 0;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.estate-address {
  color: #475569;
  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: #002b5c; /* Primary Navy Link Elements */
  transition: all 0.3s ease;
  display: inline-block;
  margin-bottom: 5px;
}

.ledger-link:hover {
  color: #d9b100; /* Darker Gold/Yellow Accent for Hover Contrast */
  transform: translateX(4px);
}

.item-description {
  font-family: 'Montserrat', sans-serif;
  color: #475569;
  line-height: 1.6;
  margin: 5px 0 0 0;
  font-size: 0.95rem;
  font-weight: 500;
}

/* ============================================================
   NEARBY SECTION - MOBILE & IPAD RESPONSIVE ONLY
   ============================================================ */

@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: #FFD200; /* Transforms to Brand Yellow accent horizon bar on tablet viewports */
  }

  .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; 
  }
}
/* ============================================================
   SITEMAP INDEX SUITE - MICROTEL PERRY
   Primary Navy: #002b5c | Brand Yellow Accent: #FFD200 | Light Gray: #f8fafc
   ============================================================ */

.sitemap-index-suite {
  padding: 80px 20px;
  background: linear-gradient(rgba(0, 43, 92, 0.93), rgba(0, 43, 92, 0.89)); 
  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(0, 43, 92, 0.08);
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0, 43, 92, 0.2);
  position: relative;
}

.index-label {
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #002b5c; /* Primary Navy Descriptor Tag */
  font-weight: 800;
  display: block;
  margin-bottom: 5px;
}

.index-title {
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  color: #002b5c; /* Primary Navy Heading */
  margin: 0 0 20px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
}

.index-title a {
  color: #002b5c;
  text-decoration: none;
  transition: color 0.3s ease;
}

.index-title a:hover {
  color: #d9b100; /* Darker Gold on Hover for Contrast */
}

.index-description {
  font-size: 0.98rem;
  line-height: 1.8;
  color: #475569;
  max-width: 1050px;
  font-weight: 500;
}

.index-description a.titlelink {
  color: #002b5c;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 210, 0, 0.8);
}

.index-description a.titlelink:hover {
  border-bottom-style: solid;
  color: #d9b100;
}

.index-ornament {
  width: 60px;
  height: 4px;
  background: #FFD200; /* Brand Yellow 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: #002b5c; /* Primary Navy Subheading */
  font-weight: 800;
  border-left: 4px solid #FFD200; /* Brand Yellow Visual Indicator */
  padding-left: 15px;
}

.index-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.index-list li {
  margin-bottom: 16px;
}

.index-list a {
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  color: #475569;
  font-size: 0.92rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.index-list a:hover {
  color: #002b5c; /* Navy Text Shift */
  transform: translateX(6px);
}

/* Specific Style Overrides for Action-Oriented Call-To-Action Links */
.index-list a.brand-teal-cta {
  color: #002b5c;
  font-weight: 800;
  border-bottom: 2px solid #FFD200;
}

.index-list a.brand-teal-cta:hover {
  color: #d9b100;
}

/* ============================================================
   NEARBY SECTION - MOBILE & IPAD RESPONSIVE ONLY
   ============================================================ */

@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;
  }
}
/* ============================================================
   FAQ LEDGER SUITE - MICROTEL PERRY
   Primary Navy: #002b5c | Brand Yellow Accent: #FFD200 | Clean Light: #f8fafc
   ============================================================ */

.faq-ledger-suite {
  background: #ffffff; /* Clean canvas backdrop for maximum text readability */
  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: #002b5c; /* Primary Navy Descriptor Tag */
  display: block;
  margin-bottom: 15px;
  font-weight: 800;
}

.faq-headline {
  font-size: 3rem;
  color: #002b5c; /* Primary Navy Heading Matrix */
  line-height: 1.15;
  margin: 0 0 25px 0;
  text-transform: uppercase;
  font-weight: 900;
}

.faq-headline a {
  color: #002b5c;
  text-decoration: none;
  transition: color 0.3s ease;
}

.faq-headline a:hover {
  color: #d9b100; /* Gold Accent Hover */
}

.faq-context {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.98rem;
  color: #475569; /* Slate-Gray Body Description */
  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: #002b5c; /* Primary Navy Numbers */
  font-weight: 800;
  padding-top: 2px;
}

.faq-entry h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  color: #002b5c; /* 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: #002b5c;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px dashed rgba(0, 43, 92, 0.4);
  transition: color 0.3s ease, border-color 0.3s ease;
}

.faq-entry p a.faq-phone-link:hover,
.faq-entry p a.faq-inline-link:hover {
  color: #d9b100;
  border-bottom-color: #d9b100;
  border-bottom-style: solid;
}

.antique-link {
  color: #002b5c; /* Primary Action Target: Primary Navy */
  text-decoration: none;
  font-weight: 800;
  margin-top: 12px;
  display: inline-block;
  border-bottom: 2px solid #FFD200; /* Brand Yellow Accent Underline */
  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: #d9b100; /* Gold Accent Text shift on hover */
  border-bottom: 2px solid #002b5c;
  transform: translateX(5px);
}

/* ============================================================
   NEARBY SECTION - MOBILE & IPAD RESPONSIVE ONLY
   ============================================================ */

@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%; 
  }
}