/* =================================================================
   BOB BOLDT HVAC, SERVICE PAGE STYLES
   All classes prefixed .bbhvac- to avoid conflict with Oxygen Builder.
   Paste into: Oxygen → Manage → Stylesheets → Add Stylesheet "bbhvac-service"
   Or enqueue via functions.php (see WORDPRESS_INTEGRATION.md).
   ================================================================= */

/* ---------------------------------------------------------
   DESIGN TOKENS, matched to live bobhvac.com
   --------------------------------------------------------- */
:root {
  --bbhvac-blue-900: #011a26;
  --bbhvac-blue-800: #044968;
  --bbhvac-blue-600: #427aa1;
  --bbhvac-blue-500: #6799b2;
  --bbhvac-blue-200: #cfe7f8;
  --bbhvac-blue-100: #eff4fb;
  --bbhvac-orange-700: #be7411;
  --bbhvac-orange-500: #e0952e;
  --bbhvac-orange-100: #faeedf;
  --bbhvac-text: #2b2c28;
  --bbhvac-text-soft: #3b3c38;
  --bbhvac-text-muted: #898989;
  --bbhvac-border: #dddddd;
  --bbhvac-star: #f5b800;
  --bbhvac-radius-pill: 50px;
  --bbhvac-radius: 10px;
  --bbhvac-shadow-sm: 0 2px 6px rgba(4,73,104,0.08);
  --bbhvac-shadow: 0 8px 24px rgba(4,73,104,0.10);
  --bbhvac-maxw: 1200px;
  --bbhvac-section-y: 80px;
}

/* ---------------------------------------------------------
   Scoped layout (applies only inside bbhvac-* elements)
   --------------------------------------------------------- */
.bbhvac-container {
  max-width: var(--bbhvac-maxw);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.bbhvac-section { padding: var(--bbhvac-section-y) 0; box-sizing: border-box; }
@media (max-width: 768px) { :root { --bbhvac-section-y: 56px; } }

/* Keep elements inside the service page normalized */
[class^="bbhvac-"],
[class*=" bbhvac-"] {
  box-sizing: border-box;
}
.bbhvac-section *,
.bbhvac-hero *,
.bbhvac-local-banner *,
.bbhvac-cta-band *,
.bbhvac-breadcrumbs *,
.bbhvac-sticky-mobile-cta * { box-sizing: border-box; }

/* Headings inside our sections override Oxygen defaults */
.bbhvac-section h1, .bbhvac-hero h1,
.bbhvac-section h2, .bbhvac-hero h2, .bbhvac-cta-band h2,
.bbhvac-section h3, .bbhvac-hero h3 {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1;
  margin: 0 0 .5em;
  font-weight: 700;
}
.bbhvac-hero h1 { font-size: clamp(2rem, 4.6vw, 3.2rem); line-height: 1.1; font-weight: 900; color: #ffffff; margin-bottom: 18px; }
.bbhvac-section h2, .bbhvac-hero h2, .bbhvac-cta-band h2 {
  font-size: clamp(2rem, 3.6vw, 2.56rem);
  color: var(--bbhvac-orange-500);
  text-align: center;
  font-weight: 700;
}
@media (max-width: 768px) {
  .bbhvac-section h2, .bbhvac-hero h2, .bbhvac-cta-band h2 { font-size: 2rem; }
}
.bbhvac-section h3 {
  font-size: 1.5rem;
  color: var(--bbhvac-blue-800);
  line-height: 1.15;
}

.bbhvac-section p, .bbhvac-hero p { margin: 0 0 1em; color: var(--bbhvac-text); line-height: 1.6; }

.bbhvac-section-head { text-align: center; max-width: 780px; margin: 0 auto 36px; }
.bbhvac-section-head h2 { margin-bottom: 14px; }
.bbhvac-section-head p { color: var(--bbhvac-text-soft); font-size: 1.05rem; }
.bbhvac-ornament {
  width: 80px; height: 4px;
  background: var(--bbhvac-orange-500);
  margin: 12px auto 18px;
  border-radius: 2px;
}

.bbhvac-eyebrow {
  display: inline-block;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bbhvac-orange-500);
  margin-bottom: 6px;
}

/* ---------------------------------------------------------
   BUTTONS (signature raised-pill from live site)
   --------------------------------------------------------- */
.bbhvac-btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: 8px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700; font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .02em; line-height: 1;
  padding: 15px 24px;
  border-radius: var(--bbhvac-radius-pill);
  border: 0;
  border-bottom: 6px solid;
  cursor: pointer; text-align: center;
  transition: margin-top .25s, border-bottom-width .25s, background-color .25s, color .25s;
  margin-top: 0;
  min-width: 240px;
  text-decoration: none;
}
.bbhvac-btn:hover { margin-top: 6px; border-bottom-width: 0; text-decoration: none; }

