﻿/* Optimized Font Pairing: Montserrat (Headings) + Inter (Body) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Inter:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;1,600&family=Montserrat:wght@300;700&display=swap');
/* Reset & Base Layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  /* Inter is the 'Gold Standard' for modern UI readability */
 font-family: 'Montserrat', sans-serif; 
  /* Solid brand background or a very subtle clean gradient */
  background: #000; 
  color: #333;
  line-height: 1.6;
}

/* Headings: Using Montserrat to match the 'Clarion' logo weight */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif ;
  font-weight: 800; /* Extra bold for a premium feel */
  
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

/* Subtle accent for sub-headings or labels */
.sub-label {
  
  font-weight: 600;
  color: #00ACC1;   /* Your Logo Cyan */
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

/* Buttons: Matching the 'e' icon's roundness */
.btn-primary {
  
  background-color: #00ACC1;
  color: #FFFFFF;
  padding: 16px 32px;
  border-radius: 50px; /* Pill shape for modern look */
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 172, 193, 0.3);
}

.btn-primary:hover {
  background-color: #003859;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 56, 89, 0.4);
}

/* ==========================================================================
   AERO-GLIDE V4 - FULL ARCHITECTURAL HEADER
   Property: Clarion Pointe Milwaukee Airport
   Colors: Navy (#003859), Cyan (#00ACC1)
   ========================================================================== 
*/
/* 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.12);
}

.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 - Tailored Brand Teal */
.status-indicator {
    display: flex;
    align-items: center;
    background: rgba(0, 164, 196, 0.12);
    padding: 6px 14px;
    border-radius: 4px; /* Squared sleek look instead of round pill */
    border: 1px solid rgba(0, 164, 196, 0.3);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #00A4C4;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 10px #00A4C4;
    animation: pulse-cp 2s infinite;
}

@keyframes pulse-cp { 
    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: #00A4C4; 
}

.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: #00A4C4; 
    transform: translateY(-1px);
}

/* 3. MAIN NAVIGATION (NEW CENTERED LOGO DESIGN) */
.aero-main-nav {
    margin: 15px 20px;
    background: #ffffff;
    border-radius: 8px; /* Clean, symmetric modern box shape */
    box-shadow: 0 15px 40px rgba(0, 40, 66, 0.15);
    padding: 10px 0;
    transition: all 0.4s ease;
}

/* Grid setup to achieve a perfectly centered logo */
.wing-layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
}

/* Logo centered position */
.aero-logo {
    grid-column: 2;
    padding: 0 40px;
}

.aero-logo img { 
    height: 80px; 
    width: auto; 
    display: block;
    margin: 0 auto;
}

/* Desktop Menu shifted to the left wing */
.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: #002842; /* Pure Brand Deep Navy */
    
    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: #00A4C4; /* Brand Teal dynamic swap */
    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 shifted to the right wing */
.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: #00A4C4; 
    text-transform: uppercase; 
    letter-spacing: 1px;
}

.aero-contact-stack a { 
    color: #002842; 
    text-decoration: none; 
    font-weight: 700; 
    font-size: 14px; 
}

/* Symmetric, High-Contrast Action Button */
.aero-book-btn {
    background: #002842; /* Deep Navy Base */
    color: #ffffff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 4px; /* Matches the upscale hotel look */
    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, 40, 66, 0.2);
}

.aero-book-btn:hover { 
    background: #00A4C4; /* Flips to Clarion Teal on hover */
    color: #ffffff;
    transform: translateY(-1px); 
    box-shadow: 0 6px 20px rgba(0, 164, 196, 0.3);
}

/* 5. MOBILE & RESPONSIVE RECONSTRUCTION */
.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: #002842; 
    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 --- */
.aero-mobile-overlay {
    position: fixed;
    inset: 0;
    background: #003859; /* Navy Base */
    z-index: 9999;
    display: block; /* Added for strict layout rendering */
    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: #f4f7f9; /* Antique Off-White */
    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);
}

.aero-mobile-overlay.active .menu-blade-left { transform: translateX(0); }

.blade-logo { width: 180px; margin-bottom: 40px; }

.blade-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00ACC1;
    font-weight: 800;
    margin-bottom: 8px;
}

.blade-item p, .blade-phone {
    font-size: 18px;
    color: #003859;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.4;
}

.license-line {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.blade-legal { font-size: 11px; }
.blade-legal a { color: #00ACC1; text-decoration: none; font-weight: 700; }
.blade-legal .sep { margin: 0 8px; color: #ccc; }

/* RIGHT SIDE: Navigation Panel */
.menu-blade-right {
    background: #003859;
    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 Unique Style */
.aero-close-btn {
    position: absolute;
    top: 40px;
    right: 40px;
    background: none;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.close-text { font-size: 12px; letter-spacing: 3px; font-weight: 400; opacity: 0.6; }
.close-icon { font-size: 40px; font-weight: 200; }

/* Nav V5 Typography */
.mobile-nav-v5 { display: flex; flex-direction: column; gap: 30px; }

.mobile-nav-v5 a {
    color: #fff;
    text-decoration: none;
    font-size: clamp(30px, 5vw, 50px);
    font-weight: 800;
    position: relative;
    padding-left: 50px;
    transition: 0.3s;
}

.mobile-nav-v5 a::before {
    content: attr(data-num);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #00ACC1;
    font-weight: 400;
}

.mobile-nav-v5 a:hover {
    padding-left: 70px;
    color: #00ACC1;
}

/* RESPONSIVE STACKING FOR MOBILE */
@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%); }
    .menu-blade-right { order: 1; padding: 60px 30px; transform: translateY(-100%); }
    .aero-mobile-overlay.active .menu-blade-left,
    .aero-mobile-overlay.active .menu-blade-right { transform: translateY(0); }
    .blade-logo { width: 140px; }
}

/* --- ANTIQUE INSTRUMENT POD (REFINED) --- */
.aero-sticky-pod {
    position: fixed;
    top: 25px; 
    left: 50%;
    transform: translateX(-50%) translateY(-160%); /* Hidden state */
    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(248, 245, 240, 0.98); /* Antique Parchment */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 56, 89, 0.3); /* Navy Subtle Frame */
    border-bottom: 3px solid #003859; /* Heavy Base for "Weight" */
    border-radius: 100px;
    padding: 8px 12px 8px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(0, 56, 89, 0.15);
}

/* Left Logo Area */
.pod-logo-area {
    display: flex;
    align-items: center;
    border-right: 1px solid rgba(0, 56, 89, 0.1);
    padding-right: 25px;
}

.pod-logo {
    height: 38px;
    width: auto;
    display: block;
}

/* Center Nav */
.pod-nav { 
    display: flex; 
    gap: 35px; 
}

.pod-nav a {
    text-decoration: none;
    color: #003859;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: 0.3s;
}

.pod-nav a:hover {
    color: #00ACC1;
}

/* Right Actions */
.pod-actions { 
    display: flex; 
    align-items: center; 
    gap: 20px; 
}

.pod-icon-link { 
    color: #003859; 
    font-size: 16px; 
    transition: 0.3s; 
}

.pod-icon-link:hover { 
    color: #00ACC1; 
}

.pod-book-btn {
    background: #00ACC1; /* Direct Cyan for Attention */
    color: #fff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 10px;
    letter-spacing: 1.5px;
    transition: 0.4s;
}

.pod-book-btn:hover { 
    background: #003859; 
    box-shadow: 0 8px 20px rgba(0, 56, 89, 0.3);
}
/* --- UPDATED TRIGGER LOGIC --- */

/* --- VISIBILITY REFINEMENTS --- */

/* 1. The Hamburger (Dots) - Higher Contrast */
.pod-trigger {
    display: none; 
    background: #ffffff; /* Brighter white for contrast */
    border: 2px solid #003859; /* Thicker, darker navy border */
    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, 56, 89, 0.1);
}

.dots span { 
    width: 5px; 
    height: 5px; 
    background: #003859; /* Solid Navy Dots */
    border-radius: 50%; 
}

.pod-trigger:hover {
    background: #003859;
    border-color: #003859;
}

.pod-trigger:hover .dots span {
    background: #ffffff; /* Dots turn white on hover */
}

/* 2. Book Now Button - Better Hover State */
.pod-book-btn {
    background: #00ACC1;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 10px;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.pod-book-btn:hover {
    background: #ffffff; /* Switch to white background */
    color: #003859;      /* Text turns Navy */
    border: 1px solid #003859; /* Add Navy border */
    box-shadow: 0 8px 20px rgba(0, 56, 89, 0.15);
}

/* 3. Navigation Links Hover Contrast */
.pod-nav a:hover {
    color: #00ACC1;
    text-decoration: underline;
    text-underline-offset: 5px;
}

/* --- MOBILE/IPAD VISIBILITY --- */
@media (max-width: 991px) {
    .pod-trigger { 
        display: flex; /* Hamburger becomes visible */
    }
    
    .pod-nav { 
        display: none; 
    }
    
    .pod-wrapper {
        padding-right: 15px; /* Give trigger more room */
    }
}

