/* ==========================================================================
   Ekta Enclave — Flat UI Minimalist White Design System
   Theme: Clean White, Flat Design, HugeIcons Stroke Rounded
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&display=swap');

:root {
  /* Flat UI White Palette */
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;

  /* Accent — Deep Indigo (single accent for flat UI) */
  --accent: #1a1a2e;
  --accent-mid: #16213e;
  --accent-soft: #0f3460;
  --accent-light: #e8eaf6;
  --accent-tag: #eef2ff;
  --accent-tag-border: #c7d2fe;

  /* Semantic */
  --success: #16a34a;
  --success-bg: #f0fdf4;
  --warning: #d97706;
  --warning-bg: #fffbeb;

  /* Text */
  --text-primary: var(--gray-900);
  --text-secondary: var(--gray-700);
  --text-muted: var(--gray-500);
  --text-faint: var(--gray-400);

  /* Borders */
  --border: var(--gray-200);
  --border-mid: var(--gray-300);

  /* Typography */
  --font: 'DM Sans', system-ui, -apple-system, sans-serif;

  /* Flat UI: Zero shadows, ultra-crisp */
  --shadow-none: none;
  --shadow-flat: 0 0 0 1px var(--gray-200);

  /* Layout */
  --container-width: 1320px;
  --nav-height: 72px;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.22s ease;
}

/* ============================
   RESET & CORE
   ============================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 28px;
}

.section-padding {
  padding: 96px 0;
}

/* ============================
   HUGEICONS FONT UTILITY
   ============================ */
[class*="hgi-"] {
  font-size: inherit;
  line-height: 1;
  color: inherit;
}

.icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============================
   SECTION HEADERS
   ============================ */
.section-header {
  text-align: center;
  max-width: 1080px;
  margin: 0 auto 56px auto;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-soft);
  background: var(--accent-tag);
  border: 1px solid var(--accent-tag-border);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
}

/* Old class still used in HTML */
.section-subtitle {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-soft);
  background: var(--accent-tag);
  border: 1px solid var(--accent-tag-border);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* ============================
   BUTTONS — FLAT UI
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 26px;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn i {
  font-size: 1.1rem;
}

/* Primary — Deep navy fill */
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-mid);
  border-color: var(--accent-mid);
  transform: translateY(-1px);
}

/* Secondary — white fill, navy border */
.btn-secondary {
  background: var(--white);
  color: var(--accent);
  border-color: var(--accent);
}

.btn-secondary:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-1px);
}

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--border-mid);
}

.btn-outline:hover {
  border-color: var(--accent);
  background: var(--accent-tag);
}

/* Outline Light — for use on dark backgrounds */
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--accent);
  border-color: var(--white);
}

/* Icon within button */
.btn .huge-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
}

.btn .huge-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================
   FLOATING ACTION BUTTONS
   ============================ */
.floating-actions {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 990;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
  border: 2px solid transparent;
}

.float-btn i {
  font-size: 1.3rem;
}

.float-call {
  background: var(--accent);
  border-color: var(--accent);
}

.float-whatsapp {
  background: #25d366;
  border-color: #22c55e;
}

.float-btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

/* ============================
   HEADER / NAVIGATION
   ============================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  border-bottom-color: var(--border-mid);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo:hover {
  opacity: 0.8;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
}

.logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 2px;
}

/* Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--text-primary);
  background: var(--gray-100);
}

.nav-link.active {
  color: var(--accent);
  background: var(--accent-tag);
}

.nav-link::after {
  display: none;
}

/* Nav CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-cta .btn {
  padding: 9px 18px;
  font-size: 0.82rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
  display: block;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================
   HERO SECTION
   ============================ */
.hero {
  min-height: 100vh;
  padding-top: calc(var(--nav-height) + 72px);
  padding-bottom: 72px;
  background: var(--white);
  display: flex;
  align-items: center;
  position: relative;
  border-bottom: 1px solid var(--border);
}

/* Flat decorative bg grid */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--gray-100) 1px, transparent 1px),
    linear-gradient(90deg, var(--gray-100) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, transparent 0%, white 20%, white 80%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--accent-tag);
  border: 1px solid var(--accent-tag-border);
  border-radius: 100px;
  color: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-eyebrow i {
  font-size: 1rem;
}

