/* ============================================
   MUMBAI TUSKERS — Ultra-Luxury Design System
   ============================================ */

:root {
    --gold: #b8965a;
    --gold-light: #d4b07a;
    --gold-dark: #96753e;
    --gold-muted: rgba(184,150,90,0.12);
    --black: #0b0b0b;
    --black-rich: #111111;
    --black-card: #161616;
    --white: #ffffff;
    --cream: #faf8f5;
    --cream-dark: #f2efe9;
    --gray-100: #f5f5f5;
    --gray-200: #e5e3df;
    --gray-300: #c9c5be;
    --gray-400: #918d86;
    --gray-500: #6b6860;
    --gray-600: #4a4740;
    --gray-700: #2c2a26;

    --ff-display: 'Playfair Display', 'Georgia', serif;
    --ff-elegant: 'Cormorant Garamond', 'Georgia', serif;
    --ff-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-soft: 0 4px 20px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 40px rgba(0,0,0,0.08);
    --shadow-lg: 0 24px 64px rgba(0,0,0,0.12);
    --shadow-gold: 0 8px 32px rgba(184,150,90,0.18);

    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* === Reset === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
    font-family: var(--ff-body);
    color: var(--gray-600);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
::selection { background: var(--gold); color: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: 0.35s var(--ease); }
ul { list-style: none; }

.container { max-width: 1320px; margin: 0 auto; padding: 0 40px; }

/* === Preloader === */
.preloader {
    position: fixed; inset: 0; background: var(--black); z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-logo {
    font-family: var(--ff-display); font-size: 2.5rem; font-weight: 600;
    color: var(--gold); letter-spacing: 0.1em; margin-bottom: 24px;
}
.preloader-bar {
    width: 120px; height: 2px; background: rgba(255,255,255,0.1);
    margin: 0 auto 20px; border-radius: 2px; overflow: hidden;
}
.preloader-fill {
    width: 0; height: 100%; background: var(--gold);
    animation: preloaderFill 1.5s ease forwards;
}
.preloader-text {
    font-size: 0.7rem; letter-spacing: 0.5em; color: rgba(255,255,255,0.3);
    font-weight: 300;
}
@keyframes preloaderFill { to { width: 100%; } }

/* === Cursor === */
.cursor-dot, .cursor-ring {
    position: fixed; pointer-events: none; z-index: 9999;
    mix-blend-mode: difference; display: none;
}
@media (hover: hover) and (pointer: fine) {
    .cursor-dot, .cursor-ring { display: block; }
}
.cursor-dot {
    width: 6px; height: 6px; background: var(--gold); border-radius: 50%;
    transform: translate(-50%, -50%); transition: width 0.2s, height 0.2s, opacity 0.2s;
}
.cursor-ring {
    width: 40px; height: 40px; border: 1px solid rgba(184,150,90,0.5);
    border-radius: 50%; transform: translate(-50%, -50%);
    transition: width 0.35s, height 0.35s, border-color 0.35s;
}
body.cursor-active .cursor-dot { width: 0; height: 0; opacity: 0; }
body.cursor-active .cursor-ring { width: 64px; height: 64px; border-color: var(--gold-light); }

/* === Navigation === */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 20px 0; transition: 0.4s var(--ease);
}
.nav.scrolled {
    background: rgba(255,255,255,0.96); backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 14px 0; box-shadow: 0 1px 30px rgba(0,0,0,0.05);
}
.nav-dark .nav-link, .nav-dark .brand-name { color: var(--gray-700); }
.nav-dark.scrolled .nav-link, .nav-dark.scrolled .brand-name { color: var(--gray-700); }

.nav-inner {
    max-width: 1320px; margin: 0 auto; padding: 0 40px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 14px; z-index: 1001; }
.brand-monogram {
    width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
    border: 1.5px solid var(--gold); border-radius: 50%;
    font-family: var(--ff-display); font-size: 0.9rem; font-weight: 600;
    color: var(--gold); letter-spacing: 0.05em;
}
.brand-text { display: flex; flex-direction: column; }
.brand-name {
    font-family: var(--ff-display); font-size: 1.1rem; font-weight: 600;
    letter-spacing: 0.12em; color: var(--white); line-height: 1.2;
    transition: 0.3s;
}
.nav.scrolled .brand-name { color: var(--black); }
.brand-tagline {
    font-size: 0.55rem; letter-spacing: 0.3em; color: var(--gold);
    font-weight: 400; text-transform: uppercase;
}
.nav-menu { display: flex; gap: 36px; }
.nav-link {
    font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em;
    text-transform: uppercase; color: rgba(255,255,255,0.65); padding: 6px 0;
    position: relative; transition: 0.3s;
}
.nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1.5px;
    background: var(--gold); transition: 0.4s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav.scrolled .nav-link { color: var(--gray-400); }
.nav.scrolled .nav-link:hover, .nav.scrolled .nav-link.active { color: var(--black); }

.nav-actions { display: flex; align-items: center; gap: 20px; }
.nav-cta {
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--gold); padding: 11px 28px;
    border: 1px solid rgba(184,150,90,0.4); border-radius: 100px;
    transition: 0.35s var(--ease);
}
.nav-cta:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