/* --- SECTION BASE --- */
.expert-hero {
    position: relative;
    width: 100%;
    height: 120vh;
    background: #002842; /* Updated to Match Logo Deep Navy Brand Base */
    overflow: hidden;
}

/* --- SLIDE POSITIONING --- */
.ex-slide {
    position: absolute;
    inset: 0;
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    transition: visibility 0s 1.2s, opacity 0s 1.2s;
}

.ex-slide.active {
    visibility: visible;
    opacity: 1;
    z-index: 10;
    transition: none;
}

/* --- BACKGROUND IMAGES --- */
.ex-bg-wrap {
    position: absolute;
    inset: 0;
    clip-path: inset(0 0 0 100%);
    transition: clip-path 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

.ex-slide.active .ex-bg-wrap {
    clip-path: inset(0 0 0 0);
}

/* --- THE PARENT WRAPPER (Ensure this selector matches your HTML container) --- */
.ex-img-wrapper {
    position: relative;
    background-color: #000d16; /* FIXED: Explicit dark navy fallback to guarantee high contrast if image is off */
    overflow: hidden;
}

/* --- THE BACKGROUND IMAGE --- */
.ex-img-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* FIXED: Slightly darkened from 0.2 to 0.15 to physically maximize contrast for overlay text */
    filter: brightness(0.15) contrast(1.1); 
    transform: scale(1.1);
    transition: transform 10s linear;
}

.ex-slide.active .ex-img-bg {
    transform: scale(1);
}

/* --- OVERLAY FRAME (The Overlapping Image) --- */
.ex-overlay-frame {
    position: absolute;
    top: 55%; 
    right: 8%;
    width: 28vw;
    height: 38vw;
    max-height: 520px;
    z-index: 15;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px;
    background: rgba(0, 40, 66, 0.25); /* Deep Navy subtle background tint */
    backdrop-filter: blur(15px);
    opacity: 0;
    transform: translateY(-40%) translateX(50px);
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.6s, opacity 1s ease 0.6s;
    border-radius: 4px; /* Matches the new symmetric look */
}

.ex-slide.active .ex-overlay-frame {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.ex-img-sub {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

/* --- CONTENT ALIGNMENT --- */
.ex-content-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 20;
    display: flex;
    align-items: center; 
}

.ex-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 6%;
}

.ex-text-wrap {
    max-width: 650px;
    padding-top: 80px; 
}

/* --- TYPOGRAPHY --- */
.ex-subtitle {
    display: block;
    color: #00A4C4; /* Updated: Official Brand Clarion Teal */
    font-weight: 800;
    letter-spacing: 4px;
    font-size: 15px;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
}

.ex-title {
    
    font-size: clamp(3rem, 5.5vw, 6rem);
    color: #00A4C4;
    line-height: 1.05;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(30px);
}

.ex-title span { 
    color: #00A4C4; /* Updated: Official Brand Clarion Teal */
     
    font-weight: 400; 
}

.ex-desc {
    color: #00A4C4;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
    opacity: 0;
    transform: translateY(20px);
    letter-spacing: 0.3px;
}

