/* ═══════════════════════════════════════════════════════════════
   Urban Sytes — Light Theme Design System
   Premium Real Estate | Nashik | Making Realty Real
   ═══════════════════════════════════════════════════════════════ */

/* ─── CSS Variables ─────────────────────────────────────────── */
:root {
  --bg-page:      #FDFAF4;
  --bg-white:      #FFFFFF;
  --bg-light:      #F8F3E8;
  --bg-gold-tint:  #FDF6E3;
  --bg-dark:       #1A1203;
  --bg-dark-mid:   #2C2205;

  --gold:          #B8940A;
  --gold-mid:      #C9A84C;
  --gold-light:    #E8C96A;
  --gold-dark:     #8B6914;
  --gold-border:   #E2D5B5;

  --text-dark:     #1A1203;
  --text-mid:      #4A3F2F;
  --text-muted:    #9B8B6B;
  --text-white:    #FFFFFF;
  --text-gold:     #B8940A;

  --saffron:      #E8690B;
  --green:         #1B5E20;
  --green-light:   #E8F5E9;
  --red-light:     #FFEBEE;
  --red:           #C62828;

  --border:        #E2D5B5;
  --border-light:  #F0E8D0;
  --shadow-xs:     0 1px 4px rgba(184,148,10,.06);
  "--shadow-sm:     0 2px 8px rgba(184,148,10,.10);
  --shadow-md:     0 6px 24px rgba(184,148,10,.14);
  --shadow-lg:     0 12px 48px rgba(184,148,10,.18);
  --shadow-xl:     0 20px 60px rgba(26,18,3,.15);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --section-y: 72px;
  --container: 1220px;

  --ease:      cubic-bezier(.4,0,.2,1);
  --ease-out:  cubic-bezcier(0,0,.2,1);
  --dur:       .3s;
}

/* ─── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; overflow-x: hidden !important; max-width: 100vw; }
body { font-family: var(--font-body); font-size: 1rem; line-height: 1.7; color: var(--text-dark); background: var(--bg-page); overflow-x: hidden !important; max-width: 100vw; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ─── Layout ──────────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-y) 0; }
.section-alt { background: var(--bg-light); }
.section-dark { background: var(--bg-dark); color: var(--text-white); }

/* ─── Section Headers ────────────────────────────────────────── */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.section-eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--gold); border-radius: 2px; }
.section-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.2; color: var(--text-dark); margin-bottom: 16px; }
.section-title.white { color: var(--text-white); }
.section-subtitle { font-size: 1.0625rem; color: var(--text-mid); max-width: 560px; line-height: 1.75; }
.section-subtitle.white { color: rgba(255,255,255,.75); }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }
.section-header.center .section-eyebrow { justify-content: center; }