.nav-toggle {
    display: none; flex-direction: column; gap: 5px; background: none;
    border: none; cursor: pointer; padding: 6px; z-index: 1001;
}
.nav-toggle span {
    width: 26px; height: 1.5px; background: var(--white); transition: 0.35s var(--ease);
    transform-origin: center;
}
.nav.scrolled .nav-toggle span, .nav-dark .nav-toggle span { background: var(--black); }
.nav-toggle.active span { background: var(--white) !important; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* Mobile Nav */
.mobile-nav {
    position: fixed; inset: 0; background: var(--black); z-index: 999;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: 0.5s var(--ease);
}
.mobile-nav.active { opacity: 1; visibility: visible; }
.mobile-nav-inner { text-align: center; }
.mobile-links li { overflow: hidden; }
.mobile-links a {
    display: block; font-family: var(--ff-display); font-size: 3rem;
    color: var(--white); padding: 10px 0;
    transform: translateY(100%); transition: transform 0.5s var(--ease-out), color 0.3s;
}
.mobile-links a::before {
    content: attr(data-num); font-family: var(--ff-body); font-size: 0.65rem;
    color: var(--gold); letter-spacing: 0.1em; margin-right: 14px; vertical-align: super;
}
.mobile-nav.active .mobile-links a { transform: translateY(0); }
.mobile-nav.active .mobile-links li:nth-child(1) a { transition-delay: 0.1s; }
.mobile-nav.active .mobile-links li:nth-child(2) a { transition-delay: 0.2s; }
.mobile-nav.active .mobile-links li:nth-child(3) a { transition-delay: 0.3s; }
.mobile-nav.active .mobile-links li:nth-child(4) a { transition-delay: 0.4s; }
.mobile-links a:hover { color: var(--gold); }
.mobile-footer { margin-top: 50px; color: var(--gray-400); font-size: 0.85rem; }
.mobile-footer a { color: var(--gold); display: block; margin-top: 8px; }

/* === Buttons === */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 36px; font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase; border-radius: 100px;
    border: none; cursor: pointer; transition: 0.4s var(--ease);
    font-family: var(--ff-body);
}
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-glass {
    background: rgba(255,255,255,0.08); color: var(--white);
    border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(10px);
}
.btn-glass:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.4); }
.btn-glass-light {
    background: rgba(255,255,255,0.1); color: var(--white);
    border: 1px solid rgba(255,255,255,0.25);
}
.btn-glass-light:hover { background: rgba(255,255,255,0.2); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--gray-700); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 12px 24px; font-size: 0.75rem; }