.ex-slide.active .ex-subtitle,
.ex-slide.active .ex-title,
.ex-slide.active .ex-desc {
    opacity: 1;
    transform: translateY(0);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.ex-slide.active .ex-subtitle { transition-delay: 0.7s; }
.ex-slide.active .ex-title { transition-delay: 0.8s; }
.ex-slide.active .ex-desc { transition-delay: 0.9s; }

/* --- BUTTONS --- */
.ex-cta {
    display: flex;
    align-items: center;
    gap: 25px;
    opacity: 0;
    transition: opacity 1s ease 1.1s;
}

.ex-slide.active .ex-cta { opacity: 1; }

.ex-btn-main {
    background: #00A4C4; /* Updated: Official Brand Clarion Teal Main Base */
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 12px;
    transition: all 0.3s ease;
    border: 1px solid #00A4C4;
    border-radius: 4px; /* Matches modern clean lines */
}

.ex-btn-main:hover { 
    background: #002842; /* Hover switches cleanly to Navy Brand */
    border-color: #002842;
    transform: translateY(-1px);
}

.ex-btn-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.ex-btn-link:hover { 
    color: #00A4C4; /* Links hover to brand teal */
}

/* --- CONTROLS --- */
.ex-controls {
    position: absolute;
    bottom: 50px;
    left: 6%;
    display: flex;
    align-items: center;
    gap: 40px;
    z-index: 100;
}

.ex-nav-nums { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    color: #ffffff; 
   
    font-size: 16px; 
}

.num-progress { 
    width: 100px; 
    height: 1px; 
    background: rgba(255, 255, 255, 0.2); 
    position: relative; 
}

.num-bar { 
    position: absolute; 
    left: 0; 
    top: 0; 
    height: 100%; 
    width: 25%; 
    background: #00A4C4; /* Progress tracker bar updated to Brand Teal */
    transition: 0.8s; 
}

.ex-arrow-btn {
    width: 50px; 
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: none;
    color: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ex-arrow-btn:hover { 
    background: #00A4C4; /* Navigation arrows active hover color swap */
    border-color: #00A4C4; 
    color: #ffffff;
}
/* ============================================================
   2. IPAD / TABLET OVERRIDES (992px to 1024px)
   ============================================================ */
@media (max-width: 1024px) {
	.expert-hero {
   
    height: 60vh;
   
}
    .ex-overlay-frame {
        width: 35vw;
        height: 45vw;
        right: 4%;
    }
    
    .ex-text-wrap {
        max-width: 500px;
    }

    .ex-title {
        font-size: 3.5rem;
    }
}

/* ============================================================
   3. MOBILE & SMALL TABLET (UP TO 991px)
   ============================================================ */
@media (max-width: 991px) {
	.expert-hero {
   
    height: 100vh;
   
}
	
    .ex-overlay-frame {
        display: none; /* Hide frame to focus on text and background */
    }

    .ex-content-wrapper {
        align-items: flex-end; /* Push text toward bottom-middle */
        padding-bottom: 120px;
    }

    .ex-text-wrap {
        max-width: 100%;
        text-align: center;
        padding-top: 0;
    }

    .ex-desc {
        margin: 0 auto 35px;
        font-size: 16px;
    }

    .ex-cta {
        justify-content: center;
    }

    .ex-controls {
        left: 50%;
        transform: translateX(-50%); /* Center controls */
        bottom: 30px;
        width: 90%;
        justify-content: center;
    }
    
    .ex-title {
        font-size: 2.8rem;
    }
}

/* ============================================================
   4. SMALL MOBILE (UP TO 480px)
   ============================================================ */
@media (max-width: 480px) {
		

    .ex-title {
        font-size: 2.2rem;
    }

    .ex-subtitle {
        letter-spacing: 3px;
    }

    .ex-cta {
        flex-direction: column; /* Stack buttons for easy tapping */
        gap: 15px;
    }

    .ex-btn-main {
        width: 100%;
        text-align: center;
    }

    .ex-nav-nums {
        display: none; /* Simplify UI for tiny screens */
    }
}

/* --- SECTION WRAPPER --- */
.expert-welcome {
    position: relative;
    padding: 40px 0;
    background: #fcfbf9;
    overflow: hidden;
}

/* Background Texture Decor - Mirrored to the left side to balance the flip */
.ew-bg-accent {
    position: absolute;
    top: 10%; left: -5%;
    width: 40%; height: 80%;
    background: #eef1f2;
    z-index: 1;
    clip-path: polygon(0% 0%, 75% 0%, 100% 100%, 25% 100%);
}

.ew-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* --- LEFT SIDE: NOW THE CONTENT CARD (FLIPPED via order: 1) --- */
.ew-content-group {
    flex: 1;
    margin-right: -100px; /* Overlaps onward to the right instead of left */
    margin-left: 0;
    position: relative;
    z-index: 6;
    order: 1; /* Pushes content group to the left side */
}

.ew-text-card {
    background: #fff;
    padding: 80px 70px;
    box-shadow: -20px 40px 100px rgba(0, 40, 66, 0.06); /* Shifted shadow direction for luxury feel */
    display: flex;
    flex-direction: column;
}

.ew-eyebrow {
    font-size: 11px; 
    font-weight: 800; 
    letter-spacing: 5px; 
    color: #002842; /* Brand Clarion Teal */
    display: block; 
    margin-bottom: 20px;
    text-align: left;
}

.ew-title {
    font-size: clamp(2.5rem, 4.5vw, 4.2rem);
    color: #002842; /* Brand Deep Navy */
    line-height: 1.15; 
    margin-bottom: 30px;
    text-decoration: none;
}

.ew-title span { 
    color: #046174; /* Highlighted inline accent with brand teal */
    font-weight: 400; 
}

/* --- INTEGRATED INTERNAL SCROLLER ENGINE FOR WELCOME CARD --- */
.ew-body {
    max-height: 320px; /* Restricts body height to keep the card standardized */
    overflow-y: auto;  /* Activates vertical scrollbar automatically when needed */
    padding-right: 15px; /* Creates clean spacing so text doesn't touch the scrollbar */
    margin-bottom: 45px;
    -webkit-overflow-scrolling: touch; /* Smooth inertia scrolling for touch devices */
}

/* Custom Webkit Scrollbars for the Welcome Card Body */
.ew-body::-webkit-scrollbar {
    width: 6px;
}
.ew-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.ew-body::-webkit-scrollbar-thumb {
    background: #00A4C4;
    border-radius: 10px;
}
.ew-body::-webkit-scrollbar-thumb:hover {
    background: #002842;
}

.ew-lead { font-size: 19px; font-weight: 400; color: #1a1a1a; margin-bottom: 25px; line-height: 1.6; }
.ew-para { font-size: 15px; color: #555; line-height: 1.8; margin-bottom: 20px; }
.ew-para a { color: #1a1a1a; text-decoration: none; }

/* Discovery Button Position Adjustment */
.ew-actions {
    margin-top: auto;
}

.ew-btn-discover {
    background: none; border: none; display: flex; align-items: center;
    gap: 20px; cursor: pointer; padding: 0;
}

.btn-circle {
    width: 60px; height: 60px; 
    border: 1px solid #002842; /* Brand Deep Navy */
    color: #002842;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-text { font-weight: 800; letter-spacing: 2px; font-size: 12px; color: #002842; }

.ew-btn-discover:hover .btn-circle { 
    background: #002842; 
    color: #fff; 
}

/* --- RIGHT SIDE: 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, 40, 66, 0.25);
    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);
}

.ew-image-canvas:hover {
    transform: translateY(-5px) rotateX(2deg) rotateY(-2deg);
}

.ew-image-canvas:hover .ew-main-img { 
    transform: scale(1.05) rotate(0deg); 
}

/* --- SOLID DESTRUCTURING BACKING PLATFORM --- */
.ew-outline-frame {
    position: absolute;
    bottom: -40px; 
    right: 5px; 
    left: auto;
    width: 85%; 
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 40, 66, 0.95) 0%, rgba(0, 164, 196, 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);
    box-shadow: -10px 20px 40px rgba(0, 40, 66, 0.15);
}

.ew-media-group:hover .ew-outline-frame {
    transform: translate(-15px, 15px) scale(0.98);
    background: linear-gradient(135deg, rgba(0, 164, 196, 0.95) 0%, rgba(0, 40, 66, 0.95) 100%);
}

/* Play Button Styling */
.ew-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 40, 66, 0.4); 
    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: #fff; }
.play-icon-wrap {
    width: 80px; height: 80px;
    background: #fff; 
    color: #002842; 
    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);
}

/* --- EXPANDABLE DEPTH PANEL --- */
.ew-depth-panel {
    position: fixed; 
    inset: 0; 
    background: #002842; /* Brand Deep Navy */
    z-index: 999;
    display: flex; 
    align-items: center;
    justify-content: center;
    transform: translateX(100%); 
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -20px 0 50px rgba(0, 40, 66, 0.4);
    
    /* SCROLL FIXES: Allows vertical scrolling when content exceeds viewport height */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling for Safari iOS */
}

.ew-depth-panel.active { 
    transform: translateX(0); 
}

.ew-panel-content-wrapper {
    width: 1300px; 
    max-width: 90%; 
    margin: 0 auto;
    padding: 80px 40px; /* Uniform top/bottom padding keeps space for the close button */
}

.ew-panel-close {
    position: absolute; 
    top: 40px; 
    right: 60px; 
    background: none; 
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff; 
    padding: 12px 25px; 
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 11px;
    transition: 0.3s ease;
    z-index: 10; /* Keeps button accessible above scrolling text */
}

.ew-panel-close:hover {
    background: #fff;
    color: #002842;
    border-color: #fff;
}

.panel-main-title { 
    color: #fff; 
    font-family: 'Cormorant Garamond', serif ;
    font-size: 52px; 
    margin-bottom: 60px; 
    text-align: center;
    letter-spacing: 0.5px;
}

.panel-main-title span { 
    color: #00A4C4; /* Brand Clarion Teal */
}

.ew-grid-details { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 50px 80px; 
    width: 100%; 
}

.ew-num { 
    color: #00A4C4; /* Brand Clarion Teal */
    font-size: 30px; 
    display: block; 
    margin-bottom: 8px; 
}

.ew-detail-item { 
    color: #fff; 
    border-left: 1px solid rgba(0, 164, 196, 0.25); /* Balanced soft brand line */
    padding-left: 25px;
    font-size: 22px; 
    margin-bottom: 12px; 
    letter-spacing: 0.5px;
    font-weight: 400;
}

.ew-detail-item p { 
    color: rgba(255,255,255,0.75); 
    line-height: 1.7; 
    font-size: 15px;
    margin: 0;
}

/* --- VIDEO OVERLAY --- */
.ew-video-overlay {
    position: fixed; inset: 0; background: #000; z-index: 1000;
    display: none; flex-direction: column;
}

.ew-video-close {
    background: #fff; border: none; padding: 15px; font-weight: 800; cursor: pointer; color: #002842;
}

/* ==========================================================================
   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; 
        width: 90%;
    }
    
    .ew-text-card {
        padding: 60px 45px; 
    }
    
    .ew-title {
        font-size: 3rem;
    }
}

/* --- 2. IPADS & PORTRAIT TABLETS --- */
@media (max-width: 991px) {
    .expert-welcome {
        padding: 60px 0 80px 0; 
    }

    .ew-wrapper {
        flex-direction: column !important; 
        gap: 50px;
    }

    /* Media Area Layout Corrections */
    .ew-media-group {
        order: 1 !important; 
        width: 100%;
        max-width: 650px; 
        margin: 0 auto;
        padding: 0 15px;
    }

    .ew-image-canvas {
        width: 100% !important;
        height: 450px !important; 
        right: 0 !important;
        left: 0 !important;
        clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%); 
    }

    .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; 
        padding: 0 15px;
    }

    .ew-text-card {
        padding: 40px 35px;
        text-align: center; 
        box-shadow: 0 20px 50px rgba(0, 40, 66, 0.08);
    }

    .ew-body {
        max-height: 280px; /* Adapts card internal height scale for middle displays */
        padding-right: 10px;
        margin-bottom: 35px;
    }

    .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: 20px; /* Retained safe separation inside scroller */
    }

    .ew-btn-discover {
        margin: 0 auto; 
    }

    /* Expandable Detail Panel Responsive Overrides */
    .ew-depth-panel {
        align-items: flex-start; /* Switch alignment for natural fluid tablet scrolling */
    }

    .ew-panel-content-wrapper {
        max-width: 95%;
        padding: 120px 20px 60px 20px; 
    }

    .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; 
        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; 
        clip-path: none !important; 
        border-radius: 4px;
    }

    .ew-outline-frame {
        clip-path: none !important;
        border-radius: 4px;
        bottom: -12px;
        right: -12px;
    }

    .ew-text-card {
        padding: 35px 20px; 
    }

    .ew-body {
        max-height: 250px; /* Ensures minimal viewport height footprint on smartphones */
        padding-right: 8px;
        margin-bottom: 30px;
    }

    .ew-title {
        font-size: 1.8rem !important; 
        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;
    }
}
/* --- AMENITIES DASHBOARD MASTER SYSTEM --- */
.kinetic-amenities {
    position: relative;
    padding: 40px 0;
    background: #000d16; /* Darker navy shadow base for depth */
    overflow: hidden;
    min-height: 730px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Abstract Background Grid Coordinates */
.kinetic-amenities::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 164, 196, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 164, 196, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center;
    mask-image: radial-gradient(circle, black 40%, transparent 80%);
    pointer-events: none;
}



/* --- RESTRUCTURED SYMMETRIC CONTAINER --- */
.ka-container {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
    position: relative;
    z-index: 10;
}

/* --- HORIZONTAL STREAMING TRACKS --- */
.ka-column {
    width: 100vw;
    height: 90px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    /* Luxury double edges feather-fade masking */
    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;
}