.bbhvac-btn-primary {
  background: var(--bbhvac-orange-100);
  color: var(--bbhvac-orange-500);
  border-bottom-color: var(--bbhvac-orange-500);
}
.bbhvac-btn-primary:hover { color: var(--bbhvac-orange-700); background: var(--bbhvac-orange-100); }

.bbhvac-btn-secondary {
  background: var(--bbhvac-blue-200);
  color: var(--bbhvac-blue-800);
  border-bottom-color: var(--bbhvac-blue-800);
}
.bbhvac-btn-secondary:hover { color: var(--bbhvac-blue-800); }

.bbhvac-btn-transparent {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-bottom: 6px solid #ffffff;
}
.bbhvac-btn-transparent:hover { background: #ffffff; color: var(--bbhvac-blue-800); }

/* ---------------------------------------------------------
   3. BREADCRUMBS
   --------------------------------------------------------- */
.bbhvac-breadcrumbs {
  padding: 12px 0;
  background: var(--bbhvac-blue-100);
  font-size: .85rem;
  color: var(--bbhvac-text-soft);
}
.bbhvac-breadcrumbs ol {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.bbhvac-breadcrumbs li:not(:last-child)::after {
  content: "›"; margin-left: 8px; color: var(--bbhvac-blue-500);
}
.bbhvac-breadcrumbs a { color: var(--bbhvac-blue-800); font-weight: 500; text-decoration: none; }
.bbhvac-breadcrumbs [aria-current="page"] { color: var(--bbhvac-text); font-weight: 700; }

/* ---------------------------------------------------------
   4. HERO
   --------------------------------------------------------- */
.bbhvac-hero {
  /* Real Bob Boldt technicians on an Eagan job site (from bobhvac.com media library).
     To swap later, replace the url() with a different media library URL. */
  background:
    linear-gradient(135deg, rgba(1,26,38,0.78) 0%, rgba(4,73,104,0.62) 100%),
    url('https://www.bobhvac.com/wp-content/uploads/2026/01/Improve-Your-4.jpg') center/cover no-repeat;
  color: #ffffff !important;
  padding: 72px 0 60px;
}
/* Heating hub override, swap to the Bob Boldt truck / Eagan city sign photo */
body.page .bbhvac-hero.bbhvac-hero--heating,
.bbhvac-hero.bbhvac-hero--heating {
  background:
    linear-gradient(135deg, rgba(1,26,38,0.80) 0%, rgba(4,73,104,0.68) 100%),
    url('https://www.bobhvac.com/wp-content/uploads/2026/01/Improve-Your-5.jpg') center/cover no-repeat;
}
/* !important below protects against Oxygen's global .ct-section / p styles that win specificity */
.bbhvac-hero h1 { color: #ffffff !important; }
.bbhvac-hero p,
.bbhvac-hero .bbhvac-hero-sub { color: #d5e6ef !important; }
.bbhvac-hero .bbhvac-eyebrow { color: #e0952e !important; }
.bbhvac-hero-sub {
  font-size: 1.2rem; max-width: 680px;
  color: #d5e6ef !important; margin-bottom: 28px; line-height: 1.5;
}
.bbhvac-hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.bbhvac-hero-trust-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px; max-width: 880px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--bbhvac-radius);
  padding: 20px;
}
.bbhvac-trust-item {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px;
}
.bbhvac-trust-item strong { font-size: 1.05rem; color: #ffffff; }
.bbhvac-trust-item span { font-size: .78rem; color: #adc2cf; }
.bbhvac-trust-icon {
  width: 42px; height: 42px;
  background: var(--bbhvac-orange-500);
  color: #ffffff;
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 6px;
}
.bbhvac-trust-icon svg { width: 22px; height: 22px; }
@media (max-width: 768px) {
  .bbhvac-hero-trust-ribbon { grid-template-columns: repeat(2, 1fr); }
}

/* 2-column hero layout with above-the-fold contact form */
.bbhvac-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 40px;
  align-items: start;
}
.bbhvac-hero-copy { min-width: 0; }
.bbhvac-hero-form-card {
  background: #ffffff;
  color: var(--bbhvac-text);
  border-radius: var(--bbhvac-radius);
  padding: 22px 22px 20px;
  box-shadow: 0 14px 34px rgba(0,0,0,.28);
  /* Explicit positioning to prevent Oxygen or parent styles
     from making this sticky/fixed and overlapping the site header */
  position: static !important;
  z-index: auto;
}
.bbhvac-hero-form-card h3 {
  color: var(--bbhvac-blue-800) !important;
  font-size: 1.35rem;
  margin: 4px 0 4px;
  text-align: left;
  line-height: 1.2;
}
.bbhvac-hero-form-card p {
  color: var(--bbhvac-text-soft) !important;
  font-size: .9rem;
  margin-bottom: 14px;
  line-height: 1.4;
}
.bbhvac-hero-form-card .bbhvac-eyebrow {
  font-size: .72rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0;
}
.bbhvac-hero-form-card .bbhvac-form-group { margin-bottom: 10px; }
.bbhvac-hero-form-card label {
  display: block;
  font-size: .74rem;
  font-weight: 700;
  color: var(--bbhvac-text);
  margin-bottom: 3px;
}
.bbhvac-hero-form-card input,
.bbhvac-hero-form-card select {
  width: 100%;
  padding: 9px 11px;
  border: 1px solid #d7dde3;
  border-radius: 7px;
  font-family: inherit;
  font-size: .92rem;
  background: #ffffff;
  color: var(--bbhvac-text);
}
.bbhvac-hero-form-card input:focus,
.bbhvac-hero-form-card select:focus {
  outline: none;
  border-color: var(--bbhvac-orange-500);
  box-shadow: 0 0 0 3px rgba(224,149,46,.18);
}
.bbhvac-hero-form-card button[type="submit"] {
  padding: 12px 20px;
  min-width: 0;
  font-size: .92rem;
}
.bbhvac-hero-form-card .bbhvac-form-note {
  font-size: .7rem;
  color: var(--bbhvac-text-muted) !important;
  margin-top: 8px;
  margin-bottom: 0;
  text-align: center;
}
@media (max-width: 960px) {
  .bbhvac-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .bbhvac-hero-form-card { max-width: 500px; margin: 0 auto; width: 100%; }
}

/* ---------------------------------------------------------
   5. LOCAL BANNER
   --------------------------------------------------------- */
.bbhvac-local-banner {
  background: var(--bbhvac-orange-500);
  color: #ffffff;
  padding: 18px 0;
  font-weight: 500;
}
.bbhvac-local-banner .bbhvac-container {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; text-align: center; flex-wrap: wrap;
}
.bbhvac-local-banner a { color: #ffffff; font-weight: 700; text-decoration: underline; }
.bbhvac-local-banner svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ---------------------------------------------------------
   6. INTRO / SIGNS
   --------------------------------------------------------- */
.bbhvac-intro-content { max-width: 820px; margin: 0 auto 40px; text-align: center; }
.bbhvac-intro-content p { font-size: 1.08rem; color: var(--bbhvac-text); }
.bbhvac-intro-content strong { color: var(--bbhvac-blue-800); }

.bbhvac-signs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px; margin-top: 36px;
}
.bbhvac-sign-card {
  background: #ffffff;
  border: 1px solid var(--bbhvac-border);
  border-radius: var(--bbhvac-radius);
  padding: 26px; text-align: center;
  box-shadow: var(--bbhvac-shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.bbhvac-sign-card:hover { transform: translateY(-3px); box-shadow: var(--bbhvac-shadow); }
.bbhvac-sign-icon {
  width: 56px; height: 56px;
  background: var(--bbhvac-blue-200);
  color: var(--bbhvac-blue-800);
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 16px;
}
.bbhvac-sign-icon svg { width: 26px; height: 26px; }
.bbhvac-sign-card h3 { font-size: 1.15rem; margin-bottom: 8px; color: var(--bbhvac-blue-800); }
.bbhvac-sign-card p { color: var(--bbhvac-text-soft); font-size: .95rem; margin: 0; }

/* ---------------------------------------------------------
   7. DIFFERENTIATORS (light blue section)
   --------------------------------------------------------- */
.bbhvac-differentiators { background: var(--bbhvac-blue-200); }
.bbhvac-diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 16px;
}
@media (max-width: 900px) { .bbhvac-diff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .bbhvac-diff-grid { grid-template-columns: 1fr; } }
.bbhvac-diff-card {
  background: #ffffff;
  border-radius: var(--bbhvac-radius);
  padding: 30px 26px; text-align: center;
  border-bottom: 5px solid var(--bbhvac-orange-500);
  box-shadow: var(--bbhvac-shadow-sm);
}
.bbhvac-diff-icon {
  width: 60px; height: 60px;
  background: var(--bbhvac-orange-500); color: #ffffff;
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 16px;
}
.bbhvac-diff-icon svg { width: 28px; height: 28px; }
.bbhvac-diff-card h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--bbhvac-blue-800); }
.bbhvac-diff-card p { color: var(--bbhvac-text-soft); font-size: .95rem; margin: 0; }

/* ---------------------------------------------------------
   8. PROCESS
   --------------------------------------------------------- */
.bbhvac-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px; margin-top: 20px;
  counter-reset: step;
}
@media (max-width: 900px) { .bbhvac-process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .bbhvac-process-steps { grid-template-columns: 1fr; } }
.bbhvac-step-card {
  background: #ffffff;
  border: 1px solid var(--bbhvac-border);
  border-radius: var(--bbhvac-radius);
  padding: 32px 22px 22px; text-align: center;
  position: relative;
  box-shadow: var(--bbhvac-shadow-sm);
}
.bbhvac-step-card::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -22px; left: 50%; transform: translateX(-50%);
  width: 44px; height: 44px;
  background: var(--bbhvac-orange-500); color: #ffffff;
  border-radius: 50%;
  font-weight: 900; font-size: 1.2rem;
  display: grid; place-items: center;
  box-shadow: var(--bbhvac-shadow);
}
.bbhvac-step-card h3 { font-size: 1.15rem; margin: 14px 0 8px; color: var(--bbhvac-blue-800); }
.bbhvac-step-card p { color: var(--bbhvac-text-soft); font-size: .95rem; margin: 0; }

/* ---------------------------------------------------------
   9. PRICING
   --------------------------------------------------------- */
.bbhvac-pricing { background: var(--bbhvac-blue-200); }
.bbhvac-pricing-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px; align-items: center;
}
@media (max-width: 900px) { .bbhvac-pricing-grid { grid-template-columns: 1fr; } }
.bbhvac-pricing-copy h2 { text-align: left; }
@media (max-width: 900px) { .bbhvac-pricing-copy h2 { text-align: center; } }
.bbhvac-pricing-list { list-style: none; padding: 0; margin: 20px 0 26px; }
.bbhvac-pricing-list li {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 12px; color: var(--bbhvac-text); font-size: 1rem;
}
.bbhvac-pricing-list svg { color: var(--bbhvac-blue-800); flex-shrink: 0; margin-top: 3px; }
.bbhvac-pricing-list strong { color: var(--bbhvac-blue-800); }