/* ─── Buttons ─────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: .9375rem; font-weight: 600; padding: 14px 32px; border-radius: 4px; transition: all var(--dur) var(--ease); cursor: pointer; white-space: nowrap; }
.btn-primary { background: var(--gold); color: #fff; box-shadow: 0 2px 8px rgba(184,148,10,.3); }
.btn-primary:hover { background: var(--gold-dark); box-shadow: 0 6px 20px rgba(184,148,10,.4); transform: translateY(-1px); }
.btn-outline { border: 2px solid var(--gold); color: var(--gold); background: transparent; }
.btn-outline:hover { background: var(--gold); color: #fff; }
.btn-outline-white { border: 2px solid rgba(255,255,255,.7); color: #fff; background: transparent; }
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.btn-white { background: #fff; color: var(--gold-dark); box-shadow: var(--shadow-sm); }
.btn-white:hover { background: var(--bg-gold-tint); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-sm { padding: 10px 22px; font-size: .875rem; }
.btn-lg { padding: 18px 44px; font-size: 1.0625rem; }
.btn-whatsapp { background: #25D366; color: #fff; box-shadow: 0 2px 8px rgba(37,211,102,.3); }
.btn-whatsapp:hover { background: #1DA851; box-shadow: 0 6px 20px rgba(37,211,102,.4); transform: translateY(-1px); }
.btn-call { background: var(--saffron); color: #fff; }
.btn-call:hover { background: #C9560A; transform: translateY(-1px); }

/* ─── Floating WhatsApp ─────────────────────────────────────── */
.float-whatsapp-btn {
  position: fixed; bottom: 28px; right: 24px; z-index: 999;
  display: flex; align-items: center; gap: 0;
  height: 56px; border-radius: 28px;
  background: #25D366; color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  overflow: hidden; max-width: 56px;
  transition: max-width .35s cubic-bezier(.4,0,.2,1), box-shadow .25s, transform .25s;
}
.float-whatsapp-btn:hover {
  max-width: 200px;
  box-shadow: 0 8px 30px rgba(37,211,102,.6);
  transform: translateY(-2px);
}
.float-whatsapp-btn::before {
  content: ''; position: absolute; inset: -5px; border-radius: 32px;
  border: 2px solid rgba(37,211,102,.4);
  animation: wa-pulse 2.2s ease-in-out infinite;
}
@keyframes wa-pulse { 0%,100%{transform:scale(1);opacity:.7} 60%{transform:scale(1.14);opacity:0} }
.float-wa-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.float-wa-icon svg{fill:#fff!important}
.float-wa-label {
  white-space: nowrap; font-size: .875rem; font-weight: 600;
  padding-right: 18px; padding-left: 2px;
  opacity: 0; transition: opacity .2s .1s;
  color: #fff; letter-spacing: .01em;
}
.float-whatsapp-btn:hover .float-wa-label { opacity: 1; }

/* ─── Navigation ─────────────────────────────────────────────── */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 800; background: rgba(253,250,244,.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: border-color var(--dur), box-shadow var(--dur); }
.navbar.scrolled { border-bottom-color: var(--gold-border); box-shadow: 0 2px 16px rgba(184,148,10,.10); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; padding: 0 24px; max-width: var(--container); margin: 0 auto; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.nav-logo-img { height: 54px; width: auto; display: block; object-fit: contain; }
.nav-logo-icon { width: 44px; height: 44px; flex-shrink: 0; }
.nav-logo-name { font-family: var(--font-display); font-size: 1.1875rem; font-weight: 700; color: var(--text-dark); letter-spacing: .02em; line-height: 1.2; }
.nav-logo-tagline { font-size: .625rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link { font-size: .875rem; font-weight: 500; color: var(--text-mid); padding: 8px 12px; border-radius: 4px; transition: color var(--dur), background var(--dur); position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: 4px; left: 12px; right: 12px; height: 2px; background: var(--gold); border-radius: 1px; transform: scaleX(0); transition: transform var(--dur) var(--ease); }
.nav-link:hover, .nav-link.active { color: var(--gold-dark); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-phone { font-size: .8125rem; font-weight: 600; color: var(--text-mid); display: flex; align-items: center; gap: 5px; }
.nav-phone:hover { color: var(--gold); }
.nav-call-btn { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: var(--bg-gold-tint); border: 1.5px solid var(--gold-border); color: var(--gold-dark); transition: all var(--dur); flex-shrink: 0; }
.nav-call-btn:hover { background: var(--gold); color: #fff; border-color: var(--gold); transform: scale(1.08); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: all var(--dur) var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--bg-white); border-top: 1px solid var(--border); box-shadow: var(--shadow-lg); padding: 20px 24px 28px; z-index: 1000; flex-direction: column; gap: 4px; }
.mobile-nav.open { display: flex; }
.mobile-nav a { min-height: 44px; display: flex; align-items: center; }
.mobile-nav .nav-link { padding: 12px 4px; font-size: 1rem; border-bottom: 1px solid var(--border-light); border-radius: 0; }
.mobile-nav .nav-link::after { display: none; }
.mobile-nav .btn { width: 100%; justify-content: center; margin-top: 12px; }
/* ── Dropdown nav ── */
/* ===== Navbar dropdowns (enhanced) ===== */
.nav-item-dropdown{position:relative}
.nav-item-dropdown>.nav-link{display:flex;align-items:center;gap:5px}
.nav-item-dropdown>.nav-link::after{content:'\25BE';font-size:0.6rem;opacity:0.65;transition:transform 0.25s ease;position:static;width:auto;height:auto;background:none;transform:none;border-radius:0}
.nav-item-dropdown:hover>.nav-link::after{transform:rotate(-180deg);opacity:1}
.nav-dropdown{position:absolute;top:100%;left:0;margin-top:14px;min-width:230px;padding:8px;background:#FFFFFF;border:1px solid #ECE0C4;border-radius:14px;box-shadow:0 16px 44px rgba(26,18,3,0.16),0 2px 8px rgba(26,18,3,0.06);opacity:0;visibility:hidden;pointer-events:none;transform:translateY(10px);transition:opacity 0.22s ease,transform 0.22s ease;z-index:1001}
.nav-dropdown::before{content:'';position:absolute;left:0;right:0;top:-16px;height:18px}
.nav-item-dropdown:hover>.nav-dropdown,
.nav-item-dropdown:focus-within>.nav-dropdown{opacity:1;visibility:visible;pointer-events:auto;transform:translateY(0)}
.nav-dropdown-item{display:block;padding:10px 16px;border-radius:9px;color:#1A1203;font-size:0.9rem;font-weight:500;line-height:1.25;text-decoration:none;white-space:nowrap;transition:background 0.15s ease,color 0.15s ease}
.nav-dropdown-item:hover{background:#FDF6E3;color:#B8940A}
.nav-dropdown-item.active{color:#B8940A;font-weight:600;background:#FBF1D8}
.nav-dropdown-wide{left:0;display:grid;grid-auto-flow:column;grid-template-rows:repeat(7,auto);grid-template-columns:max-content max-content;gap:2px 8px;padding:10px}
@media(max-width:1024px){.nav-dropdown-wide{grid-auto-flow:row;grid-template-rows:none;grid-template-columns:1fr}}
/* Mobile dropdown */
.mobile-nav-dropdown{padding:0 0 4px 16px}
.mobile-nav-dropdown .nav-link{font-size:0.9rem;opacity:0.85}

/* ─── Hero ────────────────────────────────────────────────────── */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 72px; background: var(--bg-dark); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.hero-pattern { position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 50%, rgba(184,148,10,.12) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(232,105,11,.08) 0%, transparent 40%); z-index: 1; }
.hero-inner { position: relative; z-index: 2; max-width: var(--container); margin: 0 auto; padding: 80px 24px 100px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(184,148,10,.15); border: 1px solid rgba(184,148,10,.3); color: var(--gold-mid); font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 7px 16px; border-radius: 32px; margin-bottom: 28px; }
.hero-badge-dot { width: 6px; height: 6px; background: var(--gold-mid); border-radius: 50%; animation: pulse 2s infinite; }
.hero-title { font-family: var(--font-display); font-size: clamp(2.5rem, 5.5vw, 4.2rem); font-weight: 700; line-height: 1.12; color: #fff; margin-bottom: 24px; }
.hero-title .accent { color: var(--gold-mid); font-style: italic; }
.hero-subtitle { font-size: 1.0625rem; color: rgba(255,255,255,.75); line-height: 1.75; max-width: 500px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.1); flex-wrap: wrap; }
.hero-stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gold-mid); line-height: 1; margin-bottom: 4px; }
.hero-stat-label { font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.hero-panel { background: rgba(253,250,244,.06); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(184,148,10,.2); border-radius: 12px; padding: 36px; }
.hero-panel-title { font-family: var(--font-display); font-size: 1.375rem; color: #fff; margin-bottom: 8px; }
.hero-panel-subtitle { font-size: .875rem; color: rgba(255,255,255,.6); margin-bottom: 20px; }
.hero-form .form-group { margin-bottom: 14px; }
.hero-form input, .hero-form select { width: 100%; padding: 12px 16px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 6px; color: #fff; font-family: var(--font-body); font-size: .9375rem; outline: none; transition: border-color var(--dur); appearance: none; }
.hero-form input::placeholder { color: rgba(255,255,255,.4); }
.hero-form input:focus, .hero-form select:focus { border-color: var(--gold-mid); }
.hero-form select { color: rgba(255,255,255,.7); }
.hero-form select option { background: var(--bg-dark); color: #fff; }
.hero-form .btn { width: 100%; justify-content: center; margin-top: 4px; }

/* ─── Hero Visual (replaces form) ────────────────────────────── */
.hero-visual { position: relative; height: 480px; border-radius: 16px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-visual-inner { position: relative; z-index: 2; width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; }
.hero-om { font-family: serif; font-size: 5rem; color: rgba(201,168,76,.25); position: absolute; top: 32px; left: 50%; transform: translateX(-50%); letter-spacing: 0; animation: om-glow 4s ease-in-out infinite; pointer-events: none; }
@keyframes om-glow { 0%,100%{opacity:.25;text-shadow:0 0 20px rgba(201,168,76,0)} 50%{opacity:.55;text-shadow:0 0 40px rgba(201,168,76,.4)} }
.hero-mountain-wrap { position: absolute; bottom: 0; left: 0; right: 0; }
.hero-mountains { width: 100%; display: block; }
.hero-cards-float { display: flex; gap: 12px; padding: 0 24px 28px; width: 100%; }
.hero-float-card { background: rgba(253,250,244,.1); backdrop-filter: blur(10px); border: 1px solid rgba(184,148,10,.25); border-radius: 10px; padding: 12px 16px; display: flex; align-items: center; gap: 10px; flex: 1; animation: float-card 6s ease-in-out infinite; }
.hero-float-card--1 { animation-delay: 0s; }
.hero-float-card--2 { animation-delay: 2s; }
.hero-float-card--3 { animation-delay: 4s; }
@keyframes float-card { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.hfc-icon { font-size: 1.5rem; }
.hfc-text { display: flex; flex-direction: column; }
.hfc-text strong { font-size: .8125rem; color: var(--gold-mid); font-weight: 700; line-height: 1.2; }
.hfc-text span { font-size: .6875rem; color: rgba(255,255,255,.55); }

/* ─── Marquee Trust Bar ───────────────────────────────────────── */
.marquee-bar { background: var(--bg-white); border-top: 1px solid var(--gold-border); border-bottom: 1px solid var(--gold-border); padding: 14px 0; overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent); mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent); }
.marquee-track { display: flex; width: max-content; min-width: max-content; flex-shrink: 0; animation: marquee-scroll 30s linear infinite; will-change: transform; }
.marquee-content { display: flex; align-items: center; gap: 0; white-space: nowrap; flex-shrink: 0; flex: 0 0 auto; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item { display: inline-flex; align-items: center; gap: 8px; font-size: .875rem; font-weight: 600; color: var(--text-mid); padding: 0 24px; }
.marquee-icon { font-size: 1rem; }
.marquee-sep { color: var(--gold); font-size: .6rem; padding: 0 4px; opacity: .7; }

/* ─── About Section ───────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-visual { position: relative; }
.about-img-main { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 8px; box-shadow: var(--shadow-lg); }
.about-img-accent { position: absolute; width: 45%; aspect-ratio: 1; object-fit: cover; border-radius: 8px; box-shadow: var(--shadow-md); bottom: -24px; right: -24px; border: 4px solid var(--bg-white); }
.about-badge-float { position: absolute; top: -16px; left: -16px; background: var(--gold); color: #fff; padding: 16px 20px; border-radius: 8px; text-align: center; box-shadow: var(--shadow-md); }
.about-badge-num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; line-height: 1; }
.about-badge-label { font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; opacity: .85; }
.about-features { display: flex; flex-direction: column; gap: 20px; margin: 32px 0; }
.about-feature { display: flex; gap: 16px; align-items: flex-start; }
.about-feature-icon { width: 44px; height: 44px; flex-shrink: 0; background: var(--bg-gold-tint); border: 1px solid var(--gold-border); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-top: 2px; }
.about-feature-title { font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.about-feature-text { font-size: .9rem; color: var(--text-mid); line-height: 1.6; }

/* ─── USP / Why Choose Us ─────────────────────────────────────── */
.usps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.usp-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: 10px; padding: 36px 28px; transition: transform var(--dur) var(--ease), box-shadow var(--dur); position: relative; overflow: hidden; }
.usp-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%); transform: scaleX(0); transform-origin: left; transition: transform var(--dur) var(--ease); }
.usp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.usp-card:hover::before { transform: scaleX(1); }
.usp-icon { width: 56px; height: 56px; background: var(--bg-gold-tint); border: 1px solid var(--gold-border); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; }
.usp-title { font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; }
.usp-text { font-size: .9rem; color: var(--text-mid); line-height: 1.65; }

/* ─── Projects Grid ───────────────────────────────────────────── */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.project-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; transition: transform var(--dur) var(--ease), box-shadow var(--dur); display: flex; flex-direction: column; }
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.project-card-img { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--bg-light); }
.project-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.project-card:hover .project-card-img img { transform: scale(1.06); }
.project-card-badge { position: absolute; top: 14px; left: 14px; background: var(--green); color: #fff; font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 5px 10px; border-radius: 4px; display: flex; align-items: center; gap: 4px; }
.project-card-badge.nmrda { background: var(--gold-dark); }
.project-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.project-card-location { font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; display: flex; align-items: center; gap: 4px; }
.project-card-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; line-height: 1.3; }
.project-card-desc { font-size: .875rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 18px; flex: 1; }
.project-card-meta { display: flex; gap: 20px; padding: 14px 0; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); margin-bottom: 18px; }
.project-meta-label { font-size: .7rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 3px; }
.project-meta-value { font-size: .9rem; font-weight: 700; color: var(--text-dark); }
.project-card-actions { display: flex; gap: 10px; }
.project-card-actions .btn { flex: 1; justify-content: center; padding: 11px 16px; font-size: .875rem; }
.project-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-gold-tint) 100%); font-size: 3rem; min-height: 220px; }

/* ─── Stats Row ───────────────────────────────────────────────── */
.stats-row { background: var(--bg-dark); padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.stat-num { font-family: var(--font-display); font-size: clamp(2.5rem, 4.5vw, 3.5rem); font-weight: 700; color: var(--gold-mid); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: .8125rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.55); }

/* ─── Investment Benefits ─────────────────────────────────────── */
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.benefit-card { display: flex; align-items: flex-start; gap: 18px; background: var(--bg-white); border: 1px solid var(--border); border-radius: 10px; padding: 28px; transition: transform var(--dur), box-shadow var(--dur); }
.benefit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.benefit-icon { width: 52px; height: 52px; flex-shrink: 0; background: var(--bg-gold-tint); border: 1px solid var(--gold-border); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.benefit-title { font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.benefit-text { font-size: .875rem; color: var(--text-mid); line-height: 1.6; }

/* ─── Testimonials ────────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: 10px; padding: 32px; transition: transform var(--dur), box-shadow var(--dur); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-quote { font-size: 3rem; line-height: 1; color: var(--gold-light); font-family: Georgia, serif; margin-bottom: 16px; }
.testimonial-text { font-size: .9375rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testimonial-stars span { color: var(--gold); font-size: 1rem; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: #fff; font-weight: 700; font-family: var(--font-display); flex-shrink: 0; }
.testimonial-name { font-weight: 700; color: var(--text-dark); font-size: .9375rem; }
.testimonial-location { font-size: .8125rem; color: var(--text-muted); }

/* ─── Gallery ─────────────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { border-radius: 8px; overflow: hidden; position: relative; cursor: pointer; background: var(--bg-light); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; min-height: 200px; transition: transform .5s var(--ease); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(26,18,3,.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity var(--dur); color: #fff; font-size: 2rem; }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ─── FAQ ─────────────────────────────────────────────────────── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: 8px; margin-bottom: 12px; overflow: hidden; background: var(--bg-white); transition: box-shadow var(--dur); }
.faq-item.open { box-shadow: var(--shadow-sm); }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; cursor: pointer; font-weight: 600; color: var(--text-dark); font-size: 1rem; gap: 16px; user-select: none; }
.faq-question:hover { color: var(--gold-dark); }
.faq-icon { width: 28px; height: 28px; border: 1.5px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: .9rem; color: var(--gold); transition: transform var(--dur), background var(--dur), border-color var(--dur); }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); border-color: var(--gold); color: #fff; }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height .4s var(--ease), padding .4s var(--ease); color: var(--text-mid); font-size: .9375rem; line-height: 1.75; }
.faq-item.open .faq-answer { max-height: 400px; padding: 0 24px 20px; }

/* ─── Contact Section ─────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.contact-info-icon { width: 44px; height: 44px; flex-shrink: 0; background: var(--bg-gold-tint); border: 1px solid var(--gold-border); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.contact-info-label { font-size: .75rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.contact-info-value { font-weight: 600; color: var(--text-dark); font-size: 1rem; }
.contact-info-value a:hover { color: var(--gold); }
.contact-social { display: flex; gap: 12px; margin-top: 28px; }
.social-btn { width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: all var(--dur); border: 1px solid var(--border); color: var(--text-mid); }
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: #fff; transform: translateY(-2px); }

/* ─── Forms ───────────────────────────────────────────────────── */
.form-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: 12px; padding: 40px; box-shadow: var(--shadow-sm); }
.form-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.form-subtitle { font-size: .9rem; color: var(--text-mid); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-size: .8125rem; font-weight: 600; letter-spacing: .03em; color: var(--text-mid); margin-bottom: 7px; text-transform: uppercase; }
label .required { color: var(--red); margin-left: 2px; }
input[type="text"], input[type="email"], input[type="tel"], input[type="date"], select, textarea { width: 100%; padding: 12px 16px; background: var(--bg-page); border: 1.5px solid var(--border); border-radius: 6px; font-family: var(--font-body); font-size: .9375rem; color: var(--text-dark); outline: none; transition: border-color var(--dur), box-shadow var(--dur); appearance: none; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,148,10,.1); background: var(--bg-white); }
input::placeholder, textarea::placeholder { color: var(--text-muted); }
textarea { resize: vertical; min-height: 110px; }
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%239B8B6B' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 20px; padding-right: 40px; }
.form-success { display: none; background: var(--green-light); border: 1px solid #A5D6A7; border-radius: 8px; padding: 16px 20px; color: var(--green); font-weight: 600; font-size: .9375rem; margin-bottom: 16px; align-items: center; gap: 10px; }
.form-success.show { display: flex; }

/* ─── Map ─────────────────────────────────────────────────────── */
.map-embed { width: 100%; height: 420px; border-radius: 10px; overflow: hidden; border: 1px solid var(--border); }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ─── CTA Banner ─────────────────────────────────────────────── */
.cta-banner { background: linear-gradient(135deg, var(--bg-dark) 0%, #2C1A05 50%, var(--bg-dark) 100%); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(184,148,10,.2) 0%, transparent 60%); }
.cta-banner-inner { position: relative; z-index: 1; }
.cta-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; color: #fff; margin-bottom: 16px; }
.cta-subtitle { font-size: 1.0625rem; color: rgba(255,255,255,.7); max-width: 520px; margin: 0 auto 36px; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ─── Footer ──────────────────────────────────────────────────── */
.footer { background: var(--bg-dark); color: rgba(255,255,255,.75); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 56px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.footer-logo-img { height: 64px; width: auto; display: block; filter: brightness(0) invert(1); }
.footer-logo-icon { width: 40px; height: 40px; flex-shrink: 0; }
.footer-name { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; color: #fff; }
.footer-tagline { font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-mid); }
.footer-desc { font-size: .875rem; line-height: 1.75; margin-bottom: 24px; max-width: 320px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: rgba(255,255,255,.6); transition: all var(--dur); }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.footer-col-title { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-mid); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.65); transition: color var(--dur); }
.footer-links a:hover { color: var(--gold-mid); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; font-size: .875rem; }
.footer-contact-icon { color: var(--gold-mid); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .8125rem; color: rgba(255,255,255,.4); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,.4); }
.footer-bottom-links a:hover { color: var(--gold-mid); }
.footer-legal { color: var(--gold-mid); }

/* ─── Page Header ─────────────────────────────────────────────── */
.page-header { background: var(--bg-dark); padding: 72px 0 64px; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(184,148,10,.12) 0%, transparent 60%), radial-gradient(ellipse at 70% 50%, rgba(232,105,11,.06) 0%, transparent 40%); }
.page-header-inner { position: relative; z-index: 1; }
.page-header-eyebrow { font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-mid); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.page-header-eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--gold-mid); }
.page-header h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 14px; }
.page-header p { font-size: 1.0625rem; color: rgba(255,255,255,.7); max-width: 560px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .8125rem; color: rgba(255,255,255,.5); margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,.5); transition: color var(--dur); }
.breadcrumb a:hover { color: var(--gold-mid); }
.breadcrumb-sep { opacity: .4; }

