﻿
/* Unique Font: Outfit (Geometric & Modern) */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  color: #1a1a1a; 
  background: #ffffff;
  line-height: 1.6;
}





/* --- Architectural Header Styling --- */
/* --- Comfort Inn Glenmont - Albany South --- */

.ms-unique-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    will-change: transform;
}

/* Compact Scroll State */
.ms-unique-header.is-scrolled .ms-navbar-main {
    height: 75px;
    background: linear-gradient(135deg, rgba(0, 38, 84, 0.98) 0%, rgba(0, 45, 95, 0.98) 100%);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.ms-unique-header.is-scrolled .ms-logo-tab {
    height: 90px;
    padding: 10px 20px;
}

.ms-unique-header.is-scrolled .ms-logo-tab img {
    height: 50px;
}

/* DECENT GRADIENT NAVBAR: Navy to Deep Blue-Slate */
.ms-navbar-main {
    background: linear-gradient(135deg, rgba(0, 38, 84, 0.96) 0%, rgba(0, 50, 100, 0.96) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(247, 148, 29, 0.25);
    height: 100px;
}

.ms-nav-container {
    max-width: 1480px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    position: relative;
    padding: 0 40px;
}

/* --- THE HANGING LOGO (Signature Element) --- */
.ms-logo-tab {
    background: #ffffff;
    padding: 15px 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    top: 0;
    height: 120px; 
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 25px 25px; 
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    z-index: 10;
}

.ms-logo-tab img {
    height: 100px;
    width: auto;
}

/* --- NAVIGATION CONTENT AREA --- */
.ms-nav-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-left: 50px;
}

/* Top Meta Row (Light text for Navy background) */
.ms-top-meta {
    height: 38px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 11px;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    justify-content: flex-start;
}

.ms-meta-item {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: 0.3s;
    font-weight: 500;
}

.ms-meta-item i {
    color: #F7941D; /* Brand Orange Icons */
    margin-right: 5px;
}

.ms-meta-item:hover {
    color: #ffffff;
}

/* Bottom Nav Row */
.ms-bottom-row {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ms-nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.ms-nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    transition: 0.3s;
}

/* Floating Dot Hover */
.ms-nav-menu a::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #F7941D 0%, #FFD200 100%);
    box-shadow: 0 0 10px rgba(247, 148, 29, 0.6);
    border-radius: 50%;
    transform: translateX(-50%) translateY(-10px);
    opacity: 0;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ms-nav-menu a:hover { color: #F7941D; }
.ms-nav-menu a:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* --- ACTION GROUP --- */
.ms-action-group {
    display: flex;
    align-items: center;
    gap: 25px;
}

.ms-ghost-btn {
    text-decoration: none;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: 0.3s;
}

/* High-Contrast "Book" Button: Orange Pop */
.ms-solid-btn {
    background: linear-gradient(135deg, #F7941D 0%, #FFB000 100%); 
    color: #002654 !important;
    text-decoration: none;
    padding: 14px 30px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(247, 148, 29, 0.3);
}

.ms-solid-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(247, 148, 29, 0.5);
    filter: brightness(1.1);
}

.ms-social-meta {
    margin-left: auto;
    display: flex;
    gap: 15px;
}

.ms-social-meta a {
    color: rgba(255, 255, 255, 0.6);
    transition: 0.3s;
}

.ms-social-meta a:hover {
    color: #F7941D;
    transform: scale(1.1);
}

/* Mobile Toggle */
.ms-trigger-modern {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.ms-line, .ms-line-short {
    height: 3px;
    background: #ffffff;
    border-radius: 10px;
}

.ms-line { width: 30px; }
.ms-line-short { width: 18px; align-self: flex-end; }

/* --- UPDATED RESPONSIVE SECTION --- */

/* Tablet & iPad (1100px and down) */
@media (max-width: 1100px) {
    .ms-nav-content { 
        display: none; 
    }
    
    .ms-trigger-modern { 
        display: flex; 
        z-index: 20;
    }

    .ms-navbar-main { 
        height: 70px; 
        /* Solid brand background for mobile so text stays readable */
        background: #002654; 
    }

    .ms-logo-tab { 
        height: 105px; 
        width: 120px;
        top: 0; 
        padding: 10px;
        border-radius: 0 0 15px 15px; 
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .ms-logo-tab img { 
        height: 75px !important; /* Scale logo down for smaller screens */
		margin-top:30px;
    }

    .ms-nav-container { 
        justify-content: space-between; 
        align-items: center; 
        padding: 0 20px;
    }
}

/* Mobile Phones (600px and down) */
@media (max-width: 600px) {
    .ms-navbar-main {
        height: 60px;
    }

    .ms-logo-tab {
        height: 105px;
        width: 100px;
        padding: 8px;
    }

    .ms-logo-tab img {
        height: 75px !important;
		margin-top:30px;
    }

    .ms-trigger-modern {
        gap: 5px;
    }

    .ms-line { width: 25px; }
    .ms-line-short { width: 15px; }
}
/* --- ACTIVE LINK STATE --- */

/* Keep the text orange */
.ms-nav-menu li a.active {
    color: #F7941D;
}

/* Keep the floating dot visible */
.ms-nav-menu li a.active::before {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}


/* --- MS UNIQUE MOBILE OVERLAY --- */
/* --- Aligned with Comfort Inn Brand Palette --- */
.ms-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 10000;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0.8s;
}

.ms-mobile-menu.active {
    visibility: visible;
    pointer-events: auto;
}

.ms-menu-canvas {
    display: grid;
    grid-template-columns: 40% 60%;
    width: 100%;
    height: 100%;
}

/* --- INFO PANEL (Clean Light Slate) --- */
.ms-panel-info {
    background: #ffffff; /* Pure white for a fresh feel */
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(0, 38, 84, 0.1);
    transform: translateY(100%); 
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.ms-mobile-menu.active .ms-panel-info { transform: translateY(0); }

.ms-menu-logo { width: 120px; margin-bottom: 30px; }

.ms-contact-box { margin-bottom: 35px; }
.ms-contact-box label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #F7941D; /* Comfort Orange Accent */
    font-weight: 800;
    margin-bottom: 10px;
}
.ms-contact-box p, .ms-menu-tel {
    font-size: 18px;
    color: #002654; /* Comfort Navy */
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
}

.ms-menu-legal { margin-top: auto; font-size: 11px; color: #888; }
.ms-legal-links a { color: #002654; text-decoration: none; font-weight: 700; }

/* --- NAV PANEL (Decent Navy Gradient) --- */
.ms-panel-nav {
    /* Using the same decent gradient as the header */
    background: linear-gradient(135deg, #002654 0%, #003a70 100%);
    padding: 80px;
    display: flex;
    align-items: center;
    position: relative;
    transform: translateY(-100%); 
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.ms-mobile-menu.active .ms-panel-nav { transform: translateY(0); }

/* Unique Close Button */
.ms-close-button {
    position: absolute;
    top: 50px;
    right: 50px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
}
.ms-close-line {
    width: 40px;
    height: 2px;
    background: #F7941D; /* Orange close line */
}
.ms-close-label {
    color: #fff;
    font-size: 11px;
    letter-spacing: 4px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Navigation Links - Modern Brand Style */
.ms-menu-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ms-menu-links a {
    color: #fff;
    text-decoration: none;
    font-size: 30px;
    font-weight: 400;
    font-family: 'Outfit', sans-serif;
    position: relative;
    transition: 0.4s;
    opacity: 0;
    transform: translateX(30px);
}

.ms-mobile-menu.active .ms-menu-links a {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered entrance */
.ms-mobile-menu.active .ms-menu-links a:nth-child(1) { transition-delay: 0.3s; }
.ms-mobile-menu.active .ms-menu-links a:nth-child(2) { transition-delay: 0.4s; }
.ms-mobile-menu.active .ms-menu-links a:nth-child(3) { transition-delay: 0.5s; }
.ms-mobile-menu.active .ms-menu-links a:nth-child(4) { transition-delay: 0.6s; }
.ms-mobile-menu.active .ms-menu-links a:nth-child(5) { transition-delay: 0.7s; }

.ms-menu-links a::before {
    content: attr(data-index);
    position: absolute;
    left: -30px;
    top: 15px;
    font-size: 12px;
    font-weight: 600;
    color: #F7941D; /* Orange index number */
}

.ms-menu-links a:hover {
    color: #F7941D; /* Hover to Brand Orange */
    padding-left: 15px;
}

/* --- MOBILE RESPONSIVE STACKING --- */
@media (max-width: 900px) {
    .ms-menu-canvas { grid-template-columns: 100%; overflow-y: auto; }
    .ms-panel-info { order: 2; padding: 40px; transform: translateX(-100%); min-height: 400px; }
    .ms-panel-nav { order: 1; padding: 100px 40px 60px; transform: translateX(100%); }
    
    .ms-mobile-menu.active .ms-panel-info,
    .ms-mobile-menu.active .ms-panel-nav { transform: translateX(0); }
    
    .ms-close-button { top: 30px; right: 30px; }
    
}

/* --- KINETIC HERO BASE --- */
.kinetic-hero {
    position: relative;
    width: 100%;
    height: 120vh;
    background: #001a3a; /* Professional Deep Navy base */
    overflow: hidden;
}

/* --- SLIDE POSITIONING --- */
.kn-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: visibility 0s 1.4s; 
}

.kn-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
    transition: none;
}

/* --- THE SPLIT PANEL REVEAL --- */
.kn-mask-container {
    position: absolute;
    inset: 0;
    display: flex;
    z-index: 5;
}

.kn-bg-panel {
    position: relative;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: transform 1.4s cubic-bezier(0.8, 0, 0.2, 1);
}

.kn-bg-panel.left { transform: translateY(100%); }
.kn-bg-panel.right { transform: translateY(-100%); }

/* Active State: Panels slide to center */
.kn-slide.active .kn-bg-panel {
    transform: translateY(0);
}

.kn-bg-panel img {
    position: absolute;
    top: 0;
    width: 200%; 
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.05); /* Professional cinematic filter */
    transition: transform 12s ease;
}

.kn-bg-panel.left img { left: 0; }
.kn-bg-panel.right img { right: 0; }

.kn-slide.active .kn-bg-panel img {
    transform: scale(1.1);
}

/* --- CONTENT REVEAL --- */
.kn-content {
    position: relative;
    z-index: 20;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.kn-inner {
    max-width: 1200px;
}

.kn-tag, .line {
    overflow: hidden;
    margin-bottom: 5px;
}

.kn-tag span {
    display: block;
    color: #F7941D; /* Updated to Comfort Orange */
    font-weight: 800;
    letter-spacing: 5px;
    font-size: 13px;
    text-transform: uppercase;
    transform: translateY(105%);
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.8s;
}

.kn-title span {
    display: block;
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    color: #ffffff;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    transform: translateY(105%);
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.9s;
}

.kn-description {
    color: rgba(255,255,255,0.85);
    font-size: 18px;
    max-width: 580px;
    line-height: 1.7;
    margin: 30px 0 45px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 1.2s;
    font-family: 'Outfit', sans-serif;
}

.kn-slide.active .kn-tag span,
.kn-slide.active .kn-title span,
.kn-slide.active .kn-description {
    opacity: 1;
    transform: translateY(0);
}

/* --- ACTION AREA --- */
.kn-action {
    display: flex;
    align-items: center;
    gap: 40px;
    opacity: 0;
    transition: opacity 1s ease 1.5s;
}

.kn-slide.active .kn-action { opacity: 1; }

.kn-btn {
    background: #F7941D; /* Orange primary button */
    color: #002654; /* Navy text */
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(247, 148, 29, 0.3);
}

.kn-btn:hover {
    background: #ffffff;
    color: #002654;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

.kn-scroll-hint {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
}

.hint-line {
    width: 60px;
    height: 2px;
    background: rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.hint-line::after {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: #F7941D; /* Orange pulse */
    animation: hintAnim 2.5s infinite;
}

@keyframes hintAnim {
    0% { left: -100%; }
    50% { left: 0%; }
    100% { left: 100%; }
}

/* --- PROGRESS CONTROLS --- */
.kn-controls {
    position: absolute;
    bottom: 60px;
    right: 80px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 30px;
}

.kn-progress-circle {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-circle {
    fill: none;
    stroke: rgba(255,255,255,0.15);
    stroke-width: 2;
}

.progress-path {
    fill: none;
    stroke: #F7941D; /* Orange progress */
    stroke-width: 3;
    stroke-dasharray: 176; 
    stroke-dashoffset: 176;
    transition: stroke-dashoffset 8s linear; 
    transform: rotate(-90deg);
    transform-origin: center;
}

.kn-slide.active ~ .kn-controls .progress-path {
    stroke-dashoffset: 0;
}

.kn-counter {
    position: absolute;
    color: #ffffff;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
}

.kn-dots {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dot {
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.4s;
}

.dot.active {
    background: #F7941D; /* Orange active dot */
    transform: scale(2);
}

/* --- ARROW CONTROLS --- */
.kn-arrows {
    display: flex;
    gap: 10px;
    margin-right: 15px;
}

.kn-arrow-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 38, 84, 0.4); /* Navy Blur */
    backdrop-filter: blur(5px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.kn-arrow-btn svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
}

.kn-arrow-btn:hover {
    background: #F7941D;
    border-color: #F7941D;
}

.kn-arrow-btn:hover svg {
    fill: #002654;
}


/* --- RESPONSIVE FIXES --- */

@media (max-width: 1024px) {
	/* --- KINETIC HERO BASE --- */
.kinetic-hero {
   
    height: 70vh;
   
}
    .kn-content {
        padding: 0 5%;
        justify-content: center; /* Center content for tablets/mobile */
        text-align: center;
    }

    .kn-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .kn-action {
        flex-direction: column;
        gap: 20px;
    }

    .kn-description {
        margin: 15px auto 30px;
    }

    /* Move controls to be more accessible on touch */
    .kn-controls {
        right: 50%;
        transform: translateX(50%);
        bottom: 30px;
        flex-direction: row;
        gap: 20px;
    }

    .kn-dots {
        flex-direction: row; /* Horizontal dots on mobile */
    }
}

@media (max-width: 768px) {
    /* Make the images appear as one instead of a split "half-image" */
    .kn-bg-panel img {
        width: 100vw; /* Image takes full width of screen */
        object-fit: cover;
    }

    /* Adjust the left/right logic so the image isn't cut off weirdly */
    .kn-bg-panel.left img {
        left: 0;
    }
    
    .kn-bg-panel.right img {
        right: 0;
        left: auto;
        /* Shift the right panel's image so it aligns with the left */
        transform: translateX(50%); 
    }

    /* Reset scale for mobile to prevent blurriness */
    .kn-slide.active .kn-bg-panel img {
        transform: scale(1.05);
    }
    
    /* Adjust Typography for Mobile */
    .kn-title span {
        font-size: 2.5rem;
    }
    
    .kn-description {
        font-size: 15px;
        line-height: 1.4;
    }
}

/* --- SECTION STYLING --- */
.prop-intro {
    position: relative;
    padding: 140px 0;
    background: #ffffff;
    
    overflow: hidden;
}

.pi-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

/* --- MEDIA STYLING (Masked & Clean) --- */
.pi-media-wrap {
    position: relative;
}

.pi-image-reveal {
    position: relative;
    height: 700px;
    clip-path: inset(0 0 0 0);
    background: #002654; /* Comfort Navy */
    cursor: pointer;
    overflow: hidden;
}

.pi-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.pi-image-reveal:hover .pi-img {
    transform: scale(1.05) rotate(1deg);
    opacity: 0.7;
}

.pi-video-hint {
    position: absolute;
    bottom: 40px; left: 40px;
    display: flex; align-items: center; gap: 15px;
    color: #fff; opacity: 0;
    transition: 0.5s ease;
}

.pi-image-reveal:hover .pi-video-hint { opacity: 1; transform: translateY(-10px); }

.pi-play-circle {
    width: 55px; height: 55px; 
    background: #F7941D; /* Comfort Orange */
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 20px rgba(247, 148, 29, 0.3);
}

.pi-play-circle svg { width: 22px; fill: #002654; }

.pi-img-caption {
    position: absolute;
    top: 40px; right: -40px;
    writing-mode: vertical-rl;
    color: #002654;
    font-size: 11px;
    letter-spacing: 4px;
    font-weight: 700;
}

/* --- CONTENT STYLING (The Narrative) --- */
.pi-label-group {
    display: flex; align-items: center; gap: 15px; margin-bottom: 30px;
}

.pi-dash { width: 40px; height: 2px; background: #F7941D; }
.pi-eyebrow { font-size: 12px; letter-spacing: 4px; color: #888; font-weight: 800; text-transform: uppercase; }

.pi-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: #002654; line-height: 1.1; margin-bottom: 35px;
    font-family: 'Outfit', sans-serif;
}

.pi-title strong { color: #F7941D; font-weight: 900; }

.pi-lead { font-size: 22px; color: #1a1a1a; margin-bottom: 25px; font-weight: 700; line-height: 1.4; }
.pi-body { font-size: 16px; color: #444; line-height: 1.8; margin-bottom: 50px; }

/* Custom Trigger Button */
.pi-discover-trigger {
    background: none; border: none; display: flex; align-items: center; gap: 20px;
    cursor: pointer; padding: 15px 0; border-bottom: 2px solid #f0f0f0; transition: 0.3s;
}

.pi-btn-label { font-weight: 800; letter-spacing: 2px; font-size: 13px; color: #002654; text-transform: uppercase; }
.pi-btn-arrow { transition: transform 0.3s ease; }
.pi-btn-arrow svg { width: 24px; fill: #F7941D; }

.pi-discover-trigger:hover { border-bottom-color: #F7941D; }
.pi-discover-trigger:hover .pi-btn-arrow { transform: translateX(10px); }

/* --- GUIDE OVERLAY STYLING (About Us Panel) --- */
.pi-guide-overlay {
    position: fixed; inset: 0; 
    background: linear-gradient(135deg, #001a3a 0%, #002654 100%); 
    z-index: 1000; display: flex; align-items: center; justify-content: center;
    transform: translateY(100%); transition: transform 0.7s cubic-bezier(0.85, 0, 0.15, 1);
    overflow: hidden; 
}

.pi-guide-overlay.active { transform: translateY(0); }

.pi-guide-inner { width: 1100px; max-width: 90%; }

.pi-guide-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 30px;
}

.pi-guide-header h3 { color: #fff; font-size: 36px; letter-spacing: 1px; font-family: 'Outfit', sans-serif; }
.pi-guide-header strong { color: #F7941D; }

.pi-close-x { 
    background: #F7941D; border: none; color: #002654; 
    padding: 12px 35px; cursor: pointer; font-weight: 900; 
    font-size: 11px; letter-spacing: 2px; border-radius: 50px;
    transition: 0.3s;
}

.pi-close-x:hover { background: #ffffff; }

/* About Columns Inside Overlay */
.pi-about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.pi-about-column p {
    color: rgba(255,255,255,0.8);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.pi-about-column p strong {
    color: #F7941D;
    display: block;
    font-size: 20px;
    margin-bottom: 10px;
}

/* --- SCROLL AREA LOGIC --- */
.pi-scroll-area {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 30px;
    margin-top: 20px;
    color:#fff;
    scroll-behavior: smooth;
}

/* Scrollbar Styling (Orange Accent) */
.pi-scroll-area::-webkit-scrollbar,
.pi-body-scroll::-webkit-scrollbar {
    width: 4px;
}

.pi-scroll-area::-webkit-scrollbar-track,
.pi-body-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.pi-scroll-area::-webkit-scrollbar-thumb,
.pi-body-scroll::-webkit-scrollbar-thumb {
    background: #F7941D; 
    border-radius: 10px;
}

/* --- PI BODY SCROLLING (Welcome Text) --- */
.pi-body-scroll {
    max-height: 220px;
    overflow-y: auto;
    margin-bottom: 40px;
    padding-right: 20px;
}

.pi-body-scroll .pi-body {
    margin-bottom: 0;
    max-width: 100%;
}

/* --- VIDEO OVERLAY --- */
.ew-video-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 26, 58, 0.98); 
    z-index: 10001;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(15px);
}

.ew-video-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: #F7941D;
    border: none;
    padding: 15px 30px;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 2px;
    cursor: pointer;
    color: #002654;
    border-radius: 50px;
}

#ew-video-target {
    width: 90%;
    max-width: 1200px;
    aspect-ratio: 16 / 9;
    background: #000;
    box-shadow: 0 30px 100px rgba(0,0,0,0.8);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .pi-container { gap: 40px; }
    .pi-about-wrapper { gap: 40px; }
}

@media (max-width: 900px) {
    .prop-intro { padding: 80px 0; }
    .pi-container { grid-template-columns: 1fr; gap: 50px; }
    .pi-image-reveal { height: 450px; }
    .pi-about-wrapper { grid-template-columns: 1fr; gap: 30px; }
    .pi-img-caption { display: none; }
    .pi-title { font-size: 2.2rem; }
    .pi-scroll-area { max-height: 55vh; }
}

/* --- SECTION & BACKGROUND --- */
.bento-amenities {
    position: relative;
    padding: 120px 0;
    /* Sticky Image Background with Deep Navy Overlay */
    background: linear-gradient(rgba(0, 26, 58, 0.9), rgba(0, 26, 84, 0.85)), 
                url('../images/new/pool.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    color: #ffffff;
   
}

.ba-bg-text {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 18vw;
    font-weight: 400;
    color: rgba(247, 148, 29, 0.04); /* Subtly Orange giant text */
    letter-spacing: 20px;
    pointer-events: none;
    z-index: 1;
    text-transform: uppercase;
}

/* --- GRID LAYOUT --- */
.ba-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px; 
    gap: 25px;
    position: relative;
    z-index: 2;
}

/* --- TILE BASE STYLING (Glassmorphism) --- */
.ba-cell {
    background: rgba(255, 255, 255, 0.03); 
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 4px; /* Slight rounding for a modern look */
}

.ba-cell:hover {
    background: rgba(247, 148, 29, 0.1); /* Subtle Orange glow */
    border-color: #F7941D;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* --- TILE VARIATIONS --- */
.ba-header {
    grid-column: span 2;
    background: transparent;
    backdrop-filter: none;
    border: none;
    padding-left: 0;
}

.ba-feature-lg {
    grid-column: span 2;
    grid-row: span 2;
    background: rgba(0, 38, 84, 0.5);
    border-left: 5px solid #F7941D; /* Orange accent bar */
}

.ba-wide {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
}

/* --- ELEMENTS --- */
.ba-title {
    font-size: clamp(40px, 5vw, 75px);
    font-weight: 400;
    line-height: 0.9;
    margin: 15px 0;
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
}
.ba-title span { color: #F7941D; font-style: normal; }

.ba-intro { font-size: 18px; color: rgba(255,255,255,0.7); line-height: 1.6; max-width: 480px; }

.ba-icon { font-size: 80px; color: #F7941D; filter: drop-shadow(0 5px 15px rgba(247,148,29,0.2)); }
.ba-icon.small { font-size: 32px; }

.ba-flex { display: flex; align-items: center; gap: 20px; font-weight: 400; font-size: 20px; }
.ba-flex i { color: #F7941D; font-size: 32px; }

.ba-eyebrow { color: #F7941D; font-size: 13px; letter-spacing: 5px; font-weight: 400; }
.ba-tag { font-size: 11px; letter-spacing: 3px; color: #F7941D; font-weight: 400; text-transform: uppercase; }
.ba-number { position: absolute; top: 25px; right: 35px; font-size: 90px; font-weight: 400; color: #fff; opacity: 0.05; }

/* Square Titles */
.ba-cell h4 {
    font-size: 22px;
    font-weight: 400;
    margin: 15px 0 5px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
}

/* --- RESPONSIVE --- */
@media (max-width: 1100px) {
    .bento-amenities { background-attachment: scroll; padding: 80px 0; }
    .ba-container { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
    .ba-header, .ba-feature-lg, .ba-wide { grid-column: span 2; }
    .ba-cell { min-height: 240px; }
    .ba-title { font-size: 55px; }
}

@media (max-width: 600px) {
    .ba-container { grid-template-columns: 1fr; padding: 0 20px; }
    .ba-header, .ba-feature-lg, .ba-wide { grid-column: span 1; }
    .ba-bg-text { display: none; } /* Clean up mobile view */
}

/* --- SECTION & BACKGROUND --- */
.room-editorial-v2 {
    padding: 140px 0;
    /* Matches the previous Bento section for continuity */
    background: linear-gradient(rgba(0, 26, 58, 0.92), rgba(0, 26, 58, 0.92)), 
                url('../images/new/exterior.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
    font-family: 'Mulish', sans-serif;
    position: relative;
    overflow: hidden;
}

.re-v2-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.re-v2-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    align-items: center;
    position: relative;
    gap: 60px;
}

/* Sidebar Branding */
.re-v2-eyebrow {
    color: #F7941D; /* Sunburst Orange Accent */
    letter-spacing: 6px;
    font-size: 15px;
    font-weight: 400;
    display: block;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.re-v2-title {
    font-size: clamp(45px, 6vw, 75px);
    line-height: 0.95;
    font-weight: 400;
    margin-bottom: 40px;
    font-family: 'Outfit', sans-serif;
}

.re-v2-title span {
    display: block;
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.4);
    color: transparent;
    font-style: italic;
}

/* --- THE FIX: POSITIONS & LAYERS --- */
.re-v2-main-visual {
    position: relative;
    z-index: 5;
}

.re-v2-image-frame {
    position: relative;
    height: 700px;
    width: 100%;
    overflow: hidden; 
    clip-path: inset(0% 0% 0% 0% round 150px 0 0 0); /* Elegant modern crop */
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.re-v2-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.re-v2-main-visual:hover #re-main-img {
    transform: scale(1.05);
}

/* Floating Card Fix */
.re-v2-details-card {
    position: absolute;
    bottom: -30px;
    left: -140px; /* Strong overlap for editorial feel */
    background: #ffffff;
    color: #002654;
    padding: 50px;
    width: 480px;
    z-index: 10; 
    box-shadow: 30px 30px 70px rgba(0,0,0,0.5);
    border-bottom: 5px solid #F7941D; /* Orange accent bar */
}

.re-v2-desc {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #444;
}

.re-v2-specs {
    display: flex;
    gap: 40px;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.spec-item small { 
    display: block; 
    font-size: 11px; 
    color: #999; 
    margin-bottom: 8px; 
    letter-spacing: 1px;
    font-weight: 400;
}

.spec-item b { 
    font-size: 20px; 
    font-weight: 400; 
    color: #002654;
}

.re-v2-cta {
    display: inline-block;
    padding: 20px 40px;
    background: #002654; /* Comfort Navy */
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 2px;
    transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    text-transform: uppercase;
}

.re-v2-cta:hover { 
    background: #F7941D; 
    color: #fff; 
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(247, 148, 29, 0.3);
}

/* Navigation */
.re-v2-nav { display: flex; align-items: center; gap: 20px; margin-top: 30px; }
.re-v2-num { font-size: 24px; color: #F7941D; font-weight: 900; }

.re-v2-arrow {
    background: transparent; 
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff; 
    width: 55px; height: 55px; 
    border-radius: 50%; 
    cursor: pointer;
    transition: 0.3s;
}

.re-v2-arrow:hover { 
    background: #F7941D; 
    color: #fff; 
    border-color: #F7941D; 
}

/* Background Number Text */
.re-v2-ghost-bg {
    position: absolute;
    top: -20px;
    right: 0px;
    font-size: 400px;
    font-weight: 900;
    color: rgba(255,255,255,0.04);
    z-index: -1;
    line-height: 1;
}

/* Mobile Fixes */
@media (max-width: 1100px) {
    .re-v2-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .re-v2-title { font-size: 55px; }
    .re-v2-details-card { 
        position: relative; 
        left: 0; 
        bottom: 0; 
        width: 100%; 
        margin-top: -80px; 
        padding: 40px 30px; 
        box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    }
    .re-v2-image-frame { height: 450px; clip-path: none; border-radius: 20px 20px 0 0; }
    .re-v2-ghost-bg { display: none; }
}

/* --- Root Container --- */
.attr-cinematic {
    position: relative;
    height: 500vh; /* Controls scroll duration for 5 items */
    background: #FFFFFF;
    overflow: clip;
}

/* --- Sticky Mechanism --- */
.attr-sticky-guard {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #FFFFFF;
}

/* --- Background Image Engine --- */
.attr-bg-system {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.attr-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 1.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.attr-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

/* --- The Editorial White Wash --- */
.attr-overlay {
    position: absolute;
    inset: 0;
    /* Strong white fade from left to ensure text pops against any photo */
    background: linear-gradient(to right, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(255, 255, 255, 0.95) 25%, 
        rgba(255, 255, 255, 0.4) 60%, 
        rgba(255, 255, 255, 0) 100%);
    z-index: 2;
}

/* --- Content Layout --- */
.attr-wrapper {
    position: relative;
    z-index: 10;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    pointer-events: none;
}

.attr-body, .attr-pillar {
    pointer-events: auto;
}

/* --- Typography & Info Blocks --- */
.attr-info {
    display: none;
    max-width: 600px;
}

.attr-info.is-active {
    display: block;
    animation: attrRevealLight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes attrRevealLight {
    from { opacity: 0; transform: translateX(-30px); filter: blur(10px); }
    to { opacity: 1; transform: translateX(0); filter: blur(0); }
}

.attr-tag { 
    color: #F7941D; /* Sunburst Orange Accent */
    letter-spacing: 5px; 
    font-weight: 800; 
    text-transform: uppercase;
    font-size: 13px;
    display: block;
    margin-bottom: 15px;
}

.attr-name { 
    font-size: clamp(48px, 7vw, 90px); 
    font-weight: 900; 
    margin: 0 0 25px 0; 
    line-height: 0.85; 
    text-transform: uppercase;
    color: #002654; /* Comfort Navy */
    font-family: 'Outfit', sans-serif;
}

.attr-desc { 
    font-size: 18px; 
    color: #333333; 
    line-height: 1.8;
    margin-bottom: 45px; 
    max-width: 480px;
}

.attr-explore { 
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #002654; 
    text-decoration: none; 
    font-weight: 900; 
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid #F7941D; 
    padding-bottom: 8px;
    transition: 0.3s ease;
}

.attr-explore:hover {
    gap: 20px;
    color: #F7941D;
    border-color: #002654;
}

/* --- Vertical Pillar Navigation --- */
.attr-pillar { 
    display: flex; 
    flex-direction: column; 
    gap: 20px; 
}

.pillar-item {
    width: 50px; 
    height: 50px; 
    border: 1px solid rgba(0, 38, 84, 0.15); 
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-weight: 900; 
    color: #002654; 
    transition: 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
}

.pillar-item.is-active { 
    background: #F7941D; /* Orange for the active step */
    color: #FFFFFF; 
    border-color: #F7941D;
    transform: scale(1.25) translateX(-10px); 
    box-shadow: 0 15px 30px rgba(247, 148, 29, 0.3);
}

.pillar-item:hover:not(.is-active) {
    background: #002654;
    color: #fff;
}

/* --- Tablet (iPad) Adjustments --- */
@media (max-width: 1024px) {
    .attr-wrapper {
        padding: 0 40px;
        justify-content: center; /* Center content on iPad */
    }

    .attr-overlay {
        /* Wider white wash for iPad to cover image distracting details */
        background: linear-gradient(to right, 
            rgba(255, 255, 255, 1) 0%, 
            rgba(255, 255, 255, 0.9) 60%, 
            rgba(255, 255, 255, 0) 100%);
    }

    .attr-name {
        font-size: 65px;
        margin-bottom: 20px;
    }

    .attr-pillar {
        /* Move pillars closer on iPad */
        position: absolute;
        right: 40px;
        gap: 15px;
    }
}

/* --- Mobile Phone Adjustments --- */
@media (max-width: 767px) {
    .attr-cinematic {
        height: 400vh; /* Shorter scroll feel for mobile */
    }

    .attr-overlay {
        /* Vertical gradient for mobile: Darker at bottom for text contrast */
        background: linear-gradient(to top, 
            rgba(255, 255, 255, 1) 0%, 
            rgba(255, 255, 255, 0.98) 40%, 
            rgba(255, 255, 255, 0.6) 100%);
    }

    .attr-wrapper {
        align-items: flex-end; /* Push text to the bottom */
        padding: 0 25px 80px 25px; /* Leave space for navigation/fingers */
        text-align: left;
    }

    .attr-info {
        max-width: 100%;
    }

    .attr-tag {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .attr-name {
        font-size: 42px; /* Smaller font for mobile screens */
        line-height: 0.9;
        margin-bottom: 15px;
    }

    .attr-desc {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 30px;
        max-width: 100%;
        color: #555;
    }

    /* Vertical Pillar Navigation - Hidden on Mobile to prevent clutter */
    .attr-pillar {
        display: none; 
    }

    /* Small dot navigation for Mobile (Optional addition to JS) */
    .mobile-nav-dots {
        display: flex;
        position: absolute;
        bottom: 30px;
        left: 25px;
        gap: 8px;
        z-index: 20;
    }
}

/* --- High Refresh Rate / Animation smoothness --- */
.attr-slide {
    will-change: opacity, transform;
}
/* --- Root Container --- */
.mke-archive-v5 {
    height: 85vh;
    background: #fdfdfd; /* Very light neutral to make navy pop */
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    padding-left: 5%;
}

.mke-v5-container {
    display: flex;
    align-items: center;
    width: 100%;
    height: 85%; /* Leaves breathing room top/bottom */
}

/* --- SIDE HEADER --- */
.mke-v5-side-header {
    flex: 0 0 380px; /* Increased width for new font sizing */
    padding-right: 60px;
    z-index: 10;
}

.mke-v5-eyebrow {
    color: #F7941D; /* Sunburst Orange */
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 5px;
    font-weight: 900;
    font-family: 'Mulish', sans-serif;
}

.mke-v5-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(40px, 4.5vw, 60px);
    color: #002654; /* Comfort Navy */
    line-height: 0.95;
    margin: 20px 0;
    font-weight: 400;
}

.mke-v5-title span { 
    display: block;
    color: #F7941D; 
    font-weight: 300; 
    font-style: normal;
}

.mke-v5-info { 
    font-size: 13px; 
    color: #666; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    font-weight: 700;
    line-height: 1.6;
}

.mke-v5-address {
    color: #999;
    font-weight: 400;
}

/* --- HORIZONTAL FILMSTRIP --- */
.mke-v5-filmstrip {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 30px;
    cursor: grab;
    scrollbar-width: thin;
    scrollbar-color: #002654 #eee;
}

.mke-v5-filmstrip::-webkit-scrollbar { height: 4px; }
.mke-v5-filmstrip::-webkit-scrollbar-track { background: #f0f0f0; }
.mke-v5-filmstrip::-webkit-scrollbar-thumb { background: #F7941D; border-radius: 10px; }

.mke-v5-track {
    display: flex;
    gap: 35px;
    padding-right: 150px; /* Deep bleed for final scroll */
}

.mke-v5-card {
    flex: 0 0 480px; /* Slightly wider cards */
    height: 65vh;
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
    border-radius: 4px; /* Matches Bento section rounding */
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 35px rgba(0, 38, 84, 0.1);
}

.mke-v5-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.2s ease;
}

.mke-v5-card:hover img { transform: scale(1.08); }
.mke-v5-card:hover { 
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 38, 84, 0.2);
}

/* Gradient Overlay for Label Readability */
.mke-v5-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 38, 84, 0.7) 0%, transparent 40%);
    opacity: 0.8;
    z-index: 1;
}

.mke-v5-label {
    position: absolute;
    bottom: 30px; left: 30px;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
    z-index: 2;
   
}

.mke-v5-label span { 
    color: #F7941D; 
    margin-right: 12px; 
    font-weight: 900;
    font-style: normal;
}

/* Lightbox Styling */
.mke-lightbox {
    display: none; position: fixed; inset: 0; 
    background: rgba(0, 38, 84, 0.98); /* Navy lightbox background */
    z-index: 2000;
    align-items: center; justify-content: center;
    backdrop-filter: blur(10px);
}
.mke-lightbox img { 
    max-width: 90%; max-height: 85vh; 
    object-fit: contain; 
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}
.mke-lightbox .close-btn { 
    position: absolute; top: 30px; right: 40px; 
    color: #F7941D; font-size: 50px; 
    cursor: pointer; 
    transition: transform 0.3s ease;
}
.mke-lightbox .close-btn:hover { transform: rotate(90deg) scale(1.2); }

/* Optimized Responsive Logic */
@media (max-width: 1024px) {
    .mke-archive-v5 {
        height: auto; 
        min-height: 100vh;
        padding: 80px 0 80px 5%;
    }

    .mke-v5-container {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
    }

    .mke-v5-side-header {
        flex: none;
        width: 100%;
        padding-right: 5%;
        margin-bottom: 50px;
    }

    .mke-v5-card {
        flex: 0 0 85vw; 
        height: 55vh; 
    }

    .mke-v5-title {
        font-size: 45px;
    }
}
/* --- COMFORT INN BRANDED FOOTER --- */
.mke-footer-wrap {
  /* PROFESSIONAL GRADIENT: 
     A subtle radial gradient creates a "spotlight" effect in the center, 
     making the brand slogan and logo pop without looking 'busy'.
  */
  background: radial-gradient(circle at 20% 30%, #00336d 0%, #002654 50%, #001a3a 100%);
  padding-top: 90px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.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 --- */
/* --- Dual Logo Layout --- */
.mke-logo-pod {
    display: inline-flex;
    align-items: center;
    gap: 25px; /* Space between logos */
    background: #ffffff; 
    padding: 20px 35px;
    border-radius: 4px;
    margin-bottom: 35px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2); 
    border-bottom: 5px solid #F7941D; 
}

.mke-footer-logo {
    height: 50px; /* Slightly smaller to accommodate two logos */
    width: auto;
    display: block;
}

/* Vertical Divider between the two logos */
.choice-logo {
    padding-left: 25px;
    border-left: 1px solid #e0e0e0;
    height: 40px; /* Choice logo is usually more horizontal, so we scale it accordingly */
}

.mke-footer-slogan {
  font-family: 'Outfit', sans-serif;
  font-size: 38px;
  line-height: 1;
  margin-bottom: 45px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
}

.mke-footer-slogan span { 
  display: block;
  font-size: 24px;
  font-weight: 300;
  /* Sunburst Orange highlight */
  color: #F7941D; 
}

/* --- ACTION BUTTON --- */
.mke-btn-primary {
  background: #F7941D; 
  color: #ffffff;
  padding: 18px 35px;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
}

.mke-btn-primary:hover { 
  background: #ffffff;
  color: #002654;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.mke-action-group { 
  display: flex; 
  align-items: center; 
  gap: 30px; 
}

/* --- SOCIAL LINKS --- */
.mke-footer-social {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mke-footer-social a { 
  color: #fff; 
  font-size: 20px; 
  opacity: 0.7;
  transition: 0.3s ease;
  text-decoration: none;
}

.mke-footer-social a:hover { 
  opacity: 1; 
  color: #F7941D; 
  transform: translateY(-3px); 
}

/* --- DATA PILLARS --- */
.mke-footer-details {
  flex: 2.5;
  display: flex;
  gap: 70px;
  border-left: 1px solid rgba(247, 148, 29, 0.2); /* Faded orange divider */
  padding-left: 70px;
}

.mke-detail-col { 
  flex: 1; 
}

.mke-detail-label {
  display: block;
  font-size: 25px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #F7941D; 
  margin-bottom: 35px;
  font-weight: 400;
 text-decoration:none;
}
.mke-detail-label1 a{
 
  font-size: 25px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #F7941D; 
  margin-bottom: 35px;
  font-weight: 200;
 text-decoration:none;
}


/* 2-COLUMN LINKS GRID */
.mke-quick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 30px;
}

.mke-quick-grid a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
  display: inline-block;
  font-weight: 500;
}

.mke-quick-grid a:hover {
  color: #F7941D;
  transform: translateX(8px);
}

/* CONTACT SECTION */
.mke-address {
  font-style: normal;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  font-size: 20px;
  margin-bottom: 5px;
}

.mke-phone {
  font-weight: 800;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  transition: 0.3s;
  font-family: 'Outfit', sans-serif;
}

.mke-phone:hover { 
  color: #F7941D; 
}

/* --- LEGAL FLOOR SECTION --- */
.mke-footer-bottom {
  background-color: #001a3a; /* Darker navy floor */
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 50px 0;
}

.mke-ownership-statement {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 35px;
  text-align: center;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

.mke-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  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: #F7941D;
  margin: 0 12px;
}

.mke-legal-links a:hover, 
.mke-f-credit a:hover {
  color: #ffffff;
}

/* --- 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%;
  }
}

/* --- BRANDED BACK TO TOP BUTTON --- */
#mke-back-to-top {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    border: none;
    outline: none;
    background-color: #9CD9C5; /* Your Brand Teal */
    color: #0A2533; /* Your Brand Navy */
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 2px; /* Matching the sharp logo-pod style */
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

#mke-back-to-top:hover {
    background-color: #0A2533; /* Switch to Navy on hover */
    color: #9CD9C5; /* Switch to Teal on hover */
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Ensure it stays readable on mobile */
@media (max-width: 768px) {
    #mke-back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

.inner-hero {
    position: relative;
    width: 100%;
    height: 75vh; 
    background: #001a3a;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-mask {
    position: absolute;
    inset: 0;
    display: flex; /* Flex is more reliable for 100% width strips */
    z-index: 1;
}

.mask-strip {
    position: relative;
    width: 20%; /* Exactly 1/5th */
    height: 100%;
    overflow: hidden;
    filter: brightness(0.7);
}

/* THE FIX: Absolute image inside the strip */
.mask-strip img {
    position: absolute;
    top: 0;
    height: 100%;
    width: 500%; /* Image is 5x the width of the strip */
    object-fit: cover; /* This prevents the stretching */
    max-width: none;
}

/* ALIGN THE IMAGE SLICES */
.mask-strip:nth-child(1) img { left: 0%; }
.mask-strip:nth-child(2) img { left: -100%; }
.mask-strip:nth-child(3) img { left: -200%; }
.mask-strip:nth-child(4) img { left: -300%; }
.mask-strip:nth-child(5) img { left: -400%; }

/* --- THE ALTERNATING REVEAL --- */

/* 1, 3, 5 come from TOP */
.mask-strip:nth-child(odd) {
    transform: translateY(-100%);
    animation: stripReveal 1.2s cubic-bezier(0.8, 0, 0.2, 1) forwards;
    animation-delay: calc(var(--i) * 0.1s);
}

/* 2, 4 come from BOTTOM */
.mask-strip:nth-child(even) {
    transform: translateY(100%);
    animation: stripReveal 1.2s cubic-bezier(0.8, 0, 0.2, 1) forwards;
    animation-delay: calc(var(--i) * 0.1s);
}

@keyframes stripReveal {
    to { transform: translateY(0); }
}

/* --- CONTENT STYLING --- */
.hero-content {
    position: relative;
    z-index: 10;
    padding: 0 10%;
    pointer-events: none;
}

.hero-tag {
    display: block;
    color: #fff;
    font-weight: 800;
    letter-spacing: 5px;
    font-size: 14px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards 1.2s;
}

.title-line {
    display: block;
    color: #ffffff;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

.title-line:nth-child(1) { animation-delay: 1.4s; }
.title-line:nth-child(2) { animation-delay: 1.6s; }

.hero-sep {
    width: 100px;
    height: 5px;
    background: #F7941D;
    margin-top: 20px;
    transform: scaleX(0);
    transform-origin: left;
    animation: scaleIn 0.8s ease forwards 2s;
}

@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes scaleIn { to { transform: scaleX(1); } }
/* --- RESPONSIVE FIXES --- */

/* 1. Adjust Hero Height for Mobile */
@media (max-width: 1024px) {
    .inner-hero {
        height: 60vh; /* Shorter height for iPad/Mobile */
    }

    .hero-content {
        padding: 0 5%;
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .title-line {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    /* 2. Disable the "Strips" on Mobile/iPad to prevent alignment gaps */
    .hero-mask {
        display: block; /* Change from flex */
    }

    .mask-strip {
        width: 100% !important;
        position: absolute;
        inset: 0;
        animation: mobileFadeIn 1.5s ease forwards !important;
        transform: none !important; /* Remove the vertical slide */
    }

    /* Hide all slices except the first one on mobile */
    .mask-strip:not(:first-child) {
        display: none;
    }

    .mask-strip img {
        width: 100% !important;
        left: 0 !important;
        object-fit: cover;
    }
}

/* 3. Extra adjustments for Small Phones */
@media (max-width: 600px) {
    .inner-hero {
        height: 50vh;
    }
    
    .hero-sep {
        margin: 20px auto 0; /* Center the separator */
    }
    
    .hero-tag {
        font-size: 11px;
        letter-spacing: 3px;
    }
}

/* New Animation for Mobile to keep it smooth */
@keyframes mobileFadeIn {
    from { opacity: 0; transform: scale(1.1); }
    to { opacity: 1; transform: scale(1); }
}

/* --- OPTIONAL: Fix for Desktop "Stretching" during window resize --- */
@media (min-width: 1025px) {
    .mask-strip img {
        /* Ensure image doesn't jump on slow loads */
        transition: left 0s; 
    }
}



/* --- COMFORT INN GLENMONT AMENITIES SECTION --- */

.steward-ledger {
     background-color: #022c5d;
    background-image: linear-gradient(180deg, rgba(247, 148, 29, 0.05), rgb(2 45 92));
  background-size: cover;
  background-attachment: fixed;
  padding: 80px 5%;
}

.ledger-container {
  max-width: 1300px;
  margin: 0 auto;
  /* Double architectural border in Navy */
  border: 6px double #002654; 
  padding: 50px 40px;
  background: #ffffff;
  box-shadow: 0 30px 70px rgba(0,0,0,0.3);
  position: relative;
  border-radius: 4px;
}

/* --- HEADER SECTION --- */
.ledger-header { 
  text-align: center; 
  margin-bottom: 50px; 
}

.ledger-header h2 { 
  font-size: clamp(2.2rem, 4vw, 3.2rem); 
  color: #001a3a;
  text-transform: uppercase; 
  margin: 0; 
  letter-spacing: 1px;
  font-weight: 900;
}

.ledger-subtitle { 
  font-family: 'Outfit', sans-serif; 
  font-size: 1rem; 
  letter-spacing: 4px; 
  /* Comfort Orange for branding */
  color: #F7941D; 
  font-weight: 800; 
  margin: 15px 0; 
  text-transform: uppercase;
}

.ledger-intro-text { 
  max-width: 1000px; 
  margin: 25px auto; 
  font-family: 'Outfit', sans-serif; 
  font-size: 1.1rem; 
  color: #444; 
  line-height: 1.8; 
}

.ledger-line { 
  height: 4px; 
  width: 80px; 
  background: #F7941D; 
  margin: 30px auto; 
}

/* --- POPULAR FACILITIES BAR --- */
.popular-facilities-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
  padding: 25px;
  /* Soft Navy tint for the bar */
  background: rgba(0, 26, 58, 0.04); 
  border-radius: 50px;
  border: 1px solid rgba(0, 26, 58, 0.08);
}

.popular-facilities-bar span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #001a3a;
  text-transform: uppercase;
}

.popular-facilities-bar i {
  color: #F7941D; 
  margin-right: 10px;
  font-size: 1.1rem;
}

/* --- GRID & PANEL LAYOUT --- */
.ledger-grid { 
  display: flex; 
  gap: 30px; 
  align-items: stretch; 
}

.ledger-panel { 
  flex: 1; 
  border: 1px solid #eef2f6; 
  padding: 45px 30px; 
  position: relative; 
  background: #fff;
  transition: all 0.4s ease;
  border-radius: 8px;
}

/* Highlight Panel (Navy Background) */
.ledger-panel.highlight {
  background: #001a3a; 
  color: #ffffff;
  /* Orange border for the "Hero" panel */
  border: 2px solid #F7941D; 
  transform: scale(1.04);
  box-shadow: 0 25px 50px rgba(0, 26, 58, 0.3);
  z-index: 2;
}

.panel-head { 
  text-align: center; 
  border-bottom: 1px solid rgba(247, 148, 29, 0.2); 
  padding-bottom: 25px; 
  margin-bottom: 30px; 
}

.panel-head i { 
  font-size: 32px; 
  color: #F7941D;
  margin-bottom: 15px; 
  display: block; 
}

.ledger-panel.highlight .panel-head i {
  color: #F7941D; 
}

.panel-head h3 { 
  font-size: 1.5rem; 
  text-transform: uppercase; 
  margin: 0; 
  font-weight: 800;
  letter-spacing: 1px; 
}

.panel-tag { 
  display: block; 
  font-family: 'Outfit', sans-serif; 
  font-size: 0.8rem; 
  color: #777; 
  text-transform: uppercase; 
  margin-top: 10px; 
  letter-spacing: 2px;
  font-weight: 600;
}

.ledger-panel.highlight .panel-tag {
  color: rgba(255, 255, 255, 0.6);
}

/* --- LISTS & CONTENT --- */
.ledger-subgroup h4 { 
  font-size: 0.95rem; 
  color: #001a3a; 
  text-transform: uppercase; 
  margin: 25px 0 15px; 
  border-left: 4px solid #F7941D; 
  padding-left: 12px;
  display: block;
  font-weight: 800;
}

.ledger-panel.highlight .ledger-subgroup h4 {
  color: #F7941D;
  border-left-color: #F7941D;
}

.ledger-items li {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  color: #555; 
  padding: 10px 0;
  border-bottom: 1px solid #f4f7f9;
  display: flex;
  align-items: center;
}

.ledger-items li::before {
  content: "\f054"; /* FontAwesome angle right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #F7941D; 
  font-size: 10px;
  margin-right: 12px;
}

.feature-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  display: flex;
  align-items: center;
  color: #ffffff;
}

.feature-list i { 
  color: #F7941D; 
  width: 35px; 
  font-size: 18px; 
  text-align: center;
}

.ledger-pet-heading {
    font-size: 1rem;
    color: #F7941D !important;
    text-transform: uppercase;
    margin-top: 35px;
    margin-bottom: 12px;
    border-left: 4px solid #F7941D;
    padding-left: 12px;
    display: block;
    font-weight: 800;
}

.ledger-subgroup-alt p {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.ledger-footer {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #eee;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: #888;
}

.ledger-footer i {
  color: #F7941D;
  margin-right: 8px;
}


/* --- RESPONSIVE REFINEMENTS --- */

/* 1. IPAD & TABLET (Under 1024px) */
@media (max-width: 1024px) {
  .ledger-container {
    padding: 20px;
    border-width: 4px; /* Thinner border for smaller screens */
  }

  .ledger-grid {
    flex-direction: column; /* Stack panels vertically */
    gap: 30px;
  }

  .ledger-panel.highlight {
    transform: none; /* Remove scaling on tablet */
    order: -1; /* Keep the highlighted "Services" panel at the top */
  }

  .ledger-header h2 {
    font-size: 2.2rem;
  }

  .popular-facilities-bar {
    gap: 15px;
    padding: 15px;
  }
}

/* 2. MOBILE PHONES (Under 768px) */
@media (max-width: 768px) {
  .steward-ledger {
    padding: 15px 3%;
  }

  .ledger-header {
    margin-bottom: 30px;
  }

  .ledger-header h2 {
    font-size: 1.8rem;
  }

  .ledger-subtitle {
    font-size: 0.8rem;
    letter-spacing: 2px;
  }

  .ledger-intro-text {
    font-size: 0.95rem;
    text-align: left; /* Easier to read on small screens */
  }

  /* Make the facilities bar look like a clean list */
  .popular-facilities-bar {
    justify-content: flex-start;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns on mobile */
    gap: 10px;
  }

  .popular-facilities-bar span {
    font-size: 0.75rem;
  }

  .ledger-panel {
    padding: 30px 20px;
  }

  .panel-head h3 {
    font-size: 1.2rem;
  }

  .ledger-subgroup h4 {
    font-size: 0.8rem;
  }

  .ledger-footer {
    margin-top: 30px;
    font-size: 0.75rem;
  }
}

/* 3. VERY SMALL PHONES (Under 480px) */
@media (max-width: 480px) {
  .popular-facilities-bar {
    grid-template-columns: 1fr; /* Single column for narrow phones */
  }
  
  .ledger-container {
    padding: 15px;
  }

  .inner-title {
    font-size: 2.2rem;
  }
}

/* ============================================================
   THINGS TO DO - COMFORT INN GLENMONT - ALBANY SOUTH
   Navy: #001a3a | Comfort Orange: #F7941D 
   ============================================================ */

/* 1. SECTION CONTAINER */
.spotlight-section {
    background-color: #001a3a; 
    /* Gradient transition from deep navy to a warmer tone */
    background-image: linear-gradient(180deg, rgba(247, 148, 29, 0.05) 0%, rgba(0, 26, 58, 0.98) 100%);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    padding: 80px 0;
    overflow: clip;
    font-family: 'Outfit', sans-serif;
}

/* 2. SECTION HEADER (Title & Intro) */
.ttd-section-header {
    width: 100%;
    text-align: center;
    max-width: 1300px;
    margin: 0 auto 40px auto;
    /* Brand Navy Double Border matches your ledger section */
    border: 6px double #001a3a; 
    background: #ffffff;
    padding: 70px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-radius: 4px;
}

.ttd-main-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    color: #001a3a;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 1px;
    line-height: 1.1; 
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 900;
}

.ttd-main-title span {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 5px;
    /* Comfort Orange Accent */
    color: #F7941D; 
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 15px; 
}

.ttd-main-intro {
    max-width: 1000px;
    margin: 25px auto;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
}

.header-divider {
    width: 80px;
    height: 4px;
    background: #F7941D; /* Brand Orange */
    margin: 25px auto;
}

/* 3. MAIN SCROLLING WRAPPER */
.spotlight-wrapper {
    display: flex;
    position: relative;
    align-items: flex-start;
    max-width: 1300px;
    margin: 0 auto;
    border: 6px double #001a3a; 
    background: #ffffff; 
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
    border-radius: 4px;
}

/* 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.15;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.narrative-block.active {
    opacity: 1;
    transform: translateX(10px);
}

.narrative-number {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: #F7941D; /* Brand Orange */
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.narrative-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #001a3a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 800;
    margin: 0;
}

.narrative-divider {
    width: 50px;
    height: 4px;
    background: #F7941D; /* High-Visibility Orange */
    margin: 20px 0;
}

.narrative-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555555;
    max-width: 480px;
}

/* 5. STICKY VISUAL COLUMN (RIGHT) */
.spotlight-visuals {
    flex: 1.2;
    height: 100vh;
    position: sticky;
    top: 0;
    z-index: 1;
    border-left: 1px solid #eef2f6;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.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.15);
    filter: brightness(0.85); /* Slightly darker for contrast */
}

.spotlight-img.active {
    opacity: 1;
    transform: scale(1);
    filter: brightness(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: #F7941D; /* Orange Progress Fill */
    transition: height 0.5s ease;
    box-shadow: 0 0 15px rgba(247, 148, 29, 0.6);
}

.progress-total {
    position: absolute;
    bottom: -40px;
    left: -8px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

/* 7. VIEW DETAILS BUTTON */
.ttd-btn {
    display: inline-flex;
    align-items: center;
    margin-top: 25px;
    padding: 15px 35px;
    background-color: #001a3a; /* Navy Button */
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.4s ease;
    border-radius: 50px; /* Modern Rounded Style */
    border: 2px solid #F7941D;
}

.ttd-btn i {
    margin-left: 10px;
    font-size: 0.8rem;
    color: #F7941D;
    transition: transform 0.3s ease;
}

.ttd-btn:hover {
    background-color: #F7941D; /* Flips to Orange on Hover */
    color: #001a3a;
    box-shadow: 0 10px 20px rgba(247, 148, 29, 0.3);
}

.ttd-btn:hover i {
    transform: translateX(5px);
    color: #001a3a;
}

/* 8. RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .spotlight-wrapper { 
        flex-direction: column-reverse; /* Images stay on top in mobile */
        border-width: 4px;
    }
    
    .ttd-section-header { 
        border-width: 4px; 
        padding: 40px 20px;
    }

    .spotlight-visuals { 
        height: 50vh; 
        width: 100%;
        position: relative; 
        border-left: none;
        border-bottom: 2px solid #eef2f6;
    }

    .spotlight-narrative { 
        width: 100%; 
        padding: 40px 25px; 
    }

    .narrative-block { 
        min-height: auto; 
        padding: 50px 0; 
        opacity: 1; 
    }

    .spotlight-progress { display: none; }
}

@media (max-width: 768px) {
    .ttd-main-title { font-size: 2.2rem; }
    .narrative-title { font-size: 1.8rem; }
}

/* ============================================================
   NEARBY LEDGER - COMFORT INN GLENMONT - ALBANY SOUTH
   Navy: #001a3a | Comfort Orange: #F7941D | Off-White: #f4f7f9
   ============================================================ */

.nearby-ledger-section {
  background-color: #001a3a; 
  /* Subtle Orange/Navy gradient matching the rest of the site */
  background-image: linear-gradient(180deg, rgba(247, 148, 29, 0.05), rgba(0, 26, 58, 0.98));
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  padding: 80px 5%;
  overflow: clip;
}

.ledger-container {
  max-width: 1300px;
  margin: 0 auto;
  /* Brand Navy Double Frame */
  border: 6px double #001a3a; 
  padding: 50px 40px;
  background: #ffffff;
  box-shadow: 0 30px 70px rgba(0,0,0,0.3);
  border-radius: 4px;
}

.nearby-grid {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.nearby-panel {
  flex: 1;
  min-width: 320px;
  border: 1px solid #eef2f6; 
  padding: 40px;
  background: #fff;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-radius: 8px;
}

/* --- THE HIGHLIGHT PANEL (BRAND NAVY) --- */
.nearby-panel.highlight {
  background: #001a3a; 
  color: #ffffff;
  border: 2px solid #F7941D; /* Orange Border */
  transform: scale(1.04);
  box-shadow: 0 20px 40px rgba(0, 26, 58, 0.4);
  z-index: 2;
}

/* High Contrast Orange on Dark Navy */
.nearby-panel.highlight .panel-heading {
  color: #F7941D; 
  border-bottom-color: rgba(247, 148, 29, 0.3);
}

.nearby-panel.highlight .nearby-list li {
  color: #ffffff;
  border-bottom-color: rgba(255,255,255,0.1);
}

.nearby-panel.highlight .panel-heading i {
  color: #F7941D;
}

/* --- PANEL HEADINGS --- */
.panel-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  color: #001a3a; 
  /* Bold Orange Underline */
  border-bottom: 4px solid #F7941D; 
  padding-bottom: 15px;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  font-weight: 800;
}

.panel-heading i {
  color: #001a3a; 
  margin-right: 15px;
  font-size: 1.2rem;
}

/* --- LIST ITEMS --- */
.nearby-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nearby-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #f0f4f7;
  font-family: 'Outfit', sans-serif;
  font-size:18px;
  color: #444;
  transition: all 0.3s ease;
}

.nearby-list li:hover {
  color: #F7941D;
  padding-left: 10px;
}

/* --- DISTANCE STYLING --- */
.distance {
  color: #001a3a; 
  background: #f4f7f9;
  padding: 6px 14px;
  border-radius: 50px; /* Modern Pill Shape */
  font-weight: 400;
  font-size:16px;
  margin-left: 15px;
  white-space: nowrap;
  border: 1px solid #eef2f6;
}

/* In Highlight panel, use the Orange against dark Navy */
.nearby-panel.highlight .distance {
  color: #001a3a;
  background: #F7941D; 
  border: none;
}



/* ============================================================
   NEARBY SECTION - MOBILE & IPAD RESPONSIVE ONLY
   ============================================================ */

@media (max-width: 1024px) {
  .nearby-ledger-section {
    /* Reduce large side padding from desktop to fit screens */
    padding: 40px 15px; 
    background-attachment: scroll; /* Better performance on mobile browsers */
  }

  .ledger-container {
    /* Double frame slightly thinner for smaller screens */
    border-width: 4px;
    padding: 30px 15px;
    margin: 0 auto;
  }

  .nearby-grid {
    display: grid;
    /* Forces 2-column layout for iPads/Tablets */
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px;
    margin-bottom: 15px;
  }

  .nearby-panel {
    min-width: 0; /* Allows grid to shrink panels properly */
    padding: 20px 15px;
    /* Remove scale effects to prevent edge-clipping */
    transform: none !important; 
    box-shadow: none !important;
  }

  .panel-heading {
    font-size: 1rem;
    padding-bottom: 8px;
    margin-bottom: 15px;
  }

  .nearby-list li {
    padding: 10px 0;
    font-size: 0.85rem;
    /* Aligns distance to the top if text wraps */
    align-items: flex-start; 
  }

  .distance {
    font-size: 0.75rem;
    margin-left: 8px;
  }
}

/* --- Mobile Specific (Phones) --- */
@media (max-width: 600px) {
  .nearby-grid {
    /* Forces 1-column layout for Phones */
    grid-template-columns: 1fr; 
    gap: 20px;
  }

  .nearby-ledger-section {
    padding: 30px 10px;
  }

  .ledger-container {
    padding: 25px 10px;
  }
  
  .nearby-panel {
    padding: 18px 12px;
  }
}


/* ============================================================
   CONTACT LEDGER - COMFORT INN GLENMONT - ALBANY SOUTH
   Navy: #001a3a | Comfort Orange: #F7941D 
   ============================================================ */

.contact-ledger-suite {
    padding: 80px 5%;
    /* Comfort Navy Brand Gradient with Map Overlay Hint */
    background: linear-gradient(rgba(0, 26, 58, 0.94), rgba(0, 26, 58, 0.90)), 
                url('../images/albany-area-map.jpg'); 
    background-size: cover;
    background-attachment: fixed;
}

.ledger-outer-frame {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    border: 1px solid #eef2f6;
    background: #ffffff;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    border-radius: 4px; /* Matches your ledger container style */
}

.ledger-accent-sidebar {
    width: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    /* Signature Comfort Navy Sidebar */
    background-color: #001a3a;
}

.ledger-main-content {
    flex: 1;
    padding: 60px;
}

.ledger-headline {
    font-family: 'Outfit', sans-serif;
    font-size: 2.6rem;
    color: #001a3a; 
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: 800;
}

.ledger-headline span {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-style: normal;
    /* High-contrast Comfort Orange */
    color: #F7941D; 
}

.ledger-subtext {
    font-family: 'Outfit', sans-serif;
    color: #555;
    max-width: 780px;
    line-height: 1.8;
    margin-bottom: 50px;
    font-size: 1.1rem;
    font-weight: 400;
}

.ledger-details-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.item-meta {
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 15px;
    color: #F7941D; /* Orange for labels */
}

.item-data p {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}

.estate-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #001a3a;
    font-weight: 900;
}

.ledger-link {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    text-decoration: none;
    color: #001a3a;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 5px;
}

.ledger-link:hover {
    color: #F7941D;
    transform: translateX(5px);
}


/* Responsive Adjustments */
@media (max-width: 1024px) {
  .ledger-outer-frame { flex-direction: column; }
  .ledger-accent-sidebar { 
    width: 100%; 
    height: 10px; 
    border-bottom: 2px solid #a1d7be; /* Mint accent line for mobile */
  }
  .ledger-details-row { grid-template-columns: 1fr; gap: 40px; }
  .ledger-main-content { padding: 40px 25px; }
  .ledger-headline { font-size: 2.1rem; }
  .ledger-subtext { margin-bottom: 35px; }
}

@media (max-width: 600px) {
  .ledger-headline { font-size: 1.8rem; }
  .ledger-link { font-size: 1.25rem; }
}


/* --- Comfort Inn Modern Location Styles --- */
.clarion-modern-location {
  position: relative;
  background: #001a3a; /* Brand Deep Navy */
  padding: 60px 5%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
}

.journal-wrapper {
  display: flex;
  width: 100%;
  max-width: 1200px;
  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%;
  /* Using Orange for the map border glow */
  border: 1px solid rgba(247, 148, 29, 0.3); 
  filter: contrast(1.05);
}

/* Floating Geo Tag */
.geo-tag {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: #001a3a; /* Navy */
  color: #fff;
  padding: 12px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  border: 1px solid #F7941D; /* Brand Orange Accent */
  box-shadow: 10px 10px 30px rgba(0,0,0,0.5);
}

.coord-divider {
  width: 30px;
  height: 1px;
  background: #F7941D;
}

/* Floating Glass Panel */
.info-glass-panel {
  flex: 0 0 650px;
  /* Deep Navy Transparency */
  background: rgba(0, 26, 58, 0.96); 
  backdrop-filter: blur(12px);
  margin-left: -80px; 
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 50px;
  z-index: 2;
  /* Orange Accent Bar */
  border-left: 5px solid #F7941D; 
  box-shadow: 25px 25px 50px rgba(0,0,0,0.6);
  border-radius: 2px;
}

.brand-accent-line {
  width: 40px;
  height: 3px;
  background: #F7941D; 
  margin-bottom: 20px;
}

.location-subtitle {
  color: #F7941D; /* Brand Orange */
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 3px;
  font-size: 0.8rem;
  margin-bottom: 10px;
  font-weight: 800;
}

.location-main-title {
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  margin: 0 0 20px 0;
  font-weight: 900;
  line-height: 1.2;
}

.location-description {
  color: #d1d9e0;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 35px;
  font-weight: 300;
  font-family: 'Outfit', sans-serif;
}

.address-block {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 35px;
}

.address-block address {
  font-style: normal;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 500;
}

/* Route Form Styling */
.route-form {
  border-top: 1px solid rgba(247, 148, 29, 0.2);
  padding-top: 25px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.input-group input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(247, 148, 29, 0.3);
  padding: 14px 18px;
  color: white;
  font-family: 'Outfit', sans-serif;
  outline: none;
  border-radius: 4px;
  transition: border 0.3s ease;
}

.input-group input:focus {
  border-color: #F7941D;
}

.input-group input::placeholder {
  color: rgba(255,255,255,0.4);
}

.route-submit-btn {
  background: #F7941D; /* Brand Orange */
  color: #001a3a; /* Dark Navy text for high contrast on Orange button */
  border: none;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  border-radius: 4px;
}

.route-submit-btn:hover {
  background: #ffffff;
  color: #001a3a;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(247, 148, 29, 0.2);
}


/* --- Enhanced Responsive Adjustments - COMFORT INN GLENMONT --- */

@media (max-width: 1024px) {
  .clarion-modern-location {
    padding: 40px 20px;
    height: auto;
    background: #ffffff; /* Clean white background for the section wrapper */
  }

  .journal-wrapper {
    flex-direction: column;
    gap: 0;
  }

  /* 1. Map Adjustments */
  .map-window-wrapper {
    flex: none;
    width: 100%;
    height: 400px; /* Balanced height for iPad/Tablets */
    z-index: 1;
    /* Added orange border glow to map edge */
    border-bottom: 3px solid #F7941D;
  }

  .map-window {
    border-radius: 20px 20px 0 0; /* Matches your property's rounded suit */
  }

  /* 2. Geo Tag - Updated to Comfort Orange */
  .geo-tag {
    left: 15px;
    bottom: 15px;
    padding: 8px 15px;
    font-size: 10px;
    background: #F7941D; /* Brand Orange */
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border-radius: 4px;
  }

  /* 3. Info Panel - Switched to Comfort Navy */
  .info-glass-panel {
    flex: none;
    width: 100%;
    margin-left: 0; 
    margin-top: 0;   
    margin-bottom: 0;
    padding: 40px 30px;
    border-left: none;
    /* Brand Accent Bar */
    border-top: 6px solid #F7941D; 
    background: #001a3a; /* Solid Comfort Navy for mobile readability */
    border-radius: 0 0 20px 20px; /* Rounds bottom corners to match suit */
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  }

  .location-main-title {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
  }

  .location-description {
    font-family: 'Outfit', sans-serif;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
  }

  .address-block address {
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
    font-size: 1.1rem;
    font-style: normal;
  }
}

/* --- Small Mobile Phones --- */
@media (max-width: 600px) {
  .clarion-modern-location {
    padding: 20px 10px;
  }

  .map-window-wrapper {
    height: 320px; /* Optimized height for mobile portrait */
  }

  .info-glass-panel {
    padding: 30px 20px;
    border-top-width: 4px;
  }

  .geo-tag {
    display: none; /* Keep hidden on mobile to prevent clutter */
  }

  .route-submit-btn {
    background: #F7941D;
    color: #ffffff;
    padding: 18px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    border-radius: 30px; /* Matches the rounded button suit from previous step */
  }

  .input-group input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(247, 148, 29, 0.3);
    color: #ffffff;
    font-size: 16px; /* Essential: Prevents iOS auto-zoom on click */
    border-radius: 8px;
  }
  
  .input-group label {
      color: #F7941D;
      font-size: 11px;
  }
}

/* ============================================================
   SITEMAP INDEX - COMFORT INN GLENMONT - ALBANY SOUTH
   Navy: #001a3a | Comfort Orange: #F7941D 
   ============================================================ */

.sitemap-index-suite {
    padding: 80px 20px;
    /* Brand Navy Gradient with Albany Skyline/Area Backdrop */
    background: linear-gradient(rgba(0, 26, 58, 0.92), rgba(0, 26, 58, 0.88)), 
                url('../images/albany-skyline-bg.jpg'); 
    background-size: cover;
    background-attachment: fixed;
}

.index-parchment {
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px;
    /* Architectural Double Border in Comfort Navy */
    border: 6px double #001a3a;
    box-shadow: 0 30px 70px rgba(0,0,0,0.3);
    position: relative;
    border-radius: 4px;
}

.index-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    /* High-contrast Comfort Orange for labels */
    color: #F7941D; 
    font-weight: 800;
    display: block;
    margin-bottom: 5px;
}

.index-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: #001a3a; /* Deep Navy */
    margin: 0 0 20px;
    font-weight: 900;
    line-height: 1.1;
}

.index-description {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    max-width: 1050px;
    font-weight: 400;
}

.index-ornament {
    width: 80px;
    height: 4px;
    /* Brand Orange Accent Bar */
    background: #F7941D; 
    margin: 30px 0 50px;
}

.index-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    border-top: 1px solid #eef2f6;
    padding-top: 40px;
}

.col-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #001a3a; /* Navy */
    /* Orange accent indicator */
    border-left: 4px solid #F7941D; 
    padding-left: 15px;
    font-weight: 800;
}

.index-list {
    list-style: none;
    padding: 0;
}

.index-list li {
    margin-bottom: 18px;
}

.index-list a {
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-block;
}

.index-list a:hover {
    /* Smooth hover effect to brand Orange */
    color: #F7941D; 
    transform: translateX(10px);
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 992px) {
    .index-columns { 
        grid-template-columns: 1fr; 
        gap: 30px; 
        padding-top: 30px;
    }
    
    .index-parchment { 
        padding: 40px 25px; 
        border-width: 4px; 
    }
    
    .index-title { 
        font-size: 2.2rem; 
    }
    
    .index-ornament {
        margin: 20px 0 35px;
    }
}

@media (max-width: 600px) {
    .sitemap-index-suite {
        padding: 40px 15px;
    }
    
    .index-title {
        font-size: 1.8rem;
    }
}

/* ============================================================
   FAQ LEDGER - COMFORT INN GLENMONT - ALBANY SOUTH
   Navy: #001a3a | Comfort Orange: #F7941D | Neutral: #f0f4f7
   ============================================================ */

.faq-ledger-suite {
  background: #ffffff; /* Clean white for high legibility */
  padding: 100px 5%;
  border-top: 1px solid #eef2f6; 
}

.faq-ledger-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
}

/* Sidebar Styling */
.faq-sidebar {
  flex: 0 0 350px;
}

.sidebar-sticky {
  position: sticky;
  top: 120px;
}

.faq-label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: #F7941D; /* Comfort Orange Accent */
  display: block;
  margin-bottom: 15px;
  font-weight: 800;
}

.faq-headline {
  font-family: 'Outfit', sans-serif;
  font-size: 3.8rem;
  color: #001a3a; /* Comfort Navy */
  line-height: 1.1;
  margin-bottom: 25px;
  text-transform: uppercase;
  font-weight: 900;
}

.faq-headline span {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 300; /* Light contrast for "Inn" */
  color: #001a3a;
  text-transform: none; 
  letter-spacing: -1px;
}

.faq-context {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
  font-weight: 400;
}

/* Entry Styling (The List) */
.faq-entries {
  flex: 1;
}

.faq-entry {
  display: flex;
  gap: 30px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #f0f4f7;
  transition: all 0.4s ease;
}

.entry-no {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  color: #F7941D; /* Orange Numbering */
  font-weight: 800;
  padding-top: 5px;
  opacity: 0.8;
}

.faq-entry h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.45rem;
  color: #001a3a; /* Brand Navy */
  margin-bottom: 15px;
  font-weight: 800;
  line-height: 1.4;
}

.faq-entry p {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
}

.antique-link {
  color: #F7941D; /* Interactive Orange */
  text-decoration: none;
  font-weight: 800;
  margin-top: 12px;
  display: inline-block;
  border-bottom: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.antique-link:hover {
  color: #001a3a; /* Transitions to Navy on hover */
  border-bottom: 2px solid #F7941D; /* Orange underline on hover */
  transform: translateX(8px);
}

/* --- Responsive Adjustments --- */
@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: 3rem; }
}

@media (max-width: 768px) {
  .faq-entry { flex-direction: column; gap: 15px; }
  .entry-no { font-size: 1.4rem; }
  .faq-headline { font-size: 2.6rem; }
  .faq-ledger-suite { padding: 60px 5%; }
}
/* ============================================================
   🎯 MODULAR BOOKING ENGINE - COMFORT INN GLENMONT
   Updated: Rounded UI to match Site Layout
   ============================================================ */

.booking-modular-wrap {
    width: 100%;
    max-width: 1300px;
    margin: -80px auto 80px; 
    position: relative;
    z-index: 99;
    padding: 0 20px;
}

.booking-module {
     background: linear-gradient(135deg, rgba(0, 38, 84, 0.96) 0%, rgba(0, 50, 100, 0.96) 100%);
    padding: 25px 40px;
    /* Changed from clip-path to matches your site's rounded cards */
    border-radius: 50px; 
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(247, 148, 29, 0.3); 
    position: relative;
}

.booking-form-grid {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Grouped Sections (Dates & People) */
.booking-group-pill {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    /* Circular pill shape matching your "Stay Connected" icons */
    border-radius: 40px; 
    padding: 12px 30px;
    flex: 2;
    transition: all 0.3s ease;
    border: 1px solid rgba(247, 148, 29, 0.15);
}

.booking-group-pill.occupancy {
    flex: 1.5;
}

.booking-group-pill:focus-within {
    background: rgba(247, 148, 29, 0.1);
    border-color: #F7941D;
    box-shadow: 0 0 15px rgba(247, 148, 29, 0.2);
}

/* Individual Fields */
.booking-field {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.booking-field label {
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #F7941D;
    margin-bottom: 2px;
    font-weight: 700;
}

.booking-field input, 
.booking-field select {
    background-color: transparent; /* Keep the pill background visible */
    border: none;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    width: 100%;
    /* Standardizes look across browsers */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
/* 🔵 Targeting the dropdown list (Options) */
.booking-field select option {
    background-color: #001a3a !important; /* Forces Navy background */
    color: #ffffff !important;           /* White text for readability */
    padding: 10px;
    font-family: 'Outfit', sans-serif;
}
/* Adding a custom Orange arrow since we hid the default one */
.booking-field {
    position: relative;
}

.booking-field::after {
    content: '▾';
    font-size: 14px;
    color: #F7941D;
    position: absolute;
    right: 10px;
    bottom: 5px;
    pointer-events: none; /* Allows click to pass through to the select */
}

/* Ensure the pill container looks cohesive */
.booking-group-pill {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 40px; 
    padding: 12px 30px;
    flex: 2;
    transition: all 0.3s ease;
    border: 1px solid rgba(247, 148, 29, 0.15);
}

/* Active focus state */
.booking-group-pill:focus-within {
    background: #001a3a; /* Deep navy on focus */
    border-color: #F7941D;
    box-shadow: 0 0 15px rgba(247, 148, 29, 0.2);
}

/* Specifically for mobile or systems where the native menu pops up */
select:focus > option {
    background: #001a3a !important;
}

.booking-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 15px;
}

/* The CTA Button */
.booking-action button {
    background: #F7941D; /* Comfort Orange */
    color: #ffffff;
    border: none;
    height: 65px;
    width: 190px;
    /* Matches the circular "Find Out More" buttons in your screenshot */
    border-radius: 40px; 
    
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.booking-action button:hover {
    background: #ffffff; 
    color: #001a3a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}



/* --- Expert Responsive Overhaul --- */
@media (max-width: 1100px) {
    .booking-modular-wrap {
        margin: -30px auto 40px; /* Smaller overlap on mobile */
        padding: 0 15px;
    }

    .booking-module {
        /* Remove slant for mobile - sharp boxes look better when stacked */
        clip-path: none !important; 
        border-radius: 20px;
        padding: 20px;
    }

    .booking-form-grid {
        flex-direction: column;
        gap: 12px; /* Consistent spacing between blocks */
    }

    .booking-group-pill {
        width: 100%;
        flex-direction: row; /* Keep check-in/out side by side */
        clip-path: none !important;
        border-radius: 12px !important;
        padding: 15px 20px;
        flex: none; /* Reset flex-grow */
        background: rgba(255, 255, 255, 0.08);
    }

    .booking-group-pill.occupancy {
        /* On small screens, let items wrap if needed or stay tight */
        display: flex;
        justify-content: space-between;
    }

    .booking-divider {
        margin: 0 10px;
        height: 20px;
        opacity: 0.5;
    }

    .booking-field label {
        font-size: 9px; /* Slightly smaller labels for mobile */
    }

    .booking-field input, 
    .booking-field select {
        font-size: 14px;
        padding: 5px 0;
    }

    .booking-action {
        width: 100%;
        margin-top: 5px;
    }

    .booking-action button {
        width: 100%;
        height: 60px; /* Slightly shorter for mobile */
        clip-path: none !important; /* Square/Subtle rounded looks better on mobile */
        border-radius: 12px !important;
        font-size: 14px;
    }
    
    /* Remove hover transformations on mobile to prevent "sticky" hover states */
    .booking-action button:hover {
        transform: none;
        padding-left: 0;
    }
}

/* Tablet Specific Adjustment (iPad) */
@media (min-width: 768px) and (max-width: 1100px) {
    .booking-form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr; /* Side-by-side on iPad */
        gap: 20px;
    }
    
    .booking-action {
        grid-column: span 2; /* Full width button on iPad */
    }
}
/* ============================================================
   FLATPICKR CALENDAR - COMFORT INN GLENMONT
   Navy: #001a3a | Comfort Orange: #F7941D 
   ============================================================ */

.flatpickr-calendar {
    background: #001a3a !important; /* Comfort Navy */
    border: 1px solid rgba(247, 148, 29, 0.3) !important; /* Subtle Orange Border */
    box-shadow: 0 20px 40px rgba(0,0,0,0.6) !important;
    border-radius: 8px !important; /* Slightly sharper corners to match the booking module */
    font-family: 'Outfit', sans-serif !important;
}

/* Selected Dates and Range Background */
.flatpickr-day.selected, 
.flatpickr-day.startRange, 
.flatpickr-day.endRange {
    background: #F7941D !important; /* Comfort Orange */
    border-color: #F7941D !important;
    color: #ffffff !important;
    font-weight: 700;
}

/* Hover State for Days */
.flatpickr-day:hover {
    background: rgba(247, 148, 29, 0.2) !important;
    border-color: transparent !important;
    color: #ffffff !important;
}

/* Month and Weekday Labels */
.flatpickr-months .flatpickr-month,
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year,
span.flatpickr-weekday {
    color: #ffffff !important;
    fill: #ffffff !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600;
}

/* Standard Day Color */
.flatpickr-day {
    color: rgba(255,255,255,0.9) !important;
}

/* Disabled/Past Date Styling */
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
    color: rgba(255,255,255,0.15) !important;
    background: transparent !important;
}

/* Navigation Arrow Styling (Prev/Next) */
.flatpickr-prev-month svg, 
.flatpickr-next-month svg {
    fill: #F7941D !important; /* Orange Arrows */
    transition: transform 0.2s ease;
}

.flatpickr-prev-month:hover svg, 
.flatpickr-next-month:hover svg {
    transform: scale(1.2);
}

/* "Today" Marker */
.flatpickr-day.today {
    border-color: #F7941D !important;
}

.flatpickr-day.today:hover {
    background: #F7941D !important;
    color: #ffffff !important;
}


/* ============================================================
   🏆 ACCESSIBILITY INFO - "CERTIFICATION" STYLE
   Background: White | Borders & Text: Comfort Navy (#001a3a)
   ============================================================ */

.accessibility-info {
    background-color: #ffffff; /* Clean white background */
    /* Outer Navy Border */
    border-top: 4px solid #001a3a; 
    border-bottom: 4px solid #001a3a; 
    color: #001a3a; /* Brand Navy */
    text-align: center;
    font-family: 'Outfit', sans-serif; /* Professional, clean font */
    padding: 25px 20px;
    font-size: 18px;
    letter-spacing: 0.5px;
    line-height: 1.6;
    position: relative;
}

/* Inner Border Effect (Old School Plaque Look) */
.accessibility-info::before {
    content: "";
    position: absolute;
    top: 6px;
    bottom: 6px;
    left: 10px;
    right: 10px;
    border-top: 1px solid rgba(0, 26, 58, 0.3);
    border-bottom: 1px solid rgba(0, 26, 58, 0.3);
    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;
}

.acc-container i {
    color: #001a3a; /* Navy icon for a unified formal look */
    font-size: 22px;
}

.accessibility-info a {
    color: #001a3a;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 1px;
    /* Formal underline */
    border-bottom: 2px solid #F7941D; /* Keeping the orange as a "seal" accent */
    transition: all 0.3s ease;
    margin-left: 5px;
}

.accessibility-info a:hover {
    color: #F7941D;
    border-bottom-color: #001a3a;
}

/* --- 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;
    }

    /* Adjust inner border for mobile */
    .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;
    }

    .acc-container i {
        font-size: 24px;
    }
}