/* Keep hero-tag for HTML compatibility */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--accent-tag);
  border: 1px solid var(--accent-tag-border);
  border-radius: 100px;
  color: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-tag .huge-icon,
.hero-tag i {
  font-size: 1rem;
  width: 16px;
  height: 16px;
}

.hero-tag .huge-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-content {
  max-width: 780px;
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: normal;
  color: var(--accent-soft);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.badge-item:hover {
  border-color: var(--accent-tag-border);
  background: var(--accent-tag);
}

.badge-icon {
  color: var(--accent-soft);
  font-size: 1.1rem;
}

/* SVG badge icon fallback */
.badge-icon.huge-icon {
  width: 20px;
  height: 20px;
}

.badge-icon.huge-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.badge-text {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* ============================
   ABOUT / STATS SECTION
   ============================ */
.about {
  background: var(--gray-50);
  border-bottom: 1px solid var(--border);
}

/* About / Project Overview Redesign */
.about-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}

.about-text-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 18px;
}

.about-lead {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 28px;
}

.about-pill-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.about-pill-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: var(--transition);
}

.about-pill-card:hover {
  border-color: var(--accent-tag-border);
  background: var(--accent-tag);
}

.about-pill-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: var(--accent-tag);
  color: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-pill-card:hover .about-pill-icon {
  background: var(--accent);
  color: var(--white);
}

.about-pill-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-pill-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.about-pill-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.about-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Right visual card */
.about-visual-card {
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
}

.about-visual-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.about-visual-header {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.about-visual-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
  display: block;
}

.about-visual-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
}

.about-feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.about-feature-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-feature-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.about-feature-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

.about-rera-banner {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.about-rera-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--white);
}

.about-rera-info svg {
  width: 18px;
  height: 18px;
  color: #4ade80;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-card {
  background: var(--white);
  padding: 40px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition);
  position: relative;
}

.stat-card:hover {
  background: var(--accent-tag);
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--accent-tag);
  color: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  border: 1px solid var(--accent-tag-border);
  transition: var(--transition);
}

.stat-card:hover .stat-icon {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.stat-icon .huge-icon {
  width: 24px;
  height: 24px;
}

.stat-icon .huge-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.025em;
  margin-bottom: 6px;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================
   LOCATION SECTION
   ============================ */
.location {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.location .section-title {
  color: var(--text-primary);
}

.location .section-subtitle,
.location .section-desc {
  color: var(--text-secondary);
}

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

.distance-table-wrapper {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.distance-table {
  width: 100%;
  border-collapse: collapse;
}

.distance-table th {
  background: var(--gray-50);
  padding: 14px 20px;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.distance-table td {
  padding: 14px 20px;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-primary);
  font-weight: 500;
}

.distance-table tr:last-child td {
  border-bottom: none;
}

.distance-table td:last-child {
  font-weight: 700;
  color: var(--accent-soft);
  white-space: nowrap;
}

.distance-table tr:hover td {
  background: var(--gray-50);
}

.map-container {
  height: 100%;
  min-height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

/* ============================
   PRICING SECTION
   ============================ */
.pricing {
  background: var(--gray-50);
  border-bottom: 1px solid var(--border);
}

.inventory-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.search-box {
  position: relative;
  flex: 1;
  min-width: 260px;
  max-width: 480px;
}

.search-box .search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.1rem;
  pointer-events: none;
}

.search-box input {
  width: 100%;
  height: 42px;
  padding: 10px 38px 10px 42px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  background: var(--white);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  outline: none;
  transition: var(--transition);
}

.search-box input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26, 26, 46, 0.08);
}

.search-clear-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
}

.search-clear-btn:hover {
  color: var(--text-primary);
}

.filter-controls {
  position: relative;
}

.custom-dropdown {
  position: relative;
  min-width: 170px;
}

.custom-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  height: 42px;
  padding: 0 16px;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  background-color: var(--white);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  outline: none;
  cursor: pointer;
  transition: var(--transition);
}

.custom-dropdown-toggle:hover {
  border-color: var(--gray-400);
  background-color: var(--gray-50);
}

.custom-dropdown.open .custom-dropdown-toggle {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26, 26, 46, 0.08);
}

.custom-dropdown-toggle .dropdown-arrow {
  font-size: 1rem;
  transition: transform 0.2s ease;
  color: var(--text-muted);
}

