* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; }
/* ==========================================================================
   Smart Home Air & Heat — Site Components CSS
   Scoped: .shah-ticker, .shah-header, .shah-mobile-menu, .shah-footer
   ========================================================================== */

/* ---------- Font Import ---------- */




/* ---------- ANNOUNCEMENT TICKER ---------- */
.shah-ticker {
  position: relative !important;
  z-index: 99999 !important;
  background: #FE4A00 !important;
  overflow: hidden !important;
  width: 100% !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
}

.shah-ticker__track {
  display: flex !important;
  width: max-content !important;
  animation: shahTickerScroll 50s linear infinite !important;
}

.shah-ticker__track:hover {
  animation-play-state: paused !important;
}

.shah-ticker__content {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

.shah-ticker__item {
  color: #fff !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 19px;
  font-weight: 700;
  line-height: 1 !important;
  padding: 0 16px !important;
  white-space: nowrap !important;
}

.shah-ticker__dot {
  display: inline-block !important;
  width: 6px !important;
  height: 6px !important;
  background: #fff !important;
  border-radius: 50% !important;
  opacity: 0.7 !important;
  flex-shrink: 0 !important;
}

@keyframes shahTickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- SITE HEADER ---------- */
.shah-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 99998 !important;
  background: #234190 !important;border-bottom: 3px solid #FE4A00 !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08) !important;
  width: 100% !important;
}/* ---------- MOBILE MENU ---------- */
.shah-mobile-menu {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 100000 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

.shah-mobile-menu.shah-mobile-menu--open {
  pointer-events: auto !important;
  visibility: visible !important;
}

.shah-mobile-menu__overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0,0,0,0.6) !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
}

.shah-mobile-menu--open .shah-mobile-menu__overlay {
  opacity: 1 !important;
}

.shah-mobile-menu__panel {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  width: 320px !important;
  max-width: 85vw !important;
  height: 100% !important;
  background: #0a1628 !important;
  transform: translateX(100%) !important;
  transition: transform 0.3s ease !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
  display: flex !important;
  flex-direction: column !important;
}

.shah-mobile-menu--open .shah-mobile-menu__panel {
  transform: translateX(0) !important;
}

.shah-mobile-menu__top {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 16px 20px !important;
  border-bottom: 1px solid #f0f2f5 !important;
}

.shah-mobile-menu__logo img {
  width: 160px !important;
  height: auto !important;
  display: block !important;
}

.shah-mobile-menu__close {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  background: none !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: 4px !important;
  color: #fff !important;
  font-size: 28px !important;
  line-height: 1 !important;
  cursor: pointer !important;
  padding: 0 !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

.shah-mobile-menu__close:hover {
  background: rgba(255,255,255,0.1) !important;
}

.shah-mobile-menu__nav {
  flex: 1 !important;
  overflow-y: auto !important;
  padding: 8px 0 !important;
}

.shah-mobile-menu__list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.shah-mobile-menu__item {
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
}

.shah-mobile-menu__parent-row {
  display: flex !important;
  align-items: center !important;
}

.shah-mobile-menu__link {
  display: block !important;
  flex: 1 !important;
  padding: 15px 20px !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #fff !important;
  text-decoration: none !important;
  line-height: 1.3 !important;
}

.shah-mobile-menu__link:hover {
  color: #FE4A00 !important;
}

.shah-mobile-menu__toggle {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 48px !important;
  height: 48px !important;
  background: none !important;
  border: none !important;
  border-left: 1px solid rgba(255,255,255,0.1) !important;
  cursor: pointer !important;
  padding: 0 !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  flex-shrink: 0 !important;
}

.shah-mobile-menu__toggle-icon {
  color: #FE4A00 !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  transition: transform 0.2s ease !important;
}

.shah-mobile-menu__toggle--open .shah-mobile-menu__toggle-icon {
  transform: rotate(45deg) !important;
}

.shah-mobile-menu__submenu {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
  transition: max-height 0.3s ease !important;
  background: rgba(0,0,0,0.2) !important;
}

.shah-mobile-menu__submenu--open {
  max-height: 2000px !important;
}

.shah-mobile-menu__sublink {
  display: block !important;
  padding: 12px 20px 12px 36px !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  color: rgba(255,255,255,0.8) !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(255,255,255,0.04) !important;
  line-height: 1.4 !important;
}

.shah-mobile-menu__sublink:hover {
  color: #FE4A00 !important;
  background: rgba(255,255,255,0.03) !important;
}

/* CTA at bottom of mobile menu */
.shah-mobile-menu__cta {
  padding: 20px !important;
  border-top: 1px solid rgba(255,255,255,0.1) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 12px !important;
}

.shah-mobile-menu__phone {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #fff !important;
  text-decoration: none !important;
}

.shah-mobile-menu__phone:hover {
  color: #FE4A00 !important;
}

.shah-mobile-menu__badge {
  display: inline-block !important;
  background: #374151 !important;
  color: #fff !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  padding: 4px 10px !important;
  border-radius: 3px !important;
}

.shah-mobile-menu__schedule-btn {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  padding: 14px 24px !important;
  background: #FE4A00 !important;
  color: #fff !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  border-radius: 6px !important;
  transition: background 0.2s ease !important;
}

.shah-mobile-menu__schedule-btn:hover {
  background: #fe4a00 !important;
}

/* ---------- FOOTER ---------- */

.shah-footer__container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
}

