/* ============================================================
   Highlands Home Services Network — styles.css
   Obsidian Peak Holdings LLC
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --color-primary:    #1B3A5C;
  --color-secondary:  #2D6A4F;
  --color-accent:     #E07B39;
  --color-light:      #F5F2ED;
  --color-dark:       #2C2C2C;
  --color-muted:      #C4A882;
  --color-white:      #FFFFFF;
  --font-heading:     'Montserrat', sans-serif;
  --font-body:        'Inter', sans-serif;
  --max-width:        1200px;
  --radius:           8px;
  --shadow:           0 2px 16px rgba(27,58,92,0.10);
  --transition:       0.2s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  color: var(--color-dark);
  background: var(--color-light);

   /* ── HomeFix Check Callout Banner ─────────────────────── */
.homefix-callout {
  position: relative;
  background: linear-gradient(135deg, #1B3A5C 60%, #0f2236 100%);
  padding: 3.5rem 1.5rem;
  overflow: hidden;
}
.homefix-callout-bg {
  position: absolute;
  inset: 0;
  background: url('/images/bg-how-it-works.jpg') center/cover no-repeat;
  opacity: .07;
  pointer-events: none;
}
.homefix-callout-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.homefix-callout-text {
  flex: 1 1 320px;
}
.homefix-callout-text .section-label {
  color: #C8972B;
}
.homefix-callout-text h2 {
  color: #fff;
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: .75rem;
  line-height: 1.2;
}
.homefix-callout-sub {
  color: rgba(255,255,255,.82);
  font-size: .95rem;
  line-height: 1.65;
  margin-bottom: 1rem;
  max-width: 520px;
}
.homefix-callout-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.25rem;
  font-size: .8rem;
  color: rgba(255,255,255,.65);
}
.homefix-callout-trust span {
  font-weight: 600;
  color: #C8972B;
}
.homefix-callout-cta {
  flex: 0 0 auto;
  text-align: center;
}
.homefix-callout-btn {
  display: inline-block;
  font-size: 1rem;
  padding: .9rem 2rem;
  white-space: nowrap;
}
.homefix-callout-hint {
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  margin-top: .6rem;
}
@media (max-width: 640px) {
  .homefix-callout-inner { flex-direction: column; text-align: center; }
  .homefix-callout-trust { justify-content: center; }
  .homefix-callout-sub { max-width: 100%; }
}

  line-height: 1.8; /* ↑ WS was 1.65 */
  -webkit-font-smoothing: antialiased;
  width: 100%;
  overflow-x: hidden;
  position: relative;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-primary); }


/* ============================================================
   UTILITIES
   ============================================================ */
