:root {
    --primary-color: #00205B;
    --primary-light: #e5ebf4;
    --secondary-color: #0a0a0a;
    --text-color: #1a1a1a;
    --text-light: #555555;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --border-color: #e8e8e8;
    --font-main: 'Inter', sans-serif;
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius-lg: 20px;
    --border-radius-md: 14px;
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 24px 48px rgba(0, 0, 0, 0.08);
}

/* ==========================================
   INTRO OVERLAY ANIMATION
   ========================================== */

@keyframes intro-fade-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes intro-rule-expand {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

@keyframes intro-line-rise {
    0% {
        transform: scaleY(0);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(1);
        transform-origin: bottom;
    }
}

@keyframes intro-corner-in {
    from {
        opacity: 0;
        transform: scale(0.6);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes intro-overlay-exit {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    70% {
        opacity: 1;
        transform: scale(1.03);
    }

    100% {
        opacity: 0;
        transform: scale(1.06);
        pointer-events: none;
    }
}

#intro-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #00153D;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#intro-overlay.exit {
    animation: intro-overlay-exit 0.65s cubic-bezier(0.7, 0, 1, 1) forwards;
    pointer-events: none;
}

/* Vertical ambient lines */
.intro-bg-lines {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 8%;
    pointer-events: none;
}

.intro-bg-lines span {
    display: block;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.06);
    transform: scaleY(0);
    transform-origin: bottom;
    animation: intro-line-rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.intro-bg-lines span:nth-child(1) {
    animation-delay: 0.05s;
}

.intro-bg-lines span:nth-child(2) {
    animation-delay: 0.12s;
}

.intro-bg-lines span:nth-child(3) {
    animation-delay: 0.19s;
}

.intro-bg-lines span:nth-child(4) {
    animation-delay: 0.26s;
}

.intro-bg-lines span:nth-child(5) {
    animation-delay: 0.33s;
}

/* Corner bracket marks */
.intro-corner {
    position: absolute;
    width: 28px;
    height: 28px;
    border-color: rgba(255, 255, 255, 0.25);
    border-style: solid;
    border-width: 0;
    opacity: 0;
    animation: intro-corner-in 0.4s ease forwards;
    animation-delay: 0.3s;
}

.intro-corner--tl {
    top: 32px;
    left: 32px;
    border-top-width: 2px;
    border-left-width: 2px;
}

.intro-corner--tr {
    top: 32px;
    right: 32px;
    border-top-width: 2px;
    border-right-width: 2px;
}

.intro-corner--bl {
    bottom: 32px;
    left: 32px;
    border-bottom-width: 2px;
    border-left-width: 2px;
}

.intro-corner--br {
    bottom: 32px;
    right: 32px;
    border-bottom-width: 2px;
    border-right-width: 2px;
}

/* Central content */
.intro-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.intro-eyebrow {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    opacity: 0;
    animation: intro-fade-up 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
    margin-bottom: 1rem;
}

.intro-address {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
}

.intro-num {
    font-size: clamp(4rem, 12vw, 8.5rem);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 0.9;
    color: #ffffff;
    opacity: 0;
    animation: intro-fade-up 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
}

.intro-street {
    font-size: clamp(1rem, 3.5vw, 2rem);
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    opacity: 0;
    animation: intro-fade-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.78s forwards;
}

.intro-rule {
    width: 80px;
    height: 2px;
    background: rgba(255, 255, 255, 0.35);
    margin: 1.4rem auto;
    transform: scaleX(0);
    transform-origin: left;
    animation: intro-rule-expand 0.6s cubic-bezier(0.16, 1, 0.3, 1) 1.05s forwards;
}

.intro-tagline {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    opacity: 0;
    animation: intro-fade-up 0.55s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
}

/* Body locked during intro */
body.intro-active {
    overflow: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.55;
    background-color: #ffffff;
    background-image: linear-gradient(110deg, #ffffff 0%, #ffffff 50%, rgba(0, 32, 91, 0.04) 50%, rgba(0, 32, 91, 0.04) 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

/* Scroll Reveal Base */
.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.99);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.delay-1 {
    transition-delay: 0.15s !important;
}

.delay-2 {
    transition-delay: 0.3s !important;
}

.delay-3 {
    transition-delay: 0.45s !important;
}

.delay-4 {
    transition-delay: 0.6s !important;
}

/* ==========================================
   TYPOGRAPHY — Bold, tight, editorial
   ========================================== */
h1,
h2,
h3,
h4 {
    color: var(--secondary-color);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.section-title {
    font-size: 3.25rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    margin-bottom: 1.25rem;
    position: relative;
    display: inline-block;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--primary-color) 0%, #4D6FA8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

.section-eyebrow {
    display: none !important;
}

/* On dark navy sections, eyebrow text is light */
.glow-section .section-eyebrow {
    color: rgba(160, 200, 255, 0.85);
    opacity: 1;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 50px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #00153d;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 32, 91, 0.25);
}

.btn-primary::after {
    content: ' →';
    margin-left: 4px;
    transition: var(--transition);
}

.btn-primary:hover::after {
    transform: translateX(3px);
}

/* ==========================================
   HEADER — Floating glass nav
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 0.8rem 0;
    background-color: #ffffff;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.04);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-brand {
    display: flex;
    flex-direction: column;
    color: var(--primary-color);
    line-height: 1;
}

.logo-brand span:first-child {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.logo-brand span:last-child {
    font-size: 0.73rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.60em;
    margin-right: -0.60em;
    width: 100%;
    margin-top: 2px;
}

.logo-wordmark {
    font-size: 1rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: -0.04em;
    line-height: 1;
    text-transform: uppercase;
    border-left: 3px solid var(--primary-color);
    padding-left: 0.75rem;
    transition: var(--transition);
}

.logo-street {
    font-weight: 400;
    font-size: 0.72rem;
    color: var(--text-light);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: block;
    margin-top: 2px;
}

.logo:hover .logo-wordmark {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.7rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* ==========================================
   HERO — Full-bleed B&W with centered text
   ========================================== */
.hero {
    position: relative;
    padding: 0;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
    text-align: center;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 3;
    padding: 0 2rem;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f4f4f4 50%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

.hero-image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    transition: transform 8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero:hover .hero-image-wrap img {
    transform: scale(1.05);
}

.hero-image-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 2;
}

/* ==========================================
   LIGHT SECTIONS — Scroll-Linked Light Parallax (without glow)
   ========================================== */
.light-section {
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* 2 Large Tilted Gray Lines moving on scroll */
.light-section::before {
    content: '';
    position: absolute;
    top: -60%;
    left: -30%;
    width: 160%;
    height: 250%;
    background: linear-gradient(120deg,
            transparent 0%,
            transparent 38%,
            rgba(0, 0, 0, 0.05) 38%,
            rgba(0, 0, 0, 0.05) 39.5%,
            transparent 39.5%,
            transparent 62%,
            rgba(0, 32, 91, 0.06) 62%,
            rgba(0, 32, 91, 0.06) 64.5%,
            transparent 64.5%);
    transform: translateY(calc(var(--scroll-y, 0px) * -0.3));
    pointer-events: none;
    z-index: 1;
}

.light-section>* {
    position: relative;
    z-index: 2;
}

/* ==========================================
   WHY HERE — Feature cards on white
   ========================================== */
.why-section {
    padding: 7rem 0;
}

.why-section .section-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.why-section .section-title {
    max-width: 100%;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.why-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 1.75rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #4D6FA8);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    background: #ffffff;
    border-color: transparent;
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card b {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.65rem;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
}

/* Why Section — Glow Navy Blue Version */
.why-section.glow-section {
    background: linear-gradient(135deg, #00153D 0%, #00205B 30%, #406BB8 50%, #00205B 70%, #00153D 100%);
    background-size: 300% 300%;
    background-position: center calc(var(--scroll-y, 0px) * -0.4);
}

.why-section.glow-section .section-title {
    background: linear-gradient(135deg, #ffffff 0%, #a6c4f4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: white;
}

.why-section.glow-section .why-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.why-section.glow-section .why-card::before {
    background: linear-gradient(90deg, #ffffff, #a0c8ff);
}

.why-section.glow-section .why-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.why-section.glow-section .why-card b {
    color: #ffffff;
}

.why-section.glow-section .why-card p {
    color: rgba(255, 255, 255, 0.75);
}

/* ==========================================
   OVERVIEW — Light White Version Override
   ========================================== */
.overview-section.light-section {
    color: var(--text-color);
}

.overview-section.light-section .section-title {
    background: linear-gradient(135deg, var(--primary-color) 0%, #4D6FA8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.overview-section.light-section .overview-text p {
    color: var(--text-color);
}

.overview-section.light-section .heritage-timeline {
    border-left-color: var(--primary-color);
}

.overview-section.light-section .timeline-entry {
    border-bottom-color: var(--border-color);
}

.overview-section.light-section .timeline-entry:hover {
    background: rgba(0, 32, 91, 0.03);
}

.overview-section.light-section .timeline-year {
    color: var(--primary-color);
}

.overview-section.light-section .timeline-text {
    color: var(--text-light);
}

.overview-section.light-section .overview-stats {
    border-top-color: var(--primary-color);
}

.overview-section.light-section .stat-value {
    color: var(--primary-color);
}

.overview-section.light-section .stat-label {
    color: var(--text-light);
}

/* ==========================================
   OVERVIEW — About section
   ========================================== */
.overview-section {
    padding: 8rem 0;
}

.overview-section.glow-section {
    background: linear-gradient(135deg, #00153D 0%, #00205B 30%, #406BB8 50%, #00205B 70%, #00153D 100%);
    background-size: 300% 300%;
    background-position: center calc(var(--scroll-y, 0px) * -0.4);
    color: #ffffff;
}

.overview-section.glow-section .section-title {
    background: linear-gradient(135deg, #ffffff 0%, #a6c4f4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.overview-section.glow-section .overview-text p {
    color: rgba(255, 255, 255, 0.85);
}

.overview-section.glow-section .heritage-timeline {
    border-left-color: #a0c8ff;
}

.overview-section.glow-section .timeline-entry {
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.overview-section.glow-section .timeline-entry:hover {
    background: rgba(255, 255, 255, 0.08);
}

.overview-section.glow-section .timeline-year {
    color: #a0c8ff;
}

.overview-section.glow-section .timeline-text {
    color: rgba(255, 255, 255, 0.8);
}

.overview-section.glow-section .overview-stats {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.overview-section.glow-section .stat-value {
    color: #ffffff;
}

.overview-section.glow-section .stat-label {
    color: rgba(255, 255, 255, 0.65);
}

.overview-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 5rem;
    align-items: start;
}

/* The left text card wraps all the heritage copy */
.overview-card {
    display: flex;
    flex-direction: column;
}

.overview-text {
    margin-bottom: 0;
}

.overview-text p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    color: var(--text-color);
    letter-spacing: -0.01em;
    line-height: 1.7;
}

/* Heritage Timeline */
.heritage-timeline {
    margin: 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-left: 2px solid var(--primary-color);
    padding-left: 0;
}

.timeline-entry {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.1rem 0 1.1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.timeline-entry:last-child {
    border-bottom: none;
}

.timeline-entry:hover {
    background: rgba(0, 32, 91, 0.03);
    padding-left: 1.75rem;
}

.timeline-year {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: -0.04em;
    line-height: 1.2;
    flex-shrink: 0;
}

.timeline-text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    padding-top: 1px;
}

.overview-stats {
    display: flex;
    gap: 3rem;
    margin-top: 1.5rem;
    padding-top: 2rem;
    border-top: 2px solid var(--primary-color);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.35rem;
    letter-spacing: -0.04em;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.overview-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 560px;
    position: sticky;
    top: 100px;
}

.overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.overview-image:hover img {
    transform: scale(1.03);
}

/* ==========================================
   AVAILABILITIES — Section Styles
   ========================================== */
.availabilities-section {
    padding: 7rem 0;
    background-color: #ffffff;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

/* Glow Navy Blue Version Override */
.availabilities-section.glow-section {
    background: linear-gradient(135deg, #00153D 0%, #00205B 30%, #406BB8 50%, #00205B 70%, #00153D 100%);
    background-size: 300% 300%;
    background-position: center calc(var(--scroll-y, 0px) * -0.4);
    border-top: none;
    border-bottom: none;
}

.availabilities-section.glow-section .section-title {
    background: linear-gradient(135deg, #ffffff 0%, #a6c4f4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: white;
}

.availabilities-section.glow-section .stack-wrap {
    background: rgba(0, 32, 91, 0.65);
    border: 1px solid rgba(160, 200, 255, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    backdrop-filter: blur(16px);
}

.availabilities-section.glow-section .stack-head h3 {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 800;
}

.availabilities-section.glow-section .stack-subtitle {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.availabilities-section.glow-section .st-col {
    color: #ffffff;
    font-weight: 800;
    border-bottom: 2px solid #a0c8ff;
}

.availabilities-section.glow-section .st-col small {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
}

.availabilities-section.glow-section .st-fl {
    color: #ffffff;
    font-weight: 800;
}

.availabilities-section.glow-section .stack-legend {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.availabilities-section.glow-section .stack-notes {
    border-top-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.availabilities-section.glow-section .stack-notes b {
    color: #a0c8ff;
}

.availabilities-section.glow-section .rent-details {
    background: rgba(0, 32, 91, 0.6);
    border-color: rgba(160, 200, 255, 0.25);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.availabilities-section.glow-section .buildings-cta {
    background: rgba(0, 32, 91, 0.6);
    border-color: rgba(160, 200, 255, 0.25);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.availabilities-section.glow-section .buildings-cta p {
    color: #ffffff;
}

/* Stacking Plan Table — Blue Glassmorphism Suite Cards */
.availabilities-section.glow-section .cell.avail {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 5px solid #a0c8ff;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.availabilities-section.glow-section .cell.avail:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(160, 200, 255, 0.35);
}

.availabilities-section.glow-section .cell.avail b {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 800;
}

.availabilities-section.glow-section .cell.avail span {
    color: #d0e4ff;
    font-weight: 600;
}

.availabilities-section.glow-section .cell.leased {
    background: rgba(255, 255, 255, 0.04);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.5);
}

.availabilities-section.glow-section .cell.leased b {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
}

.availabilities-section.glow-section .legend-badge.avail-badge {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-left: 3px solid #a0c8ff;
}

.availabilities-section.glow-section .legend-badge.leased-badge {
    background: rgba(255, 255, 255, 0.04);
    border: 1px dashed rgba(255, 255, 255, 0.2);
}

/* Buildings CTA strip */
.buildings-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2.5rem;
    padding: 1.75rem 2.5rem;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    flex-wrap: wrap;
}

.buildings-cta p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
    margin: 0;
}

/* ==========================================
   STACKING PLAN TABLE
   ========================================== */
.stack-wrap {
    margin: 3.5rem 0 3rem;
    overflow-x: auto;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
}

.stack-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.stack-head h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: -0.03em;
    margin: 0;
}

.stack-subtitle {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #a0c8ff;
    background: var(--primary-color);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
}

.stack-grid {
    display: grid;
    grid-template-columns: 100px repeat(4, minmax(170px, 1fr));
    gap: 10px;
    min-width: 800px;
}

.st-col {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-color);
    padding: 10px 6px;
    text-align: center;
    border-bottom: 2px solid var(--primary-color);
}

.st-col small {
    display: block;
    font-weight: 500;
    letter-spacing: 0;
    color: var(--text-light);
    text-transform: none;
    font-size: 0.72rem;
    margin-top: 3px;
}

.st-fl {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 14px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    text-align: right;
}

.cell {
    border-radius: 8px;
    padding: 14px 16px;
    min-height: 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    transition: var(--transition);
}

.cell b {
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.cell span {
    font-size: 0.75rem;
    opacity: 0.85;
    line-height: 1.35;
}

.cell.avail {
    background: #ffffff;
    border: 1px solid rgba(0, 32, 91, 0.2);
    border-left: 4px solid var(--primary-color);
    color: var(--text-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.cell.avail:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 32, 91, 0.15);
    border-color: var(--primary-color);
}

.cell.leased {
    background: #eef1f6;
    border: 1px dashed var(--border-color);
    color: #999999;
}

.cell.leased b {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.6;
}

.span2-col {
    grid-column: span 2;
}

.stack-legend {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 500;
    align-items: center;
}

.stack-legend span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-badge {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 3px;
}

.legend-badge.avail-badge {
    background: #ffffff;
    border: 1px solid var(--primary-color);
    border-left: 3px solid var(--primary-color);
}

.legend-badge.leased-badge {
    background: #eef1f6;
    border: 1px dashed #999999;
}

.stack-notes {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.88rem;
    color: var(--text-color);
    line-height: 1.7;
}

.stack-notes b {
    color: var(--primary-color);
    font-weight: 800;
}

/* ==========================================
   FEATURES — Navy Blue gradient section
   ========================================== */
.features-section {
    padding: 7rem 0;
    background: linear-gradient(135deg, #00153D 0%, #00205B 30%, #406BB8 50%, #00205B 70%, #00153D 100%);
    background-size: 300% 300%;
    background-position: center calc(var(--scroll-y, 0px) * -0.4);
}

/* Light (white) variant override */
.features-section.light-section {
    background-image: none !important;
    background-color: #ffffff !important;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.features-section.light-section .section-header {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 3rem;
}

.features-section.light-section .section-title {
    background: linear-gradient(135deg, var(--primary-color) 0%, #4D6FA8 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: var(--primary-color) !important;
}

.features-section.light-section .section-subtitle {
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
    background: none !important;
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    max-width: 780px;
}

.features-section.light-section .feature-content p {
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
    background: none !important;
    text-align: left;
    max-width: 720px;
}

.features-section.light-section .feature-content h3 {
    color: #00153D;
}

.glow-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #001233 0%, #00205B 30%, #3d6bc0 50%, #00205B 70%, #001233 100%);
    background-size: 300% 300%;
    background-position: center calc(var(--scroll-y, 0px) * -0.5);
    color: #ffffff;
}

.glow-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle 900px at center, rgba(160, 205, 255, 0.25), transparent 55%);
    opacity: 1;
    pointer-events: none;
    z-index: 1;
    animation: floatAmbientGlow 14s infinite ease-in-out alternate;
}

@keyframes floatAmbientGlow {
    0% {
        transform: translate(-20%, -20%) rotate(0deg);
    }

    50% {
        transform: translate(20%, 20%) rotate(180deg);
    }

    100% {
        transform: translate(-20%, 20%) rotate(360deg);
    }
}

.glow-section>* {
    position: relative;
    z-index: 2;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.availabilities-section .section-title,
.availabilities-section .section-header .section-title {
    color: #fff;
}

.availabilities-section .carousel-btn {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    color: white;
    backdrop-filter: blur(10px);
}

.availabilities-section .carousel-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.availabilities-section .rent-details {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.carousel-controls {
    display: flex;
    gap: 0.5rem;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    font-size: 0.9rem;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-weight: 700;
}

.carousel-btn:hover {
    background: var(--bg-light);
    border-color: #999;
}

.carousel-container {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding-left: calc(50vw - 570px + 2rem);
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

.carousel-track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 2rem;
    padding-right: calc(50vw - 570px + 2rem);
    -webkit-overflow-scrolling: touch;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-card {
    min-width: 300px;
    flex: 0 0 auto;
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: none;
    scroll-snap-align: start;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.carousel-card:hover {
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-card:hover .card-image img {
    transform: scale(1.06);
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.card-content .sqft {
    display: inline-block;
    padding: 5px 12px;
    background: var(--primary-light);
    color: var(--primary-color);
    font-weight: 800;
    border-radius: 8px;
    font-size: 0.7rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.card-desc {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.55;
    letter-spacing: -0.01em;
}

.rent-details {
    margin-top: 2.5rem;
    padding: 1.25rem 2rem;
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    display: inline-flex;
    gap: 3rem;
    font-size: 0.88rem;
    font-weight: 500;
}

/* ==========================================
   LOCATION / NEIGHBOURHOOD — Navy glow section
   ========================================== */
.process-section {
    padding: 8rem 0;
}

/* Location two-column grid */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 2.5rem;
    margin-bottom: 3rem;
}

.location-col {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.location-col:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
}

.location-heading {
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.85rem;
    letter-spacing: -0.03em;
}

.location-col>p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.65;
    margin-bottom: 0.75rem;
}

.location-col>p strong {
    color: rgba(255, 255, 255, 0.92);
}

.location-checklist {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.location-checklist li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 500;
}

.location-checklist li::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='2,5 4.5,7.5 8,3' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60%;
}

/* Walk-time stat pills */
.timeline {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-md);
    padding: 1.75rem 2.5rem;
    text-align: center;
    transition: var(--transition);
    flex: 1;
    min-width: 160px;
    max-width: 220px;
}

.timeline-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.3);
}

.timeline-icon span {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    display: block;
    margin-bottom: 0.35rem;
    letter-spacing: -0.04em;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff 0%, #a0c8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline-item h4 {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    line-height: 1.4;
}

/* Light (white) section override for process-section */
.process-section.light-section {}

.process-section.light-section .location-col {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    backdrop-filter: none;
}

.process-section.light-section .location-col:hover {
    background: #ffffff;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
}

.process-section.light-section .location-heading {
    color: var(--primary-color);
}

.process-section.light-section .location-col>p {
    color: var(--text-light);
}

.process-section.light-section .location-col>p strong {
    color: var(--text-color);
}

.process-section.light-section .location-checklist li {
    color: var(--text-color);
}

.process-section.light-section .location-checklist li::before {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.process-section.light-section .timeline-item {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
}

.process-section.light-section .timeline-item:hover {
    background: #ffffff;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
}

.process-section.light-section .timeline-icon span {
    background: linear-gradient(135deg, var(--primary-color) 0%, #4D6FA8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-section.light-section .timeline-item h4 {
    color: var(--text-light);
}

/* ==========================================
   DEMOGRAPHICS
   ========================================== */
.demo-header {
    margin-top: 4.5rem;
    margin-bottom: 1.75rem;
    text-align: center;
}

.demo-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-color);
    letter-spacing: -0.03em;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.demo-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    margin: 0.5rem auto 0;
}

.demo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    max-width: 1000px;
    margin: 0 auto;
}

.demo-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 2rem 1.75rem 1.75rem;
    text-align: center;
    width: 170px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.demo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.demo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.demo-card:hover::before {
    transform: scaleX(1);
}

.demo-icon {
    width: 44px;
    height: 44px;
    background: rgba(232, 73, 16, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.demo-card:hover .demo-icon {
    background: var(--primary-color);
    color: white;
}

.demo-icon svg {
    width: 20px;
    height: 20px;
}

.demo-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: -0.05em;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.demo-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.3;
}

/* ==========================================
   AMENITIES — Light white section layout
   ========================================== */
.amenities-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 3.5rem;
}

.amenities-map {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    height: 420px;
}

.amenities-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.amenities-lists {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* On white section, amenity categories get light card style */
.features-section.light-section .amenity-category,
.light-section .amenity-category {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    backdrop-filter: none;
}

.features-section.light-section .amenity-category:hover,
.light-section .amenity-category:hover {
    background: #ffffff;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
}

.features-section.light-section .amenity-cat-header h4,
.light-section .amenity-cat-header h4 {
    color: var(--text-color);
}

.features-section.light-section .amenity-list li,
.light-section .amenity-list li {
    color: var(--text-light);
}

.features-section.light-section .amenity-num,
.light-section .amenity-num {
    background: var(--primary-light);
    color: var(--primary-color);
}

.amenity-category {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--border-radius-md);
    padding: 1.25rem 1.5rem;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.amenity-category:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.22);
}

.amenity-cat-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.amenity-cat-icon {
    width: 34px;
    height: 34px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.amenity-cat-icon svg {
    width: 17px;
    height: 17px;
}

.amenity-cat-header h4 {
    font-size: 0.82rem;
    font-weight: 800;
    color: white;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0;
}

.amenity-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.amenity-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.amenity-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.68rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* ==========================================
   IDEAL FOR — Tenant Profile Chips
   ========================================== */
.ideal-for-box {
    padding: 3rem;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    border-top: 3px solid var(--primary-color);
}

.ideal-for-box .section-eyebrow {
    color: var(--primary-color);
    opacity: 1;
    margin-bottom: 0.5rem;
}

.ideal-for-box h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.03em;
    margin-bottom: 1.75rem;
    line-height: 1.3;
}

.ideal-tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.ideal-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: #ffffff;
    border: 1.5px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-color);
    letter-spacing: -0.01em;
    transition: var(--transition);
    cursor: default;
}

.ideal-chip:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 32, 91, 0.1);
}

/* ==========================================
   FEATURES — Building Highlights
   ========================================== */
.features-section {
    padding: 6rem 0;
}

.features-section .section-title,
.features-section .section-subtitle,
.availabilities-section .section-title {
    background: linear-gradient(135deg, #ffffff 0%, #a6c4f4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-top: 3.5rem;
}

.feature-card {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: none;
    transition: var(--transition);
    background: var(--bg-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
}

.feature-image {
    height: 180px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover .feature-image img {
    transform: scale(1.05);
}

.feature-content {
    padding: 1.5rem;
}

.feature-content h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.feature-content p {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.55;
}

/* ==========================================
   CONTACT — Navy glow section with white form
   ========================================== */
.contact-section {
    padding: 7rem 0;
    color: var(--text-color);
}

/* On navy/glow background, the contact section gets white card treatment */
.contact-section.glow-section .section-title {
    background: linear-gradient(135deg, #ffffff 0%, #a6c4f4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-section.glow-section>.container>.section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.contact-section .location-grid {
    background: none;
}

/* Contact grid is 2 columns: form + agent cards */
.contact-section .location-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    margin-top: 0;
    border: none;
}

.contact-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-form-wrap {
    width: 100%;
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.contact-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.contact-map-grid .simple-contact-box {
    max-width: 100%;
    margin: 0;
    box-shadow: none;
    border-radius: 0;
}

.contact-map-grid .map-embed-wrap {
    height: 100%;
    min-height: 100%;
}

.contact-map-grid .map-embed-wrap iframe {
    height: 100%;
    width: 100%;
    min-height: 100%;
    border-radius: 0 !important;
    box-shadow: none !important;
}

@media (max-width: 992px) {
    .contact-map-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   SIMPLE CENTERED CONTACT BOX
   ========================================== */
.simple-contact-box {
    max-width: 680px;
    margin: 2rem auto 0;
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.simple-contact-box h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
    text-align: center;
}

.simple-contact-box>p {
    font-size: 0.92rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 2rem;
}

.contact-agents-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.agent-mini {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.agent-mini h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
}

.agent-mini p {
    font-size: 0.82rem;
    color: var(--text-light);
    margin: 0;
}

.agent-mini a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-form-wrap h2 {
    color: var(--primary-color);
    font-size: 2.8rem;
    letter-spacing: -0.05em;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.contact-form-wrap>p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    background: var(--bg-light);
    color: var(--text-color);
    margin-bottom: 0.75rem;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    letter-spacing: -0.01em;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-light);
    font-weight: 400;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(0, 32, 91, 0.08);
}

.contact-form select {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    background: var(--bg-light);
    color: var(--text-color);
    margin-bottom: 0.75rem;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    appearance: none;
    cursor: pointer;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.contact-info {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
}

.contact-info h3 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.agent {
    margin-bottom: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: var(--transition);
}

.agent:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.agent h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
    letter-spacing: -0.03em;
}

.agent p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    margin-bottom: 0.2rem;
    letter-spacing: -0.01em;
}

.agent a {
    color: #a0c8ff;
    font-weight: 600;
}

.agent a:hover {
    color: #ffffff;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: linear-gradient(135deg, #00153D 0%, #00205B 100%);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-logo-wordmark {
    font-size: 1.15rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.04em;
    line-height: 1;
    text-transform: uppercase;
    border-left: 3px solid rgba(255, 255, 255, 0.6);
    padding-left: 0.75rem;
    margin-bottom: 1.25rem;
    display: inline-block;
}

.footer-logo-street {
    font-weight: 400;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: block;
    margin-top: 3px;
}


.footer-brand p {
    color: rgba(255, 255, 255, 0.85);
    margin-top: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.footer h4 {
    color: white;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-weight: 800;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 4px;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    outline: none;
    font-size: 0.9rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    border-color: white;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.15);
}

.newsletter-form .btn-primary {
    background: white;
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 800;
}

.newsletter-form .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.footer-bottom {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .hero {
        min-height: auto;
        height: auto;
        padding-top: 180px;
        padding-bottom: 120px;
    }

    .hero-image-wrap {
        width: 100%;
        height: 100%;
        margin-top: 0;
    }

    .hero-content {
        padding-top: 0;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {

    .overview-container,
    .contact-section .location-grid,
    .footer-container {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 1.5rem;
    }

    .carousel-container {
        width: 100%;
        margin-left: 0;
        padding-left: 0;
    }

    .carousel-track {
        padding-right: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stat-value {
        font-size: 2.5rem;
    }

    .demo-card {
        width: calc(50% - 0.75rem);
    }

    .amenities-layout {
        grid-template-columns: 1fr;
    }

    .buildings-cta {
        flex-direction: column;
        text-align: center;
    }

    .overview-image {
        position: static;
        height: 300px;
    }

    .timeline {
        flex-direction: column;
        align-items: stretch;
    }

    .timeline-item {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .demo-card {
        width: 100%;
    }
}

/* ==========================================
   SUBPAGE & GALLERY STYLES
   ========================================== */
.subpage-hero {
    position: relative;
    padding: 150px 0 70px;
    background: linear-gradient(135deg, #00153D 0%, #00205B 30%, #406BB8 50%, #00205B 70%, #00153D 100%) !important;
    background-size: 300% 300% !important;
    background-position: center calc(var(--scroll-y, 0px) * -0.4) !important;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.subpage-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    filter: brightness(0.6) contrast(1.1);
}

.subpage-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.subpage-hero-content .eyebrow {
    color: #a0c8ff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: block;
}

.subpage-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin: 0.5rem 0 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f4f4f4 50%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #ffffff;
    line-height: 1.1;
}

.subpage-hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 750px;
}

/* Quick Property Switcher Buttons at Bottom of Hero */
.hero-prop-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-prop-nav-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
    margin-right: 6px;
    width: 100%;
}

@media (min-width: 640px) {
    .hero-prop-nav-title {
        width: auto;
    }
}

.hero-prop-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    backdrop-filter: blur(8px);
}

.hero-prop-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-prop-btn.active {
    background: #00205B;
    background: linear-gradient(135deg, #00205B 0%, #406BB8 100%);
    border-color: #a0c8ff;
    color: #ffffff;
    box-shadow: 0 0 12px rgba(64, 107, 184, 0.5);
}

.back-home-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.back-home-link:hover {
    color: #ffffff;
    transform: translateX(-4px);
}

.building-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.meta-item {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
}

.meta-item strong {
    color: #ffffff;
    font-weight: 700;
    margin-right: 0.35rem;
}

.page-section {
    padding: 5rem 0;
}

.prop-desc-wrap {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3.5rem;
    align-items: start;
    margin-top: 2rem;
}

.prop-text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-color);
}

.prop-text p {
    margin-bottom: 1.25rem;
}

.suite-card-box {
    background: #f7f8fc;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 1.75rem;
    box-shadow: var(--shadow-soft);
    border-top: 3px solid var(--primary-color);
}

.suite-card-box h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.suite-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.suite-item {
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--border-color);
}

.suite-item:last-child {
    border-bottom: none;
}

.suite-item-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.35rem;
}

.suite-item-head b {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-color);
}

.suite-badge {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    background: var(--primary-color);
    color: #ffffff;
}

.suite-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* Highlights Section */
.highlights-section {
    padding: 7rem 0;
    background: linear-gradient(135deg, #00153D 0%, #00205B 30%, #406BB8 50%, #00205B 70%, #00153D 100%) !important;
    background-size: 300% 300% !important;
    background-position: center calc(var(--scroll-y, 0px) * -0.4) !important;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.highlights-section .section-title {
    color: #ffffff !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.hl-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 3px solid #a0c8ff;
    padding: 1.75rem;
    border-radius: var(--border-radius-md);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.hl-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.hl-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 800;
}

.hl-card h3 {
    font-size: 1.15rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.hl-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0;
}

/* Gallery & Carousel Slider */
.gallery-head-wrap {
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.gallery-card {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    background: #00153D;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.gallery-card.active {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 32, 91, 0.25);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.06);
    opacity: 0.9;
}

.gallery-card-overlay {
    display: none;
}

.gallery-slider-wrap {
    position: relative;
    background: #00153D;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.slider-main {
    position: relative;
    height: 500px;
    background: #000d26;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(0, 21, 61, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.slider-btn:hover {
    background: var(--primary-color);
    border-color: #ffffff;
}

.slider-prev {
    left: 18px;
}

.slider-next {
    right: 18px;
}

.slider-caption-bar {
    position: absolute;
    bottom: 0;
    inset-x: 0;
    background: linear-gradient(to top, rgba(0, 15, 45, 0.9), transparent);
    padding: 1.5rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: #ffffff;
}

.slider-caption-text {
    font-size: 0.95rem;
    font-weight: 600;
}

.slider-counter {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.slider-dots-bar {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 1rem;
    background: #00153D;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: #ffffff;
    transform: scale(1.3);
}

/* Showing Section Bottom CTA */
.showing-section {
    padding: 7rem 0;
    background: linear-gradient(135deg, #00153D 0%, #00205B 30%, #406BB8 50%, #00205B 70%, #00153D 100%);
    background-size: 300% 300%;
    background-position: center calc(var(--scroll-y, 0px) * -0.4);
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.showing-section.light-section {
    background-image: none !important;
    background-color: #ffffff !important;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
}

.showing-section.light-section .showing-content h2 {
    color: var(--primary-color) !important;
    background: transparent !important;
    -webkit-text-fill-color: var(--primary-color) !important;
    background-clip: unset !important;
}

.showing-section.light-section .showing-content p {
    color: #000000 !important;
    background: transparent !important;
    -webkit-text-fill-color: #000000 !important;
    background-clip: unset !important;
}

.showing-content {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.showing-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0.75rem 0 1rem;
    letter-spacing: -0.03em;
}

.showing-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-showing {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: var(--primary-color) !important;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-showing:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 15, 45, 0.95);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}

.lightbox-content img {
    width: 100%;
    height: 100%;
    max-height: 85vh;
    object-fit: contain;
    display: block;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 36px;
    color: #ffffff;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--primary-light);
}

/* Showing Modal Form */
.showing-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 15, 45, 0.85);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.showing-modal.active {
    display: flex;
}

.showing-modal-box {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    max-width: 520px;
    width: 100%;
    position: relative;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
    color: var(--text-color);
}

.showing-modal-box h3 {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 0.35rem;
    color: var(--primary-color);
}

.showing-modal-box p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.showing-modal-box .form-group {
    margin-bottom: 1.15rem;
}

.showing-modal-box .form-group label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-color);
    margin-bottom: 0.35rem;
}

.showing-modal-box .form-group input,
.showing-modal-box .form-group textarea,
.showing-modal-box .form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-main);
    font-size: 0.9rem;
    background: #f7f8fc;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-color);
    transition: var(--transition);
}

.showing-modal-box .form-group input:focus,
.showing-modal-box .form-group textarea:focus,
.showing-modal-box .form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #ffffff;
}

.showing-modal-box .modal-submit-btn {
    width: 100%;
    padding: 0.9rem;
    background: var(--primary-color);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.showing-modal-box .modal-submit-btn:hover {
    background: #00153D;
}

.showing-modal-box .modal-close-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
}

.showing-modal-box .modal-close-btn:hover {
    color: var(--text-color);
}

/* Buildings Portfolio Hub (buildings.html) */
.buildings-hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.building-hub-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.building-hub-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.bhub-img {
    position: relative;
    height: 230px;
    overflow: hidden;
    background: #00153D;
}

.bhub-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.building-hub-card:hover .bhub-img img {
    transform: scale(1.06);
}

.bhub-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
}

.bhub-body {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bhub-title {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--text-color);
    margin-bottom: 0.4rem;
    line-height: 1.25;
    letter-spacing: -0.03em;
}

.bhub-meta {
    font-size: 0.72rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.875rem;
}

.bhub-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.bhub-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.bhub-tag {
    font-size: 0.7rem;
    color: var(--text-color);
    background: #f0f3f8;
    border: 1px solid var(--border-color);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-weight: 500;
}

.bhub-btn {
    display: block;
    text-align: center;
    padding: 0.875rem 1.25rem;
    background: var(--primary-color);
    color: #ffffff !important;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
}

.bhub-btn:hover {
    background: #00153D;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 32, 91, 0.25);
}

/* Blue Aesthetic for Building Hub Cards in Glow Section */
.glow-section .building-hub-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.glow-section .building-hub-card:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: #a0c8ff;
    box-shadow: 0 24px 50px rgba(160, 200, 255, 0.25);
    transform: translateY(-6px);
}

.glow-section .bhub-badge {
    background: #0052cc;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glow-section .bhub-title {
    color: #ffffff;
}

.glow-section .bhub-meta {
    color: #a0c8ff;
}

.glow-section .bhub-desc {
    color: rgba(255, 255, 255, 0.85);
}

.glow-section .bhub-tag {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.glow-section .bhub-btn {
    background: #ffffff;
    color: #00153D !important;
    border: 1px solid #ffffff;
    box-shadow: 0 4px 14px rgba(255, 255, 255, 0.2);
    font-weight: 900;
}

.glow-section .bhub-btn:hover {
    background: #e6f0ff;
    color: #001233 !important;
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

padding: 1.75rem;
flex: 1;
display: flex;
flex-direction: column;
justify-content: space-between;
}

.bhub-title {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--text-color);
    margin-bottom: 0.4rem;
    line-height: 1.25;
    letter-spacing: -0.03em;
}

.bhub-meta {
    font-size: 0.72rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.875rem;
}

.bhub-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.bhub-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.bhub-tag {
    font-size: 0.7rem;
    color: var(--text-color);
    background: #f0f3f8;
    border: 1px solid var(--border-color);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-weight: 500;
}

.bhub-btn {
    display: block;
    text-align: center;
    padding: 0.875rem 1.25rem;
    background: var(--primary-color);
    color: #ffffff !important;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
}

.bhub-btn:hover {
    background: #00153D;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 32, 91, 0.25);
}

/* Blue Aesthetic for Building Hub Cards in Glow Section */
.glow-section .building-hub-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.glow-section .building-hub-card:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: #a0c8ff;
    box-shadow: 0 24px 50px rgba(160, 200, 255, 0.25);
    transform: translateY(-6px);
}

.glow-section .bhub-badge {
    background: #0052cc;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glow-section .bhub-title {
    color: #ffffff;
}

.glow-section .bhub-meta {
    color: #a0c8ff;
}

.glow-section .bhub-desc {
    color: rgba(255, 255, 255, 0.85);
}

.glow-section .bhub-tag {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.glow-section .bhub-btn {
    background: #ffffff;
    color: #00153D !important;
    border: 1px solid #ffffff;
    box-shadow: 0 4px 14px rgba(255, 255, 255, 0.2);
    font-weight: 900;
}

.glow-section .bhub-btn:hover {
    background: #e6f0ff;
    color: #001233 !important;
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}