/* === Hero === */
.hero {
    position: relative; min-height: 100vh; display: flex; flex-direction: column;
    justify-content: center; align-items: center; text-align: center;
    padding: 140px 40px 120px; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-slide {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(11,11,11,0.65) 0%, rgba(11,11,11,0.4) 40%, rgba(11,11,11,0.8) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 880px; }
.hero-label {
    display: inline-block; font-size: 0.7rem; letter-spacing: 0.45em;
    color: var(--gold); font-weight: 400; margin-bottom: 28px;
    padding: 10px 24px; border: 1px solid rgba(184,150,90,0.3); border-radius: 100px;
}
.hero-heading {
    font-family: var(--ff-display); font-weight: 400; color: var(--white);
    line-height: 1.15; margin-bottom: 28px;
}
.hero-heading span { display: block; font-size: clamp(2.6rem, 5.5vw, 5rem); }
.hero-heading-italic {
    font-family: var(--ff-elegant) !important; font-style: italic; font-weight: 300;
    font-size: clamp(3rem, 6.5vw, 6rem) !important;
}
.gold-text {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
    font-size: 1.05rem; color: rgba(255,255,255,0.55); max-width: 620px;
    margin: 0 auto 44px; line-height: 1.8; font-weight: 300;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-indicator { margin-top: 50px; }
.hero-dots { display: flex; gap: 10px; justify-content: center; }
.hero-dot {
    width: 40px; height: 3px; background: rgba(255,255,255,0.2); border: none;
    border-radius: 3px; cursor: pointer; transition: 0.4s;
}
.hero-dot.active { background: var(--gold); width: 60px; }

/* Hero Ticker */
.hero-ticker {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
    background: rgba(11,11,11,0.6); backdrop-filter: blur(10px);
    border-top: 1px solid rgba(184,150,90,0.15); padding: 16px 0; overflow: hidden;
}
.ticker-track {
    display: flex; width: max-content; animation: ticker 35s linear infinite; gap: 0;
}
.ticker-track span {
    font-size: 0.75rem; letter-spacing: 0.3em; color: rgba(255,255,255,0.35);
    font-weight: 300; white-space: nowrap; padding: 0 16px;
}
.ticker-sep { color: var(--gold) !important; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Scroll Cue */
.hero-scroll-cue {
    position: absolute; bottom: 70px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    z-index: 3; color: rgba(255,255,255,0.3); font-size: 0.65rem;
    letter-spacing: 0.25em; text-transform: uppercase;
}
.scroll-bar {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
    0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* === Intro Stats === */
.intro { padding: 80px 0; background: var(--cream); }
.intro-grid {
    display: flex; align-items: center; justify-content: center; gap: 60px;
}
.intro-stat { text-align: center; }
.intro-num {
    font-family: var(--ff-display); font-size: 3rem; font-weight: 600;
    color: var(--black); line-height: 1;
}
.intro-plus { font-family: var(--ff-display); font-size: 2rem; color: var(--gold); }
.intro-label {
    display: block; font-size: 0.75rem; color: var(--gray-400);
    margin-top: 6px; letter-spacing: 0.08em; text-transform: uppercase;
}
.intro-divider { width: 1px; height: 50px; background: var(--gray-200); }

/* === Section Commons === */
.section-head { margin-bottom: 60px; }
.section-head.center { text-align: center; }
.section-label {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.7rem; letter-spacing: 0.35em; color: var(--gold);
    font-weight: 500; margin-bottom: 16px; text-transform: uppercase;
}
.section-label::before {
    content: ''; width: 28px; height: 1.5px; background: var(--gold);
}
.section-title {
    font-family: var(--ff-display); font-size: clamp(1.9rem, 3.5vw, 3rem);
    font-weight: 500; color: var(--black); line-height: 1.25;
}
.section-title em {
    font-family: var(--ff-elegant); font-style: italic; font-weight: 400;
    color: var(--gold-dark);
}

/* === Showcase (Home Featured) === */
.showcase { padding: 120px 0; background: var(--white); }
.showcase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.showcase-card {
    border-radius: var(--radius-lg); overflow: hidden; background: var(--cream);
    transition: 0.45s var(--ease); box-shadow: var(--shadow-soft);
}
.showcase-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.showcase-img {
    position: relative; height: 320px; overflow: hidden;
}
.showcase-img img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease);
}
.showcase-card:hover .showcase-img img { transform: scale(1.06); }
.showcase-tag {
    position: absolute; top: 16px; left: 16px; padding: 6px 16px;
    font-size: 0.6rem; font-weight: 600; letter-spacing: 0.15em;
    background: var(--black); color: var(--gold); border-radius: 100px;
}
.showcase-price-tag {
    position: absolute; bottom: 16px; right: 16px; padding: 8px 18px;
    font-size: 1rem; font-weight: 700; color: var(--white);
    background: rgba(11,11,11,0.75); backdrop-filter: blur(8px);
    border-radius: var(--radius);
}
.showcase-body { padding: 28px; }
.showcase-body h3 {
    font-family: var(--ff-display); font-size: 1.4rem; font-weight: 600;
    color: var(--black); margin-bottom: 10px;
}
.showcase-body p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 18px; }
.showcase-specs {
    display: flex; gap: 16px; font-size: 0.78rem; color: var(--gray-400);
    padding-bottom: 18px; border-bottom: 1px solid var(--gray-200); margin-bottom: 18px;
}
.showcase-specs span {
    padding: 5px 14px; background: var(--gold-muted); border-radius: 100px;
    font-weight: 500; color: var(--gold-dark); font-size: 0.72rem;
    letter-spacing: 0.03em;
}
.showcase-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em;
    text-transform: uppercase; color: var(--gold);
}
.showcase-link:hover { color: var(--gold-dark); gap: 12px; }
.showcase-cta { text-align: center; margin-top: 50px; }

