/* ============================================
   ANAND REALTORS — Main Stylesheet
   Brand: Maroon #440C12 | Gold #C9A96E | Cream #F5F0E8
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

/* Site is designed for light mode — opt out of browser "force dark" so the
   navbar stays white and the logo/text remain visible on dark-theme phones. */
:root { color-scheme: light; }
html { color-scheme: light; background: #fff; }

/* ---------- CSS VARIABLES ---------- */
:root {
  --maroon:       #440C12;
  --maroon-mid:   #6B1520;
  --maroon-light: #8C2232;
  --gold:         #C9A96E;
  --gold-light:   #E2C99A;
  --gold-dark:    #A07840;
  --cream:        #F5F0E8;
  --cream-dark:   #EDE5D8;
  --white:        #FFFFFF;
  --text-dark:    #1A1A1A;
  --text-mid:     #4A4A4A;
  --text-light:   #838383;
  --bg-light:     #FAF8F5;
  --border:       #E8E0D5;
  --shadow-sm:    0 2px 8px rgba(45,10,15,0.08);
  --shadow-md:    0 4px 20px rgba(45,10,15,0.12);
  --shadow-lg:    0 8px 40px rgba(45,10,15,0.18);
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --transition:   all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* overflow-x: clip (NOT hidden) — clip prevents horizontal scroll WITHOUT
   creating a scroll container, so position:sticky descendants keep working.
   overflow-x:hidden would silently break every sticky element on the page. */
html { scroll-behavior: smooth; font-size: 16px; overflow-x: clip; }
body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: clip;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: var(--maroon-light); border-radius: 3px; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #ede5d8;
  transition: box-shadow 0.3s;
}
.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 2px 16px rgba(45,10,15,0.10);
}
.nav-container {
  width: 100%;
  padding: 0 50px 0 20px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Search bar — hidden at top, shown on scroll */
.nav-search {
  flex: 1;
  display: none;
  align-items: center;
  gap: 10px;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 0 14px;
  height: 42px;
  max-width: 580px;
}
.nav-search svg { stroke: #999; flex-shrink: 0; }
.nav-search input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 0.85rem;
  color: #333;
  outline: none;
}
.nav-search input::placeholder { color: #aaa; }
.nav-search-btn {
  background: var(--maroon);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.nav-search-btn:hover { background: #3d1218; }
.nav-search.nav-visible { display: flex; }
.nav-menu.nav-hidden    { display: none; }

/* Toll free number */
.nav-toll { text-align: right; }
.nav-toll-label {
  display: block;
  font-size: 0.65rem;
  color: #999;
  line-height: 1;
  margin-bottom: 2px;
  white-space: nowrap;
}
.nav-toll-num {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--maroon);
  white-space: nowrap;
  text-decoration: none;
}
.nav-toll-num:hover { text-decoration: underline; }

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--maroon);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.logo-tagline {
  font-size: 0.58rem;
  color: rgba(45,10,15,0.45);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.logo-sub {
  font-size: 0.52rem;
  color: rgba(45,10,15,0.38);
  letter-spacing: 2.8px;
  text-transform: uppercase;
  font-weight: 500;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  color: #3a3a3a;
  font-size: 0.84rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 0;
  transition: color 0.2s;
  white-space: nowrap;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 2px;
  background: var(--maroon);
  border-radius: 1px;
  transition: transform 0.25s ease;
}
.nav-link:hover {
  color: var(--maroon);
  background: none;
}
.nav-link:hover::after {
  transform: translateX(-50%) scaleX(0.7);
}
.nav-link.active {
  color: var(--maroon);
  font-weight: 600;
}
.nav-link.active::after {
  transform: translateX(-50%) scaleX(0.5);
}

/* Locations Dropdown */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-drop-toggle {
  cursor: pointer;
  user-select: none;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.nav-drop-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  border: 1px solid #f0ece4;
  min-width: 180px;
  z-index: 9000;
  padding: 10px 0 6px;
  padding-top: 16px;
  max-height: 320px;
  overflow-y: auto;
}
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 16px;
}
.nav-dropdown:hover .nav-drop-menu,
.nav-dropdown:focus-within .nav-drop-menu {
  display: block;
}
.nav-drop-item {
  display: block;
  padding: 9px 18px;
  font-size: 0.82rem;
  color: #3a3a3a;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}
.nav-drop-item:first-child {
  border-bottom: 1px solid #f0ece4;
  font-weight: 600;
  color: var(--maroon);
}
.nav-drop-item:hover {
  background: var(--cream);
  color: var(--maroon);
}
.nav-dropdown.active .nav-drop-toggle {
  color: var(--maroon);
  font-weight: 600;
}

/* Mobile drawer chrome — hidden on desktop, shown inside open drawer (mobile) */
.nav-drawer-head,
.nav-drawer-foot,
.nav-link-mobile,
.nav-overlay { display: none; }

/* Global sticky contact bar — both buttons on every page (mobile only) */
.global-cta { display: none; }
@media (max-width: 768px) {
  .global-cta {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 900;
    gap: 10px;
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom, 0px));
    background: #fff;
    border-top: 1px solid #e8e4dd;
    box-shadow: 0 -4px 20px rgba(45,10,15,0.12);
  }
  .global-cta-wa,
  .global-cta-enq {
    flex: 1 1 0;
    min-width: 0;
    display: flex; align-items: center; justify-content: center;
    gap: 7px;
    padding: 13px 10px;
    border: none;
    border-radius: 10px;
    font-size: 0.86rem;
    font-weight: 700;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
  }
  .global-cta-wa  { background: #25D366; color: #fff; }
  .global-cta-enq { background: linear-gradient(135deg, #6B1520, var(--maroon)); color: var(--gold); }
  .global-cta-wa svg,
  .global-cta-enq svg { width: 17px; height: 17px; flex-shrink: 0; }

  /* Keep page content / footer clear of the fixed bar */
  body { padding-bottom: 66px; }
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* RERA center text — between logo and nav links */
.nav-rera-center {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--maroon);
  border: 1.5px solid rgba(45,10,15,0.22);
  padding: 5px 12px;
  border-radius: 5px;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.4px;
  flex-shrink: 0;
}
a.nav-rera-center:hover {
  background: rgba(45,10,15,0.05);
  border-color: var(--maroon);
}

/* Circular icon buttons (wishlist, user) */
.nav-icon-btn {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(45,10,15,0.14);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maroon);
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-icon-btn:hover {
  background: rgba(45,10,15,0.06);
  border-color: rgba(45,10,15,0.3);
}
/* Count badge on wishlist icon */
.nav-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 18px;
  height: 18px;
  background: #e74c3c;
  color: #fff;
  border-radius: 9px;
  font-size: 0.62rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  padding: 0 3px;
}

.btn-nav-outline {
  color: var(--maroon);
  border: 1px solid rgba(45,10,15,0.25);
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 500;
  transition: var(--transition);
}
.btn-nav-outline:hover {
  background: rgba(45,10,15,0.05);
  border-color: var(--maroon);
}
.btn-nav-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--maroon);
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.3px;
}
.btn-nav-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(201,169,110,0.4);
}
.btn-nav-primary svg { width: 14px; height: 14px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--maroon);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO SECTION — Square Yards Exact Style
   ============================================ */

/* Hero wrapper — TOP aligned, NOT centered */
.hero {
  min-height: 58vh;            /* exact match to SY */
  position: relative;
  display: flex;
  align-items: flex-start;
  overflow: visible;          /* visible so the locality dropdown is never clipped */
  padding-top: 70px;
}

/* Background image — full cover (static; no scale so nothing bleeds past the hero) */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-position: center 30%;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Left-heavy dark overlay — RIGHT side stays clear (shows building/city) */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    95deg,
    rgba(12,3,5,0.97) 0%,
    rgba(20,5,9,0.93) 25%,
    rgba(30,8,14,0.82) 42%,
    rgba(40,10,17,0.55) 58%,
    rgba(40,10,17,0.18) 72%,
    transparent 88%
  );
  z-index: 1;
}

/* Bottom vignette — subtle */
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(to top, rgba(12,3,5,0.45) 0%, transparent 100%);
  z-index: 1;
}

/* Content block — LEFT side, starts from top.
   z-index 40 keeps the locality dropdown above the popular-localities bar (z-index 10)
   and every section below it, while staying under the navbar (z-index 1000). */
.hero-content {
  position: relative;
  z-index: 40;
  width: 100%;
  max-width: 860px;
  padding: 30px 24px 60px 14vw;
  text-align: left;
}

/* ---- Rating Badge ---- */
.hero-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(10,3,5,0.72);
  border: 1px solid rgba(201,169,110,0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--cream);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 20px;
  animation: fadeInDown 0.5s ease both;
  width: fit-content;
}
.hero-rating-badge .star-icon {
  color: #FFD700;
  font-size: 0.95rem;
}
.hero-rating-badge strong { color: var(--white); font-weight: 700; }
.hero-rating-badge .divider {
  width: 1px; height: 13px;
  background: rgba(201,169,110,0.35);
}

/* ---- HUGE Title — Square Yards style ---- */
.hero-title {
  font-family: var(--font-sans);
  font-size: clamp(2.2rem, 3.6vw, 3.6rem); /* reduced so fits 2 lines like SY */
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 16px;
  animation: fadeInLeft 0.6s ease 0.1s both;
  letter-spacing: -0.8px;
}
.hero-title .highlight {
  color: var(--gold);
}

