/* ==========================================================================
   NALAM HOMES — LUXURY REAL ESTATE & CONSTRUCTION LANDING PAGE
   Designed for Paid Ads Conversion & Local SEO (Sevvapet, Thiruvallur, TN)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. ROOT VARIABLES & DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette */
  --primary-gold: #C58940;
  --primary-gold-hover: #B27732;
  --primary-gold-light: #FBF4EA;
  --primary-gold-glow: rgba(197, 137, 64, 0.25);
  --accent-gold-dark: #8F5E20;

  --navy-dark: #0F172A;
  --navy-surface: #1E293B;
  --navy-light: #334155;
  --navy-border: #475569;

  --bg-cream: #FDFBF7;
  --bg-cream-card: #FFFFFF;
  --bg-cream-subtle: #F6F2EA;

  --text-main: #1E293B;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --text-white: #FFFFFF;

  --whatsapp-green: #25D366;
  --whatsapp-hover: #20BA5A;
  --whatsapp-glow: rgba(37, 211, 102, 0.25);

  --border-subtle: #EBE5DA;
  --border-light: #E2E8F0;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.1);
  --shadow-gold: 0 12px 30px rgba(197, 137, 64, 0.25);
  --shadow-floating: 0 25px 50px -12px rgba(15, 23, 42, 0.15);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Spacing & Radii */
  --container-max: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-cream);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY & BADGES
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy-dark);
  font-weight: 700;
  line-height: 1.25;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px auto;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-gold-light);
  color: var(--primary-gold);
  border: 1px solid rgba(197, 137, 64, 0.25);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary-gold);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(197, 137, 64, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(197, 137, 64, 0); }
  100% { box-shadow: 0 0 0 0 rgba(197, 137, 64, 0); }
}

/* --------------------------------------------------------------------------
   4. BUTTONS & CTA UTILITIES
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-gold) 0%, #D49B55 100%);
  color: var(--text-white);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-gold-hover) 0%, #C58940 100%);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(197, 137, 64, 0.35);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #1EBE5D 100%);
  color: var(--text-white);
  box-shadow: var(--shadow-sm);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #1EBE5D 0%, #189E4D 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.35);
}

.btn-outline {
  border: 1.5px solid var(--border-light);
  color: var(--navy-dark);
  background: var(--bg-cream-card);
}

.btn-outline:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
  background: var(--primary-gold-light);
  transform: translateY(-2px);
}

.btn-outline-white {
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: var(--text-white);
  color: var(--navy-dark);
  border-color: var(--text-white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   5. TOP ANNOUNCEMENT BAR & HEADER NAVIGATION
   -------------------------------------------------------------------------- */
.top-announcement-bar {
  background-color: var(--navy-dark);
  color: var(--text-white);
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #CBD5E1;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar-item strong {
  color: #F8FAFC;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar-link {
  color: #F8FAFC;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition-fast);
}

.top-bar-link:hover {
  color: var(--primary-gold);
}

/* Main Sticky Header */
.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.main-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-badge {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, #1E293B 100%);
  border: 1.5px solid var(--primary-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  font-weight: 800;
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.brand-info {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy-dark);
  line-height: 1;
}

.brand-tagline {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-gold);
  font-weight: 700;
  margin-top: 3px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
  transition: var(--transition-fast);
  position: relative;
}

.nav-link:hover {
  color: var(--primary-gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary-gold);
  transition: var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  color: var(--navy-dark);
  padding: 6px;
}

