/* =========================================================================
   Bayer Heating and Cooling — Homepage
   Static rebuild of the WordPress/Elementor site (no WP, no Elementor, no PHP)
   ========================================================================= */

/* ---------------------------- Design tokens ---------------------------- */
:root {
  --navy: #124287;
  /* primary brand blue */
  --red: #c50405;
  /* CTA gradient end + FAQ answer links */
  --cyan: #06bed4;
  /* accent / active nav / inline links */
  --cyan-tint: rgba(6, 190, 212, 0.05);
  --gray-bg: #f5f5f5;
  /* installation workflow + FAQ bars */
  --text: #333333;
  /* default body text */
  --text-soft: #54595f;
  /* footer links */
  --white: #ffffff;

  --font-head: "Nunito Sans", sans-serif;
  /* h1, h2, nav */
  --font-card: "Nunito", sans-serif;
  /* card titles */
  --font-body: "Poppins", sans-serif;
  /* paragraphs */


  --container: 1440px;
  --gutter: 20px;
  --radius-img: 20px;
  --radius-btn: 10px;
  --section-pad: 100px;
}

/* ------------------------------- Reset --------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 26px;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  margin: 0;
}

p {
  margin: 0 0 1em;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  clip: auto;
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  z-index: 2000;
}

/* ------------------------------ Buttons -------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  padding: 12px 20px;
  border-radius: var(--radius-btn);
  border: 0;
  text-align: center;
  transition: background-color .3s ease, color .3s ease, transform .3s ease, box-shadow .3s ease;
}

.btn--primary {
  background: var(--navy);
  color: #fff;
}

.btn--primary:hover {
  background: var(--cyan);
  /* transform: translateY(-2px); */
}

.btn--white {
  background: #fff;
  color: var(--navy);
}

.btn--white:hover {
  background: var(--cyan);
  color: #fff;
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255, 255, 255, .2);
  color: #fff;
  border: 1px solid #fff;
}

.btn--ghost:hover {
  background: var(--cyan);
  color: var(--white);
}

/* ------------------------------- Header -------------------------------- */
.site-header {
  position: relative;
  z-index: 100;
  background: #fff;
}

.topbar {
  background: var(--navy);
  color: #fff;
}

.topbar__inner {
  display: flex;
  align-items: center;
  min-height: 46px;
}

.topbar__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.topbar__contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 26px;
  transition: opacity .3s ease;
}

.topbar__contact a:hover {
  opacity: .8;
}

.topbar__contact .ico {
  width: 15px;
  height: 15px;
  fill: #fff;
  flex: 0 0 auto;
}

.navbar {
  background: #fff;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 80px;
}

.brand img {
  width: 72px;
  height: auto;
}

.menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.menu>li {
  position: relative;
}

.menu>li>a {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--navy);
  padding: 8px 0;
  transition: color .3s ease;
}

.menu>li>a:hover {
  color: var(--cyan);
}

.menu>li.current-menu-item>a {
  color: var(--cyan);
}

/* dropdown caret — inline, directly after each label so spacing stays consistent */
.has-children>a::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  position: relative;
  top: -1px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform .3s ease;
}

.menu>li.has-children:hover>a::after {
  transform: rotate(180deg);
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  border-top: 3px solid var(--cyan);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  z-index: 50;
}

.menu>li.has-children:hover>.submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu li a {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  transition: background .2s ease, color .2s ease;
}

.submenu li a:hover {
  background: var(--cyan-tint);
  color: var(--cyan);
}

.submenu-toggle {
  display: none;
}

.navbar__cta {
  flex: 0 0 auto;
  font-weight: 500;
  text-transform: capitalize;
}

/* hamburger */
.nav-toggle {
  display: none;
  width: 44px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--navy);
  border-radius: 6px;
  padding: 9px;
  flex-direction: column;
  justify-content: space-between;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* -------------------------------- Hero --------------------------------- */
.hero {
  position: relative;
  background-color: var(--navy);
  background-size: cover;
  background-position: 50% 50%;
  color: #fff;
  padding: 120px 0;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--navy);
  opacity: .8;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 70px;
  line-height: 80px;
  max-width: 1210px;
  margin-bottom: 24px;
}

.hero__text {
  max-width: 950px;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* ------------------------- Section title (h2) -------------------------- */
.section-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 60px;
  line-height: 70px;
  letter-spacing: -.5px;
  color: var(--navy);
  margin-bottom: 24px;
}

.section-title--center {
  text-align: center;
}

.section-title a {
  color: inherit;
  transition: color .3s ease;
}

.section-title a:hover {
  color: var(--cyan);
}

/* --------------------- Split (two-column) sections --------------------- */
.split {
  padding: var(--section-pad) 0;
}

.split--tight-top {
  padding-top: 0;
}

.split--gray {
  background: var(--gray-bg);
}

.split__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split--flip .split__media {
  order: -1;
}

.split--gap-lg .split__inner {
  gap: 100px;
}

.split__text p {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 20px;
  color: #000;
}

.split__text .btn {
  margin-top: 12px;
}

/* single images that crop to a landscape frame (object-fit) */
img.rounded {
  border-radius: var(--radius-img);
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

/* "Local Expertise" boxed panel */
.split--boxed {
  padding: 70px 0;
}

.split--boxed .split__inner {
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, .5);
  padding: 50px;
}

/* image collages */
.collage {
  position: relative;
}

.collage__main {
  border-radius: var(--radius-img);
  width: 100%;
}

/* Section 1: main right, inset overlapping its left edge with a white frame */
.collage--inset {
  padding-left: 60px;
  padding-bottom: 30px;
}

.collage--inset .collage__main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  margin-left: auto;
}