/* === Locations === */
.locations { padding: 120px 0; background: var(--cream); }
.locations-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.loc-card {
    position: relative; height: 450px; border-radius: var(--radius-lg);
    overflow: hidden; cursor: pointer;
}
.loc-img {
    width: 100%; height: 100%; background-size: cover; background-position: center;
    transition: transform 0.7s var(--ease);
}
.loc-card:hover .loc-img { transform: scale(1.08); }
.loc-overlay {
    position: absolute; inset: 0; display: flex; flex-direction: column;
    justify-content: flex-end; padding: 36px;
    background: linear-gradient(to top, rgba(11,11,11,0.85) 0%, rgba(11,11,11,0.2) 60%, transparent);
    color: var(--white);
}
.loc-label {
    font-size: 0.65rem; letter-spacing: 0.2em; color: var(--gold);
    font-weight: 500; margin-bottom: 8px;
}
.loc-overlay h3 {
    font-family: var(--ff-display); font-size: 2rem; font-weight: 500; margin-bottom: 10px;
}
.loc-overlay p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 16px; }
.loc-link {
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--gold);
}
.loc-link:hover { letter-spacing: 0.12em; }

/* === Why Section === */
.why { padding: 120px 0; background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: flex-start; }
.why-left .section-label { margin-bottom: 16px; }
.why-left .section-title { margin-bottom: 24px; }
.why-desc { font-size: 1rem; color: var(--gray-500); line-height: 1.9; margin-bottom: 36px; }
.why-right { display: flex; flex-direction: column; gap: 32px; }
.why-feature {
    display: flex; gap: 24px; align-items: flex-start;
    padding-bottom: 32px; border-bottom: 1px solid var(--gray-200);
}
.why-feature:last-child { border-bottom: none; padding-bottom: 0; }
.why-num {
    font-family: var(--ff-display); font-size: 1.8rem; font-weight: 600;
    color: var(--gold); line-height: 1; min-width: 50px;
}
.why-feature h4 {
    font-size: 0.88rem; font-weight: 700; color: var(--black);
    letter-spacing: 0.04em; margin-bottom: 6px;
}
.why-feature p { font-size: 0.85rem; color: var(--gray-400); line-height: 1.6; }

/* === CTA === */
.cta { position: relative; padding: 120px 0; text-align: center; overflow: hidden; }
.cta-sm { padding: 100px 0; }
.cta-bg {
    position: absolute; inset: 0; background-size: cover;
    background-position: center; opacity: 0.2;
}
.cta-overlay { position: absolute; inset: 0; background: var(--black); }
.cta-inner { position: relative; z-index: 2; }
.cta-label {
    display: inline-block; font-size: 0.65rem; letter-spacing: 0.4em;
    color: var(--gold); margin-bottom: 20px;
}
.cta-inner h2 {
    font-family: var(--ff-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--white); font-weight: 500; margin-bottom: 16px;
}
.cta-inner h2 em { font-family: var(--ff-elegant); color: var(--gold); font-weight: 400; }
.cta-inner p { font-size: 1rem; color: rgba(255,255,255,0.5); margin-bottom: 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* === Page Hero (Inner pages) === */
.page-hero {
    position: relative; min-height: 55vh; display: flex; align-items: flex-end;
    padding: 0 0 80px; overflow: hidden;
}
.page-hero-sm { min-height: 45vh; }
.page-hero-bg {
    position: absolute; inset: 0; background-size: cover; background-position: center;
}
.page-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(11,11,11,0.5) 0%, rgba(11,11,11,0.75) 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-label {
    font-size: 0.7rem; letter-spacing: 0.4em; color: var(--gold);
    font-weight: 400; margin-bottom: 12px; display: block;
}
.page-hero-title {
    font-family: var(--ff-display); font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 500; color: var(--white); margin-bottom: 12px;
}
.page-hero-title em { font-family: var(--ff-elegant); font-weight: 400; color: var(--gold-light); }
.page-hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.5); font-weight: 300; }