/* --------------------------------------------------------------------------
   6. SECTION A — HERO SECTION & LEAD CAPTURE
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  padding: 50px 0 70px 0;
  background: radial-gradient(circle at 80% 20%, rgba(197, 137, 64, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(15, 23, 42, 0.04) 0%, transparent 40%),
              var(--bg-cream);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-gold-light);
  color: var(--accent-gold-dark);
  border: 1px solid rgba(197, 137, 64, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  width: fit-content;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(2.1rem, 3.6vw, 3.1rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: var(--navy-dark);
}

.hero-title span.highlight {
  color: var(--primary-gold);
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.12rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 26px;
  max-width: 580px;
}

.hero-key-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-point {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-dark);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border-subtle);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
}

.hero-point i {
  color: var(--primary-gold);
}

/* Hero Lead Form Card */
.hero-form-card {
  background: var(--bg-cream-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero-form-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.hero-form-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-tabs {
  display: flex;
  background: var(--bg-cream-subtle);
  padding: 4px;
  border-radius: var(--radius-pill);
  gap: 4px;
  margin-bottom: 18px;
}

.form-tab-btn {
  flex: 1;
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  color: var(--text-muted);
  text-align: center;
  transition: var(--transition-fast);
}

.form-tab-btn.active {
  background: var(--navy-dark);
  color: var(--text-white);
  box-shadow: var(--shadow-sm);
}

.lead-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 5px;
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-light);
  background: #FAFAFA;
  font-size: 0.9rem;
  color: var(--text-main);
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary-gold);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(197, 137, 64, 0.15);
}

.form-submit-btn {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  margin-top: 4px;
}

.form-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.form-guarantee span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Hero Visual Showcase */
.hero-visual-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-main-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-floating);
  border: 6px solid #FFFFFF;
  background: #FFFFFF;
  transition: transform var(--transition-smooth);
}

.hero-main-card:hover {
  transform: translateY(-4px);
}

.hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 25%;
  border-radius: calc(var(--radius-xl) - 6px);
  transition: transform 0.6s ease;
}

.hero-main-card:hover .hero-img {
  transform: scale(1.03);
}

/* Floating Glass Badges on Hero */
.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  animation: float-gentle 4s ease-in-out infinite alternate;
}

.floating-badge.badge-top-left {
  top: 24px;
  left: -20px;
}

.floating-badge.badge-bottom-right {
  bottom: 24px;
  right: -20px;
  animation-delay: 2s;
}

.badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--primary-gold-light);
  color: var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.badge-text-primary {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--navy-dark);
}

.badge-text-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
}

@keyframes float-gentle {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}

/* --------------------------------------------------------------------------
   7. SECTION B — TRUST METRIC CREDIBILITY BAR
   -------------------------------------------------------------------------- */
.trust-bar-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #162032 100%);
  color: var(--text-white);
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-metric-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 10px;
  position: relative;
}

.trust-metric-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.metric-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(197, 137, 64, 0.15);
  border: 1px solid rgba(197, 137, 64, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary-gold);
  flex-shrink: 0;
}

.metric-info {
  display: flex;
  flex-direction: column;
}

.metric-number {
  font-size: 1.6rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: #FFFFFF;
  line-height: 1.1;
}

.metric-number span.gold {
  color: var(--primary-gold);
}

.metric-label {
  font-size: 0.82rem;
  color: #94A3B8;
  margin-top: 3px;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   8. SECTION C — ABOUT & WHY CHOOSE NALAM HOMES
   -------------------------------------------------------------------------- */
.why-us-section {
  padding: 85px 0;
  background: var(--bg-cream);
  position: relative;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.why-card {
  background: var(--bg-cream-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(197, 137, 64, 0.4);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-gold), #D49B55);
  opacity: 0;
  transition: var(--transition-fast);
}

.why-card:hover::before {
  opacity: 1;
}

.why-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--primary-gold-light);
  border: 1px solid rgba(197, 137, 64, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 22px;
  color: var(--primary-gold);
  transition: transform var(--transition-bounce);
}

.why-card:hover .why-icon-wrap {
  transform: scale(1.1) rotate(5deg);
}

.why-card-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--navy-dark);
}

.why-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.why-card-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid var(--border-light);
}

