@import url('https://api.fontshare.com/v2/css?f[]=general-sans@300,400,500,600,700,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

/* 
   KRS Groups Corporate Premium Real Estate Stylesheet
   Typography: General Sans (Corporate Headings) & Manrope (Body, Nav, UI)
   Palette: White (#FFFFFF), Soft Off-White (#FAF8F5), Dark Navy (#0B1524), Warm Gold (#C5A880)
 */

/* ----------------------------------------------------
   1. VARIABLES & CORE SETTINGS
------------------------------------------------------- */
:root {
    /* Logo-Inspired Corporate Palette Tokens (Navy Blue & Emerald Green) */
    --background: #FFFFFF;
    --card-bg: #FFFFFF;
    --accent-gold: #22C55E; /* Refined Premium Emerald Green */
    --accent-gold-hover: #15803D;
    --text-primary: #0B1524; /* Logo Deep Navy Blue */
    --text-secondary: #4A545E;
    --border-subtle: #E3EAE4;
    --white: #FFFFFF;

    /* Corporate Real Estate Fonts Pairing */
    --font-serif: 'General Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --heading-weight: 700;
    --heading-letter-spacing: -0.02em;
    --accent-style: normal;
    --accent-color: var(--accent-gold);

    /* Premium Emerald Gradient Design System Tokens */
    --emerald-top: #34D399;
    --emerald-mid: #22C55E;
    --emerald-bottom: #15803D;
    --emerald-gradient: linear-gradient(180deg, #34D399 0%, #22C55E 48%, #15803D 100%);
    --emerald-gradient-hover: linear-gradient(180deg, #46E0A8 0%, #29D066 48%, #1B9146 100%);
    --emerald-gradient-text: linear-gradient(145deg, #34D399 0%, #22C55E 60%, #15803D 100%);
    --emerald-btn-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), inset 0 -2px 4px rgba(0, 0, 0, 0.2), 0 4px 15px rgba(34, 197, 94, 0.15);
    --emerald-btn-shadow-hover: inset 0 1px 0 rgba(255, 255, 255, 0.55), inset 0 -2px 4px rgba(0, 0, 0, 0.22), 0 6px 20px rgba(34, 197, 94, 0.25);
    --emerald-glow-subtle: 0 0 12px rgba(34, 197, 94, 0.15);

    /* Easing curve */
    --transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);

    /* Backward compatibility mapping */
    --navy: #0B1524;
    --navy-light: #F4F8F5;
    --charcoal: #3D4650;
    --gold: var(--accent-gold);
    --gold-dark: var(--accent-gold-hover);
    --off-white: #F4F8F5;
    --border: var(--border-subtle);
    --muted: var(--text-secondary);
}

/* Base resets & styling overrides */
body {
    background-color: var(--background) !important;
    color: var(--text-secondary) !important;
    font-family: var(--font-sans) !important;
    font-size: 16px;
    line-height: 1.68;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
}

/* Headings */
h1, h2, h3, h4, h5, h6, .editorial-heading {
    font-family: var(--font-serif) !important;
    color: var(--text-primary) !important;
    font-weight: var(--heading-weight) !important;
    letter-spacing: var(--heading-letter-spacing) !important;
    line-height: 1.15;
}

/* Accent override - elegant upright emerald styling for emphasis words */
em, .italic-gold, .text-accent {
    font-family: var(--font-serif) !important;
    font-style: normal !important;
    background: linear-gradient(145deg, #34D399 0%, #22C55E 60%, #15803D 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
    font-weight: inherit !important;
    display: inline-block;
    filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.15)) !important;
}

/* Links */
a {
    color: var(--navy);
    transition: var(--transition);
    text-decoration: none !important;
}
a:hover {
    color: var(--gold);
}

/* ----------------------------------------------------
   2. REVEAL-ON-SCROLL & LOAD ANIMATIONS
------------------------------------------------------- */
/* Page load fade-in */
.fade-in-load {
    opacity: 0;
    animation: fadeInPage 1s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes fadeInPage {
    to { opacity: 1; }
}

/* Scroll reveal items */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

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

/* Delay modifiers */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ----------------------------------------------------
   3. STICKY NAVIGATION (PREMIUM PILL NAV)
------------------------------------------------------- */
.navbar-default {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid transparent !important;
    border-radius: 0 !important;
    padding: 24px 0 !important;
    box-shadow: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    left: 0 !important;
    transform: none !important;
    position: absolute !important;
    top: 0 !important;
    z-index: 1000 !important;
    transition: var(--transition) !important;
}

/* Brand logo style - default state has colored/dark logo */
.navbar-default .navbar-brand {
    padding: 0 !important;
    display: flex;
    align-items: center;
    height: 100%;
}

.navbar-default .navbar-brand img {
    filter: none !important; /* Colored/dark logo for inner pages */
    height: 48px !important;
    width: auto !important;
    transition: var(--transition) !important;
}

/* Default links are dark navy on inner pages */
.navbar-default .navbar-nav > li > a {
    color: var(--navy) !important;
}

.navbar-default .navbar-nav > li > a:hover {
    color: var(--accent-gold) !important;
}

.navbar-default .navbar-nav > .active > a {
    background: transparent !important;
}

/* Home page overrides - white links & white logo over dark hero background */
body.home-page .navbar-default:not(.scrolled) .navbar-brand img {
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0,0,0,0.15)) !important;
}

body.home-page .navbar-default:not(.scrolled) .navbar-nav > li > a {
    color: rgba(255, 255, 255, 0.85) !important;
}

body.home-page .navbar-default:not(.scrolled) .navbar-nav > li > a:hover {
    color: #34D399 !important;
}

/* Scrolled state nav - morphs into floating glassmorphic pill */
.navbar-default.scrolled {
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(11, 21, 36, 0.08) !important;
    border-radius: 24px !important;
    padding: 12px 24px !important;
    box-shadow: 0 10px 40px rgba(11, 21, 36, 0.06) !important;
    width: calc(100% - 40px) !important;
    max-width: 1200px !important;
    margin: 10px auto !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    position: fixed !important;
    top: 0 !important;
}

.navbar-default.scrolled .navbar-brand img {
    filter: none !important; /* colored branding when scrolled */
    height: 40px !important;
}

.navbar-default.scrolled .navbar-nav > li > a {
    color: var(--navy) !important; /* dark navy links when scrolled */
}

.navbar-default.scrolled .navbar-nav > li > a:hover {
    color: var(--accent-gold) !important;
}

.navbar-default.scrolled .navbar-nav > .active > a {
    color: var(--accent-gold) !important;
    background: transparent !important;
}

.navbar-brand img {
    height: 48px !important;
    width: auto !important;
    transition: var(--transition);
}

/* Nav Link overrides */
.navbar-nav > li > a {
    font-family: var(--font-sans) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    padding: 15px 18px !important;
    background: transparent !important;
    transition: var(--transition) !important;
}

/* Nav Link overrides */
.navbar-nav > li > a {
    font-family: var(--font-sans) !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    padding: 15px 18px !important;
    background: transparent !important;
    transition: var(--transition) !important;
}

.navbar-nav > li > a:hover {
    color: #34D399 !important;
    background: transparent !important;
}

.navbar-nav > .active > a,
.navbar-nav > .active > a:focus,
.navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a,
.navbar-default.scrolled .navbar-nav > .active > a {
    background: linear-gradient(135deg, #34D399 0%, #22C55E 60%, #15803D 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
    font-weight: 700 !important;
    filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.25)) !important;
    position: relative;
}

/* Active navigation indicator line */
.navbar-nav > .active > a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 18px;
    right: 18px;
    height: 3px;
    background: linear-gradient(90deg, #34D399 0%, #22C55E 50%, #15803D 100%) !important;
    border-radius: 99px;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.35) !important;
}