.collage--inset .collage__inset {
  position: absolute;
  height: 300px;
  object-fit: cover;
  left: -40px;
  top: 15%;
  width: 36%;
  border-radius: var(--radius-img);
  border: 10px solid #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

/* Section 2: two images staggered diagonally (top-left + bottom-right) */
.collage--stagger {
  padding-right: 40px;
  padding-bottom: 40px;
}

.collage--stagger .collage__a {
  width: 60%;
  height: 300px;
  object-fit: cover;
  object-position: center center;
  border-radius: 20px 20px 20px 20px;
}

.collage--stagger .collage__b {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 368px;
  height: 250px;
  border-radius: var(--radius-img);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .15);

  border-style: solid;
  border-width: 15px 15px 15px 15px;
  border-color: var(--white);
  border-radius: 20px 20px 20px 20px;
}

/* --------------------------- Services cards ---------------------------- */
.services {
  background: var(--cyan-tint);
  padding: var(--section-pad) 0;
}

.services .section-title {
  margin-bottom: 40px;
}

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.card {
  background: var(--navy);
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  padding: 25px;
  color: #fff;
  transition: transform .3s ease, box-shadow .3s ease;
}

/* .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .45);
} */

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, .53);
  border-radius: 10px;
  padding: 15px;
}

.card__icon svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.card h3 {
  font-family: var(--font-card);
  font-weight: 700;
  font-size: 25px;
  line-height: 35px;
  margin-bottom: 10px;
}

.card p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  margin: 0;
}

.services__cta {
  text-align: center;
  margin-top: 50px;
}

/* -------------------------------- FAQ ---------------------------------- */
.faq {
  padding: var(--section-pad) 0;
}

.faq__inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 50px;
  align-items: start;
}

.faq__intro .section-title {
  color: #000;
  margin-bottom: 30px;
}

.faq__intro img {
  border-radius: var(--radius-img);
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.faq__item {
  background: var(--gray-bg);
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 17px;
  line-height: 26px;
  color: #111;
  padding: 21px 56px 21px 40px;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  color: #111;
  transition: transform .3s ease;
}

.faq__item[open] summary::after {
  content: "\2013";
}

.faq__answer {
  padding: 21px 40px;
  background: var(--white);
  border: 2px solid var(--gray-bg);
  border-radius: 0px;
}


.faq__answer p {
  margin: 0;
  font-size: 16px;
  line-height: 26px;
  color: var(--text);
}

.faq__answer a {
  color: var(--red);
}

/* ------------------------------- CTA ----------------------------------- */
.cta-section {
  padding: 0 0 var(--section-pad);
}

.cta-box {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  padding: 40px;
  background-image: url("../assets/images/4875.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(150deg, var(--navy) 50%, var(--red) 100%);
  opacity: .9;
}

.cta-box .split__inner {
  position: relative;
  z-index: 1;
  margin: 0;
  gap: 60px;
}

.cta-box .section-title {
  color: #fff;
}

.cta-box .section-title a {
  color: #fff;
}

.cta-box p {
  color: #fff;
}

.cta-box p a {
  color: var(--cyan);
}

.cta-box img.rounded {
  border-radius: var(--radius-img);
}

.cta-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 12px;
}

/* ------------------------------ Footer --------------------------------- */
.site-footer {
  background: #fff;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.1fr 1.4fr;
  gap: 40px;
  padding: 70px var(--gutter);
  font-family: "Nunito Sans", sans-serif;
}

.footer__brand img {
  width: 150px;
  margin-bottom: 18px;
}

.footer__about p {
  font-size: 16px;
  line-height: 26px;
  color: var(--text);
  max-width: 320px;
}

.footer__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 20px;
}

.footer__title--lg {
  font-size: 25px;
}

.footer__links li {
  margin-bottom: 12px;
}

.footer__links a {
  color: var(--text-soft);
  font-size: 16px;
  transition: color .3s ease;
}

.footer__links a:hover {
  color: var(--navy);
}

.footer__contact li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__contact .ico {
  width: 16px;
  height: 16px;
  fill: var(--navy);
  flex: 0 0 auto;
}

.footer__subscribe p {
  font-size: 16px;
  line-height: 26px;
  color: var(--text);
  margin-bottom: 18px;
}