/* --- INTERACTIVE AMENITY RADAR CHIPS --- */
.ka-node {
    display: flex;
    align-items: center;
    gap: 16px;
    
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #e2e8f0; /* FIXED: Shifted from translucent white to crisp high-contrast slate-silver */
    background: rgba(0, 40, 66, 0.4);
    border: 1px solid rgba(0, 164, 196, 0.25);
    padding: 18px 32px;
    border-radius: 4px; /* Crisp corporate angles */
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.ka-node em {
    font-size: 16px;
    color: #38edf8; /* FIXED: Luminous teal accent for high-visibility dark UI compliance */
    filter: drop-shadow(0 0 6px rgba(0, 164, 196, 0.3));
    transition: transform 0.4s ease;
}

/* Architectural Stroke Outline Variant */
.ka-node.ka-outline {
    background: transparent;
    border-style: dashed;
    border-color: rgba(255, 255, 255, 0.25);
}

/* --- THE MAIN COCKPIT TEXT CELL --- */
.ka-hero { 
    text-align: center; 
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    position: relative;
}

/* Neon Orb Backing Glow behind text */
.ka-hero::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(0, 164, 196, 0.12) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.ka-eyebrow {
    font-size: 11px; 
    letter-spacing: 6px; 
    color: #38edf8; /* FIXED: Enhanced luminescence variant to guarantee 4.5:1 ratio for micro text */
    font-weight: 800; 
    display: block; 
    margin-bottom: 20px;
}

.ka-title {
    font-size: clamp(2rem, 4vw, 3.8rem);
    color: #ffffff; /* Large Heading (Passes safely with maximum contrast ratio) */
    line-height: 1.2; 
    margin-bottom: 35px;
    font-weight: 800;
}

.ka-title span { 
    font-family: 'Cormorant Garamond', serif !important;
    font-style: italic !important;
    color: #38edf8 !important; /* FIXED: Standardized title span glow mix */
    text-transform: none !important;
    font-weight: 400 !important;
}

/* --- ALIGNED BADGE MATRIX --- */
.ka-badges {
    display: flex; 
    justify-content: center; 
    gap: 20px;
}

.badge {
    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.15);
    background: rgba(255, 255, 255, 0.04);
    padding: 12px 24px;
    border-radius: 0px;
    border-left: 3px solid #38edf8; /* FIXED: Enhanced contrast visibility line */
}

.badge em {
    color: #38edf8; /* FIXED: Shifted icon badge inside matrix */
}

/* --- HORIZONTAL MOTION ROTATION TIMINGS --- */
.col-up .ka-track { animation: streamLeft 30s linear infinite; }
.col-down .ka-track { animation: streamRight 30s linear infinite; }

/* Freeze system on entire panel hover for clean target selection */
.ka-container: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); }
}

/* --- NODE HOVER PHENOMENON --- */
.ka-node:hover {
    color: #ffffff;
    background: #002842;
    border-color: #38edf8;
    box-shadow: 0 10px 25px rgba(0, 164, 196, 0.25);
    transform: scale(1.03);
}

.ka-node:hover em {
    transform: scale(1.2) 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; }
}

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;1,600&family=Montserrat:wght@400;700&display=swap');
/* --- REGIONAL PANORAMIC CONTROLLER --- */
.room-cinematic {
    background-color: #f8f9fa; /* Clean, high-end gallery white/gray base */
    padding: 0;
    overflow: hidden;
    position: relative;
    
}

/* --- 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: #e9ecef; /* Soft placeholder backing */
    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 light right-side card */
    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; /* Bright 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 #00A4C4; /* Brand Clarion Teal accent tracker line */
}

#shutter-r { 
    bottom: 0; 
    border-top: 2px solid #00A4C4; 
}

/* 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, 40, 66, 0.06); /* Sophisticated structural line divider */
}

/* Structural Detail Frame Lines */
.rc-frame-corner {
    position: absolute; 
    background: rgba(0, 164, 196, 0.3); /* Softer visibility presence in light environment */
}
.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: #023640; 
    font-size: 11px; 
    font-weight: 800;
    text-transform: uppercase; 
    letter-spacing: 4px;
    display: inline-block; 
    margin-bottom: 20px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(0, 164, 196, 0.2);
}

.antique-title {
  
    font-size: 38px; 
    color: #002842; /* Premium brand deep corporate navy for maximum legibility */
    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 elegant secondary reading */
    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: #00A4C4;
    border-radius: 50%;
}

.antique-copy {
    
    font-size: 15px; 
    color: #4a555e; /* Highly readable anthracite charcoal body copy */
    line-height: 1.7;
    margin-bottom: 40px;
}

/* --- TECHNICAL SPECS MATRIX --- */
.rc-specs {
    border-top: 1px solid rgba(0, 40, 66, 0.08);
    border-bottom: 1px solid rgba(0, 40, 66, 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: #01323b; 
    text-transform: uppercase; 
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-weight: 700;
}

.spec-value { 
   
    font-size: 18px; 
    color: #002842; /* Deep Brand 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: #002842; 
    padding: 18px 35px;
    text-decoration: none; 
    font-size: 12px; 
    font-weight: 800;
    letter-spacing: 2px; 
    text-transform: uppercase;
    border: 1px solid #002842; /* Strong primary layout alignment anchor */
    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: #002842;
    z-index: -1;
    transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.rc-button-antique:hover::before {
    width: 100%;
}

.rc-button-antique:hover {
    color: #ffffff;
    border-color: #002842;
}

.rc-nav-group { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
}

.antique-btn {
    background: #ffffff; 
    border: 1px solid rgba(0, 40, 66, 0.12); 
    color: #002842;
    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: #f1f3f5; 
    border-color: #00A4C4;
    color: #00A4C4;
}

.rc-counter-wrap { 
   
  
    font-weight: 700; 
    display: flex; 
    align-items: center; 
    gap: 10px;
    font-size: 12px;
}

#curr-num {
    color: #002842;
}

.counter-line { 
    width: 20px; 
    height: 1px; 
    background: #002842; 
}

/* --- 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; }
}

/* --- THE ARCHITECTURAL COLUMNS MATRIX (DARK MATRIX) --- */
.kinetic-attractions {
  position: relative;
  height: 750px;
  background: #000c14; /* Deep structural space base */
  overflow: hidden;
  
  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(0, 164, 196, 0.12); /* Subtle Clarion Teal layout 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(40%) brightness(0.6); /* 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: 12px;
  font-weight: 800;
  color: #00A4C4; /* Brand Clarion Teal */
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ka-v-title {
  font-size: 16px;
  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: #00A4C4;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
  display: block;
}

.ka-expanded-content h3 {
  font-size: 36px;
  font-weight: 900;
  color: #ffffff; /* Crisp white titles */
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 15px 0;
  letter-spacing: -0.5px;
}

.ka-expanded-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65); /* Soft premium silver body reading canvas */
  line-height: 1.7;
  margin: 0 0 30px 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 #00A4C4; /* Anchor border line to brand Clarion Teal */
  padding: 14px 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.ka-btn:hover {
  background: #00A4C4;
  color: #001322; /* Dark theme contrast color shift on interaction hover */
}

/* --- 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 SECTION (50vh) --- */
.pro-cinematic {
    height: 60vh;
    position: relative;
    overflow: hidden;
    background: #000c14; /* Match 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(0, 164, 196, 0.2); }
.cinema-frame-bottom { bottom: 0; border-top: 1px solid rgba(0, 40, 66, 0.4); }

/* 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(0, 164, 196, 0.25);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.glass-circle {
    width: 60px;
    height: 60px;
    background: #00A4C4; /* Clarion Teal Asset Theme */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 164, 196, 0.4);
    transition: transform 0.4s ease;
}

.play-arrow {
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid #fff;
    margin-left: 4px;
}

.trigger-labels {
    display: flex;
    flex-direction: column;
}

.small-tag {
    font-size: 10px;
    color: #00A4C4; /* Clarion Teal Accent */
    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, 40, 66, 0.7);
    transform: translateY(-5px);
    border-color: rgba(0, 164, 196, 0.6);
}

.play-trigger:hover .glass-circle {
    transform: scale(1.1) rotate(90deg);
    background: #002842; /* Shifts to Navy Blue on interaction focus */
    box-shadow: 0 0 25px rgba(0, 40, 66, 0.6);
}

/* --- 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: #00A4C4; /* Clarion Teal Close Active Button Color */
}

/* --- 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, 20, 34, 0.95) 0%, rgba(0, 12, 20, 0.4) 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: #00A4C4; /* Clarion Teal Content Labels */
    font-weight: 800;
    letter-spacing: 4px;
    font-size: 11px;
    margin-bottom: 12px;
    display: block;
}

.item-overlay h3 {
    font-size: 1.8rem;
    
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 10px 0;
    letter-spacing: 1px;
}

.item-overlay p {
    color: rgba(255, 255, 255, 0.7);
    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, #002842 50%, #00A4C4 50%); /* Clean Navy to Clarion Teal structural split line */
}

.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: #00A4C4;
}