/* Pill CTA in navbar */
.nav-button-cta {
    background: linear-gradient(180deg, #34D399 0%, #22C55E 48%, #15803D 100%) !important;
    color: #FFFFFF !important;
    border: 1px solid rgba(52, 211, 153, 0.5) !important;
    border-radius: 99px !important;
    padding: 10px 24px !important;
    font-family: var(--font-sans) !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    margin-left: 15px;
    margin-top: 5px;
    transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), inset 0 -2px 4px rgba(0, 0, 0, 0.2), 0 4px 15px rgba(34, 197, 94, 0.15) !important;
    cursor: pointer;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.nav-button-cta:hover {
    background: linear-gradient(180deg, #46E0A8 0%, #29D066 48%, #1B9146 100%) !important;
    border-color: rgba(70, 224, 168, 0.7) !important;
    color: #FFFFFF !important;
    filter: brightness(1.06) !important;
    transform: translateY(-2.5px) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55), inset 0 -2px 4px rgba(0, 0, 0, 0.22), 0 6px 20px rgba(34, 197, 94, 0.25) !important;
}

.navbar-default.scrolled .nav-button-cta {
    margin-top: 2px;
}

/* ----------------------------------------------------
   4. EDITORIAL HERO (JT CAPITAL FORMULA)
------------------------------------------------------- */
.hero-editorial-section {
    position: relative;
    padding: 100px 0 20px 0;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--navy);
    overflow: hidden;
    color: var(--white);
    margin: 0 !important;
    width: 100% !important;
}

.hero-editorial-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(11, 21, 36, 0.55), rgba(11, 21, 36, 0.78)), url('../img/hero10.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1.03);
    animation: kenBurnsAnimation 25s infinite alternate ease-in-out;
    pointer-events: none;
}

@keyframes kenBurnsAnimation {
    0% { transform: scale(1.03); }
    100% { transform: scale(1.12); }
}

.hero-editorial-content {
    max-width: 850px;
    margin: 0 auto;
    position: relative !important;
    z-index: 10 !important;
    text-align: center;
}

.hero-editorial-content h1 {
    font-family: var(--font-serif) !important;
    font-size: 68px !important;
    font-weight: 800 !important;
    line-height: 1.12 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 24px;
    color: var(--white) !important;
}

/* Premium Emerald-to-Lime Glossy Gradient & Ambient Glow for Hero Accent Text */
.hero-accent-green {
    display: inline-block;
    font-weight: 900 !important;
    background: linear-gradient(170deg, #6EE7B7 0%, #34D399 22%, #22C55E 55%, #15803D 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
    filter: drop-shadow(0 0 14px rgba(34, 197, 94, 0.32)) drop-shadow(0 2px 8px rgba(10, 40, 20, 0.45)) !important;
}

.hero-editorial-content p {
    font-family: var(--font-sans) !important;
    font-size: 17px !important;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.68 !important;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

/* Premium Hero CTA Buttons */
.btn-hero-primary {
    background: linear-gradient(180deg, #34D399 0%, #22C55E 48%, #15803D 100%) !important;
    border: 1px solid rgba(52, 211, 153, 0.5) !important;
    color: #FFFFFF !important;
    font-family: var(--font-sans) !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    padding: 16px 40px !important;
    border-radius: 99px !important;
    transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: inline-block !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), inset 0 -2px 4px rgba(0, 0, 0, 0.2), 0 4px 15px rgba(34, 197, 94, 0.15) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.btn-hero-primary:hover {
    background: linear-gradient(180deg, #46E0A8 0%, #29D066 48%, #1B9146 100%) !important;
    border-color: rgba(70, 224, 168, 0.7) !important;
    color: #FFFFFF !important;
    filter: brightness(1.06) !important;
    transform: translateY(-2.5px) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55), inset 0 -2px 4px rgba(0, 0, 0, 0.22), 0 8px 25px rgba(34, 197, 94, 0.25) !important;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--white) !important;
    font-family: var(--font-sans) !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    padding: 16px 40px !important;
    border-radius: 99px !important;
    transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: inline-block !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(52, 211, 153, 0.5) !important;
    color: var(--white) !important;
    transform: translateY(-2.5px) !important;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.12) !important;
}

/* Editorial Button Group */
.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

/* Hide scroll indicator on desktop to prevent shifting flex layout */
.hero-scroll-indicator {
    display: none;
}

.btn-premium-solid {
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 99px;
    border: 1px solid var(--navy);
    transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
    box-shadow: 0 10px 24px rgba(11, 21, 36, 0.15);
}

.btn-premium-solid:hover {
    background: linear-gradient(180deg, #34D399 0%, #22C55E 48%, #15803D 100%) !important;
    border-color: rgba(52, 211, 153, 0.6) !important;
    color: #FFFFFF !important;
    filter: brightness(1.06) !important;
    transform: translateY(-2.5px) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55), inset 0 -2px 4px rgba(0, 0, 0, 0.22), 0 6px 20px rgba(34, 197, 94, 0.25) !important;
}

.btn-premium-link {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-premium-link i {
    font-size: 16px;
    color: #22C55E !important;
    transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
    filter: drop-shadow(0 0 6px rgba(34, 197, 94, 0.25));
}

.btn-premium-link:hover {
    color: #22C55E !important;
}

.btn-premium-link:hover i {
    transform: translateX(6px) !important;
}

/* Bleeding Architecture Photo */
.hero-bleeding-photo-wrapper {
    position: relative;
    height: 600px;
    width: 110%;
    margin-right: -10%;
    border-radius: 12px 0 0 12px;
    overflow: hidden;
    box-shadow: -15px 20px 40px rgba(0,0,0,0.1);
}

.hero-bleeding-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    transition: transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-bleeding-photo-wrapper:hover .hero-bleeding-photo {
    transform: scale(1);
}

/* ----------------------------------------------------
   5. SECTIONS & TITLES
------------------------------------------------------- */
.editorial-section {
    padding: 70px 0 !important; /* Minimal clean spacing */
    background-color: var(--background);
    margin: 0 !important;
    width: 100% !important;
    display: block !important;
}

.editorial-section.alt-bg {
    background-color: var(--off-white) !important; /* Premium light off-white tone */
    margin: 0 !important;
    width: 100% !important;
    display: block !important;
}

@media (min-width: 1200px) {
    .container {
        width: 100% !important;
        max-width: 1280px !important;
    }
}

.section-header-editorial {
    max-width: 620px;
    margin-bottom: 35px;
}

.section-header-editorial.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-header-editorial h2 {
    font-family: var(--font-serif) !important;
    font-size: 46px !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 16px;
}

.section-header-editorial p {
    font-family: var(--font-sans) !important;
    font-size: 16px !important;
    color: var(--muted);
    line-height: 1.68 !important;
}

/* ----------------------------------------------------
   6. CARD SYSTEM (WHITESPACE-DRIVEN CARDS)
------------------------------------------------------- */
/* Featured projects & plots grids */
.featured-projects-grid,
.plots-properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.editorial-card {
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.editorial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(11, 21, 36, 0.06);
    border-color: rgba(30, 94, 58, 0.4);
}

.card-thumb {
    position: relative;
    padding-bottom: 68%; /* 3:2 ratio */
    overflow: hidden;
}

.card-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.editorial-card:hover .card-thumb img {
    transform: scale(1.04);
}

.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(11, 21, 36, 0.9);
    backdrop-filter: blur(5px);
    color: var(--white);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 2px;
    z-index: 5;
}

.card-badge.available {
    background: #2E7D32;
}

.card-badge.sold {
    background: #C62828;
}

.card-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h5 {
    font-size: 20px !important;
    margin-bottom: 8px;
    font-weight: 500;
}

.card-location {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-location i {
    color: var(--gold);
}

.card-divider {
    height: 1px;
    background-color: var(--border);
    margin: auto 0 16px 0;
}

.card-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-stat-item {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--muted);
}

.card-stat-item strong {
    font-size: 14px;
    color: var(--navy);
    font-weight: 600;
    display: block;
    margin-top: 2px;
}

.card-action-btn {
    margin-top: auto !important;
    width: 100%;
    padding: 12px 20px;
    border: 1px solid var(--navy);
    background: transparent;
    color: var(--navy);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 99px;
    transition: var(--transition);
    cursor: pointer;
}

.card-action-btn:hover {
    background: var(--navy);
    color: var(--white);
}

/* ----------------------------------------------------
   7. ABOUT FOUNDER SECTION (PREMIUM METRICS)
------------------------------------------------------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-founder-tag {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.about-story-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--charcoal);
    opacity: 0.9;
    margin-bottom: 24px;
}

.about-metrics-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.about-metric-card {
    background: var(--white);
    padding: 24px 30px;
    border-radius: 4px;
    border-left: 3px solid var(--gold);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.about-metric-card h3 {
    font-size: 40px !important;
    font-family: var(--font-serif) !important;
    color: var(--navy) !important;
    margin-bottom: 5px;
    font-weight: 600 !important;
}

.about-metric-card p {
    font-size: 12px;
    font-family: var(--font-sans);
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.about-img-framed {
    position: relative;
    padding: 20px;
    background: var(--white);
    box-shadow: 0 20px 45px rgba(0,0,0,0.05);
    border: 1px solid var(--border);
}

.about-img-framed img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ----------------------------------------------------
   8. TESTIMONIALS (CLEAN CAROUSEL REDESIGN)
------------------------------------------------------- */
.testimonials-section {
    background: var(--off-white);
    color: var(--charcoal);
    padding: 70px 0 !important; /* Minimal clean spacing */
}

.testimonials-section h2, 
.testimonials-section p {
    color: var(--navy) !important;
}

/* Video Testimonial Grid */
.video-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.video-card-premium {
    background: var(--white) !important;
    border: 1px solid var(--border-subtle) !important;
    border-radius: 16px !important;
    overflow: hidden;
    transition: var(--transition) !important;
    box-shadow: 0 10px 30px rgba(11, 21, 36, 0.04) !important;
}

.video-card-premium:hover {
    border-color: var(--accent-gold) !important;
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(11, 21, 36, 0.08) !important;
}

.video-wrapper-premium {
    position: relative;
    padding-bottom: 120%; /* Portrait video aspect ratio */
    overflow: hidden;
    background: #000;
}

.video-wrapper-premium video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay-premium {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(11,21,36,0.9), transparent);
    padding: 24px;
    color: var(--white);
    z-index: 5;
}