.custom-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
  color: var(--text-primary);
}

.custom-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  padding: 6px;
  z-index: 50;
  display: none;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.custom-dropdown.open .custom-dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.dropdown-item:hover {
  background: var(--gray-100);
  color: var(--text-primary);
}

.dropdown-item.active {
  background: var(--accent-tag);
  color: var(--accent-soft);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.dot-all { background: var(--gray-400); }
.dot-unsold { background: var(--success); }
.dot-sold { background: #dc2626; }
.dot-hold { background: #a16207; }

.pricing-controls {
  display: flex;
  justify-content: center;
  gap: 8px;
  background: var(--gray-200);
  border-radius: var(--radius);
  padding: 4px;
}

.toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 20px;
  font-family: var(--font);
  font-size: 0.83rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.toggle-btn i {
  font-size: 1.05rem;
}

.toggle-btn .huge-icon {
  width: 16px;
  height: 16px;
}

.toggle-btn .huge-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.toggle-btn.active,
.toggle-btn:hover {
  background: var(--white);
  color: var(--text-primary);
}

.pricing-table-container {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table th {
  background: var(--gray-50);
  padding: 14px 24px;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.pricing-table td {
  padding: 18px 24px;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-primary);
  font-weight: 500;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table tr:hover td {
  background: var(--gray-50);
}

.pricing-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.73rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-available {
  background: var(--success-bg);
  color: var(--success);
  border: 1px solid #bbf7d0;
}

.status-limited {
  background: var(--warning-bg);
  color: var(--warning);
  border: 1px solid #fde68a;
}

.status-sold {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

.status-hold {
  background: #fefce8;
  color: #a16207;
  border: 1px solid #fef08a;
}

/* Pricing Cards */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  border-color: var(--accent-tag-border);
  background: var(--accent-tag);
}

.pricing-card.featured {
  border: 2px solid var(--accent);
  background: var(--accent);
  color: var(--white);
}

.pricing-card.featured .pricing-size,
.pricing-card.featured .pricing-price,
.pricing-card.featured p,
.pricing-card.featured strong {
  color: var(--white);
}

.pricing-card.featured .pricing-card-header {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-card-header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.pricing-size {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: -0.025em;
}

.pricing-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.pricing-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.pricing-card p strong {
  color: var(--text-primary);
}

.disclaimer-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 20px;
}

/* ============================
   AMENITIES SECTION
   ============================ */
.amenities {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.amenity-card {
  background: var(--white);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: var(--transition);
}

.amenity-card:hover {
  background: var(--gray-50);
  z-index: 1;
}

.amenity-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--accent-tag);
  color: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
  border: 1px solid var(--accent-tag-border);
  transition: var(--transition);
}

.amenity-card:hover .amenity-icon {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.amenity-icon .huge-icon {
  width: 22px;
  height: 22px;
}

.amenity-icon .huge-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.amenity-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.amenity-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============================
   USP / WHY INVEST
   ============================ */
.usp-section {
  background: var(--gray-50);
  border-bottom: 1px solid var(--border);
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.usp-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.usp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.usp-card:hover::before {
  transform: scaleX(1);
}

.usp-card:hover {
  border-color: var(--accent-tag-border);
}

.usp-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}

.usp-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.usp-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================
   GALLERY SECTION
   ============================ */
.gallery {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 18px;
  font-family: var(--font);
  font-size: 0.83rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  background: var(--gray-100);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.gallery-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px;
}

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

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--gray-100);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Lightbox */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: var(--white);
  font-size: 36px;
  cursor: pointer;
  opacity: 0.7;
  transition: var(--transition);
  line-height: 1;
}

.lightbox-close:hover {
  opacity: 1;
}

/* ============================
   MASTER PLAN
   ============================ */
.master-plan-box {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
}

.plan-img-wrapper {
  cursor: zoom-in;
  overflow: hidden;
  border-radius: var(--radius);
}

.plan-img-wrapper img {
  width: 100%;
  transition: transform 0.4s ease;
}

.plan-img-wrapper.zoomed {
  cursor: zoom-out;
}

.plan-img-wrapper.zoomed img {
  transform: scale(1.5);
}

/* ============================
   RERA SECTION
   ============================ */
.rera-section {
  background: var(--gray-50);
  border-bottom: 1px solid var(--border);
}

.rera-card {
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 52px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: center;
}

.rera-card .section-subtitle,
.rera-card .section-eyebrow {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
}

.rera-card h2,
.rera-card-title {
  font-size: 2rem;
  font-weight: 800;
  margin: 12px 0 16px;
  letter-spacing: -0.02em;
  color: #fff;
}

.rera-badge-no {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.rera-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 24px;
}

.qr-box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.qr-placeholder {
  width: 120px;
  height: 120px;
  background: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 3rem;
}

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials-section {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.carousel-container {
  max-width: 720px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  text-align: center;
}

.testimonial-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
}

.testimonial-quote {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-primary);
}

.testimonial-location {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================
   FAQ SECTION
   ============================ */
.faq-section {
  background: var(--gray-50);
  border-bottom: 1px solid var(--border);
}

.faq-accordion {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover,
.faq-item.active {
  border-color: var(--accent-tag-border);
}

.faq-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--text-primary);
  gap: 16px;
}

.faq-header i {
  font-size: 1.2rem;
  color: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-header .huge-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-header .huge-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--text-muted);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-item.active .faq-header i {
  transform: rotate(180deg);
  color: var(--accent-soft);
}

.faq-item.active .faq-header .huge-icon {
  transform: rotate(180deg);
}

.faq-item.active .faq-header .huge-icon svg {
  stroke: var(--accent-soft);
}

.faq-body {
  display: none;
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.faq-item.active .faq-body {
  display: block;
}

/* ============================
   CONTACT SECTION
   ============================ */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 36px;
}

.contact-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: var(--radius-xl);
  position: relative;
  z-index: 5;
}

.form-success-alert {
  background: var(--success-bg);
  color: var(--success);
  border: 1px solid #bbf7d0;
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  display: none;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 500;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  color: var(--text-primary);
  appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-soft);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--accent-tag);
}