.bbhvac-promo-card {
  background: var(--bbhvac-blue-800); color: #ffffff;
  border-radius: 20px;
  padding: 36px 32px; text-align: center;
  box-shadow: 0 18px 40px rgba(1,26,38,0.25);
  border-bottom: 8px solid var(--bbhvac-blue-900);
  position: relative; overflow: hidden;
}
.bbhvac-promo-card::before {
  content: ""; position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  background: var(--bbhvac-orange-500);
  opacity: .25; border-radius: 50%;
}
.bbhvac-promo-card .bbhvac-eyebrow { color: var(--bbhvac-orange-500); }
.bbhvac-promo-card h3 { color: #ffffff; font-size: 1.5rem; margin-bottom: 4px; }
.bbhvac-promo-amount {
  font-size: 3.4rem; font-weight: 900; color: var(--bbhvac-orange-500);
  line-height: 1; margin: 12px 0 10px;
}
.bbhvac-promo-card p { color: #d5e6ef; margin-bottom: 22px; }

/* ---------------------------------------------------------
   10. CTA BAND
   --------------------------------------------------------- */
.bbhvac-cta-band {
  background: var(--bbhvac-blue-800); color: #ffffff;
  text-align: center;
  padding: 64px 0;
  position: relative;
}
.bbhvac-cta-band::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(224,149,46,.18), transparent 40%),
    radial-gradient(circle at 85% 50%, rgba(224,149,46,.12), transparent 40%);
  pointer-events: none;
}
.bbhvac-cta-band .bbhvac-container { position: relative; z-index: 1; }
.bbhvac-cta-band h2 { color: #ffffff; margin-bottom: 14px; }
.bbhvac-cta-band p { color: #d5e6ef; margin-bottom: 28px; font-size: 1.1rem; }
.bbhvac-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------------------------------------------------------
   11. REVIEWS
   --------------------------------------------------------- */
.bbhvac-reviews-summary {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap; margin: 10px 0 36px;
}
.bbhvac-stars-big { color: var(--bbhvac-star); letter-spacing: 2px; font-size: 1.6rem; }
.bbhvac-reviews-summary strong { color: var(--bbhvac-blue-800); font-size: 1.3rem; }
.bbhvac-count { color: var(--bbhvac-text-soft); }
.bbhvac-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .bbhvac-review-grid { grid-template-columns: 1fr; } }
.bbhvac-review-card {
  background: #ffffff;
  border: 1px solid var(--bbhvac-border);
  border-radius: var(--bbhvac-radius);
  padding: 28px;
  box-shadow: var(--bbhvac-shadow-sm);
  display: flex; flex-direction: column;
  border-top: 4px solid var(--bbhvac-orange-500);
}
.bbhvac-review-card .bbhvac-stars { color: var(--bbhvac-star); letter-spacing: 2px; margin-bottom: 12px; font-size: 1.1rem; }
.bbhvac-review-card p { color: var(--bbhvac-text); font-style: italic; flex: 1; }
.bbhvac-reviewer { border-top: 1px solid var(--bbhvac-border); padding-top: 14px; margin-top: 14px; }
.bbhvac-reviewer strong { color: var(--bbhvac-blue-800); }
.bbhvac-reviewer span { color: var(--bbhvac-text-muted); font-size: .85rem; display: block; }

/* ---------------------------------------------------------
   12. FAQ
   --------------------------------------------------------- */
.bbhvac-faqs { background: var(--bbhvac-blue-100); }
.bbhvac-faq-list { max-width: 880px; margin: 0 auto; }
.bbhvac-faq-item {
  background: #ffffff;
  border: 1px solid var(--bbhvac-border);
  border-radius: var(--bbhvac-radius);
  margin-bottom: 12px; overflow: hidden;
  box-shadow: var(--bbhvac-shadow-sm);
}
.bbhvac-faq-question {
  width: 100%; text-align: left;
  background: #ffffff; border: 0;
  padding: 20px 24px;
  font-size: 1.05rem; font-weight: 700;
  color: var(--bbhvac-blue-800);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: 'Roboto', sans-serif;
  transition: background .2s;
}
.bbhvac-faq-question:hover { background: var(--bbhvac-blue-100); }
.bbhvac-chev {
  transition: transform .25s ease;
  color: var(--bbhvac-orange-500);
  flex-shrink: 0;
}
.bbhvac-faq-item[aria-expanded="true"] .bbhvac-chev { transform: rotate(180deg); }
.bbhvac-faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.bbhvac-faq-answer-inner { padding: 0 24px 20px; color: var(--bbhvac-text-soft); }
.bbhvac-faq-item[aria-expanded="true"] .bbhvac-faq-answer { max-height: 480px; }

/* ---------------------------------------------------------
   13. CERTIFICATIONS
   --------------------------------------------------------- */
.bbhvac-certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 960px) { .bbhvac-certs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .bbhvac-certs-grid { grid-template-columns: 1fr; } }
.bbhvac-cert-card {
  background: #ffffff;
  border: 1px solid var(--bbhvac-border);
  border-radius: var(--bbhvac-radius);
  padding: 24px 20px;
  display: flex; flex-direction: column; gap: 14px; align-items: center;
  text-align: center;
}
.bbhvac-cert-image {
  width: 96px; height: 96px;
  object-fit: contain;
  flex-shrink: 0;
}
.bbhvac-cert-card h3 { font-size: 1.02rem; margin-bottom: 4px; color: var(--bbhvac-blue-800); line-height: 1.2; }
.bbhvac-cert-card p { color: var(--bbhvac-text-soft); font-size: .88rem; margin: 0; }