/* ─── Project Detail ──────────────────────────────────────────── */
.project-detail-hero { background: var(--bg-dark); padding: 72px 0 0; }
.project-detail-img-wrap { position: relative; height: 480px; overflow: hidden; margin-top: 40px; }
.project-detail-img-wrap img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.project-detail-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--bg-dark) 0%, transparent 50%); }
.project-detail-meta-bar { background: var(--bg-white); border-bottom: 1px solid var(--border); position: sticky; top: 72px; z-index: 100; }
.project-detail-meta-inner { display: flex; align-items: center; gap: 32px; padding: 16px 24px; max-width: var(--container); margin: 0 auto; overflow-x: auto; scrollbar-width: none; }
.project-meta-chip { display: flex; align-items: center; gap: 8px; white-space: nowrap; font-size: .8125rem; font-weight: 600; color: var(--text-mid); }
.project-meta-chip-label { color: var(--text-muted); font-weight: 400; }
.project-detail-layout { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; padding: 56px 0; }
.project-detail-sidebar { position: sticky; top: 130px; }
.sidebar-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: 12px; padding: 32px; margin-bottom: 20px; box-shadow: var(--shadow-sm); }
.sidebar-price-label { font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.sidebar-price { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; color: var(--gold-dark); margin-bottom: 4px; }
.sidebar-price-note { font-size: .8125rem; color: var(--text-muted); }
.sidebar-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.sidebar-cta-stack { display: flex; flex-direction: column; gap: 10px; }
.sidebar-cta-stack .btn { justify-content: center; }
.sidebar-note { font-size: .8125rem; text-align: center; color: var(--text-muted); margin-top: 12px; }
.amenities-wrap { display: flex; flex-wrap: wrap; gap: 10px; }
.amenity-chip { display: flex; align-items: center; gap: 7px; background: var(--bg-gold-tint); border: 1px solid var(--gold-border); border-radius: 32px; padding: 7px 14px; font-size: .8125rem; font-weight: 600; color: var(--gold-dark); }
.highlights-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.highlight-card{background:var(--bg-white);border:1.5px solid var(--gold-border);border-radius:12px;padding:1.25rem 1.5rem;display:flex;align-items:center;gap:1rem;transition:all 0.25s;box-shadow:0 2px 12px rgba(184,148,10,0.06);}
.highlight-card:hover{border-color:var(--gold);box-shadow:0 6px 24px rgba(184,148,10,0.15);transform:translateY(-2px);}
.highlight-icon{font-size:1.6rem;flex-shrink:0;width:48px;height:48px;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,rgba(184,148,10,0.1),rgba(184,148,10,0.05));border-radius:10px;}
.highlight-text{font-size:0.9375rem;font-weight:600;color:var(--text-dark);}
.location-list { display: flex; flex-direction: column; gap: 10px; }
.location-item { display: flex; align-items: center; gap: 12px; font-size: .9rem; color: var(--text-mid); padding: 10px 14px; background: var(--bg-page); border-radius: 6px; border: 1px solid var(--border-light); }
.location-item-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.location-item-dist { margin-left: auto; font-size: .8125rem; font-weight: 700; color: var(--gold-dark); }