.video-overlay-premium h4 {
    color: var(--white) !important;
    font-size: 18px !important;
    margin-bottom: 2px;
}

.video-overlay-premium p {
    color: var(--gold) !important;
    font-size: 12px !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.video-play-btn-premium {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.4);
    color: var(--white);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.video-play-btn-premium:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card-premium.playing .video-play-btn-premium {
    opacity: 0;
    visibility: hidden;
}

.video-card-premium.playing:hover .video-play-btn-premium {
    opacity: 1;
    visibility: visible;
}

.video-desc-premium {
    padding: 20px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--charcoal);
    font-style: italic;
    border-top: 1px solid var(--border-subtle);
}

/* Text Testimonials Grid (Three Column Carousel replacement) */
.text-testimonials-editorial {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 70px;
    border-top: 1px solid var(--border-subtle);
    padding-top: 60px;
}

.testimonial-quote-editorial {
    position: relative;
    padding-left: 20px;
}

.testimonial-quote-editorial::before {
    content: "“";
    position: absolute;
    top: -10px;
    left: -15px;
    font-family: var(--font-serif);
    font-size: 80px;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-quote-editorial blockquote {
    border: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    font-style: italic;
    color: var(--charcoal);
}

.testimonial-author-editorial {
    margin-top: 24px;
}

.testimonial-author-editorial strong {
    font-family: var(--font-sans);
    font-size: 14px;
    letter-spacing: 0.05em;
    color: var(--navy);
    display: block;
    text-transform: uppercase;
}

.testimonial-author-editorial span {
    font-size: 12px;
    color: var(--gold);
}

/* ----------------------------------------------------
   9. TRUST STATS BAND
------------------------------------------------------- */
.trust-stats-band {
    background-color: var(--white);
    padding: 80px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.trust-stat-item-premium h3 {
    font-size: 54px !important;
    font-weight: 600 !important;
    color: var(--navy) !important;
    margin-bottom: 8px;
}

.trust-stat-item-premium p {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0;
}

/* ----------------------------------------------------
   10. DUAL CTA BAND
------------------------------------------------------- */
.dual-cta-section {
    background-color: var(--off-white) !important;
    padding: 70px 0 !important;
    position: relative;
    display: block !important;
}

.dual-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 991px) {
    .dual-cta-grid {
        grid-template-columns: 1fr;
    }
}

.cta-panel {
    background: var(--white) !important;
    border: 1px solid var(--border-subtle) !important;
    border-radius: 24px !important;
    padding: 50px 40px !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease !important;
    box-shadow: 0 10px 30px rgba(11, 21, 36, 0.04) !important;
    cursor: pointer;
}

.cta-panel:hover {
    transform: translateY(-8px) !important;
    border-color: var(--accent-gold) !important;
    box-shadow: 0 24px 60px rgba(11, 21, 36, 0.08), 0 0 35px rgba(30, 94, 58, 0.2) !important;
}

.cta-panel-content {
    width: 100%;
    z-index: 5;
}

.cta-panel-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(30, 94, 58, 0.12);
    color: var(--gold) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.cta-panel:hover .cta-panel-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--navy);
    color: var(--white) !important;
}

.cta-panel h2 {
    color: var(--navy) !important;
    font-size: 26px !important;
    font-weight: 700 !important;
    margin: 0 0 12px 0 !important;
    line-height: 1.3 !important;
}

.cta-panel p {
    color: var(--text-secondary) !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    margin-bottom: 28px !important;
}

.cta-panel .btn-cta-panel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white) !important;
    background: var(--navy) !important;
    border: 1px solid var(--navy) !important;
    padding: 12px 28px !important;
    border-radius: 99px !important;
    transition: var(--transition) !important;
    width: fit-content;
}

.cta-panel:hover .btn-cta-panel,
.cta-panel .btn-cta-panel:hover {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    color: var(--navy) !important;
    transform: translateX(4px);
}
}

.cta-panel .btn-cta-panel:hover {
    color: var(--white);
}

.cta-panel .btn-cta-panel i {
    transition: var(--transition);
}

.cta-panel .btn-cta-panel:hover i {
    transform: translateX(6px);
}

/* ----------------------------------------------------
   11. FOOTER REDESIGN
------------------------------------------------------- */
.footer-editorial {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    padding: 100px 0 30px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin: 0 !important;
    width: 100% !important;
    display: block !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-col h4 {
    color: var(--white) !important;
    font-size: 16px !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
    font-family: var(--font-sans) !important;
    font-weight: 600 !important;
}

.footer-about-logo {
    height: 48px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1) opacity(0.9);
}

