/* ============================================================
   UTAH HERITAGE HVAC — Global Stylesheet (homepage.css)
   Loaded on every page.
   ============================================================ */


/* ── CSS Variables ─────────────────────────────────────── */
:root {
  --navy:        #1B3A52;
  --navy-light:  #2A5070;
  --navy-dark:   #0d2233;
  --teal:        #4A9EA6;
  --teal-dark:   #3a8a92;
  --orange:      #F05708;
  --orange-dark: #D04A06;
  --orange-light: #F05708;
  --sand:        #EAE0C8;
  --cream:       #F5F0E8;
  --white:       #ffffff;
  --text:        #444444;
  --text-light:  #666666;
  --border:      #d4cbb8;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;

  --radius:      6px;
  --transition:  0.2s ease;
  --container:   1150px;
}


/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--teal);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--orange); }

ul, ol { list-style: none; }


/* ── Typography ────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6,
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-weight: 900 !important;
  color: var(--navy);
  line-height: 1.15;
}

h1 { font-size: clamp(32px, 5vw, 52px); }
h2 { font-size: clamp(26px, 4vw, 36px); }
h3 { font-size: clamp(19px, 3vw, 24px); }
h4 { font-size: clamp(16px, 2vw, 19px); }

p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 16px;
}

p:last-child { margin-bottom: 0; }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(26px, 4vw, 36px);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-title--white { color: var(--white); }


/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  padding: 15px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color var(--transition),
              color var(--transition),
              border-color var(--transition),
              transform var(--transition);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background-color: var(--orange);
  color: var(--white) !important;
  border-color: var(--orange);
}
.btn-primary:hover {
  background-color: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white) !important;
}

.btn-teal {
  background-color: var(--teal);
  color: var(--white) !important;
  border-color: var(--teal);
}
.btn-teal:hover {
  background-color: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white) !important;
}

.btn-navy {
  background-color: var(--navy);
  color: var(--white) !important;
  border-color: var(--navy);
}
.btn-navy:hover {
  background-color: var(--navy-light);
  border-color: var(--navy-light);
  color: var(--white) !important;
}

.btn-white {
  background-color: var(--white);
  color: var(--teal) !important;
  border-color: var(--white);
}
.btn-white:hover {
  background-color: var(--cream);
  color: var(--teal) !important;
}

.btn-ghost {
  background-color: transparent;
  color: var(--white) !important;
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  background-color: rgba(255,255,255,0.1);
  color: var(--white) !important;
}

.btn-outline-navy {
  background-color: transparent;
  color: var(--navy) !important;
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background-color: var(--navy);
  color: var(--white) !important;
}

.btn-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}


/* ── GeneratePress Full-Width 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;
}

.generate-columns-container,
.inside-right-sidebar,
.widget-area {
  display: none !important;
}

.site-header,
.site-footer,
.site-info {
  display: none !important;
}

.admin-bar .nav { top: 32px !important; }

@media screen and (max-width: 782px) {
  .admin-bar .nav { top: 46px !important; }
}


/* ── Top Bar ────────────────────────────────────────────── */
.topbar {
  background-color: var(--navy);
  padding: 8px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: var(--cream);
}

.topbar a {
  color: var(--teal);
  text-decoration: none;
  margin-left: 20px;
  transition: color var(--transition);
}

.topbar a:hover { color: var(--white); }
.topbar i { font-size: 14px; margin-right: 4px; }


/* ── Navigation ────────────────────────────────────────── */
.nav {
  background-color: var(--white);
  border-bottom: 3px solid var(--orange);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 16px 32px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 24px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-name {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
}

.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li { position: relative; }

.nav-menu li a {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  transition: color var(--transition);
  padding-bottom: 2px;
  position: relative;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--orange);
  transition: width var(--transition);
}

.nav-menu li a:hover { color: var(--orange); }
.nav-menu li a:hover::after { width: 100%; }

.nav-menu .current-menu-item > a,
.nav-menu .current-page-ancestor > a { color: var(--orange); }
.nav-menu .current-menu-item > a::after { width: 100%; }

/* Dropdown */
.nav-menu .sub-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  background-color: var(--white);
  border-radius: var(--radius);
  border-top: 3px solid var(--orange);
  min-width: 270px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  z-index: 100;
  list-style: none;
  padding: 8px 0;
  margin: 0;
}