/* ---- Subtitle + Stat ---- */
.hero-subtitle {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(245,240,232,0.80);
  font-size: 0.97rem;
  margin-bottom: 36px;
  animation: fadeInLeft 0.6s ease 0.2s both;
  font-weight: 400;
}
.hero-subtitle .dot {
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-subtitle .stat-highlight {
  color: var(--gold);
  font-weight: 700;
}

/* ============================================================
   SEARCH SECTION — exact Square Yards layout
   ============================================================ */
.hero-search-container {
  animation: fadeInUp 0.7s ease 0.3s both;
  width: 100%;       /* fills full content block — same as title width */
  position: relative;
}

/* --- Tabs above bar (exactly SY) --- */
.search-tab-row {
  display: flex;
  gap: 1px;
  margin-bottom: 0;
}
.search-tab {
  padding: 9px 14px;           /* compact — all 6 fit in 620px */
  border-radius: 6px 6px 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  background: rgba(30,10,15,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  border-bottom: none;
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
  backdrop-filter: blur(6px);
  flex: 1;                     /* equal width — fills full container */
  justify-content: center;
}
.search-tab svg { width: 12px; height: 12px; }

.search-tab .tab-badge {
  font-size: 0.52rem;
  padding: 1px 4px;
  border-radius: 3px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.6;
}
.search-tab .tab-badge.new  { background: var(--gold); color: var(--maroon); }
.search-tab .tab-badge.free { background: #16a34a; color: #fff; }

/* Active tab = white background, maroon text — SY style */
.search-tab.active {
  background: var(--white);
  color: var(--maroon);
  border-color: var(--white);
  border-bottom-color: var(--white);
  font-weight: 700;
}
.search-tab:not(.active):hover {
  background: rgba(255,255,255,0.18);
  color: var(--white);
}

/* --- Search bar itself --- */
.hero-search-box {
  background: var(--white);
  border-radius: 0 6px 6px 6px;   /* flat top-left corner joins tab */
  display: flex;
  align-items: stretch;
  box-shadow: 0 16px 50px rgba(5,1,3,0.65);
  overflow: hidden;
  height: 56px;
  width: 100%;
}

/* City dropdown — left section */
.search-city-select {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  border-right: 1.5px solid #e5e7eb;
  cursor: pointer;
  min-width: 140px;
  flex-shrink: 0;
  background: var(--white);
  transition: background 0.2s;
  position: relative;
}
.search-city-select:hover { background: #f9f5f0; }

/* City / locality dropdown — absolute, below the search box, fully styled */
.city-drop {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 280px;
  max-height: 320px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #ece4d6;
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(45,10,15,0.28);
  z-index: 200;
  padding: 6px;
  animation: cityDropIn 0.18s ease;
}
.city-drop.open { display: block; }
@keyframes cityDropIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
/* Scrollbar */
.city-drop::-webkit-scrollbar { width: 6px; }
.city-drop::-webkit-scrollbar-thumb { background: #d8cfc0; border-radius: 8px; }
.city-drop-head {
  padding: 8px 12px 8px;
  font-size: 0.66rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gold);
}
.city-drop-item {
  display: block;
  padding: 9px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
  cursor: pointer;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
}
.city-drop-item:hover { background: var(--cream); color: var(--maroon); font-weight: 600; padding-left: 18px; }
/* Open-state chevron flip */
#cityToggle .chev-icon { transition: transform 0.2s ease; }
#cityToggle.open .chev-icon { transform: rotate(180deg); }

/* Popular localities chips under the search bar */
.hero-popular {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  margin-top: 16px;
}
.hero-popular-label {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.85);
}
.hero-popular-label svg { color: var(--gold); }
.hero-popular-chip {
  font-size: 0.78rem;
  color: #fff;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 5px 14px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.18s;
  backdrop-filter: blur(4px);
}
.hero-popular-chip:hover { background: var(--gold); color: var(--maroon); border-color: var(--gold); }
.search-city-select .loc-icon { width: 15px; height: 15px; color: var(--maroon); flex-shrink: 0; }
.search-city-select .city-label {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  flex: 1;
}
.search-city-select .chev-icon { width: 13px; height: 13px; color: #9ca3af; flex-shrink: 0; }

/* Search input section */
.search-input-wrap {
  flex: 1;
  min-width: 0;          /* allow it to shrink so the button never gets clipped */
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
}
.search-input-wrap .srch-icon {
  width: 17px; height: 17px;
  color: #9ca3af;
  flex-shrink: 0;
}
.search-input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: transparent;
}
.search-input-wrap input::placeholder { color: #9ca3af; font-size: 0.88rem; }

/* Advanced filter button */
.search-filter-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1.5px solid #e5e7eb;
  background: #f9f5f0;
  color: var(--maroon);
  transition: var(--transition);
  flex-shrink: 0;
  margin: 0 8px;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
}
.search-filter-btn:hover { border-color: var(--gold); color: var(--maroon); background: #fdf8f0; }
.search-filter-btn svg { width: 18px; height: 18px; }

/* GOLD Search button — SY yellow equivalent */
.btn-search {
  background: linear-gradient(135deg, #C9A96E, #A07840);
  color: var(--maroon);
  padding: 0 26px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 800;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  letter-spacing: 0.2px;
  flex-shrink: 0;
  white-space: nowrap;
  height: 100%;
  border: none;
  cursor: pointer;
}
.btn-search:hover {
  background: linear-gradient(135deg, #d4b896, #C9A96E);
  box-shadow: inset 0 0 0 1px rgba(45,10,15,0.15);
}
.btn-search svg { display: none; }

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--maroon);
  padding: 28px 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.05), transparent);
}
.stats-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 8px 24px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(201,169,110,0.2);
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}
.stat-number span { font-size: 1.1rem; }
.stat-label {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.65);
  margin-top: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ============================================
   SECTION COMMON
   ============================================ */
/* ---- POPULAR LOCALITIES BAR ---- */
.popular-localities-bar {
  background: #fff;
  border-bottom: 1px solid #eeebe4;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  position: relative;
  z-index: 10;
}
.plb-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 14px 0;
  flex-wrap: wrap;
}
.plb-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--maroon);
  white-space: nowrap;
  flex-shrink: 0;
}
.plb-label svg {
  width: 15px;
  height: 15px;
  stroke: var(--gold);
}
.plb-chips {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.plb-chip {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1.5px solid #e0d8cc;
  background: #faf8f4;
  color: #3a3a3a;
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.plb-chip:hover {
  border-color: var(--maroon);
  background: var(--maroon);
  color: var(--gold);
  transform: translateY(-1px);
}

.section {
  padding: 40px 0;
}
.section-alt { background: var(--bg-light); }
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 16px;
}
.section-title-wrap {}
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 1px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--maroon);
  line-height: 1.25;
}
.section-title span { color: var(--gold-dark); }
.section-desc {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 8px;
  max-width: 460px;
}
.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--maroon);
  border: 1.5px solid var(--maroon);
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-view-all:hover {
  background: var(--maroon);
  color: var(--gold);
}
.btn-view-all svg { width: 14px; height: 14px; transition: var(--transition); }
.btn-view-all:hover svg { transform: translateX(3px); }

/* ============================================
   PROPERTY CARDS
   ============================================ */
/* Horizontal scroll carousel */
.properties-scroll-wrap {
  position: relative;
}
.properties-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
  scrollbar-width: none;
}
.properties-grid::-webkit-scrollbar { display: none; }
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: var(--transition);
  color: var(--maroon);
}
.scroll-btn:hover { background: var(--maroon); color: var(--gold); border-color: var(--maroon); }
.scroll-btn svg { width: 18px; height: 18px; }
.scroll-btn.prev { left: -20px; }
.scroll-btn.next { right: -20px; }
.property-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  flex: 0 0 300px;
  scroll-snap-align: start;
}
.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,169,110,0.4);
}

/* Card Image */
.card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.property-card:hover .card-img-wrap img {
  transform: scale(1.06);
}

/* Badges */
.card-badges {
  position: absolute;
  top: 12px; left: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.badge-trending   { background: rgba(45,10,15,0.85);  color: var(--gold); }
.badge-new        { background: rgba(201,169,110,0.9); color: var(--maroon); }
.badge-exclusive  { background: rgba(45,10,15,0.85);  color: var(--cream); }
.badge-offer      { background: #E74C3C; color: white; }
.badge-rera       { background: rgba(39,174,96,0.9);  color: white; }

/* Wishlist btn */
.card-wishlist {
  position: absolute;
  top: 12px; right: 12px;
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.92);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 6;          /* always above the image link so taps register */
  cursor: pointer;
}
.card-wishlist:hover { background: #fee2e2; }
.card-wishlist svg { width: 16px; height: 16px; color: var(--text-mid); }
.card-wishlist.active svg { color: #e74c3c; fill: #e74c3c; }

/* Card Body */
.card-body {
  padding: 18px 18px 14px;
}
.card-type {
  font-size: 0.72rem;
  color: var(--gold-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}
.card-location {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-light);
  font-size: 0.8rem;
  margin-bottom: 14px;
}
.card-location svg { width: 12px; height: 12px; color: var(--gold-dark); flex-shrink: 0; }

/* Card specs */
.card-specs {
  display: flex;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  margin-bottom: 0;
}
.spec-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.86rem;
  color: var(--text-mid);
}
.spec-item svg { width: 14px; height: 14px; color: var(--gold-dark); }

/* Card Price */
.card-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.card-price {
  display: flex;
  flex-direction: column;
}
.price-label { font-size: 0.7rem; color: var(--text-light); }
.price-value {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--maroon);
  line-height: 1;
}
.price-psf { font-size: 0.72rem; color: var(--text-light); margin-top: 2px; }

/* Card Price Badge (overlaid on image) */
.card-price-badge {
  position: absolute;
  bottom: 10px; left: 10px;
  background: rgba(0,0,0,0.72);
  color: #fff;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.76rem; font-weight: 700;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Card PSF line + compare on same row */
.card-psf-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 8px;
}
.card-psf-line {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* Card title as link */
.card-title {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--maroon);
  margin-bottom: 6px;
  line-height: 1.3;
  transition: var(--transition);
  display: block;
}
.property-card:hover .card-title { color: var(--maroon-light); }

/* Card Footer */
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: var(--bg-light);
  border-top: 1px solid var(--border);
}
.card-footer-dual {
  gap: 8px;
}
.card-compare {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}
.card-compare input[type="checkbox"] { accent-color: var(--maroon); }
.card-compare:hover { color: var(--maroon); }

/* Quick Call — outline button */
.btn-card-call {
  display: flex; align-items: center; gap: 5px;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--maroon);
  color: var(--maroon);
  font-size: 0.75rem; font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  flex: 1;
  justify-content: center;
}
.btn-card-call:hover {
  background: var(--maroon);
  color: var(--gold);
}
.btn-card-call svg { width: 12px; height: 12px; }

/* Get in Touch — solid button */
.btn-card-contact {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  color: var(--gold);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  flex: 1;
}
.btn-card-contact:hover {
  background: linear-gradient(135deg, var(--maroon-light), var(--maroon-mid));
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(45,10,15,0.25);
  color: var(--gold);
}
.btn-card-contact svg { width: 12px; height: 12px; }

