/* 1SquareFeet Website CSS */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
    /* PREMIUM BLUE THEME PALETTE */
    --primary:        #2563EB; /* Premium Royal Blue */
    --primary-light:  #60A5FA; /* Lighter Blue */
    --primary-dark:   #1E40AF; /* Deep Professional Blue */
    --accent:         #2563EB; /* Blue Accent */
    
    --navy:           #0F172A; /* Slate Navy (Used for text/contrast) */
    --navy-mid:       #1E293B; 
    --navy-light:     #334155;
    
    --white:          #FFFFFF; /* Pure White */
    --paper:          #FFFFFF; /* Paper White */
    --bg-body:        #FFFFFF; /* Page Background */
    --bg-alt:         #F8FAFC; /* Section Background (Slate 50) */
    
    --blue:           #2563EB; 
    --blue-light:     #60A5FA;
    --blue-dark:      #1E40AF;
    --blue-glow:      rgba(37, 99, 235, 0.15);
    --blue-muted:     rgba(37, 99, 235, 0.05);
    
    --grey-50:        #F8F9FA;
    --grey-100:       #F1F5F9;
    --grey-200:       #E2E8F0;
    --grey-300:       #CBD5E1;
    --grey-400:       #94A3B8;
    --grey-600:       #475569;
    
    --text-main:      #0A1628; /* Deep Navy for maximum readability */
    --text-muted:     #64748B; /* Slate for subtext */
    
    --font-sans:      'Outfit', system-ui, sans-serif;
    --font-serif:     'Cormorant Garamond', Georgia, serif;
    
    --fs-xs:          clamp(0.72rem, 0.68rem + 0.2vw, 0.8rem);
    --fs-sm:          clamp(0.85rem, 0.8rem + 0.25vw, 0.95rem);
    --fs-base:        clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
    --fs-md:          clamp(1.1rem, 1rem + 0.5vw, 1.3rem);
    --fs-lg:          clamp(1.6rem, 1.4rem + 1vw, 2.4rem);
    --fs-xl:          clamp(2.4rem, 2rem + 2vw, 4rem);
    --fs-display:     clamp(3rem, 2.5rem + 4vw, 6rem);
    
    --sp-05: 0.25rem; --sp-1: 0.5rem; --sp-15: 0.75rem; --sp-2: 1rem; 
    --sp-25: 1.25rem; --sp-3: 1.5rem; --sp-35: 1.75rem; --sp-4: 2rem;
    --sp-5: 3rem; --sp-6: 4rem; --sp-7: 5rem; --sp-8: 6rem; 
    --sp-9: 7rem; --sp-10: 8rem; --sp-12: 10rem; --sp-15: 12rem;
    
    --shadow-sm:  0 2px 8px rgba(10, 22, 40, 0.04);
    --shadow-md:  0 12px 32px rgba(10, 22, 40, 0.08);
    --shadow-lg:  0 24px 64px rgba(10, 22, 40, 0.12);
    --shadow-blue: 0 12px 36px rgba(37, 99, 235, 0.2);
    
    --radius-sm: 8px; --radius-md: 16px; --radius-lg: 28px; --radius-xl: 100px;
    --transition: all 0.55s cubic-bezier(0.16,1,0.3,1);
    --transition-fast: all 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ============================================================
   BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    background: var(--white);
    color: var(--text-main);
    line-height: 1.65;
    font-size: var(--fs-base);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Beautiful Custom Selection */
::selection {
    background: var(--blue);
    color: var(--white);
}
::-moz-selection {
    background: var(--blue);
    color: var(--white);
}

/* Custom Luxury Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--grey-50);
}
::-webkit-scrollbar-thumb {
    background: var(--blue-light);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--blue);
}

h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-sans);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 0;
}
.luxury-heading { font-family: var(--font-serif); font-weight: 500; letter-spacing: -0.01em; }
.luxury-heading em { font-style: italic; color: var(--blue-light); }
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* Utilities */
.text-blue { color: var(--blue) !important; }
.text-navy-blue { color: var(--navy) !important; }
.bg-navy-blue { background-color: var(--navy) !important; }
.bg-light-grey { background-color: var(--grey-100) !important; }
.ls-1 { letter-spacing: 1px; }
.ls-2 { letter-spacing: 2px; }
.fw-extrabold, .fw-800 { font-weight: 800 !important; }
.fw-black, .fw-900 { font-weight: 900 !important; }
.section-padding { padding: var(--sp-8) 0; }
@media (max-width: 991.98px) { .section-padding { padding: var(--sp-6) 0; } }
@media (max-width: 767.98px) { .section-padding { padding: var(--sp-4) 0; } }

.section-header { margin-bottom: var(--sp-4); }
.section-label {
    display: inline-flex; align-items: center; gap: 1rem;
    font-size: 0.8rem; font-weight: 800; letter-spacing: 3px;
    text-transform: uppercase; color: var(--blue); margin-bottom: 0.5rem;
}
.section-label::before { 
    content: ''; width: 40px; height: 2px; 
    background: linear-gradient(to right, var(--blue), transparent); 
    border-radius: 4px; 
}
.section-title { 
    font-size: 2.8rem; font-weight: 900; color: var(--navy); 
    letter-spacing: -0.04em; margin-top: 0; line-height: 1.1;
}
.section-title span.text-blue {
    position: relative; display: inline-block;
}
.section-title span.text-blue::after {
    content: ''; position: absolute; bottom: 8px; left: 0; width: 100%; height: 8px;
    background: rgba(37, 99, 235,0.12); z-index: -1;
}

/* Spacing Engine - Standardized Utilities */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: var(--sp-1) !important; }
.mt-2 { margin-top: var(--sp-2) !important; }
.mt-3 { margin-top: var(--sp-3) !important; }
.mt-4 { margin-top: var(--sp-4) !important; }
.mt-5 { margin-top: var(--sp-5) !important; }
.mt-6 { margin-top: var(--sp-6) !important; }
.mt-8 { margin-top: var(--sp-8) !important; }
.mt-10 { margin-top: var(--sp-10) !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: var(--sp-1) !important; }
.mb-2 { margin-bottom: var(--sp-2) !important; }
.mb-3 { margin-bottom: var(--sp-3) !important; }
.mb-4 { margin-bottom: var(--sp-4) !important; }
.mb-5 { margin-bottom: var(--sp-5) !important; }
.mb-6 { margin-bottom: var(--sp-6) !important; }
.mb-8 { margin-bottom: var(--sp-8) !important; }
.mb-10 { margin-bottom: var(--sp-10) !important; }

.pt-0 { padding-top: 0 !important; }
.pt-1 { padding-top: var(--sp-1) !important; }
.pt-2 { padding-top: var(--sp-2) !important; }
.pt-3 { padding-top: var(--sp-3) !important; }
.pt-4 { padding-top: var(--sp-4) !important; }
.pt-5 { padding-top: var(--sp-5) !important; }
.pt-6 { padding-top: var(--sp-6) !important; }
.pt-8 { padding-top: var(--sp-8) !important; }
.pt-10 { padding-top: var(--sp-10) !important; }

.pb-0 { padding-bottom: 0 !important; }
.pb-1 { padding-bottom: var(--sp-1) !important; }
.pb-2 { padding-bottom: var(--sp-2) !important; }
.pb-3 { padding-bottom: var(--sp-3) !important; }
.pb-4 { padding-bottom: var(--sp-4) !important; }
.pb-5 { padding-bottom: var(--sp-5) !important; }
.pb-6 { padding-bottom: var(--sp-6) !important; }
.pb-8 { padding-bottom: var(--sp-8) !important; }
.pb-10 { padding-bottom: var(--sp-10) !important; }

.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
.py-5 { padding-top: var(--sp-5) !important; padding-bottom: var(--sp-5) !important; }
.py-6 { padding-top: var(--sp-6) !important; padding-bottom: var(--sp-6) !important; }
.py-8 { padding-top: var(--sp-8) !important; padding-bottom: var(--sp-8) !important; }
.py-10 { padding-top: var(--sp-10) !important; padding-bottom: var(--sp-10) !important; }

.px-0 { padding-left: 0 !important; padding-right: 0 !important; }
.px-4 { padding-left: var(--sp-4) !important; padding-right: var(--sp-4) !important; }
.px-5 { padding-left: var(--sp-5) !important; padding-right: var(--sp-5) !important; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar-luxury {
    padding: 1rem 0;
    background: rgba(255,255,255,0.97);
    border-bottom: 1px solid var(--grey-100);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1050;
}

/* Homepage Transparent Mode */
.navbar-transparent-mode {
    background: transparent;
    border-bottom-color: rgba(10, 22, 40, 0.05);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.navbar-transparent-mode .brand-logo,
.navbar-transparent-mode .nav-link,
.navbar-transparent-mode .nav-browse {
    color: var(--navy) !important;
}
.navbar-transparent-mode .btn-nav-outline {
    border-color: rgba(10, 22, 40, 0.1);
    color: var(--navy) !important;
}
.navbar-transparent-mode .nav-link::after {
    background: var(--blue);
}
.navbar-transparent-mode .toggler-icon span { background: var(--navy); }

.navbar-luxury.scrolled {
    padding: 0.6rem 0;
    background: rgba(255,255,255,0.97) !important;
    box-shadow: 0 4px 24px rgba(10,22,40,0.08);
    border-bottom-color: transparent;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.navbar-luxury.scrolled .brand-logo,
.navbar-luxury.scrolled .nav-link,
.navbar-luxury.scrolled .nav-browse {
    color: var(--navy) !important;
}
.navbar-luxury.scrolled .btn-nav-outline {
    border-color: var(--grey-200);
    color: var(--navy) !important;
}
.navbar-luxury.scrolled .nav-link::after {
    background: var(--blue);
}
.navbar-luxury.scrolled .toggler-icon span { background: var(--navy); }
.brand-logo {
    font-family: var(--font-sans);
    font-weight: 900;
    font-size: 1.3rem;
    letter-spacing: -0.06em;
    color: var(--navy);
}
.brand-logo em { font-style: normal; color: var(--blue); }
.navbar-luxury .nav-link {
    font-weight: 700;
    font-size: var(--fs-xs);
    color: var(--navy) !important;
    padding: 0.5rem 1.1rem !important;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition-fast);
}
.navbar-luxury .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; right: 50%;
    height: 2px;
    background: var(--blue);
    border-radius: 2px;
    transition: var(--transition-fast);
}
.navbar-luxury .nav-link:hover::after,
.navbar-luxury .nav-link.active::after { left: 1.1rem; right: 1.1rem; }
.navbar-luxury .nav-link:hover,
.navbar-luxury .nav-link.active { color: var(--blue) !important; }
.nav-browse {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: var(--fs-xs); font-weight: 700; color: var(--text-muted);
    letter-spacing: 0.05em; text-transform: uppercase;
    transition: var(--transition-fast);
}
.nav-browse:hover { color: var(--blue); }
.nav-browse i { color: var(--blue); }
.btn-nav-outline {
    display: inline-flex; align-items: center;
    border: 1.5px solid var(--navy);
    color: var(--navy);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-xl);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition-fast);
}
.btn-nav-outline:hover { background: var(--navy); color: var(--white); }