.container   { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; } /* ↑ WS was 1.25rem */
.section-pad { padding: 5rem 0; }
.text-center { text-align: center; }
.sr-only     { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: .85rem; /* ↑ WS was .65rem */
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; color: var(--color-primary); }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; margin-bottom: 1.5rem; } /* ↑ WS */
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; margin-bottom: 1.25rem; } /* ↑ WS */
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); font-weight: 700; margin-bottom: .85rem; } /* ↑ WS */
h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: .65rem; } /* ↑ WS */
p  { font-size: 1.1rem; margin-bottom: 1.25rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 1rem 2.25rem; /* ↑ WS was .8rem 2rem */
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  text-align: center;
}
.btn:hover           { transform: translateY(-2px); }
.btn-primary         { background: var(--color-accent); color: var(--color-white); }
.btn-primary:hover   { background: #c96b2a; color: var(--color-white); }
.btn-outline         { background: transparent; color: var(--color-white); border-color: var(--color-white); }
.btn-outline:hover   { background: var(--color-white); color: var(--color-primary); }
.trade-card-body .btn-outline {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.trade-card-body .btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-secondary       { background: var(--color-primary); color: var(--color-white); }
.btn-secondary:hover { background: #142d47; color: var(--color-white); }

/* ============================================================
   SITE HEADER & NAV
   ============================================================ */
.site-header {
  background: var(--color-primary);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 2rem; /* ↑ WS was 1.5rem */
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: 88px;
  gap: 1.5rem;
}

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

.site-logo {
  height: 72px;
  width: auto;
  max-width: 340px;
  display: block;
}

.nav-list {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-list a {
  color: var(--color-light);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .04em;
  white-space: nowrap;
}

.nav-list a:hover,
.nav-list a.active { color: var(--color-accent); }

.nav-cta {
  background: var(--color-accent);
  color: var(--color-white) !important;
  padding: .55rem 1.25rem;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 700;
  white-space: nowrap;
}
.nav-cta:hover { background: #c96b2a !important; color: var(--color-white) !important; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: .4rem; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--color-light); margin: 5px 0; transition: transform var(--transition), opacity var(--transition); }
.nav-toggle.nav-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.nav-open span:nth-child(2) { opacity: 0; }
.nav-toggle.nav-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .nav-list {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-primary);
    padding: 1.25rem 1.5rem 2rem; /* ↑ WS */
    box-shadow: 0 4px 16px rgba(0,0,0,.3);
  }

  .nav-list.nav-open { display: flex; }
  .nav-list li   { border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-list a    { display: block; padding: .9rem 0; } /* ↑ WS was .75rem */

  .site-logo { height: 58px; max-width: 260px; }
  .nav-inner { padding: .65rem 1.25rem; min-height: 78px; }
}

/* ============================================================
   NAV DROPDOWN — Contractor Leads + Service Areas
   ============================================================ */
.nav-item-dropdown {
  position: relative;
}

.nav-item-dropdown > a {
  display: flex;
  align-items: center;
  gap: .35rem;
}

.nav-item-dropdown > a::after {
  content: '▾';
  font-size: .75rem;
  transition: transform var(--transition);
}

.nav-item-dropdown.is-open > a::after {
  transform: rotate(180deg);
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100%);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(27,58,92,.18);
  min-width: 180px;
  z-index: 200;
  padding: 1rem 0; /* ↑ WS was .75rem */
  list-style: none;
}

.nav-item-dropdown.is-open .nav-dropdown {
  display: block;
}

.nav-dropdown li a {
  display: block;
  padding: .75rem 1.5rem; /* ↑ WS was .6rem 1.25rem */
  color: var(--color-primary) !important;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .9rem;
  white-space: nowrap;
  letter-spacing: .02em;
  transition: background var(--transition), color var(--transition);
}

.nav-dropdown li a:hover {
  background: var(--color-light);
  color: var(--color-accent) !important;
}

/* Mobile dropdown — stacked inline */
@media (max-width: 768px) {
  .nav-dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,.06);
    border-radius: 0;
    padding: 0;
    border-left: 3px solid var(--color-accent);
    margin: .25rem 0 .75rem 1rem; /* ↑ WS */
  }

  .nav-item-dropdown.is-open .nav-dropdown {
    display: block;
  }

  .nav-dropdown li a {
    color: rgba(245,242,237,.88) !important;
    font-size: .88rem;
    padding: .65rem 1rem; /* ↑ WS was .5rem */
  }

  .nav-dropdown li a:hover {
    background: transparent;
    color: var(--color-accent) !important;
  }
}

/* ============================================================
   HERO — homepage
   ============================================================ */
.hero { position: relative; min-height: 580px; display: flex; align-items: center; overflow: hidden; background: var(--color-primary); } /* ↑ WS was 560px */
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .38; }
.hero-content { position: relative; z-index: 2; padding: 6rem 2rem; max-width: 720px; } /* ↑ WS was 5rem 1.25rem */
.hero h1 { color: var(--color-white); margin-bottom: 1.5rem; } /* ↑ WS */
.hero p  { color: rgba(245,242,237,.88); font-size: 1.15rem; margin-bottom: 2.25rem; max-width: 580px; } /* ↑ WS */
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1.25rem; } /* ↑ WS was 1rem */

/* ============================================================
   PAGE HERO — inner pages
   ============================================================ */
.page-hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  background: var(--color-primary);
  min-height: 460px; /* ↑ WS was 420px */
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: .38;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 2rem 6rem; /* ↑ WS was 4rem 1.25rem 5rem */
  max-width: 720px;
  width: 100%;
}

.page-hero h1  { color: var(--color-white); margin-bottom: 1.5rem; } /* ↑ WS */
.page-hero h2  { color: var(--color-white); margin-bottom: 1.25rem; } /* ↑ WS */
.page-hero p   { color: rgba(245,242,237,.88); font-size: 1.15rem; margin-bottom: 2.25rem; max-width: 580px; } /* ↑ WS */
.page-hero .section-label { color: var(--color-accent); }
.page-hero .hero-ctas { display: flex; flex-wrap: wrap; gap: 1.25rem; } /* ↑ WS */

.aeo-definition {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.88);
  max-width: 780px;
  margin: 0 0 2rem;
}



/* PAGE HERO — mobile */
@media (max-width: 768px) {
  .page-hero { min-height: 380px; } /* ↑ WS was 360px */
  .page-hero-content { padding: 3rem 1.5rem 4.5rem; } /* ↑ WS */

  .page-hero h1 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .page-hero p  { font-size: 1rem; max-width: 100%; }

  .apply-hero .page-hero-img { opacity: 0.65; }
}