/* ============================================
   ANAND REALTORS EXCLUSIVE SECTION
   ============================================ */
.excl-section { background: #fff; }

/* Title row */
.excl-title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}
.excl-title {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 800;
  color: var(--maroon);
  letter-spacing: -0.3px;
}
.excl-title span { color: var(--gold-dark); }
.excl-wheat-r { transform: scaleX(-1); }

/* ============================================
   EXPLORE BY CATEGORY
   ============================================ */
.cat-section { background: var(--bg-light); }
#builders { scroll-margin-top: 90px; }   /* clear fixed navbar when linked to */

/* ============================================
   ANAND REALTORS TOOLS ("Shots" style)
   Soft maroon gradient background, clean white cards
   ============================================ */
.atools-section {
  position: relative;
  overflow: hidden;
  padding: 66px 0 74px;
  background:
    radial-gradient(1200px 440px at 50% -6%, rgba(68,12,18,0.16) 0%, rgba(68,12,18,0) 58%),
    radial-gradient(760px 320px at 88% 108%, rgba(201,169,110,0.20) 0%, transparent 60%),
    linear-gradient(180deg, #f6efe6 0%, #fbf7f1 100%);
}
.atools-bg-a, .atools-bg-b {
  position: absolute; border-radius: 50%; filter: blur(20px); z-index: 0; pointer-events: none;
}
.atools-bg-a { width: 300px; height: 300px; top: -80px; left: -50px;
  background: radial-gradient(circle at 40% 40%, rgba(68,12,18,0.12), transparent 70%); }
.atools-bg-b { width: 340px; height: 340px; bottom: -130px; right: -70px;
  background: radial-gradient(circle at 50% 50%, rgba(201,169,110,0.22), transparent 70%); }
.atools-title {
  position: relative; z-index: 1;
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--maroon);
  margin-bottom: 38px;
}
.atools-title span { color: var(--gold-dark); font-style: italic; }
.atools-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.atool-card {
  position: relative;
  display: block;
  background: #fff;
  border: 1px solid rgba(68,12,18,0.08);
  border-radius: 16px;
  padding: 20px 16px 54px;
  min-height: 156px;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(68,12,18,0.07);
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s, border-color 0.25s;
}
.atool-card:not(.atool-soon-card):hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(68,12,18,0.16);
  border-color: var(--gold);
}
.atool-title { font-size: 0.96rem; font-weight: 700; color: var(--maroon); line-height: 1.3; margin-bottom: 8px; }
.atool-sub   { font-size: 0.8rem; color: var(--text-light); line-height: 1.55; }
.atool-icon {
  position: absolute; right: 15px; bottom: 15px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(68,12,18,0.06), rgba(201,169,110,0.16));
  color: var(--gold-dark);
}
.atool-icon svg { width: 19px; height: 19px; }
.atool-card:not(.atool-soon-card):hover .atool-icon {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  color: var(--gold);
}
.atool-soon-card { cursor: default; }
.atool-soon-card .atool-title { color: #8a6a5e; }
.atool-soon {
  position: absolute; top: 12px; right: 12px;
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.06em;
  color: var(--gold-dark); background: rgba(201,169,110,0.18);
  padding: 3px 9px; border-radius: 100px; text-transform: uppercase;
}
@media (max-width: 1024px) { .atools-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  {
  .atools-section { padding: 46px 0 50px; }
  .atools-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .atool-card { min-height: 138px; padding: 16px 14px 48px; }
}
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cat-card {
  position: relative;
  display: block;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cat-card-img { position: absolute; inset: 0; }
.cat-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.cat-card:hover .cat-card-img img { transform: scale(1.07); }
.cat-card-icon {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
}
.cat-card-icon svg { width: 54px; height: 54px; stroke: var(--gold); }
.cat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(45,10,15,0.88) 0%, rgba(45,10,15,0.15) 60%, transparent 100%);
}
.cat-card-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 16px; z-index: 1; }
.cat-card-name { color: #fff; font-weight: 700; font-size: 1.05rem; font-family: var(--font-serif); line-height: 1.2; }
.cat-card-count { color: var(--gold-light); font-size: 0.78rem; margin-top: 3px; }
@media (max-width: 900px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }

/* Cards scroll */
.excl-scroll-wrap {
  position: relative;
  margin-bottom: 0;
}
.excl-cards {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.excl-cards::-webkit-scrollbar { display: none; }

/* Each service card */
.excl-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 0;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  min-height: 260px;
}
.excl-card:hover {
  border-color: var(--gold-light);
  box-shadow: 0 8px 28px rgba(45,10,15,0.12);
  transform: translateY(-5px);
}
.excl-card-text {
  padding: 18px 16px 14px;
  flex-shrink: 0;
}
.excl-card-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  text-align: center;
}
.excl-card-sub {
  font-size: 0.7rem;
  color: var(--text-light);
  line-height: 1.4;
  text-align: center;
  margin-top: 4px;
}
.excl-card-icon {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 150px;
  border-radius: 0 0 14px 14px;
}

/* Scroll arrows */
.excl-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: var(--transition);
  color: var(--maroon);
}
.excl-arrow:hover { background: var(--maroon); color: var(--gold); border-color: var(--maroon); }
.excl-arrow svg  { width: 16px; height: 16px; }
.excl-prev { left: -18px; }
.excl-next { right: -18px; }

/* Exclusive Deals */
.excl-deals-wrap { border-top: 1px solid var(--border); margin-top: 40px; padding-top: 40px; }
.excl-deals-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.excl-deals-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--maroon);
}
.excl-deals-title span { color: var(--gold); }
.excl-deals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.excl-deal-card {
  display: flex;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  background: #fff;
  transition: var(--transition);
}
.excl-deal-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.excl-deal-img {
  position: relative;
  width: 110px;
  flex-shrink: 0;
  overflow: hidden;
}
.excl-deal-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.excl-deal-badge {
  position: absolute;
  top: 8px; left: 8px;
  background: #D63384;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 8px 3px 6px;
  border-radius: 100px;
  display: flex; align-items: center; gap: 4px;
  box-shadow: 0 2px 6px rgba(214,51,132,0.35);
}
.excl-deal-info {
  padding: 12px 12px 12px 0;
  flex: 1;
  min-width: 0;
}
.excl-deal-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--maroon);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.excl-deal-sub {
  font-size: 0.7rem;
  color: var(--text-light);
  margin-bottom: 8px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.excl-deal-price {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--maroon);
}
.excl-deal-price small { font-weight: 400; color: var(--text-light); font-size: 0.68rem; }

@media(max-width:900px) { .excl-deals-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:600px) {
  .excl-card { flex: 0 0 170px; }
  .excl-deals-grid { grid-template-columns: 1fr; }
}

/* ============================================
   TOP LOCALITIES SECTION
   ============================================ */
