/*
Theme Name: BuyMyHouseService
Theme URI: https://buymyhouseservice.com
Description: A complete standalone cash home buying website theme. No parent theme required. Features professional design with hero sections, lead capture forms, testimonials, FAQ, and full page content on all pages.
Author: BuyMyHouseService
Author URI: https://buymyhouseservice.com
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: buymyhouseservice
Tags: real-estate, cash-buyers, business, one-page, responsive
*/

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

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --green:        #1a7a4a;
  --green-dark:   #0f5533;
  --green-light:  #e8f5ee;
  --gold:         #c8922a;
  --gold-light:   #fdf5e6;
  --charcoal:     #1c1c1e;
  --gray:         #6b7280;
  --gray-light:   #f1f5f9;
  --border:       #e2e8f0;
  --white:        #ffffff;
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.07);
  --shadow:       0 6px 28px rgba(0,0,0,0.10);
  --shadow-lg:    0 16px 56px rgba(0,0,0,0.14);
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   all 0.26s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;
  --max-width:    1140px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
}

a { color: var(--green); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--green-dark); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, select, textarea { font-family: var(--font-body); }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-alt { background: var(--gray-light); }
.section-dark { background: var(--charcoal); }
.section-green { background: var(--green); }

.text-center { text-align: center; }

.section-label {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-label--gold {
  background: var(--gold-light);
  color: var(--gold);
}

.section-label--white {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.95);
}

.section-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--charcoal);
}

.section-title--white { color: #fff !important; }

.section-title span { color: var(--green); }

.section-sub {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.75;
  max-width: 620px;
}

.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ============================================================
   NOTICE BAR
   ============================================================ */
.notice-bar {
  background: var(--gold);
  padding: 11px 28px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  position: relative;
  z-index: 10001;
}

.notice-bar a { color: #fff; font-weight: 700; text-decoration: underline; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  transition: box-shadow 0.3s;
}

.site-header.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.13); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

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

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(26,122,74,0.35);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--green);
  line-height: 1.1;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0.05em;
  display: block;
  text-transform: uppercase;
}

/* Primary Nav */
.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.primary-nav ul a {
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  padding: 8px 14px;
  border-radius: 8px;
  display: block;
  transition: var(--transition);
}

.primary-nav ul a:hover,
.primary-nav ul li.current-menu-item > a,
.primary-nav ul li.current_page_item > a {
  color: var(--green);
  background: var(--green-light);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone {
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  border: 2px solid var(--border);
  cursor: pointer;
  background: none;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Drawer */
.mobile-nav {
  display: none;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 20px 28px 28px;
}

.mobile-nav ul { display: grid; gap: 4px; margin-bottom: 16px; }

.mobile-nav ul a {
  display: block;
  padding: 12px 16px;
  background: var(--gray-light);
  border-radius: 8px;
  font-weight: 500;
  color: var(--charcoal);
  font-size: 15px;
  transition: var(--transition);
}

.mobile-nav ul a:hover { background: var(--green-light); color: var(--green); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 18px rgba(200,146,42,0.38);
}

.btn-primary:hover {
  background: #b07d1e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,146,42,0.48);
}

.btn-green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 18px rgba(26,122,74,0.35);
}

.btn-green:hover {
  background: var(--green-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,122,74,0.45);
}

.btn-outline {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.22);
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

.btn-outline-green {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}

.btn-outline-green:hover {
  background: var(--green);
  color: #fff;
}

.btn-lg { padding: 18px 40px; font-size: 17px; }
.btn-sm { padding: 10px 20px; font-size: 14px; }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  color: var(--charcoal);
  background: #fff;
  transition: var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(26,122,74,0.10);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7280' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-submit {
  width: 100%;
  background: var(--green);
  color: #fff;
  padding: 16px 24px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
  box-shadow: 0 4px 20px rgba(26,122,74,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-submit:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(26,122,74,0.45);
}

.form-msg {
  display: none;
  padding: 16px 20px;
  border-radius: 10px;
  margin-top: 16px;
  font-weight: 500;
  font-size: 15px;
  text-align: center;
}

.form-msg.success { background: #e8f5ee; color: #0f5533; }
.form-msg.error   { background: #fff0f0; color: #c0392b; }

.form-trust {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.form-trust span {
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
}

/* ============================================================
   HERO — HOME PAGE
   ============================================================ */
.hero {
  background: linear-gradient(140deg, #083524 0%, #1a7a4a 55%, #1d6b41 100%);
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(200,146,42,0.12) 0%, transparent 50%),
                    radial-gradient(circle at 10% 80%, rgba(255,255,255,0.05) 0%, transparent 40%);
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-rule='evenodd'%3E%3Cpath d='M30 5L5 20v30h50V20L30 5zm0 6l20 12v26H10V23L30 11z'/%3E%3C/g%3E%3C/svg%3E");
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50px;
  padding: 7px 18px;
  color: rgba(255,255,255,0.95);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(1.4); }
}

.hero h1 {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}

.hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.hero-lead {
  color: rgba(255,255,255,0.88);
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-trust {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

.hero-trust-item .check {
  width: 20px;
  height: 20px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #6ddb9e;
  flex-shrink: 0;
}

/* Lead Form Card */
.lead-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.22);
  position: relative;
}

.lead-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--green) 0%, var(--gold) 100%);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.lead-card-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--charcoal);
}