/* Mobile toggler */
.toggler-icon { display: flex; flex-direction: column; gap: 5px; width: 22px; cursor: pointer; }
.toggler-icon span { display: block; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition-fast); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-blue {
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: var(--white); border: none;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-xl);
    font-weight: 800; font-size: var(--fs-xs);
    letter-spacing: 0.15em; text-transform: uppercase;
    cursor: pointer; position: relative; overflow: hidden;
    transition: var(--transition-fast);
    box-shadow: 0 4px 16px rgba(37, 99, 235,0.4);
    animation: bluePulse 3s infinite alternate;
    gap: 0.5rem;
}

@keyframes bluePulse {
    0% { box-shadow: 0 4px 16px rgba(37, 99, 235,0.3); }
    50% { box-shadow: 0 8px 24px rgba(37, 99, 235,0.6); }
    100% { box-shadow: 0 4px 16px rgba(37, 99, 235,0.3); }
}

.btn-blue:hover { transform: translateY(-2px) scale(1.02); box-shadow: var(--shadow-blue); color: var(--white); animation: none; }
.btn-blue::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.18), transparent);
    transform: translateX(-100%); transition: transform 0.5s;
}
.btn-blue:hover::before { transform: translateX(100%); }
.btn-blue-sm { padding: 0.55rem 1.25rem; font-size: 0.7rem; }
.btn-navy {
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--navy); color: var(--white); border: none;
    padding: 0.85rem 2rem; border-radius: var(--radius-xl);
    font-weight: 800; font-size: var(--fs-xs);
    letter-spacing: 0.1em; text-transform: uppercase;
    cursor: pointer; transition: var(--transition-fast);
    box-shadow: var(--shadow-sm); gap: 0.5rem;
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--white); }
.btn-outline-navy {
    display: inline-flex; align-items: center;
    border: 1.5px solid var(--navy); color: var(--navy);
    padding: 0.7rem 1.5rem; border-radius: var(--radius-xl);
    font-weight: 700; font-size: var(--fs-xs);
    letter-spacing: 0.05em; text-transform: uppercase;
    transition: var(--transition-fast);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-outline-white {
    display: inline-flex; align-items: center; justify-content: center;
    border: 1.5px solid rgba(255,255,255,0.5); color: var(--white);
    padding: 0.85rem 2rem; border-radius: var(--radius-xl);
    font-weight: 700; font-size: var(--fs-xs);
    letter-spacing: 0.1em; text-transform: uppercase;
    transition: var(--transition-fast);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); color: var(--white); }
.btn-outline-blue {
    display: inline-flex; align-items: center; justify-content: center;
    border: 1.5px solid var(--blue); color: var(--blue);
    padding: 0.85rem 2rem; border-radius: var(--radius-xl);
    font-weight: 700; font-size: var(--fs-xs);
    letter-spacing: 0.1em; text-transform: uppercase;
    transition: var(--transition-fast);
}
.btn-outline-blue:hover { background: var(--blue); color: var(--white); }

/* ============================================================
   HERO
   ============================================================ */
.hero-luxury {
    min-height: 100vh;
    background-size: cover;
    background-position: center 30%;
    background-attachment: fixed;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.hero-luxury::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0.8) 100%);
    z-index: 1;
}
.hero-luxury::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 250px;
    background: linear-gradient(to top, var(--white) 0%, transparent 100%);
    z-index: 2;
}
.hero-content {
    position: relative; z-index: 4;
    text-align: center; width: 100%; max-width: 1100px;
    padding: 0 1.5rem;
}
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.75rem;
    color: var(--blue-dark); font-size: 0.75rem; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase; margin-bottom: 1.5rem;
    opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
    background: rgba(37, 99, 235,0.1);
    border: 1px solid rgba(37, 99, 235,0.2);
    border-radius: var(--radius-xl);
    padding: 0.4rem 1.2rem;
    backdrop-filter: blur(12px);
}
.hero-title {
    font-family: var(--font-serif); color: var(--navy);
    font-size: clamp(3.2rem, 6vw, 6.5rem); font-weight: 600; line-height: 1.0;
    margin-bottom: 1.25rem; letter-spacing: -0.04em;
    opacity: 0; animation: fadeUp 0.8s 0.35s forwards;
    text-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.hero-title em { 
    display: inline-block; font-style: italic; 
    background: linear-gradient(90deg, var(--blue-dark), var(--blue-light), var(--blue-dark));
    background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}
.hero-subtitle {
    color: var(--text-muted); font-size: 1.05rem; font-weight: 400;
    max-width: 520px; margin: 0 auto 2.5rem;
    opacity: 0; animation: fadeUp 0.8s 0.5s forwards;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Hero search wrap */
.hero-search-wrap {
    opacity: 0; animation: fadeUp 0.8s 0.65s forwards;
    max-width: 960px; margin: 0 auto;
}
.search-tabs {
    display: inline-flex; gap: 0; margin-bottom: -1px;
    background: rgba(37, 99, 235,0.08); border-radius: 12px 12px 0 0;
    padding: 4px; border: 1px solid rgba(37, 99, 235,0.15); backdrop-filter: blur(16px);
}
.search-tab {
    background: transparent; border: none; color: var(--text-muted);
    padding: 0.5rem 1.25rem; border-radius: 8px;
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em;
    text-transform: uppercase; cursor: pointer; transition: var(--transition-fast);
}
.search-tab.active { background: var(--white); color: var(--blue-dark); box-shadow: 0 2px 8px rgba(37, 99, 235,0.12); }
.search-tab:not(.active):hover { color: var(--blue); }

/* Search bar */
.luxury-search {
    background: var(--white);
    padding: 0.6rem 0.6rem 0.6rem 0;
    border-radius: var(--radius-xl);
    box-shadow: 0 32px 80px rgba(10,22,40,0.1), 0 0 0 1px rgba(37, 99, 235,0.1);
    display: flex; align-items: stretch;
    border: none; backdrop-filter: blur(20px);
    position: relative;
}
.search-group {
    flex: 1; display: flex; flex-direction: column;
    padding: 0.6rem 1.4rem; border-right: 1px solid var(--grey-200);
    min-width: 0;
}
.search-group-sm { flex: 0 0 120px; }
.search-group:last-of-type { border-right: none; }
.search-label {
    font-size: 0.62rem; font-weight: 800; color: var(--grey-400);
    text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 3px; white-space: nowrap;
}
.search-input {
    border: none; outline: none; font-weight: 600; font-size: 0.92rem;
    color: var(--navy); background: transparent; width: 100%;
    font-family: var(--font-sans); padding: 0;
}
.search-input:focus { color: var(--blue-dark); }
.search-input::placeholder { color: var(--grey-400); font-weight: 400; }
.search-btn-wrap { display: flex; align-items: center; padding: 0 0.5rem 0 0.75rem; }
.btn-search {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: var(--white); border: none;
    padding: 1rem 2rem; border-radius: var(--radius-xl);
    font-weight: 800; font-size: 0.85rem; letter-spacing: 0.08em;
    white-space: nowrap; cursor: pointer; transition: var(--transition-fast);
    box-shadow: 0 6px 24px rgba(37, 99, 235,0.3);
}
.btn-search:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(37, 99, 235,0.45); }

/* Smart search dropdown */
.smart-search-wrap { position: relative; }
.smart-search-dropdown {
    position: absolute; top: calc(100% + 8px); left: -1.4rem;
    background: var(--white); border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg); border: 1px solid var(--grey-100);
    min-width: 260px; z-index: 100; overflow: hidden;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: var(--transition-fast);
}
.smart-search-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }
.smart-suggestion-group { padding: 0.75rem 0; }
.smart-suggestion-label {
    padding: 0.25rem 1rem 0.5rem;
    font-size: 0.65rem; font-weight: 800; color: var(--grey-400);
    text-transform: uppercase; letter-spacing: 1.5px;
}
.smart-suggestion {
    padding: 0.6rem 1rem; font-size: 0.88rem; font-weight: 600;
    color: var(--navy); cursor: pointer; transition: var(--transition-fast);
    display: flex; align-items: center;
}
.smart-suggestion:hover { background: var(--grey-50); color: var(--blue); }

/* Hero quick links */
.hero-quick-links { margin-top: 1.25rem; display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.hero-quick-tag {
    background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-xl);
    padding: 0.3rem 0.9rem; font-size: 0.72rem; font-weight: 600;
    backdrop-filter: blur(8px); transition: var(--transition-fast);
}
.hero-quick-tag:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }

