/* =====================================================
   (Your Business Name) Home Solutions — style.css
   Clean, modern, mobile-first real estate website
   ===================================================== */

/* CSS Variables */
:root {
  --navy:    #0f1f3d;
  --navy-mid:#1a3260;
  --gold:    #c8922a;
  --gold-lt: #e8aa3e;
  --cream:   #faf8f3;
  --off-white:#f2efea;
  --text:    #1e1e1e;
  --text-mid:#4a4a5a;
  --text-lt: #7a7a8a;
  --white:   #ffffff;
  --green:   #1d6b3e;
  --green-lt:#e8f5ee;
  --yellow-lt:#fef9e7;
  --border:  #e0ddd6;
  --shadow:  0 4px 24px rgba(15,31,61,.10);
  --shadow-lg: 0 12px 48px rgba(15,31,61,.16);
  --radius:  12px;
  --radius-sm: 6px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --nav-h: 72px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-lt); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* Container */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 2px solid var(--gold);
  height: var(--nav-h);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  font-size: 24px;
  color: var(--gold);
}
.logo-text {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
}
.logo-text em {
  font-style: normal;
  display: block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 400;
}
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,.8);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .02em;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  margin-left: auto;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover {
  background: var(--gold-lt);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-sm {
  font-size: 13px;
  padding: 9px 20px;
  flex-shrink: 0;
}
.btn-full {
  width: 100%;
  font-size: 16px;
  padding: 16px;
  margin-top: 8px;
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  background: var(--navy);
  padding: 80px 0 72px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(200,146,42,.12) 0%, transparent 60%),
    linear-gradient(135deg, var(--navy) 60%, var(--navy-mid) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.hero-badge {
  display: inline-block;
  background: rgba(200,146,42,.15);
  border: 1px solid rgba(200,146,42,.4);
  color: var(--gold-lt);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 62px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 900;
}
.accent { color: var(--gold); }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.75);
  margin-bottom: 40px;
  line-height: 1.65;
  max-width: 560px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  padding: 0 32px 0 0;
}
.stat:first-child { padding-left: 0; }
.stat strong {
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-display);
  line-height: 1;
}
.stat span {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
  margin-right: 32px;
}

/* =====================================================
   TRUST BAR
   ===================================================== */
.trust-bar {
  background: var(--gold);
  padding: 14px 0;
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.trust-item {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .03em;
}

/* =====================================================
   FORM SECTION
   ===================================================== */
.form-section {
  background: var(--cream);
  padding: 80px 0;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.form-copy h2 {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}
.form-copy p {
  color: var(--text-mid);
  font-size: 16px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.form-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-benefits li {
  color: var(--text-mid);
  font-size: 15px;
  font-weight: 500;
}

/* Form Card */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.form-card-header {
  background: var(--navy);
  padding: 24px 28px;
}
.form-card-header h3 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 22px;
  margin-top: 8px;
}
.form-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}
form {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .02em;
}
.field-group input,
.field-group select,
.field-group textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s;
  width: 100%;
}
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,146,42,.12);
}
.field-group textarea { resize: vertical; }

/* Consent Block */
.consent-block {
  background: #f8f6f1;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.consent-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-mid);
}
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.consent-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
  border: none;
  padding: 0;
}
.consent-text {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.55;
}
.consent-disclaimer {
  border-top: 1px solid var(--border);
  padding-top: 12px;
  font-size: 12px;
  color: var(--text-lt);
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.consent-disclaimer a {
  color: var(--gold);
  font-weight: 500;
}
.form-fine {
  font-size: 12px;
  color: var(--text-lt);
  text-align: center;
  line-height: 1.5;
}
.form-fine a { color: var(--gold); }

/* Success */
.form-success {
  padding: 48px 28px;
  text-align: center;
}
.success-icon {
  width: 60px;
  height: 60px;
  background: var(--green-lt);
  color: var(--green);
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 10px;
}
.form-success p { color: var(--text-mid); }

/* =====================================================
   HOW IT WORKS
   ===================================================== */
.how-section {
  padding: 80px 0;
  background: var(--white);
}
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-heading {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--navy);
  margin-bottom: 48px;
  line-height: 1.15;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.step {
  padding: 32px 24px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  transition: border-color .2s, box-shadow .2s;
}
.step:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--off-white);
  line-height: 1;
  margin-bottom: 16px;
}
.step h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.step p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

/* =====================================================
   SITUATIONS
   ===================================================== */
.situations-section {
  padding: 80px 0;
  background: var(--navy);
}
.situations-section .section-label { color: var(--gold-lt); }
.situations-section .section-heading { color: var(--white); }
.situations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.situation-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  padding: 20px;
  color: rgba(255,255,255,.85);
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  transition: background .2s;
}
.situation-card:hover { background: rgba(200,146,42,.15); border-color: rgba(200,146,42,.4); }