.form-control::placeholder {
  color: var(--text-faint);
}

/* Custom Rich Floating Dropdown UI */
.custom-dropdown-container {
  position: relative;
  width: 100%;
}

.dropdown-trigger-btn {
  width: 100%;
  padding: 12px 15px;
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 500;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
  outline: none;
}

.dropdown-trigger-btn:hover {
  background: #f8fafc;
  border-color: var(--accent-soft);
}

.custom-dropdown-container.open .dropdown-trigger-btn {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--accent-tag);
}

.trigger-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: transform 0.25 ease, color 0.25s ease;
}

.custom-dropdown-container.open .trigger-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.dropdown-menu-floating {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 35px -5px rgba(0, 0, 0, 0.12), 0 8px 15px -6px rgba(0, 0, 0, 0.06);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 6px;
}

.custom-dropdown-container.open .dropdown-menu-floating {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.dropdown-option:hover {
  background: var(--gray-50);
}

.dropdown-option.selected {
  background: rgba(30, 58, 138, 0.07);
}

.option-icon-box {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm, 6px);
  background: var(--gray-100);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dropdown-option.selected .option-icon-box {
  background: var(--primary);
  color: var(--white);
}

.option-details {
  flex-grow: 1;
}

.option-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.option-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1px;
}

.option-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  background: var(--gray-100);
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.option-badge.badge-premium {
  background: #fef3c7;
  color: #92400e;
}

.dropdown-option.selected .option-badge {
  background: var(--primary);
  color: var(--white);
}

/* Custom Pop-up Calendar Modal Widget Styling */
.custom-calendar-container {
  position: relative;
  width: 100%;
}

.calendar-trigger-btn {
  width: 100%;
  padding: 12px 15px 12px 42px;
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 500;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
  outline: none;
  position: relative;
}

.calendar-trigger-btn .date-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.calendar-trigger-btn:hover {
  background: #f8fafc;
  border-color: var(--accent-soft);
}

.custom-calendar-container.open .calendar-trigger-btn {
  background: var(--white);
  border-color: var(--accent-soft);
  box-shadow: 0 0 0 3px var(--accent-tag);
}

.custom-calendar-container.open .date-icon {
  color: var(--accent-soft);
}