/* Scroll hint */
.hero-scroll-hint {
    position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
    z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    color: rgba(255,255,255,0.5); font-size: 0.7rem; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase;
}
.scroll-mouse {
    width: 22px; height: 36px; border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px; display: flex; justify-content: center; padding-top: 6px;
}
.scroll-wheel {
    width: 3px; height: 8px; background: rgba(255,255,255,0.5);
    border-radius: 2px; animation: scrollAnim 1.8s infinite;
}
@keyframes scrollAnim {
    0%   { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
    background: var(--bg-alt);
    border-top: 1px solid var(--grey-200);
    border-bottom: 1px solid var(--grey-100);
    position: relative;
    overflow: hidden;
    padding: 0;
    box-shadow: 0 4px 20px rgba(10,22,40,0.03);
    z-index: 10;
}
.trust-bar::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue-light), transparent);
    opacity: 0.3;
}
.trust-bar-item {
    display: flex; align-items: center; gap: 1.2rem;
    padding: 2rem 2.5rem;
    border-right: 1px solid var(--grey-100);
    transition: all 0.4s ease;
}
.trust-bar-item:hover { 
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.trust-bar-item:hover strong { color: var(--blue-dark); }
.trust-bar-item:hover span { color: var(--text-muted); }
.trust-bar-item > i {
    font-size: 1.5rem; color: var(--blue); flex-shrink: 0;
    width: 52px; height: 52px;
    background: var(--white);
    border: 1.5px solid var(--grey-200);
    border-radius: 16px; display: flex; align-items: center; justify-content: center;
    transition: all 0.5s cubic-bezier(0.34,1.56,0.64,1);
    box-shadow: 0 4px 12px rgba(10,22,40,0.05);
}
.trust-bar-item:hover > i {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: var(--white);
    border-color: var(--blue);
}
.trust-bar-item strong { 
    display: block; color: var(--white); font-size: 1rem; font-weight: 700; 
    letter-spacing: -0.01em; margin-bottom: 2px;
}
.trust-bar-item span { 
    display: block; color: rgba(255,255,255,0.6); font-size: 0.78rem; 
    font-weight: 500;
}

/* ============================================================
   CATEGORY CARDS
   ============================================================ */
.category-card {
    display: flex; flex-direction: column; align-items: center;
    padding: 2.2rem 1.2rem; background: var(--white);
    border: 1px solid var(--grey-100); border-radius: 24px;
    text-align: center; text-decoration: none;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); cursor: pointer;
    position: relative; overflow: hidden;
    box-shadow: 0 4px 12px rgba(10,22,40,0.04);
}
.category-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235,0.1), transparent 70%);
    opacity: 0; transition: opacity 0.4s;
}
.category-card:hover::before { opacity: 1; }
.category-card:hover {
    border-color: var(--blue-light); transform: translateY(-10px);
    box-shadow: 0 24px 48px rgba(10,22,40,0.08), 0 0 0 1.5px var(--blue-light);
}
.category-card-blue { border-color: var(--blue-glow); background: linear-gradient(135deg, var(--white), #f0f7ff); }
.category-card-blue:hover { border-color: var(--blue); }
.category-icon {
    width: 68px; height: 68px; background: var(--paper);
    border-radius: 20px; display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem; color: var(--navy); margin-bottom: 1rem;
    transition: all 0.5s cubic-bezier(0.34,1.56,0.64,1);
    box-shadow: 0 4px 15px rgba(10,22,40,0.05);
    border: 1px solid rgba(10,22,40,0.03);
}
.category-card:hover .category-icon {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    color: var(--white); transform: translateY(-5px) rotate(-5deg) scale(1.1);
    box-shadow: 0 12px 28px rgba(10,22,40,0.2);
    border-color: var(--navy);
}
.category-card-blue:hover .category-icon {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    box-shadow: 0 12px 28px rgba(37, 99, 235,0.35);
    border-color: var(--blue);
}
.category-card-blue .category-icon { background: var(--blue-muted); color: var(--blue); }
.category-name { font-size: 0.92rem; font-weight: 800; color: var(--navy); margin-bottom: 0.25rem; letter-spacing: -0.01em; }
.category-count { font-size: 0.72rem; color: var(--text-muted); font-weight: 600; }

/* ============================================================
   PROPERTY CARDS
   ============================================================ */
.prop-card {
    background: var(--white); border-radius: 24px;
    overflow: hidden; border: 1.5px solid rgba(10,22,40,0.04);
    box-shadow: 0 8px 24px rgba(10,22,40,0.06);
    transition: all 0.6s cubic-bezier(0.2,0.8,0.2,1);
    height: 100%; position: relative;
}
.prop-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(10,22,40,0.12), 0 0 0 1px var(--blue-light);
    border-color: var(--blue-light);
}
.prop-card-featured { border-color: var(--blue-glow); }
.prop-card-featured::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--blue-light), var(--blue)); 
    z-index: 5; background-size: 200% auto;
    animation: blueShimmer 3s linear infinite;
}
@keyframes blueShimmer { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }
.prop-card-img { position: relative; overflow: hidden; height: 260px; }
.prop-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.2,0.8,0.2,1);
}
.prop-card-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent 50%);
    opacity: 0; transition: opacity 0.6s; z-index: 2;
}
.prop-card:hover .prop-card-img::after { opacity: 1; }
.prop-card-img::before {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to bottom, transparent 40%, rgba(10,22,40,0.4) 100%);
    opacity: 0.15; transition: all 0.6s ease;
}
.prop-card:hover .prop-card-img::before { opacity: 0.6; }
.prop-badge-purpose {
    position: absolute; top: 1.25rem; right: 1.25rem; z-index: 2;
    background: var(--white); color: var(--navy);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    font-size: 0.65rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
    padding: 0.5rem 1.1rem; border-radius: 12px; 
    box-shadow: 0 8px 20px rgba(10,22,40,0.1);
    border: 1px solid var(--grey-100);
}
.prop-badge-featured {
    position: absolute; top: 1.25rem; left: 1.25rem; z-index: 2;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: var(--white); font-size: 0.65rem; font-weight: 800;
    letter-spacing: 1.5px; text-transform: uppercase;
    padding: 0.5rem 1.1rem; border-radius: 12px;
    box-shadow: 0 8px 25px rgba(37, 99, 235,0.4);
    border: 1px solid rgba(255,255,255,0.2);
}
.prop-card-actions {
    position: absolute; bottom: 1.25rem; right: 1.25rem; z-index: 3;
    display: flex; gap: 0.6rem;
    opacity: 0; transform: translateY(15px); transition: all 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
.prop-card:hover .prop-card-actions { opacity: 1; transform: translateY(0); }
.prop-action-btn {
    width: 42px; height: 42px; background: rgba(255,255,255,0.95);
    border: 1px solid rgba(10,22,40,0.05); border-radius: 14px; 
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: var(--navy); cursor: pointer;
    transition: all 0.3s ease; backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.prop-action-btn:hover {
    background: var(--blue); color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(37, 99, 235,0.3);
}
.prop-action-btn:hover, .prop-action-btn.active { background: var(--blue); color: var(--white); }
.wishlist-btn.active {
    background: #fee2e2; color: #ef4444;
    animation: heartPop 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes heartPop {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.35); }
    100% { transform: scale(1); }
}
.prop-card-body {
    padding: 1.8rem; background: var(--white); position: relative;
    transition: background 0.4s ease;
}
.prop-card:hover .prop-card-body { background: #fafafa; }
.prop-price {
    font-size: 1.6rem; font-weight: 900;
    color: var(--navy);
    letter-spacing: -0.05em; margin-bottom: 0.6rem;
    display: flex; align-items: baseline; gap: 0.3rem;
}
.prop-price-unit { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }
.prop-title {
    font-size: 1.05rem; font-weight: 800; color: var(--navy);
    margin-bottom: 0.5rem; line-height: 1.3; letter-spacing: -0.03em;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    transition: color 0.3s ease;
}
.prop-card:hover .prop-title { color: var(--blue-dark); }
.prop-location {
    font-size: 0.85rem; color: var(--text-muted); font-weight: 500;
    margin-bottom: 0; display: flex; align-items: center; gap: 0.5rem;
}
.prop-location i { color: var(--blue); font-size: 0.85rem; }
.prop-meta {
    display: flex; gap: 1.2rem; padding: 1rem 0;
    margin-top: 1rem; border-top: 1px solid rgba(10,22,40,0.06);
}
.prop-meta-item {
    display: flex; align-items: center; gap: 0.45rem;
    font-size: 0.82rem; font-weight: 600; color: var(--navy);
    opacity: 0.7;
}
.prop-meta-item i { color: var(--blue); font-size: 0.85rem; }
.prop-card-btn {
    display: flex; align-items: center; justify-content: center;
    width: 100%; padding: 0.7rem; margin-top: 0.75rem;
    background: linear-gradient(135deg, var(--grey-50), var(--white)); color: var(--navy);
    border-radius: 12px; font-size: 0.82rem; font-weight: 700;
    letter-spacing: 0.04em; position: relative; overflow: hidden;
    border: 1.5px solid var(--grey-200); transition: var(--transition-fast);
}
.prop-card-btn::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    transform: translateX(-100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.prop-card-btn:hover::before { transform: translateX(0); }
.prop-card-btn:hover { color: var(--white); border-color: var(--navy); }
.prop-card-btn span, .prop-card-btn i { position: relative; z-index: 1; }

/* Sort select */
.sort-select {
    border: 1px solid var(--grey-200); border-radius: var(--radius-sm);
    padding: 0.5rem 1rem; font-size: 0.8rem; font-weight: 600;
    color: var(--navy); background: var(--white); cursor: pointer;
    outline: none;
}

/* Compare bar */
.compare-bar {
    background: var(--navy); border-radius: var(--radius-md);
    padding: 0; max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease, margin 0.3s ease;
    margin-bottom: 0;
}
.compare-bar.visible { max-height: 80px; padding: 0.85rem 1.5rem; margin-bottom: 1.5rem; }
.compare-bar-inner { display: flex; align-items: center; gap: 1rem; color: var(--white); font-size: 0.88rem; font-weight: 600; }
.compare-count { color: var(--blue); font-weight: 800; }

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
    background: var(--bg-alt);
    padding: 0;
    border-top: 1px solid var(--grey-100);
    border-bottom: 1px solid var(--grey-100);
}
.stat-box {
    text-align: center; padding: 3rem 2rem; position: relative;
}
.stat-box::after {
    content: ''; position: absolute; right: 0; top: 25%; bottom: 25%;
    width: 1px; background: rgba(10,22,40,0.08);
}
.stat-box:last-child::after { display: none; }
.stat-number {
    font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 900;
    color: var(--navy); display: block; line-height: 1;
    margin-bottom: 0.6rem; font-family: var(--font-serif); letter-spacing: -0.02em;
}
.stat-label {
    font-size: 0.72rem; color: var(--navy); opacity: 0.6; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
}

/* ============================================================
   AGENT CARDS
   ============================================================ */
.agent-card {
    background: var(--white); border-radius: 30px;
    padding: 2.5rem 1.8rem; text-align: center;
    border: 1.5px solid rgba(10,22,40,0.04); 
    box-shadow: 0 10px 30px rgba(10,22,40,0.06);
    transition: all 0.6s cubic-bezier(0.2,0.8,0.2,1);
    position: relative; overflow: hidden;
}
.agent-card:hover { 
    transform: translateY(-12px); 
    box-shadow: 0 40px 80px rgba(10,22,40,0.12), 0 0 0 1px var(--blue-light); 
    border-color: var(--blue-light); 
}
.agent-card::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(37, 99, 235,0.08), transparent 70%);
    opacity: 0; transition: opacity 0.5s;
}
.agent-card:hover::before { opacity: 1; }
.agent-avatar { position: relative; display: inline-block; margin-bottom: 1.5rem; }
.agent-avatar img { 
    width: 100px; height: 100px; border-radius: 30px; 
    border: 2px solid var(--blue-light); padding: 5px;
    background: var(--white);
    box-shadow: 0 12px 25px rgba(37, 99, 235,0.15);
    transition: all 0.6s cubic-bezier(0.34,1.56,0.64,1);
    object-fit: cover;
}
.agent-card:hover .agent-avatar img {
    transform: scale(1.08) rotate(2deg);
    border-radius: 50%;
    box-shadow: 0 15px 35px rgba(37, 99, 235,0.25);
    border-color: var(--blue);
}
.agent-online {
    position: absolute; bottom: 8px; right: 8px;
    width: 18px; height: 18px; background: #22c55e;
    border-radius: 50%; border: 3px solid var(--white);
    box-shadow: 0 2px 10px rgba(34,197,94,0.4);
    z-index: 2;
}
.agent-name { font-size: 1.15rem; font-weight: 800; color: var(--navy); margin-bottom: 0.4rem; letter-spacing: -0.02em; }
.agent-role { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.5px; }
.agent-city { 
    font-size: 0.8rem; color: var(--blue-dark); font-weight: 700; margin-bottom: 1.5rem;
    display: flex; align-items: center; justify-content: center; gap: 6px;
}
.agent-city i { font-size: 0.9rem; }
.agent-stats {
    display: flex; align-items: center; justify-content: center; gap: 1.5rem;
    padding: 1.2rem 0; border-top: 1px solid rgba(10,22,40,0.06); border-bottom: 1px solid rgba(10,22,40,0.06);
    margin-bottom: 1.5rem;
}
.agent-stat { display: flex; flex-direction: column; gap: 2px; }
.agent-stat strong { font-size: 1.1rem; font-weight: 900; color: var(--navy); }
.agent-stat span { font-size: 0.72rem; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.agent-stat-divider { width: 1px; height: 25px; background: rgba(10,22,40,0.06); }
.agent-contact-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.85rem 1rem; border-radius: 14px;
    font-size: 0.82rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
    border: 1.5px solid var(--grey-200); background: var(--white); color: var(--navy);
    text-decoration: none; position: relative; z-index: 2;
}
.agent-contact-btn:hover { 
    background: var(--blue); color: var(--white); border-color: var(--blue);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(37, 99, 235,0.3);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card-v2 {
    background: var(--white); border-radius: 30px;
    padding: 3rem; border: 1.5px solid rgba(10,22,40,0.03);
    box-shadow: 0 10px 40px rgba(10,22,40,0.04); 
    transition: all 0.6s cubic-bezier(0.2,0.8,0.2,1);
    height: 100%; position: relative; overflow: hidden;
}
.testimonial-card-v2:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 30px 60px rgba(10,22,40,0.08); 
    border-color: var(--blue-light);
}
.testimonial-card-v2::after {
    content: '“'; position: absolute; top: -1rem; right: 1rem;
    font-size: 10rem; color: var(--blue-muted); opacity: 0.1;
    font-family: var(--font-serif); line-height: 1; pointer-events: none;
}
.testimonial-stars { color: var(--blue); font-size: 0.9rem; margin-bottom: 1.5rem; display: flex; gap: 5px; }
.testimonial-text {
    font-family: var(--font-serif); font-size: 1.15rem; font-style: italic;
    color: var(--navy); line-height: 1.8; margin-bottom: 2rem; position: relative; z-index: 1;
    letter-spacing: -0.01em;
}
.testimonial-author { display: flex; align-items: center; gap: 1.2rem; }
.testimonial-avatar-img { 
    width: 65px; height: 65px; border-radius: 20px; 
    border: 2px solid var(--blue-light); flex-shrink: 0; padding: 4px;
    background: var(--white); box-shadow: 0 8px 15px rgba(37, 99, 235,0.1);
    transition: all 0.5s ease;
    object-fit: cover;
}
.testimonial-card-v2:hover .testimonial-avatar-img {
    border-radius: 50%;
    transform: rotate(-5deg) scale(1.1);
}
.testimonial-name { display: block; font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 3px; letter-spacing: -0.01em; }
.testimonial-role { display: block; font-size: 0.75rem; color: var(--blue-dark); font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; }

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-card {
    background: var(--white); border-radius: 24px;
    overflow: hidden; border: 1.5px solid rgba(10,22,40,0.03);
    box-shadow: 0 5px 20px rgba(10,22,40,0.03); 
    transition: all 0.6s cubic-bezier(0.2,0.8,0.2,1); 
    height: 100%;
}
.blog-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 30px 60px rgba(10,22,40,0.1); 
    border-color: var(--blue-light);
}
.blog-card-img { position: relative; overflow: hidden; height: 240px; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(0.2,0.8,0.2,1); }
.blog-card:hover .blog-card-img img { transform: scale(1.1); }
.blog-card-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(10,22,40,0.3) 0%, transparent 50%);
    opacity: 0; transition: opacity 0.6s ease;
}
.blog-card:hover .blog-card-img::after { opacity: 1; }
.blog-cat {
    position: absolute; top: 1.2rem; left: 1.2rem;
    background: var(--blue); color: var(--white);
    font-size: 0.65rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
    padding: 0.4rem 1rem; border-radius: 12px;
    z-index: 2; box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.blog-card-body { padding: 1.8rem; }
.blog-meta { display: flex; gap: 1.2rem; font-size: 0.75rem; color: var(--text-muted); font-weight: 700; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.5px; }
.blog-meta i { color: var(--blue); }
.blog-title { font-size: 1.15rem; font-weight: 800; color: var(--navy); line-height: 1.5; margin-bottom: 1.2rem; letter-spacing: -0.02em; transition: color 0.3s; }
.blog-card:hover .blog-title { color: var(--blue-dark); }
.blog-read-more { 
    font-size: 0.85rem; font-weight: 800; color: var(--navy); 
    display: inline-flex; align-items: center; gap: 0.5rem; 
    transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 1px;
}
.blog-read-more i { transition: transform 0.3s ease; color: var(--blue); }
.blog-read-more:hover { color: var(--blue-dark); }
.blog-read-more:hover i { transform: translateX(5px); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section { padding: var(--sp-10) 0; background: var(--white); }
.cta-inner {
    background: linear-gradient(135deg, var(--navy) 0%, #0a1628 100%);
    border-radius: 40px; padding: 5rem 4rem;
    position: relative; overflow: hidden;
    box-shadow: 0 30px 70px rgba(10,22,40,0.2);
}
.cta-bg-circle {
    position: absolute; border-radius: 50%; pointer-events: none;
    background: radial-gradient(circle, rgba(37, 99, 235,0.15) 0%, transparent 70%);
}
.cta-bg-circle-1 { width: 600px; height: 600px; top: -200px; right: -150px; }
.cta-bg-circle-2 { width: 400px; height: 400px; bottom: -150px; left: -100px; }
.cta-title { font-size: 2.8rem; color: var(--white); margin-bottom: 1.5rem; letter-spacing: -0.03em; }
.cta-subtitle { color: rgba(255,255,255,0.6); font-size: 1.1rem; max-width: 520px; line-height: 1.7; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--bg-alt); color: var(--text-main); border-top: 1px solid var(--grey-100); }
.footer-newsletter {
    background: var(--white);
    padding: 3rem 0; border-bottom: 1px solid var(--grey-100);
}
.newsletter-label { font-size: 0.7rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); margin-bottom: 0.5rem; }
.newsletter-title { font-size: var(--fs-md); font-weight: 800; color: var(--navy); margin: 0; letter-spacing: -0.02em; }
.newsletter-form { display: flex; gap: 0.75rem; }
.newsletter-input {
    flex: 1; background: var(--grey-50); border: 1px solid var(--grey-200);
    border-radius: var(--radius-xl); padding: 0.75rem 1.5rem;
    color: var(--navy); font-size: 0.9rem; font-family: var(--font-sans);
    outline: none; transition: var(--transition-fast);
}
.newsletter-input::placeholder { color: var(--grey-400); }
.newsletter-input:focus { border-color: var(--blue); background: var(--white); box-shadow: 0 0 0 3px var(--blue-glow); }
.footer-main { padding: 5rem 0 3rem; }
.footer-brand { font-size: 1.5rem; font-weight: 900; letter-spacing: -1.5px; color: var(--navy); }
.footer-brand span { color: var(--blue); }
.footer-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; margin: 1.25rem 0; max-width: 280px; }
.footer-social { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.footer-social a {
    width: 36px; height: 36px; border: 1px solid var(--grey-200);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); font-size: 0.8rem; transition: var(--transition-fast);
}
.footer-social a:hover { background: var(--blue); border-color: var(--blue); color: var(--white); transform: translateY(-2px); }
.footer-badges { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.footer-badge {
    padding: 0.5rem 0.85rem; border-radius: var(--radius-sm);
    border: 1px solid var(--grey-200); background: var(--white);
}
.footer-badge .badge-label { display: block; font-size: 0.58rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--grey-400); }
.footer-badge .badge-value { font-size: 0.78rem; font-weight: 700; color: var(--blue); }
.footer-heading { font-size: 0.68rem; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 1.5rem; }
.footer-link { display: block; color: var(--text-muted); font-size: 0.88rem; font-weight: 600; margin-bottom: 0.85rem; transition: var(--transition-fast); }
.footer-link:hover { color: var(--blue); transform: translateX(6px); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; color: var(--text-muted); font-size: 0.88rem; margin-bottom: 0.85rem; }
.footer-contact-item i { color: var(--blue); margin-top: 2px; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid var(--grey-100); padding: 1.5rem 0; }
.footer-bottom p { color: var(--grey-400); font-size: 0.8rem; margin: 0; }
.footer-legal-link { color: var(--grey-400); font-size: 0.8rem; margin-left: 1.25rem; transition: var(--transition-fast); }
.footer-legal-link:hover { color: var(--blue); }