.footer-adress {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.footer-adress li {
    margin-bottom: 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-adress li i {
    color: var(--gold);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--gold);
    padding-left: 4px;
}

/* Footer Blog items */
.footer-blog-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-blog-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-blog-thumb {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.footer-blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-blog-content h6 {
    margin: 0 0 4px 0;
    font-size: 13px;
    line-height: 1.4;
}

.footer-blog-content h6 a {
    color: var(--white);
}

.footer-blog-content span {
    font-size: 11px;
    color: var(--gold);
}

/* Footer Newsletter input */
.newsletter-form-group {
    display: flex;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255, 255, 255, 0.03);
    padding: 4px;
    border-radius: 99px;
}

.newsletter-form-group input {
    background: transparent;
    border: none;
    padding: 10px 16px;
    color: var(--white);
    font-size: 13px;
    width: 100%;
    outline: none;
}

.newsletter-form-group button {
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 99px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form-group button:hover {
    background: var(--white);
}

.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.footer-social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social-icons a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.5);
    margin-left: 20px;
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* ----------------------------------------------------
   12. DETAIL MODAL REDESIGN
------------------------------------------------------- */
.modal-content-premium {
    background: var(--off-white);
    border-radius: 8px;
    border: 1px solid var(--border);
    box-shadow: 0 30px 90px rgba(0,0,0,0.25);
    overflow: hidden;
}

.modal-header-premium {
    border-bottom: 1px solid var(--border);
    padding: 24px 30px;
    background: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header-premium .close-btn {
    border: none;
    background: transparent;
    font-size: 24px;
    color: var(--navy);
    cursor: pointer;
    transition: var(--transition);
}

.modal-header-premium .close-btn:hover {
    color: var(--gold);
}

.modal-body-premium {
    padding: 40px;
}

.modal-plot-image-premium {
    width: 100%;
    border-radius: 4px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    margin-bottom: 20px;
}

.modal-info-panel {
    padding-left: 20px;
}

.modal-status-badge-premium {
    display: inline-block;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 20px;
}

.modal-status-badge-premium.status-available {
    background: rgba(46, 125, 50, 0.1);
    color: #2E7D32;
    border: 1px solid rgba(46, 125, 50, 0.2);
}

.modal-status-badge-premium.status-sold {
    background: rgba(198, 40, 40, 0.1);
    color: #C62828;
    border: 1px solid rgba(198, 40, 40, 0.2);
}

.modal-plot-title-premium {
    font-size: 32px !important;
    margin-bottom: 6px;
}

.modal-plot-subtitle-premium {
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 24px;
    font-weight: 500;
}

.modal-details-grid-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
}

.modal-detail-item-premium {
    font-size: 13px;
    color: var(--muted);
    text-transform: uppercase;
}

.modal-detail-item-premium strong {
    font-size: 18px;
    color: var(--navy);
    display: block;
    margin-top: 4px;
    font-family: var(--font-sans);
}

.modal-boundaries-title-premium {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 15px;
}

.modal-boundaries-grid-premium {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.modal-boundary-card-premium {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 12px;
    border-radius: 4px;
    text-align: center;
}

.modal-boundary-direction-premium {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
}

.modal-boundary-value-premium {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-top: 4px;
}

.modal-footer-premium {
    border-top: 1px solid var(--border);
    padding: 20px 40px;
    background: var(--white);
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.btn-modal-secondary {
    background: transparent;
    color: var(--navy);
    border: 1px solid var(--border);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 12px 24px;
    border-radius: 99px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-modal-secondary:hover {
    background: var(--border);
}

.btn-modal-primary {
    background: var(--navy);
    color: var(--white);
    border: 1px solid var(--navy);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 99px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(11,21,36,0.1);
}

.btn-modal-primary:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    transform: translateY(-1px);
}

/* ----------------------------------------------------
   12b. SPOTLIGHT CARD (HOVER GLOW EFFECT)
------------------------------------------------------- */
.spotlight-card {
    position: relative;
    overflow: hidden;
    --mouse-x: 50%;
    --mouse-y: 50%;
    --spotlight-color: rgba(34, 197, 94, 0.08); /* Premium emerald green spotlight glow */
}

.spotlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle 280px at var(--mouse-x) var(--mouse-y), var(--spotlight-color), transparent 80%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.spotlight-card:hover::before,
.spotlight-card:focus-within::before {
    opacity: 1;
}

/* Ensure all child content layers properly above the spotlight overlay */
.spotlight-card > * {
    position: relative;
    z-index: 2;
}

/* Specific spotlight overrides for existing elements */
.about-img-framed.spotlight-card {
    border-radius: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-img-framed.spotlight-card:hover {
    border-color: rgba(34, 197, 94, 0.25);
    box-shadow: 0 25px 50px rgba(11, 21, 36, 0.06), 0 0 15px rgba(34, 197, 94, 0.04);
}

.about-img-framed.spotlight-card img {
    border-radius: 8px;
}

/* ----------------------------------------------------
   13. RESPONSIBILITY / MEDIA QUERIES
------------------------------------------------------- */
@media (max-width: 1200px) {
    .hero-editorial-content h1 {
        font-size: 52px !important;
    }
    .hero-bleeding-photo-wrapper {
        height: 500px;
    }
}

@media (max-width: 991px) {
    .hero-editorial-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .hero-bleeding-photo-wrapper {
        width: 100%;
        margin-right: 0;
        border-radius: 12px;
        height: 400px;
    }
    .hero-editorial-content {
        max-width: 100%;
        text-align: center;
    }
    .hero-cta-group {
        justify-content: center;
    }
    .featured-projects-grid,
    .plots-properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .video-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .text-testimonials-editorial {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .trust-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .dual-cta-section {
        grid-template-columns: 1fr;
    }
    .cta-panel {
        padding: 80px 40px;
        text-align: center;
    }
    .cta-panel .btn-cta-panel {
        align-self: center;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .hero-editorial-content h1 {
        font-size: 40px !important;
    }
    .hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .btn-premium-solid, .btn-premium-link {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .featured-projects-grid,
    .plots-properties-grid {
        grid-template-columns: 1fr;
    }
    .video-testimonials-grid {
        grid-template-columns: 1fr;
    }
    .trust-stats-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .footer-bottom-links a {
        margin: 0 10px;
    }
}

/* ----------------------------------------------------
   14. MISC INNER PAGE SPECIFICS
------------------------------------------------------- */
/* Page banner for inner pages */
.inner-page-banner {
    background-color: var(--off-white) !important;
    padding: 110px 0 25px 0 !important;
    text-align: center;
    border-bottom: 1px solid var(--border-subtle) !important;
    margin: 0 !important;
    width: 100% !important;
    display: block !important;
}

.inner-page-banner h1 {
    color: var(--navy) !important;
    font-size: 48px !important;
    margin-bottom: 10px;
}

.inner-page-banner .breadcrumb-editorial {
    font-size: 13px;
    color: var(--text-secondary) !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Filter controls on projects page */
.editorial-filter-bar {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: 4px;
    margin-bottom: 50px;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: flex-end;
}

.filter-item label {
    display: block;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--navy);
    margin-bottom: 8px;
}

.filter-item select, .filter-item input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    background: var(--off-white);
    border-radius: 4px;
    font-size: 14px;
    color: var(--navy);
    outline: none;
    transition: var(--transition);
}

.filter-item select:focus, .filter-item input:focus {
    border-color: var(--gold);
    background: var(--white);
}

.filter-btn-search {
    background: var(--navy);
    color: var(--white);
    border: 1px solid var(--navy);
    padding: 13px 24px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: var(--transition);
}

.filter-btn-search:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

@media (max-width: 991px) {
    .filter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .filter-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .navbar-collapse {
        background: var(--navy) !important;
        border-top: 1px solid rgba(255,255,255,0.06) !important;
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }
    .navbar-default .navbar-nav > li > a {
        padding: 10px 20px !important;
    }
}

/* Adjacent section padding tightener to sit flush */
.hero-editorial-section + .editorial-section {
    padding-top: 100px !important;
}

.inner-page-banner + .editorial-section {
    padding-top: 60px !important;
}

/* Scroll Offset for sticky navigation */
[id] {
    scroll-margin-top: 100px;
}

/* Flex Row helper for equal card heights */
.row.flex-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
.row.flex-row > [class*="col-"] {
    display: flex;
    flex-direction: column;
}
.row.flex-row > [class*="col-"] > * {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* ----------------------------------------------------
   11. BENTO GRID SYSTEM
------------------------------------------------------- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.bento-card {
    background: var(--card-bg) !important;
    border: 1px solid var(--border-subtle) !important;
    padding: 40px 30px;
    border-radius: 24px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(30, 94, 58, 0.3) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(30, 94, 58, 0.05) !important;
}

.bento-card.span-2 {
    grid-column: span 2;
}

.bento-icon {
    width: 56px;
    height: 56px;
    background: rgba(30, 94, 58, 0.1) !important;
    border: 1px solid rgba(30, 94, 58, 0.2) !important;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent-gold);
}

.bento-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
}

.bento-card h3 {
    font-size: 24px !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    margin-bottom: 12px;
    color: var(--text-primary) !important;
    font-family: var(--font-serif) !important;
}

.bento-card p {
    font-family: var(--font-sans) !important;
    font-size: 16px !important;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.68 !important;
}

@media (max-width: 991px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-card.span-2 {
        grid-column: span 2;
    }
}

@media (max-width: 767px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-card.span-2 {
        grid-column: span 1;
    }
}

/* ----------------------------------------------------
   12. FAQ ACCORDION SYSTEM
------------------------------------------------------- */
.faq-container-premium {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-premium {
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item-premium:hover {
    border-color: rgba(30, 94, 58, 0.2);
}

.faq-question-premium {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question-premium h4 {
    margin: 0;
    font-size: 18px !important;
    font-weight: 600 !important;
    color: var(--text-primary) !important;
    font-family: var(--font-sans) !important;
}

.faq-question-premium svg {
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.faq-answer-premium {
    padding: 0 30px 24px 30px;
    display: none;
}

.faq-answer-premium p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

/* ----------------------------------------------------
   13. FLOATING GLASS CARDS & HERO EFFECTS
------------------------------------------------------- */
@keyframes float-gentle-1 {
    0%, 100% { transform: translateY(0px) rotate(-1deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes float-gentle-2 {
    0%, 100% { transform: translateY(0px) rotate(1deg); }
    50% { transform: translateY(-12px) rotate(-1deg); }
}

.hero-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    padding: 16px 20px;
    border-radius: 16px;
    color: var(--navy) !important;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 12px 32px rgba(11, 21, 36, 0.12) !important;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 5;
}

.hero-floating-card svg {
    color: var(--accent-gold);
    width: 16px;
    height: 16px;
    stroke-width: 2.5;
}

.card-fl-1 { top: 25%; left: 6%; animation: float-gentle-1 6s ease-in-out infinite; }
.card-fl-2 { bottom: 25%; left: 5%; animation: float-gentle-2 7s ease-in-out infinite; }
.card-fl-3 { top: 28%; right: 6%; animation: float-gentle-2 8s ease-in-out infinite; }
.card-fl-4 { bottom: 28%; right: 5%; animation: float-gentle-1 7s ease-in-out infinite; }

@media (max-width: 991px) {
    .hero-floating-card {
        display: none !important;
    }
}

/* ----------------------------------------------------
   14. CARD SYSTEM ENHANCEMENTS
------------------------------------------------------- */
.editorial-card {
    background: var(--card-bg) !important;
    border: 1px solid var(--border-subtle) !important;
    border-radius: 16px !important;
    transition: var(--transition) !important;
}

.editorial-card:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(30, 94, 58, 0.25) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4) !important;
}

.editorial-card .card-thumb img {
    transition: var(--transition) !important;
}

.editorial-card:hover .card-thumb img {
    transform: scale(1.05) !important;
}

.card-badge {
    background: rgba(11, 11, 15, 0.75) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border: 1px solid var(--border-subtle) !important;
    border-radius: 99px !important;
    padding: 6px 14px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
}

.card-badge.status-sold {
    color: #FF453A !important;
    border-color: rgba(255, 69, 58, 0.2) !important;
}

.card-badge.status-available {
    color: #30D158 !important;
    border-color: rgba(48, 209, 88, 0.2) !important;
}

/* Soft Glow Blobs */
.glow-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 94, 58, 0.04) 0%, rgba(30, 94, 58, 0) 70%);
    pointer-events: none;
    z-index: 1;
    filter: blur(60px);
}

/* ----------------------------------------------------
   15. GLOBAL LIGHT PANEL & FORM OVERRIDES (LUXURY THEME)
------------------------------------------------------- */
.sidebar-premium-panel,
.reach-us-premium-card,
.contact-form-premium-wrapper,
.property-details-premium-card,
.contact-form-editorial,
.about-metric-card,
.value-card-premium,
.feature-box-editorial,
.timeline-item-premium,
.uniqueness-point-premium {
    background: var(--card-bg) !important;
    border: 1px solid var(--border-subtle) !important;
    border-radius: 20px !important;
    color: var(--text-secondary) !important;
    box-shadow: 0 10px 30px rgba(11, 21, 36, 0.04) !important;
}

.sidebar-premium-panel h3,
.reach-us-premium-card h3,
.contact-form-premium-wrapper h3,
.property-details-premium-card h3,
.contact-form-editorial h3,
.value-card-premium h3,
.feature-box-editorial h3,
.uniqueness-point-premium h3 {
    color: var(--text-primary) !important;
}

/* Form inputs & select fields dark luxury styling */
.sidebar-premium-panel input,
.sidebar-premium-panel select,
.contact-form-premium-wrapper input,
.contact-form-premium-wrapper select,
.contact-form-premium-wrapper textarea,
.contact-form-editorial input,
.contact-form-editorial select,
.contact-form-editorial textarea,
.newsletter-form-group input,
.search-field-wrapper input,
.search-field-wrapper select,
.filter-item select,
.filter-item input,
.form-control {
    background: var(--background) !important;
    border: 1px solid var(--border-subtle) !important;
    color: var(--text-primary) !important;
    border-radius: 12px !important;
    padding: 12px 18px !important;
    font-family: var(--font-sans) !important;
    font-size: 14px !important;
    transition: var(--transition) !important;
    box-shadow: none !important;
    height: auto !important;
}

.sidebar-premium-panel input:focus,
.sidebar-premium-panel select:focus,
.contact-form-premium-wrapper input:focus,
.contact-form-premium-wrapper select:focus,
.contact-form-premium-wrapper textarea:focus,
.contact-form-editorial input:focus,
.contact-form-editorial select:focus,
.contact-form-editorial textarea:focus,
.search-field-wrapper input:focus,
.search-field-wrapper select:focus,
.form-control:focus {
    border-color: var(--accent-gold) !important;
    outline: none !important;
    box-shadow: 0 0 12px rgba(30, 94, 58, 0.15) !important;
}

.sidebar-premium-panel label,
.contact-form-premium-wrapper label,
.contact-form-editorial label,
.search-field-wrapper label {
    color: var(--text-primary) !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

/* General button redesign for all forms */
.btn-premium-solid,
.btn-cta-panel,
.btn-contact-submit {
    background: var(--accent-gold) !important;
    border: 1px solid var(--accent-gold) !important;
    color: #0b0b0f !important;
    font-family: var(--font-sans) !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    padding: 16px 36px !important;
    border-radius: 99px !important;
    transition: var(--transition) !important;
    display: inline-block !important;
    box-shadow: 0 10px 24px rgba(30, 94, 58, 0.15) !important;
    cursor: pointer;
}

.btn-premium-solid:hover,
.btn-cta-panel:hover,
.btn-contact-submit:hover {
    background: var(--navy) !important;
    border-color: var(--navy) !important;
    color: var(--white) !important;
    transform: translateY(-2px) scale(1.03) !important;
    box-shadow: 0 10px 20px rgba(11, 21, 36, 0.12) !important;
}

/* Fix table/grids inside detail card lists */
.property-details-premium-card td,
.property-details-premium-card th {
    border-color: var(--border-subtle) !important;
    color: var(--text-secondary) !important;
}

.property-details-premium-card th {
    color: var(--text-primary) !important;
}

/* ----------------------------------------------------
   16. COVERFLOW GALLERY STYLES
------------------------------------------------------- */
.coverflow-stage {
    position: relative;
    width: 100%;
    height: 580px;
    perspective: 1400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.coverflow-track {
    position: relative;
    width: 420px;
    height: 520px;
    transform-style: preserve-3d;
}

.coverflow-card {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 420px;
    height: 520px;
    margin-left: -210px;
    margin-top: -260px;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
    border-radius: 20px !important;
    background: var(--white) !important;
    border: 1px solid var(--border-subtle) !important;
    box-shadow: 0 10px 30px rgba(11, 21, 36, 0.06) !important;
    overflow: hidden;
}


.coverflow-card.active-card {
    box-shadow: 0 24px 60px rgba(11, 21, 36, 0.15), 0 0 20px rgba(30, 94, 58, 0.15) !important;
    border-color: rgba(30, 94, 58, 0.4) !important;
}

.coverflow-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.9);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1010;
    box-shadow: 0 6px 20px rgba(11, 21, 36, 0.08);
    transition: var(--transition);
}

.coverflow-arrow:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 10px 24px rgba(11, 21, 36, 0.15);
}

.coverflow-arrow.prev-arrow {
    left: 8%;
}

.coverflow-arrow.next-arrow {
    right: 8%;
}

@media (max-width: 991px) {
    .coverflow-arrow.prev-arrow { left: 4%; }
    .coverflow-arrow.next-arrow { right: 4%; }
}

@media (max-width: 768px) {
    .coverflow-stage {
        height: 450px;
    }
    .coverflow-track, .coverflow-card {
        width: 290px;
        height: 400px;
        margin-left: -145px;
        margin-top: -200px;
    }
    .coverflow-card .card-thumb {
        height: 140px !important;
    }
    .coverflow-card .card-content {
        padding: 16px !important;
    }
    .coverflow-card .card-content h5 {
        font-size: 16px !important;
        margin-bottom: 4px !important;
    }
    .coverflow-card .card-location {
        margin-bottom: 8px !important;
        font-size: 12px !important;
    }
    .coverflow-card .card-divider {
        margin: auto 0 8px 0 !important;
    }
    .coverflow-card .card-action-btn {
        margin-top: 10px !important;
        padding: 8px 16px !important;
        font-size: 11px !important;
    }
    .coverflow-arrow {
        width: 44px;
        height: 44px;
    }
    .coverflow-arrow.prev-arrow { left: 2%; }
    .coverflow-arrow.next-arrow { right: 2%; }
}

/* ----------------------------------------------------
   17. PREMIUM PLOTS SHOWCASE & TABS STYLES
------------------------------------------------------- */
.plot-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.plot-tab-btn {
    background: var(--white);
    border: 1px solid var(--border-subtle);
    color: var(--navy);
    padding: 10px 24px;
    border-radius: 99px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: var(--transition);
}

.plot-tab-btn:hover,
.plot-tab-btn.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    box-shadow: 0 6px 18px rgba(11,21,36,0.1);
}

.plots-properties-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 20px;
}

@media (max-width: 1199px) {
    .plots-properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .plots-properties-grid {
        grid-template-columns: 1fr;
    }
}

.plot-card-premium {
    background: var(--white);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(11, 21, 36, 0.04);
    display: flex;
    flex-direction: column;
}

.plot-card-premium:hover {
    transform: translateY(-6px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(11, 21, 36, 0.08);
}

.plot-card-premium .card-thumb {
    height: 190px;
    overflow: hidden;
    position: relative;
}

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

.plot-card-premium:hover .card-thumb img {
    transform: scale(1.06);
}

.plot-card-premium .card-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(11, 21, 36, 0.85);
    backdrop-filter: blur(8px);
    color: var(--gold);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 6px 12px;
    border-radius: 99px;
    border: 1px solid rgba(30, 94, 58, 0.3);
}

.plot-card-premium .card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.plot-card-premium h5 {
    font-family: var(--font-serif) !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: var(--navy) !important;
    margin: 0 0 6px 0 !important;
    line-height: 1.25 !important;
}

.plot-card-premium .card-location {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.plot-card-premium .plot-specs-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    background: var(--off-white);
    border: 1px solid var(--border-subtle);
    padding: 12px 14px;
    border-radius: 10px;
    margin-bottom: 20px;
    margin-top: auto;
}

.plot-card-premium .spec-item span {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
}

.plot-card-premium .spec-item strong {
    font-size: 13px;
    color: var(--navy);
}

.plot-card-premium .plot-action-btn {
    width: 100%;
    background: transparent;
    border: 1px solid var(--navy);
    color: var(--navy);
    padding: 10px 16px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.plot-card-premium .plot-action-btn:hover {
    background: var(--navy);
    color: var(--white);
}

/* ==========================================================================
   GLOBAL EMERALD GRADIENT DESIGN SYSTEM (LUSTER, HIGHLIGHTS, GLOW & LIFT)
   ========================================================================== */

/* Primary Buttons, Success Buttons, CTA Buttons & Form Submits */
.btn-primary,
.btn-success,
.btn-submit,
.submit-btn,
.navbar-btn,
.property-btn,
.btn-emerald,
.btn-cta,
button[type="submit"],
input[type="submit"] {
    background: linear-gradient(180deg, #34D399 0%, #22C55E 48%, #15803D 100%) !important;
    border: 1px solid rgba(52, 211, 153, 0.5) !important;
    color: #FFFFFF !important;
    font-weight: 600 !important;
    transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), inset 0 -2px 4px rgba(0, 0, 0, 0.2), 0 4px 15px rgba(34, 197, 94, 0.15) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

.btn-primary:hover,
.btn-success:hover,
.btn-submit:hover,
.submit-btn:hover,
.navbar-btn:hover,
.property-btn:hover,
.btn-emerald:hover,
.btn-cta:hover,
button[type="submit"]:hover,
input[type="submit"]:hover,
.btn-primary:focus,
.btn-success:focus,
.btn-submit:focus,
.submit-btn:focus {
    background: linear-gradient(180deg, #46E0A8 0%, #29D066 48%, #1B9146 100%) !important;
    border-color: rgba(70, 224, 168, 0.7) !important;
    color: #FFFFFF !important;
    filter: brightness(1.06) !important;
    transform: translateY(-2.5px) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55), inset 0 -2px 4px rgba(0, 0, 0, 0.22), 0 6px 20px rgba(34, 197, 94, 0.25) !important;
}

/* Secondary outline / card action buttons hover */
.plot-action-btn:hover,
.card-action-btn:hover {
    background: linear-gradient(180deg, #34D399 0%, #22C55E 48%, #15803D 100%) !important;
    border-color: rgba(52, 211, 153, 0.6) !important;
    color: #FFFFFF !important;
    transform: translateY(-2px) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), 0 4px 15px rgba(34, 197, 94, 0.15) !important;
}

/* Icons, Badges & Accents */
.card-location i,
.about-founder-tag,
.trust-stat-item-premium i,
.feature-icon-wrapper i,
.property-icon i,
.fa-check,
.fa-check-circle,
.fa-star,
.fa-phone,
.fa-envelope,
.fa-map-marker {
    color: #22C55E !important;
    filter: drop-shadow(0 0 6px rgba(34, 197, 94, 0.2)) !important;
}

/* Pagination & Filter Active States */
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover {
    background: linear-gradient(180deg, #34D399 0%, #22C55E 48%, #15803D 100%) !important;
    border-color: rgba(52, 211, 153, 0.5) !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15) !important;
}

/* Range Slider Handles & Fill */
.irs-bar {
    background: linear-gradient(90deg, #34D399 0%, #22C55E 50%, #15803D 100%) !important;
}
.irs-slider {
    background: linear-gradient(180deg, #34D399 0%, #22C55E 100%) !important;
    border: 2px solid #FFFFFF !important;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.3) !important;
}

/* Scroll To Top Button */
#back-to-top,
#scrollUp {
    background: linear-gradient(180deg, #34D399 0%, #22C55E 48%, #15803D 100%) !important;
    border: 1px solid rgba(52, 211, 153, 0.5) !important;
    color: #FFFFFF !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), 0 4px 15px rgba(34, 197, 94, 0.2) !important;
    transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}
#back-to-top:hover,
#scrollUp:hover {
    transform: translateY(-3px) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55), 0 8px 20px rgba(34, 197, 94, 0.3) !important;
}

/* ----------------------------------------------------
   13. PREMIUM FLOATING GRAPHICS & HERO ANIMATIONS
------------------------------------------------------- */
.hero-floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
}

.hero-floating-left,
.hero-floating-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 290px;
    height: 75%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-floating-left {
    left: 4%;
}

.hero-floating-right {
    right: 4%;
}

/* Glassmorphic Trust Badges (Liquid Glass Refinement) */
.floating-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%) !important;
    backdrop-filter: blur(24px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(160%) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    border-radius: 20px !important;
    padding: 16px 22px !important;
    width: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25), 
                inset 0 1px 1px rgba(255, 255, 255, 0.2),
                inset 0 -1px 1px rgba(0, 0, 0, 0.1),
                0 0 20px rgba(52, 211, 153, 0.03) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    pointer-events: auto;
    cursor: pointer;
}

.floating-badge:hover {
    transform: scale(1.05) translateY(-5px) !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.06) 100%) !important;
    border-color: rgba(52, 211, 153, 0.5) !important;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3), 
                inset 0 1px 1px rgba(255, 255, 255, 0.3),
                0 0 25px rgba(52, 211, 153, 0.2) !important;
}