/* === Properties Page === */
.prop-filters { padding: 50px 0 0; background: var(--cream); }
.filters-bar { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.filter-btn {
    padding: 10px 26px; font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase; background: transparent;
    color: var(--gray-400); border: 1.5px solid var(--gray-200); border-radius: 100px;
    cursor: pointer; transition: 0.35s var(--ease); font-family: var(--ff-body);
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active { background: var(--black); color: var(--white); border-color: var(--black); }

.prop-grid-section { padding: 60px 0 120px; background: var(--cream); }
.prop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.prop-card {
    background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
    transition: 0.45s var(--ease); box-shadow: var(--shadow-soft);
}
.prop-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.prop-card.hidden-card { display: none; }
.prop-card-img { position: relative; height: 280px; overflow: hidden; }
.prop-card-img img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease);
}
.prop-card:hover .prop-card-img img { transform: scale(1.06); }
.prop-card-badge {
    position: absolute; top: 14px; left: 14px; padding: 5px 14px;
    font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em;
    background: var(--black); color: var(--gold); border-radius: 100px;
}
.badge-gold { background: var(--gold); color: var(--white); }
.prop-card-price {
    position: absolute; bottom: 14px; right: 14px; padding: 7px 16px;
    font-size: 1.05rem; font-weight: 700; color: var(--white);
    background: rgba(11,11,11,0.75); backdrop-filter: blur(8px);
    border-radius: var(--radius);
}
.prop-card-body { padding: 26px; }
.prop-card-body h3 {
    font-family: var(--ff-display); font-size: 1.25rem; font-weight: 600;
    color: var(--black); margin-bottom: 10px;
}
.prop-card-body p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.65; margin-bottom: 18px; }
.prop-specs {
    display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px;
    padding-bottom: 18px; border-bottom: 1px solid var(--gray-200);
}
.prop-specs li {
    padding: 5px 14px; background: var(--gold-muted); border-radius: 100px;
    font-size: 0.72rem; font-weight: 500; color: var(--gold-dark);
    letter-spacing: 0.02em;
}
.prop-specs li strong { color: var(--black); font-weight: 700; }
.prop-card-foot { display: flex; justify-content: space-between; align-items: center; }
.prop-rera { font-size: 0.68rem; color: var(--gray-300); letter-spacing: 0.02em; }
.prop-enquire {
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em;
    text-transform: uppercase; color: var(--gold);
}
.prop-enquire:hover { color: var(--gold-dark); }