/* =====================================================
   PAGE HERO (inner pages)
   ===================================================== */
.page-hero {
  background: var(--navy);
  padding: 60px 0 52px;
  border-bottom: 3px solid var(--gold);
}
.page-hero--sm { padding: 48px 0 40px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--white);
  margin-bottom: 10px;
}
.page-hero p { color: rgba(255,255,255,.65); font-size: 15px; }

/* =====================================================
   LEGAL PAGES
   ===================================================== */
.legal-main { padding: 60px 0 80px; background: var(--white); }
.legal-container { max-width: 800px; }
.legal-intro {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  padding: 24px 28px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 40px;
}
.legal-intro p { color: var(--text-mid); font-size: 15px; margin-bottom: 10px; }
.legal-intro p:last-child { margin-bottom: 0; }
.legal-toc {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  margin-bottom: 48px;
}
.legal-toc h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.legal-toc ol { padding-left: 20px; }
.legal-toc li { margin-bottom: 6px; }
.legal-toc a { color: var(--gold); font-size: 14px; }
.legal-container section {
  margin-bottom: 48px;
  scroll-margin-top: calc(var(--nav-h) + 20px);
}
.legal-container h2 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--off-white);
}
.legal-container h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 24px 0 10px;
}
.legal-container p { color: var(--text-mid); margin-bottom: 12px; line-height: 1.75; font-size: 15px; }
.legal-container ul {
  padding-left: 20px;
  margin-bottom: 16px;
  list-style: disc;
}
.legal-container li {
  color: var(--text-mid);
  font-size: 15px;
  margin-bottom: 8px;
  line-height: 1.65;
}
.highlight-box {
  background: #eef2ff;
  border: 1px solid #c7d2fe;
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin: 20px 0;
}
.highlight-box p { color: #3730a3; margin-bottom: 0; font-size: 14px; }
.highlight-box--green { background: var(--green-lt); border-color: #86efac; }
.highlight-box--green p { color: var(--green); }
.highlight-box--yellow { background: var(--yellow-lt); border-color: #fde68a; }
.highlight-box--yellow p { color: #92400e; }
.contact-block {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
  margin-top: 16px;
}
.contact-block p { margin-bottom: 6px; color: var(--text-mid); }
.contact-block p:last-child { margin-bottom: 0; }

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-section { padding: 72px 0; background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info-col h2 {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--navy);
  margin-bottom: 16px;
}
.contact-info-col > p { color: var(--text-mid); font-size: 16px; margin-bottom: 36px; line-height: 1.7; }
.contact-methods { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.contact-method { display: flex; gap: 16px; align-items: flex-start; }
.contact-method-icon { font-size: 24px; }
.contact-method h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.contact-method a { color: var(--gold); font-size: 16px; font-weight: 600; }
.contact-method p { font-size: 13px; color: var(--text-lt); margin-top: 2px; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-badge {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer { background: var(--navy); padding: 60px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand p {
  color: rgba(255,255,255,.5);
  font-size: 14px;
  margin-top: 12px;
  line-height: 1.65;
}
.footer-links h5,
.footer-contact h5 {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  color: rgba(255,255,255,.7);
  font-size: 14px;
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact p { color: rgba(255,255,255,.7); font-size: 14px; margin-bottom: 8px; }
.footer-contact a { color: rgba(255,255,255,.7); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  padding: 20px 0;
  background: rgba(0,0,0,.2);
}
.footer-bottom p {
  color: rgba(255,255,255,.4);
  font-size: 12px;
  line-height: 1.6;
}
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--gold); }
.footer-sms-notice {
  margin-top: 6px;
  font-size: 11px !important;
  color: rgba(255,255,255,.3) !important;
}

/* =====================================================
   MOBILE RESPONSIVENESS
   ===================================================== */
@media (max-width: 900px) {
  .steps-grid,
  .situations-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero { padding: 60px 0; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-inner .btn { display: none; }
  .nav-toggle { display: block; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--navy);
    padding: 24px;
    gap: 16px;
    border-bottom: 2px solid var(--gold);
    z-index: 99;
  }

  .hero-headline { font-size: 34px; }
  .hero-stats { gap: 0; }
  .stat { padding: 0 20px 0 0; }
  .stat-divider { margin-right: 20px; }
  .stat strong { font-size: 24px; }

  .trust-bar-inner { gap: 18px; justify-content: flex-start; }

  .section-heading { font-size: 28px; }
  .steps-grid { grid-template-columns: 1fr; }
  .situations-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .page-hero h1 { font-size: 32px; }
  .hero-stats { flex-wrap: wrap; }
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content > * {
  animation: fadeUp .6s ease both;
}
.hero-badge   { animation-delay: .05s; }
.hero-headline{ animation-delay: .15s; }
.hero-sub     { animation-delay: .25s; }
.hero-stats   { animation-delay: .35s; }
