/* =========================================================================
   SERVICES.CSS — HOA Services page sections only
   (Hero uses shared page-hero from component.css.)
   ========================================================================= */

/* ---- 02–05 Core Services (2×2) ---------------------------------------- */
.hoa-services {
  background: var(--bg);
  padding: var(--section-pad) 0;
}

.hoa-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
}

.hoa-service-card {
  position: relative;
  background: var(--surface-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 32px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.hoa-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--accent-border);
}

.hoa-service-card.is-featured {
  border-top: 3px solid var(--gold);
  background: var(--bg);
  box-shadow: var(--shadow-sm);
}

.hs-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 4px 9px;
  border-radius: 3px;
}

/* Icon + title inline (top), body text below */
.hs-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.hs-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background: var(--icon-bg);
  color: var(--icon);
  font-size: 1.375rem;
}

/* Featured (GC-led) service uses the gold accent */
.hoa-service-card.is-featured .hs-icon {
  background: var(--gold-dim);
  color: var(--gold);
}

.hs-title {
  color: var(--navy);
  margin: 0;
}

.hoa-service-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---- 06 Custom Program Statement -------------------------------------- */
.custom-program {
  background: var(--surface-light);
  padding: clamp(40px, 5vw, 60px) 0;
}

.custom-program-inner {
  max-width: 760px;
  text-align: center;
}

.custom-program-inner .section-title {
  margin-bottom: 16px;
}

.custom-program-inner p {
  font-size: clamp(1.0625rem, 1.4vw, 1.1875rem);
  color: var(--text-body);
  line-height: 1.8;
}

/* ---- 07 Proposal Form CTA (GHL embed placeholder) --------------------- */
.proposal-form-cta {
  background: var(--bg);
  padding: var(--section-pad) 0;
}

.proposal-inner {
  max-width: 720px;
}

.form-embed {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: clamp(40px, 6vw, 64px) 32px;
  background: var(--surface-light);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
}

.form-embed-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-bottom: 6px;
  border-radius: 50%;
  background: var(--icon-bg);
  color: var(--icon);
  font-size: 1.5rem;
}

.form-embed-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
}

.form-embed-note {
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 46ch;
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 760px) {
  .hoa-services-grid {
    grid-template-columns: 1fr;
  }
}