/* === About Page === */
.about-story { padding: 120px 0; background: var(--white); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-images { position: relative; }
.story-img-main {
    border-radius: var(--radius-lg); overflow: hidden; height: 520px; box-shadow: var(--shadow-lg);
}
.story-img-main img { width: 100%; height: 100%; object-fit: cover; }
.story-img-accent {
    position: absolute; bottom: -30px; right: -30px; width: 240px; height: 300px;
    border-radius: var(--radius); overflow: hidden;
    border: 6px solid var(--white); box-shadow: var(--shadow-lg);
}
.story-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.story-badge {
    position: absolute; top: -20px; left: -20px; background: var(--gold);
    color: var(--white); padding: 28px; border-radius: var(--radius);
    text-align: center; box-shadow: var(--shadow-gold);
}
.story-badge-num { font-family: var(--ff-display); font-size: 2.5rem; font-weight: 700; display: block; line-height: 1; }
.story-badge-text { font-size: 0.7rem; letter-spacing: 0.05em; text-transform: uppercase; line-height: 1.4; margin-top: 4px; }
.story-content .section-label { margin-bottom: 16px; }
.story-content .section-title { margin-bottom: 28px; }
.story-text { font-size: 0.98rem; color: var(--gray-500); line-height: 1.9; margin-bottom: 18px; }

/* Values */
.values { padding: 120px 0; background: var(--cream); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.value-card {
    background: var(--white); padding: 40px 32px; border-radius: var(--radius-lg);
    transition: 0.4s var(--ease); border: 1px solid transparent;
}
.value-card:hover { border-color: rgba(184,150,90,0.2); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-num {
    font-family: var(--ff-display); font-size: 2rem; font-weight: 600;
    color: var(--gold); line-height: 1; margin-bottom: 20px; display: block;
}
.value-card h3 {
    font-family: var(--ff-display); font-size: 1.2rem; font-weight: 600;
    color: var(--black); margin-bottom: 12px;
}
.value-card p { font-size: 0.88rem; color: var(--gray-400); line-height: 1.7; }

/* Numbers */
.numbers { padding: 80px 0; background: var(--black); }
.numbers-grid { display: flex; justify-content: center; gap: 80px; }
.number-item { text-align: center; }
.number-val {
    font-family: var(--ff-display); font-size: 3.5rem; font-weight: 600;
    color: var(--white); line-height: 1;
}
.number-unit { font-family: var(--ff-display); font-size: 1.8rem; color: var(--gold); }
.number-label {
    display: block; font-size: 0.75rem; color: rgba(255,255,255,0.4);
    margin-top: 8px; letter-spacing: 0.08em; text-transform: uppercase;
}

/* RERA */
.rera-section { padding: 80px 0; background: var(--cream); }
.rera-card {
    display: flex; gap: 32px; align-items: flex-start; padding: 48px;
    background: var(--white); border-radius: var(--radius-lg);
    border: 1px solid rgba(184,150,90,0.15); box-shadow: var(--shadow-soft);
}
.rera-icon { color: var(--gold); flex-shrink: 0; margin-top: 4px; }
.rera-content h3 { font-family: var(--ff-display); font-size: 1.4rem; font-weight: 600; color: var(--black); margin-bottom: 10px; }
.rera-content p { font-size: 0.92rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 16px; }
.rera-number { display: block; font-size: 0.85rem; font-weight: 600; color: var(--gold-dark); letter-spacing: 0.04em; margin-bottom: 4px; }
.rera-link { font-size: 0.78rem; color: var(--gray-400); }

/* Testimonials */
.testimonials { padding: 120px 0; background: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testi-card {
    background: var(--cream); border-radius: var(--radius-lg); padding: 40px 32px;
    transition: 0.4s var(--ease); border: 1px solid transparent;
}
.testi-card:hover { border-color: rgba(184,150,90,0.2); transform: translateY(-4px); }
.testi-dark { background: var(--black); color: var(--white); border-color: rgba(184,150,90,0.15); }
.testi-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 4px; margin-bottom: 20px; }
.testi-quote {
    font-family: var(--ff-elegant); font-size: 1.15rem; font-style: italic;
    line-height: 1.7; color: var(--gray-600); margin-bottom: 28px;
}
.testi-dark .testi-quote { color: rgba(255,255,255,0.65); }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
    width: 44px; height: 44px; border-radius: 50%; background: var(--gold);
    color: var(--white); display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em;
}
.testi-author strong { display: block; font-size: 0.88rem; color: var(--black); }
.testi-dark .testi-author strong { color: var(--white); }
.testi-author span { font-size: 0.75rem; color: var(--gray-400); }

/* === Contact Page === */
.contact-section { padding: 100px 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: flex-start; }
.contact-info .section-label { margin-bottom: 16px; }
.contact-info .section-title { margin-bottom: 20px; }
.contact-desc { font-size: 0.98rem; color: var(--gray-500); line-height: 1.8; margin-bottom: 40px; }
.contact-items { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-item-icon {
    width: 48px; height: 48px; background: var(--gold-muted); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; color: var(--gold);
}
.contact-item strong { display: block; font-size: 0.82rem; color: var(--black); letter-spacing: 0.04em; margin-bottom: 4px; }
.contact-item p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.6; }
.contact-socials { display: flex; gap: 10px; margin-top: 36px; }
.social-btn {
    width: 44px; height: 44px; border: 1.5px solid var(--gray-200); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gray-500); transition: 0.35s var(--ease);
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--white); transform: translateY(-3px); }