.lead-card-sub {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 24px;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--green);
  padding: 32px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-connector {
  position: absolute;
  top: 62px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 3px;
  background: linear-gradient(90deg, var(--green) 0%, var(--gold) 100%);
  z-index: 0;
  border-radius: 2px;
}

.step-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.step-card:hover {
  border-color: var(--green);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  width: 68px;
  height: 68px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 24px;
  box-shadow: 0 4px 18px rgba(26,122,74,0.38);
  position: relative;
}

.step-card h3 { font-size: 20px; margin-bottom: 12px; }
.step-card p  { font-size: 15px; color: var(--gray); }

/* ============================================================
   BENEFITS / COMPARE
   ============================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.benefits-list { display: grid; gap: 18px; }

.benefit-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.benefit-item:hover {
  box-shadow: var(--shadow);
  transform: translateX(5px);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: var(--green-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.benefit-text h4 { font-size: 16px; margin-bottom: 4px; }
.benefit-text p  { font-size: 14px; color: var(--gray); margin: 0; }

/* Compare Panel */
.compare-panel {
  background: linear-gradient(140deg, var(--green) 0%, var(--green-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.compare-panel::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 220px; height: 220px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.compare-panel h3 {
  color: #fff;
  font-size: 26px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.compare-table { position: relative; z-index: 1; }

.compare-head {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255,255,255,0.2);
  margin-bottom: 4px;
}

.compare-head span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  text-align: center;
}

.compare-head span:first-child { text-align: left; }

.compare-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 8px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  align-items: center;
}

.compare-row:last-child { border: none; }

.compare-row .feature { font-size: 14px; color: rgba(255,255,255,0.78); }
.compare-row .us      { font-size: 13px; color: #6ddb9e; font-weight: 700; text-align: center; }
.compare-row .them    { font-size: 13px; color: rgba(255,255,255,0.35); text-align: center; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tcard {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  backdrop-filter: blur(6px);
}

.tcard:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(200,146,42,0.4);
  transform: translateY(-4px);
}

.tcard-stars { color: var(--gold); font-size: 18px; margin-bottom: 14px; }

.tcard-text {
  color: rgba(255,255,255,0.83);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 22px;
}

.tcard-author { display: flex; align-items: center; gap: 14px; }

.author-ava {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.author-name  { font-weight: 600; color: #fff; font-size: 15px; }
.author-loc   { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 2px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.faq-item.open {
  border-color: var(--green);
  box-shadow: 0 4px 24px rgba(26,122,74,0.10);
}

.faq-q {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: var(--charcoal);
  user-select: none;
  gap: 16px;
  transition: color 0.2s;
}

.faq-q:hover { color: var(--green); }

.faq-icon {
  width: 30px;
  height: 30px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--green);
  flex-shrink: 0;
  transition: var(--transition);
  font-weight: 700;
  line-height: 1;
}

.faq-item.open .faq-icon {
  background: var(--green);
  color: #fff;
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
  padding: 0 24px;
}

.faq-item.open .faq-a {
  max-height: 500px;
  padding: 0 24px 22px;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(200,146,42,0.15) 0%, transparent 60%);
  pointer-events: none;
}

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

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--gold);
  margin: 24px 0 32px;
  text-decoration: none;
  transition: var(--transition);
}

.cta-phone:hover { color: #f0c060; }

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  background: linear-gradient(140deg, #083524 0%, #1a7a4a 100%);
  padding: 80px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 64px;
  background: #fff;
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 28px;
}

.page-hero h1 { color: #fff; font-size: clamp(30px, 4vw, 54px); margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,0.84); font-size: 18px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-visual {
  background: linear-gradient(140deg, var(--green-light) 0%, #c3e8d2 100%);
  border-radius: var(--radius-lg);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
}

.about-visual::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: rgba(26,122,74,0.1);
  border-radius: 50%;
}

.promise-list { display: grid; gap: 16px; position: relative; z-index: 1; }

.promise-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.promise-item .icon { font-size: 20px; line-height: 1.4; flex-shrink: 0; }
.promise-item h5   { font-size: 15px; margin-bottom: 2px; }
.promise-item p    { font-size: 13px; color: var(--gray); margin: 0; }

.stats-inline {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.stat-inline .num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}

.stat-inline .lbl {
  font-size: 12px;
  color: var(--gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 4px;
}

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

.value-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 26px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: var(--transition);
}

.value-card:hover {
  border-color: var(--green);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.value-icon { font-size: 44px; margin-bottom: 16px; display: block; }
.value-card h3 { font-size: 18px; margin-bottom: 10px; }
.value-card p  { font-size: 14px; color: var(--gray); }

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

.team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.team-ava {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(26,122,74,0.35);
}

.team-card h4    { font-size: 18px; margin-bottom: 4px; }
.team-role       { font-size: 13px; color: var(--green); font-weight: 600; margin-bottom: 12px; display: block; }
.team-card p     { font-size: 14px; color: var(--gray); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info-title { font-size: 30px; margin-bottom: 14px; }
.contact-info-sub   { color: var(--gray); font-size: 16px; margin-bottom: 32px; line-height: 1.7; }

.contact-items { display: grid; gap: 16px; margin-bottom: 32px; }

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--gray-light);
  border-radius: var(--radius);
}

.contact-item-icon {
  width: 46px;
  height: 46px;
  background: var(--green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
}

.contact-item h5 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray); margin-bottom: 4px; font-weight: 700; }
.contact-item p  { font-size: 15px; color: var(--charcoal); font-weight: 500; margin: 0; }
.contact-item a  { color: var(--charcoal); font-weight: 500; }
.contact-item a:hover { color: var(--green); }

.reasons-box {
  background: var(--green-light);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.reasons-box h4 { font-size: 15px; color: var(--green); margin-bottom: 14px; }

.reasons-list { display: grid; gap: 9px; }

.reasons-list li {
  font-size: 14px;
  color: var(--gray);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.contact-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.contact-form-card h3 { font-size: 26px; margin-bottom: 6px; }
.contact-form-card .sub { color: var(--gray); font-size: 15px; margin-bottom: 28px; }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 64px;
}

/* ============================================================
   SERVICE AREAS PAGE
   ============================================================ */
.areas-intro { max-width: 700px; margin: 0 auto 64px; text-align: center; }

.state-section { margin-bottom: 52px; }

.state-heading {
  font-size: 20px;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--green);
  display: flex;
  align-items: center;
  gap: 10px;
}

.state-heading.gold { border-color: var(--gold); }

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

.area-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: var(--transition);
}