/* ============================================================
   AUTH MODAL
   ============================================================ */
.auth-modal-content {
    border: none; border-radius: var(--radius-md); overflow: hidden;
    padding: 2.5rem; position: relative;
}
.auth-modal-close {
    position: absolute; top: 1.25rem; right: 1.25rem;
    background: var(--grey-100); border: none; width: 32px; height: 32px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; color: var(--text-muted); cursor: pointer; transition: var(--transition-fast);
}
.auth-modal-close:hover { background: var(--navy); color: var(--white); }
.auth-tabs { display: flex; gap: 0; margin-bottom: 2rem; border-bottom: 2px solid var(--grey-100); }
.auth-tab {
    background: none; border: none; padding: 0.75rem 1.5rem;
    font-size: 0.88rem; font-weight: 700; color: var(--text-muted);
    cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px;
    transition: var(--transition-fast);
}
.auth-tab.active { color: var(--navy); border-bottom-color: var(--blue); }
.auth-title { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: 0.35rem; }
.auth-subtitle { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.75rem; }
.auth-field { margin-bottom: 1.25rem; }
.auth-field label { display: block; font-size: 0.72rem; font-weight: 800; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }
.auth-input-wrap { position: relative; }
.auth-input-wrap i { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--grey-400); font-size: 0.85rem; }
.auth-input-wrap input {
    width: 100%; padding: 0.75rem 1rem 0.75rem 2.75rem;
    border: 1.5px solid var(--grey-200); border-radius: var(--radius-sm);
    font-size: 0.9rem; font-family: var(--font-sans); font-weight: 500;
    color: var(--navy); background: var(--grey-50); transition: var(--transition-fast);
    outline: none;
}
.auth-input-wrap input:focus { border-color: var(--blue); background: var(--white); box-shadow: 0 0 0 3px var(--blue-glow); }

/* ============================================================
   PROPERTY DETAILS PAGE
   ============================================================ */