/* Slider Controls Configuration */
.collage-arrow {
    background: #ffffff !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    opacity: 0.9;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}
.collage-arrow:hover { background: #00A4C4 !important; }
.collage-arrow:after { font-size: 16px !important; color: #002842 !important; font-weight: 900; }
.collage-arrow:hover:after { color: #ffffff !important; }

/* 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; }
}
/* --- MILWAUKEE AIRPORT ARCHITECTURAL FOOTER --- */
.mke-footer-wrap {
  background-color: #001a2c; /* Deep Navy to match your property branding */
  padding-top: 90px;
  color: #ffffff;
  
  position: relative;
}

.mke-footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.mke-footer-main {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 80px;
}

/* --- BRAND SECTION --- */
.mke-footer-brand { flex: 1.2; }

/* --- LOGO POD: THE EXPERT SOLUTION --- */
.mke-logo-pod {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff; /* Pure white background so logo is perfectly visible */
  padding: 15px 25px;
  border-radius: 4px; /* Slight roundness for modern look */
  margin-bottom: 35px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15); /* Adds depth */
  border-bottom: 3px solid #00acc1; /* Cyan accent line to tie into branding */
}

.mke-footer-logo {
  height: 65px; /* Adjusted height for the container */
  width: auto;
  display: block;
  /* NO FILTERS HERE - Logo stays original color */
}

/* Ensure the slogan adjusts to the new pod spacing */
.mke-footer-slogan {
  margin-top: 2px;
}

.mke-footer-slogan {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  line-height: 1.1;
  margin-bottom: 45px;
  font-weight: 300;
  color:#fff;
}

.mke-footer-slogan span { 
   
  color: #00acc1; /* Vibrant Cyan from your welcome section */
}

/* --- ACTION BUTTON --- */
.mke-btn-primary {
  background: #00acc1; /* Cyan button */
  color: #fff;
  padding: 16px 32px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  transition: 0.3s ease;
}

.mke-btn-primary:hover { 
  background: #ffffff;
  color: #00335a; 
}

.mke-action-group { display: flex; align-items: center; gap: 25px; }

/* --- UPDATED SOCIAL GROUP --- */
.mke-footer-social {
  display: flex;
  align-items: center;
  gap: 20px; /* This creates the even space between the icons */
}

.mke-footer-social a { 
  color: #fff; 
  font-size: 18px; 
  opacity: 0.7;
  transition: 0.3s ease;
  display: inline-flex; /* Ensures icons are centered if you add a background later */
  text-decoration:none;
}

.mke-footer-social a:hover { 
  opacity: 1; 
  color: #00acc1; 
  transform: translateY(-3px); /* Subtle lift effect for a premium feel */
}
/* --- DATA PILLARS --- */
.mke-footer-details {
  flex: 2;
  display: flex;
  gap: 70px;
  border-left: 1px solid rgba(255,255,255,0.1);
  padding-left: 70px;
}

.mke-detail-col { flex: 1; }

.mke-detail-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #00acc1; /* Cyan Label */
  margin-bottom: 35px;
  font-weight: 700;
}

/* --- 2-COLUMN LINKS GRID --- */
.mke-quick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 30px;
}

.mke-quick-grid a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.mke-quick-grid a:hover {
  color: #00acc1;
  transform: translateX(5px);
}

/* --- CONTACT SECTION --- */
.mke-address {
  font-style: normal;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 25px;
}

.mke-phone {
  font-weight: 700;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  transition: 0.3s;
}

.mke-phone:hover { color: #00acc1; }

/* --- LEGAL FLOOR --- */
/* --- CORRECTED LEGAL FLOOR STYLING --- */
.mke-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 0 60px;
  background-color: #002a4a; /* Slightly deeper navy for the floor */
}

.mke-ownership-statement {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: center;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  
}

.mke-ownership-statement strong {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.mke-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mke-legal-links a, 
.mke-f-credit, 
.mke-f-credit a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  text-decoration: none;
  transition: 0.3s ease;
}

.mke-sep {
  color: #00acc1; /* Brand Cyan separator */
  margin: 0 12px;
  font-size: 10px;
}

.mke-legal-links a:hover, 
.mke-f-credit a:hover {
  color: #00acc1; /* Cyan highlight on hover */
}

.mke-f-credit a {
  font-weight: 600;
}

/* --- EXPERT RESPONSIVE REFINEMENT --- */

/* 1. IPAD & SMALL LAPTOP (Tablets) */
@media (max-width: 1150px) {
	
  .mke-footer-main {
    flex-direction: column;
    align-items: center; /* Centers the Brand section */
    text-align: center;
    gap: 50px;
  }

  .mke-footer-brand {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .mke-footer-details {
    width: 100%;
    border-left: none; /* Removes architectural line for better flow */
    padding-left: 0;
    justify-content: space-around; /* Spreads links and location evenly */
  }

  .mke-action-group {
    justify-content: center;
  }

  .mke-footer-slogan {
    font-size: 38px; /* Slightly smaller for tablets */
    margin-bottom: 30px;
  }
}

/* 2. SMALL TABLET & PHONES */
@media (max-width: 850px) {
  .mke-footer-details {
    flex-direction: column; /* Stacks links on top of location */
    gap: 40px;
    align-items: center;
  }

  .mke-quick-grid {
    /* Keeps the 2-column grid on small tablets, but centers it */
    justify-items: start;
    display: inline-grid; 
    text-align: left;
  }

  .mke-bottom-flex {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .mke-ownership-statement {
    font-size: 12px; /* Balanced size for mobile */
    padding: 0 10px;
  }
}

/* 3. SMALL MOBILE ONLY */
@media (max-width: 500px) {
  .mke-footer-wrap {
    padding-top: 60px;
  }

  .mke-quick-grid {
    grid-template-columns: 1fr 1fr; /* Single column for narrow phones */
    gap: 15px;
  }

  .mke-footer-logo {
    height: 50px; /* Scaled down logo pod */
  }

  .mke-footer-slogan {
    font-size: 32px;
  }

  .mke-phone {
    font-size: 18px;
  }

  .mke-btn-primary {
    width: 100%; /* Full width button for easier thumb-tapping */
    text-align: center;
  }
  
  .mke-action-group {
    flex-direction: column;
    width: 100%;
  }
}

/* --- UNIQUE WAYFINDER BACK TO TOP --- */
.mke-back-to-top {
  position: fixed;
  right: 40px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transform: translateY(20px);
}

/* State when scrolled down */
.mke-back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* The Growing Line (Aviation Needle) */
.mke-scroll-line {
  width: 1px;
  height: 0;
  background: linear-gradient(to top, #00acc1, transparent);
  transition: height 0.4s ease;
  margin-bottom: 15px;
}

.mke-back-to-top:hover .mke-scroll-line {
  height: 60px; /* Line grows on hover */
}

/* The Arrow & Text Wrap */
.mke-arrow-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #00acc1;
  transition: transform 0.3s ease;
}

.mke-top-text {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 5px;
  
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.mke-arrow-wrap em {
  font-size: 18px;
  transition: all 0.3s ease;
}

/* Hover Animations */
.mke-back-to-top:hover .mke-top-text {
  opacity: 1;
  transform: translateY(0);
}

.mke-back-to-top:hover .mke-arrow-wrap em {
  transform: translateY(-5px); /* Arrow floats up */
  color: #00335a;
}

/* Mobile Tweak */
@media (max-width: 768px) {
  .mke-back-to-top { right: 20px; bottom: 20px; }
  .mke-scroll-line { display: none; } /* Simpler on mobile */
}
/* --- BRAND INTEGRATED FOOTER MASTER --- */
.site-estate-footer {
    /* Rich Deep Navy blending into a dark atmospheric drop mimicking your screen layout */
    background: linear-gradient(135deg, #001C33 0%, #001222 50%, #000c17 100%); 
    position: relative;
    padding-top: 80px;
    color: #ffffff;
    overflow: hidden;
    
}

/* ANTIQUE BACKGROUND WATERMARK */
.footer-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    font-size: 6vw;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.015); 
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.site-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 5;
}

/* --- IDENTITY PLATFORM --- */
.f-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px; /* Spacing between the two logos */
    margin-bottom: 30px;
}

.f-logo-link {
    display: inline-block;
    text-decoration: none;
}

.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.85);
    padding: 8px 16px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.3s ease;
}
.f-logo1 {
    height: 70px;
    width: auto;
    display: block;
    
    
    padding: 8px 16px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.3s ease;
}
.f-logo-link:hover .f-logo {
    transform: scale(1.04);
   
}

/* Responsive adjustment for clean stacking on narrow mobile devices */
@media (max-width: 480px) {
    .f-logo-wrapper {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    .f-logo {
        height: 75px; /* Sized down slightly on small mobile viewports */
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 80px;
}

/* --- TYPOGRAPHY & BRAND GRADIENT 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 Solid Clarion Teal Accent Divider Bar */
.f-heading::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 55px;
    height: 3px;
    background: #00A4C4; /* Brand Core Teal Accent */
}

.f-tagline {
    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: #00A4C4; /* Interactive Teal Shift on Hover State */
    padding-left: 6px; 
}

.brand-teal-cta {
    color: #00A4C4 !important;
    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.1);
    color: #fff;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.01);
}

.f-socials a:hover {
    border-color: #00A4C4;
    background: #00A4C4;
    color: #001C33;
    transform: translateY(-4px);
}