.nav-menu .menu-item-has-children:hover > .sub-menu,
.nav-menu .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu .sub-menu li a {
  display: block;
  padding: 11px 20px;
  font-size: 15px;
  color: var(--navy);
  white-space: nowrap;
}

.nav-menu .sub-menu li a::after { display: none; }
.nav-menu .sub-menu li a:hover { background-color: var(--cream); color: var(--orange); }

/* Nav CTA */
.nav-menu .nav-cta > a,
.nav-menu li a.nav-cta {
  background-color: var(--orange) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius);
  font-weight: 600 !important;
}

.nav-menu .nav-cta > a:hover,
.nav-menu li a.nav-cta:hover {
  background-color: var(--orange-dark) !important;
  color: var(--white) !important;
}

.nav-menu .nav-cta > a::after,
.nav-menu li a.nav-cta::after { display: none !important; }

/* Nav Schedule Now button */
.nav-schedule-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background-color: var(--orange);
  color: var(--white) !important;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background-color var(--transition), transform var(--transition);
}

.nav-schedule-btn:hover {
  background-color: var(--orange-dark);
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* Nav right group */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 200;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-active span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 140;
}

.nav-overlay.is-active { display: block; }


/* ── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb {
  background-color: var(--sand);
  padding: 12px 32px;
  font-size: 14px;
  color: #888;
}

.breadcrumb a { color: var(--teal); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { margin: 0 6px; color: #aaa; }


/* ── Alert Bars ─────────────────────────────────────────── */
.alert-bar {
  padding: 15px 32px;
  font-size: 15px;
  font-weight: 600;
}

.alert-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  text-align: center;
}

.alert-bar p { margin: 0; font-size: 15px; font-weight: 600; color: var(--white); }
.alert-bar span { font-weight: 400; opacity: 0.88; }
.alert-bar i { font-size: 18px; flex-shrink: 0; }
.alert-bar a { color: var(--white); text-decoration: underline; }

.alert-bar--orange { background-color: var(--orange); color: var(--white); }
.alert-bar--teal   { background-color: var(--teal);   color: var(--white); }
.alert-bar--red    { background-color: #8B1A1A;        color: #ffb3b3; }


/* ── CTA Banner ─────────────────────────────────────────── */
.cta-banner {
  background-color: var(--teal);
  padding: 52px 32px;
}

.cta-banner-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--white);
  margin-bottom: 6px;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  margin: 0;
}

.cta-banner .cta-btns {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
}


/* ── Footer ─────────────────────────────────────────────── */
.site-footer-custom {
  background-color: var(--navy);
  padding: 52px 32px 28px;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .footer-logo-name {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  display: block;
}

.footer-brand .footer-logo-sub {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 0;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li { margin-bottom: 11px; }

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--teal); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 11px;
}