.why-card-points li {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.why-card-points li i {
  color: var(--primary-gold);
  font-size: 0.9rem;
}

/* Local Trust Banner inside Section C */
.local-trust-strip {
  background: #FFFFFF;
  border: 1.5px dashed rgba(197, 137, 64, 0.4);
  border-radius: var(--radius-md);
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.local-trust-text {
  display: flex;
  align-items: center;
  gap: 16px;
}

.local-pin-icon {
  font-size: 2rem;
  color: var(--primary-gold);
}

.local-trust-h {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy-dark);
}

.local-trust-p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   9. SECTION D — READY-TO-MOVE PROPERTIES SHOWCASE (PROPERTY GRID)
   -------------------------------------------------------------------------- */
.properties-section {
  padding: 90px 0;
  background: var(--bg-cream-subtle);
  position: relative;
}

.property-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  background: var(--bg-cream-card);
  color: var(--navy-dark);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--navy-dark);
  color: var(--text-white);
  border-color: var(--navy-dark);
  box-shadow: var(--shadow-sm);
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.property-card {
  background: var(--bg-cream-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(197, 137, 64, 0.3);
}

.property-image-box {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: #E2E8F0;
}

.property-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.property-card:hover .property-img {
  transform: scale(1.06);
}

.property-badge-group {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  z-index: 2;
}

.badge-tag {
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.badge-bhk {
  background: var(--navy-dark);
  color: #FFFFFF;
}

.badge-status {
  background: var(--primary-gold);
  color: #FFFFFF;
}

.badge-vastu {
  background: rgba(16, 185, 129, 0.9);
  color: #FFFFFF;
  backdrop-filter: blur(4px);
}

.badge-facing {
  background: rgba(2, 132, 199, 0.9);
  color: #FFFFFF;
  backdrop-filter: blur(4px);
}

.badge-units {
  background: rgba(13, 148, 136, 0.9);
  color: #FFFFFF;
  backdrop-filter: blur(4px);
}

.property-price-chip {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.property-price-chip span {
  color: var(--primary-gold);
}

.property-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.property-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 6px;
}

.property-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 10px;
}

.property-highlight {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.5;
}

.property-specs-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 12px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 20px;
}

.spec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 0.78rem;
}

.spec-item i {
  color: var(--primary-gold);
  font-size: 1rem;
  margin-bottom: 4px;
}

.spec-val {
  font-weight: 700;
  color: var(--navy-dark);
}

.spec-lbl {
  color: var(--text-light);
  font-size: 0.72rem;
}

.property-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
}

/* --------------------------------------------------------------------------
   10. SECTION E — READY-TO-MOVE VS CUSTOM BUILD COMPARISON
   -------------------------------------------------------------------------- */
.comparison-section {
  padding: 90px 0;
  background: var(--bg-cream);
  position: relative;
}

.comparison-wrapper {
  background: var(--bg-cream-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 35px;
}

.compare-card {
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 2px solid transparent;
  transition: all var(--transition-smooth);
  position: relative;
}

.compare-card.card-ready {
  background: #FAF8F5;
  border-color: var(--border-subtle);
}

.compare-card.card-custom {
  background: #F0F5FA;
  border-color: #D3E2F0;
}

.compare-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.compare-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.compare-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.card-ready .compare-icon {
  background: var(--primary-gold-light);
  color: var(--primary-gold);
}

.card-custom .compare-icon {
  background: #E0EDFB;
  color: #0284C7;
}

.compare-title {
  font-size: 1.35rem;
  color: var(--navy-dark);
}

.compare-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 4px;
}

.card-ready .compare-badge {
  background: var(--primary-gold-light);
  color: var(--accent-gold-dark);
}

.card-custom .compare-badge {
  background: #E0F2FE;
  color: #0369A1;
}

.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.5;
}

.compare-list li i {
  color: #10B981;
  margin-top: 3px;
  font-size: 1rem;
}

.comparison-cta-box {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #1E293B 100%);
  border-radius: var(--radius-md);
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  color: #FFFFFF;
}

.comparison-cta-text h4 {
  color: #FFFFFF;
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.comparison-cta-text p {
  color: #94A3B8;
  font-size: 0.88rem;
}

/* --------------------------------------------------------------------------
   11. INTERACTIVE CONSTRUCTION COST & EMI CALCULATOR
   -------------------------------------------------------------------------- */
.calculator-section {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--bg-cream-subtle) 0%, var(--bg-cream) 100%);
  position: relative;
}

