﻿/* ============================================================
   SellYourShoppingCenter.com — Master Stylesheet
   Brand: #76D600 green | Dark: #0a0a0a | Font: DM Sans
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --green: #76D600;
  --green-dark: #5fb800;
  --green-glow: rgba(118, 214, 0, 0.15);
  --black: #1A1A1A;
  --dark: #0a0a0a;
  --dark-section: #0a0a0a;
  --white: #FFFFFF;
  --grey: #F8F8F8;
  --grey-mid: #E5E5E5;
  --grey-border: #DEDEDE;
  --text-muted: #777777;
  --nav-h: 80px;
  --max-width: 1200px;
  --pad-h: 32px;
  --gap: 32px;
  --radius: 8px;
  --transition: 0.35s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}
h1 { font-size: clamp(42px, 6vw, 72px); }
h2 { font-size: clamp(28px, 3.5vw, 44px); margin-bottom: 16px; }
h3 { font-size: 22px; margin-bottom: 14px; }
h4 { font-size: 18px; }
p { color: var(--text-muted); line-height: 1.7; }

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #76D600;
  display: block;
  margin-bottom: 16px;
}
.eyebrow-white { color: rgba(255,255,255,0.7); }
.eyebrow-grey { color: var(--text-muted); }

.green { color: #76D600; }
.text-white { color: var(--white); }
.text-light { color: rgba(255,255,255,0.7); }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }

/* Rule divider */
.rule {
  width: 48px;
  height: 3px;
  background: #76D600;
  margin: 16px 0 24px;
  border-radius: 2px;
}
.rule-center { margin-left: auto; margin-right: auto; }

/* ---------- Layout Helpers ---------- */
.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--pad-h);
}
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--pad-h); }

.section-pad { padding: 100px 0; }
.bg-white { background: var(--white); }
.bg-grey { background: var(--grey); }
.bg-dark { background: var(--dark-section); color: var(--white); }

.mt-lg { margin-top: 48px; }
.mt-md { margin-top: 32px; }
.mt-sm { margin-top: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-green {
  background: #76D600;
  color: var(--white);
  border-color: #76D600;
}
.btn-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(106,175,48,0.3);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline-dark:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-green {
  background: transparent;
  color: #76D600;
  border-color: #76D600;
}
.btn-outline-green:hover {
  background: #76D600;
  color: var(--white);
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 40px; font-size: 15px; }

/* ---------- Navigation ---------- */
nav, .nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: all var(--transition);
  padding: 0 48px;
  background: transparent;
}
.nav.solid,
nav.solid {
  background: var(--dark-section);
}
.nav.scrolled,
nav.scrolled {
  background: rgba(10, 10, 10, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}
.nav-logo img {
  height: 44px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links li a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--transition);
  position: relative;
}
.nav-links li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #76D600;
  transition: width var(--transition);
}
.nav-links li a:hover,
.nav-links li a.active { color: #76D600; }
.nav-links li a:hover::after,
.nav-links li a.active::after { width: 100%; }

.nav-cta { margin-left: 16px; }

/* Hamburger / Burger */
.nav-burger,
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 1001;
}
.nav-burger span,
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  display: block;
  transition: all var(--transition);
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Overlay */
.nav-mobile-overlay,
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.nav-mobile-overlay.open,
.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.nav-mobile-overlay a,
.mobile-menu a {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--transition);
}
.nav-mobile-overlay a:hover,
.mobile-menu a:hover { color: #76D600; }

.nav-mobile-close,
.mobile-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 36px;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  inset: -20%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 5, 0.70);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 var(--pad-h);
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 8px;
}
.hero-content h1 .green,
.hero-content h1 span { color: #76D600; display: block; }
.hero-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 20px auto 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2s infinite;
}
.hero-scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,0.5);
  border-bottom: 2px solid rgba(255,255,255,0.5);
  transform: rotate(45deg);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* Inner-page hero (static, shorter) */
.hero-static {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-static-bg {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center;
}
.hero-static-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 5, 0.55);
}
.hero-static-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-h) + 40px) var(--pad-h) 60px;
  max-width: 800px;
}
.hero-static-content h1 {
  color: var(--white);
  font-size: clamp(36px, 5vw, 58px);
  margin-bottom: 12px;
}
.hero-static-content h1 span { color: #76D600; }
.hero-static-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto;
}
.hero-static-content .eyebrow { margin-bottom: 12px; }