.tl-section { background: #fff; overflow: hidden; }
.tl-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.tl-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
}
.tl-nav { display: flex; gap: 8px; }
.tl-arrow {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.tl-arrow:hover { background: var(--maroon); border-color: var(--maroon); }
.tl-arrow:hover svg { stroke: #fff; }
.tl-arrow svg { width: 16px; height: 16px; stroke: var(--maroon); }

.tl-slider {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 2px;
  width: 100%;
  box-sizing: border-box;
}
.tl-slider::-webkit-scrollbar { display: none; }

.tl-card {
  flex: 0 0 calc(25% - 14px);
  min-width: 220px;
  scroll-snap-align: start;
}
.tl-card-img {
  display: block;
  position: relative;
  height: 180px;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  text-decoration: none;
}
.tl-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.tl-card:hover .tl-card-img img { transform: scale(1.05); }
.tl-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 14px 14px 12px;
}
.tl-loc-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.tl-loc-price {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.tl-loc-price span { font-weight: 400; font-size: 0.66rem; }
.tl-card-btn {
  display: block;
  text-align: center;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 12px 12px;
  padding: 10px 12px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  background: #fff;
  transition: var(--transition);
}
.tl-card-btn:hover { background: var(--maroon); color: #fff; border-color: var(--maroon); }

@media(max-width:900px) { .tl-card { flex: 0 0 calc(50% - 9px); } }
@media(max-width:520px)  { .tl-card { flex: 0 0 80%; } }

/* ============================================
   NEW PROJECTS SECTION
   ============================================ */
.np-section { background: #fff; }
.np-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.np-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
}
.np-title span { color: var(--gold-dark); }
.np-view-all {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-decoration: none;
}
.np-view-all:hover { text-decoration: underline; }
.np-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.np-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  text-decoration: none;
  display: block;
  transition: var(--transition);
}
.np-card > a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.np-card:hover {
  box-shadow: 0 8px 28px rgba(45,10,15,0.12);
  transform: translateY(-3px);
  border-color: transparent;
}
.np-card-img {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.np-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.np-card:hover .np-card-img img { transform: scale(1.05); }
.np-wish {
  position: absolute;
  top: 10px; right: 10px;
  background: rgba(255,255,255,0.88);
  border: none;
  border-radius: 50%;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.np-wish svg { width: 15px; height: 15px; stroke: #888; transition: var(--transition); }
.np-wish.active { background: #fff; }
.np-wish.active svg { fill: #e53e3e; stroke: #e53e3e; }
.np-wish:hover svg { stroke: #e53e3e; }
.np-price-badge {
  position: absolute;
  bottom: 10px; left: 10px;
  background: rgba(0,0,0,0.72);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}
.np-card-body { padding: 14px 14px 16px; }
.np-rera {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.68rem; font-weight: 600; color: #166534;
  margin-bottom: 8px;
}
.np-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
  line-height: 1.3;
}
.np-sub {
  font-size: 0.76rem;
  color: var(--text-light);
  line-height: 1.5;
}

@media(max-width:1100px) { .np-grid { grid-template-columns: repeat(3,1fr); } }
@media(max-width:768px)  { .np-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:480px)  { .np-grid { grid-template-columns: 1fr; } }

/* ============================================
   RECOMMENDED PROJECTS SECTION
   ============================================ */
.rp-section { background: var(--bg-light); }
.rp-new-badge {
  display: inline-block;
  background: #7c3aed;
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 2px 7px;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 8px;
  position: relative;
  top: -2px;
}
.rp-slider-wrap {
  position: relative;
}
.rp-slider {
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.rp-slider::-webkit-scrollbar { display: none; }
.rp-card {
  flex: 0 0 280px;
  width: 280px;
  scroll-snap-align: start;
}
.rp-arrow {
  position: absolute;
  top: 50%; transform: translateY(-60%);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: var(--transition);
  z-index: 5;
}
.rp-arrow:hover { background: var(--maroon); border-color: var(--maroon); }
.rp-arrow:hover svg { stroke: #fff; }
.rp-arrow svg { width: 16px; height: 16px; stroke: var(--maroon); }
.rp-prev { left: -20px; }
.rp-next { right: -20px; }

@media(max-width:900px) { .rp-card { flex: 0 0 calc(50% - 9px); } }
@media(max-width:520px)  { .rp-card { flex: 0 0 85%; } }

/* ============================================
   FEATURED BUILDERS
   ============================================ */
.fb-section { background: var(--bg-light); }
.fb-header { margin-bottom: 28px; }
.fb-title { font-size: 1.6rem; font-weight: 700; color: var(--text-dark); }
.fb-title span { color: var(--gold); }

.fb-slider-wrap { position: relative; }
.fb-slider {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.fb-slider::-webkit-scrollbar { display: none; }

/* Card — overflow:hidden so images bleed to edges */
.fb-card {
  flex: 0 0 320px;
  width: 320px;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid #e8e2db;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s;
}
.fb-card:hover { box-shadow: 0 8px 28px rgba(45,10,15,0.10); }

/* Top info area with padding */
.fb-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px 0;
}

/* Logo — square with rounded corners like PropertyPistol */
.fb-logo {
  width: 58px; height: 58px;
  border-radius: 10px;
  border: 1px solid #e8e2db;
  overflow: hidden;
  background: #faf8f5;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fb-logo img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.fb-logo-initials {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--maroon);
  letter-spacing: 0.04em;
}

.fb-info { min-width: 0; }
.fb-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fb-count {
  font-size: 0.76rem;
  color: #888;
  margin-top: 3px;
}

/* Description */
.fb-desc {
  font-size: 0.78rem;
  color: #6b6b6b;
  line-height: 1.65;
  margin: 0;
  padding: 12px 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Property section at bottom — flush to card edges */
.fb-props-bottom {
  margin-top: auto;
  border-top: 1px solid #f0ebe4;
}

/* Property titles row — auto columns: 1 img = full width, 2 imgs = half each */
.fb-props-titles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  padding: 10px 14px 6px;
  gap: 8px;
}
.fb-prop-title {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Images row — auto columns same as titles */
.fb-props-imgs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 3px;
}
.fb-prop-img-wrap {
  height: 140px;
  overflow: hidden;
}
.fb-prop-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.fb-card:hover .fb-prop-img-wrap img { transform: scale(1.04); }

/* No properties state */
.fb-no-props {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 10px 18px 18px;
  padding: 8px 14px;
  border: 1px dashed #ddd6ce;
  border-radius: 8px;
  font-size: 0.75rem;
  color: #b0a89e;
}
.fb-no-props svg { stroke: #c5bdb5; flex-shrink:0; }

/* Arrows */
.fb-arrow {
  position: absolute;
  top: 50%; transform: translateY(-60%);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  transition: var(--transition);
  z-index: 5;
}
.fb-arrow:hover { background: var(--maroon); border-color: var(--maroon); }
.fb-arrow:hover svg { stroke: #fff; }
.fb-arrow svg { width: 16px; height: 16px; stroke: var(--text-dark); }
.fb-prev { left: -22px; }
.fb-next { right: -22px; }

@media(max-width:900px) { .fb-card { flex: 0 0 270px; } }
@media(max-width:520px)  { .fb-card { flex: 0 0 84%; } }

/* ============================================
   FEATURED PROJECTS SHOWCASE
   ============================================ */
.fs-section { background: #fff; }
.fs-wrap {
  display: grid;
  grid-template-columns: 220px 1fr 290px;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

/* --- Left Thumbs --- */
.fs-thumbs {
  border-right: 1px solid var(--border);
  overflow-y: auto;
  max-height: 440px;
  scrollbar-width: none;
}
.fs-thumbs::-webkit-scrollbar { display: none; }
.fs-thumb {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.2s;
}
.fs-thumb:hover { background: #faf7f2; }
.fs-thumb.active { background: #fff5eb; border-left: 3px solid var(--gold); }
.fs-thumb-img {
  width: 54px;
  height: 42px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.fs-thumb-img img { width:100%; height:100%; object-fit:cover; }
.fs-thumb-name {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--maroon);
  line-height: 1.3;
}

/* --- Center Image --- */
.fs-main {
  position: relative;
  overflow: hidden;
  height: 440px;
}
.fs-progress-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: rgba(255,255,255,0.3);
  z-index: 10;
}
.fs-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width 0.1s linear;
}
.fs-slides { height: 100%; }
.fs-slide {
  display: none;
  height: 100%;
}
.fs-slide.active { display: block; }
.fs-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fs-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: var(--transition);
  z-index: 10;
}
.fs-nav:hover { background: #fff; box-shadow: 0 4px 16px rgba(0,0,0,0.2); }
.fs-prev { left: 12px; }
.fs-next { right: 12px; }
.fs-nav svg { width: 16px; height: 16px; stroke: var(--maroon); }

/* --- Right Info --- */
.fs-info {
  border-left: 1px solid var(--border);
  padding: 22px 20px;
  overflow-y: auto;
  max-height: 440px;
  scrollbar-width: none;
}
.fs-info::-webkit-scrollbar { display: none; }
.fs-info-slide { display: none; }
.fs-info-slide.active { display: block; }

.fs-builder {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.72rem; color: #888; font-weight: 500;
  margin-bottom: 8px;
}
.fs-prop-name {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--maroon);
  line-height: 1.3;
  margin-bottom: 6px;
}
.fs-location {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.75rem; color: var(--text-light);
  margin-bottom: 12px;
}
.fs-rera-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: #f0fdf4; color: #166534;
  font-size: 0.7rem; font-weight: 600;
  padding: 4px 10px; border-radius: 100px;
  border: 1px solid #bbf7d0;
  margin-bottom: 14px;
}
.fs-specs { margin-bottom: 14px; }
.fs-spec-row {
  font-size: 0.8rem;
  color: var(--text);
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.fs-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--maroon);
  margin-bottom: 16px;
}
.fs-price span { font-size: 0.82rem; font-weight: 400; color: var(--text-light); }
.fs-actions { display: flex; margin-bottom: 12px; }
.fs-contact-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--maroon); color: #fff;
  padding: 10px 18px; border-radius: 8px;
  font-size: 0.8rem; font-weight: 600;
  text-decoration: none; flex: 1; justify-content: center;
  transition: var(--transition);
}
.fs-contact-btn:hover { background: #1a0008; }
.fs-detail-btn {
  display: inline-flex; align-items: center;
  border: 1px solid var(--border); color: var(--maroon);
  padding: 10px 14px; border-radius: 8px;
  font-size: 0.78rem; font-weight: 600;
  text-decoration: none; white-space: nowrap;
  transition: var(--transition);
}
.fs-detail-btn:hover { border-color: var(--gold); color: var(--gold-dark); }
.fs-sub-actions {
  display: flex; align-items: center; gap: 16px;
  font-size: 0.72rem; color: #888;
}
.fs-sub-actions a { color: #888; text-decoration: none; display: flex; align-items: center; gap: 4px; }
.fs-sub-actions a:hover { color: var(--maroon); }
.card-compare-inline {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 8px;
  font-size: 0.82rem; color: #999;
  cursor: pointer; user-select: none;
  transition: color 0.18s;
}
.card-compare-inline:hover { color: var(--maroon); }
.card-compare-inline input { width: 14px; height: 14px; cursor: pointer; accent-color: var(--maroon); flex-shrink: 0; }
.card-compare-inline:has(input:checked) { color: var(--maroon); font-weight: 600; }
.compare-check-wrap {
  display: flex; align-items: center; gap: 5px;
  cursor: pointer; user-select: none;
  font-size: 0.72rem; color: #888;
  transition: color 0.2s;
}
.compare-check-wrap:hover { color: var(--maroon); }
.compare-check-wrap input { width: 13px; height: 13px; cursor: pointer; accent-color: var(--maroon); }

@media(max-width:1100px) {
  .fs-wrap { grid-template-columns: 180px 1fr 260px; }
}
@media(max-width:860px) {
  .fs-wrap { grid-template-columns: 1fr; }
  .fs-thumbs { display: flex; max-height: none; border-right: none; border-bottom: 1px solid var(--border); overflow-x: auto; }
  .fs-thumb { flex-shrink: 0; border-bottom: none; border-right: 1px solid var(--border); }
  .fs-main { height: 280px; }
  .fs-info { border-left: none; border-top: 1px solid var(--border); }
}

/* ============================================
   LOCALITIES SECTION
   ============================================ */
.localities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.locality-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 200px;
  cursor: pointer;
}
.locality-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.locality-card:hover img { transform: scale(1.08); }
.locality-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45,10,15,0.9) 0%, rgba(45,10,15,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  transition: var(--transition);
}
.locality-card:hover .locality-overlay {
  background: linear-gradient(to top, rgba(45,10,15,0.95) 0%, rgba(45,10,15,0.4) 60%, rgba(45,10,15,0.1) 100%);
}
.locality-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.locality-meta {
  font-size: 0.75rem;
  color: var(--gold-light);
}
.locality-projects {
  font-size: 0.7rem;
  color: rgba(245,240,232,0.6);
  margin-top: 2px;
}

/* ============================================
   TOOLS SECTION
   ============================================ */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.tool-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.tool-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  opacity: 0;
  transition: var(--transition);
}
.tool-card:hover {
  border-color: var(--maroon);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.tool-card:hover::before { opacity: 1; }
.tool-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(45,10,15,0.08), rgba(201,169,110,0.12));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}
.tool-icon svg { width: 24px; height: 24px; color: var(--maroon); transition: var(--transition); }
.tool-card:hover .tool-icon { background: rgba(201,169,110,0.2); }
.tool-card:hover .tool-icon svg { color: var(--gold); }
.tool-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
  position: relative;
  z-index: 1;
  line-height: 1.3;
}
.tool-card:hover .tool-name { color: var(--cream); }

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}
.blog-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,169,110,0.3);
}
.blog-img {
  position: relative;
  overflow: hidden;
}
.blog-img img {
  width: 100%;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-card.featured .blog-img img { height: 260px; object-fit: cover; }
.blog-card:not(.featured) .blog-img img { height: 160px; object-fit: cover; }

.blog-category {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--maroon);
  color: var(--gold);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.blog-body { padding: 20px; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
  font-size: 0.73rem;
  margin-bottom: 10px;
}
.blog-meta-dot { width: 3px; height: 3px; background: var(--text-light); border-radius: 50%; }
.blog-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--maroon);
  line-height: 1.35;
  margin-bottom: 10px;
  transition: var(--transition);
}
.blog-card.featured .blog-title { font-size: 1.2rem; }
.blog-card:hover .blog-title { color: var(--maroon-light); }
.blog-excerpt {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 14px;
  transition: var(--transition);
}
.blog-read-more:hover { gap: 10px; color: var(--maroon); }
.blog-read-more svg { width: 13px; height: 13px; }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  background: var(--white);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--gold));
  transition: width 0.4s ease;
  border-radius: 2px;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-card:hover::after { width: 60%; }