.badge-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)) !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    color: #34D399 !important;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(52, 211, 153, 0.4);
}

.floating-badge:hover .badge-icon-wrap {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.3), rgba(34, 197, 94, 0.15)) !important;
    border-color: rgba(52, 211, 153, 0.4) !important;
    color: #FFFFFF !important;
    box-shadow: 0 0 15px rgba(52, 211, 153, 0.6);
    transform: scale(1.05);
}

.badge-text-wrap {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.badge-title {
    font-family: var(--font-serif);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #FFFFFF !important;
    line-height: 1.2;
    text-transform: uppercase;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.badge-subtitle {
    font-family: var(--font-sans);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7) !important;
    margin-top: 3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Graphical Line Art (SVG outlines of apartments/plots) */
.hero-graphic-lines {
    position: absolute;
    width: 320px;
    height: 320px;
    opacity: 0.2;
    pointer-events: none;
    z-index: -1;
    filter: drop-shadow(0 0 10px rgba(52, 211, 153, 0.15));
}

.lines-left {
    bottom: -15%;
    left: -15%;
    transform: rotate(6deg);
}

.lines-right {
    top: -15%;
    right: -15%;
    transform: rotate(-6deg);
}

.hero-graphic-lines svg {
    width: 100%;
    height: 100%;
}

.hero-graphic-lines path, 
.hero-graphic-lines rect, 
.hero-graphic-lines line, 
.hero-graphic-lines circle {
    stroke: rgba(255, 255, 255, 0.2) !important; /* Elegant white blueprint line */
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: drawLines 6s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94),
               line-pulse 8s infinite alternate ease-in-out;
}

/* Distinct bobbing float animations for balanced non-synchronization */
.float-up-down-1 {
    animation: float-1 6.5s infinite alternate ease-in-out;
}

.float-up-down-2 {
    animation: float-2 8s infinite alternate ease-in-out;
}

.float-up-down-3 {
    animation: float-3 7.2s infinite alternate ease-in-out;
}

.float-up-down-4 {
    animation: float-4 8.5s infinite alternate ease-in-out;
}

@keyframes float-1 {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-16px) rotate(1.2deg); }
}