/* Page hero (listings/contact style) */
.page-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--dark-section);
  margin-top: var(--nav-h);
}
.page-hero .hero-bg {
  inset: -10%;
}
.page-hero .hero-overlay {
  background: rgba(10, 20, 5, 0.55);
}
.page-hero .hero-content {
  padding-top: 40px;
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(36px, 5vw, 52px);
  margin-bottom: 12px;
}
.page-hero h1 span { color: #76D600; }
.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: #76D600;
  overflow: hidden;
}
.trust-items {
  display: flex;
  gap: 0;
  animation: marquee 30s linear infinite;
}
.trust-item {
  flex-shrink: 0;
  padding: 14px 48px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--dark-section);
  padding: 72px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 52px;
  font-weight: 700;
  color: #76D600;
  line-height: 1;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* About stats (3-col variant) */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.about-stat-item {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.about-stat-item:last-child { border-right: none; }
.about-stat-item .stat-num {
  font-size: 48px;
}

/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  padding: 48px 36px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: #76D600;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  border-color: #76D600;
  box-shadow: 0 12px 40px rgba(106,175,48,0.12);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--green-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
}
.service-card h3 { margin-bottom: 14px; }
.service-card p { font-size: 15px; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #76D600;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 24px;
  transition: gap var(--transition);
}
.service-link:hover { gap: 12px; }

/* ---------- Tab Bar ---------- */
.tab-bar {
  display: flex;
  gap: 4px;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--grey-mid);
  padding-bottom: 0;
  justify-content: center;
}
.tab-btn {
  padding: 10px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--text-muted);
  transition: all var(--transition);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
}
.tab-btn.active,
.tab-btn:hover {
  color: #76D600;
  border-bottom-color: #76D600;
}

/* ---------- Property Cards ---------- */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.prop-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: all var(--transition);
}
.prop-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  transform: translateY(-4px);
}
.prop-card-img {
  position: relative;
  padding-top: 66.67%;
  overflow: hidden;
}
.prop-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.prop-card:hover .prop-card-img img { transform: scale(1.06); }

.prop-card-img-ph {
  position: absolute;
  inset: 0;
  background: var(--grey);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 700;
}

.prop-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #76D600;
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  z-index: 1;
}
.prop-tag.for-sale { background: #76D600; }
.prop-tag.sold { background: #555; }
.prop-tag.off-mkt { background: #8B5CF6; }

.prop-body { padding: 24px; }
.prop-name {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--black);
}
.prop-loc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.prop-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--grey-mid);
}
.prop-stat { text-align: center; }
.prop-stat-val {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
}
.prop-stat-key {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}
.prop-link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #76D600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.prop-link:hover { gap: 10px; }

/* ---------- Process Timeline ---------- */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: #76D600;
  opacity: 0.4;
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.process-step-circle {
  width: 64px;
  height: 64px;
  background: var(--dark-section);
  border: 2px solid #76D600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #76D600;
  margin: 0 auto 24px;
  transition: all var(--transition);
}
.process-step:hover .process-step-circle {
  background: #76D600;
  color: var(--white);
}
.process-step h4 {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

/* Process on light bg */
.bg-grey .process-step-circle { background: var(--white); }
.bg-grey .process-step h4 { color: var(--black); }
.bg-grey .process-step p { color: var(--text-muted); }

/* ---------- Comparison Section ---------- */
.comparison-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.comparison-table thead th {
  padding: 14px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: left;
  border-bottom: 2px solid var(--grey-mid);
}
.comparison-table thead th:last-child { color: #76D600; }
.comparison-table tbody td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--grey-mid);
  color: var(--text-muted);
  vertical-align: middle;
}
.col-theirs { color: var(--text-muted); }
.col-ours { color: #76D600; font-weight: 600; }
.check-green {
  color: #76D600;
  font-weight: 700;
  margin-right: 6px;
}

.comparison-quote {
  background: var(--grey);
  border-radius: var(--radius);
  padding: 36px;
  border-left: 4px solid #76D600;
  margin-bottom: 24px;
}
.comparison-quote p {
  font-size: 17px;
  line-height: 1.7;
  font-style: italic;
  color: var(--black);
  margin-bottom: 0;
}
.comparison-author {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  margin-top: 16px;
}

.comparison-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cms-item {
  text-align: center;
  padding: 20px 16px;
  background: var(--grey);
  border-radius: var(--radius);
}
.cms-val {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #76D600;
  line-height: 1;
  margin-bottom: 4px;
}
.cms-key {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---------- CTA Section (Parallax) ---------- */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: -20%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 5, 0.82);
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 var(--pad-h);
}
.cta-content h2 {
  color: var(--white);
  margin-bottom: 12px;
}
.cta-content p {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  margin-bottom: 32px;
}