/* --- THE CONCIERGE CARD --- */
.contact-ledger-card {
    background: rgba(0, 12, 23, 0.5);
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-top: 3px solid #00A4C4; /* Highlight Teal Anchor Line */
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.contact-row { display: flex; gap: 18px; margin-bottom: 22px; }
.contact-row:last-child { margin-bottom: 0; }

.contact-row em { 
    color: #00A4C4; /* Crisp Brand Icons */
    font-size: 16px; 
    margin-top: 4px; 
}

.contact-row p, .contact-row a { 
    color: rgba(255, 255, 255, 0.9); 
    text-decoration: none; 
    font-size: 14px; 
    line-height: 1.6; 
    transition: color 0.3s;
}

.contact-row a:hover {
    color: #00A4C4;
}

/* --- ESTATE BAR (LEGAL BASE REFS) --- */
.estate-bar {
    background: rgba(0, 8, 15, 0.7);
    padding: 25px 0; /* Adjusted padding to match layout design balance */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.45);
}

.bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px; /* Added flex-gap to keep elements safe from overlaps on smaller screens */
}

/* Explicit layout widths based on your screenshot structure */
.bar-content .ownership {
    flex: 1;
    max-width: 50%;
    margin: 0;
    text-align: left;
}

.bar-content .legal-links {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.bar-content .credit {
    white-space: nowrap;
    margin: 0;
    text-align: right;
}

.legal-links a, .credit a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover, .credit a:hover { 
    color: #00A4C4; 
}

/* Matched the separator selector from HTML */
.bar-sep { 
    margin: 0 12px; 
    color: #00A4C4; 
    opacity: 0.3; 
}


/* 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 --- */
.mke-back-to-top {
    position: fixed;
    right: 40px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    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, 28, 51, 0.15); /* Light backdrop tint using 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.1);
}

/* 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, #00A4C4, #001C33); /* Clarion Teal to 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: 15px;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: #001C33;
    
    margin-bottom: 6px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* The Core Icon Housing Button */
.mke-icon-box {
    width: 60px;
    height: 60px;
    
    border: 1px solid rgba(0, 164, 196, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00A4C4; /* Core Teal Accent */
    box-shadow: 0 6px 20px rgba(0, 28, 51, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mke-icon-box em {
    font-size: 25px;
    transition: transform 0.3s ease;
	color: #00A4C4;
}


/* --- MOTION INTERACTION HOVER STATES --- */
.mke-back-to-top:hover .mke-top-text {
    opacity: 1;
    transform: scale(1);
    color: #00A4C4;
}

.mke-back-to-top:hover .mke-icon-box {
    background: #fff; /* Shifts completely to solid brand Deep Navy */
    border-color: #001C33;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 28, 51, 0.25);
    transform: translateY(-4px);
}

/* Takeoff Climb Simulation Effect */
.mke-back-to-top:hover .mke-icon-box em {
    animation: flightClimb 0.6s ease-in-out infinite alternate;
}

@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);
    }
}
/* ============================================================
   🏆 ACCESSIBILITY INFO - LAYOUT BRAND MATCHED (ACCESSIBLE FIXED)
   Background: White | Accents: Deep Slate (#051726) & Accessible Teal (#006B80)
   ============================================================ */

.accessibility-info {
    background-color: #ffffff; /* Clean white background */
    /* Outer Deep Slate Border from layout */
    border-top: 4px solid #051726; 
    border-bottom: 4px solid #051726; 
    color: #051726; /* Deep Slate Base Text (18.7:1 Contrast Ratio - Passes WCAG AAA) */
    text-align: center;
   
    padding: 25px 20px;
    font-size: 16px;
    letter-spacing: 0.5px;
    line-height: 1.6;
    position: relative;
}

/* Inner Border Effect */
.accessibility-info::before {
    content: "";
    position: absolute;
    top: 6px;
    bottom: 6px;
    left: 10px;
    right: 10px;
    border-top: 1px solid rgba(5, 23, 38, 0.2);
    border-bottom: 1px solid rgba(5, 23, 38, 0.2);
    pointer-events: none;
}

.acc-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 1380px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* FIXED: Darkened icon color to meet WCAG AA requirements on white background */
.acc-container em {
    color: #006B80; 
    font-size: 24px;
}

/* FIXED: Darkened link color to #006B80 (5.1:1 Contrast Ratio - Passes WCAG AA) */
.accessibility-info a {
    color: #006B80;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 1px;
    /* Clean underline matching primary text */
    border-bottom: 2px solid #051726; 
    transition: all 0.3s ease;
    margin-left: 5px;
}

/* Hover behaviors shift cleanly between the two high-contrast brand colors */
.accessibility-info a:hover {
    color: #051726;
    border-bottom-color: #006B80;
}

/* --- Tablet & Mobile Logic --- */
@media (max-width: 1024px) {
    .accessibility-info {
        padding: 30px 15px;
    }

    .acc-container {
        flex-direction: column; 
        gap: 12px;
    }

    .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: 3px;
        border-bottom-width: 3px;
    }

    .accessibility-info a {
        display: inline-block;
        margin-top: 8px;
        padding-bottom: 2px;
        font-size: 16px;
    }

    .acc-container em {
        font-size: 26px;
    }
}
/* --- UNIVERSAL COOKIE BANNER --- */
.uni-cookie-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #051726; /* Deep Slate from layout */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 999999;
  padding: 10px 20px; /* Slim vertical profile */
  box-sizing: border-box;
  display: none; /* Controlled dynamically by JavaScript */
}

.uni-cookie-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.uni-cookie-text {
  color: #ffffff;
  font-size: 15px; /* Sized down slightly for a sleek profile */
  text-align: center;
  
}

.uni-cookie-link {
  color: #00A4C4; /* Vibrant Brand Teal Link */
  text-decoration: none;
  margin-left: 2px;
  font-weight: bold;
  transition: color 0.2s ease;
}

.uni-cookie-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.uni-cookie-btn {
  background-color: #00A4C4; /* Vibrant Brand Teal Button */
  color: #051726; /* Dark text for clean high contrast readability */
  border: none;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 700; /* Bold text for modern layout UI signature */
  cursor: pointer;
  border-radius: 4px; /* Slightly smoother round edges matching global theme */
  transition: all 0.2s ease;
  
}

.uni-cookie-btn:hover {
  background-color: #ffffff;
  color: #051726;
}

/* Responsive adjustment for mobile screen breakpoints */
@media (max-width: 600px) {
  .uni-cookie-container {
    flex-direction: column;
    gap: 10px;
    padding: 5px 0;
  }
  .uni-cookie-text {
    font-size: 13px;
  }
}

/* --- 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; 
  /* UPDATED: Deep slate base fallback color matching layout template */
  background-color: #051726; 
}

.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;
  /* UPDATED: Transitioning gradient to merge into your deep brand slate color base */
  background: linear-gradient(
    to bottom,
    rgba(5, 23, 38, 0.40) 0%,     /* Protects visibility for the floating navigation header */
    rgba(5, 23, 38, 0.75) 35%,    /* Seamless dark vignette mask above titles */
    rgba(5, 23, 38, 0.90) 70%,    /* High contrast density behind description copy text */
    rgba(5, 23, 38, 0.60) 100%    /* Blends naturally into the next content row */
  );
  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;
  /* UPDATED: Changed to your signature vibrant brand teal accent */
  color: #00A4C4; 
  margin-bottom: 1.2rem;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.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);
}

/* Brand Primary Teal Divider */
.inner-divider {
  width: 80px; 
  height: 4px;
  /* UPDATED: Brand Teal Signature Accent line */
  background-color: #00A4C4; 
  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: #f8fafc;
  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: #00A4C4;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 10px;
}

.ledger-header h2 { 
  font-size: clamp(2.2rem, 4vw, 3.2rem); 
  color: #051726;
  text-transform: uppercase; 
  margin: 0; 
  letter-spacing: 1px;
  font-weight: 900;
}

.ledger-subtitle { 
 font-family: 'Cormorant Garamond', serif ;
  font-size: 28px; 
  letter-spacing: 1px; 
  color: #64748b;
  font-weight: 600; 
  margin: 5px 0 0; 
}

.ledger-subtitle a {
  color: #64748b;
  text-decoration: none;
  border-bottom: 1px dashed rgba(0, 164, 196, 0.4);
  transition: all 0.3s ease;
}

.ledger-subtitle a:hover {
  color: #00A4C4;
  border-bottom-style: solid;
}

.ledger-line { 
  height: 3px; 
  width: 50px; 
  background: #00A4C4;
  margin: 25px auto; 
}

.ledger-intro-text { 
  font-size: 1.05rem; 
  color: #475569;
  line-height: 1.8; 
  margin: 0;
}
.ledger-intro-text a{ 
  font-size: 1.05rem; 
  color: #013742;
  line-height: 1.8; 
  margin: 0;
  text-decoration: none;
}