.sticky-visit-bar {
    position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
    background: rgba(255,255,255,0.96); backdrop-filter: blur(20px);
    padding: 1rem 2rem; border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.04);
    display: flex; align-items: center; gap: 2rem; z-index: 1000; white-space: nowrap;
}
.amenity-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 1rem; }
.amenity-card {
    background: var(--grey-100); border: 1px solid transparent;
    padding: 1.25rem 1rem; border-radius: var(--radius-md);
    text-align: center; transition: var(--transition); cursor: default;
}
.amenity-card:hover { background: var(--white); border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.amenity-card i { font-size: 1.3rem; color: var(--blue); display: block; margin-bottom: 0.5rem; }
.amenity-card span { font-size: 0.78rem; font-weight: 700; color: var(--navy); }
.nav-tabs .nav-link { color: var(--navy); font-weight: 700; }
.nav-tabs .nav-link.active { background: var(--navy) !important; color: var(--blue) !important; border-color: transparent !important; }

/* ============================================================
   LISTING PAGE
   ============================================================ */
.luxury-card {
    border: 1px solid var(--grey-100); border-radius: var(--radius-md);
    overflow: hidden; background: var(--white); box-shadow: var(--shadow-sm);
    transition: var(--transition); height: 100%; position: relative;
}
.luxury-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--blue-muted); }
.luxury-card .card-img-top { height: 220px; width: 100%; object-fit: cover; display: block; transition: transform 0.8s ease; }
.luxury-card:hover .card-img-top { transform: scale(1.05); }
.luxury-card .card-body { padding: 1.5rem; }
.card-price { font-size: 1.2rem; font-weight: 900; color: var(--navy); letter-spacing: -0.04em; margin-bottom: 0.35rem; display: flex; align-items: baseline; gap: 0.25rem; }
.card-price span { font-size: 0.72rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.card-title { font-size: 0.92rem; font-weight: 700; color: var(--navy); margin-bottom: 0.35rem; line-height: 1.4; letter-spacing: -0.02em; }
.card-meta { display: flex; gap: 1rem; padding: 0.85rem 0; margin-top: 0.5rem; border-top: 1px solid var(--grey-100); }
.card-meta-item { display: flex; align-items: center; gap: 0.35rem; font-size: 0.78rem; font-weight: 600; color: var(--text-muted); }
.card-meta-item i { color: var(--blue); font-size: 0.72rem; }
.card-badge-purpose { position: absolute; top: 1rem; right: 1rem; background: var(--white); color: var(--navy); font-size: 0.6rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; padding: 0.3rem 0.8rem; border-radius: var(--radius-xl); box-shadow: var(--shadow-md); z-index: 2; }
.card-badge-featured { position: absolute; top: 1rem; left: 1rem; background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: var(--white); font-size: 0.58rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; padding: 0.3rem 0.8rem; border-radius: var(--radius-xl); z-index: 2; }
.card-img-wrap { position: relative; overflow: hidden; height: 220px; }
.luxury-card .card-body .btn-navy { width: 100%; justify-content: center; }

/* ============================================================
   FORMS (global)
   ============================================================ */
.form-control, .form-select {
    padding: 0.75rem 1rem; border: 1.5px solid var(--grey-200);
    border-radius: var(--radius-sm); font-family: var(--font-sans);
    font-size: var(--fs-sm); font-weight: 500; color: var(--navy);
    background: var(--grey-50); transition: var(--transition-fast);
}
.form-control:focus, .form-select:focus {
    background: var(--white); border-color: var(--blue);
    box-shadow: 0 0 0 3px var(--blue-glow); outline: none;
}
.form-label { font-size: var(--fs-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--navy); margin-bottom: 0.5rem; }
.search-label { font-size: 0.62rem; font-weight: 800; color: var(--grey-400); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 2px; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.85s cubic-bezier(0.2,0.8,0.2,1), transform 0.85s cubic-bezier(0.2,0.8,0.2,1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.07s; }
.stagger-2 { transition-delay: 0.15s; }
.stagger-3 { transition-delay: 0.23s; }
.stagger-4 { transition-delay: 0.31s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .section-padding { padding: 4rem 0; }
    .hero-luxury { min-height: 85vh; background-attachment: scroll; }
    .luxury-search { flex-direction: column; border-radius: var(--radius-md); padding: 1.25rem; gap: 0; }
    .search-group { border-right: none; border-bottom: 1px solid var(--grey-100); padding: 0.75rem 0; }
    .search-group:last-of-type { border-bottom: none; }
    .search-group-sm { flex: 1; }
    .search-btn-wrap { padding: 0.75rem 0 0; }
    .btn-search { width: 100%; justify-content: center; }
    .stat-box::after { display: none; }
    .trust-bar-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .cta-inner { padding: 2.5rem; }
    .newsletter-form { flex-direction: column; }
}
@media (max-width: 767px) {
    .hero-title { font-size: 2.4rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .search-tabs { width: 100%; justify-content: center; }
    .sticky-visit-bar { left: 1rem; right: 1rem; transform: none; flex-wrap: wrap; gap: 0.75rem; padding: 1rem 1.25rem; }
    .cta-inner { padding: 2rem 1.5rem; }
    .hero-scroll-hint { display: none; }
}
@media (max-width: 575px) {
    .btn-blue, .btn-navy { width: 100%; }
    .agent-card { padding: 1.5rem 1rem; }
}


/* ============================================================
   VISUAL UPGRADE LAYER — Make it stunning
   ============================================================ */

/* ── 1. RICHER DESIGN TOKENS ─────────────────────────────── */
:root {
    --blue-shimmer: linear-gradient(90deg, var(--blue-dark), var(--blue-light), var(--blue-dark));
    --surface-warm: #F8FAFC;
    --surface-cool: #F1F5F9;
    --ink-light:    rgba(10,22,40,0.06);
    --navy-glow:    rgba(10,22,40,0.18);
}

/* ── 2. HERO — More dramatic ─────────────────────────────── */
.hero-luxury {
    min-height: 100vh;
}
.hero-luxury::before {
    background: linear-gradient(
        160deg,
        rgba(10,22,40,0.82) 0%,
        rgba(10,22,40,0.25) 50%,
        rgba(10,22,40,0.75) 100%
    );
}
/* Animated grain texture overlay */
.hero-luxury::after {
    content: '';
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    z-index: 1; pointer-events: none; opacity: 0.4;
}
.hero-content { z-index: 4; }

/* Bigger, bolder hero title */
.hero-title {
    font-size: clamp(3.2rem, 6vw, 6.5rem);
    line-height: 1.0;
    letter-spacing: -0.04em;
    text-shadow: 0 8px 60px rgba(0,0,0,0.4);
}
.hero-title em {
    display: inline-block;
    background: var(--blue-shimmer);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}
.hero-eyebrow {
    background: rgba(37, 99, 235,0.15);
    border: 1px solid rgba(37, 99, 235,0.3);
    border-radius: var(--radius-xl);
    padding: 0.4rem 1.2rem;
    backdrop-filter: blur(12px);
}
.hero-eyebrow::before, .hero-eyebrow::after { display: none; }

/* Search bar — floating glass pill */
.luxury-search {
    border-radius: var(--radius-xl);
    box-shadow: 0 32px 80px rgba(10,22,40,0.35), 0 0 0 1px rgba(255,255,255,0.15);
    border: none;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
}
.search-tabs {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(16px);
}
.search-tab.active {
    background: var(--white);
    color: var(--navy);
    box-shadow: 0 2px 8px rgba(10,22,40,0.12);
}
.btn-search {
    background: linear-gradient(135deg, #60A5FA 0%, #1E40AF 100%);
    box-shadow: 0 6px 24px rgba(37, 99, 235,0.45);
    padding: 1rem 2rem;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
}
.btn-search:hover {
    box-shadow: 0 10px 32px rgba(37, 99, 235,0.55);
    transform: translateY(-2px);
}

/* ── 3. TRUST BAR — Gradient + glow ─────────────────────── */
.trust-bar {
    background: linear-gradient(135deg, #060e1c 0%, var(--navy) 50%, #0d1e38 100%);
    border-top: 1px solid rgba(37, 99, 235,0.15);
    border-bottom: 1px solid rgba(37, 99, 235,0.08);
    position: relative;
    overflow: hidden;
}
.trust-bar::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
}
.trust-bar-item > i {
    background: linear-gradient(135deg, rgba(37, 99, 235,0.2), rgba(37, 99, 235,0.08));
    border: 1px solid rgba(37, 99, 235,0.2);
    box-shadow: 0 4px 16px rgba(37, 99, 235,0.1);
}
.trust-bar-item strong { font-size: 0.95rem; letter-spacing: -0.01em; }

/* ── 4. SECTION BACKGROUNDS — Alternating rhythm ─────────── */
/* Categories section — warm paper */
.section-padding.bg-white:nth-of-type(odd) {
    background: var(--surface-warm) !important;
}

/* Section title — bigger, bolder */
.section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    letter-spacing: -0.04em;
    line-height: 1.1;
}
.section-title .text-blue {
    position: relative;
    display: inline-block;
}
.section-title .text-blue::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue-light));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.2,0.8,0.2,1);
}
.reveal.active .section-title .text-blue::after { transform: scaleX(1); }

/* ── 5. CATEGORY CARDS — Bold hover ─────────────────────── */
.category-card {
    background: var(--white);
    position: relative;
    overflow: hidden;
}
.category-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--blue-muted), transparent);
    opacity: 0; transition: opacity 0.4s;
}
.category-card:hover::before { opacity: 1; }
.category-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 48px rgba(10,22,40,0.12), 0 0 0 2px var(--blue);
    border-color: var(--blue);
}
.category-icon {
    width: 64px; height: 64px;
    font-size: 1.6rem;
    border-radius: 18px;
    background: var(--grey-50);
    box-shadow: 0 4px 12px rgba(10,22,40,0.06);
    transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.category-card:hover .category-icon {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: var(--white);
    transform: rotate(-8deg) scale(1.1);
    box-shadow: 0 8px 24px rgba(37, 99, 235,0.4);
}
.category-name { font-size: 0.92rem; letter-spacing: -0.01em; }

/* ── 6. PROPERTY CARDS — Premium depth ──────────────────── */
.prop-card {
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(10,22,40,0.06), 0 1px 3px rgba(10,22,40,0.04);
}
.prop-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 32px 64px rgba(10,22,40,0.16), 0 0 0 1.5px var(--blue);
}
.prop-card-img { height: 260px; }
.prop-card-img::before {
    content: '';
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
        to bottom,
        transparent 40%,
        rgba(10,22,40,0.7) 100%
    );
    opacity: 0; transition: opacity 0.5s;
}
.prop-card:hover .prop-card-img::before { opacity: 1; }
/* Price shown on image on hover */
.prop-card-body {
    padding: 1.6rem;
    background: var(--white);
    position: relative;
}
.prop-card-body::before {
    content: '';
    position: absolute; top: 0; left: 1.6rem; right: 1.6rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--grey-200), transparent);
}
.prop-price {
    font-size: 1.45rem;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.prop-card-btn {
    background: linear-gradient(135deg, var(--grey-50), var(--white));
    border: 1.5px solid var(--grey-200);
    border-radius: 12px;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    position: relative;
    overflow: hidden;
}
.prop-card-btn::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.prop-card-btn:hover::before { transform: translateX(0); }
.prop-card-btn:hover { color: var(--white); border-color: var(--navy); }
.prop-card-btn span, .prop-card-btn i { position: relative; z-index: 1; }

/* Featured section background */
.section-padding.bg-light-grey {
    background: linear-gradient(180deg, #F0F4F8 0%, #EBF0F6 100%) !important;
    position: relative;
}
.section-padding.bg-light-grey::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--grey-300), transparent);
}