/* ---------- Lead Section (Form + Content) ---------- */
.lead-section {
  padding: 100px 0;
  background: var(--grey);
}
.lead-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.lead-content h2 { margin-top: 8px; }
.lead-content p { margin-top: 16px; }

.lead-form-box {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
  border: 1px solid var(--grey-mid);
}
.lead-form-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}
.lead-form-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: span 2; }
.form-field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--black);
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 16px;
  border: 2px solid var(--grey-mid);
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #76D600;
}
.form-field textarea { resize: vertical; min-height: 100px; }

.form-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

/* ---------- Check List ---------- */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--black);
}
.check-list li::before {
  content: '\2713';
  background: #76D600;
  color: var(--white);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---------- About Grid ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

/* ---------- Team Grid ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-top: 48px;
}
.team-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}
.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--green-glow);
  border: 3px solid #76D600;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  color: #76D600;
}
.team-name { margin-bottom: 4px; }
.team-title {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #76D600;
  margin-bottom: 12px;
}
.team-bio {
  font-size: 14px;
  color: var(--text-muted);
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--grey-mid); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  gap: 16px;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--black);
}
.faq-icon {
  color: #76D600;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 20px; }

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-form h3 { margin-bottom: 24px; }

/* sysc-form (contact page style) */
.sysc-form input,
.sysc-form select,
.sysc-form textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  border: 2px solid var(--grey-mid);
  border-radius: 6px;
  background: var(--white);
  color: var(--black);
  margin-bottom: 16px;
  transition: border-color var(--transition);
  outline: none;
}
.sysc-form input:focus,
.sysc-form select:focus,
.sysc-form textarea:focus { border-color: #76D600; }
.sysc-form textarea { resize: vertical; min-height: 140px; }

.contact-info-card {
  background: var(--grey);
  padding: 32px;
  border-radius: var(--radius);
  margin-bottom: 20px;
}
.contact-info-card h4 { margin-bottom: 16px; }
.info-line {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--text-muted);
}
.info-line svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #76D600;
}
.info-line a { color: var(--black); font-weight: 500; }
.info-line a:hover { color: #76D600; }

.response-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-glow);
  border: 1px solid rgba(106,175,48,0.3);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  color: #76D600;
  margin-top: 8px;
}
.response-badge svg { width: 20px; height: 20px; color: #76D600; }

/* Contact info card (dark variant on contact page) */
.contact-info-card .contact-info-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.contact-info-card .contact-info-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}
/* Dark contact info card */
.contact-grid > div:first-child .contact-info-card {
  background: var(--dark-section);
  color: var(--white);
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-item-icon {
  font-size: 24px;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}
.contact-item-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.contact-item-val {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}
.contact-item-val a { color: var(--white); }
.contact-item-val a:hover { color: #76D600; }

/* Map Placeholder */
.map-placeholder {
  background: var(--grey);
  border: 2px dashed var(--grey-mid);
  border-radius: var(--radius);
  padding: 60px 32px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* ---------- Badge ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: var(--green-glow);
  color: #76D600;
  border-radius: 100px;
}

/* ---------- Footer ---------- */
.site-footer,
footer {
  background: var(--dark-section);
  color: var(--white);
  border-top: 2px solid #76D600;
  padding: 72px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-logo { margin-bottom: 20px; }
.footer-logo img { height: 40px; margin-bottom: 16px; }
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.social-btn:hover {
  background: #76D600;
  border-color: #76D600;
  color: var(--white);
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #76D600;
  margin-bottom: 20px;
}
.footer-col h4,
.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #76D600;
  margin-bottom: 20px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col ul a,
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: #76D600; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}
.fci-icon {
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}
.fci-text a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.fci-text a:hover { color: #76D600; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a {
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: #76D600; }

/* ---------- Listings Page Specific ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1rem;
  padding: 1.75rem 2rem;
  background: var(--grey);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  margin-bottom: 2.5rem;
}
.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1 1 180px;
}
.filter-group label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.filter-group select {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  padding: 10px 14px;
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
}
.filter-group select:focus { outline: 2px solid #76D600; outline-offset: -1px; }
.filter-bar .btn { flex-shrink: 0; }

.listings-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: start;
}
.listings-main .listings-grid { grid-template-columns: repeat(2, 1fr); }

.sidebar-cta {
  background: var(--grey);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  text-align: center;
}
.sidebar-cta h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.sidebar-cta p { font-size: 14px; margin-bottom: 1.25rem; }
.sidebar-cta .btn { width: 100%; justify-content: center; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .listings-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .comparison-wrap { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  :root { --nav-h: 66px; }
  nav, .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-burger,
  .hamburger { display: flex; }
  .nav-cta { display: none; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .process-timeline::before { display: none; }
  .process-step { padding: 0 16px 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }

  .lead-inner { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: span 1; }

  .contact-grid { grid-template-columns: 1fr; }
  .listings-layout { grid-template-columns: 1fr; }
  .listings-main .listings-grid { grid-template-columns: repeat(2, 1fr); }

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

  .about-photo img { min-height: 300px; }
}

@media (max-width: 640px) {
  .section-pad { padding: 72px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: 38px; }
  .listings-grid,
  .listings-main .listings-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-static-content h1 { font-size: 32px; }
  .filter-bar { padding: 1rem; }
  .filter-group { flex: 1 1 100%; }
  .prop-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   REVISION-001 FIXES
   ============================================================ */

/* Hero trust bar */
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-top: 2.5rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.hero-trust-sep {
  color: rgba(255,255,255,0.2);
}
@media (max-width: 600px) {
  .hero-trust-sep { display: none; }
  .hero-trust { flex-direction: column; gap: 0.35rem; }
}

/* Footer contact items � SVG icons always small */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}
.footer-contact-item svg {
  width: 16px !important;
  height: 16px !important;
  flex-shrink: 0;
  margin-top: 2px;
  color: #76D600;
  opacity: 0.85;
}
.footer-contact-item a {
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-contact-item a:hover { color: var(--white); }
.footer-contact-item span { color: rgba(255,255,255,0.55); }

/* Listing tag colours */
.listing-tag { background: #76D600; color: #fff; }
.listing-tag.sold { background: #555; }
.listing-tag.off-market { background: var(--black); }
.listing-tag.under-contract { background: #e08c00; }

/* Listing card image inner SVG fix */
.listing-location svg {
  width: 12px !important;
  height: 12px !important;
  flex-shrink: 0;
}

/* Ensure CTA section bg covers properly */
.cta-section .hero-bg {
  z-index: 0;
  background-size: cover !important;
  background-position: center !important;
}

/* How It Works � 4-step timeline */
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 3rem;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 14px);
  right: calc(12.5% + 14px);
  height: 2px;
  background: linear-gradient(90deg, #76D600, var(--green-dark));
  z-index: 0;
}
.step-item {
  text-align: center;
  padding: 0 1.25rem;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 56px;
  height: 56px;
  background: #76D600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: #fff;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px rgba(106,175,48,0.2);
}
.step-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.65rem;
}
.step-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
@media (max-width: 700px) {
  .how-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .how-steps::before { display: none; }
}
@media (max-width: 440px) {
  .how-steps { grid-template-columns: 1fr; }
}

/* Section dark � ensure bg */
.section-dark {
  background: var(--dark);
  padding: var(--pad-v) 0;
}
.section-light {
  background: var(--white);
}
.section-grey {
  background: var(--grey);
}

/* ============================================================
   CLASS BRIDGE � index.html uses different class names
   Map .listing-card, .compare-*, .section, etc. to existing styles
   ============================================================ */

/* Layout */
.section { padding: var(--pad-v) 0; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { margin-top: 0.5rem; }

/* Listing cards � alias for prop-card */
.listing-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.listing-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.listing-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #1a2a10;
}
.listing-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.listing-card:hover .listing-img img { transform: scale(1.04); }
.listing-tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  background: #76D600;
  color: var(--white);
}
.listing-body {
  padding: 1.25rem 1.5rem;
}
.listing-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.25rem;
}
.listing-location {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.listing-stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1rem;
}
.listing-stat-item {
  padding: 0.55rem 0.4rem;
  text-align: center;
  border-right: 1px solid var(--grey-mid);
}
.listing-stat-item:last-child { border-right: none; }
.listing-stat-label {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.listing-stat-value {
  font-size: 12px;
  font-weight: 700;
  color: var(--black);
}
.listing-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #76D600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s;
}
.listing-link:hover { gap: 0.65rem; }
.listings-cta { text-align: center; margin-top: 2.5rem; }

/* Comparison section */
.compare-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.compare-table thead th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--grey-mid);
}
.compare-table tbody td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--grey-mid);
  font-size: 14px;
  color: var(--text-muted);
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table .check { color: #76D600; font-weight: 700; }
.compare-right { display: flex; flex-direction: column; gap: 1.5rem; }
.compare-right h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--black);
  line-height: 1.4;
  font-style: italic;
}
.compare-right blockquote {
  font-size: 12px;
  color: var(--text-muted);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.compare-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--grey-mid);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  overflow: hidden;
}
.compare-stat {
  background: var(--white);
  padding: 1.25rem 1rem;
  text-align: center;
}
.compare-stat .num {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: #76D600;
  line-height: 1;
  display: block;
  margin-bottom: 0.35rem;
}
.compare-stat .lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
@media (max-width: 860px) {
  .compare-section { grid-template-columns: 1fr; gap: 2rem; }
}

