/* ============================================================
   UTAH HERITAGE HVAC — New HVAC Installation Page
   new-install.css
   ============================================================ */

/* ── GeneratePress overrides ────────────────────────────── */
.site-content, .content-area, #primary,
.inside-article, .entry-content, .post, .page {
  padding: 0 !important; margin: 0 !important;
  width: 100% !important; max-width: 100% !important;
}
.site-main, .site, #page {
  padding: 0 !important; margin: 0 !important;
  width: 100% !important; max-width: 100% !important;
}
.entry-header, .page-header, .entry-title { display: none !important; }
.site-header, .site-footer, .site-info    { display: none !important; }

#uhh-new-install {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 0;
}


/* ── Hero ───────────────────────────────────────────────── */
.ni-hero {
  background-color: var(--navy);
  padding: 56px 32px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.ni-hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ni-hero-left .eyebrow { color: var(--teal); }

.ni-hero-left h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.ni-hero-left h1 span { color: var(--orange); }

.ni-hero-left > p {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 480px;
}

.ni-hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ni-hero-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}


/* ── Trust Bar ──────────────────────────────────────────── */
.ni-trust-bar {
  background-color: var(--orange);
  padding: 18px 32px;
}

.ni-trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.ni-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-right: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
}

.ni-trust-item:last-child { border-right: none; }

.ni-trust-item i {
  font-size: 20px;
  flex-shrink: 0;
}

.ni-trust-item span {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}


/* ── Climate / Process Section ──────────────────────────── */
.ni-climate-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.ni-climate-text p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 16px;
}

.ni-climate-text p:last-of-type { margin-bottom: 24px; }

/* Process steps */
.ni-process {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.ni-process h3 {
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 24px;
}

.ni-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ni-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.ni-step:last-child { border-bottom: none; padding-bottom: 0; }
.ni-step:first-child { padding-top: 0; }

.ni-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--teal);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ni-step h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
  line-height: 1.3;
}

.ni-step p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0;
}


/* ── Systems Grid ───────────────────────────────────────── */
.ni-systems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.ni-system-card {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 24px 20px;
  border-top: 3px solid var(--teal);
  transition: background-color var(--transition);
  display: flex;
  flex-direction: column;
}

.ni-system-card:hover { background: rgba(255,255,255,0.09); }

.ni-system-icon {
  width: 48px;
  height: 48px;
  background: rgba(74,158,166,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.ni-system-icon i { font-size: 24px; color: var(--teal); }

.ni-icon-orange { background: rgba(240,87,8,0.2) !important; }
.ni-icon-orange i { color: var(--orange) !important; }

.ni-system-card h3 {
  font-size: 17px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.ni-system-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

.ni-system-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-top: auto;
}

.ni-tag-teal   { background: rgba(74,158,166,0.25);  color: #7ecdd4; }
.ni-tag-orange { background: rgba(240,87,8,0.25);    color: #f4a97a; }


/* ── Brands + FAQ ───────────────────────────────────────── */
.ni-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.ni-brands p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 24px;
}

.ni-brand-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.ni-brand-pill {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.ni-area-strip {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.ni-area-strip i {
  font-size: 18px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.ni-area-strip p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
  margin: 0;
}

.ni-faq {
  display: flex;
  flex-direction: column;
  gap: 14px;
}


/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 768px) {

  .ni-hero          { grid-template-columns: 1fr; padding: 40px 20px; gap: 32px; }
  .ni-hero-right    { order: -1; }
  .ni-hero-img      { height: 220px; }

  .ni-trust-bar     { padding: 14px 20px; }
  .ni-trust-inner   { grid-template-columns: 1fr 1fr; gap: 8px; }
  .ni-trust-item    { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding: 8px 0; }
  .ni-trust-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.2); }
  .ni-trust-item:nth-last-child(-n+2) { border-bottom: none; }

  .ni-climate-inner { grid-template-columns: 1fr; gap: 32px; }

  .ni-systems-grid  { grid-template-columns: 1fr 1fr; gap: 14px; }

  .ni-bottom-grid   { grid-template-columns: 1fr; gap: 32px; }
}


/* ── Tablet ─────────────────────────────────────────────── */
@media (min-width: 769px) and (max-width: 1024px) {

  .ni-hero          { grid-template-columns: 1fr; gap: 32px; }
  .ni-hero-right    { order: -1; }
  .ni-climate-inner { grid-template-columns: 1fr; gap: 32px; }
  .ni-systems-grid  { grid-template-columns: repeat(2, 1fr); }
  .ni-bottom-grid   { grid-template-columns: 1fr; gap: 32px; }
}