.footer-contact li i {
  color: var(--teal);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

.footer-contact li a:hover { color: var(--teal); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-bottom a:hover { color: var(--teal); }


/* ── Shared Utilities ───────────────────────────────────── */
.uhh-section { padding: 60px 32px; }

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

.bg-navy   { background-color: var(--navy); }
.bg-teal   { background-color: var(--teal); }
.bg-orange { background-color: var(--orange); }
.bg-sand   { background-color: var(--sand); }
.bg-cream  { background-color: var(--cream); }
.bg-white  { background-color: var(--white); }

/* Area tags */
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.area-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  transition: border-color var(--transition);
}

.area-tag i { color: var(--teal); font-size: 14px; }
.area-tag:hover { border-color: var(--teal); }

/* Review cards */
.review-card {
  background-color: var(--cream);
  border-radius: var(--radius);
  padding: 26px;
  border-left: 4px solid var(--teal);
}

.review-stars {
  color: var(--orange);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.review-author { display: flex; align-items: center; gap: 10px; }

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}

.review-name { font-size: 14px; font-weight: 600; color: var(--navy); }
.review-location { font-size: 12px; color: #888; }

/* FAQ items */
.faq-item {
  background-color: var(--cream);
  border-radius: var(--radius);
  padding: 24px 22px;
  border-left: 4px solid var(--teal);
}

.faq-item h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.faq-item p  { font-size: 14px; color: #444; line-height: 1.65; margin: 0; }

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


/* ── Fade-in Animations ─────────────────────────────────── */
.fade-in-up,
.fade-in-left,
.fade-in-right {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: 0.3s;
}

.fade-in-up    { transform: translateY(28px); }
.fade-in-left  { transform: translateX(-28px); }
.fade-in-right { transform: translateX(28px); }

.fade-in-up.is-visible,
.fade-in-left.is-visible,
.fade-in-right.is-visible {
  opacity: 1;
  transform: translate(0);
}


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

  .topbar { display: none; }

  .nav-inner { padding: 14px 20px; grid-template-columns: 1fr auto; }

  .nav-schedule-btn { display: none; }

  .nav-hamburger { display: flex; }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 28px 40px;
    gap: 0;
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 150;
    box-shadow: -4px 0 24px rgba(0,0,0,0.3);
  }

  .nav-menu.is-open { right: 0; }

  .nav-menu > li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .nav-menu > li > a {
    display: block;
    padding: 16px 0;
    font-size: 17px;
    color: var(--cream) !important;
    font-weight: 500;
  }

  .nav-menu > li > a::after { display: none; }

  .nav-menu .nav-cta > a,
  .nav-menu li a.nav-cta {
    margin-top: 20px;
    width: 100%;
    text-align: center;
    display: block;
    padding: 16px 20px !important;
  }

  .nav-menu .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background-color: rgba(255,255,255,0.05);
    border-radius: 0;
    padding: 0 0 8px 16px;
    min-width: 0;
    width: 100%;
  }

  .nav-menu .sub-menu li a {
    color: rgba(255,255,255,0.7) !important;
    padding: 11px 0;
    font-size: 15px;
  }

  .breadcrumb { padding: 10px 20px; font-size: 13px; }

  .alert-bar { padding: 12px 20px; font-size: 14px; }

  .uhh-section { padding: 44px 20px; }

  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .cta-banner .cta-btns {
    justify-content: center;
    width: 100%;
  }

  .cta-banner .cta-btns .btn {
    flex: 1;
    min-width: 140px;
  }

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

  .btn-group .btn {
    width: 100%;
    justify-content: center;
  }

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

  .footer-bottom { flex-direction: column; text-align: center; }

  .site-footer-custom { padding: 44px 20px 28px; }
}


/* ── Tablet ─────────────────────────────────────────────── */
@media (min-width: 769px) and (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-inner   { padding: 14px 24px; }
}


/* ============================================================
   HOMEPAGE — PAGE-SPECIFIC STYLES
   ============================================================ */

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


/* ── Hero ───────────────────────────────────────────────── */
.hero {
  background-color: var(--navy);
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  align-items: stretch;
}

/* hero-inner is no longer a grid — left/right are direct children of .hero */
.hero-inner {
  display: contents;
}

.hero-left {
  padding: 72px 48px 64px calc(max(32px, (100vw - var(--container)) / 2));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background-color: var(--teal);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 20px;
}

/* Red Rock span — light orange */
.hero h1 span,
#uhh-homepage .hero h1 span {
  color: #F05708 !important;
}

.hero-left > p {
  color: rgba(255,255,255,0.78);
  font-size: 18px;
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 32px;
}

/* Hero right — logo */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 50px 0;
}

.hero-logo {
  width: 480px !important;
  height: 480px !important;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.3));
}

/* Hero h1 — bumped further */
.hero h1 {
  font-size: clamp(38px, 6vw, 64px) !important;
  color: #ffffff !important;
  margin-bottom: 18px;
}

/* Staggered fade-in delays for hero elements */
.hero .hero-badge { transition-delay: 0.1s; }
.hero h1          { transition-delay: 0.2s; }
.hero p           { transition-delay: 0.3s; }
.hero .btn-group  { transition-delay: 0.4s; }
.hero .hero-right { transition-delay: 0.2s; }


/* ── Trust Strip ────────────────────────────────────────── */
.trust-strip {
  background-color: var(--white);
  border-bottom: 1px solid var(--sand);
  padding: 0 32px;
}

.trust-strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  padding: 24px;
  text-align: center;
  border-right: 1px solid var(--sand);
}

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

.trust-item i {
  font-size: 30px;
  color: var(--teal);
  margin-bottom: 12px;
  display: block;
}

.trust-item h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 5px;
}

.trust-item p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.4;
}