.calculator-card {
  background: var(--bg-cream-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
}

.calc-inputs-pane {
  padding: 40px;
  border-right: 1px solid var(--border-light);
}

.calc-header {
  margin-bottom: 30px;
}

.calc-title {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.calc-subtitle {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.calc-field-group {
  margin-bottom: 28px;
}

.calc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.calc-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-dark);
}

.calc-value-display {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-gold);
}

.range-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #E2E8F0;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary-gold);
  border: 3px solid #FFFFFF;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.package-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.package-option-card {
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 12px 10px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: #FAFAFA;
}

.package-option-card.active {
  border-color: var(--primary-gold);
  background: var(--primary-gold-light);
}

.package-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-dark);
}

.package-rate {
  font-size: 0.78rem;
  color: var(--primary-gold);
  font-weight: 800;
  margin-top: 3px;
}

.calc-results-pane {
  background: linear-gradient(145deg, var(--navy-dark) 0%, #162032 100%);
  color: #FFFFFF;
  padding: 40px 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.result-hero-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  margin-bottom: 24px;
}

.result-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94A3B8;
  margin-bottom: 6px;
}

.result-main-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: #FFFFFF;
  font-family: var(--font-heading);
}

.result-main-price span {
  color: var(--primary-gold);
}

.result-emi-sub {
  font-size: 0.88rem;
  color: #CBD5E1;
  margin-top: 6px;
}

.breakdown-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.breakdown-row span:first-child {
  color: #94A3B8;
}

.breakdown-row span:last-child {
  color: #FFFFFF;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   12. SECTION F — HOW IT WORKS (4-STEP JOURNEY)
   -------------------------------------------------------------------------- */
.process-section {
  padding: 90px 0;
  background: var(--bg-cream);
  position: relative;
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-card {
  background: var(--bg-cream-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(197, 137, 64, 0.4);
}

.step-number-badge {
  position: absolute;
  top: -16px;
  left: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy-dark);
  color: #FFFFFF;
  border: 2px solid var(--primary-gold);
  font-size: 0.9rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.step-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--primary-gold-light);
  color: var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 12px 0 18px 0;
}

.step-title {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--navy-dark);
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   13. SECTION G — HOMEOWNER TESTIMONIALS
   -------------------------------------------------------------------------- */
.testimonials-section {
  padding: 90px 0;
  background: var(--bg-cream-subtle);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--bg-cream-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  color: #F59E0B;
  font-size: 1rem;
  margin-bottom: 16px;
  display: flex;
  gap: 4px;
}

.testimonial-quote {
  font-size: 0.96rem;
  color: var(--text-main);
  line-height: 1.65;
  margin-bottom: 22px;
  font-style: italic;
  position: relative;
}

.testimonial-author-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-dark) 0%, #334155 100%);
  color: var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  border: 2px solid var(--primary-gold);
}

.author-details {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-dark);
}

.author-location {
  font-size: 0.78rem;
  color: var(--primary-gold);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   14. SECTION H — FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-section {
  padding: 90px 0;
  background: var(--bg-cream);
}

.faq-container {
  max-width: 820px;
  margin: 0 auto;
}

.faq-search-box {
  position: relative;
  margin-bottom: 30px;
}

.faq-search-input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border-subtle);
  background: #FFFFFF;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.faq-search-input:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 4px rgba(197, 137, 64, 0.15);
}

.faq-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 1.1rem;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-cream-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: rgba(197, 137, 64, 0.5);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-dark);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--primary-gold);
}

.faq-toggle-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-cream-subtle);
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
  background: var(--primary-gold);
  color: #FFFFFF;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.35s ease;
  padding: 0 24px;
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px 24px;
}

/* --------------------------------------------------------------------------
   15. SECTION I — FINAL CONVERSION CTA BANNER
   -------------------------------------------------------------------------- */
