﻿/* Columbus Housing Solutions — theme aligned to logo (emerald green, silver grey, black) */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400..800;1,400&display=swap');

:root {
  /* Sampled from brand artwork */
  --chs-green: #1bb978;
  --chs-green-hover: #159960;
  --chs-green-muted: rgba(27, 185, 120, 0.12);
  --chs-slate: #6b7280;
  --chs-slate-dark: #4b5563;
  --chs-black: #0a0a0a;
  --chs-ink: #111827;
  --chs-bg: #f6f7f9;
  --chs-card: #ffffff;
  --chs-border: rgba(17, 24, 39, 0.08);
  --chs-font: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

body {
  background: var(--chs-bg);
  color: var(--chs-ink);
  font-family: var(--chs-font);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: var(--chs-ink);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.text-chs-muted {
  color: var(--chs-slate) !important;
}

/* Script-style subhead — echoes “Housing Solutions” script without a custom font file */
.font-chs-script {
  font-family: var(--chs-font);
  font-weight: 500;
  font-style: italic;
  color: var(--chs-slate-dark);
  letter-spacing: 0.02em;
}

.btn-primary {
  background-color: var(--chs-green) !important;
  border-color: var(--chs-green) !important;
  font-weight: 600;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--chs-green-hover) !important;
  border-color: var(--chs-green-hover) !important;
}

.btn-outline-primary {
  color: var(--chs-green) !important;
  border-color: var(--chs-green) !important;
}

.btn-outline-primary:hover {
  background-color: var(--chs-green) !important;
  border-color: var(--chs-green) !important;
  color: #fff !important;
}

.card {
  border: 1px solid var(--chs-border);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

/* Hero with subtle brand tint (works without a background image) */
.hero-chs {
  background:
    linear-gradient(135deg, var(--chs-green-muted) 0%, transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--chs-bg) 100%);
}

.hero-chs-dark {
  background: linear-gradient(145deg, var(--chs-black) 0%, #1a1a1a 50%, #0f172a 100%);
  color: #fff;
}

.hero-chs-dark h1,
.hero-chs-dark .lead {
  color: #fff;
}

.hero-chs-dark .lead {
  opacity: 0.92;
}

/* Legacy .hero used on tax page — brand-tinted overlay */
.hero {
  background:
    linear-gradient(rgba(10, 10, 10, 0.72), rgba(10, 10, 10, 0.78)),
    url('https://images.unsplash.com/photo-1560518883-ce09059eeffa') center / cover no-repeat;
  color: #fff;
  padding: 4.5rem 0;
}

.navbar-chs {
  background-color: var(--chs-black) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Sticky bar: logo left, CTA always reachable on the right */
.navbar-chs.sticky-top {
  z-index: 1030;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.2);
}

.navbar-chs .navbar-brand img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

/* Compact CTA in the top bar on small screens (outside the collapse) */
.navbar-chs .navbar-chs-cta-mobile {
  white-space: nowrap;
}

.navbar-chs .nav-link {
  color: rgba(255, 255, 255, 0.88) !important;
  font-weight: 500;
}

.navbar-chs .nav-link:hover {
  color: #fff !important;
}

.navbar-offer-btn {
  background-color: var(--chs-green);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

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

.progress-bar {
  height: 6px;
  background: var(--chs-green);
  width: 0%;
  transition: width 0.3s ease;
  border-radius: 3px;
}

.progress-container {
  height: 6px;
  background: #e9ecef;
  border-radius: 3px;
  margin-bottom: 20px;
}

.section {
  padding: 70px 0;
}

.sticky-cta {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--chs-green);
  padding: 10px;
  text-align: center;
}

.sticky-cta a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.thankyou-container {
  max-width: 650px;
  margin: 0 auto;
  padding-top: 60px;
  padding-bottom: 60px;
}

.thankyou-icon {
  font-size: 60px;
  color: var(--chs-green);
}

.chs-market-pill {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--chs-green);
  background: var(--chs-green-muted);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

/* Phone listed for credibility — not a primary CTA */
.chs-phone-cred {
  font-size: 0.8125rem;
  color: var(--chs-slate);
  line-height: 1.45;
  max-width: 28rem;
}

.chs-phone-cred a {
  color: var(--chs-slate-dark);
  text-decoration: none;
}

.chs-phone-cred a:hover {
  text-decoration: underline;
}

.chs-footer {
  background: var(--chs-black);
  color: rgba(255, 255, 255, 0.75);
  padding: 2rem 0;
  font-size: 0.9rem;
}

.chs-footer a {
  color: var(--chs-green);
  text-decoration: none;
}

.chs-footer a:hover {
  text-decoration: underline;
}

.chs-footer .chs-phone-cred {
  color: rgba(255, 255, 255, 0.5);
  max-width: none;
}

.chs-footer .chs-phone-cred a {
  color: rgba(255, 255, 255, 0.55);
}

.chs-footer .chs-phone-cred a:hover {
  color: rgba(255, 255, 255, 0.8);
}