@keyframes float-2 {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-12px) rotate(-1.5deg); }
}

@keyframes float-3 {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-14px) rotate(1deg); }
}

@keyframes float-4 {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-18px) rotate(-1.2deg); }
}

@keyframes drawLines {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes line-pulse {
    0% { opacity: 0.15; }
    50% { opacity: 0.45; }
    100% { opacity: 0.15; }
}

/* ----------------------------------------------------
   14. CARD MICRO-INTERACTION REFINEMENTS
------------------------------------------------------- */
/* Bento grid hover overrides */
.bento-card {
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.45s ease, 
                box-shadow 0.45s ease !important;
}

.bento-card:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(52, 211, 153, 0.4) !important;
    box-shadow: 0 20px 45px rgba(11, 21, 36, 0.08), 
                0 0 30px rgba(52, 211, 153, 0.08) !important;
}

.bento-icon {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.bento-card:hover .bento-icon {
    transform: scale(1.12) rotate(6deg);
    background: var(--navy) !important;
    border-color: var(--navy) !important;
    color: #FFFFFF !important;
    box-shadow: 0 8px 20px rgba(11, 21, 36, 0.15);
}

/* Editorial & plot cards hover overrides */
.editorial-card, 
.plot-card-premium,
.coverflow-card {
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.45s ease, 
                box-shadow 0.45s ease !important;
}

.editorial-card:hover, 
.plot-card-premium:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(52, 211, 153, 0.4) !important;
    box-shadow: 0 20px 45px rgba(11, 21, 36, 0.08), 
                0 0 30px rgba(52, 211, 153, 0.08) !important;
}