/* Nav classes used in index.html */
nav.transparent { background: transparent; }
nav.transparent.scrolled { background: rgba(13,31,5,0.97); box-shadow: 0 2px 20px rgba(0,0,0,0.25); backdrop-filter: blur(12px); }
.nav-links > a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}
.nav-links > a:hover,
.nav-links > a.active { color: #76D600; border-bottom-color: #76D600; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--dark);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-size: 1.5rem;
  font-family: 'DM Serif Display', serif;
  color: var(--white);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: #76D600; }
.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2rem;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none !important; }
  .hamburger { display: flex !important; }
  .mobile-menu { display: flex; }
}

/* Footer grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo { margin-bottom: 1rem; }
.footer-logo img { height: 40px; width: auto; margin-bottom: 1rem; }
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 240px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* Nav used in index (main-nav id) */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}
#main-nav .nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--pad-h);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
#main-nav .nav-logo img { height: 44px; width: auto; }

/* CTA form box */
.cta-form-box {
  background: rgba(5,15,3,0.88);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem;
  text-align: center;
  backdrop-filter: blur(4px);
}
.cta-form-box h2 { color: var(--white); margin-bottom: 0.5rem; }
.cta-form-box .sub { color: rgba(255,255,255,0.6); margin-bottom: 2rem; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  text-align: left;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--white);
  background: rgba(255,255,255,0.07);
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s;
}
.form-group input::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group select:focus { outline: none; border-color: #76D600; box-shadow: 0 0 0 3px rgba(106,175,48,0.2); }
.form-group select option { background: var(--dark); }
.btn-full { width: 100%; justify-content: center; }
.form-note {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.form-note svg { width: 14px; height: 14px; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

/* About teaser */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  gap: clamp(2rem, 4vw, 4rem);
}
.about-teaser-img {
  overflow: hidden;
}
.about-teaser-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-teaser-text {
  padding: var(--pad-v) clamp(2rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.about-teaser-text h2 { margin-bottom: 1.25rem; }
.about-teaser-text p { margin-bottom: 1.5rem; }
@media (max-width: 860px) {
  .about-teaser { grid-template-columns: 1fr; }
  .about-teaser-img { height: 300px; }
}

/* btn-outline alias */
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline-green {
  background: transparent;
  color: #76D600;
  border: 2px solid #76D600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-outline-green:hover { background: #76D600; color: var(--white); }

/* Check list */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-top: 1.25rem; }
.check-list li { font-size: 14px; color: var(--black); display: flex; align-items: flex-start; gap: 0.6rem; }
.check-list li::before { content: '?'; color: #76D600; font-weight: 700; flex-shrink: 0; }

/* Stats/counter aliases */
.stat-number { font-family: 'DM Serif Display', serif; font-size: clamp(2.4rem,5vw,3.6rem); color: #76D600; line-height: 1; display: block; margin-bottom: 0.6rem; }
.stat-label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.stat-item { text-align: center; padding: 1.5rem 1rem; border-right: 1px solid rgba(255,255,255,0.07); }
.stat-item:last-child { border-right: none; }
@media (max-width: 680px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2), .stat-item:nth-child(4) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.07); }
}

/* Eyebrow color on dark */
.section-dark .eyebrow { color: rgba(106,175,48,0.85); }
.section-dark h2 { color: var(--white); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.45);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-indicator svg { width: 22px; height: 22px; color: rgba(255,255,255,0.4); }

/* Hero CTAs and sub-headline */
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin: 16px auto 0;
  line-height: 1.65;
}

/* Footer bottom links */
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: #76D600; }

/* Counter class (CountUp.js target) — no visual style needed, just marker */
.counter { font-variant-numeric: tabular-nums; }

/* === LOGO TRANSPARENT FLOAT === */
.nav-logo img, .logo img {
    height: 70px !important;
    width: auto !important;
    max-width: 220px !important;
    background: transparent !important;
    mix-blend-mode: normal;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}
.nav-logo img:hover, .logo img:hover {
    transform: scale(1.03);
}
/* When nav is scrolled/dark — add slight glow to logo */
nav.scrolled .nav-logo img, .nav-scrolled .nav-logo img {
    filter: drop-shadow(0 2px 12px rgba(106,175,48,0.4));
}

/* FORCE LOGO SIZE - OVERRIDE ALL */
.nav-logo img,
.nav-logo > img,
header .logo img,
nav .logo img,
.site-logo img,
a.nav-logo img {
    height: 80px !important;
    width: auto !important;
    max-width: 260px !important;
    min-width: 180px !important;
    object-fit: contain !important;
    background: transparent !important;
    display: block !important;
}


/* LOGO FORCE SIZE */
.nav-logo img { height: 80px !important; width: auto !important; max-width: 240px !important; display: block !important; }
nav .logo img { height: 80px !important; width: auto !important; }


/* === BRAND COLOR FIX === */
:root {
  --green: #76D600 !important;
  --green-dark: #5fb800 !important;
  --dark-section: #0a0a0a !important;
  --brand-black: #0a0a0a;
  --brand-white: #ffffff;
  --brand-grey: #f5f5f5;
}

/* === LISTINGS SEARCH BAR FIX === */
.search-bar, .filter-bar, .listings-filter, .search-filters {
    background: #0a0a0a !important;
    padding: 40px !important;
    border-radius: 12px !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 20px !important;
    margin: 0 auto 50px !important;
    max-width: 1180px !important;
    border: 1px solid rgba(118, 214, 0, 0.2) !important;
}
.search-bar select,
.search-bar input,
.filter-bar select,
.filter-bar input,
.listings-filter select,
.listings-filter input {
    background: #1a1a1a !important;
    border: 1px solid rgba(118, 214, 0, 0.3) !important;
    color: white !important;
    padding: 14px 18px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    width: 100% !important;
}
.search-bar button,
.filter-bar button,
.btn-search {
    background: #76D600 !important;
    color: #000 !important;
    font-weight: 700 !important;
    padding: 14px 32px !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    font-size: 14px !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
}

/* === HERO VIDEO OVERLAY === */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.7;
}

/* === ANIMATED HERO SLIDESHOW (Ken Burns effect) === */
.hero-slideshow { position: absolute; inset: 0; overflow: hidden; }
.hero-slide-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: heroFade 18s infinite;
}
.slide-1 { background-image: url('images/hero-1.jpg'); animation-delay: 0s; }
.slide-2 { background-image: url('images/hero-2.jpg'); animation-delay: 6s; }
.slide-3 { background-image: url('images/hero-3.jpg'); animation-delay: 12s; }