/* ── Services Grid ──────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  border-top: 4px solid var(--teal);
  transition: box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.09);
  transform: translateY(-2px);
}

.service-card--accent { border-top-color: var(--orange); }

.service-icon {
  width: 48px;
  height: 48px;
  background-color: var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-icon i { font-size: 24px; color: var(--navy); }

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.65;
  margin: 0;
}


/* ── How It Works ───────────────────────────────────────── */
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 44px;
  position: relative;
}

.hiw-steps::before {
  content: '';
  position: absolute;
  top: 29px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: rgba(255,255,255,0.12);
  pointer-events: none;
}

.hiw-step {
  text-align: center;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hiw-step .step-num { margin-bottom: 22px; }

.hiw-step h3 {
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}

.hiw-step p {
  font-size: 15px;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
  margin: 0;
}


/* ── Problem / Solution ─────────────────────────────────── */
.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}

.ps-card {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
}

.ps-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--sand);
}

.ps-header i  { font-size: 24px; }
.ps-header h3 { font-size: 22px; font-weight: 900; }

.ps-problem .ps-header i,
.ps-problem .ps-header h3 { color: var(--orange); }

.ps-solution .ps-header i,
.ps-solution .ps-header h3 { color: var(--teal); }

.ps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.ps-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.ps-list li i {
  font-size: 17px;
  flex-shrink: 0;
  margin-top: 2px;
}

.ps-problem .ps-list li i { color: var(--orange); }
.ps-solution .ps-list li i { color: var(--teal); }

.ps-list li span {
  font-size: 15px;
  color: var(--text);
  line-height: 1.55;
}


/* ── About Section ──────────────────────────────────────── */
.about-section {
  background-color: var(--navy);
  padding: 60px 32px;
}

.about-section-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 56px;
  align-items: center;
}

.about-image {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  object-position: center top;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content > p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-stats {
  display: flex;
  gap: 28px;
  margin: 22px 0 32px;
  flex-wrap: wrap;
}

.about-stat { display: flex; flex-direction: column; }

.about-stat-num {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 5px;
}

.about-stat small {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
}


/* ── Reviews Grid ───────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.reviews-more {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}


/* ── Service Areas ──────────────────────────────────────── */
.areas-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
}

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

.areas-map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
  background-color: var(--navy-dark);
}

.areas-map svg {
  display: block;
  width: 100%;
  min-height: 320px;
}


/* ── Blog Preview ───────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.blog-card {
  background-color: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}

.blog-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.09);
  transform: translateY(-2px);
}

.blog-card-img {
  height: 170px;
  background-color: var(--navy);
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.blog-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-tag {
  display: inline-block;
  background-color: var(--teal);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 12px;
}

.blog-tag a { color: var(--white); text-decoration: none; }

.blog-card-body h3 {
  font-size: 17px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
}

.blog-card-body h3 a {
  color: var(--navy);
  text-decoration: none;
  transition: color var(--transition);
}

.blog-card-body h3 a:hover { color: var(--orange); }

.blog-card-body p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  transition: color var(--transition);
}

.blog-read-more:hover { color: var(--orange); }

.no-posts {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-light);
  padding: 40px 0;
  font-size: 16px;
}


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

  .hero {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .hero-left { padding: 44px 20px 32px; }

  .hero-left > p { font-size: 17px; max-width: 100%; }

  .hero-right {
    order: -1;
    padding: 24px 20px 0;
  }

  .hero-logo {
    width: 200px !important;
    height: 200px !important;
  }

  .trust-strip { padding: 0 20px; }
  .trust-strip-inner { grid-template-columns: 1fr 1fr; }
  .trust-item  { border-bottom: 1px solid var(--sand); }

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

  .hiw-steps       { grid-template-columns: 1fr; gap: 36px; }
  .hiw-steps::before { display: none; }
  .hiw-step        { padding: 0; }

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

  .about-section   { padding: 44px 20px; }
  .about-section-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-image     { max-width: 100%; }
  .about-content   { padding: 0; }

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

  .areas-inner  { grid-template-columns: 1fr; gap: 28px; }
  .areas-map    { min-height: 240px; }

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


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

  .hero            { grid-template-columns: 1.2fr 1fr; }
  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid    { grid-template-columns: repeat(2, 1fr); }
  .blog-grid       { grid-template-columns: repeat(2, 1fr); }
  .areas-inner     { grid-template-columns: 1fr; }
  .about-section-inner {
    grid-template-columns: 320px 1fr;
    gap: 40px;
  }
}