.calendar-popup-modal {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 310px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px -6px rgba(0, 0, 0, 0.15), 0 8px 16px -6px rgba(0, 0, 0, 0.08);
  z-index: 105;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-calendar-container.open .calendar-popup-modal {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.cal-month-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.cal-nav-btn {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all 0.15s ease;
}

.cal-nav-btn:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.calendar-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 12px;
}

.cal-day {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  color: var(--text-primary);
  transition: all 0.15s ease;
}

.cal-day.empty {
  cursor: default;
}

.cal-day:hover:not(.disabled):not(.empty) {
  background: var(--accent-tag);
  color: var(--accent-soft);
  font-weight: 700;
}

.cal-day.today {
  border: 1.5px solid var(--accent-soft);
  color: var(--accent-soft);
  font-weight: 700;
}

.cal-day.selected {
  background: var(--accent) !important;
  color: var(--white) !important;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(26, 26, 46, 0.25);
}

.cal-day.disabled {
  color: var(--text-faint);
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

.calendar-footer-chips {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.cal-quick-btn {
  flex: 1;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 0;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: center;
}

.cal-quick-btn:hover {
  background: var(--accent);
  color: #ffffff !important;
  border-color: var(--accent);
}

.contact-info-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-item {
  background: var(--gray-50);
  border: 1px solid var(--border);
  padding: 22px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}

.info-item:hover {
  border-color: var(--accent-tag-border);
  background: var(--accent-tag);
}

.info-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--accent-tag);
  color: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  border: 1px solid var(--accent-tag-border);
}

.info-item:hover .info-icon {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.info-icon .huge-icon {
  width: 20px;
  height: 20px;
}

.info-icon .huge-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-item h4 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.info-item p,
.info-item a {
  font-size: 0.87rem;
  color: var(--text-secondary);
}

.info-item a:hover {
  color: var(--accent-soft);
}

/* ============================
   FOOTER
   ============================ */

/* Pre-footer CTA strip */
.footer-cta {
  background: var(--accent);
  color: var(--white);
  padding: 48px 0;
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-cta-text h3 {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.footer-cta-text p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.footer-cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Main footer body */
.site-footer {
  background: #111827;
  color: var(--white);
  padding: 72px 0 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 52px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Brand column */
.footer-brand-col .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-logo-mark {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
}

.footer-logo-name {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--white);
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

/* Compliance badges */
.footer-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.3px;
  width: fit-content;
}

.footer-badge i {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Link columns */
.footer-col-title {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-nav a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  padding: 6px 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid transparent;
}

.footer-nav a i {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.25);
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-nav a:hover i {
  color: rgba(255, 255, 255, 0.6);
}

/* Contact column */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-contact-item:hover .footer-contact-icon {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.footer-contact-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 2px;
}

.footer-contact-value {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.footer-contact-value a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-contact-value a:hover {
  color: var(--white);
}

/* Social links */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}

/* Footer SVG Icon Support */
.footer-logo-mark svg,
.footer-contact-icon svg,
.footer-social-btn svg,
.footer-badge svg,
.footer-nav a svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: inline-block;
  vertical-align: middle;
}

.footer-logo-mark svg {
  width: 20px;
  height: 20px;
}

.footer-contact-icon svg {
  width: 16px;
  height: 16px;
}

.footer-social-btn svg {
  width: 16px;
  height: 16px;
}

.footer-badge svg {
  width: 15px;
  height: 15px;
}

.footer-nav a svg {
  width: 14px;
  height: 14px;
  margin-right: 2px;
}

/* Bottom bar */
.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-bottom-copy strong {
  color: rgba(255, 255, 255, 0.7);
}

.agency-credit-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.74rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.25 ease;
  backdrop-filter: blur(4px);
}

.agency-credit-badge:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.agency-credit-badge svg {
  color: #60a5fa;
  flex-shrink: 0;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: inline-block;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1100px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .location-grid,
  .contact-grid,
  .rera-card {
    grid-template-columns: 1fr;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .section-padding {
    padding: 72px 0;
  }

  /* Hamburger */
  .hamburger {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-link {
    font-size: 0.95rem;
    padding: 10px 14px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .trust-badges {
    flex-direction: column;
  }

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

  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .usp-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .footer-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }

  .rera-card {
    padding: 36px 28px;
  }

  .contact-form-box {
    padding: 28px 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }

  .hero-title {
    font-size: 1.9rem;
  }

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

  .usp-grid {
    grid-template-columns: 1fr;
  }

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

  .pricing-cards {
    grid-template-columns: 1fr;
  }
}

/* ============================
   BREADCRUMBS & TOPICAL PAGES
   ============================ */
.breadcrumb-wrapper {
  background: var(--gray-50);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  font-size: 0.85rem;
  margin-top: 72px;
  /* Offset fixed header */
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--text-secondary);
}

.breadcrumb a {
  color: var(--accent-soft);
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb-separator {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.breadcrumb-current {
  color: var(--text-primary);
  font-weight: 600;
}

.topical-hero {
  background: var(--white);
  padding: 50px 0 36px;
  border-bottom: 1px solid var(--border);
}

.topical-hero .hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.topical-content {
  padding: 60px 0;
  background: var(--white);
}

.content-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 40px;
  align-items: start;
}

.main-article {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--text-primary);
}

.main-article h2 {
  font-size: 1.65rem;
  font-weight: 800;
  margin: 36px 0 16px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.main-article h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 28px 0 12px;
  color: var(--text-primary);
}

.main-article p {
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.main-article ul,
.main-article ol {
  margin: 0 0 24px 24px;
  color: var(--text-secondary);
}

.main-article li {
  margin-bottom: 10px;
}

.info-callout {
  background: var(--accent-tag);
  border-left: 4px solid var(--accent);
  padding: 24px 28px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: 28px 0;
}

.info-callout h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--accent-soft);
}

.info-callout p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.sidebar-card {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin-bottom: 24px;
}

.sidebar-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-primary);
}

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

.sidebar-links li {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.sidebar-links li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.sidebar-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.sidebar-links a:hover {
  color: var(--accent-soft);
}

@media (max-width: 992px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================
   INVESTMENT GUIDE RICH UI
   ============================ */
.guide-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 32px 0 40px;
}

.guide-metric-card {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  text-align: center;
  transition: var(--transition);
}

.guide-metric-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.guide-metric-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-soft);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.guide-metric-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
}