@keyframes heroFade {
    0%   { opacity: 0; transform: scale(1); }
    5%   { opacity: 1; }
    28%  { opacity: 1; transform: scale(1.08); }
    33%  { opacity: 0; transform: scale(1.1); }
    100% { opacity: 0; transform: scale(1); }
}


/* === LOGO: WHITE, NO FRAME, CLEAN === */
.nav-logo {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}
.nav-logo img,
nav .nav-logo img,
a.nav-logo img {
    height: 70px !important;
    width: auto !important;
    max-width: 240px !important;
    min-width: 140px !important;
    display: block !important;
    filter: brightness(0) invert(1) !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
}

/* === VIDEO HERO === */
.hero-bg video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}
/* Hide slideshow images now that we have video */
.hero-slideshow,
.hero-slide-img,
.slide-1, .slide-2, .slide-3 {
    display: none !important;
}

/* === LIME GREEN LOGO - TRANSPARENT PNG - NO FILTER NEEDED === */
.nav-logo { background: none !important; border: none !important; padding: 0 !important; box-shadow: none !important; }
.nav-logo img, nav .nav-logo img, a.nav-logo img {
    height: 65px !important;
    width: auto !important;
    max-width: 280px !important;
    display: block !important;
    filter: none !important;
    background: transparent !important;
}