/* ── 7. STATS — Dramatic dark section ───────────────────── */
.stats-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(10,22,40,0.03);
    border-bottom: 1px solid rgba(10,22,40,0.03);
}
.stats-section::before {
    content: '';
    position: absolute;
    top: -200px; left: 50%; transform: translateX(-50%);
    width: 800px; height: 400px;
    background: radial-gradient(ellipse, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    pointer-events: none;
}
.stats-section::after {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.2), transparent);
}
.stat-box { padding: 4rem 2rem; }
.stat-number {
    font-size: clamp(3rem, 5vw, 4.5rem);
    background: linear-gradient(135deg, var(--navy) 0%, #0052cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 12px rgba(0, 82, 204, 0.15));
}
.stat-label { font-size: 0.7rem; letter-spacing: 0.25em; color: var(--navy); opacity: 0.6; font-weight: 700; }
.stat-box::after { background: rgba(10,22,40,0.05); }

/* ── 9. AGENT CARDS — Glassmorphism ─────────────────────── */
.agent-card {
    border-radius: 20px;
    background: linear-gradient(145deg, var(--white) 0%, var(--surface-warm) 100%);
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: 0 8px 32px rgba(10,22,40,0.07), 0 1px 3px rgba(10,22,40,0.04);
    position: relative;
    overflow: hidden;
}
.agent-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
    opacity: 0; transition: opacity 0.4s;
}
.agent-card:hover::before { opacity: 1; }
.agent-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(10,22,40,0.12), 0 0 0 1px var(--blue-glow);
}
.agent-avatar img {
    width: 88px; height: 88px;
    border: 3px solid transparent;
    background: linear-gradient(var(--white), var(--white)) padding-box,
                linear-gradient(135deg, var(--blue), var(--blue-dark)) border-box;
    box-shadow: 0 8px 24px rgba(37, 99, 235,0.25);
}
.agent-name { font-size: 1rem; letter-spacing: -0.02em; }

/* ── 10. TESTIMONIALS — Dark card variant ────────────────── */
.testimonial-card-v2 {
    border-radius: 20px;
    background: linear-gradient(145deg, var(--white) 0%, var(--surface-warm) 100%);
    border: 1px solid var(--grey-100);
    box-shadow: 0 8px 32px rgba(10,22,40,0.06);
    position: relative;
    overflow: hidden;
}
.testimonial-card-v2::before {
    content: '\201C';
    font-family: var(--font-serif);
    font-size: 8rem;
    color: var(--blue);
    opacity: 0.07;
    position: absolute;
    top: -1rem; left: 1rem;
    line-height: 1;
    pointer-events: none;
    font-weight: 900;
}
.testimonial-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(10,22,40,0.1), 0 0 0 1px var(--blue-glow);
    border-color: var(--blue-muted);
}
.testimonial-stars { font-size: 0.85rem; gap: 3px; }
.testimonial-text {
    font-size: 1.08rem;
    line-height: 1.85;
    color: var(--text-main);
}

/* ── 11. BLOG CARDS — Editorial style ───────────────────── */
.blog-card {
    border-radius: 20px;
    border: none;
    box-shadow: 0 8px 32px rgba(10,22,40,0.07);
    overflow: hidden;
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(10,22,40,0.14);
}
.blog-card-img { height: 220px; }
.blog-card-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.5) 0%, transparent 60%);
    opacity: 0; transition: opacity 0.4s;
}
.blog-card:hover .blog-card-img::after { opacity: 1; }
.blog-cat {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    box-shadow: 0 4px 12px var(--blue-glow);
}
.blog-title { font-size: 1rem; line-height: 1.4; }
.blog-card-body { padding: 1.75rem; }

/* ── 12. CTA — Light Luxury ────────────────────────────── */
.cta-section { background: var(--bg-alt); padding: var(--sp-8) 0; }
.cta-inner {
    background: var(--white);
    border-radius: 28px;
    padding: 5rem;
    border: 1px solid var(--grey-100);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}
.cta-inner::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue-muted), transparent);
}
.cta-bg-circle-1 {
    width: 600px; height: 600px; top: -200px; right: -150px;
    background: radial-gradient(circle, var(--blue-glow) 0%, transparent 65%);
}
.cta-bg-circle-2 {
    width: 400px; height: 400px; bottom: -150px; left: -100px;
    background: radial-gradient(circle, var(--blue-muted) 0%, transparent 65%);
}
.cta-title {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: var(--navy);
}
.cta-subtitle { color: var(--text-muted); font-size: 1rem; line-height: 1.7; }

/* ── 13. NAVBAR — Sharper scrolled state ────────────────── */
.navbar-luxury.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 4px 32px rgba(10,22,40,0.06), 0 1px 0 rgba(10,22,40,0.03);
}
.brand-logo {
    font-size: 1.35rem;
    letter-spacing: -0.07em;
}

/* ── 14. FOOTER — Light Luxury ────────────────────────────── */
.site-footer {
    background: var(--bg-alt);
    border-top: 1px solid var(--grey-100);
}
.footer-newsletter {
    background: var(--white);
    border-bottom: 1px solid var(--grey-100);
    position: relative;
}
.footer-newsletter::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue-muted), transparent);
}

/* ── 15. SECTION DIVIDERS — blue line accents ────────────── */
.section-label {
    font-size: 0.68rem;
    letter-spacing: 4px;
    color: var(--blue);
    padding: 0.3rem 0;
}
.section-label::before {
    width: 28px; height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--blue-light));
    box-shadow: 0 0 8px var(--blue-glow);
}

/* ── 16. SCROLL REVEAL — Smoother ───────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 1s cubic-bezier(0.16,1,0.3,1),
                transform 1s cubic-bezier(0.16,1,0.3,1);
}
.reveal.active { opacity: 1; transform: translateY(0); }

/* ── 17. GLOBAL POLISH ───────────────────────────────────── */
/* Smooth image rendering */
img { image-rendering: -webkit-optimize-contrast; }

/* Selection color */
::selection { background: var(--blue-glow); color: var(--navy); }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--grey-50); }
::-webkit-scrollbar-thumb { background: var(--grey-300); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }

/* Focus ring */
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

/* ── 18. HOMEPAGE SECTION BACKGROUNDS ───────────────────── */
/* Alternating warm/cool backgrounds for visual rhythm */
.section-categories { background: var(--surface-warm); }
.section-featured   { background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%); border-top: 1px solid rgba(10,22,40,0.03); }
.section-recent     { background: var(--white); }
.section-builders   { background: var(--white); }
.section-agents     { background: linear-gradient(180deg, var(--white) 0%, #f8fafc 100%); }
.section-testimonials { background: #f8fafc; } /* Warm paper feel */
.section-blog       { background: var(--white); }

/* ── 19. PROP CARD — Wishlist heart pulse ────────────────── */
.wishlist-btn.active {
    background: #fee2e2;
    color: #ef4444;
    animation: heartPop 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes heartPop {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.35); }
    100% { transform: scale(1); }
}

/* ── 20. RESPONSIVE UPGRADES ─────────────────────────────── */
@media (max-width: 991px) {
    .cta-inner { padding: 3rem 2rem; }
    .hero-title { font-size: clamp(2.6rem, 7vw, 4rem); }
}
@media (max-width: 767px) {
    .stat-box { padding: 2.5rem 1.5rem; }
    .cta-inner { padding: 2.5rem 1.5rem; }
    .agent-card { border-radius: 16px; }
    .prop-card { border-radius: 16px; }
    .blog-card { border-radius: 16px; }
}


/* ============================================================
   CINEMATIC DARK HERO
   ============================================================ */
/* ============================================================
   CINEMATIC HERO (REFINED)
   ============================================================ */
.hero-cinematic {
    position: relative; width: 100%; min-height: 100vh;
    background: #ffffff; display: flex; align-items: center; overflow: hidden;
}
.hero-cinematic::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(255, 255, 255, 0.2) 100%);
    z-index: 5; pointer-events: none;
}

.hc-slides { position: absolute; inset: 0; z-index: 0; }

.hc-slide {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    opacity: 0; transform: scale(1.05);
    transition: opacity 2.5s cubic-bezier(0.4, 0, 0.2, 1), transform 15s linear;
}

.hc-slide.active { opacity: 1; transform: scale(1.15); z-index: 1; }

/* Premium Overlays — Enhanced Cinematic */
.hc-overlay-base {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.4) 100%);
}

.hc-overlay-vignette {
    position: absolute; inset: 0; z-index: 3; pointer-events: none;
    background: radial-gradient(circle, transparent 20%, rgba(255, 255, 255, 0.3) 100%);
}

.hc-overlay-bottom {
    position: absolute; bottom: 0; left: 0; right: 0; height: 40vh; z-index: 4;
    background: linear-gradient(to top, #ffffff 0%, rgba(255, 255, 255, 0.8) 40%, transparent 100%);
}

.hc-scanlines {
    position: absolute; inset: 0; z-index: 5; pointer-events: none; opacity: 0.03;
    background: linear-gradient(rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.1) 50%);
    background-size: 100% 3px;
}

.hc-light-leak {
    position: absolute; top: -10%; right: -10%; width: 70%; height: 70%;
    background: radial-gradient(circle, var(--blue-glow) 0%, transparent 70%);
    filter: blur(100px); z-index: 4; animation: hcPulseLeak 20s infinite alternate;
}

@keyframes hcPulseLeak {
    0% { transform: translate(0,0) scale(1); opacity: 0.4; }
    100% { transform: translate(-10%, 10%) scale(1.5); opacity: 0.8; }
}

/* Floating Live Highlight Card — Premium Glass */
.hc-live-card {
    position: absolute; bottom: 50px; right: 50px; width: 320px;
    background: rgba(255, 255, 255, 0.7); 
    backdrop-filter: blur(20px) saturate(160%); -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-left: 5px solid var(--blue);
    padding: 24px; border-radius: 20px; z-index: 20;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    opacity: 0; transform: translateY(30px); animation: hcFadeUp 1.2s 1.5s forwards;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hc-live-card:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 255, 255, 0.85);
}

.hcl-badge {
    font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px;
    color: var(--blue-dark); margin-bottom: 15px; display: flex; align-items: center; gap: 10px;
}