.comparison-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  position: relative;
  transition: var(--transition);
}

.comparison-card.highlight {
  border: 2px solid var(--accent);
  background: var(--accent-tag);
}

.comparison-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.comparison-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0;
}

.comparison-badge {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--accent);
  color: var(--white);
}

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

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.5;
}

.comparison-list li i {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.comparison-list li.pro i {
  color: var(--accent-soft);
}

.comparison-list li.con i {
  color: var(--text-muted);
}

.guide-cta-card {
  background: linear-gradient(135deg, var(--accent) 0%, #0d3830 100%);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.guide-cta-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.guide-cta-card h3 {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 12px;
}

.guide-cta-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.02rem;
  margin-bottom: 28px;
  max-width: 600px;
}

.guide-cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.guide-author-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
}

.guide-author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-tag);
  color: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  border: 1px solid var(--accent-tag-border);
  flex-shrink: 0;
}

.guide-author-name {
  font-weight: 800;
  font-size: 0.98rem;
  color: var(--text-primary);
}

.guide-author-role {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE DESIGN & MOBILE OPTIMIZATIONS
   ========================================================================== */

/* Large Tablets & Small Laptops (max-width: 1024px) */
@media (max-width: 1024px) {
  :root {
    --container-width: 100%;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .content-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .estimator-calc-grid {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Tablets (max-width: 768px) */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.1rem;
    line-height: 1.25;
  }

  .hero-subtitle {
    font-size: 1.02rem;
  }

  .guide-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .guide-cta-card {
    padding: 28px 20px;
  }

  .brokerage-simple-card {
    padding: 24px 18px !important;
  }

  .pricing-table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .pricing-table {
    min-width: 480px;
  }

  .quick-size-btn {
    flex: 1 1 calc(50% - 10px);
    text-align: center;
  }
}

/* Small Smartphones & Foldables (max-width: 480px) */
@media (max-width: 480px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-actions,
  .footer-cta-actions,
  .about-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn,
  .footer-cta-actions .btn,
  .about-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .guide-metrics-grid {
    grid-template-columns: 1fr;
  }

  .quick-size-btn {
    flex: 1 1 100%;
  }

  .res-value {
    font-size: 2.1rem !important;
  }

  .floating-actions {
    bottom: 16px;
    right: 16px;
    gap: 10px;
  }

  .float-btn {
    width: 46px;
    height: 46px;
  }
}