.why-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(45,10,15,0.08), rgba(201,169,110,0.12));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.why-icon svg { width: 28px; height: 28px; color: var(--maroon); }
.why-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--maroon);
  margin-bottom: 10px;
}
.why-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ============================================
   NEWS & ARTICLES SECTION
   ============================================ */
.na-section {
  padding: 72px 0;
  background: linear-gradient(145deg, #fef9f2 0%, #f5f0e8 40%, rgba(201,169,110,0.07) 75%, #fdf8f2 100%);
}
.na-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
}
.na-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 6px;
}
.na-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--maroon);
  line-height: 1.2;
}
.na-view-all {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--maroon);
  text-decoration: none;
  border: 1.5px solid var(--maroon);
  padding: 7px 16px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
}
.na-view-all:hover { background: var(--maroon); color: #fff; }

.na-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}

/* Featured articles */
.na-featured { display: flex; flex-direction: column; }
.na-article {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.15s;
}
.na-article:hover { opacity: 0.82; }
.na-article-border { border-top: 1px solid rgba(45,10,15,0.1); }
.na-article-text { flex: 1; }
.na-article-cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.na-article-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.4;
  margin-bottom: 8px;
}
.na-article-excerpt {
  font-size: 0.82rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
}
.na-article-date { font-size: 0.72rem; color: #888; }
.na-article-img {
  width: 130px;
  height: 96px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #e8e0d5;
}
.na-article-img img { width: 100%; height: 100%; object-fit: cover; }

/* Other reads */
.na-other {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 2px 16px rgba(45,10,15,0.07);
  border: 1px solid rgba(45,10,15,0.06);
}
.na-other-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--maroon);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}
.na-other-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid #f0ece6;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.15s;
}
.na-other-item:last-child { border-bottom: none; padding-bottom: 0; }
.na-other-item:hover { opacity: 0.75; }
.na-other-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: rgba(201,169,110,0.35);
  line-height: 1;
  min-width: 28px;
}
.na-other-text {}
.na-other-title { font-size: 0.82rem; font-weight: 600; color: #222; line-height: 1.4; margin-bottom: 4px; }
.na-other-date { font-size: 0.7rem; color: #888; }

@media (max-width: 768px) {
  .na-grid { grid-template-columns: 1fr; }
  .na-other { margin-top: 8px; }
  .na-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .na-title { font-size: 1.35rem; }
}

/* ============================================
   FOUNDER SECTION
   ============================================ */
.founder-section {
  background: #fff;
  padding: 80px 0;
}
.founder-wrap {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 70px;
  align-items: center;
}

/* LEFT content */
.founder-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 12px;
}
.founder-name {
  font-size: 2rem;
  font-weight: 800;
  color: var(--maroon);
  line-height: 1.15;
  margin: 0 0 6px;
}
.founder-designation {
  font-size: 0.9rem;
  color: #888;
  font-weight: 500;
  margin-bottom: 20px;
}
.founder-divider {
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  margin-bottom: 24px;
}

/* Quote */
.founder-quote {
  position: relative;
  font-size: 1.02rem;
  font-style: italic;
  color: var(--maroon);
  font-weight: 500;
  line-height: 1.65;
  margin: 0 0 22px;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
}
.founder-quote-icon {
  display: none;
}

/* Bio */
.founder-bio {
  font-size: 0.88rem;
  color: #5a5a5a;
  line-height: 1.8;
  margin: 0 0 28px;
}

/* Stats row */
.founder-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
  border: 1px solid #ede8e2;
  border-radius: 12px;
  overflow: hidden;
  width: fit-content;
}
.founder-stat {
  padding: 14px 28px;
  text-align: center;
}
.founder-stat-sep {
  width: 1px;
  height: 36px;
  background: #ede8e2;
}
.founder-stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--maroon);
  line-height: 1;
  margin-bottom: 4px;
}
.founder-stat-label {
  font-size: 0.68rem;
  color: #999;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* CTA button */
.founder-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--maroon);
  color: #fff;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.founder-cta:hover { background: #3d1218; transform: translateY(-1px); }
.founder-cta svg { stroke: #fff; flex-shrink: 0; }

/* RIGHT: photo */
.founder-photo-col { position: relative; }
.founder-photo-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, #f9f0e6 0%, #f0e4d4 100%);
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  min-height: 460px;
}
.founder-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #c5a880;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.5;
  min-height: 460px;
  width: 100%;
}
.founder-photo-placeholder svg { stroke: #c5a880; }

/* Badge overlay — sibling of photo-wrap, positioned on founder-photo-col */
.founder-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--maroon);
  color: #fff;
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(45,10,15,0.25);
  z-index: 2;
}
.founder-badge svg { stroke: var(--gold); flex-shrink: 0; }
.founder-badge-num {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.founder-badge-text {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.75);
  margin-top: 2px;
}

/* Compact RERA badge — one inside each founder photo (duo layout) */
.founder-badge-mini {
  bottom: 12px;
  right: 12px;
  padding: 7px 11px;
  border-radius: 10px;
  gap: 7px;
}
.founder-badge-mini .founder-badge-num { font-size: 0.72rem; }
.founder-badge-mini .founder-badge-text { font-size: 0.56rem; }

/* Duo layout — two founders side by side */
.founder-photo-col.has-two { position: relative; }
.founder-duo-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.founder-duo-card { display: flex; flex-direction: column; }
.founder-duo-card .founder-photo-wrap {
  min-height: 340px;
  border-radius: 16px;
}
.founder-duo-card .founder-photo { min-height: 340px; object-position: top; }
.founder-duo-card .founder-photo-placeholder { min-height: 340px; border-radius: 16px; }
.founder-duo-info {
  margin-top: 12px;
  text-align: center;
}
.founder-duo-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--maroon);
  line-height: 1.2;
}
.founder-duo-title {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 3px;
}
.founder-badge-duo {
  position: absolute;
  bottom: 50px;
  right: 10px;
}

@media (max-width: 960px) {
  .founder-wrap { grid-template-columns: 1fr; gap: 40px; }
  .founder-photo-col { order: -1; }
  .founder-photo-wrap { min-height: 320px; }
  .founder-photo { min-height: 320px; }
  .founder-badge { right: 12px; bottom: 12px; }
  .founder-name { font-size: 1.6rem; }
  .founder-duo-card .founder-photo-wrap,
  .founder-duo-card .founder-photo,
  .founder-duo-card .founder-photo-placeholder { min-height: 220px; }
  .founder-badge-duo { bottom: 60px; right: 6px; }
}
@media (max-width: 520px) {
  .founder-stats { width: 100%; }
  .founder-stat { padding: 12px 16px; }
  .founder-stat-num { font-size: 1.25rem; }
  .founder-duo-wrap { gap: 10px; }
  .founder-duo-card .founder-photo-wrap,
  .founder-duo-card .founder-photo,
  .founder-duo-card .founder-photo-placeholder { min-height: 170px; }
  .founder-duo-name { font-size: 0.82rem; }
  .founder-badge-duo { display: none; }
  /* Shrink the RERA badge so it fits the small duo photos */
  .founder-badge-mini { padding: 5px 8px; bottom: 7px; right: 7px; gap: 5px; }
  .founder-badge-mini svg { width: 13px; height: 13px; }
  .founder-badge-mini .founder-badge-num { font-size: 0.62rem; }
  .founder-badge-mini .founder-badge-text { font-size: 0.5rem; }
}

/* ============================================
   ENQUIRY MODAL
   ============================================ */
.enq-backdrop {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1100;
}
.enq-backdrop.enq-open { display: block; }

.enq-modal {
  display: none;
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 420px;
  background: #fff;
  border-radius: 16px;
  z-index: 1200;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  overflow: hidden;
}
.enq-modal.enq-open { display: block; }

.enq-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 1px solid #f0ebe4;
}
.enq-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}
.enq-close {
  width: 32px; height: 32px;
  border: 1px solid #e5e0db;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.enq-close:hover { background: #f5f0ea; }

/* Property row */
.enq-prop-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: #faf7f2;
  border-bottom: 1px solid #f0ebe4;
}
.enq-prop-logo {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--maroon);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.enq-prop-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
}
.enq-prop-tag {
  font-size: 0.72rem;
  color: #888;
  margin-top: 2px;
}

/* Form */
.enq-form { padding: 6px 20px 20px; }
.enq-field { border-bottom: 1px solid #e8e2db; margin-bottom: 2px; }
.enq-input {
  width: 100%;
  border: none;
  outline: none;
  padding: 14px 0;
  font-size: 0.88rem;
  color: #333;
  background: transparent;
}
.enq-input::placeholder { color: #bbb; font-weight: 400; }

.enq-checks {
  padding: 14px 0 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.enq-check-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #555;
  cursor: pointer;
}
.enq-check-label input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: #440C12;
  cursor: pointer;
}

.enq-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #7a1a28 0%, #440C12 60%, #661020 100%);
  color: #C9A96E;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 16px;
  letter-spacing: 0.03em;
  transition: box-shadow 0.2s, opacity 0.2s;
}
.enq-submit-btn:hover {
  opacity: 0.92;
  box-shadow: 0 4px 18px rgba(45,10,15,0.35);
}