/* ---------------------------------------------------------
   14. RELATED SERVICES
   --------------------------------------------------------- */
.bbhvac-related { background: var(--bbhvac-blue-200); }
.bbhvac-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .bbhvac-related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .bbhvac-related-grid { grid-template-columns: 1fr; } }
.bbhvac-related-card {
  background: #ffffff;
  border-radius: var(--bbhvac-radius);
  padding: 28px 22px; text-align: center;
  color: var(--bbhvac-blue-800);
  display: flex; flex-direction: column; align-items: center;
  transition: transform .25s, box-shadow .25s;
  box-shadow: var(--bbhvac-shadow-sm);
  border-bottom: 4px solid transparent;
  text-decoration: none;
}
.bbhvac-related-card:hover {
  transform: translateY(-4px); box-shadow: var(--bbhvac-shadow);
  border-bottom-color: var(--bbhvac-orange-500);
  color: var(--bbhvac-blue-800);
}
.bbhvac-related-icon {
  width: 60px; height: 60px;
  background: var(--bbhvac-blue-200);
  color: var(--bbhvac-blue-800);
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.bbhvac-related-icon svg { width: 28px; height: 28px; }
.bbhvac-related-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.bbhvac-related-meta { color: var(--bbhvac-text-soft); font-size: .88rem; margin-bottom: 14px; display: block; }
.bbhvac-related-arrow { color: var(--bbhvac-orange-500); font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; margin-top: auto; }

/* ---------------------------------------------------------
   15. FINAL CONVERSION / FORM
   --------------------------------------------------------- */
.bbhvac-conversion-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
}
@media (max-width: 900px) { .bbhvac-conversion-grid { grid-template-columns: 1fr; } }
.bbhvac-form-card {
  background: #ffffff;
  border: 1px solid var(--bbhvac-border);
  border-top: 5px solid var(--bbhvac-orange-500);
  border-radius: var(--bbhvac-radius);
  padding: 36px;
  box-shadow: var(--bbhvac-shadow);
}
.bbhvac-form-card h3 { color: var(--bbhvac-blue-800); margin-bottom: 8px; text-align: left; }
.bbhvac-form-card > p { color: var(--bbhvac-text-soft); margin-bottom: 24px; }
.bbhvac-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .bbhvac-form-row { grid-template-columns: 1fr; } }
.bbhvac-form-group { margin-bottom: 14px; }
.bbhvac-form-group label {
  display: block; font-weight: 700; font-size: .88rem;
  margin-bottom: 6px; color: var(--bbhvac-blue-800);
  text-transform: uppercase; letter-spacing: .04em;
}
.bbhvac-form-group input,
.bbhvac-form-group select,
.bbhvac-form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit; font-size: 1rem;
  border: 1px solid var(--bbhvac-border);
  border-radius: 8px;
  background: #ffffff;
  color: var(--bbhvac-text);
  transition: border-color .2s, box-shadow .2s;
}
.bbhvac-form-group input:focus,
.bbhvac-form-group select:focus,
.bbhvac-form-group textarea:focus {
  outline: none;
  border-color: var(--bbhvac-orange-500);
  box-shadow: 0 0 0 3px rgba(224,149,46,.18);
}
.bbhvac-form-group textarea { min-height: 110px; resize: vertical; }
.bbhvac-form-card .bbhvac-btn { width: 100%; min-width: 0; }
.bbhvac-form-note { font-size: .82rem; color: var(--bbhvac-text-muted); margin-top: 12px; text-align: center; }