.hcl-badge i { font-size: 10px; color: #ff3b3b; animation: hcPulseRed 1.5s infinite; }

@keyframes hcPulseRed {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

.hcl-content h4 { 
    font-family: var(--font-serif); font-size: 1.8rem; font-weight: 600; 
    margin-bottom: 8px; color: var(--navy); line-height: 1.2;
}

.hcl-content p { 
    font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; 
    display: flex; align-items: center; gap: 8px; font-weight: 500;
}

.hcl-footer { 
    display: flex; justify-content: space-between; align-items: center; 
    padding-top: 20px; border-top: 1px solid rgba(10,22,40,0.08); 
}

#hclPrice { font-family: var(--font-serif); font-weight: 700; color: var(--navy); font-size: 1.6rem; }

.hcl-tag { 
    font-size: 0.7rem; font-weight: 700; padding: 6px 14px; 
    background: var(--blue-glow); color: var(--blue-dark); 
    border-radius: 100px; border: 1px solid var(--blue-muted); 
    text-transform: uppercase; letter-spacing: 1px; 
}

/* Body Content - Centered Grandeur */
.hc-body {
    position: relative; z-index: 10; width: 100%; max-width: 1200px; margin: 0 auto;
    padding: 0 1.5rem; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; min-height: 100vh;
}

.hc-main-content { width: 100%; display: flex; flex-direction: column; align-items: center; padding-bottom: 3rem; }

.hc-left { max-width: 1000px; display: flex; flex-direction: column; align-items: center; }

.hc-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 1.5rem; justify-content: center; }
.hc-eyebrow-line { width: 20px; height: 1px; background: var(--blue); }
.hc-eyebrow span:last-child { font-size: 0.65rem; font-weight: 800; color: var(--blue); text-transform: uppercase; letter-spacing: 2px; }

.hc-title { display: flex; flex-direction: column; align-items: center; margin-bottom: 2rem; line-height: 0.85; }
.hc-title-line { display: block; font-family: var(--font-serif); font-weight: 600; color: var(--navy); letter-spacing: -0.04em; }
.hc-line-1 { font-size: clamp(3.5rem, 8vw, 6rem); animation: hcFadeUp 1s 0.3s forwards; color: var(--navy); opacity: 0; }
.hc-line-2 { 
    font-size: clamp(5.5rem, 13vw, 11rem); animation: hcFadeUp 1s 0.5s forwards; 
    line-height: 0.8; margin: 0.2rem 0; color: var(--blue); 
    font-style: italic; opacity: 0;
}
.hc-line-3 { font-size: clamp(3.5rem, 8vw, 6rem); animation: hcFadeUp 1s 0.7s forwards; color: var(--navy); opacity: 0; }
.hc-line-3 em { color: var(--blue-light); font-style: italic; }

.hc-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem); color: var(--text-muted); font-weight: 400; line-height: 1.7;
    max-width: 750px; margin: 0 auto 3.5rem; opacity: 0; animation: hcFadeUp 1s 0.9s forwards;
    letter-spacing: 0.01em;
}

.hc-actions { 
    display: flex; align-items: center; justify-content: center; gap: 2.5rem; 
    margin-bottom: 3.5rem; opacity: 0; animation: hcFadeUp 1s 1.1s forwards; 
}

.hc-btn-primary {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: #fff; text-decoration: none; padding: 1.2rem 2.8rem; border-radius: 100px;
    font-size: 0.9rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2.5px;
    display: flex; align-items: center; gap: 15px; transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 35px var(--blue-glow);
}

.hc-btn-primary:hover {
    transform: translateY(-5px) scale(1.02); 
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.35);
    color: #fff;
}

.hc-btn-primary i { transition: transform 0.3s ease; }
.hc-btn-primary:hover i { transform: translateX(5px); }

.hc-btn-ghost {
    background: rgba(255, 255, 255, 0.3); border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.9); text-decoration: none; padding: 1.2rem 2.8rem; border-radius: 100px;
    font-size: 0.9rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2.5px;
    display: flex; align-items: center; gap: 15px; transition: all 0.5s ease;
    box-shadow: none;
}

.hc-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.9); color: var(--blue-dark); transform: translateY(-5px);
    border-color: var(--blue);
}

/* Horizontal Search Bar — Floating Luxury Pill */
.hc-search-container-horizontal {
    width: 100%; max-width: 1150px; margin-top: 1rem; opacity: 0; animation: hcFadeUp 1s 1.25s forwards;
    padding: 0 1rem;
}

.hc-search-tabs-outer { 
    display: flex; justify-content: center; gap: 12px; margin-bottom: 25px; 
}

.hc-stab {
    min-width: 140px; background: rgba(255, 255, 255, 0.4); border: 1px solid rgba(255, 255, 255, 0.6); 
    color: var(--text-muted); padding: 15px 30px; font-size: 0.8rem; font-weight: 800; 
    border-radius: 100px; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); 
    text-transform: uppercase; letter-spacing: 2px;
    cursor: pointer; backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
}

.hc-stab:hover { background: rgba(255, 255, 255, 0.8); color: var(--navy); transform: translateY(-5px); }

.hc-stab.active { 
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); 
    color: #fff; border-color: var(--blue);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.3);
    transform: translateY(-3px);
}

.hc-search-bar-pill {
    background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.6); border-radius: 100px; 
    padding: 10px 10px 10px 50px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.2);
    display: flex; align-items: center;
}

.hc-search-form-horizontal { 
    display: flex; align-items: center; width: 100%; justify-content: space-between; gap: 10px; 
}

.hc-search-group { 
    display: flex; flex-direction: column; gap: 4px; flex: 1; 
    padding: 0 25px; border-right: 1px solid rgba(10, 22, 40, 0.08); 
    transition: all 0.3s ease;
}

.hc-search-group:hover { transform: translateY(-2px); }

.hc-search-group:last-of-type { border-right: none; }

.hc-search-group label { 
    font-size: 0.7rem; font-weight: 800; color: var(--text-muted); 
    text-transform: uppercase; letter-spacing: 1.5px; 
    display: flex; align-items: center; gap: 10px; margin-bottom: 2px;
}

.hc-search-group label i { color: var(--blue); font-size: 0.8rem; }

.hc-input-minimal, .hc-select-minimal { 
    width: 100%; border: none; background: transparent; padding: 4px 0; 
    font-size: 1.1rem; font-weight: 700; color: var(--navy); outline: none; 
    cursor: pointer;
}

.hc-input-minimal::placeholder { color: rgba(10, 22, 40, 0.3); font-weight: 500; }

.hc-search-submit-btn {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); 
    color: #fff; border: none; 
    padding: 0 35px; height: 65px; border-radius: 100px;
    display: flex; align-items: center; justify-content: center; gap: 12px;
    font-size: 0.95rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2.5px;
    cursor: pointer; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); 
    box-shadow: 0 15px 35px var(--blue-glow);
    flex-shrink: 0;
}

.hc-search-submit-btn:hover { 
    transform: scale(1.03) translateY(-2px); 
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.4); 
}

.hc-search-submit-btn i { font-size: 1.1rem; }

.hc-field { display: flex; flex-direction: column; gap: 0.5rem; }
.hc-field label { font-size: 0.65rem; font-weight: 800; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; display: flex; align-items: center; gap: 0.5rem; }
.hc-field label i { color: var(--blue-dark); font-size: 0.75rem; }