/* ============================================================
   APPLY PAGE HERO — stronger overlay for aerial image
   ============================================================ */
.apply-hero { min-height: 540px; } /* ↑ WS was 520px */

.apply-hero .page-hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(10, 20, 40, 0.82) 0%,
    rgba(10, 20, 40, 0.65) 55%,
    rgba(10, 20, 40, 0.35) 100%
  );
  z-index: 1;
}

.apply-hero .page-hero-img    { opacity: 0.65; }
.apply-hero .page-hero-content { position: relative; z-index: 2; }

@media (max-width: 768px) {
  .apply-hero { min-height: 420px; } /* ↑ WS was 400px */
  .apply-hero .page-hero-bg::after { background: rgba(10, 20, 40, 0.75); }
  .apply-hero .page-hero-img { opacity: 0.65; }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar  { background: var(--color-secondary); padding: 2.5rem 2rem; } /* ↑ WS was 2rem 1.25rem */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; text-align: center; } /* ↑ WS was 1.5rem */
.stat-number { display: block; font-family: var(--font-heading); font-weight: 800; font-size: 1.3rem; color: var(--color-white); margin-bottom: .4rem; } /* ↑ WS */
.stat-label  { font-size: .82rem; color: rgba(245,242,237,.8); font-weight: 500; }

/* ============================================================
   HOW IT WORKS — homepage section
   ============================================================ */
.how-it-works { position: relative; background: var(--color-primary); color: var(--color-light); overflow: hidden; }
.how-it-works-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .12; z-index: 0; }
.how-it-works h2 { color: var(--color-white); }
.how-it-works .container { position: relative; z-index: 1; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2.5rem; margin-top: 3.5rem; } /* ↑ WS */
.step-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 2.5rem 2rem; text-align: center; } /* ↑ WS was 2rem 1.5rem */
.step-number { width: 52px; height: 52px; border-radius: 50%; background: var(--color-accent); color: var(--color-white); font-family: var(--font-heading); font-weight: 800; font-size: 1.4rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; } /* ↑ WS was 1.25rem */
.step-card h3 { color: var(--color-white); margin-bottom: .75rem; } /* ↑ WS */
.step-card p  { color: rgba(245,242,237,.8); font-size: .95rem; margin: 0; line-height: 1.8; } /* ↑ WS */

/* ============================================================
   6-STEP PROCESS — how-it-works.html
   ============================================================ */
.process-list-container { list-style: none !important; padding: 0; margin: 0; }
.process-list-container > li { list-style: none !important; }

.process-step {
  list-style: none !important;
  display: flex;
  gap: 2rem; /* ↑ WS was 1.75rem */
  align-items: flex-start;
  margin-bottom: 3.25rem; /* ↑ WS was 2.75rem */
  padding-bottom: 3.25rem; /* ↑ WS was 2.75rem */
  border-bottom: 1px solid rgba(27,58,92,.1);
}
.process-step:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.process-step-num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step h3 { color: var(--color-primary); margin-bottom: .75rem; } /* ↑ WS */
.process-step p  { font-size: .97rem; color: #444; margin: 0; line-height: 1.8; } /* ↑ WS */

.process-list { padding-left: 1.25rem; margin: 1.5rem 0 0; } /* ↑ WS */
.process-list li { font-size: 1rem; line-height: 1.8; margin-bottom: 1.1rem; color: var(--color-dark); } /* ↑ WS */
.process-list li:last-child { margin-bottom: 0; }

@media (max-width: 600px) {
  .process-step { flex-direction: column; gap: 1.25rem; } /* ↑ WS */
  .process-step-num { width: 44px; height: 44px; font-size: 1.1rem; }
}

/* ============================================================
   VERTICALS
   ============================================================ */
.verticals-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin-top: 3rem; } /* ↑ WS was 1.5rem */
.vertical-card { background: var(--color-white); border: 1px solid var(--color-muted); border-radius: var(--radius); padding: 2.5rem 2rem; text-align: center; box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); } /* ↑ WS was 2rem 1.5rem */
.vertical-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(27,58,92,.14); }
.vertical-icon { font-size: 2.4rem; margin-bottom: 1.25rem; } /* ↑ WS */
.vertical-card h3 { color: var(--color-primary); margin-bottom: .65rem; } /* ↑ WS */
.badge-active { display: inline-block; background: var(--color-secondary); color: var(--color-white); font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .25rem .8rem; border-radius: 20px; margin-bottom: 1rem; } /* ↑ WS */
.badge-soon   { display: inline-block; background: var(--color-muted); color: var(--color-primary); font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .25rem .8rem; border-radius: 20px; margin-bottom: 1rem; } /* ↑ WS */
.waitlist-form { display: flex; gap: .5rem; margin-top: 1.25rem; flex-wrap: wrap; justify-content: center; } /* ↑ WS */
.waitlist-form input { padding: .65rem 1rem; border: 1px solid var(--color-muted); border-radius: var(--radius); font-family: var(--font-body); font-size: .88rem; flex: 1 1 160px; min-width: 0; }
.waitlist-form button { background: var(--color-primary); color: var(--color-white); border: none; border-radius: var(--radius); padding: .65rem 1.1rem; font-family: var(--font-heading); font-weight: 700; font-size: .82rem; cursor: pointer; white-space: nowrap; }
.waitlist-form button:hover { background: var(--color-accent); }