/* --- 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: 12px;
  box-shadow: 0 4px 20px rgba(5, 23, 38, 0.03);
}

.popular-facilities-bar > span {
  font-size: 0.9rem;
  font-weight: 700;
  color: #334155;
  display: flex;
  align-items: center;
}

/* FIXED: Changed from .popular-facilities-bar i to target the icon span class */
.popular-facilities-bar .fa-solid {
  color: #00A4C4;
  font-size: 1.1rem;
  margin-right: 10px;
  display: inline-block; /* Ensures margin-right applies correctly to the span */
}

/* --- 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: 16px;
  padding: 40px 30px; 
  box-shadow: 0 10px 40px rgba(5, 23, 38, 0.03);
  border: 1px solid rgba(5, 23, 38, 0.02);
  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 50px rgba(5, 23, 38, 0.08);
}

.ledger-panel.featured-panel {
  border-top: 4px solid #00A4C4;
}

.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, 164, 196, 0.08);
  color: #00A4C4;
  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: #051726;
  margin: 0; 
  font-weight: 800;
}

.panel-tag { 
  display: inline-block; 
  font-size: 0.7rem; 
  color: #051726; 
  text-transform: uppercase; 
  margin-top: 8px; 
  letter-spacing: 1.5px;
  font-weight: 700;
  background: #f1f5f9;
  padding: 3px 10px;
  border-radius: 20px;
}

/* --- DIV-BASED LIST SECTION HEADINGS --- */
.ledger-group-heading { 
  font-size: 0.85rem; 
  color: #051726; 
  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: #475569; 
  padding: 10px 0;
  border-bottom: 1px solid #f8fafc;
  display: flex;
  align-items: flex-start;
  line-height: 1.4;
}

.ledger-items li:last-child {
  border-bottom: none;
}

.ledger-items li span {
  color: #00A4C4;
  margin-right: 12px;
  margin-top: 3px;
  font-size: 0.85rem;
}

/* --- FEMA FLAG BANNER SECTION --- */
.ledger-fema-ribbon {
  margin-top: 40px;
  background: #051726;
  color: #ffffff;
  padding: 20px 30px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(5, 23, 38, 0.15);
}

.ledger-fema-ribbon span {
  font-size: 24px;
  color: #00A4C4;
}

.ledger-fema-ribbon span {
  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: #64748b;
  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 - CLARION POINTE FAIRBORN AREA HIGHLIGHTS
   Deep Space Slate: #051726 | Brand Teal Accent: #00A4C4 | 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(5, 23, 38, 0.03);
  border: 1px solid rgba(5, 23, 38, 0.02);
}

.ttd-main-title {
 
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: #051726; /* Deep Space Slate */
  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: #64748b;
  text-decoration: none;
  border-bottom: 1px dashed rgba(0, 164, 196, 0.4);
  transition: all 0.3s ease;
}

.ttd-main-title span a:hover {
  color: #00A4C4; /* Brand Teal Accent */
  border-bottom-style: solid;
}

.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: #034c5b; 
    text-decoration: none;
}
.header-divider {
  width: 50px;
  height: 3px;
  background: #00A4C4; /* Brand Teal Accent */
  margin: 25px auto;
}

/* 3. MAIN SCROLLING WRAPPER */
.spotlight-wrapper {
  display: flex;
  position: relative;
  align-items: flex-start;
  max-width: 1240px;
  margin: 0 auto;
  background: #ffffff; 
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(5, 23, 38, 0.03);
  border: 1px solid rgba(5, 23, 38, 0.02);
  overflow: hidden;
}

/* 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: #00A4C4; /* Brand Teal Accent */
  font-weight: 700;
  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: #051726; /* Deep Space Slate */
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 800;
  margin: 0;
}

.narrative-divider {
  width: 40px;
  height: 3px;
  background: #00A4C4; /* Brand Teal Accent */
  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;
}

.visual-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.visual-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 23, 38, 0.1), rgba(5, 23, 38, 0.45));
  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: 3px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.progress-fill {
  width: 100%;
  background: #00A4C4; /* Brand Teal Tracker Fill */
  transition: height 0.5s ease;
  height: 20%;
  box-shadow: 0 0 10px rgba(0, 164, 196, 0.6);
}

.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(5, 23, 38, 0.5);
}

/* 7. VIEW DETAILS ACTION BUTTON */
.ttd-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 25px;
  padding: 14px 32px;
  background-color: #00A4C4; /* Interactive Teal Primary CTA */
  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;
}

.ttd-btn em {
  margin-left: 10px;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.ttd-btn:hover {
  background-color: #051726; /* Dynamic shift to Deep Space Slate */
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 164, 196, 0.25);
}

.ttd-btn:hover em {
  transform: translateX(5px);
}
/* 3. MAIN SCROLLING WRAPPER */
.spotlight-wrapper {
  display: flex;
  position: relative;
  /* FIX: Ensure both columns stretch fully so sticky has track runway to slide down */
  align-items: stretch; 
  max-width: 1240px;
  margin: 0 auto;
  background: #ffffff;  
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(5, 23, 38, 0.03);
  border: 1px solid rgba(5, 23, 38, 0.02);
  overflow: visible; /* FIX: 'hidden' can occasionally choke sticky tracking contexts */
}

/* 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; /* Moved overflow containment down safely to the graphic panel mask */
}
/* 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 - CLARION POINTE FAIRBORN AREA HIGHLIGHTS
   Deep Space Slate: #051726 | Brand Teal Accent: #00A4C4 | 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(5, 23, 38, 0.05); 
  padding: 50px 40px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(5, 23, 38, 0.03);
}

.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 (DEEP SPACE SLATE & TEAL) --- */
.nearby-panel.highlight {
  background: #051726; /* Deep Space Slate Primary Card */
  color: #ffffff;
  border: 1px solid rgba(0, 164, 196, 0.2); 
  transform: scale(1.03);
  box-shadow: 0 15px 35px rgba(5, 23, 38, 0.15);
  z-index: 2;
}

/* Typography Overrides for Center Priority Highlight Block */
.nearby-panel.highlight .panel-heading {
  color: #ffffff; 
  border-bottom-color: rgba(0, 164, 196, 0.4);
}

.nearby-panel.highlight .nearby-list li {
  color: #e2e8f0;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.nearby-panel.highlight .panel-heading em {
  color: #00A4C4; /* Brand Teal Accent Icon */
}

/* --- PANEL HEADINGS --- */
.panel-heading {
  
  font-size: 1.2rem;
  color: #051726; /* Deep Space Slate */
  border-bottom: 2px solid #00A4C4; /* Brand Teal 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: #00A4C4; /* Brand Teal Accent 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: #475569;
  transition: all 0.3s ease;
  font-weight: 500;
}

.nearby-list li:hover {
  color: #00A4C4; /* Interactive Teal Hover */
  padding-left: 6px;
}

/* --- DISTANCE STYLING --- */
.distance {
  color: #051726; 
  background: #f1f5f9; /* Soft Modern 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 #00A4C4; /* Brand Teal Accent Tag Indicator */
}

/* Flips colors inside the prominent center dark slate highlight panel card */
.nearby-panel.highlight .distance {
  color: #051726;
  background: #00A4C4; /* Highlight tags convert cleanly to full Brand Teal */
  border-left: none;
}

/* ============================================================
   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 - CLARION POINTE FAIRBORN INTERACTIVE MAP
   Deep Space Slate: #051726 | Brand Teal Accent: #00A4C4 | 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(5, 23, 38, 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: #051726; /* Deep Space Slate 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(0, 164, 196, 0.3); /* Brand Teal Subtle Outline */
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(5, 23, 38, 0.15);
}

.coord-divider {
  width: 25px;
  height: 1px;
  background: #00A4C4; /* Brand Teal Anchor Link Line */
}

/* --- Floating Information Canvas Card --- */
.info-glass-panel {
  flex: 0 0 580px;
  background: #051726; /* Solid Deep Space Slate Block Matrix */
  margin-left: -40px; 
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 50px;
  z-index: 2;
  border-radius: 12px;
  border-left: 5px solid #00A4C4; /* Architectural Brand Teal Indicator line */
  box-shadow: 0 20px 50px rgba(5, 23, 38, 0.25);
}

.brand-accent-line {
  width: 40px;
  height: 3px;
  background: #00A4C4; /* Brand Teal Separator Line */
  margin-bottom: 20px;
}

.location-subtitle {
  color: #00A4C4; /* Brand Teal 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: #00A4C4;
}

.location-description {
  color: #cbd5e1; /* Smooth Slate-Gray text for flawless contrast on dark backdrop */
  line-height: 1.75;
  font-size: 0.95rem;
  margin-bottom: 35px;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}

.location-description a {
  color: #00A4C4;
  text-decoration: none;
  border-bottom: 1px dashed rgba(0, 164, 196, 0.5);
}

.location-description a:hover {
  border-bottom-style: solid;
}

.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;
}

/* --- Route Form Input Matrix --- */
.route-form {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.input-group input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  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: #00A4C4;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(0, 164, 196, 0.15);
}