/* Contact Form */
.contact-form-wrap {}
.contact-form {
    background: var(--white); padding: 48px; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.form-heading { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 600; color: var(--black); margin-bottom: 6px; }
.form-sub { font-size: 0.88rem; color: var(--gray-400); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block; font-size: 0.72rem; font-weight: 600; color: var(--gray-600);
    letter-spacing: 0.06em; margin-bottom: 8px; text-transform: uppercase;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 13px 16px; font-size: 0.92rem; font-family: var(--ff-body);
    color: var(--black); background: var(--cream); border: 1.5px solid transparent;
    border-radius: var(--radius); transition: 0.3s; outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-300); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px rgba(184,150,90,0.08);
}
.form-group select {
    cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23918d86' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 0.75rem; color: var(--gray-300); text-align: center; margin-top: 16px; }

/* Map */
.map-section { padding: 0; }
.map-placeholder {
    height: 380px; background: var(--black-rich); position: relative;
    display: flex; align-items: center; justify-content: center;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23222' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.map-overlay-text { text-align: center; z-index: 2; }
.map-overlay-text h3 { font-family: var(--ff-display); font-size: 1.6rem; color: var(--white); margin-bottom: 8px; }
.map-overlay-text p { font-size: 0.92rem; color: rgba(255,255,255,0.5); margin-bottom: 24px; }

/* === Footer === */
.footer { background: var(--black); color: rgba(255,255,255,0.5); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 50px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.footer-brand .brand-name { color: var(--white); }
.footer-about p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-rera { padding: 10px 16px; background: rgba(184,150,90,0.08); border: 1px solid rgba(184,150,90,0.15); border-radius: var(--radius); display: inline-block; }
.footer-rera span { font-size: 0.72rem; color: var(--gold); letter-spacing: 0.06em; }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; color: var(--white); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.85rem; color: rgba(255,255,255,0.4); transition: 0.3s; }
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom { padding: 28px 0; display: flex; justify-content: space-between; font-size: 0.75rem; color: rgba(255,255,255,0.25); }

/* === Back to Top === */
.totop {
    position: fixed; bottom: 28px; right: 28px; width: 46px; height: 46px;
    background: var(--gold); color: var(--white); border: none; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; cursor: pointer;
    z-index: 900; opacity: 0; visibility: hidden; transform: translateY(20px);
    transition: 0.4s var(--ease); box-shadow: var(--shadow-gold);
}
.totop.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.totop:hover { background: var(--gold-dark); transform: translateY(-4px); }

/* === Animations === */
[data-animate] { opacity: 0; transform: translateY(36px); transition: opacity 0.8s ease, transform 0.8s var(--ease-out); }
[data-animate].animated { opacity: 1; transform: translateY(0); }

/* === Responsive === */
@media (max-width: 1200px) {
    .showcase-grid, .prop-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 992px) {
    .nav-menu { display: none; }
    .nav-cta span { display: none; }
    .nav-cta { padding: 10px; width: 40px; height: 40px; display: none; }
    .nav-toggle { display: flex; }
    .why-grid, .story-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .testi-grid, .locations-row { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
    .loc-card { height: 320px; }
    .intro-grid { flex-wrap: wrap; gap: 30px; }
    .intro-divider { display: none; }
    .numbers-grid { flex-wrap: wrap; gap: 40px; }
}
@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .nav-inner { padding: 0 20px; }
    .hero { padding: 140px 20px 120px; }
    .showcase, .locations, .why, .about-story, .values, .testimonials { padding: 80px 0; }
    .showcase-grid, .prop-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 32px 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
    .values-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .story-img-main { height: 350px; }
    .story-img-accent { width: 180px; height: 220px; right: 10px; bottom: -15px; }
    .rera-card { flex-direction: column; padding: 32px; }
    .mobile-links a { font-size: 2.2rem; }
    .page-hero { min-height: 40vh; padding-bottom: 50px; }
    .hero-scroll-cue { display: none; }
    .numbers-grid { gap: 24px; }
    .number-val { font-size: 2.5rem; }
}
@media (max-width: 480px) {
    .hero-heading span { font-size: 2.2rem; }
    .hero-heading-italic { font-size: 2.6rem !important; }
    .hero-label { font-size: 0.6rem; letter-spacing: 0.3em; }
}