/* ============================================================
   WHY LIST
   ============================================================ */
.why-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; margin-top: 3rem; } /* ↑ WS was 1.5rem */
.why-item { display: flex; gap: 1.25rem; align-items: flex-start; background: var(--color-white); padding: 2rem; border-radius: var(--radius); box-shadow: var(--shadow); border-left: 4px solid var(--color-accent); } /* ↑ WS was 1.5rem / 1rem */
.why-icon { color: var(--color-accent); font-size: 1.5rem; flex-shrink: 0; margin-top: .1rem; }
.why-item h4 { margin-bottom: .4rem; color: var(--color-primary); } /* ↑ WS */
.why-item p  { font-size: .9rem; margin: 0; color: #555; line-height: 1.8; } /* ↑ WS */

/* ============================================================
   TRUST SECTION
   ============================================================ */
.trust-section { background: var(--color-primary); }
.trust-section h2 { color: var(--color-white); }
.trust-section p,
.trust-section .trust-intro,
.trust-section .legal-disclaimer { 
  color: rgba(245,242,237,.88); 
}
.trust-section .legal-disclaimer { text-align: center; }
.trust-section a       { color: var(--color-accent); }
.trust-section a:hover { color: var(--color-white); }


/* ============================================================
   TWO-COLUMN LAYOUT
   ============================================================ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; } /* ↑ WS was 3rem */
.two-col img { width: 100%; height: auto; display: block; border-radius: var(--radius); }
.two-col figure,
.two-col .image-wrap,
.two-col .image-col { margin: 0; }

@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }
@media (min-width: 900px) { .two-col { grid-template-columns: 1.2fr 0.8fr; align-items: center; } }

/* ============================================================
   BADGES GRID
   ============================================================ */
.badges-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2.5rem; margin-top: 3.5rem; } /* ↑ WS was 2rem / 3rem */

.badge-item {
  text-align: center;
  padding: 2.5rem 2rem; /* ↑ WS was 2rem 1.5rem */
  background: rgba(255,255,255,.07);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.15);
  transition: transform var(--transition);
}
.badge-item:hover { transform: translateY(-4px); }
.badge-item img { width: 72px; height: 72px; margin: 0 auto 1.25rem; } /* ↑ WS */
.badge-item p {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  margin: 0;
  letter-spacing: .03em;
}