.area-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.area-state { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: var(--green); margin-bottom: 5px; }
.area-state.gold { color: var(--gold); }
.area-city  { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.area-desc  { font-size: 12px; color: var(--gray); line-height: 1.5; }

.property-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ptype-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: var(--transition);
}

.ptype-card:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ptype-card .icon { font-size: 42px; margin-bottom: 14px; display: block; }
.ptype-card h3    { font-size: 18px; margin-bottom: 8px; }
.ptype-card p     { font-size: 14px; color: var(--gray); margin: 0; }

.not-listed-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--charcoal);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: #e8f5ee;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand p  { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.75; margin-bottom: 22px; }

.social-links    { display: flex; gap: 10px; }

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.09);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover { background: var(--green); color: #fff; }

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul { display: grid; gap: 10px; }

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover { color: #e8f5ee; padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 13px;
  font-size: 14px;
  color: rgba(255,255,255,0.52);
}

.footer-contact-item strong { color: rgba(255,255,255,0.85); }
.footer-contact-item a      { color: rgba(255,255,255,0.85); text-decoration: none; }
.footer-contact-item a:hover{ color: #e8f5ee; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a { color: rgba(255,255,255,0.3); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

/* ============================================================
   UTILITY
   ============================================================ */
.d-flex   { display: flex; }
.gap-16   { gap: 16px; }
.mt-32    { margin-top: 32px; }
.mb-0     { margin-bottom: 0 !important; }
.fw-600   { font-weight: 600; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid          { grid-template-columns: 1fr; gap: 44px; }
  .lead-card          { max-width: 540px; margin: 0 auto; }
  .benefits-grid      { grid-template-columns: 1fr; }
  .about-grid         { grid-template-columns: 1fr; gap: 44px; }
  .contact-layout     { grid-template-columns: 1fr; }
  .footer-grid        { grid-template-columns: 1fr 1fr; gap: 36px; }
  .areas-grid         { grid-template-columns: repeat(3,1fr); }
  .stats-grid         { grid-template-columns: repeat(2,1fr); }
  .property-types-grid{ grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .section            { padding: 64px 0; }
  .hero               { padding: 72px 0 64px; }
  .steps-grid         { grid-template-columns: 1fr; }
  .steps-connector    { display: none; }
  .testimonials-grid  { grid-template-columns: 1fr; }
  .values-grid        { grid-template-columns: 1fr 1fr; }
  .team-grid          { grid-template-columns: 1fr; }
  .areas-grid         { grid-template-columns: repeat(2,1fr); }
  .footer-grid        { grid-template-columns: 1fr; }
  .footer-bottom      { flex-direction: column; text-align: center; }
  .hero-cta           { flex-direction: column; align-items: flex-start; }
  .primary-nav        { display: none; }
  .header-phone       { display: none; }
  .mobile-toggle      { display: flex; }
  .contact-form-card  { padding: 28px 20px; }
  .form-row           { grid-template-columns: 1fr; }
  .stats-inline       { gap: 24px; }
  .property-types-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .values-grid        { grid-template-columns: 1fr; }
  .areas-grid         { grid-template-columns: 1fr 1fr; }
  .stats-grid         { grid-template-columns: repeat(2,1fr); }
  .not-listed-box     { padding: 36px 24px; }
}