.hc-input {
    width: 100%; background: transparent; border: 1px solid rgba(10,22,40,0.08);
    border-radius: 50px; padding: 1rem 1.4rem; color: var(--navy); font-size: 1rem; font-weight: 600; outline: none; transition: all 0.4s ease;
}
.hc-input:focus { background: #fff; border-color: var(--blue); box-shadow: 0 10px 30px rgba(37, 99, 235,0.15); }
.hc-input option { background: #fff; color: var(--navy); }

.hc-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.hc-bhk-row { display: flex; gap: 6px; background: rgba(0,0,0,0.03); padding: 5px; border-radius: 50px; }
.hc-bhk {
    flex: 1; background: transparent; border: none; color: var(--text-muted);
    padding: 10px; border-radius: 50px; font-size: 0.8rem; font-weight: 700; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hc-bhk.active { background: #fff; color: var(--blue-dark); box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.hc-bhk:hover:not(.active) { color: var(--navy); }

.hc-search-btn {
    position: relative; overflow: hidden;
    width: 100%; background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); color: var(--white); border: none; padding: 1.1rem;
    border-radius: 4px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px;
    display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 0.5rem; transition: all 0.4s ease;
    box-shadow: 0 10px 25px var(--blue-glow);
}
.hc-search-btn::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: rotate(45deg); animation: hcShimmer 3s infinite;
}
@keyframes hcShimmer {
    0% { transform: translateX(-150%) rotate(45deg); }
    100% { transform: translateX(150%) rotate(45deg); }
}
.hc-search-btn:hover { transform: translateY(-2px); box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4); color: var(--white); }

.hc-search-footer { margin-top: 1.5rem; text-align: center; padding-top: 1.5rem; border-top: 1px solid rgba(10,22,40,0.05); }
.hc-search-footer p { font-size: 0.65rem; color: var(--text-muted); display: flex; align-items: center; justify-content: center; gap: 8px; letter-spacing: 0.5px; }

/* Indicators — Cinematic Dark */
/* Slideshow Navigation & Stats — Premium Refined */
.hc-counter {
    position: absolute; left: 80px; bottom: 50px; display: flex; align-items: center; gap: 1.5rem; z-index: 10;
}
.hc-counter-current { 
    font-family: var(--font-serif); font-size: 3rem; font-weight: 600; 
    color: var(--blue); line-height: 1; 
    text-shadow: 0 10px 20px rgba(37, 99, 235,0.1);
}
.hc-counter-sep { width: 50px; height: 1px; background: linear-gradient(to right, var(--blue), transparent); }
.hc-counter-total { font-size: 0.85rem; color: var(--text-muted); font-weight: 700; letter-spacing: 2px; }

.hc-dots { position: absolute; left: 50%; transform: translateX(-50%); bottom: 55px; display: flex; gap: 12px; z-index: 10; }
.hc-dot { 
    width: 50px; height: 2px; background: rgba(0, 0, 0, 0.05); border: none; padding: 0; 
    position: relative; overflow: hidden; cursor: pointer; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.hc-dot::after {
    content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 0;
    background: var(--blue); transition: none;
}
.hc-dot.active { 
    background: rgba(0, 0, 0, 0.08); 
    width: 70px;
    box-shadow: 0 0 20px rgba(37, 99, 235,0.2);
}
.hc-dot.active::after {
    width: 100%;
    transition: width 6s linear;
}

.hc-scroll { position: absolute; right: 80px; bottom: 50px; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; z-index: 10; text-decoration: none; }
.hc-scroll span { writing-mode: vertical-rl; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 4px; color: var(--text-muted); transition: color 0.3s ease; }
.hc-scroll:hover span { color: var(--blue); }
.hc-scroll-line {
    width: 1px; height: 70px; background: linear-gradient(to bottom, var(--blue), transparent);
    position: relative; overflow: hidden;
}
.hc-scroll-line::after {
    content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
    background: white; animation: hcScrollLine 2s infinite;
}

@keyframes hcScrollLine {
    0% { top: -100%; }
    50% { top: 0%; }
    100% { top: 100%; }
}

@keyframes hcFadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes hcFadeLeft {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Responsive — Premium Adaptation */
@media (max-width: 1200px) {
    .hc-body { padding: 120px 20px 80px; text-align: center; }
    .hc-left { max-width: 100%; margin: 0 auto; align-items: center; }
    .hc-eyebrow { justify-content: center; }
    .hc-subtitle { margin: 0 auto 3rem; max-width: 600px; }
    .hc-actions { justify-content: center; width: 100%; }
    .hc-live-card { display: none; }
    
    .hc-search-container-horizontal { margin-top: 4rem; width: 100%; }
    .hc-search-bar-pill { 
        border-radius: 30px; padding: 25px; 
        flex-direction: column; gap: 20px;
        background: rgba(255, 255, 255, 0.95);
    }
    .hc-search-form-horizontal { flex-direction: column; width: 100%; }
    .hc-search-group { padding: 0; width: 100%; border: none; }
    .hc-search-divider { display: none; }
    .hc-search-submit-btn { width: 100%; height: 60px; border-radius: 15px; }
}

@media (max-width: 768px) {
    .hero-cinematic { min-height: 100vh; height: auto; }
    .hc-title-line { line-height: 1.1; display: block; }
    .hc-line-1, .hc-line-3 { font-size: clamp(2.5rem, 10vw, 4rem); }
    .hc-line-2 { font-size: clamp(4.5rem, 18vw, 7rem); margin: 0; }
    .hc-subtitle { font-size: 1rem; padding: 0 10px; }
    .hc-actions { flex-direction: column; gap: 15px; }
    .hc-btn-primary, .hc-btn-ghost { width: 100%; justify-content: center; padding: 18px 30px; }
    .hc-counter, .hc-scroll, .hc-dots { display: none; }
    .hc-search-container-horizontal { margin-top: 2rem; }
    .hc-search-bar-pill { padding: 20px; border-radius: 24px; }
}


/* ============================================================
   LISTING PAGE — Premium Full Design
   ============================================================ */

/* ── Page Header ── */
.listing-page-header {
    background: var(--bg-alt);
    padding: 2.5rem 0 2rem;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--grey-100);
}
.listing-page-header::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(37, 99, 235,0.06) 1px, transparent 1px);
    background-size: 28px 28px;
}
.listing-page-header::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue-muted), transparent);
}
.listing-breadcrumb {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.72rem; font-weight: 700; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.25rem;
}
.listing-breadcrumb a { color: var(--text-muted); transition: color 0.2s; }
.listing-breadcrumb a:hover { color: var(--blue); }
.listing-breadcrumb i { font-size: 0.55rem; color: var(--grey-300); }
.listing-breadcrumb span { color: var(--blue); }
.listing-page-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900; color: var(--navy);
    letter-spacing: -0.04em; margin: 0 0 0.35rem;
}
.listing-page-sub {
    font-size: 0.88rem; color: var(--text-muted);
    font-weight: 500; margin: 0;
}
.listing-view-btn {
    width: 38px; height: 38px; background: var(--white);
    border: 1px solid var(--grey-200); border-radius: 10px;
    color: var(--text-muted); font-size: 0.9rem;
    cursor: pointer; transition: all 0.2s ease;
    display: flex; align-items: center; justify-content: center;
}
.listing-view-btn:hover, .listing-view-btn.active {
    background: var(--blue); border-color: var(--blue); color: var(--white);
}
.listing-sort-select {
    background: var(--white); border: 1px solid var(--grey-200);
    border-radius: 10px; color: var(--text-main);
    padding: 0.5rem 1rem; font-size: 0.8rem; font-weight: 600;
    font-family: var(--font-sans); outline: none; cursor: pointer;
    transition: all 0.2s ease;
}
.listing-sort-select option { background: var(--white); color: var(--navy); }
.listing-sort-select:focus { border-color: var(--blue); }

/* ── Layout ── */
.listing-layout {
    background: linear-gradient(180deg, #EDF1F7 0%, #E8EEF6 100%);
    padding: 2.5rem 0 5rem;
    min-height: 70vh;
}
.listing-grid-wrap {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    align-items: start;
}

/* ── Sidebar Filter Panel ── */
.listing-sidebar { position: sticky; top: 90px; }
.filter-panel {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--grey-100);
    box-shadow: 0 8px 32px rgba(10,22,40,0.07);
    overflow: hidden;
}
.filter-panel-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--grey-100);
    font-size: 0.82rem; font-weight: 800;
    color: var(--navy); letter-spacing: 0.05em; text-transform: uppercase;
}
.filter-clear {
    font-size: 0.72rem; color: var(--blue); font-weight: 700;
    text-decoration: none; letter-spacing: 0.5px;
    transition: color 0.2s;
}
.filter-clear:hover { color: var(--blue-light); }
.filter-group {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--grey-100);
}
.filter-group:last-of-type { border-bottom: none; }
.filter-group-label {
    font-size: 0.65rem; font-weight: 800; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.85rem;
}
.filter-input-wrap {
    position: relative; display: flex; align-items: center;
}
.filter-input-wrap i {
    position: absolute; left: 0.85rem;
    color: var(--blue); font-size: 0.75rem; pointer-events: none;
}
.filter-input {
    width: 100%; padding: 0.65rem 0.85rem 0.65rem 2.25rem;
    background: var(--grey-50); border: 1.5px solid var(--grey-200);
    border-radius: 10px; font-size: 0.85rem; font-weight: 500;
    color: var(--navy); font-family: var(--font-sans); outline: none;
    transition: all 0.2s ease;
}
.filter-input:focus { border-color: var(--blue); background: var(--white); box-shadow: 0 0 0 3px var(--blue-glow); }
.filter-input::placeholder { color: var(--grey-400); }

/* Purpose radio */
.filter-purpose-row { display: flex; gap: 0.5rem; }
.filter-purpose-opt { cursor: pointer; flex: 1; }
.filter-purpose-opt input { display: none; }
.filter-purpose-opt span {
    display: block; text-align: center;
    padding: 0.55rem; border-radius: 10px;
    border: 1.5px solid var(--grey-200); background: var(--grey-50);
    font-size: 0.8rem; font-weight: 700; color: var(--text-muted);
    transition: all 0.2s ease;
}
.filter-purpose-opt input:checked + span {
    background: var(--blue); border-color: var(--blue); color: var(--white);
    box-shadow: 0 4px 12px var(--blue-glow);
}
.filter-purpose-opt:hover span { border-color: var(--blue); color: var(--blue); }

/* Type checkboxes */
.filter-type-grid { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.filter-type-chip { cursor: pointer; }
.filter-type-chip input { display: none; }
.filter-type-chip span {
    display: block; padding: 0.4rem 0.85rem;
    border-radius: 20px; border: 1.5px solid var(--grey-200);
    background: var(--grey-50); font-size: 0.75rem; font-weight: 700;
    color: var(--text-muted); transition: all 0.2s ease;
}
.filter-type-chip input:checked + span {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    border-color: var(--blue); color: var(--white);
    box-shadow: 0 4px 12px rgba(37, 99, 235,0.3);
}
.filter-type-chip:hover span { border-color: var(--blue); color: var(--blue); }

/* BHK radio */
.filter-bhk-row { display: flex; gap: 0.4rem; }
.filter-bhk-chip { cursor: pointer; flex: 1; }
.filter-bhk-chip input { display: none; }
.filter-bhk-chip span {
    display: block; text-align: center;
    padding: 0.45rem 0; border-radius: 8px;
    border: 1.5px solid var(--grey-200); background: var(--grey-50);
    font-size: 0.78rem; font-weight: 700; color: var(--text-muted);
    transition: all 0.2s ease;
}
.filter-bhk-chip input:checked + span {
    background: var(--blue); border-color: var(--blue); color: var(--white);
    box-shadow: 0 4px 12px var(--blue-glow);
}
.filter-bhk-chip:hover span { border-color: var(--blue); color: var(--blue); }

/* Apply button */
.filter-apply-btn {
    display: flex; align-items: center; justify-content: center;
    width: calc(100% - 3rem); margin: 1.25rem 1.5rem;
    padding: 0.85rem; border: none; border-radius: 12px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: var(--white); font-size: 0.82rem; font-weight: 800;
    letter-spacing: 0.1em; text-transform: uppercase;
    cursor: pointer; transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 99, 235,0.35);
    font-family: var(--font-sans);
}
.filter-apply-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37, 99, 235,0.5); }

/* ── Property Grid ── */
.listing-main { min-width: 0; }
.prop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* List view toggle */
.prop-grid.prop-grid-list { grid-template-columns: 1fr; }
.prop-grid.prop-grid-list .prop-card { display: flex; flex-direction: row; }
.prop-grid.prop-grid-list .prop-card-img { width: 280px; flex-shrink: 0; height: auto; min-height: 200px; }
.prop-grid.prop-grid-list .prop-card-body { flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.prop-grid.prop-grid-list .prop-card-btn { margin-top: auto; }

/* ── Pagination ── */
.listing-pagination {
    display: flex; align-items: center; justify-content: center;
    gap: 0.4rem; margin-top: 3rem; padding-top: 2rem;
    border-top: 1px solid var(--grey-200);
}
.page-btn {
    width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
    border-radius: 12px; border: 1.5px solid var(--grey-200);
    background: var(--white); color: var(--navy);
    font-size: 0.85rem; font-weight: 700; text-decoration: none;
    transition: all 0.2s ease; box-shadow: 0 2px 8px rgba(10,22,40,0.05);
}
.page-btn:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(37, 99, 235,0.2); }
.page-btn.active {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    border-color: var(--blue); color: var(--white);
    box-shadow: 0 6px 20px rgba(37, 99, 235,0.4);
}

/* ── Empty State ── */
.listing-empty {
    text-align: center; padding: 6rem 2rem;
    background: var(--white); border-radius: 20px;
    border: 1px solid var(--grey-100);
}
.listing-empty i { font-size: 3.5rem; color: var(--grey-300); display: block; margin-bottom: 1.5rem; }
.listing-empty h3 { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: 0.75rem; }
.listing-empty p { color: var(--text-muted); font-size: 0.95rem; }
.listing-empty a { color: var(--blue); font-weight: 700; }

/* ── Responsive ── */
@media (max-width: 1100px) {
    .listing-grid-wrap { grid-template-columns: 260px 1fr; }
    .prop-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991px) {
    .listing-grid-wrap { grid-template-columns: 1fr; }
    .listing-sidebar { position: static; }
    .filter-panel { display: none; }
    .filter-panel.mobile-open { display: block; }
    .prop-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .prop-grid { grid-template-columns: 1fr; }
    .prop-grid.prop-grid-list .prop-card { flex-direction: column; }
    .prop-grid.prop-grid-list .prop-card-img { width: 100%; }
}