.bbhvac-trust-column {
  background: var(--bbhvac-blue-800); color: #ffffff;
  border-radius: var(--bbhvac-radius);
  padding: 36px 28px; text-align: center;
  border-bottom: 5px solid var(--bbhvac-blue-900);
  display: flex; flex-direction: column; align-items: center;
}
.bbhvac-team-placeholder {
  width: 140px; height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bbhvac-orange-500) 0%, var(--bbhvac-orange-700) 100%);
  display: grid; place-items: center;
  color: #ffffff; font-weight: 900; font-size: 2.2rem;
  margin-bottom: 20px;
  border: 4px solid #ffffff;
  box-shadow: var(--bbhvac-shadow);
  /* When used as an <img>, crop to the circle nicely */
  object-fit: cover;
  object-position: center top;
  overflow: hidden;
}
img.bbhvac-team-placeholder { display: block; }
.bbhvac-trust-column h3 { color: #ffffff; margin-bottom: 10px; font-size: 1.4rem; }
.bbhvac-trust-column p { color: #d5e6ef; font-size: .95rem; }
.bbhvac-phone-big {
  font-size: 1.8rem; font-weight: 900; color: #ffffff;
  display: inline-flex; align-items: center; gap: 8px;
  margin: 14px 0 8px;
  text-decoration: none;
}
.bbhvac-phone-big:hover { color: var(--bbhvac-orange-500); }
.bbhvac-phone-label {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .14em;
  color: var(--bbhvac-orange-500); font-weight: 700;
}
.bbhvac-trust-column ul {
  list-style: none; padding: 0; margin: 22px 0 0;
  text-align: left; width: 100%;
}
.bbhvac-trust-column ul li {
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: .95rem;
  display: flex; align-items: center; gap: 10px;
  color: #ffffff;
}
.bbhvac-trust-column ul li svg { color: var(--bbhvac-orange-500); flex-shrink: 0; }

/* ---------------------------------------------------------
   17. STICKY MOBILE CTA
   --------------------------------------------------------- */
.bbhvac-sticky-mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  display: flex;
  z-index: 100;
  box-shadow: 0 -4px 14px rgba(0,0,0,.18);
}
.bbhvac-sticky-mobile-cta a {
  flex: 1;
  padding: 16px 12px;
  text-align: center;
  font-weight: 700;
  color: #ffffff;
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: 8px;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  text-decoration: none;
}
.bbhvac-sticky-call { background: var(--bbhvac-blue-800); }
.bbhvac-sticky-schedule { background: var(--bbhvac-orange-500); }
.bbhvac-sticky-mobile-cta svg { width: 18px; height: 18px; }
@media (min-width: 768px) { .bbhvac-sticky-mobile-cta { display: none; } }

/* Body padding so sticky CTA doesn't cover footer on mobile */
@media (max-width: 767px) {
  body { padding-bottom: 70px !important; }
}