.final-cta-section {
  padding: 90px 0;
  background: var(--bg-cream-subtle);
}

.cta-banner-card {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #162032 50%, #1E293B 100%);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
}

.cta-banner-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(197, 137, 64, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-title {
  color: #FFFFFF;
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  margin-bottom: 14px;
}

.cta-banner-subtitle {
  color: #CBD5E1;
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto 34px auto;
}

.cta-banner-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   16. SECTION J — LOCAL SEO FOOTER & GOOGLE MAPS EMBED
   -------------------------------------------------------------------------- */
.main-footer {
  background: #0B1120;
  color: #94A3B8;
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1.3fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo .brand-title {
  color: #FFFFFF;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #94A3B8;
  margin-bottom: 22px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: #CBD5E1;
}

.footer-contact-item i {
  color: var(--primary-gold);
  margin-top: 4px;
  font-size: 1rem;
}

.footer-heading {
  font-size: 1.15rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background-color: var(--primary-gold);
}

.footer-quick-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-quick-links a {
  font-size: 0.88rem;
  color: #94A3B8;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-quick-links a:hover {
  color: var(--primary-gold);
  transform: translateX(4px);
}

.footer-map-col {
  display: flex;
  flex-direction: column;
}

.map-embed-frame {
  width: 100%;
  height: 220px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.footer-bottom-bar {
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.82rem;
  color: #64748B;
}

/* --------------------------------------------------------------------------
   17. MOBILE FLOATING STICKY CONVERSION BAR
   -------------------------------------------------------------------------- */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(12px);
  padding: 10px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 999;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.25);
}

.mobile-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 8px;
}

.mobile-cta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 6px;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
}

.mobile-cta-btn i {
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.mobile-cta-call {
  background: #1E293B;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-cta-whatsapp {
  background: #25D366;
  color: #FFFFFF;
}

.mobile-cta-visit {
  background: linear-gradient(135deg, var(--primary-gold) 0%, #D49B55 100%);
  color: #FFFFFF;
  font-weight: 800;
}

/* --------------------------------------------------------------------------
   18. MODALS & POPUPS
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-floating);
  transform: scale(0.92);
  transition: transform var(--transition-smooth);
}

.modal-overlay.active .modal-dialog {
  transform: scale(1);
}

.modal-header {
  padding: 24px 28px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-size: 1.3rem;
  color: var(--navy-dark);
}

.modal-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-cream-subtle);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--navy-dark);
  color: #FFFFFF;
}

.modal-body {
  padding: 28px;
}

/* Live Social Proof Toast */
.social-proof-toast {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 990;
  transform: translateY(120px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 360px;
}

.social-proof-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-gold-light);
  color: var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.toast-content {
  font-size: 0.8rem;
  line-height: 1.4;
}

.toast-content strong {
  color: var(--navy-dark);
  display: block;
}

.toast-time {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   19. RESPONSIVE MEDIA QUERIES
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual-wrapper {
    max-width: 540px;
    margin: 0 auto;
  }

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

  .trust-metric-item:nth-child(2)::after {
    display: none;
  }

  .why-us-grid, .properties-grid, .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .calculator-card {
    grid-template-columns: 1fr;
  }

  .calc-inputs-pane {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
  }

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

  .footer-map-col {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 65px; /* Space for mobile sticky CTA bar */
  }

  .top-announcement-bar {
    display: none;
  }

  .nav-menu, .header-actions .btn-outline {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-sticky-cta {
    display: block;
  }

  .lead-form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .why-us-grid, .properties-grid, .testimonials-grid, .process-steps-grid {
    grid-template-columns: 1fr;
  }

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

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

  .trust-metric-item::after {
    display: none !important;
  }

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

  .footer-map-col {
    grid-column: span 1;
  }

  .floating-badge.badge-top-left, .floating-badge.badge-bottom-right {
    position: static;
    margin: 10px 0;
    width: 100%;
    animation: none;
  }

  .hero-img {
    height: 340px;
  }
}