/* Service Areas Band */
.shah-footer__service-areas {
  background: #ffffff !important;
  padding: 56px 0 !important;
  width: 100% !important;
}

.shah-footer__areas-heading {
  text-align: center !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 30px !important;
  font-weight: 800 !important;
  color: #fff !important;
  margin: 0 0 32px 0 !important;
  letter-spacing: -0.02em !important;
}

.shah-footer__city-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 12px !important;
}

.shah-footer__areas-tagline {
  text-align: center !important;
  margin-top: 24px !important;
  font-size: 0.85rem !important;
  color: #374151 !important;
  line-height: 1.6 !important;
  max-width: 900px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.shah-footer__city-link {
  display: block !important;
  padding: 14px 18px !important;
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-left: 3px solid #FE4A00 !important;
  border-radius: 6px !important;
  color: #fff !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  line-height: 1.4 !important;
}

.shah-footer__city-link:hover {
  background: rgba(254,74,0,0.15) !important;
  border-color: rgba(254,74,0,0.3) !important;
  border-left-color: #FE4A00 !important;
  color: #fff !important;
  transform: translateY(-1px) !important;
}

/* Main Footer */
.shah-footer__main {
  background: #234190 !important;
  padding: 32px 0 !important;
  width: 100% !important;
}

.shah-footer__columns {
  display: grid !important;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr !important;
  gap: 48px !important;
}

.shah-footer__col {
  min-width: 0 !important;
}

.shah-footer__col--logo img {
  width: 220px !important;
  height: auto !important;
  display: block !important;
  margin-bottom: 20px !important;
}

.shah-footer__tagline {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 17px !important;
  color: #fff !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

.shah-footer__col-heading {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 19px !important;
  font-weight: 700 !important;
  color: #fff !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin: 0 0 20px 0 !important;
}

.shah-footer__links {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.shah-footer__links li {
  margin: 0 0 14px 0 !important;
}

.shah-footer__links li a {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  color: #fff !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.shah-footer__links li a:hover {
  color: #FE4A00 !important;
}

/* Contact column */
.shah-footer__contact-item {
  margin-bottom: 20px !important;
}

.shah-footer__contact-label {
  display: block !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #fff !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  margin-bottom: 6px !important;
}

.shah-footer__contact-phone {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #fff !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.shah-footer__contact-phone:hover {
  color: #FE4A00 !important;
}

.shah-footer__address {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 16px !important;
  font-style: normal !important;
  color: #fff !important;
  line-height: 1.5 !important;
}

.shah-footer__license {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 16px !important;
  color: #fff !important;
}

.shah-footer__emergency {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 15px !important;
  color: #FE4A00 !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}
.shah-footer__emergency:hover { text-decoration: underline !important; }

/* Social Icons (inside logo column) */
.shah-footer__social-icons {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  margin-top: 20px !important;
}

.shah-footer__social-icons a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 42px !important;
  height: 42px !important;
  border-radius: 6px !important;
  background: #FE4A00 !important;
  transition: background 0.2s ease, transform 0.2s ease !important;
  text-decoration: none !important;
}

.shah-footer__social-icons a:hover {
  background: #FE4A00 !important;
  transform: translateY(-2px) !important;
}

.shah-footer__social-icons a svg {
  fill: #ffffff !important;
  width: 20px !important;
  height: 20px !important;
}

/* Copyright Bar */
.shah-footer__copyright {
  background: #FE4A00 !important;
  padding: 14px 0 !important;
  width: 100% !important;
}

.shah-footer__copyright-text {
  text-align: center !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  color: rgba(255,255,255,0.9) !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}

.shah-footer__copyright-text a {
  color: #fff !important;
  text-decoration: underline !important;
  font-weight: 600 !important;
}

/* ==========================================================================
   RESPONSIVE — 1024px (nav collapse to mobile)
   ========================================================================== */
@media (max-width: 1024px) {
  .shah-header__nav {
    display: none !important;
  }

  .shah-header__location {
    display: none !important;
  }

  .shah-header__open-badge {
    display: none !important;
  }

  .shah-header__hamburger {
    display: flex !important;
  }

  .shah-header__inner {
    height: 60px !important;
    padding: 0 16px !important;
  }

  .shah-header__logo img {
    width: 150px !important;
  }

  .shah-header__phone-number {
    display: none !important;
  }

  .shah-header__phone svg {
    width: 24px !important;
    height: 24px !important;
  }

  .shah-ticker__item {
    font-size: 19px;
    padding: 0 12px !important;
  }

  .shah-ticker {
    height: 36px !important;
  }
}

/* ==========================================================================
   RESPONSIVE — 768px (tablet)
   ========================================================================== */
@media (max-width: 768px) {
  .shah-footer__city-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .shah-footer__service-areas {
    padding: 36px 0 !important;
  }

  .shah-footer__columns {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px !important;
  }

  .shah-footer__main {
    padding: 32px 0 !important;
  }
}

/* ==========================================================================
   RESPONSIVE — 480px (compact mobile)
   ========================================================================== */
@media (max-width: 480px) {
  .shah-ticker__item {
    font-size: 19px;
    padding: 0 10px !important;
  }

  .shah-ticker {
    height: 32px !important;
  }

  .shah-ticker__dot {
    width: 4px !important;
    height: 4px !important;
  }

  .shah-header__inner {
    height: 56px !important;
    padding: 0 12px !important;
  }

  .shah-header__logo img {
    width: 130px !important;
  }

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

  .shah-footer__service-areas {
    padding: 28px 0 !important;
  }

  .shah-footer__areas-heading {
    font-size: 20px !important;
  }

  .shah-footer__columns {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .shah-footer__main {
    padding: 32px 0 !important;
  }

  .shah-footer__copyright-text {
    font-size: 12px !important;
  }

  .shah-mobile-menu__link {
    font-size: 16px !important;
    padding: 13px 16px !important;
  }

  .shah-mobile-menu__sublink {
    font-size: 14px !important;
    padding: 10px 16px 10px 30px !important;
  }

  .shah-mobile-menu__phone {
    font-size: 18px !important;
  }

  .shah-mobile-menu__panel {
    width: 290px !important;
  }

  .shah-footer__social-icons {
    gap: 10px !important;
  }

  .shah-footer__social-icons a {
    width: 36px !important;
    height: 36px !important;
  }

  .shah-footer__social-icons a svg {
  fill: #ffffff !important;
    width: 16px !important;
    height: 16px !important;
  }
}

/* ---------- Hide mobile menu on desktop ---------- */
@media (min-width: 1025px) {
  .shah-mobile-menu {
    display: none !important;
  }

  .shah-header__hamburger {
    display: none !important;
  }
}

/* ---------- Prevent body scroll when mobile menu is open ---------- */
body.shah-mobile-open {
  overflow: hidden !important;
}

/* =====================================================================
   FOOTER — matches homepage
   ===================================================================== */
.shah-footer-main { background: #234190; padding: 64px 0; }
.shah-footer-main-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.shah-footer-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; }
.shah-footer-logo { margin-bottom: 18px; }
.shah-footer-logo img { width: 190px; }
.shah-footer-tagline { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.65; font-family: 'Inter', sans-serif; }
.shah-social { display: flex; align-items: center; gap: 10px; margin-top: 20px; }
.shah-social a { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 6px; background: #FE4A00; transition: transform 0.2s, opacity 0.2s; }
.shah-social a:hover { transform: translateY(-2px); opacity: 0.85; }
.shah-social a svg { width: 17px; height: 17px; }
.shah-col-heading { font-size: 17px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 18px; font-family: 'Inter', sans-serif; }
.shah-col-links { list-style: none; padding: 0; margin: 0; }
.shah-col-links li { margin-bottom: 11px; }
.shah-col-links li a { font-size: 16px; color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.2s; font-family: 'Inter', sans-serif; }
.shah-col-links li a:hover { color: #FE4A00; }
.shah-contact-icon-row { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.shah-contact-label { display: block; font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.shah-contact-item { margin-bottom: 18px; }
.shah-contact-phone { font-size: 24px; font-weight: 700; color: #fff; display: block; text-decoration: none; font-family: 'Inter', sans-serif; }
.shah-contact-phone:hover { color: #FE4A00; }
.shah-contact-addr { font-size: 16px; color: rgba(255,255,255,0.7); font-style: normal; line-height: 1.5; font-family: 'Inter', sans-serif; }
.shah-contact-license { font-size: 14px; color: rgba(255,255,255,0.65); margin-top: 12px; font-family: 'Inter', sans-serif; }
.shah-copyright { background: #FE4A00; padding: 14px 0; }
.shah-copyright p { text-align: center; font-size: 15px; color: rgba(255,255,255,0.95); font-family: 'Inter', sans-serif; margin: 0; }
.shah-copyright a { color: #fff; text-decoration: underline; font-weight: 600; }
@media (max-width: 900px) { .shah-footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .shah-footer-cols { grid-template-columns: 1fr; } }

.skip-nav:focus{left:4px!important;outline:3px solid #FE4A00;border-radius:4px;}

/* ── HERO ── */
.sa-hero {
  background: linear-gradient(to right, #0a1628 0%, #234190 60%, #234190 100%);
  padding: 60px 20px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sa-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/Smart-Home-Logo.webp') right center / auto 130% no-repeat;
  opacity: 0.07;
  filter: grayscale(1);
  mix-blend-mode: luminosity;
}
.sa-hero__inner { position: relative; z-index: 1; }
.sa-hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FE4A00;
  margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
}
.sa-hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.15;
}
.sa-hero__sub {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.65;
}
.sa-hero__badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.sa-hero__badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  padding: 6px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

/* ── QUICK LINKS ── */
.sa-quick {
  background: #fff;
  padding: 52px 20px 48px;
}
.sa-quick__inner {
  max-width: 1060px;
  margin: 0 auto;
}
.sa-quick h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 900;
  color: #234190;
  text-align: center;
  margin: 0 0 8px;
}
.sa-quick__sub {
  font-family: 'Inter', sans-serif;
  text-align: center;
  color: #234190;
  font-size: 1rem;
  margin: 0 0 34px;
}
.sa-quick__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.sa-quick__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: 2px solid #FE4A00;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff 0%, #f0f2f5 25%, #f0f2f5 60%, #FE4A00 100%);
  color: #374151;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}
.sa-quick__link:hover {
  background: linear-gradient(135deg, #f0f2f5 0%, #FE4A00 50%, #FE4A00 100%);
  transform: translateY(-1px);
}
.sa-quick__pin { color: #FE4A00; font-size: 13px; flex-shrink: 0; }

/* ── MAP ── */
.sa-map {
  background: #ffffff;
  padding: 56px 20px 60px;
  text-align: center;
}
.sa-map__inner { max-width: 1060px; margin: 0 auto; }
.sa-map h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: #234190;
  margin: 0 0 8px;
}
.sa-map__sub {
  font-family: 'Inter', sans-serif;
  color: #234190;
  font-size: 1rem;
  margin: 0 0 36px;
}
.sa-map img {
  max-width: 720px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(35,65,144,0.18);
}

/* ── CITY CARDS ── */
.sa-cards {
  background: #f0f2f5;
  padding: 60px 20px 64px;
}
.sa-cards__inner { max-width: 1100px; margin: 0 auto; }
.sa-cards h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 900;
  color: #234190;
  text-align: center;
  margin: 0 0 8px;
}
.sa-cards__sub {
  font-family: 'Inter', sans-serif;
  text-align: center;
  color: #234190;
  font-size: 1rem;
  margin: 0 0 36px;
}
.sa-cards__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.sa-card {
  background: #fff;
  border: 2px solid #FE4A00;
  border-radius: 12px;
  padding: 28px 16px 24px;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: all 0.25s;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
}
.sa-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: #FE4A00;
  transform: scaleX(0);
  transition: transform 0.25s;
}
.sa-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.11);
  border-color: #f3f3f3;
}
.sa-card:hover::after { transform: scaleX(1); }
.sa-card__icon { display:flex; align-items:center; justify-content:center; margin-bottom: 12px; font-size: 38px; line-height: 1; }
.sa-card__name {
  font-size: 15px;
  font-weight: 700;
  color: #234190;
  margin-bottom: 4px;
  transition: color 0.2s;
}
.sa-card:hover .sa-card__name { color: #FE4A00; }
.sa-card__tagline { font-size: 12px; color: #4b5563; line-height: 1.4; }

/* ── CTA ── */
.sa-cta {
  background: linear-gradient(135deg, #234190 0%, #234190 50%, #234190 100%);
  padding: 56px 20px;
  text-align: center;
}
.sa-cta__inner { max-width: 680px; margin: 0 auto; }
.sa-cta h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
}
.sa-cta p {
  font-family: 'Inter', sans-serif;
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin: 0 0 28px;
  line-height: 1.65;
}
.sa-cta__buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.sa-cta__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FE4A00;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.sa-cta__btn-primary:hover { background: #e53d22; transform: translateY(-2px); }
.sa-cta__btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #234190;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 6px;
  border: 2px solid #fff;
  text-decoration: none;
  transition: all 0.2s;
}
.sa-cta__btn-secondary:hover { background: #f0f2f5; border-color: #f0f2f5; transform: translateY(-2px); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .sa-cards__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .sa-quick__grid { grid-template-columns: repeat(2, 1fr); }
  .sa-cards__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .sa-hero { padding: 44px 16px 40px; }
  .sa-quick__grid { grid-template-columns: 1fr 1fr; }
  .sa-cards__grid { grid-template-columns: 1fr 1fr; }
}

/* keep .sa wrapper neutral */
.sa * { box-sizing: border-box; }
.sa { background: #fff; }

/* FULL WIDTH SECTIONS */
.sa-full {width:100vw !important;max-width:100vw !important;margin-left:calc(-50vw + 50%) !important;padding-left:0 !important;padding-right:0 !important}

/* HEADER — dark bg */
.sa-header {background:#234190;padding:25px 0 20px;text-align:center}
.sa-header h1 {color:#fff !important;font-size:2.2rem;font-weight:700;margin:0;font-family:'Inter',sans-serif}

/* INTRO */
.sa-intro {padding:30px 40px 20px;text-align:center;max-width:900px;margin:0 auto}
.sa-intro h2 {color:#FE4A00 !important;font-size:2.2rem;font-weight:900;margin:0 0 12px;font-family:'Inter',sans-serif}
.sa-intro p {color:#374151;font-size:1rem;line-height:1.7;margin:0;font-family:'Inter',sans-serif}

/* 4-COLUMN ICON LIST */
.sa-columns {display:grid;grid-template-columns:repeat(4,1fr);gap:10px 30px;max-width:1000px;margin:0 auto;padding:15px 30px 40px;position:relative;z-index:1}
.sa-icon-list {list-style:none;padding:0;margin:0}
.sa-icon-list li {padding:12px 16px;border:2px solid #FE4A00;border-radius:10px;margin-bottom:8px;background:#fff;transition:all 0.3s}
.sa-icon-list li:last-child {margin-bottom:0}
.sa-icon-list li:hover {transform:translateY(-2px);box-shadow:0 4px 12px rgba(254,74,0,0.12);background:linear-gradient(135deg,#fff 0%,rgba(254,74,0,0.06) 100%)}
.sa-icon-list a {display:flex;align-items:center;gap:10px;color:#374151;font-size:0.95rem;font-weight:500;text-decoration:none;transition:color 0.2s;font-family:'Inter',sans-serif}
.sa-icon-list a:link,.sa-icon-list a:visited {color:#374151}
.sa-icon-list a:hover {color:#FE4A00}
.sa-pin {font-family:"Font Awesome 6 Free";font-weight:900;color:#FE4A00;font-size:1rem}

/* FEATURED CARDS GRID */
.service-areas-grid {display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:20px;padding:10px 30px 25px;max-width:1100px;margin:0 auto}
.service-area-card {background:linear-gradient(135deg,#fff 0%,#ffffff 100%);border:2px solid #FE4A00;border-radius:12px;padding:24px 16px;text-align:center;text-decoration:none;color:#374151;transition:all 0.3s;display:flex;flex-direction:column;align-items:center;box-shadow:0 2px 8px rgba(0,0,0,0.06);font-family:'Inter',sans-serif}
.service-area-card:hover {transform:translateY(-4px);box-shadow:0 8px 25px rgba(254,74,0,0.2);border-color:#FE4A00}
.city-icon {font-size:32px;margin-bottom:12px}
.city-name {font-size:17px;font-weight:700;color:#234190;margin-bottom:6px}
.city-tagline {font-size:13px;color:#4b5563;line-height:1.4}
.service-area-card:hover .city-name {color:#FE4A00}

/* MAP */
.sa-map {text-align:center;padding:10px 30px 25px;max-width:900px;margin:40px auto 0;position:relative;z-index:0}
.sa-map img {max-width:100%;height:auto;border-radius:8px;mix-blend-mode:multiply}

@media(max-width:768px){
  .sa-columns {grid-template-columns:repeat(2,1fr);gap:5px 20px;padding:15px 20px}
  .service-areas-grid {grid-template-columns:repeat(2,1fr);gap:12px;padding:10px 20px 20px}
  .sa-intro {padding:20px 20px 15px}
}
@media(max-width:480px){
  .sa-columns {grid-template-columns:1fr 1fr}
  .service-areas-grid {grid-template-columns:1fr 1fr}
}

@media (max-width: 360px) {
  body { font-size: 15px; }
}

@media(max-width:900px){#zip-grid{grid-template-columns:repeat(3,1fr)!important;}}
    @media(max-width:600px){#zip-grid{grid-template-columns:repeat(2,1fr)!important;}}
    
/* Social icons — orange square */
.shah-footer__social-icons { display: flex !important; align-items: center !important; gap: 10px !important; margin-top: 20px !important; }
.shah-footer__social-icons a { display: flex !important; align-items: center !important; justify-content: center !important; width: 38px !important; height: 38px !important; border-radius: 6px !important; background: #FE4A00 !important; transition: transform 0.2s, opacity 0.2s !important; text-decoration: none !important; }
.shah-footer__social-icons a:hover { transform: translateY(-2px) !important; opacity: 0.85 !important; background: #FE4A00 !important; }
.shah-footer__social-icons a svg { width: 17px !important; height: 17px !important; }