/* ============================================================
   BANGALORE REALTY - Main Stylesheet
   Premium Real Estate Advisory Website
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --navy: #0d1b2a;
  --navy-mid: #162236;
  --navy-light: #1e3250;
  --gold: #c9a84c;
  --gold-light: #e2c47a;
  --white: #ffffff;
  --off-white: #f8f6f1;
  --grey-light: #f0eff0;
  --grey-mid: #d0cece;
  --grey-text: #6b7280;
  --green: #2e7d52;
  --green-light: #e8f5ee;
  --red-light: #fee2e2;
  --shadow-sm: 0 2px 8px rgba(13,27,42,0.08);
  --shadow-md: 0 8px 32px rgba(13,27,42,0.12);
  --shadow-lg: 0 16px 56px rgba(13,27,42,0.18);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.25; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { color: #374151; }

/* --- Container --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* --- Section Labels --- */
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-header p { color: var(--grey-text); margin-top: 12px; font-size: 1.05rem; max-width: 640px; }
.section-header.centered p { margin-left: auto; margin-right: auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline {
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: 12px 26px;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
  padding: 12px 26px;
}
.btn-outline-white:hover { background: var(--white); color: var(--navy); }
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid rgba(13,27,42,0.08);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.logo-name span { color: var(--gold); }
.logo-tagline { font-size: 0.68rem; color: var(--grey-text); letter-spacing: 0.04em; text-transform: uppercase; margin-top: 1px; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.main-nav a:hover, .main-nav a.active { background: var(--grey-light); color: var(--navy); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.whatsapp-btn-header {
  display: flex; align-items: center; gap: 6px;
  background: #25D366; color: var(--white);
  padding: 9px 16px; border-radius: var(--radius-sm);
  font-size: 0.85rem; font-weight: 600;
  transition: var(--transition);
}
.whatsapp-btn-header:hover { background: #1ebe5d; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  padding: 80px 24px 40px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 16px 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid var(--grey-light);
}
.mobile-menu-close {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 1.8rem;
  color: var(--navy);
  background: none; border: none;
  cursor: pointer; line-height: 1;
}
.mobile-menu .btn { margin-top: 24px; }

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 14px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  text-decoration: none;
}
.floating-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }
.floating-whatsapp svg { width: 22px; height: 22px; flex-shrink: 0; }
.floating-whatsapp .wa-text { white-space: nowrap; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1a3a5c 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  padding: 6px 14px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--gold-light); }
.hero-sub { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 36px; max-width: 560px; line-height: 1.7; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-badge {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  padding: 8px 14px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 500;
}
.trust-badge svg { color: var(--gold-light); }

/* ============================================================
   LEAD FORM SECTION
   ============================================================ */
.lead-form-section {
  background: var(--off-white);
  padding: 72px 0;
}
.lead-form-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 56px 48px;
  max-width: 880px;
  margin: 0 auto;
}
.lead-form-header { text-align: center; margin-bottom: 40px; }
.lead-form-header h2 { margin-bottom: 10px; }
.lead-form-header p { color: var(--grey-text); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid .full-width { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--white);
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230d1b2a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit-wrap { margin-top: 8px; }
.form-note { font-size: 0.8rem; color: var(--grey-text); text-align: center; margin-top: 12px; }
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  background: var(--green-light);
  border-radius: var(--radius-md);
  color: var(--green);
  font-weight: 600;
}

/* ============================================================
   ZONE CARDS
   ============================================================ */