/* ─── Blog Cards ─────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; transition: transform var(--dur), box-shadow var(--dur); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--bg-light); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-cat { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.blog-card-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text-dark); line-height: 1.35; margin-bottom: 10px; }
.blog-card-excerpt { font-size: .875rem; color: var(--text-mid); line-height: 1.65; flex: 1; margin-bottom: 18px; }
.blog-card-meta { display: flex; align-items: center; gap: 12px; font-size: .8125rem; color: var(--text-muted); margin-top: auto; }

/* ─── Scroll Top ──────────────────────────────────────────────── */
.scroll-top { position: fixed; bottom: 90px; right: 24px; width: 44px; height: 44px; border-radius: 50%; background: var(--bg-white); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--gold); cursor: pointer; box-shadow: var(--shadow-sm); opacity: 0; pointer-events: none; transition: all var(--dur); z-index: 900; }
.scroll-top.visible { opacity: 1; pointer-events: auto; cursor: pointer; }
.scroll-top:hover { background: var(--gold); color: #fff; border-color: var(--gold); transform: translateY(-2px); }

/* ─── Utilities ───────────────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--border); margin: 48px 0; }
.text-center { text-align: center; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.w-full { width: 100%; }
.hidden { display: none !important; }
.badge { display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px; border-radius: 4px; font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.badge-green { background: var(--green-light); color: var(--green); }
.badge-gold { background: var(--bg-gold-tint); color: var(--gold-dark); border: 1px solid var(--gold-border); }
.ornament { display: flex; align-items: center; gap: 16px; margin: 24px 0; }
.ornament-line { flex: 1; height: 1px; background: var(--border); }
.ornament-icon { color: var(--gold); font-size: 1rem; flex-shrink: 0; }
/* ─── Responsive Breakpoints ─────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px 80px; }
  .hero-visual { height: 360px; }
  .hero-title { font-size: 2.4rem; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .usps-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .project-detail-layout { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}
/* ─── 768px Tablet ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 56px 0; }
  .section-title { font-size: clamp(1.5rem, 4vw, 2.2rem); }
  .hero { min-height: 90vh; }
  .hero-content { padding-top: 100px; }
  .hero-title { font-size: clamp(2rem, 6vw, 3.5rem); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .contact-two-col { grid-template-columns: 1fr !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand-col { grid-column: 1 / -1; }
  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .emi-layout { grid-template-columns: 1fr !important; }
  .emi-results-card { position: static !important; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .usps-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .project-detail-layout { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --section-y: 48px; }
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }

  /* Typography */
  .section-title { font-size: clamp(1.4rem, 5.5vw, 2rem) !important; }
  .section-subtitle { font-size: 0.9375rem; }
  .section-header { margin-bottom: 36px; }

  /* Hero */
  .hero { min-height: 100svh; padding-bottom: 40px; }
  .hero-content { padding-top: 90px; padding-bottom: 40px; }
  .hero-title { font-size: clamp(1.9rem, 8vw, 2.8rem); line-height: 1.2; }
  .hero-subtitle { font-size: 0.9375rem; }
  .hero-actions { flex-direction: column; gap: 12px; align-items: stretch; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .hero-trust-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; flex-wrap: nowrap; }
  .hero-trust-card { width: 100%; max-width: none; }

  /* Navigation */
  .nav-links { display: none; }
  .nav-actions .btn { display: none; }
  .nav-actions .nav-call-btn { display: flex; }
  .nav-toggle { display: flex !important; }

  /* Hero float cards */
  .hero-inner { padding: 48px 20px 64px; }
  .hero-visual { height: 260px; }
  .hero-cards-float { gap: 8px; padding: 0 16px 20px; }
  .hero-float-card { padding: 10px 12px; }
  .hfc-text strong { font-size: .75rem; }

  /* Projects grid */
  .projects-grid { grid-template-columns: 1fr !important; gap: 1rem; }
  .project-card { max-width: 100%; }
  .project-card-img { min-height: 200px; }

  /* Filter bar */
  .pf-bar { top: 64px; padding: 10px 0; }
  .pf-filters { gap: 8px; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; -webkit-overflow-scrolling: touch; }
  .filter-bar { flex-wrap: wrap; gap: 0.5rem; }
  .pf-btn { padding: 6px 14px; font-size: 0.75rem; white-space: nowrap; flex-shrink: 0; }

  /* Highlights */
  .highlights-grid { grid-template-columns: 1fr !important; gap: 0.75rem; }
  .highlight-card { padding: 1rem 1.25rem; }

  /* USP / why grid */
  .usps-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr !important; }

  /* Stats */
  .hero-stats { gap: 20px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* About */
  .about-grid { gap: 32px; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand-col { grid-column: auto; }
  .footer-social { gap: 16px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom-links { justify-content: center; flex-wrap: wrap; gap: 12px; }

  /* Forms */
  .form-row { flex-direction: column !important; gap: 1rem; }
  .form-col { width: 100% !important; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .contact-two-col { grid-template-columns: 1fr !important; gap: 1.5rem; }
  .contact-map-col .map-embed,
  .contact-map-col .map-embed iframe { height: 260px !important; }

  /* EMI Calculator */
  .emi-layout { grid-template-columns: 1fr !important; }
  .emi-results-card { position: static !important; margin-top: 1.5rem; }
  .emi-summary { flex-direction: column; gap: 1rem; }

  /* Benefits */
  .benefits-grid { grid-template-columns: 1fr; }

  /* Buttons */
  .btn { min-height: 48px; }
  .btn-sm { min-height: 40px; }
  .cta-actions { flex-direction: column; align-items: center; }

  /* Float elements */
  .float-whatsapp-btn { bottom: 20px; right: 16px; }
  .scroll-top { bottom: 84px; right: 16px; }

  /* Trust bar */
  .trust-marquee { font-size: 0.75rem; }

  /* Scroll padding for fixed navbar */
  html { scroll-padding-top: 72px; }

  /* Prevent overflow */
  body { overflow-x: hidden; }
  * { max-width: 100%; }
  img { max-width: 100%; height: auto; }

  /* Horizontal scroll for tables */
  .emi-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  table { min-width: 500px; }
}

/* ─── 480px Small Mobile ─────────────────────────────────────── */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .section { padding: 40px 0; }

  .hero-title { font-size: clamp(1.7rem, 7.5vw, 2.4rem); }
  .hero-subtitle { font-size: 0.875rem; }
  .hero-trust-strip { grid-template-columns: 1fr; }
  .hero-trust-card { padding: 0.875rem 1rem; }

  .section-title { font-size: clamp(1.3rem, 5vw, 1.75rem) !important; }

  .highlights-grid { grid-template-columns: 1fr !important; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-social a { width: 36px; height: 36px; }
  .footer-social { gap: 12px; }

  .gallery-grid { grid-template-columns: 1fr 1fr !important; }

  .pf-filters { gap: 6px; }
  .pf-btn { padding: 5px 12px; font-size: 0.7rem; }

  /* Blog cards stack */
  .blog-grid { grid-template-columns: 1fr !important; }

  /* Team/about grids */
  .team-grid { grid-template-columns: 1fr !important; }
  .why-grid { grid-template-columns: 1fr !important; }

  /* Project card */
  .project-card-meta { flex-direction: column; gap: 0.5rem; }
  .project-card-img { min-height: 200px; }
  .projects-grid { grid-template-columns: 1fr; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; }

  /* EMI */
  .emi-summary-val { font-size: 2rem; }

  .float-whatsapp-btn { bottom: 16px; right: 12px; height: 50px; border-radius: 25px; max-width: 50px; }
  .float-wa-icon { width: 50px; height: 50px; }
  .scroll-top { bottom: 76px; right: 12px; width: 40px; height: 40px; font-size: 1rem; }
}

/* ─── 375px iPhone SE / small phones ────────────────────────── */
@media (max-width: 375px) {
  .container { padding: 0 12px; }
  .hero-title { font-size: 1.65rem; }
  .section-title { font-size: 1.25rem !important; }
  .btn { padding: 12px 20px; font-size: 0.875rem; }
  .footer-logo-img { height: 44px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ═══ MISSING KEYFRAMES ══════════════════════════════════════ */
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(201,168,76,.55)} 70%{box-shadow:0 0 0 8px rgba(201,168,76,0)} }

/* ═══ HERO TRUST STRIP — PREMIUM ════════════════════════════ */
.hero-trust-strip {
  display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap;
  animation: fadeSlideUp .7s ease both; animation-delay: .8s;
}
.hero-trust-card {
  display: flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, rgba(201,168,76,.14) 0%, rgba(26,18,3,.5) 100%);
  border: 1px solid rgba(201,168,76,.35); border-radius: 12px;
  padding: 12px 16px; flex: 1; min-width: 140px;
  box-shadow: 0 2px 14px rgba(0,0,0,.35), inset 0 1px 0 rgba(201,168,76,.1);
  position: relative; overflow: hidden; cursor: default;
  transition: transform .28s, box-shadow .28s, border-color .28s;
}
.hero-trust-card:hover { transform: translateY(-3px); border-color: rgba(201,168,76,.7); box-shadow: 0 8px 24px rgba(0,0,0,.4); }
.htc-icon { width: 38px; height: 38px; flex-shrink: 0; background: linear-gradient(135deg, #C9A84C 0%, #A07800 100%); border-radius: 9px; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 3px 10px rgba(201,168,76,.4); }
.htc-content { min-width: 0; }
.htc-label { font-size: .8rem; font-weight: 700; color: #fff; letter-spacing: .03em; line-height: 1.2; display: block; }
.htc-sub { font-size: .62rem; color: rgba(201,168,76,.9); margin-top: 3px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; display: block; }

/* ─── Project Detail Pages — Mobile Overrides ───────────────── */
@media (max-width: 640px) {
  .pd-about-grid { grid-template-columns: 1fr !important; }
  .pd-sidebar { position: static !important; }
  .pd-gal-grid { grid-template-columns: 1fr 1fr !important; }
  .pd-hero-meta { flex-wrap: wrap; gap: 6px; }
  .pd-hero-name { font-size: clamp(1.4rem, 7vw, 2.2rem); }
  .pd-map-grid { grid-template-columns: 1fr !important; }
}

/* Projects wide dropdown */
.nav-dropdown-wide {
  min-width: 320px;
  left: 0;
  transform: none;
  column-count: 2;
  column-gap: 0;
}
.nav-item-dropdown:hover .nav-dropdown-wide {
  transform: none;
}
.nav-item-dropdown:hover > .nav-dropdown,
.nav-item-dropdown:focus-within > .nav-dropdown {
  opacity: 1;
  visibility: visible;
}
@media(max-width:1024px){
  .nav-dropdown-wide { column-count: 1; min-width: 260px; }
}

/* USP Cards grid — responsive */
@media(max-width:900px){
  .usp-card-grid { grid-template-columns: 1fr 1fr !important; }
}
@media(max-width:580px){
  .usp-card-grid { grid-template-columns: 1fr !important; }
  .amenities-grid { grid-template-columns: 1fr !important; }
}

/* ═══════════════════════════════════════════════════════════════
   COMPREHENSIVE RESPONSIVE IMPROVEMENTS
   Mobile-first: images before text, touch targets, alignment
   ═══════════════════════════════════════════════════════════════ */

/* 1024px: Laptop / Large Tablet */
@media (max-width: 1024px) {
  .usps-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand-col { grid-column: 1 / -1; }
}

/* 768px additions */
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr !important; gap: 2rem; }
  .form-card { padding: 28px 20px; }
  .page-header { padding: 56px 0 40px; }
  .page-header h1 { font-size: clamp(1.6rem, 6vw, 2.6rem); }
  .cta-banner { padding: 56px 0; }
  .section-header { margin-bottom: 40px; }
  .nav-logo-img { height: 46px; }
  .nav-logo-name { font-size: 1.0625rem; }
}

/* 640px additions */
@media (max-width: 640px) {
  .project-card-actions { flex-direction: column; gap: 8px; }
  .project-card-actions .btn { width: 100%; justify-content: center; text-align: center; }
  .about-img-accent { display: none; }
  .about-badge-float { top: 0; left: 0; padding: 10px 12px; }
  .about-badge-num { font-size: 1.4rem; }
  .about-badge-label { font-size: 0.6rem; }
  .hero-stats { flex-wrap: wrap; gap: 16px 24px; }
  .hero-stat-num { font-size: 1.7rem; }
  .mobile-nav .nav-link { min-height: 48px; padding: 12px 4px; font-size: 1rem; }
  .mobile-nav { padding: 16px 20px 24px; }
  .marquee-item { padding: 0 16px; font-size: 0.8125rem; }
  .gallery-grid { gap: 10px; }
  .faq-question { padding: 14px 18px; font-size: 0.9375rem; }
  .faq-item.open .faq-answer { padding: 0 18px 14px; }
  .faq-answer { font-size: 0.9rem; }
  .testimonial-card { padding: 22px; }
  .testimonial-text { font-size: 0.875rem; }
  .blog-card-body { padding: 16px; }
  .blog-card-title { font-size: 1rem; }
  .footer { padding: 48px 0 24px; }
  .footer-grid { margin-bottom: 36px; }
  .footer-desc { font-size: 0.8125rem; }
  .project-card-body { padding: 16px; }
  .project-card-name { font-size: 1.1rem; }
  .stat-num { font-size: clamp(2rem, 7vw, 3rem); }
  .highlight-card { padding: 1rem 1.125rem; gap: 0.75rem; }
  .highlight-text { font-size: 0.875rem; }
  .highlight-icon { width: 40px; height: 40px; font-size: 1.3rem; }
  .about-grid { display: flex; flex-direction: column; }
  .about-visual 
  .btn { min-height: 46px; }
  .btn-sm { min-height: 40px; }
  .nav-call-btn { display: flex !important; }
}

/* 480px additions */
@media (max-width: 480px) {
  .pd-gal-grid { grid-template-columns: 1fr !important; gap: 10px !important; }
  .hero-cards-float { flex-direction: column; gap: 8px; padding: 0 16px 16px; }
  .hero-float-card { flex: none; }
  .booking-note { flex-direction: column; gap: 0.4rem; text-align: center; padding: 0.875rem 1.25rem; }
  .booking-amount { font-size: 1.3rem; }
  .conn-table th, .conn-table td,
  .plot-table th, .plot-table td { padding: 0.45rem 0.6rem; font-size: 0.78rem; }
  .sidebar-card { padding: 1.125rem; }
  .nav-logo-img { height: 40px; }
  .hero-trust-card { padding: 8px 10px; gap: 8px; min-width: 130px; }
  .htc-label { font-size: 0.72rem; }
  .htc-sub { font-size: 0.58rem; }
  .htc-icon { width: 30px; height: 30px; }
  .form-card { padding: 22px 16px; }
  .bank-badge { font-size: 0.72rem; padding: 0.25rem 0.5rem; }
}

/* 375px: Smallest phones */
@media (max-width: 375px) {
  .gallery-grid { grid-template-columns: 1fr !important; gap: 8px; }
  .pd-gal-grid { grid-template-columns: 1fr !important; }
  .hero-trust-strip { flex-direction: column; }
  .nav-logo-tagline { display: none; }
  .highlight-card { padding: 0.875rem 1rem; }
  .highlight-text { font-size: 0.8125rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .breadcrumb { font-size: 0.72rem; }
}

/* ═══ EXTRA MOBILE IMPROVEMENTS ═══════════════════════════════════
   Image-before-text on all two-column layouts, touch targets, etc.
   ════════════════════════════════════════════════════════════════ */

/* Hero: visual canvas above text on mobile */
@media (max-width: 900px) {
  .hero-inner { display: flex; flex-direction: column; }
  .hero-visual { order: -1; width: 100%; height: 300px; border-radius: 12px; }
  .hero-content { order: 1; padding-top: 32px; }
  .hero-actions { flex-direction: row; flex-wrap: wrap; gap: 12px; }
  .hero-actions .btn { flex: 1; min-width: 140px; text-align: center; justify-content: center; }
}

/* About section: ensure image always first */
@media (max-width: 768px) {
  .about-grid { display: flex !important; flex-direction: column !important; gap: 32px; }
  .about-visual { order: -1 !important; }
  .about-content { order: 1 !important; }
  /* Why Nashik grid: 1 col on tablet */
  .why-nashik-grid { grid-template-columns: 1fr !important; }
  .feature-card { max-width: 100%; }
  /* Breadcrumb: wrap on mobile */
  .breadcrumb { flex-wrap: wrap; gap: 4px; }
  /* Stat cards */
  .stats-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 20px; }
  .stat-card { padding: 24px 16px; }
}

@media (max-width: 640px) {
  /* Hero: tighter on small phones */
  .hero-visual { height: 240px; }
  .hero-inner { padding: 24px 16px 48px; }
  /* About section */
  .about-img-main { aspect-ratio: 16/9; }
  /* Why Nashik */
  .why-nashik-grid { gap: 12px !important; }
  /* Testimonials */
  .testimonial-avatar { width: 44px; height: 44px; }
  /* Blog */
  .blog-card-img { aspect-ratio: 16/9; }
  /* All two-col flex layouts: ensure image first */
  [data-reveal="left"] { order: -1 !important; }
  [data-reveal="right"] { order: 1 !important; }
}

@media (max-width: 480px) {
  .hero-visual { height: 220px; }
  .hero-trust-strip { grid-template-columns: 1fr 1fr !important; }
  .hero-actions .btn { font-size: 0.875rem; padding: 12px 16px; }
  /* Project detail page */
  .pd-highlights-grid { grid-template-columns: 1fr !important; }
  .pd-conn-grid { grid-template-columns: 1fr !important; }
  /* Amenity chips: wrap tightly */
  .amenities-chips { gap: 6px; }
  .amenity-chip { font-size: 0.75rem; padding: 5px 10px; }
}


/* ===== Mobile refinements (hero + nav accordion) ===== */
.mobile-nav-dropdown>a:first-child{position:relative}
.mobile-nav-dropdown>a:first-child::after{content:'\25BE';position:absolute;right:18px;top:50%;transform:translateY(-50%);transition:transform .25s ease;opacity:.65;font-size:.8rem}
.mobile-nav-dropdown.open>a:first-child::after{transform:translateY(-50%) rotate(180deg);opacity:1}
.mobile-nav-dropdown>a:not(:first-child){display:none}
.mobile-nav-dropdown.open>a:not(:first-child){display:block}
@media (max-width:900px){
  .hero{min-height:auto}
  .hero-visual{height:auto;min-height:320px;display:block}
  .hero-om{font-size:4.5rem;opacity:.5;top:54px}
  .hero-mountain-wrap{height:90px}
  .hero-cards-float{position:absolute;left:0;right:0;bottom:14px;flex-direction:row;flex-wrap:nowrap;gap:8px;padding:0 12px;justify-content:center}
  .hero-float-card{flex:1 1 0;min-width:0;padding:9px 8px;text-align:center;font-size:.78rem}
}

/* SS-fixes */
.footer-contact-item{align-items:center}
.footer-link{transition:color .25s ease}
.footer-link:hover{color:var(--gold-mid,#d4af37)}
.why-nashik-grid{overflow:visible !important}
.why-nashik-grid .feature-card[data-reveal]{opacity:1 !important;transform:none !important;clip-path:none !important}
.why-nashik-grid .feature-card,.why-nashik-grid .feature-icon{overflow:visible !important}
.why-nashik-grid .feature-card *{clip-path:none !important}
.blog-card-meta{display:none !important}