/* Responsive Viewports for Floating Elements */
@media (max-width: 1280px) {
    .hero-floating-left {
        left: 2%;
    }
    .hero-floating-right {
        right: 2%;
    }
    .hero-floating-left,
    .hero-floating-right {
        width: 260px;
        height: 70%;
    }
}

@media (max-width: 1024px) {
    .hero-floating-left,
    .hero-floating-right {
        width: 220px;
        height: 65%;
    }
    .floating-badge {
        padding: 12px 16px !important;
        border-radius: 16px !important;
    }
    .badge-icon-wrap {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    .badge-title {
        font-size: 11px;
    }
    .badge-subtitle {
        font-size: 9px;
    }
}

.mobile-block {
    display: inline;
}

/* ----------------------------------------------------
   15. WORLD-CLASS MOBILE FIRST RESPONSIVE EXPERIENCE
------------------------------------------------------- */
/* ----------------------------------------------------
   15. WORLD-CLASS MOBILE FIRST RESPONSIVE EXPERIENCE
------------------------------------------------------- */
@media (max-width: 991px) {
    /* Compact navbar on mobile */
    .navbar-default {
        padding: 12px 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        z-index: 9995 !important; /* Sit above drawer overlay */
    }
    
    /* Extremely High Specificity Overrides to force edge alignments */
    body .navbar-default > .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
    }
    
    /* Mobile Header Position overrides - Stays absolute (scrolls off-screen) */
    body .navbar-default,
    body .navbar-default.scrolled {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        margin: 0 !important;
        border-radius: 0 !important;
        border: none !important;
        background: transparent !important;
        box-shadow: none !important;
        transform: none !important;
        padding: 10px 0 !important;
    }
    
    /* Keep logo white and readable on dark hero overlay */
    body .navbar-default .navbar-brand img,
    body .navbar-default.scrolled .navbar-brand img,
    body.home-page .navbar-default:not(.scrolled) .navbar-brand img {
        filter: brightness(0) invert(1) !important;
        height: 34px !important; /* Compact logo size */
    }
    
    /* Keep toggle hamburger icons white and readable */
    body .navbar-default .navbar-toggle .icon-bar,
    body .navbar-default.scrolled .navbar-toggle .icon-bar {
        background-color: #FFFFFF !important;
    }
    
    /* Mobile Navbar Header Layout - Absolute references */
    body .navbar-default .navbar-header {
        position: relative !important;
        width: 100% !important;
        height: 60px !important;
        padding: 0 !important; /* Reset padding to hug edges */
        margin: 0 !important;
        display: block !important; /* Standard block parent for absolute children */
        float: none !important; /* Clear bootstrap float */
    }
    
    body .navbar-default .navbar-header .navbar-brand {
        position: absolute !important;
        left: 10px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        height: auto !important;
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
        z-index: 10001 !important;
    }
    
    /* Elegant custom hamburger menu toggle button */
    body .navbar-default .navbar-header .navbar-toggle {
        position: absolute !important;
        right: 10px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 5px !important;
        border: none !important;
        background: transparent !important;
        padding: 0 !important; /* Clear padding to hug right edge */
        margin: 0 !important; /* Clear margins to hug right edge */
        cursor: pointer;
        width: 32px !important; /* Compact size */
        height: 32px !important;
        z-index: 10000 !important;
        transition: all 0.3s ease !important;
        box-shadow: none !important;
        outline: none !important;
    }
    
    body .navbar-default .navbar-header .navbar-toggle:hover,
    body .navbar-default .navbar-header .navbar-toggle:focus,
    body .navbar-default .navbar-header .navbar-toggle:active {
        background-color: transparent !important;
        border-color: transparent !important;
        outline: none !important;
        box-shadow: none !important;
    }
    
    .navbar-toggle .icon-bar {
        width: 22px !important;
        height: 2px !important;
        background-color: #FFFFFF !important; /* White color on hero */
        border-radius: 99px !important;
        transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
        display: block !important;
        margin: 0 !important;
    }
    
    /* Scrolled nav hamburger icon color */
    .navbar-default.scrolled .navbar-toggle .icon-bar,
    body.inner-page .navbar-toggle .icon-bar {
        background-color: #FFFFFF !important; /* Make it white on dark background nav */
    }
    
    /* If scrolled, nav has white links and icons or dark depending on background */
    body.inner-page .navbar-default.scrolled .navbar-toggle .icon-bar {
        background-color: var(--navy) !important;
    }
    body.inner-page .navbar-default:not(.scrolled) .navbar-toggle .icon-bar {
        background-color: var(--navy) !important; /* Dark on inner pages without scrolled */
    }
    
    /* Hamburger to X morph */
    .navbar-toggle:not(.collapsed) .icon-bar:nth-child(2) {
        transform: translateY(7px) rotate(45deg) !important;
    }
    .navbar-toggle:not(.collapsed) .icon-bar:nth-child(3) {
        opacity: 0 !important;
        transform: scale(0) !important;
    }
    .navbar-toggle:not(.collapsed) .icon-bar:nth-child(4) {
        transform: translateY(-7px) rotate(-45deg) !important;
    }

    /* Glassmorphism slide-in drawer from the right */
    .navbar-collapse {
        position: fixed !important;
        top: 0 !important;
        right: -300px !important;
        width: 300px !important;
        height: 100vh !important;
        background: rgba(11, 21, 36, 0.95) !important;
        backdrop-filter: blur(28px) saturate(160%) !important;
        -webkit-backdrop-filter: blur(28px) saturate(160%) !important;
        border-left: 1px solid rgba(255, 255, 255, 0.08) !important;
        z-index: 9999 !important; /* Always on top */
        margin: 0 !important;
        padding: 80px 24px 40px 24px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        box-shadow: -10px 0 45px rgba(0, 0, 0, 0.3) !important;
        overflow-y: auto !important;
        pointer-events: auto !important; /* Ensure links are clickable */
    }
    
    /* Show drawer when open */
    .navbar-collapse.in {
        transform: translateX(-300px) !important;
    }
    
    /* Prevent Bootstrap's height transition during collapse */
    .navbar-collapse.collapsing {
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        height: 100vh !important;
        display: flex !important;
        width: 300px !important;
        position: fixed !important;
        top: 0 !important;
        right: -300px !important;
    }

    /* Staggered animated navigation links inside drawer */
    .navbar-collapse .navbar-nav {
        margin: 40px 0 0 0 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
        float: none !important;
    }
    
    .navbar-collapse .navbar-nav > li {
        width: 100% !important;
        opacity: 0;
        transform: translateX(25px);
        transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease;
        float: none !important;
    }
    
    /* Trigger staggered slide-in when menu is visible */
    .navbar-collapse.in .navbar-nav > li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .navbar-collapse.in .navbar-nav > li:nth-child(1) { transition-delay: 0.08s; }
    .navbar-collapse.in .navbar-nav > li:nth-child(2) { transition-delay: 0.14s; }
    .navbar-collapse.in .navbar-nav > li:nth-child(3) { transition-delay: 0.20s; }
    .navbar-collapse.in .navbar-nav > li:nth-child(4) { transition-delay: 0.26s; }
    .navbar-collapse.in .navbar-nav > li:nth-child(5) { transition-delay: 0.32s; }
    .navbar-collapse.in .navbar-nav > li:nth-child(6) { transition-delay: 0.38s; }
    
    .navbar-collapse .navbar-nav > li > a {
        color: rgba(255, 255, 255, 0.75) !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        letter-spacing: 0.06em !important;
        text-transform: uppercase !important;
        padding: 14px 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
        display: block !important;
        transition: all 0.3s ease !important;
        pointer-events: auto !important;
    }
    
    .navbar-collapse .navbar-nav > li > a:hover,
    .navbar-collapse .navbar-nav > li.active > a {
        color: #34D399 !important;
        border-color: rgba(52, 211, 153, 0.3) !important;
        padding-left: 6px !important;
    }
    
    /* Mobile CTA button inside drawer */
    .navbar-collapse .nav-button-cta {
        margin: 24px 0 0 0 !important;
        width: 100% !important;
        text-align: center !important;
        padding: 14px 24px !important;
        font-size: 14px !important;
    }

    /* Backdrop overlay style */
    .navbar-drawer-overlay {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: rgba(11, 21, 36, 0.45) !important;
        backdrop-filter: blur(5px) !important;
        -webkit-backdrop-filter: blur(5px) !important;
        opacity: 0;
        pointer-events: none !important;
        z-index: 9990 !important; /* Below navbar and drawer content */
        transition: opacity 0.4s ease !important;
    }
    
    .navbar-drawer-overlay.active {
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    
    body.drawer-open {
        overflow: hidden !important;
    }

    /* Hide large desktop badges on mobile/tablet viewports */
    .hero-floating-elements .floating-badge {
        display: none !important;
    }
    
    /* Position background-only blueprint SVGs */
    .hero-floating-elements {
        position: absolute !important;
        inset: 0 !important;
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        pointer-events: none !important;
        z-index: 1 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .hero-floating-left,
    .hero-floating-right {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100% !important;
        transform: none !important;
        display: block !important;
    }
    
    /* Low opacity scaled blueprint drawings */
    .hero-graphic-lines {
        position: absolute !important;
        width: 180px !important;
        height: 180px !important;
        opacity: 0.05 !important;
        z-index: -1 !important;
        filter: none !important;
    }
    
    .lines-left {
        bottom: 6% !important;
        left: 4% !important;
        top: auto !important;
        right: auto !important;
        transform: rotate(6deg) !important;
    }
    
    .lines-right {
        top: 6% !important;
        right: 4% !important;
        bottom: auto !important;
        left: auto !important;
        transform: rotate(-6deg) !important;
    }
    
    /* Simplified faint pulse for backgroundSVGs */
    .hero-graphic-lines path, 
    .hero-graphic-lines rect, 
    .hero-graphic-lines line, 
    .hero-graphic-lines circle {
        stroke: rgba(255, 255, 255, 0.15) !important;
        animation: drawLines 6s forwards ease-out,
                   line-pulse-m 10s infinite alternate ease-in-out !important;
    }
    
    @keyframes line-pulse-m {
        0%, 100% { opacity: 0.15; }
        50% { opacity: 0.35; }
    }
    
    /* Featured Projects swipe track container configuration */
    .coverflow-stage {
        height: auto !important;
        overflow: visible !important;
        display: block !important;
        padding: 0 !important;
        position: relative !important;
    }
    
    .coverflow-track {
        display: flex !important;
        flex-direction: row !important;
        width: 100% !important;
        height: auto !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        scroll-behavior: smooth !important;
        -webkit-overflow-scrolling: touch !important;
        padding: 20px 20px 30px 20px !important;
        gap: 20px !important;
        transform: none !important;
        transform-style: flat !important;
        margin: 0 !important;
    }
    
    .coverflow-track::-webkit-scrollbar {
        display: none !important;
    }
    
    .coverflow-card {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
        width: 280px !important; /* Compact size to fit viewport and show next card peek */
        height: 380px !important;
        scroll-snap-align: center !important;
        transform: none !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        box-shadow: 0 8px 25px rgba(11, 21, 36, 0.08) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
    }
    
    .coverflow-arrow {
        display: none !important; /* Hide arrows on touch slider */
    }

}