/* === TYPOGRAPHY WORDMARK === */
.brand-wordmark { display:inline-flex; flex-direction:column; line-height:0.86; text-decoration:none; }
.brand-line { display:block; }
.brand-line--top { font-family:'DM Sans', sans-serif; font-size:10px; font-weight:700; letter-spacing:0.34em; text-transform:uppercase; color:rgba(255,255,255,0.78); }
.brand-line--bottom { font-family:'DM Serif Display', serif; font-size:28px; font-weight:400; letter-spacing:-0.03em; color:#ffffff; }
.brand-accent { color:var(--green); }
.nav-logo { display:inline-flex !important; align-items:center; min-width:unset !important; }
.nav-logo .brand-wordmark { padding:6px 0; }
.footer-logo .brand-line--top { color:rgba(255,255,255,0.55); }
.footer-logo .brand-line--bottom { color:#ffffff; font-size:30px; }

/* === HERO 3D DEPTH EFFECT === */
.hero {
  perspective: 1200px;
  perspective-origin: 50% 40%;
}
.hero-content {
  will-change: transform;
  transform-style: preserve-3d;
}
.hero-content h1 {
  text-shadow:
    0 1px 0 rgba(255,255,255,0.15),
    0 2px 0 rgba(0,0,0,0.4),
    0 4px 8px rgba(0,0,0,0.5),
    0 8px 24px rgba(0,0,0,0.3),
    2px 4px 0 rgba(118,214,0,0.08);
  transform: translateZ(20px);
  will-change: transform;
}
.hero-content h1 span {
  display: block;
  text-shadow:
    0 1px 0 rgba(118,214,0,0.3),
    0 3px 0 rgba(55,100,0,0.5),
    0 6px 16px rgba(0,0,0,0.4),
    0 10px 32px rgba(0,0,0,0.25);
  transform: translateZ(30px);
}
.hero-content .eyebrow {
  transform: translateZ(10px);
  will-change: transform;
}
.hero-content .hero-sub {
  transform: translateZ(5px);
  will-change: transform;
}
.hero-overlay {
  transform: translateZ(-10px) scale(1.02);
}
@media (max-width: 768px) { .brand-line--top { font-size:9px; } .brand-line--bottom { font-size:22px; } }

/* ============================================================
   MLS Marketplace Cards
   ============================================================ */
.mls-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.mls-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.mls-card:hover {
  transform: translateY(-4px);
  border-color: rgba(118,214,0,0.4);
}
.mls-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #1a1a1a;
}
.mls-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mls-badge-active {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #76D600;
  color: #000;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.mls-state-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.08em;
}
.mls-card-body {
  padding: 20px;
}
.mls-price {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: #76D600;
  margin-bottom: 6px;
}
.mls-addr {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.4;
}
.mls-county {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.mls-stats-row {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.mls-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  padding: 8px 12px;
  flex: 1;
}
.mls-stat span:first-child {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.mls-stat span:last-child {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.mls-inquire-btn {
  display: block;
  width: 100%;
  background: #76D600;
  color: #000;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.2s ease;
  margin-bottom: 10px;
}
.mls-inquire-btn:hover {
  background: #5fb800;
  color: #000;
}
.mls-disclaimer {
  font-size: 10px;
  color: rgba(255,255,255,0.25);
  line-height: 1.5;
  text-align: center;
}
.mls-filter-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.2s ease;
}
.mls-filter-btn:hover,
.mls-filter-btn.active {
  background: #76D600;
  border-color: #76D600;
  color: #000;
}
@media (max-width: 640px) {
  .mls-grid { grid-template-columns: 1fr; }
  .mls-stats-row { flex-wrap: wrap; }
}