.badge-icon { font-size: 3.5rem; line-height: 1; margin: 0 auto 1.25rem; display: block; text-align: center; } /* ↑ WS */

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-wrapper {
    padding: 1rem !important;
    box-shadow: none;
    border-radius: 0;
  }
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { position: relative; overflow: hidden; }
.testimonials-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .18; }
.testimonials-content { position: relative; z-index: 2; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem; } /* ↑ WS was 1.75rem / 2.5rem */
.testimonial-card { background: var(--color-white); border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow); border-top: 4px solid var(--color-accent); } /* ↑ WS was 2rem */
.stars { color: var(--color-accent); font-size: 1.1rem; margin-bottom: 1rem; } /* ↑ WS was .75rem */
.testimonial-card blockquote { font-size: .97rem; font-style: italic; color: #444; margin-bottom: 1.25rem; line-height: 1.8; } /* ↑ WS */
.testimonial-author { font-family: var(--font-heading); font-weight: 700; font-size: .88rem; color: var(--color-primary); }
.testimonial-author span { font-weight: 400; color: #777; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { background: var(--color-accent); padding: 5rem 2rem; text-align: center; } /* ↑ WS was 4rem 1.25rem */
.cta-banner h2 { color: var(--color-white); margin-bottom: 1rem; } /* ↑ WS */
.cta-banner p  { color: rgba(255,255,255,.9); font-size: 1.05rem; margin-bottom: 2.5rem; } /* ↑ WS */

/* ============================================================
   FORMS
   ============================================================ */
.form-section { background: var(--color-light); }
.form-wrapper { background: var(--color-white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 3rem; } /* ↑ WS was 2.5rem */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; } /* ↑ WS was 1.25rem */
.form-group { display: flex; flex-direction: column; gap: .5rem; } /* ↑ WS was .4rem */
.form-group.full-width { grid-column: 1 / -1; }
label { font-family: var(--font-heading); font-weight: 600; font-size: .875rem; color: var(--color-primary); }
input, select, textarea { padding: .85rem 1.1rem; border: 1.5px solid var(--color-muted); border-radius: var(--radius); font-family: var(--font-body); font-size: .95rem; color: var(--color-dark); background: var(--color-white); transition: border-color var(--transition); width: 100%; } /* ↑ WS was .7rem 1rem */
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(27,58,92,.1); }
textarea { resize: vertical; min-height: 140px; } /* ↑ WS was 120px */
.checkbox-group { display: flex; flex-wrap: wrap; gap: .65rem 1.5rem; margin-top: .5rem; } /* ↑ WS */
.checkbox-group label { display: flex; align-items: center; gap: .5rem; font-weight: 400; font-size: .9rem; cursor: pointer; } /* ↑ WS */
.checkbox-group input[type="checkbox"] { width: auto; }
.form-submit { margin-top: 2rem; } /* ↑ WS was 1.5rem */
.form-note { font-size: .85rem; color: #777; margin-top: 1rem; } /* ↑ WS was .75rem */
.form-success { display: none; background: #d1fae5; border: 1px solid #6ee7b7; color: #065f46; padding: 1.25rem 1.5rem; border-radius: var(--radius); margin-bottom: 1.5rem; font-weight: 600; } /* ↑ WS */
.field-hint { font-size: .82rem; color: #888; margin-top: .35rem; } /* ↑ WS */

@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ — consolidated
   ============================================================ */
.faq-section { background: var(--color-white); }
.faq-list { margin-top: 2.5rem; } /* ↑ WS was 2rem */

.faq-item {
  border-bottom: 1px solid #e2e8f0;
  padding: 2rem 0; /* ↑ WS was 28px */
}
.faq-item:first-child { padding-top: 0; }
.faq-item:last-child  { border-bottom: none; }
.faq-item h3 { font-size: 1.05rem; font-weight: 700; color: var(--color-primary); margin: 0 0 .75rem; line-height: 1.35; } /* ↑ WS was 10px */
.faq-item p  { font-size: .97rem; color: #444; line-height: 1.8; margin: 0 0 .65rem; } /* ↑ WS */
.faq-item p:last-child { margin-bottom: 0; }
.faq-item ul { margin: .65rem 0 .65rem 1.25rem; } /* ↑ WS */
.faq-item ul li { font-size: .97rem; color: #444; line-height: 1.8; margin-bottom: .35rem; } /* ↑ WS */

.faq-billing-callout {
  background: #fff8f2;
  border: 1px solid #f0c89a;
  border-radius: 4px;
  padding: 1rem 1.25rem; /* ↑ WS was 12px 16px */
  margin-top: .85rem; /* ↑ WS */
  font-size: .88rem;
  color: #7a4010;
  line-height: 1.7; /* ↑ WS */
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.problem-section { background: #0a1e37; padding: 5rem 2rem; text-align: center; } /* ↑ WS was 56px 24px */
.problem-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 800;
  color: var(--color-white);
  margin: 0 auto 1.5rem; /* ↑ WS was 18px */
  line-height: 1.25;
  max-width: 700px;
}
.problem-section p { color: rgba(255,255,255,0.85); font-size: 1.05rem; line-height: 1.8; max-width: 620px; margin: 0 auto 1rem; } /* ↑ WS */
.problem-accent { color: var(--color-accent); font-weight: 700; }

.value-strip { background: var(--color-accent); }
.value-strip ul { display: flex; flex-wrap: wrap; gap: 0; list-style: none; margin: 0; padding: 0; justify-content: center; }
.value-strip ul li {
  flex: 1 1 220px;
  text-align: center;
  padding: 1.25rem 1.5rem; /* ↑ WS was 16px 20px */
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .92rem;
  color: var(--color-white);
  letter-spacing: .02em;
  border-right: 1px solid rgba(255,255,255,.25);
}
.value-strip ul li:last-child { border-right: none; }
.value-strip ul li span { display: block; font-size: 1.45rem; margin-bottom: .4rem; } /* ↑ WS */

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; } /* ↑ WS was 56px */

.trust-pillars-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.75rem; margin-top: 2.5rem; } /* ↑ WS was 24px / 32px */
.trust-pillar { background: var(--color-white); border: 1px solid #e2e8f0; border-top: 4px solid var(--color-accent); border-radius: var(--radius); padding: 2rem 1.75rem; } /* ↑ WS was 24px 22px */
.trust-pillar h4 { font-size: .97rem; font-weight: 700; margin: 0 0 .75rem; color: var(--color-primary); } /* ↑ WS */
.trust-pillar p  { font-size: .93rem; color: #555; line-height: 1.75; margin: 0 0 .75rem; } /* ↑ WS */
.trust-verify-link { font-size: .88rem; font-weight: 600; color: var(--color-accent); text-decoration: none; }
.trust-verify-link:hover { text-decoration: underline; }

.business-details {
  background: #f3f7fb;
  border-left: 5px solid var(--color-accent);
  border-radius: 4px;
  padding: 2.25rem 2.5rem; /* ↑ WS was 28px 32px */
  font-size: .97rem;
  line-height: 1.9; /* ↑ WS */
}
.business-details strong { display: block; font-family: var(--font-heading); font-size: 1rem; font-weight: 800; margin-bottom: .5rem; color: var(--color-primary); } /* ↑ WS */

.benefit-list { margin-top: 1.5rem; padding-left: 1.5rem; } /* ↑ WS */
.benefit-list li { font-size: 1.1rem; line-height: 1.85; margin-bottom: 1rem; color: #333; } /* ↑ WS */
.benefit-list li::marker { font-size: 1.3em; color: var(--color-accent); }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; } /* ↑ WS was 32px */
  .value-strip ul li { flex: 1 1 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); }
  .value-strip ul li:last-child { border-bottom: none; }
  .business-details { padding: 1.5rem; } /* ↑ WS was 20px 18px */
}

/* ============================================================
   APPLY PAGE
   ============================================================ */
.requirements-list { list-style: none; padding: 0; margin: 1.5rem 0 2rem; } /* ↑ WS was 20px 0 24px */

.requirements-list li {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  align-items: flex-start;
  margin-bottom: 1.25rem; /* ↑ WS was 16px */
  font-size: 1rem;
  line-height: 1.75; /* ↑ WS */
  color: rgba(255,255,255,0.92);
}

.requirements-list li:last-child { margin-bottom: 0; }

.requirements-list li::before {
  content: "✓";
  color: var(--color-accent);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.requirements-list li strong { color: var(--color-white); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.hero-contact-email { color: rgba(255,255,255,0.85); font-size: .95rem; margin-top: 1.25rem; } /* ↑ WS */
.hero-contact-email a { color: var(--color-accent); }

/* ============================================================
   GET SERVICE PAGE
   ============================================================ */
.hero-legal-disclaimer { font-size: .85rem; color: var(--color-accent); font-weight: 600; margin-top: 1.25rem; font-style: italic; } /* ↑ WS */

.highlands-promise { background: #f3f7fb; border-left: 5px solid var(--color-accent); border-radius: 4px; padding: 2rem 2.25rem; margin-top: 1rem; } /* ↑ WS was 24px 28px / 8px */
.highlands-promise h3 { font-size: 1rem; font-weight: 800; color: var(--color-primary); margin: 0 0 .75rem; } /* ↑ WS */
.highlands-promise p  { font-size: .95rem; line-height: 1.8; color: #444; margin: 0 0 .65rem; } /* ↑ WS */
.highlands-promise p:last-child { margin-bottom: 0; }

/* ============================================================
   HVAC PAGE
   ============================================================ */
.image-banner { position: relative; width: 100%; min-height: 420px; display: flex; align-items: center; justify-content: center; overflow: hidden; background-color: #1a2a3a; } /* ↑ WS was 400px */
.image-banner img.banner-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; }
.image-banner .banner-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,30,55,0.82) 0%, rgba(10,30,55,0.50) 100%); z-index: 1; }
.image-banner .banner-content { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; padding: 5rem 2rem; color: var(--color-white); } /* ↑ WS was 64px 24px */
.image-banner .banner-content h2 { font-size: clamp(1.45rem, 3.5vw, 2.1rem); font-weight: 800; color: var(--color-white); margin: 0 0 1.5rem; line-height: 1.2; } /* ↑ WS was 20px */
.image-banner .banner-content .banner-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; } /* ↑ WS was 40px */
.image-banner .banner-content .banner-col h3 { font-size: 1.05rem; font-weight: 700; color: var(--color-accent); margin: 0 0 1rem; text-transform: uppercase; letter-spacing: .05em; } /* ↑ WS was 12px */
.image-banner .banner-content .banner-col p,
.image-banner .banner-content .banner-col ul li { font-size: .97rem; color: rgba(255,255,255,.90); line-height: 1.8; margin-bottom: .5rem; } /* ↑ WS */
.image-banner .banner-content .banner-col ul { margin: 0 0 0 1.1rem; padding: 0; list-style: disc; }

.lead-definition { background: #f3f7fb; border-left: 5px solid var(--color-accent); border-radius: 4px; padding: 2.25rem 2.5rem; margin: 0 0 3rem; } /* ↑ WS was 28px 32px / 40px */
.lead-definition h3 { font-size: 1.05rem; font-weight: 800; margin: 0 0 1rem; color: var(--color-primary); } /* ↑ WS was 14px */
.lead-definition ul { margin: 0 0 1rem 1.2rem; padding: 0; list-style: disc; } /* ↑ WS was 14px */
.lead-definition ul li { font-size: .97rem; line-height: 1.8; margin-bottom: .5rem; } /* ↑ WS */
.billing-note { font-size: .88rem; color: #555; border-top: 1px solid #d0dce8; padding-top: 1rem; margin-top: 1rem; line-height: 1.7; } /* ↑ WS was 14px */

@media (max-width: 680px) {
  .image-banner .banner-content .banner-cols { grid-template-columns: 1fr; gap: 2rem; } /* ↑ WS was 28px */
  .image-banner { min-height: auto; }
  .lead-definition { padding: 1.5rem; } /* ↑ WS was 20px 18px */
}

/* ============================================================
   CONTENT SECTION — service area pages
   ============================================================ */
.content-section {
  padding: 5rem 0; /* ↑ WS — standardizes all service area sections */
}

.content-section h2 {
  margin-bottom: 1.25rem;
}

.content-section p:last-child {
  margin-bottom: 0;
}

/* Service table cell spacing */
.service-table th,
.service-table td {
  padding: 1rem 1.25rem; /* ↑ WS was .75rem 1rem */
}

/* FAQ accordion items — service area pages */
.faq-item details {
  margin-bottom: 1.25rem;
}

details summary {
  padding: 1.1rem 1.5rem; /* ↑ WS */
  cursor: pointer;
}

details[open] summary {
  margin-bottom: .5rem;
}

details p {
  padding: 0 1.5rem 1.25rem; /* ↑ WS */
  line-height: 1.8;
}

/* ============================================================
   SHARED UTILITY
   ============================================================ */
.legal-disclaimer { font-size: .85rem; color: #888; line-height: 1.65; margin-top: .75rem; } /* ↑ WS */
.verify-link { color: var(--color-accent); font-weight: 600; text-decoration: underline; }
.verify-link:hover { color: var(--color-primary); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--color-light); padding: 4rem 2rem 2.5rem; } /* ↑ WS was 3rem 1.25rem 2rem */

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.footer-brand { display: flex; flex-direction: column; gap: 1.25rem; } /* ↑ WS was 1rem */

.site-logo-footer {
  display: block;
  width: clamp(220px, 35vw, 400px);
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.footer-meta { font-size: .88rem; color: var(--color-dark); line-height: 1.9; } /* ↑ WS */
.footer-meta strong  { color: var(--color-primary); }
.footer-meta a       { color: var(--color-accent); }
.footer-meta a:hover { color: var(--color-primary); }
.footer-note { font-size: .8rem; color: #888; }

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem 2rem; /* ↑ WS was .65rem */
  align-content: start;
  padding-top: .25rem;
}

.footer-nav a {
  color: var(--color-primary);
  font-size: .9rem;
  font-family: var(--font-heading);
  font-weight: 500;
  white-space: nowrap;
}
.footer-nav a:hover { color: var(--color-accent); }

.footer-legal {
  max-width: var(--max-width);
  margin: 2rem auto 0; /* ↑ WS was 1.5rem */
  border-top: 1px solid rgba(27,58,92,.15);
  padding-top: 2rem; /* ↑ WS was 1.5rem */
}
.footer-legal .legal-disclaimer { color: #777; }
.footer-copyright { font-size: .82rem; color: #999; margin-top: .6rem; } /* ↑ WS was .4rem */

@media (max-width: 640px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; } /* ↑ WS was 2rem */
  .footer-nav   { grid-template-columns: 1fr 1fr; }
  .site-logo-footer { width: min(300px, 100%); height: auto; }
}

/* ============================================================
   MOBILE CONTAINER PADDING
   ============================================================ */
@media (max-width: 768px) {
  .container { padding: 0 1.5rem; } /* ↑ WS was 1.25rem */
  .content-section { padding: 3.5rem 0; } /* ↑ WS — slightly tighter on mobile but still breathing */
  .section-pad { padding: 3.5rem 0; }
}

/* ============================================
   GHL FORM IFRAME OVERRIDES
   ============================================ */

/* Wrapper — let GHL script control height dynamically */
.ghl-form-iframe-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.ghl-form-iframe-wrapper iframe {
  width: 100%;
  min-height: 500px;
  height: auto;
  border: none;
  border-radius: 3px;
  display: block;
}

@media (max-width: 768px) {
  .ghl-form-iframe-wrapper iframe {
    min-height: 300px;
  }

  .ghl-form-iframe-wrapper {
    margin: 0 -1rem;
    width: calc(100% + 2rem);
  }
}

#contractor-app-iframe {
  width: 100%;
  min-height: 900px;
  border: none;
  border-radius: 8px;
  background: transparent;
}

.verticals-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 768px) {
  .verticals-grid-2col {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .verticals-grid-2col > div {
    margin-bottom: -0px;
  }

  .verticals-grid-2col > div:last-child {
    margin-bottom: 0;
  }

  .verticals-grid-2col iframe {
    height: 592px !important;
    display: block;
  }
}

/* ── Trade Cards ───────────────────────────── */
.trade-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

.trade-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.trade-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trade-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 0.03em;
}

.trade-badge--active {
  background: var(--color-primary);
  color: #ffffff;
}

.trade-badge--soon {
  background: var(--color-accent);
  color: ##1a3c5e;
}

.trade-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.trade-card-body h3 {
  margin: 0;
  font-size: 1.35rem;
}

.trade-card-body p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.trade-card-body .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* Mobile — single column, no iframe, no spacing fights */
@media (max-width: 768px) {
  .verticals-grid-2col {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ── Breadcrumb ─────────────────────────── */
.breadcrumb-nav {
  background: transparent;
  padding: 0.75rem 0 0;
}

.breadcrumb-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
  padding: 0 1.5rem;
  font-size: 0.8rem;
  opacity: 0.65;
}

.breadcrumb-list li::after {
  content: '›';
  margin-left: 0.35rem;
}

.breadcrumb-list li:last-child::after {
  content: '';
}

.breadcrumb-list a {
  text-decoration: none;
  color: inherit;
}

.breadcrumb-list a:hover {
  text-decoration: underline;
}

/* ── Thank You Page ─────────────────────────── */
.thankyou-hero { text-align: center; }
.thankyou-content { max-width: 680px; margin: 0 auto; }
.thankyou-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.thankyou-subhead { font-size: 1.1rem; line-height: 1.7; margin-bottom: 2rem; opacity: 0.85; }
.thankyou-what-next { background: #ffffff; border-radius: 10px; padding: 2rem; box-shadow: 0 2px 16px rgba(0,0,0,0.07); text-align: left; margin-bottom: 2rem; }
.thankyou-what-next h2 { font-size: 1.2rem; margin-bottom: 1rem; }
.thankyou-steps { padding-left: 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; }
.thankyou-steps li { font-size: 0.95rem; line-height: 1.6; }
.thankyou-ctas { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 1rem; }
.thankyou-links-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 2rem; }
.thankyou-link-card { background: #ffffff; border-radius: 10px; padding: 1.5rem; box-shadow: 0 2px 12px rgba(0,0,0,0.07); text-decoration: none; color: inherit; transition: box-shadow 0.2s ease, transform 0.2s ease; display: flex; flex-direction: column; gap: 0.5rem; }
.thankyou-link-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.12); transform: translateY(-2px); }
.tlc-icon { font-size: 1.75rem; }
.thankyou-link-card h3 { font-size: 1rem; margin: 0; }
.thankyou-link-card p { font-size: 0.875rem; line-height: 1.55; margin: 0; opacity: 0.8; }

@media (max-width: 600px) {
  .thankyou-links-grid { grid-template-columns: 1fr; }
  .thankyou-ctas { flex-direction: column; align-items: center; }
}

/* ── CTA Banner ───────────────────────────── */
.cta-banner .btn-primary {
  background: var(--color-white);
  color: var(--color-accent);
  border: 2px solid var(--color-white);
}

.cta-banner .btn-primary:hover {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

/* ── Service Table ───────────────────────────── */
.service-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}

.service-table th {
  text-align: left;
  padding: .75rem 1rem;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
}

.service-table td {
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--color-light);
}

.service-table tbody tr:nth-child(even) {
  background: var(--color-light);
}

@media (max-width: 640px) {
  .service-table thead { display: none; }
  .service-table tr { display: block; margin-bottom: 1.25rem; border: 1px solid var(--color-light); border-radius: 8px; overflow: hidden; }
  .service-table td { display: block; padding: .5rem 1rem; border-bottom: 1px solid rgba(0,0,0,0.06); }
  .service-table td::before {
    content: attr(data-label);
    display: block;
    font-size: .75rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .2rem;
  }
}