.zones-section { background: var(--white); }
.zones-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.zone-card {
  background: var(--white);
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.zone-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.zone-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.zone-card:hover::before { transform: scaleX(1); }
.zone-icon {
  width: 48px; height: 48px;
  background: rgba(201,168,76,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.zone-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.zone-card p { color: var(--grey-text); font-size: 0.9rem; line-height: 1.65; margin-bottom: 16px; }
.zone-best-for {
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-bottom: 16px;
}
.zone-best-for-label { font-size: 0.72rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.zone-best-for p { font-size: 0.85rem; color: var(--navy); margin: 0; }
.zone-areas { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.area-tag {
  background: var(--grey-light);
  color: var(--navy-mid);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* ============================================================
   PROJECT CARDS
   ============================================================ */
.projects-section { background: var(--off-white); }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.project-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.project-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.project-card-image {
  height: 200px;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  position: relative;
  display: flex; align-items: flex-end;
  padding: 16px;
  /* REPLACE: Add background-image: url('assets/images/project-X.jpg') center/cover */
}
.project-zone-badge {
  background: var(--gold);
  color: var(--navy);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}
.rera-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--green);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex; align-items: center; gap: 4px;
}
.project-card-body { padding: 24px; }
.project-card-body h4 { margin-bottom: 8px; font-size: 1rem; }
.project-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 16px 0; }
.project-meta-item { }
.project-meta-item .label { font-size: 0.7rem; font-weight: 700; color: var(--grey-text); text-transform: uppercase; letter-spacing: 0.06em; }
.project-meta-item .value { font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-top: 2px; }
.project-price { font-size: 1.1rem; font-weight: 700; color: var(--gold); margin-bottom: 16px; }

/* ============================================================
   WHY CHOOSE SECTION
   ============================================================ */
.why-section { background: var(--navy); color: var(--white); }
.why-section .section-label { color: var(--gold); }
.why-section h2 { color: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
}
.why-card:hover { background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.3); }
.why-icon { font-size: 1.8rem; margin-bottom: 16px; }
.why-card h4 { color: var(--white); margin-bottom: 8px; }
.why-card p { color: rgba(255,255,255,0.6); font-size: 0.875rem; line-height: 1.6; }

/* ============================================================
   BUYER JOURNEY
   ============================================================ */
.journey-section { background: var(--off-white); }
.journey-steps { display: flex; flex-direction: column; gap: 0; max-width: 720px; margin: 0 auto; }
.journey-step {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-left: 2px solid var(--grey-mid);
  margin-left: 20px;
  padding-left: 32px;
  position: relative;
}
.journey-step:last-child { border-left-color: transparent; }
.step-number {
  position: absolute;
  left: -20px;
  top: 24px;
  width: 40px; height: 40px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.step-content h4 { margin-bottom: 4px; }
.step-content p { color: var(--grey-text); font-size: 0.9rem; }

/* ============================================================
   RERA SECTION
   ============================================================ */
.rera-section { background: var(--white); }
.rera-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.rera-item {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
}
.rera-item-icon { color: var(--green); font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.rera-item-text h5 { font-size: 0.9rem; color: var(--navy); margin-bottom: 2px; }
.rera-item-text p { font-size: 0.8rem; color: var(--grey-text); }

/* ============================================================
   BLOG / GUIDE CARDS
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.blog-card {
  background: var(--white);
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
  cursor: pointer;
}
.blog-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.blog-category { font-size: 0.72rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.blog-card h4 { font-size: 0.95rem; color: var(--navy); line-height: 1.45; }
.blog-card-meta { display: flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 0.78rem; color: var(--grey-text); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 36px; font-size: 1.05rem; }
.cta-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { background: var(--off-white); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--gold); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  gap: 16px;
}
.faq-question svg { flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--grey-text);
  font-size: 0.9rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.75); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand { }
.footer-logo-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-logo-name span { color: var(--gold); }
.footer-tagline { font-size: 0.78rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; margin-bottom: 24px; }
.footer-contact a {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
  transition: var(--transition);
}
.footer-contact a:hover { color: var(--gold-light); }
.footer-section h5 { color: var(--white); font-size: 0.9rem; font-weight: 700; margin-bottom: 20px; font-family: var(--font-body); letter-spacing: 0.04em; text-transform: uppercase; }
.footer-links a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  padding: 4px 0;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 72px 0;
  color: var(--white);
}
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 640px; font-size: 1.05rem; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb svg { width: 12px; height: 12px; }

/* ============================================================
   FILTER BAR (Projects page)
   ============================================================ */
.filter-section { background: var(--white); padding: 40px 0; border-bottom: 1px solid var(--grey-light); position: sticky; top: 72px; z-index: 100; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 12px; align-items: flex-end; }
.filter-group { display: flex; flex-direction: column; gap: 4px; }
.filter-group label { font-size: 0.72rem; font-weight: 700; color: var(--grey-text); text-transform: uppercase; letter-spacing: 0.06em; }
.filter-group select {
  padding: 10px 32px 10px 14px;
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--navy);
  background: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230d1b2a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: var(--transition);
}
.filter-group select:focus { outline: none; border-color: var(--gold); }
.filter-results-count { font-size: 0.875rem; color: var(--grey-text); margin-left: auto; align-self: flex-end; padding-bottom: 2px; }

/* ============================================================
   ZONE GUIDE PAGE
   ============================================================ */
.zone-section { padding: 64px 0; border-bottom: 1px solid var(--grey-light); }
.zone-section:last-of-type { border-bottom: none; }
.zone-section-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 32px; flex-wrap: wrap; gap: 16px; }
.zone-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 28px; }
.zone-info-card {
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 20px;
}
.zone-info-card .label { font-size: 0.72rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.zone-info-card p { font-size: 0.875rem; color: var(--navy); line-height: 1.6; }

/* Comparison Table */
.comparison-table { width: 100%; border-collapse: collapse; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.comparison-table th {
  background: var(--navy);
  color: var(--white);
  padding: 16px 20px;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.comparison-table td {
  padding: 16px 20px;
  font-size: 0.875rem;
  color: var(--navy);
  border-bottom: 1px solid var(--grey-light);
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: var(--off-white); }
.comparison-table td:first-child { font-weight: 600; }

/* ============================================================
   RERA GUIDE PAGE
   ============================================================ */
.rera-content { max-width: 860px; margin: 0 auto; }
.rera-block {
  background: var(--white);
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius-md);
  padding: 32px;
  margin-bottom: 24px;
}
.rera-block-header { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.rera-block-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.rera-block h3 { font-size: 1.1rem; }
.rera-list { list-style: none; }
.rera-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--grey-light);
  font-size: 0.9rem;
  color: var(--grey-text);
  display: flex; gap: 10px;
  line-height: 1.55;
}
.rera-list li:last-child { border-bottom: none; }
.rera-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.warning-box {
  background: #fff7ed;
  border: 1.5px solid #fdba74;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex; gap: 12px;
  align-items: flex-start;
  margin-top: 20px;
}
.warning-box .icon { font-size: 1.1rem; flex-shrink: 0; }
.warning-box p { font-size: 0.875rem; color: #92400e; line-height: 1.6; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
}
.value-icon { font-size: 2rem; margin-bottom: 16px; }
.value-card h4 { margin-bottom: 8px; }
.value-card p { font-size: 0.875rem; color: var(--grey-text); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info { }
.contact-method {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}
.contact-method-icon {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  font-size: 1.1rem;
}
.contact-method h5 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.contact-method a { font-size: 0.9rem; color: var(--gold); font-weight: 600; }
.contact-method p { font-size: 0.875rem; color: var(--grey-text); margin-top: 2px; }
.map-placeholder {
  background: var(--grey-light);
  border-radius: var(--radius-md);
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  color: var(--grey-text);
  font-size: 0.875rem;
  margin-top: 16px;
  /* REPLACE: Add Google Maps embed iframe here */
}

/* ============================================================
   POLICY PAGES (Privacy, Disclaimer)
   ============================================================ */
.policy-content { max-width: 820px; margin: 0 auto; }
.policy-content h2 { font-size: 1.4rem; margin: 40px 0 16px; }
.policy-content h3 { font-size: 1.1rem; margin: 24px 0 10px; }
.policy-content p { color: var(--grey-text); font-size: 0.95rem; line-height: 1.75; margin-bottom: 14px; }
.policy-content ul { padding-left: 24px; margin-bottom: 14px; }
.policy-content ul li { color: var(--grey-text); font-size: 0.95rem; line-height: 1.75; margin-bottom: 6px; list-style: disc; }

/* ============================================================
   DISCLAIMER BOX
   ============================================================ */
.disclaimer-banner {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 16px 0;
  font-size: 0.78rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.disclaimer-banner a { color: var(--gold-light); }

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.area-chip {
  background: var(--off-white);
  border: 1.5px solid var(--grey-light);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy);
  transition: var(--transition);
}
.area-chip:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.05); cursor: pointer; }

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1024px) {
  .zones-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .zone-info-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .main-nav { display: none; }
  .whatsapp-btn-header { display: none; }
  .hamburger { display: flex; }
  .form-grid { grid-template-columns: 1fr; }
  .lead-form-inner { padding: 32px 24px; }
  .zones-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .rera-checklist { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .zone-info-grid { grid-template-columns: 1fr; }
  .comparison-table { font-size: 0.8rem; }
  .comparison-table th, .comparison-table td { padding: 12px 14px; }
  .floating-whatsapp .wa-text { display: none; }
  .floating-whatsapp { padding: 14px; }
  .hero-ctas { flex-direction: column; }
  .filter-bar { flex-direction: column; }
  .filter-group select { width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .trust-badges { gap: 8px; }
  .trust-badge { font-size: 0.75rem; padding: 6px 10px; }
  .zones-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.bg-navy { background: var(--navy); }
.bg-offwhite { background: var(--off-white); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.hidden { display: none; }

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===== FORM OVERFLOW FIX ===== */

/* Make width calculations safe */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Main consultation section/card */
.consultation-section,
.consultation-card,
.consultation-form,
.form-grid,
.form-row,
.form-group {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

/* Two-column form grid */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

/* Each form item must stay inside its column */
.form-group {
  min-width: 0;
}

/* Inputs/selects/textareas must not overflow */
.form-group input,
.form-group select,
.form-group textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* Prevent card overflow */
.consultation-card {
  overflow: hidden;
}

/* Mobile fix */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}