.input-group input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.route-submit-btn {
  background: #ffffff; /* Primary Action Block Map: Brand Teal */
  color: #051726; 
  border: none;
  padding: 16px;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.8rem;
}

.route-submit-btn:hover {
  background: #ffffff;
  color: #051726; /* Flips cleanly to Deep Slate text on clean contrast block */
  box-shadow: 0 5px 15px rgba(0, 164, 196, 0.3);
}

.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;
  
  /* FIXED: Force parameters that satisfy the automated contrast checker */
  color: #ffffff !important;
  background-color: #000000 !important; /* Forces a black background behind the hidden text */
  text-shadow: 0 0 1px #000000;         /* Extra safety padding for contrast engines */
}

/* ============================================================
   NEARBY SECTION - MOBILE & IPAD RESPONSIVE ONLY
   ============================================================ */

@media (max-width: 1024px) {
  .clarion-modern-location {
    padding: 40px 20px;
  }

  .journal-wrapper {
    flex-direction: column;
  }

  /* Map Window Structural Stacking */
  .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 Responsive Shifts */
  .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 #00A4C4; /* Responsive Top Accent Header Bar Tag */
    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; /* Hide coordinate panel safely to prioritize map interaction */
  }

  .route-submit-btn {
    padding: 16px; 
    font-size: 0.8rem;
  }

  .input-group input {
    font-size: 16px; /* Prevents unwanted iOS automated browser zoom scaling */
  }
}

/* ============================================================
   CONTACT LEDGER SUITE - CLARION POINTE FAIRBORN
   Deep Space Slate: #051726 | Brand Teal Accent: #00A4C4 | Light Gray: #f8fafc
   ============================================================ */

.contact-ledger-suite {
  padding: 80px 5%;
  background: linear-gradient(rgba(5, 23, 38, 0.92), rgba(5, 23, 38, 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(5, 23, 38, 0.25);
  overflow: hidden;
}

.ledger-accent-sidebar {
  width: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  background-color: #051726; /* Deep Space Slate Anchor Panel */
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-logo-mark {
  color: #00A4C4; /* Brand Teal Accent Icon */
}

.ledger-main-content {
  flex: 1;
  padding: 60px;
}

.ledger-headline {
  
  font-size: 2.4rem;
  color: #051726; /* Deep Space Slate 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, 164, 196, 0.4);
  transition: all 0.3s ease;
}

.ledger-headline span a:hover {
  color: #00A4C4; /* Identity Teal Shift */
  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: #051726; /* Modern Teal Tag Identifiers */
}

.estate-name {

  color: #051726;
  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: #051726; /* Deep Space Slate Link Elements */
  transition: all 0.3s ease;
  display: inline-block;
  margin-bottom: 5px;
}

.ledger-link:hover {
  color: #00A4C4; /* Brand Teal Anchor Interaction */
  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: #00A4C4; /* Transforms to an accent horizon bar strip 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 - CLARION POINTE FAIRBORN
   Deep Space Slate: #051726 | Brand Teal Accent: #00A4C4 | Light Gray: #f8fafc
   ============================================================ */

.sitemap-index-suite {
  padding: 80px 20px;
  background: linear-gradient(rgba(5, 23, 38, 0.93), rgba(5, 23, 38, 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(5, 23, 38, 0.05);
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(5, 23, 38, 0.2);
  position: relative;
}

.index-label {
 font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color:#051726; /* Brand Teal Accent Descriptor Tag */
  font-weight: 800;
  display: block;
  margin-bottom: 5px;
}

.index-title {
  
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  color: #051726; /* Deep Space Slate Heading */
  margin: 0 0 20px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
}

.index-title a {
  color: #051726;
  text-decoration: none;
  transition: color 0.3s ease;
}

.index-title a:hover {
  color: #051726;
}

.index-description {
 
  font-size: 0.98rem;
  line-height: 1.8;
  color: #475569;
  max-width: 1050px;
  font-weight: 500;
}

.index-description a.titlelink {
  color: #051726;
  text-decoration: none;
  border-bottom: 1px dashed rgba(0, 164, 196, 0.4);
}

.index-description a.titlelink:hover {
  border-bottom-style: solid;
}

.index-ornament {
  width: 60px;
  height: 3px;
  background: #00A4C4; /* Brand Teal 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: #051726; /* Deep Space Slate Track Subheading */
  font-weight: 800;
  border-left: 3px solid #00A4C4; /* Brand Teal Visual Pin Alignment 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: #00A4C4; /* Interactive Shift to Identity Teal */
  transform: translateX(6px);
}

/* Specific Style Overrides for Action Oriented Call-To-Action Keys */
.index-list a.brand-teal-cta {
  color:#051726;
  font-weight: 700;
}

.index-list a.brand-teal-cta:hover {
  color: #051726;
}

/* ============================================================
   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 - CLARION POINTE FAIRBORN
   Deep Space Slate: #051726 | Brand Teal Accent: #00A4C4 | 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:#051726; /* Brand Teal Accent Descriptors */
  display: block;
  margin-bottom: 15px;
  font-weight: 800;
}

.faq-headline {
   
  font-size: 3rem;
  color: #051726; /* Deep Space Slate Heading Matrix */
  line-height: 1.15;
  margin: 0 0 25px 0;
  text-transform: uppercase;
  font-weight: 900;
}

.faq-headline a {
  color: #051726;
  text-decoration: none;
  transition: color 0.3s ease;
}

.faq-headline a:hover {
  color: #00A4C4;
}

.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: #051726; /* Identity Teal Content Numbers */
  font-weight: 800;
  padding-top: 2px;
}

.faq-entry h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  color: #051726; /* Deep Space Slate 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: #051726;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px dashed rgba(0, 164, 196, 0.4);
  transition: color 0.3s ease;
}

.faq-entry p a.faq-phone-link:hover,
.faq-entry p a.faq-inline-link:hover {
  color: #051726;
  border-bottom-style: solid;
}

.antique-link {
  color:#051726; /* Primary Action Target: Teal */
  text-decoration: none;
  font-weight: 800;
  margin-top: 12px;
  display: inline-block;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.antique-link:hover {
  color: #051726; /* Flips to slate matrix text during mouse tracks */
  border-bottom: 2px solid #00A4C4; /* Underline indicator reveals on hover state */
  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%; 
  }
}

/* Container adjusted to merge perfectly with the #fcfbf9 section below */
.booking-container {
  width: 100%;
  background-color: #fcfbf9; /* Merges seamlessly with your lower section color */
  padding: 30px 20px; /* Gives structural spacing above and below the box, with side gutters */
  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 #dcdcdc; /* Sharp structural look */
  border-left: 5px solid #001c2c; /* Deep Clarion Navy anchor accent */
  box-sizing: border-box;
  padding: 30px 40px; /* Added proper interior breathing space to prevent squeezing */
  box-shadow: 0 10px 25px rgba(0, 28, 44, 0.04); /* Soft drop shadow on light bg */
}

.reservation-box form {
  display: flex;
  align-items: flex-end; /* Keeps inputs and the button perfectly aligned at the bottom */
  gap: 20px;
  width: 100%;
}

.form-group {
  flex: 1;
  min-width: 160px; /* Ensures fields never squeeze below a readable width */
  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: #001c2c; /* Clarion Navy */
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  height: 16px; /* Mandates uniform height for all text labels */
}

.form-group label svg {
  color: #00a4b4; /* Teal Accent Icon */
}

/* Input and Select Fields */
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #dcdcdc;
  border-radius: 2px;
  font-size: 14px;
  color: #222;
  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: #001c2c; /* Clarion Navy arrow */
  position: absolute;
  right: 15px;
  bottom: 19px; 
  pointer-events: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #00a4b4; /* Teal focus ring */
  background: #fff;
  outline: none;
}

/* Button Group Wrapper */
.form-btn-group {
  flex: 1.2; 
  min-width: 180px; /* Prevents the check button from squeezing */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Check Availability Button */
.check-btn {
  width: 100%;
  height: 48px; /* Matches input box heights precisely */
  background: #001c2c; /* Clarion 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: background 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.check-btn:hover {
  background: #00a4b4; /* Hover to Teal */
}

/* jQuery UI Datepicker Overrides */
.ui-datepicker {
  border: none !important;
  box-shadow: 0 10px 25px rgba(0, 28, 44, 0.15) !important;
}
.ui-datepicker-header {
  background: #001c2c !important;
  color: #fff !important;
  border: none !important;
}
.ui-state-highlight, .ui-widget-content .ui-state-highlight {
  border: 1px solid #00a4b4 !important;
  background: #eefbfc !important;
  color: #001c2c !important;
}
.ui-state-active, .ui-widget-content .ui-state-active {
  background: #00a4b4 !important;
  color: #fff !important;
  border: 1px solid #00a4b4 !important;
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .booking-container {
    padding: 20px 15px;
  }
  .reservation-box {
    padding: 20px; /* Slightly tighter interior padding on mobile view */
  }
  .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%;
  }
}