.subscribe-form {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.subscribe-form input {
  flex: 1 1 auto;
  min-width: 0;
  background: #fff;
  border: 2px solid var(--navy);
  border-radius: 3px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
}

.subscribe-form input:focus {
  outline: none;
  border-color: var(--cyan);
}

.subscribe-form button {
  flex: 0 0 auto;
  width: 54px;
  background: var(--navy);
  border: 0;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .3s ease;
}

.subscribe-form button:hover {
  background: #0d3169;
}

.subscribe-form button svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.footer__bar {
  background: var(--navy);
  color: #fff;
}

.footer__bar .container {
  padding-top: 18px;
  padding-bottom: 18px;
}

.footer__bar p {
  margin: 0;
  text-align: center;
  font-size: 15px;
}

.footer__subscribe p,
.footer__links.footer__contact li svg,
.footer__links.footer__contact li a {
  color: #000;
  fill: #000;
}

.faq__item:last-child {
  margin: 0px;
}

/* =========================== Responsive ================================ */
@media (max-width: 1200px) {
  .hero__title {
    font-size: 56px;
    line-height: 66px;
  }

  .section-title {
    font-size: 46px;
    line-height: 56px;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --section-pad: 70px;
  }

  /* nav collapses to mobile menu */
  .nav-toggle {
    display: flex;
  }

  .navbar__cta {
    margin: unset;
  }

  .navbar__inner {
    justify-content: space-between;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .12);
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    margin: 0;
  }

  .main-nav.is-open {
    max-height: 80vh;
    overflow-y: auto;
  }

  .menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 6px 0;
  }

  .menu>li {
    border-bottom: 1px solid #eee;
  }

  .menu>li>a {
    display: block;
    padding: 14px 20px;
  }

  .has-children>a::after {
    display: none;
  }

  .submenu-toggle {
    display: block;
    position: absolute;
    top: 6px;
    right: 8px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 0;
    color: var(--navy);
  }

  .submenu-toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--navy);
    border-bottom: 2px solid var(--navy);
    transform: translate(-50%, -70%) rotate(45deg);
    transition: transform .3s ease;
  }

  .has-children.is-open>.submenu-toggle::after {
    transform: translate(-50%, -30%) rotate(225deg);
  }

  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height .3s ease;
    background: var(--cyan-tint);
  }

  .has-children.is-open>.submenu {
    max-height: 600px;
    padding: 4px 0;
  }

  .split__inner,
  .faq__inner,
  .cta-box .split__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split--gap-lg .split__inner {
    gap: 40px;
  }

  .split--flip .split__media {
    order: 0;
  }

  .split--tight-top {
    padding-top: var(--section-pad);
  }

  .split--boxed .split__inner {
    padding: 36px;
  }

  .collage--inset,
  .collage--stagger {
    padding: 0 40px 30px 40px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .split__inner {
    grid-template-columns: 1fr 1fr !important;
  }

  .collage--inset .collage__inset {
    width: 45%;
    height: 300px !important;
  }

  .collage--stagger {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .collage--stagger .collage__a,
  .collage--stagger .collage__b {
    width: 100%;
    height: 210px;
    border: 0px;
    object-fit: cover;
    object-position: top center;
  }

  .collage--stagger .collage__b {
    position: unset;
    height: 150px;
    object-position: center
  }

  .split__inner .collage--stagger {
    padding: 0px
  }

  .section-title {
    margin-bottom: 20px;
  }

  .split--flip.split--gray .split__media img {
    aspect-ratio: unset;
    height: 500px;
  }

  .section-title {
    font-size: 50px;
  }

  .split__text p {
    font-size: 16px;
  }

  .faq__intro .section-title {
    text-align: center;
  }

  .faq__intro img {
    height: 400px;
    object-position: top;
  }


  .split__inner {
    display: flex;
    flex-direction: column-reverse;
  }

  .split__media {
    width: 100%;
  }

  .split__text {
    text-align: center;
  }

  .split__media img {
    height: 400px;
    width: 100%;
    max-width: 100%;
    aspect-ratio: unset !important;
  }

  .cta-section__actions {
    justify-content: center;
  }

  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 36px;
  }

   .main-nav{
        display:block;
    }

    .nav-toggle{
        display:flex;
        order:2;
    }

    .navbar__cta{
        order:3;
        margin-left:16px;
    }

    .brand{
        order:1;
        margin-right:auto;
    }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-pad: 56px;
    --gutter: 16px;
  }

  .topbar__inner {
    justify-content: center;
  }

  .topbar__contact {
    justify-content: center;
    gap: 4px 20px;
    font-size: 14px;
  }

  .topbar__contact a {
    font-size: 14px;
  }

  .navbar__inner {
    min-height: 66px;
  }

  .hero {
    padding: 50px 0;
  }

  .hero__title {
    font-size: 40px;
    line-height: 50px;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .section-title {
    font-size: 30px;
    line-height: 38px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .card h3 {
    font-size: 22px;
    line-height: 30px;
  }

  .collage--inset .collage__main {
    width: 100%;
  }

  .collage--inset .collage__inset {
    display: none;
  }

  .collage--inset {
    padding: 0px;
  }

  .collage--inset .collage__main {
    height: 350px;
  }


  .split__media {
    order: 1;
    width: 100%;
  }

  .split__text {
    order: 2;
    text-align: center;
  }


  .collage--stagger {
    padding: 0 0 40px 0;
  }

  .collage--stagger .collage__a {
    width: 82%;
  }

  .collage--stagger .collage__b {
    width: 60%;
  }

  .cta-box {
    padding: 28px 22px;
  }

  .faq__item summary {
    font-size: 16px;
    padding: 18px 48px 18px 22px;
  }

  .faq__answer {
    padding: 0 22px 20px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 50px var(--gutter);
  }

  .subscribe-form button {
    width: 60px;
  }

  .cta-section__actions {
    flex-direction: column;
  }

  .cta-section__actions .btn {
    width: 100%;
  }

  .btn--primary {
    width: 100%;
  }

  .collage--stagger {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .collage--stagger .collage__a,
  .collage--stagger .collage__b {
    width: 100%;
    height: 250px;
    border: 0px;
    object-fit: cover;
    object-position: top center;
  }

  .collage--stagger .collage__b {
    position: unset;
  }

  .split--flip .split__media {
    padding: 0px;
  }

  .split--boxed .split__inner {
    padding: 20px;
  }

  .split--boxed {
    padding: 50px 20px;
  }

  .split__text p {
    font-size: 16px;
    margin: 0px;
  }

  .split--flip.split--gray .split__media img {
    aspect-ratio: unset;
    height: 350px;
  }

  .faq__inner img {
    height: 350px;
    object-position: top;
  }

  .faq {
    padding: 50px 0px;
  }

  .faq__answer {
    padding: 20px;
  }

  .cta-section__actions {
    gap: 0px;
  }

  .cta-box img.rounded {
    height: 350px;
    object-position: top;
  }

  .site-footer {
    text-align: center;
  }

  .footer__about p {
    width: 100%;
    max-width: 100%;
  }

  .footer__contact li {
    justify-content: center;
  }

  .footer__brand img {
    margin: auto auto 18px;
  }

  .cta-section {
    border-bottom: 1px solid var(--text);
  }

  .footer__bar .container {
    padding: 14px 0px;
  }

  .footer__grid {
    gap: 20px;
  }

  .footer__about p {
    margin-bottom: 30px;
  }

   .navbar__cta{
    display: none !important;
  }
}

@media only screen and (width:768px) {

  .hero__actions {
    flex-direction: row;
  }

  .cta-section__actions,
  .btn--primary,
  .hero__actions .btn {
    width: fit-content;
  }

  .collage--inset .collage__main {
    height: 400px;
  }

  .split--gap-lg {
    padding-bottom: 0px;
  }

  .collage--stagger {
    flex-direction: row;
  }

  .cards {
    grid-template-columns: 1fr 1fr;
  }

  
  .navbar__cta {
    display: none;
  }

  .section-title {
    font-size: 40px;
  }

  .split--flip.split--gray .split__media img {
    height: 500px;
  }

  .faq__intro .section-title {
    text-align: center
  }

  .faq__inner img {
    height: 400px;
  }

  .footer__grid {
    display: flex;
    flex-wrap: wrap;
  }

  .footer__col.footer__subscribe {
    width: 40%
  }

  .site-footer {
    text-align: left;
  }

  .footer__contact li {
    justify-content: start;
  }

  .footer__about p {
    text-align: center;
  }

  .cta-section__actions .btn {
    width: fit-content;
  }

  .cta-section__actions,
  .btn--primary,
  .hero__actions .btn {
    width: fit-content;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 20px;
    margin: auto;
  }

 

}

/* =========================================================================
   ABOUT PAGE — additional components (How It Works, Testimonials, Team)
   ========================================================================= */

/* How It Works — dark navy band, white cards with an overlapping icon badge */
.steps { background: var(--navy); padding: var(--section-pad) 0 calc(var(--section-pad) + 10px); }
.steps__title { color: #fff; margin-bottom: 90px; }
.steps__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; }
.step { position: relative; background: #fff; border-radius: 2px; padding: 78px 24px 34px; text-align: center; }
.step__icon { position: absolute; top: -55px; left: 50%; transform: translateX(-50%); display: inline-flex; align-items: center; justify-content: center; width: 110px; height: 110px; border-radius: 50%; background: var(--cyan); box-shadow: 0 10px 24px rgba(6,190,212,.35); }
.step__icon svg { width: 46px; height: 46px; fill: #fff; }
.step__eyebrow { display: block; color: var(--cyan); font-family: var(--font-head); font-weight: 600; font-size: 15px; margin-bottom: 8px; }
.step__title { font-family: var(--font-head); font-weight: 700; font-size: 24px; color: #0f1e33; margin-bottom: 12px; }
.step p { color: var(--text); font-size: 16px; line-height: 26px; margin: 0; }

/* Testimonials — centered heading + intro, 3 cards with avatar + speech bubble */
.testimonials { padding: var(--section-pad) 0; }
.testimonials .section-title { text-align: center; }
.testimonials__intro { max-width: 900px; margin: 0 auto 56px; text-align: center; color: var(--text); font-size: 16px; line-height: 28px; }
.testimonials__viewport { overflow: hidden; }
.testimonials__track { display: flex; gap: 30px; transition: transform .5s ease; }
.testi { flex: 0 0 calc((100% - 60px) / 3); box-sizing: border-box; }
.testi__head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.testi__quote { width: 32px; height: 32px; flex: 0 0 auto; align-self: flex-start; }
.testi__avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex: 0 0 auto; }
.testi__meta { display: flex; flex-direction: column; gap: 2px; }
.testi__name { font-family: var(--font-head); font-weight: 700; font-size: 18px; color: #0f1e33; }
.testi__role { color: var(--text-soft); font-size: 14px; }
.testi__stars { display: inline-flex; gap: 2px; margin-top: 3px; }
.testi__stars svg { width: 15px; height: 15px; fill: #f5a623; }
.testi__bubble { position: relative; border: 1px solid #e3e3e3; border-radius: 8px; background: #fff; padding: 26px 24px; }
.testi__bubble::before { content: ""; position: absolute; top: -9px; left: 30px; width: 16px; height: 16px; background: #fff; border-left: 1px solid #e3e3e3; border-top: 1px solid #e3e3e3; transform: rotate(45deg); }
.testi__bubble p { margin: 0; color: var(--text); font-size: 16px; line-height: 28px; }
.testimonials__dots { display: flex; justify-content: center; gap: 8px; margin-top: 34px; }
.testimonials__dots span { width: 9px; height: 9px; border-radius: 50%; background: #cfd6dd; }
.testimonials__dots span.is-active { background: var(--navy); }

/* Team — navy band, left-aligned white heading, photo + split body */
.team { background: var(--navy); padding: var(--section-pad) 0; }
.team .section-title { color: #fff; text-align: left; margin-bottom: 50px; }
.team__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.team__card { background: #fff; overflow: hidden; box-shadow: 0 12px 30px rgba(0,0,0,.18); }
.team__photo { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; }
.team__body { display: flex; gap: 18px; padding: 22px 24px 26px; }
.team__social { display: flex; flex-direction: column; gap: 12px; flex: 0 0 auto; }
.team__social a { display: inline-flex; width: 34px; height: 34px; align-items: center; justify-content: center; border-radius: 50%; background: var(--navy); transition: background .3s ease, transform .3s ease; }
.team__social a:hover { background: var(--cyan); transform: translateY(-2px); }
.team__social svg { width: 15px; height: 15px; fill: #fff; }
.team__info { flex: 1 1 auto; }
.team__role { display: block; color: var(--navy); font-family: var(--font-head); font-weight: 600; font-size: 14px; margin-bottom: 2px; }
.team__name { font-family: var(--font-head); font-weight: 700; font-size: 24px; color: #0f1e33; margin-bottom: 12px; }
.team__info p { color: var(--text); font-size: 15px; line-height: 24px; margin: 0; }

/* About components — responsive */
@media (max-width: 1024px) {
  .steps__grid { grid-template-columns: repeat(2, 1fr); row-gap: 95px; }
  .testi { flex-basis: calc((100% - 30px) / 2); }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .steps__grid { grid-template-columns: 1fr; row-gap: 95px; }
  .team__grid { grid-template-columns: 1fr; }
  .team .section-title { text-align: center; }
  .testi { flex-basis: 100%; }
}

/* =========================================================================
   MEET THE TEAM page — image collages, feature rows, check lists
   ========================================================================= */
.img-quad { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.img-quad { align-items: start; }
.img-quad img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 12px; }
.img-quad img:nth-child(2n) { transform: translateY(38px); }

.feature-row { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.feature-row__icon { flex: 0 0 auto; width: 52px; height: 52px; border-radius: 12px; background: var(--navy); display: inline-flex; align-items: center; justify-content: center; }
.feature-row__icon svg { width: 24px; height: 24px; fill: #fff; }
.feature-row h4 { font-family: var(--font-head); font-weight: 600; font-size: 20px; color: #5a6473; margin: 0; }

.rule { border: 0; border-top: 1px solid #e6e6e6; margin: 22px 0; }

.check-list { margin: 18px 0 24px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; color: var(--text); font-size: 16px; line-height: 24px; }
.check-list li::before { content: "\2713"; flex: 0 0 auto; width: 20px; height: 20px; border-radius: 50%; background: var(--navy); color: #fff; font-size: 11px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; margin-top: 2px; }

.img-duo { position: relative; padding-bottom: 34px; padding-right: 30px; }
.img-duo__main { width: 82%; margin-left: auto; border-radius: 14px; }
.img-duo__inset { position: absolute; left: 0; bottom: -18px; width: 46%; border-radius: 10px; border: 8px solid var(--navy); box-shadow: 0 10px 30px rgba(0,0,0,.25); }
.img-duo__badge { position: absolute; top: 30px; left: 0; background: #fff; color: var(--navy); border-radius: 6px; padding: 20px 26px; box-shadow: 0 12px 28px rgba(0,0,0,.22); max-width: 62%; }
.img-duo__badge h4 { font-family: var(--font-head); font-weight: 700; font-size: 18px; line-height: 24px; margin: 0; color: var(--navy); }

@media (max-width: 768px) {
  .img-duo__badge { position: static; max-width: none; margin-top: 16px; }
  .img-duo { padding-right: 0; }
  .img-duo__inset { position: static; width: 100%; border: 0; margin-top: 16px; box-shadow: none; }
}

/* Meet the Team — team band is light with a centered navy heading (differs from About) */
.meet-the-team .team { background: #eef1f6; }
.meet-the-team .team .section-title { color: var(--navy); text-align: center; }

/* Navy split section ("Serving Southern Illinois with Care") */
.split--navy { background: var(--navy); }
.split--navy .section-title { color: #fff; }
.split--navy .split__text p { color: rgba(255,255,255,.9); }
.split--navy .check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 30px; }
.split--navy .check-list li { color: #fff; }
.split--navy .check-list li::before { background: #fff; color: var(--navy); }
@media (max-width: 768px) { .split--navy .check-list { grid-template-columns: 1fr; } }


/* =========================================================================
   HVAC COMPANY parent — "Cities We Serve" grid (navy cards, 2-up)
   ========================================================================= */
.city-section { padding: var(--section-pad) 0; background: var(--cyan-tint); }
.city-section .section-title { text-align: center; }
.city-section__intro { text-align: center; max-width: 900px; margin: 0 auto 44px; color: var(--text); font-size: 16px; line-height: 26px; }
.city-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.city-card { display: grid; grid-template-columns: auto 1fr; column-gap: 16px; background: var(--navy); border-radius: 10px; padding: 22px 26px; box-shadow: 0 6px 18px rgba(0,0,0,.12); transition: transform .3s ease, box-shadow .3s ease; }
.city-card:hover { transform: translateY(-4px); box-shadow: 0 12px 26px rgba(0,0,0,.2); }
.city-card__icon { grid-column: 1; grid-row: 1 / 3; align-self: start; width: 48px; height: 48px; border-radius: 8px; background: rgba(255,255,255,.15); display: inline-flex; align-items: center; justify-content: center; }
.city-card__icon svg { width: 22px; height: 22px; fill: #fff; }
.city-card h3 { color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 22px; margin: 0 0 4px; }
.city-card p { color: rgba(255,255,255,.85); font-size: 15px; line-height: 22px; margin: 0; }
@media (max-width: 768px) { .city-grid { grid-template-columns: 1fr; } }

/* Services parent — light 3-up service cards with a button */
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--3 .card { background: #fff; border: 1px solid #e6ebf1; box-shadow: 0 10px 28px rgba(0,0,0,.07); text-align: center; padding: 44px 30px; }
.cards--3 .card__icon { background: var(--cyan-tint); border-radius: 50%; width: 74px; height: 74px; margin: 0 auto 20px; }
.cards--3 .card__icon svg { fill: var(--navy); width: 34px; height: 34px; }
.cards--3 .card h3 { color: var(--navy); }
.cards--3 .card p { color: var(--text); margin-bottom: 22px; }
@media (max-width: 1024px) { .cards--3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) { .cards--3 { grid-template-columns: 1fr; } }

/* Category pages — service icon grid (PNG icons) */
.svc-section { padding: var(--section-pad) 0; }
.svc-section .section-title { text-align: center; margin-bottom: 50px; }
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.svc-item { background: #fff; border: 0; border-radius: 20px; padding: 30px; text-align: center; box-shadow: 0 0 10px rgba(0,0,0,.5); transition: transform .3s ease, box-shadow .3s ease; }
.svc-item:hover { transform: translateY(-6px); box-shadow: 0 0 14px rgba(0,0,0,.55); }
.svc-item img { width: 64px; height: 64px; object-fit: contain; margin: 0 auto 16px; }
.svc-item h3 { font-family: var(--font-head); font-weight: 700; font-size: 20px; color: var(--navy); margin-bottom: 10px; }
.svc-item p { color: var(--text); font-size: 15px; line-height: 23px; margin: 0; }
@media (max-width: 1024px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .svc-grid { grid-template-columns: 1fr; } }
/* H&C hub — navy "Services We Provide" section with cyan left-aligned card titles (matches live) */
.svc-section--navy { background: var(--navy); }
.svc-section--navy .section-title { color: #fff; }
.svc-section--navy .svc-item { text-align: left; }
.svc-section--navy .svc-item img { margin: 0 0 16px; }
.svc-section--navy .svc-item h3 { color: var(--cyan); }
/* H&C hub — light steps section with navy step cards (matches live) */
.steps--light { background: var(--gray-bg); }
.steps--light .steps__title, .steps--light .section-title { color: var(--navy); }
.steps--light .step { background: var(--navy); }
.steps--light .step__title { color: #fff; }
.steps--light .step p { color: rgba(255,255,255,.9); }
.steps--light .step__eyebrow { color: var(--cyan); }

/* Category pages — info grid (problems) + repair/replace comparison */
.info-section { padding: var(--section-pad) 0; background: var(--gray-bg); }
.info-section .section-title { text-align: center; margin-bottom: 50px; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.info-card { background: #fff; border-radius: 12px; padding: 26px 28px; box-shadow: 0 6px 18px rgba(0,0,0,.06); }
.info-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 20px; color: var(--navy); margin-bottom: 8px; }
.info-card p { color: var(--text); font-size: 15px; line-height: 24px; margin: 0; }

/* Common Problems tab widget (pill selector + single panel) */
.problem-tabs-section { padding: var(--section-pad) 0; background: #ccd6e6; }
.problem-tabs-section .section-title { text-align: center; margin-bottom: 40px; }
.problem-tabs { max-width: 1300px; margin: 0 auto; }
.problem-tabs__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.problem-tab { display: inline-flex; align-items: center; gap: 12px; padding: 16px 30px; border: 0; border-radius: 40px; background: #e3e9f3; color: var(--navy); font-family: var(--font-body); font-weight: 700; font-size: 17px; line-height: 1.2; cursor: pointer; transition: background .25s ease, color .25s ease; }
.problem-tab svg { width: 18px; height: 18px; fill: var(--navy); flex: 0 0 auto; transition: fill .25s ease; }
.problem-tab:hover { background: #d3ddee; }
.problem-tab.is-active { background: var(--navy); color: #fff; }
.problem-tab.is-active svg { fill: #fff; }
.problem-tabs__panels { margin-top: 40px; }
.problem-panel { background: #fff; border-radius: 16px; padding: 40px 60px; box-shadow: 0 10px 30px rgba(18,66,135,.12); }
.problem-panel[hidden] { display: none; }
.problem-panel p { margin: 0; text-align: center; color: var(--text); font-size: 17px; line-height: 28px; }

/* Common Problems icon cards on navy (AC repair) */
.problem-cards-section { padding: var(--section-pad) 0; background: var(--navy); }
.problem-cards-section .section-title { color: #fff; margin-bottom: 50px; }
.problem-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.problem-card { background: #fff; border-radius: 16px; padding: 30px; display: flex; gap: 22px; align-items: flex-start; }
.problem-card__icon { flex: 0 0 auto; width: 64px; height: 64px; border-radius: 14px; background: var(--navy); display: inline-flex; align-items: center; justify-content: center; }
.problem-card__icon svg { width: 28px; height: 28px; fill: #fff; }
.problem-card__body h3 { font-family: var(--font-head); font-weight: 700; font-size: 20px; color: var(--navy); margin-bottom: 8px; }
.problem-card__body p { color: var(--text); font-size: 15px; line-height: 24px; margin: 0; }

/* Repair vs Replacement split (text left, stacked navy cards right) */
.decide-section { padding: var(--section-pad) 0; background: #fff; }
.decide { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 50px; align-items: start; }
.decide__intro .section-title { text-align: left; font-size: 40px; line-height: 1.2; margin: 0; }
.decide__intro .section-title .accent { color: var(--cyan); }
.decide__quote { margin: 30px 0 0; border-left: 4px solid var(--navy); background: #e6f3f8; padding: 24px 28px; font-style: italic; color: var(--text); font-size: 17px; line-height: 27px; }
.decide__cards { display: grid; gap: 30px; }
.decide__card { background: var(--navy); border-radius: 16px; padding: 30px 36px; display: flex; gap: 22px; align-items: flex-start; }
.decide__card--alt { align-items: center; }
.decide__icon { flex: 0 0 auto; width: 72px; height: 72px; border-radius: 14px; background: #fff; display: inline-flex; align-items: center; justify-content: center; }
.decide__icon svg { width: 30px; height: 30px; fill: var(--navy); }
.decide__card-body h3 { font-family: var(--font-head); font-weight: 700; font-size: 22px; color: #fff; margin-bottom: 10px; }
.decide__card-body p { color: rgba(255,255,255,.82); font-size: 15px; line-height: 24px; margin: 0; }

/* Light tint split background */
.split--tint { background: #f4fafb; }

/* Image collage (two overlapping rounded photos) */
.collage { position: relative; padding: 0 40px 40px 0; }
.collage__back { width: 82%; border-radius: 18px; display: block; box-shadow: 0 15px 40px rgba(0,0,0,.15); }
.collage__front { position: absolute; right: 0; bottom: 0; width: 56%; border-radius: 18px; box-shadow: 0 15px 40px rgba(0,0,0,.22); }

/* Spec bars (equipment / options list) */
.spec-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; }
.spec-list li { background: #e6e6e6; border-left: 6px solid var(--navy); border-radius: 0 10px 10px 0; padding: 18px 22px; color: var(--text); font-size: 16px; line-height: 24px; }

/* Media with a centered overlaid note card */
.media-note-wrap { position: relative; }
.media-note { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); background: #e6e6e6; border-radius: 14px; padding: 26px 28px; text-align: center; max-width: 66%; }
.media-note svg { width: 34px; height: 34px; fill: var(--navy); margin-bottom: 10px; }
.media-note p { margin: 0; color: var(--navy); font-weight: 600; font-size: 16px; line-height: 22px; }

/* "Systems We Install" — light-tint section with navy cards */
.install-section { padding: var(--section-pad) 0; background: #eef6f9; }
.install-section .section-title { text-align: center; margin-bottom: 50px; }
.install-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.install-card { background: var(--navy); border-radius: 16px; padding: 34px 36px; }
.install-card h3 { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; font-size: 22px; color: #fff; margin-bottom: 14px; }
.install-card p { color: rgba(255,255,255,.85); font-size: 15px; line-height: 24px; margin: 0; }
.install-split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.install-split__media .section-title { text-align: left; margin: 0 0 24px; }
.install-split__media img { width: 100%; }
.install-split__cards { display: grid; gap: 24px; }

/* Maintenance tune-up cards (icon + centered title) */
.tune-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.tune-card { background: var(--navy); border-radius: 16px; padding: 40px 36px; text-align: center; }
.tune-card__icon { width: 60px; height: 60px; border-radius: 12px; background: rgba(255,255,255,.15); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.tune-card__icon svg { width: 28px; height: 28px; fill: #fff; }
.tune-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 22px; color: #fff; margin-bottom: 14px; }
.tune-card p { color: rgba(255,255,255,.85); font-size: 15px; line-height: 24px; margin: 0; }

/* Plan benefits: navy check bars */
.benefit-bars { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; }
.benefit-bars li { background: var(--navy); border-radius: 12px; padding: 20px 24px; display: flex; align-items: center; gap: 18px; color: #fff; font-size: 16px; line-height: 22px; }
.benefit-bars li::before { content: "\2713"; flex: 0 0 auto; width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.15); color: #fff; font-size: 18px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; }

/* No-heat cause cards: navy section, white icon cards */
.cause-section { padding: var(--section-pad) 0; background: var(--navy); }
.cause-section .section-title { color: #fff; text-align: center; margin-bottom: 50px; }
.cause-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.cause-card { background: #fff; border-radius: 16px; padding: 24px 30px; display: flex; gap: 20px; align-items: center; }
.cause-card__icon { flex: 0 0 auto; width: 40px; display: inline-flex; align-items: center; justify-content: center; }
.cause-card__icon svg { width: 38px; height: 38px; fill: var(--navy); }
.cause-card__body h3 { font-family: var(--font-head); font-weight: 700; font-size: 19px; color: var(--navy); margin: 0 0 2px; }
.cause-card__body p { margin: 0; color: var(--navy); font-size: 15px; }

/* Icon problem cards: light-tint section, navy cards w/ light icon box */
.iconcard-section { padding: var(--section-pad) 0; background: #eef6f9; }
.iconcard-section .section-title { text-align: center; margin-bottom: 50px; }
.iconcard-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.iconcard { background: var(--navy); border-radius: 16px; padding: 32px 34px; }
.iconcard__icon { width: 54px; height: 54px; border-radius: 12px; background: rgba(255,255,255,.15); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.iconcard__icon svg { width: 26px; height: 26px; fill: #fff; }
.iconcard h3 { font-family: var(--font-head); font-weight: 700; font-size: 20px; color: #fff; margin-bottom: 10px; }
.iconcard p { color: rgba(255,255,255,.85); font-size: 15px; line-height: 24px; margin: 0; }

/* Guide-page cards: white cards, cyan icon box + cyan title */
.guide-section { padding: var(--section-pad) 0; }
.guide-grid { display: grid; gap: 26px; grid-template-columns: repeat(4, 1fr); }
.guide-grid--3 { grid-template-columns: repeat(3, 1fr); }
.guide-card { background: #fff; border: 1px solid #e6ebf1; border-radius: 14px; padding: 30px 28px; box-shadow: 0 8px 24px rgba(0,0,0,.05); }
.guide-card__icon { width: 54px; height: 54px; border-radius: 10px; background: var(--cyan); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.guide-card__icon svg { width: 28px; height: 28px; fill: var(--navy); }
.guide-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 19px; color: var(--cyan); margin-bottom: 12px; }
.guide-card p { color: var(--text); font-size: 15px; line-height: 24px; margin: 0; }
@media (max-width: 1024px) { .guide-grid, .guide-grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .guide-grid, .guide-grid--3 { grid-template-columns: 1fr; } }

/* Navy check cards (title + description) for boxed split */
.checkcards { display: grid; gap: 22px; }
.checkcard { background: var(--navy); border-radius: 14px; padding: 24px 28px; }
.checkcard__head { display: flex; align-items: center; gap: 16px; margin-bottom: 10px; }
.checkcard__icon { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 10px; background: rgba(255,255,255,.15); display: inline-flex; align-items: center; justify-content: center; }
.checkcard__icon svg { width: 22px; height: 22px; fill: #fff; }
.checkcard h3 { font-family: var(--font-head); font-weight: 700; font-size: 20px; color: #fff; margin: 0; }
.checkcard p { color: rgba(255,255,255,.85); font-size: 15px; line-height: 24px; margin: 0; }

/* Repair vs Replacement joined two-tone panel (furnace) */
.compare-section__title { text-align: center; margin-bottom: 8px; }
.twotone { display: grid; grid-template-columns: 1fr 1fr; border-radius: 24px; overflow: hidden; box-shadow: 0 20px 50px rgba(18,66,135,.12); margin-top: 44px; }
.twotone__half { padding: 50px; }
.twotone__half--light { background: #f2f2f2; }
.twotone__half--navy { background: var(--navy); }
.twotone__icon { width: 60px; height: 60px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.twotone__icon svg { width: 26px; height: 26px; fill: var(--navy); }
.twotone__half--light .twotone__icon { background: #d3ddee; }
.twotone__half--navy .twotone__icon { background: #fff; }
.twotone__half h3 { font-family: var(--font-head); font-weight: 700; font-size: 26px; margin-bottom: 18px; }
.twotone__half--light h3 { color: var(--navy); }
.twotone__half--navy h3 { color: #fff; }
.twotone__half p { font-size: 15px; line-height: 25px; margin: 0 0 16px; }
.twotone__half p:last-child { margin-bottom: 0; }
.twotone__half--light p { color: var(--text); }
.twotone__half--navy p { color: rgba(255,255,255,.85); }
.twotone__quote { margin: 30px 0 0; border-left: 5px solid var(--navy); background: #d6e2f3; padding: 28px 34px; border-radius: 0 10px 10px 0; }
.twotone__quote p { margin: 0 0 14px; color: var(--text); font-size: 17px; line-height: 27px; }
.twotone__quote cite { font-style: normal; display: block; color: var(--navy); font-size: 15px; line-height: 1.5; }
.twotone__quote cite strong { color: var(--navy); }

.compare-section { padding: var(--section-pad) 0; }
.compare-section .section-title { text-align: center; }
.compare-section__sub { text-align: center; color: var(--text); max-width: 760px; margin: 10px auto 44px; font-size: 18px; }
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.compare__card { border: 0; border-radius: 0; padding: 0; box-shadow: none; background: transparent; }
.compare__icon { width: 56px; height: 56px; border-radius: 12px; background: var(--cyan-tint); display: inline-flex; align-items: center; justify-content: center; }
.compare__icon svg { width: 28px; height: 28px; fill: var(--navy); }
.compare__card h3 { font-family: var(--font-head); font-weight: 700; font-size: 24px; color: var(--navy); margin: 14px 0 12px; }
.compare__card p { color: var(--text); font-size: 15px; line-height: 24px; margin: 0 0 12px; }
.compare__note { text-align: center; max-width: 860px; margin: 34px auto 0; color: var(--text); font-style: italic; }
.compare__review { text-align: center; margin: 14px auto 0; color: var(--navy); }
.compare__review strong { font-family: var(--font-head); font-size: 18px; }
.compare__review span { color: var(--text-soft); font-size: 14px; }
.local-quote { border-left: 4px solid var(--cyan); padding: 6px 0 6px 20px; margin: 0 0 20px; font-style: italic; color: var(--text); }
.local-quote cite { display: block; margin-top: 8px; font-style: normal; font-weight: 700; color: var(--navy); font-size: 14px; }
@media (max-width: 768px) { .info-grid, .compare { grid-template-columns: 1fr; } }

/* =========================================================================
   CONTACT page
   ========================================================================= */
/* Contact section 1 — outlined box (navy border, transparent fill) */
.split--outline .split__inner { border: 1px solid var(--navy); border-radius: 15px; padding: 25px; align-items: center; box-shadow: 0 0 17px -4px rgba(0,0,0,.5); }

.contact-grid { display: grid; grid-template-columns: 0.67fr 1fr; gap: 24px; align-items: stretch; }

/* Left: navy "How to Reach Us" panel */
.reach-panel { background: var(--navy); border-radius: 25px; padding: 40px; }
.reach-panel .section-title { color: #fff; }
.reach-list { display: grid; gap: 22px; margin-top: 28px; }
.reach-item { display: flex; gap: 18px; align-items: center; background: transparent; border: 0; border-radius: 0; padding: 0; box-shadow: none; }
.reach-item__icon { width: 58px; height: 58px; border-radius: 16px; background: rgba(146,177,221,.24); border: 0; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.reach-item__icon svg { width: 24px; height: 24px; fill: #fff; }
.reach-item h3 { font-family: var(--font-head); font-weight: 900; font-size: 20px; color: rgba(255,255,255,.88); margin: 0 0 3px; }
.reach-item p { margin: 0; color: rgba(255,255,255,.88); font-size: 15px; }
.reach-item p a { color: rgba(255,255,255,.88); }

/* Right: Service Area light-blue cards */
.area-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 24px 0 20px; }
.area-card { background: rgba(90,157,243,.26); border-radius: 20px; padding: 20px; }
.area-card h4 { font-family: var(--font-head); font-weight: 700; font-size: 35px; color: var(--navy); margin-bottom: 14px; }
.area-card ul li { padding: 5px 0; color: var(--text); }
.area-note { background: rgba(75,132,214,.51); border-radius: 15px; padding: 24px; }
.area-note p { color: var(--text); font-size: 15px; margin: 0 0 12px; }
.area-note p:last-child { margin-bottom: 0; }

/* Form + Hours two-column joined block */
.form-block { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; border-radius: 25px; overflow: hidden; box-shadow: 0 0 12px -2px rgb(123,155,216); }
.form-card { background: #fff; padding: 44px 40px; }
.form-card .section-title { font-size: 50px; margin-bottom: 26px; }

.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .full { grid-column: 1 / -1; }
.contact-form label { display: block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 6px; font-family: var(--font-head); }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid #d5dbe2; border-radius: 5px; padding: 10px 14px; font-family: var(--font-body); font-size: 15px; color: var(--text); background: #fff; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--cyan); }
.contact-form textarea { min-height: 90px; resize: vertical; }
.contact-form .btn { width: 100%; border-radius: 3px; }

/* Hours image panel with navy overlay */
.hours-panel { position: relative; background: url("../assets/images/CTA-customer.jpg") center/cover no-repeat; color: #fff; display: flex; align-items: flex-end; padding: 44px 40px; }
.hours-panel::before { content: ""; position: absolute; inset: 0; background: rgba(18,66,135,.78); }
.hours-panel__inner { position: relative; z-index: 1; width: 100%; }
.hours-panel h2 { font-family: var(--font-head); font-weight: 800; font-size: 46px; color: #fff; margin: 0 0 22px; }
.hours-card { display: flex; gap: 16px; align-items: flex-start; background: #fff; border-radius: 12px; padding: 20px 22px; margin-top: 16px; }
.hours-card__icon { width: 26px; flex: 0 0 auto; }
.hours-card__icon svg { width: 24px; height: 24px; fill: var(--navy); }
.hours-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 17px; color: #111; margin: 0 0 4px; }
.hours-card p { color: var(--text-soft); font-size: 14px; margin: 0; line-height: 1.5; }

.steps-list { counter-reset: step; margin: 22px 0; }
.steps-list li { position: relative; padding: 4px 0 18px 46px; counter-increment: step; color: var(--text); line-height: 24px; }
.steps-list li::before { content: counter(step); position: absolute; left: 0; top: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--navy); color: #fff; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; font-size: 14px; }

@media (max-width: 1024px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } .form-block { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .contact-form, .area-cards { grid-template-columns: 1fr; } }

/* Contact — "What to Expect" navy band with white card */
.expect-section { background: var(--navy); }
.expect-section .section-title { color: #fff; }
.expect-section > .container > p { color: rgba(255,255,255,.9); }
.expect-section > .container > p a { color: var(--cyan); }
.expect-card { background: #fff; border-radius: 30px; padding: 30px; margin-top: 34px; }
.expect-card .check-list { margin: 0; }
.expect-card .check-list li { color: var(--text); align-items: flex-start; gap: 18px; margin-bottom: 18px; }
.expect-card .check-list li::before { background: transparent; color: var(--navy); width: auto; height: auto; border-radius: 0; font-size: 18px; margin-top: 0; }
.expect-note { color: var(--navy); font-style: italic; font-weight: 700; margin: 20px 0 0; }