.enq-legal {
  font-size: 0.68rem;
  color: #aaa;
  text-align: center;
  margin: 10px 0 0;
  line-height: 1.5;
}

/* Success state */
.enq-success {
  padding: 36px 20px 30px;
  text-align: center;
}
.enq-success svg { stroke: #22a06b; margin-bottom: 14px; }
.enq-success h3 { font-size: 1.1rem; font-weight: 600; color: #1a1a1a; margin: 0 0 8px; }
.enq-success p { font-size: 0.85rem; color: #666; margin: 0 0 20px; }
.enq-call-now {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--maroon);
  color: #fff;
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
}

/* ============================================
   FILTER MODAL
   ============================================ */
.fm-backdrop {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1100;
  backdrop-filter: blur(2px);
}
.fm-backdrop.fm-open { display: block; }

.fm {
  display: none;
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -48%);
  width: 90%;
  max-width: 600px;
  max-height: 88vh;
  background: #fff;
  border-radius: 16px;
  z-index: 1200;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.fm.fm-open { display: flex; }

.fm-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid #f0ebe4;
  flex-shrink: 0;
}
.fm-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}
.fm-close {
  width: 36px; height: 36px;
  border: 1px solid #e5e0db;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.fm-close:hover { background: #f5f0ea; }

.fm-body {
  overflow-y: auto;
  flex: 1;
  padding: 0 24px;
}
.fm-body::-webkit-scrollbar { width: 4px; }
.fm-body::-webkit-scrollbar-thumb { background: #e0d8cf; border-radius: 2px; }

.fm-section {
  padding: 22px 0;
  border-bottom: 1px solid #f5f0ea;
}
.fm-section:last-child { border-bottom: none; }
.fm-section-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 14px;
}

/* Locality search */
.fm-search-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #e0d8cf;
  border-radius: 10px;
  padding: 0 14px;
  height: 48px;
}
.fm-search-wrap svg { stroke: #aaa; flex-shrink: 0; }
.fm-search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.88rem;
  color: #333;
  background: transparent;
}
.fm-search-input::placeholder { color: #bbb; }
.fm-near-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #440C12;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

/* BHK pills */
.fm-bhk-row { display: flex; flex-wrap: wrap; gap: 10px; }
.fm-bhk {
  padding: 8px 20px;
  border: 1px solid #e0d8cf;
  border-radius: 24px;
  font-size: 0.84rem;
  font-weight: 500;
  color: #444;
  background: #fff;
  cursor: pointer;
  transition: all 0.18s;
}
.fm-bhk:hover { border-color: #440C12; color: #440C12; }
.fm-bhk.active {
  background: #440C12;
  border-color: #440C12;
  color: #fff;
}

/* Budget */
.fm-budget-label {
  display: inline-block;
  background: #f5f0ea;
  border: 1px solid #e0d8cf;
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #440C12;
  margin-bottom: 14px;
}
.fm-range-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.fm-range-edge { font-size: 0.75rem; color: #888; white-space: nowrap; }
.fm-range {
  flex: 1;
  -webkit-appearance: none;
  height: 4px;
  border-radius: 2px;
  background: #e0d8cf;
  outline: none;
  cursor: pointer;
}
.fm-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #440C12;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  cursor: pointer;
}

.fm-budget-inputs {
  display: flex;
  align-items: center;
  gap: 12px;
}
.fm-budget-box {
  flex: 1;
  border: 1px solid #e0d8cf;
  border-radius: 8px;
  padding: 10px 14px;
}
.fm-budget-box-label { font-size: 0.7rem; color: #aaa; margin-bottom: 4px; }
.fm-budget-box-val { font-size: 0.88rem; font-weight: 600; color: #1a1a1a; }
.fm-budget-box-text { font-size: 0.7rem; color: #888; margin-top: 3px; }
.fm-budget-dash { color: #aaa; font-weight: 600; }

/* Purchase type toggle */
.fm-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
}
.fm-toggle-name { font-size: 0.88rem; font-weight: 600; color: #1a1a1a; margin-bottom: 4px; }
.fm-toggle-sub { font-size: 0.77rem; color: #888; line-height: 1.4; }
.fm-toggle { position: relative; width: 46px; height: 26px; flex-shrink: 0; }
.fm-toggle input { display: none; }
.fm-toggle-slider {
  position: absolute; inset: 0;
  background: #ddd;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.2s;
}
.fm-toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  left: 3px; top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.fm-toggle input:checked + .fm-toggle-slider { background: #440C12; }
.fm-toggle input:checked + .fm-toggle-slider::before { transform: translateX(20px); }

/* Footer */
.fm-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-top: 1px solid #f0ebe4;
  flex-shrink: 0;
}
.fm-clear {
  background: none;
  border: none;
  font-size: 0.88rem;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  text-decoration: underline;
}
.fm-clear:hover { color: #440C12; }
.fm-apply {
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 32px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.fm-apply:hover { background: #440C12; }

@media(max-width:520px) {
  .fm { width: 96%; max-height: 92vh; }
  .fm-head, .fm-body, .fm-footer { padding-left: 16px; padding-right: 16px; }
}

/* ============================================
   LOVED BY PEOPLE / STATS SECTION
   ============================================ */
.loved-section {
  padding: 80px 0;
  background: #fff;
}
.loved-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left: map */
.loved-map-col { position: relative; }
.loved-map-wrap { position: relative; display: inline-block; width: 100%; }
.loved-india-svg { width: 100%; max-width: 340px; display: block; margin: 0 auto; }
.loved-map-img { width: 100%; max-width: 560px; display: block; margin: 0 auto; border-radius: 16px; object-fit: contain; }

/* Floating review card */
.loved-review-card {
  position: absolute;
  left: 6%;
  top: 38%;
  background: #fff;
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 6px 28px rgba(45,10,15,0.13);
  border: 1px solid #f0e8e0;
  max-width: 220px;
  z-index: 5;
}
.loved-review-stars { color: #f59e0b; font-size: 0.78rem; margin-bottom: 6px; }
.loved-review-text {
  font-size: 0.76rem;
  color: #444;
  line-height: 1.55;
  margin-bottom: 10px;
  font-style: italic;
}
.loved-reviewer strong { display: block; font-size: 0.78rem; color: #1a1a2e; font-weight: 700; }
.loved-reviewer span  { font-size: 0.7rem; color: #888; }

/* Right: content */
.loved-right {}
.loved-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.3;
  margin-bottom: 18px;
}
.loved-title span { color: var(--gold); }
.loved-rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
}
.loved-stars { color: #f59e0b; font-size: 1.3rem; letter-spacing: 2px; }
.loved-rating-txt { font-size: 0.82rem; color: #666; font-weight: 500; }

/* Stats 2×2 grid */
.loved-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid #ede8e2;
  border-radius: 12px;
  overflow: hidden;
}
.loved-stat {
  padding: 28px 24px;
  border-right: 1px solid #ede8e2;
  border-bottom: 1px solid #ede8e2;
}
.loved-stat:nth-child(2n) { border-right: none; }
.loved-stat:nth-child(3),
.loved-stat:nth-child(4) { border-bottom: none; }
.loved-stat-icon { margin-bottom: 12px; color: var(--maroon); opacity: 0.8; }
.loved-stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.1;
  margin-bottom: 4px;
}
.loved-stat-lbl { font-size: 0.78rem; color: #888; font-weight: 500; }

@media (max-width: 860px) {
  .loved-wrap { grid-template-columns: 1fr; gap: 36px; }
  .loved-india-svg { max-width: 260px; }
  .loved-title { font-size: 1.5rem; }
  .loved-stat-num { font-size: 1.3rem; }
  /* Smaller floating review card on mobile */
  .loved-review-card { max-width: 140px; padding: 9px 11px; left: 2%; top: 42%; border-radius: 10px; }
  .loved-review-stars { font-size: 0.6rem; margin-bottom: 3px; }
  .loved-review-text { font-size: 0.58rem; line-height: 1.4; margin-bottom: 6px; }
  .loved-reviewer strong { font-size: 0.62rem; }
  .loved-reviewer span { font-size: 0.55rem; }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: 72px 0;
  background: #fff;
}
.faq-header { margin-bottom: 36px; text-align: center; }
.faq-title {
  font-size: 1.9rem;
  font-weight: 800;
  color: #1a1a2e;
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid #ede8e2;
  cursor: pointer;
  user-select: none;
}
.faq-item:first-child { border-top: 1px solid #ede8e2; }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 4px;
  font-size: 0.92rem;
  font-weight: 500;
  color: #1a1a2e;
  transition: color 0.15s;
}
.faq-item.open .faq-q { color: var(--maroon); font-weight: 600; }
.faq-arrow {
  flex-shrink: 0;
  color: #aaa;
  transition: transform 0.25s;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--maroon); }
.faq-a {
  font-size: 0.86rem;
  color: #555;
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  padding: 0 4px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 4px 18px;
}

@media (max-width: 640px) {
  .faq-title { font-size: 1.4rem; }
  .faq-q { font-size: 0.85rem; padding: 16px 2px; }
}

/* ============================================
   EXPERT CONSULTATION SECTION
   ============================================ */
.ec-section {
  padding: 60px 0;
  background: #fff5f3;
}
.ec-success {
  background: #ecfdf5; border: 1.5px solid #10b981; color: #065f46;
  border-radius: 10px; padding: 14px 20px; margin-bottom: 20px;
  font-weight: 600; font-size: 0.88rem;
}

/* Outer card wrapping both panels */
.ec-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #f0d8d4;
  box-shadow: 0 4px 32px rgba(45,10,15,0.08);
  min-height: 480px;
}

/* LEFT panel — warm gradient */
.ec-left {
  background: linear-gradient(160deg, #f9c8b8 0%, #f5b8a4 25%, #fdd5c8 55%, #fef0ea 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 28px 0;
  position: relative;
  overflow: hidden;
}
.ec-left-top { text-align: center; z-index: 2; position: relative; }
.ec-stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 6px; }
.ec-trust { font-size: 0.8rem; color: #7a3a2a; font-weight: 500; margin-bottom: 12px; }
.ec-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: #1a0a0f;
  line-height: 1.25;
  text-align: center;
}

/* Arch image — dome shape rises from bottom */
.ec-arch-wrap {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 72%;
}
.ec-arch {
  width: 100%;
  height: 100%;
  border-radius: 50% 50% 0 0;
  overflow: hidden;
  background: rgba(45,10,15,0.15);
}
.ec-arch img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }

/* RIGHT panel — white */
.ec-right {
  background: #fff;
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ec-form-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 22px;
}
.ec-field { margin-bottom: 0; }
.ec-input {
  width: 100%;
  padding: 13px 0;
  border: none;
  border-bottom: 1px solid #e0d5d0;
  border-radius: 0;
  font-size: 0.88rem;
  color: #333;
  background: transparent;
  transition: border-color 0.2s;
  box-sizing: border-box;
  font-family: inherit;
  display: block;
  margin-bottom: 4px;
}
.ec-input:focus { outline: none; border-bottom-color: var(--maroon); }
.ec-input::placeholder { color: #aaa; }
.ec-intent-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0;
  flex-wrap: wrap;
}
.ec-intent-label { font-size: 0.82rem; font-weight: 500; color: #444; white-space: nowrap; }
.ec-intent-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.ec-intent-btn {
  padding: 6px 18px;
  border-radius: 100px;
  border: 1.5px solid #ccc;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 600;
  color: #444;
  cursor: pointer;
  transition: all 0.18s;
  font-family: inherit;
}
.ec-intent-btn.active { border-color: var(--maroon); background: var(--maroon); color: #fff; }
.ec-intent-btn:hover:not(.active) { border-color: #999; color: #222; }

/* Button + call side by side */
.ec-action-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.ec-submit-btn {
  padding: 13px 28px;
  background: var(--maroon);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s;
  font-family: inherit;
  white-space: nowrap;
}
.ec-submit-btn:hover { background: #3d0e17; }
.ec-call-inline {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #555;
}
.ec-call-inline a { color: #1a1a2e; font-weight: 700; text-decoration: none; }
.ec-call-inline svg { color: #888; }
.ec-secure { font-size: 0.7rem; color: #888; }

@media (max-width: 860px) {
  .ec-card { grid-template-columns: 1fr; }
  .ec-left { min-height: 280px; padding-bottom: 0; }
  .ec-arch-wrap { height: 65%; }
  .ec-right { padding: 28px 24px; }
  .ec-action-row { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--maroon);
  color: rgba(245,240,232,0.8);
  padding: 64px 0 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.5), transparent);
}
.footer-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo img { width: 52px; height: 52px; border-radius: 50%; }
.footer-logo-text .logo-name { color: var(--gold); font-family: var(--font-serif); font-size: 1.1rem; letter-spacing: 2px; }
.footer-logo-text .logo-tagline { color: rgba(201,169,110,0.55); font-size: 0.58rem; letter-spacing: 1.5px; }
.footer-desc {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(245,240,232,0.6);
  margin-bottom: 20px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 36px; height: 36px;
  background: rgba(201,169,110,0.12);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: rgba(245,240,232,0.7);
}
.social-btn:hover { background: var(--gold); color: var(--maroon); border-color: var(--gold); }
.social-btn svg { width: 16px; height: 16px; }

.footer-col {}
.footer-heading {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,169,110,0.2);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.82rem;
  color: rgba(245,240,232,0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '›';
  color: var(--gold);
  opacity: 0;
  transition: var(--transition);
  font-size: 1rem;
}
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-links a:hover::before { opacity: 1; }

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-contact-item svg {
  width: 16px; height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item span {
  font-size: 0.82rem;
  color: rgba(245,240,232,0.6);
  line-height: 1.5;
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0,0,0,0.2);
  border-top: 1px solid rgba(201,169,110,0.1);
}
.footer-bottom-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-copyright {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.45);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 0.75rem;
  color: rgba(245,240,232,0.45);
  transition: var(--transition);
}
.footer-legal a:hover { color: var(--gold); }

/* ============================================
   COMPARE PANEL (PropertyPistol style — bottom right)
   ============================================ */
.compare-bar {
  position: fixed;
  bottom: -320px;
  right: 24px;
  width: 320px;
  background: #fff;
  border: 1px solid #e0dbd3;
  border-radius: 14px 14px 0 0;
  box-shadow: 0 -6px 40px rgba(45,10,15,0.18);
  z-index: 999;
  transition: bottom 0.4s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
}
.compare-bar.visible { bottom: 0; }

.cmp-panel-header {
  background: var(--maroon);
  color: #fff;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
  font-weight: 700;
}
.cmp-panel-close {
  background: none; border: none; color: rgba(255,255,255,.7);
  font-size: 1rem; cursor: pointer; line-height:1; padding: 2px 4px;
}
.cmp-panel-close:hover { color: #fff; }

.cmp-panel-slots {
  display: flex;
  gap: 0;
  padding: 14px 14px 0;
  min-height: 110px;
}
.cmp-slot {
  flex: 1;
  margin: 0 5px;
  background: #f7f4f0;
  border: 1.5px dashed #ddd;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 6px;
  min-height: 100px;
  position: relative;
  text-align: center;
}
.cmp-slot.filled {
  border: 1.5px solid #e0dbd3;
  background: #fff;
}
.cmp-slot-img {
  width: 100%; height: 56px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 5px;
}
.cmp-slot-img-placeholder {
  width: 100%; height: 56px;
  background: linear-gradient(135deg,var(--maroon),#5a1520);
  border-radius: 6px;
  margin-bottom: 5px;
  display: flex; align-items: center; justify-content: center;
}
.cmp-slot-img-placeholder svg { width:20px;height:20px;stroke:rgba(201,169,110,.5);fill:none; }
.cmp-slot-name {
  font-size: .65rem; font-weight: 600; color: #333;
  line-height: 1.3;
  overflow: hidden; display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.cmp-slot-empty-txt { font-size:.65rem; color:#bbb; }
.cmp-slot-remove {
  position: absolute; top: 4px; right: 4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--maroon); color: #fff;
  font-size: .6rem; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

.cmp-panel-sub {
  font-size: .7rem; color: #aaa; text-align: center;
  padding: 8px 14px 4px;
}
.cmp-panel-footer {
  padding: 10px 14px 14px;
}
.btn-compare-now {
  width: 100%;
  background: var(--maroon);
  color: var(--gold);
  padding: 11px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: .88rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer;
  transition: opacity .2s;
  display: block;
  text-align: center;
  text-decoration: none;
}
.btn-compare-now:hover { opacity: .88; }

@media(max-width:480px) {
  .compare-bar { right: 0; left: 0; width: 100%; border-radius: 14px 14px 0 0; }
}

/* Toast */
.toast {
  position: fixed;
  bottom: 80px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--maroon);
  color: var(--cream);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1001;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast-warning { background: #92400e; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE — Desktop breakpoints
   ============================================ */
/* ── Large laptop (≤1380px) — hide phone, compress button ── */
@media (max-width: 1380px) {
  .nav-container { gap: 10px; padding: 0 36px 0 16px; }
  .nav-link { padding: 6px 9px; font-size: 0.8rem; }
  .nav-actions { gap: 8px; }
  .nav-toll { display: none; }
  .btn-nav-primary { padding: 7px 13px; font-size: 0.77rem; }
}

/* ── Laptop / small desktop (≤1280px) ── */
@media (max-width: 1280px) {
  .nav-container { gap: 8px; padding: 0 30px 0 14px; }
  .nav-link { padding: 6px 8px; font-size: 0.79rem; }
  .nav-actions { gap: 6px; }
  .nav-toll { display: none; }
  .btn-nav-primary { padding: 7px 11px; font-size: 0.76rem; gap: 4px; }
  .btn-nav-primary svg { display: none; }
  .nav-rera-center { padding: 4px 8px; font-size: 0.64rem; }
}

/* ── iPad landscape / tablet (≤1024px) ── */
@media (max-width: 1024px) {
  .nav-container { gap: 8px; padding: 0 14px 0 10px; }
  .nav-toll { display: none; }
  .nav-link { padding: 6px 7px; font-size: 0.77rem; }
  .nav-actions { gap: 6px; }
  .btn-nav-primary { padding: 7px 12px; font-size: 0.77rem; gap: 4px; }
  .btn-nav-primary svg { display: none; }
  .nav-rera-center { display: none; }
}

@media (max-width: 1100px) {
  .tools-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ============================================
   MOBILE — 768px and below
   All grids → horizontal scroll (no multi-row stacking)
   ============================================ */
@media (max-width: 768px) {

  /* ══ MOBILE HEADER ══════════════════════════ */
  .nav-container { padding: 0 12px; height: 58px; gap: 8px; }
  .nav-rera-center, .nav-toll, .btn-nav-primary,
  .nav-actions .btn-nav-outline { display: none; }
  .hamburger { display: flex; order: -1; margin-right: 2px; }

  /* Compact logo */
  .nav-logo { gap: 8px; }
  .nav-logo img { height: 38px; width: auto; }

  /* Right-side icons */
  .nav-actions { gap: 4px; }
  .nav-icon-btn { width: 34px; height: 34px; }

  /* Search bar (shown on scroll) — fill space, no stray button, never cut */
  .nav-search { max-width: none; height: 38px; min-width: 0; }
  .nav-search input { font-size: 0.8rem; min-width: 0; }
  .nav-search-btn { display: none; }
  .navbar.scrolled .logo-text { display: none; }
  .navbar.scrolled .nav-logo { display: none; }

  /* ══ MOBILE SLIDE-IN DRAWER (PropertyPistol style) ══ */
  .nav-menu { display: none; }
  .nav-overlay.show {
    display: block;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 9998;
    animation: navFade 0.2s ease;
  }
  @keyframes navFade { from { opacity: 0; } to { opacity: 1; } }

  .nav-menu.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: 84vw; max-width: 330px;
    height: 100dvh;
    background: #fff;
    box-shadow: 4px 0 36px rgba(0,0,0,0.22);
    padding: 0;
    z-index: 9999;
    gap: 0;
    overflow-y: auto;
    animation: navDrawerIn 0.26s cubic-bezier(0.4,0,0.2,1);
  }
  @keyframes navDrawerIn { from { transform: translateX(-100%); } to { transform: translateX(0); } }

  /* Drawer header */
  .nav-menu.open .nav-drawer-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 18px; border-bottom: 1px solid #eee;
    position: sticky; top: 0; background: #fff; z-index: 2;
  }
  .nav-drawer-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .nav-drawer-logo img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
  .nav-drawer-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
  .nav-drawer-logo-name { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; color: var(--maroon); letter-spacing: 2px; }
  .nav-drawer-logo-tagline { font-size: 0.48rem; color: rgba(45,10,15,0.45); letter-spacing: 1.5px; text-transform: uppercase; }
  .nav-drawer-close {
    width: 34px; height: 34px; border: none; background: #f5f0e8;
    border-radius: 50%; font-size: 1.4rem; line-height: 1; color: var(--maroon);
    cursor: pointer; flex-shrink: 0;
  }

  /* Drawer links */
  .nav-menu.open .nav-link-mobile { display: block; }
  .nav-menu.open .nav-link {
    width: 100%; padding: 15px 20px; font-size: 0.95rem; font-weight: 500;
    border-bottom: 1px solid #f3eee6; text-align: left;
  }
  .nav-menu.open .nav-link::after { display: none; }
  .nav-menu.open .nav-dropdown { flex-direction: column; align-items: stretch; width: 100%; }
  .nav-menu.open .nav-drop-toggle {
    padding: 15px 20px; border-bottom: 1px solid #f3eee6;
    display: flex; align-items: center; justify-content: space-between;
  }
  /* Chevron indicator (mobile accordion) */
  .nav-menu.open .nav-drop-toggle::after {
    content: '';
    width: 8px; height: 8px;
    border-right: 2px solid #999;
    border-bottom: 2px solid #999;
    transform: rotate(45deg);
    transition: transform 0.2s;
    margin-top: -3px;
  }
  .nav-menu.open .nav-dropdown.open-sub .nav-drop-toggle::after {
    transform: rotate(-135deg);
    margin-top: 3px;
    border-color: var(--maroon);
  }
  .nav-menu.open .nav-dropdown::after { display: none; }
  /* Collapsed by default — opens on click */
  .nav-menu.open .nav-drop-menu {
    display: none;
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    padding-top: 0;
    max-height: none;
    background: #faf8f5;
    width: 100%;
  }
  .nav-menu.open .nav-dropdown.open-sub .nav-drop-menu { display: block; }
  .nav-menu.open .nav-drop-item { padding: 12px 34px; font-size: 0.88rem; }

  /* Drawer footer */
  .nav-menu.open .nav-drawer-foot {
    display: block;
    margin-top: auto;
    padding: 20px;
    background: var(--cream);
    border-top: 1px solid #ece4d6;
  }
  .nav-drawer-foot-label { font-weight: 700; color: var(--maroon); font-size: 0.92rem; margin-bottom: 10px; }
  .nav-drawer-foot-call { display: flex; align-items: center; gap: 7px; font-size: 0.78rem; color: var(--text-mid); }
  .nav-drawer-foot-call svg { color: var(--gold-dark); }
  .nav-drawer-foot-num { display: block; margin-top: 4px; font-size: 1.15rem; font-weight: 800; color: var(--maroon); text-decoration: none; }

  /* ── Global ── */
  /* Uniform vertical rhythm — each section contributes 18px top + 18px
     bottom, so the gap BETWEEN any two sections = 18+18 = 36px (not 72). */
  .section,
  .excl-section,
  .fs-section,
  .np-section,
  .fb-section,
  .tl-section,
  .founder-section,
  .ec-section,
  .faq-section,
  .loved-section { padding-top: 18px !important; padding-bottom: 18px !important; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 18px; }

  /* ── Popular Localities — horizontal scroll on mobile ── */
  .plb-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 12px;
  }
  .plb-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: 100%;
    padding-bottom: 2px;
  }
  .plb-chips::-webkit-scrollbar { display: none; }

  /* ── Hero ── */
  .hero { min-height: auto; align-items: flex-start; }
  .hero-content { padding: 40px 12px 50px; max-width: 100%; }
  .hero-bg::before {
    background: linear-gradient(180deg, rgba(12,3,5,.95) 0%, rgba(20,5,9,.88) 50%, rgba(20,5,9,.65) 100%);
  }
  .hero-title { font-size: clamp(1.8rem, 7vw, 2.8rem); letter-spacing: -0.5px; }
  .search-tab-row { flex-wrap: wrap; gap: 2px; }
  .search-tab { border-radius: 5px 5px 0 0; padding: 8px 12px; font-size: 0.75rem; }
  .hero-search-box {
    height: auto;
    display: grid;
    grid-template-areas: "city city" "input filter" "search search";
    grid-template-columns: 1fr auto;
    border-radius: 0 6px 6px 6px;
  }
  .search-city-select { grid-area: city; width: 100%; border-right: none; border-bottom: 1.5px solid #e5e7eb; padding: 14px 12px; min-width: unset; }
  .search-input-wrap  { grid-area: input; padding: 12px 12px; width: 100%; border-bottom: 1.5px solid #e5e7eb; }
  .search-filter-btn  { grid-area: filter; display: flex; margin: 0; align-self: stretch; width: 52px; border-radius: 0; border-left: 1.5px solid #e5e7eb; border-bottom: 1.5px solid #e5e7eb; border-top: none; border-right: none; background: #f9f5f0; }
  .btn-search { grid-area: search; width: 100%; justify-content: center; padding: 15px; height: auto; font-size: 1rem; border-radius: 0 0 6px 6px; }
  .city-drop { width: 100%; left: 0; top: calc(100% + 6px); }
  .hero-subtitle { font-size: 0.85rem; gap: 8px; }

  /* ── Stats bar ── */
  .stats-container { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after, .stat-item:nth-child(4)::after { display: none; }

  /* ── Properties (already flex-scroll, fix card width) ── */
  .properties-grid { gap: 14px; }
  .property-card { flex: 0 0 78vw; max-width: 320px; }
  .cat-grid { gap: 10px; }

  /* ── New Projects → horizontal scroll ── */
  .np-grid {
    display: flex !important;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .np-grid::-webkit-scrollbar { display: none; }
  .np-card { flex: 0 0 72vw; max-width: 280px; scroll-snap-align: start; }

  /* ── Localities → horizontal scroll ── */
  .localities-grid {
    display: flex !important;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .localities-grid::-webkit-scrollbar { display: none; }
  .locality-card { flex: 0 0 65vw; max-width: 240px; height: 180px; scroll-snap-align: start; }

  /* ── Top Localities slider cards ── */
  .tl-slider { gap: 10px; }
  .tl-card { flex: 0 0 72vw; max-width: 260px; }

  /* ── Blog → horizontal scroll ── */
  .blog-grid {
    display: flex !important;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .blog-grid::-webkit-scrollbar { display: none; }
  .blog-card { flex: 0 0 78vw; max-width: 300px; scroll-snap-align: start; }
  .blog-card.featured .blog-img img,
  .blog-card:not(.featured) .blog-img img { height: 160px; }

  /* ── Why Choose Us → horizontal scroll ── */
  .why-grid {
    display: flex !important;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .why-grid::-webkit-scrollbar { display: none; }
  .why-card { flex: 0 0 72vw; max-width: 260px; scroll-snap-align: start; }

  /* ── Tools → 3 per row (compact), no scroll needed ── */
  .tools-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .tool-card { padding: 18px 10px; }

  /* ── Exclusive service cards → keep existing scroll, adjust width ── */
  .excl-card { flex: 0 0 62vw; max-width: 200px; }

  /* ── Exclusive Deals → 2 columns × 2 rows grid (no scroll) ── */
  .excl-deals-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    overflow: visible !important;
  }
  .excl-deal-card { flex-direction: column; }
  .excl-deal-img { width: 100%; height: 130px; }
  .excl-deal-info { padding: 10px 12px; }

  /* ── Featured Builder / Recommended (already scroll) ── */
  .rp-card { flex: 0 0 78vw; max-width: 300px; }
  .fb-slider { gap: 10px; }
  .fb-card  { flex: 0 0 78vw; max-width: 300px; }

  /* ── Founder section ── */
  .founder-wrap { grid-template-columns: 1fr; gap: 32px; }
  .founder-photo-col { order: -1; }
  .founder-photo-wrap, .founder-photo { min-height: 260px; }
  .founder-name { font-size: 1.5rem; }
  .founder-stats { width: 100%; overflow-x: auto; }

  /* ── Footer ── */
  /* Brand full-width on top, then the 3 link sections (Properties /
     Services / Company) in ONE row of 3 columns, Contact below. */
  .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 22px 12px; padding-bottom: 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col:last-child { grid-column: 1 / -1; }   /* Contact Us full width */
  .footer-heading { font-size: 0.92rem; margin-bottom: 12px; }
  .footer-links { gap: 8px; }
  .footer-links a { font-size: 0.8rem; gap: 0; }
  .footer-links a::before { display: none; }   /* reclaim space in narrow cols */
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 10px; }

  /* ── Fix container paddings ── */
  .container { padding: 0 12px; }

  /* ══ MOBILE OVERFLOW FIX ══════════════════════
     Arrows positioned at negative px cause the
     entire page to scroll horizontally on mobile.
     Hide all scroll arrows — touch swipe is enough.
  ═════════════════════════════════════════════ */
  .scroll-btn,
  .tl-nav,
  .rp-arrow,
  .fb-arrow,
  .na-arrows { display: none !important; }

  /* Exclusive section arrows — show on mobile, repositioned inside wrapper */
  .excl-arrow { display: flex !important; width: 30px; height: 30px; }
  .excl-prev  { left: 4px; }
  .excl-next  { right: 4px; }

  /* Clip any leftover overflow inside scroll wrappers */
  .properties-scroll-wrap,
  .fb-slider-wrap,
  section { overflow-x: clip; }
  /* excl-scroll-wrap keeps overflow:visible so arrows stay visible */
  .excl-scroll-wrap { overflow: visible; }

  /* Scroll containers must still scroll */
  .excl-cards,
  .properties-grid,
  .tl-slider,
  .np-grid,
  .rp-track,
  .localities-grid,
  .blog-grid,
  .why-grid { overflow-x: auto !important; }
}
