* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: hidden; }
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 65s 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-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-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;
  }

}

/* ---------- 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-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; } }/* INJECTION: area-pill */
.shah-area-pill { display: flex; align-items: center; gap: 8px; padding: 10px 14px; background: linear-gradient(to right, #ffffff 0%, #ffffff 25%, rgba(254,74,0,0.12) 50%, rgba(254,74,0,0.5) 75%, #FE4A00 100%); border: 2px solid #FE4A00; border-radius: 8px; color: #0a1628; font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.shah-area-pill:hover { background: linear-gradient(to right, #fff 0%, rgba(254,74,0,0.35) 40%, #FE4A00 100%); }
.area-pill__pin { flex-shrink: 0; }
.shah-area-pill-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 900px) { .shah-area-pill-grid { grid-template-columns: repeat(2, 1fr); } }@media (max-width: 480px) { .shah-area-pill-grid { grid-template-columns: 1fr; } }.skip-nav:focus{left:4px!important;outline:3px solid #FE4A00;border-radius:4px;}/* ================================================================
   COOLING PAGE — Unique Layout (not a template)
   ================================================================ */

/* 1. HERO — Split layout */
.cool-hero {
  background: linear-gradient(105deg, #234190 0%, #234190 45%, #234190 100%);
  min-height: 600px;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  padding-bottom: 60px;
}
.cool-hero__wave {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 120px;
  pointer-events: none; z-index: 3;
}
.cool-hero__left {
  flex: 0 0 42%;
  padding: 56px 36px 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.cool-hero__right {
  flex: 0 0 58%;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
}
.cool-hero__right img {
  height: 122%;
  width: auto;
  object-fit: contain;
  position: absolute;
  bottom: -160px;
  right: -1%;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}
.cool-hero__watermark-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Inter', sans-serif;
  font-size: clamp(50px, 7vw, 90px);
  font-weight: 900;
  background: linear-gradient(180deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.07) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: blur(0.4px);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  text-align: center;
  width: 100%;
  line-height: 1;
}
.cool-hero__number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-60%, -50%);
  font-size: 280px;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  font-family: 'Inter', sans-serif;
}
.cool-hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #FE4A00;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}
.cool-hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}
.cool-hero__sub {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  color: rgba(255,255,255,0.8);
  margin: 0 0 24px;
  line-height: 1.6;
}
.cool-hero__stats {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.cool-hero__stat {
  background: rgba(254,74,0,0.18);
  border: 1.5px solid rgba(254,74,0,0.5);
  border-radius: 8px;
  padding: 10px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}
.cool-hero__stat span { color: #FE4A00; }
.cool-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FE4A00;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(254,74,0,0.45);
  transition: all 0.2s;
  align-self: flex-start;
}
.cool-hero__cta:hover { background: #e53d22; transform: translateY(-3px); box-shadow: 0 12px 32px rgba(254,74,0,0.55); }

/* 2. STATS BAR */
.cool-stats {
  background: #FE4A00;
  padding: 0;
  position: relative;
  z-index: 5;
}
.cool-stats__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.cool-stat {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.cool-stat:last-child { border-right: none; }
.cool-stat__num {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  display: block;
}
.cool-stat__label {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  display: block;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* 3. SERVICES — Card grid */
.cool-services { background: linear-gradient(135deg, #3a7bd5 0%, #234190 50%, #f0f2f5 100%); position: relative; overflow: hidden; }
.cool-services__arc { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }

/* ----- Tabs ----- */
.cool-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 0 40px 32px;
  position: relative;
  z-index: 2;
}
.cool-tab {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 11px 28px;
  border: 2px solid #234190;
  border-radius: 40px;
  background: transparent;
  color: #234190;
  cursor: pointer;
  transition: all 0.2s ease;
}
.cool-tab--active {
  background: #234190;
  color: #fff;
}
.cool-tab:hover:not(.cool-tab--active) {
  background: #FE4A00;
  border-color: #FE4A00;
  color: #fff;
}
.cool-tab-panel { position: relative; z-index: 2; }
.cool-tab-panel--hidden { display: none; }
.cool-calc-wrap {
  padding: 0 40px 48px;
  max-width: 800px;
  margin: 0 auto;
}
.cool-calc-iframe {
  width: 100%;
  height: 720px;
  border: none;
  border-radius: 12px;
  display: block;
}
@media (max-width: 600px) {
  .cool-calc-iframe { height: 900px; }
  .cool-calc-wrap { padding: 0 16px 32px; }
}.cool-services__head {
  position: relative; z-index: 2;
  padding: 64px 40px 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.cool-services__head h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 16px;
}
.cool-services__head p {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}
.cool-svc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 64px;
}
.cool-svc-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid #FE4A00;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cool-svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}
.cool-svc-card__img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.cool-svc-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.cool-svc-card:hover .cool-svc-card__img img { transform: scale(1.04); }
.cool-svc-card__img--rotate-ccw img { transform: rotate(-90deg) scale(1.15); }
.cool-svc-card:hover .cool-svc-card__img--rotate-ccw img { transform: rotate(-90deg) scale(1.2); }
.cool-svc-card__body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cool-svc-card__body h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: #234190;
  margin: 0 0 12px;
}
.cool-svc-card__body p {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: #4b5563;
  line-height: 1.7;
  margin: 0 0 20px;
  flex: 1;
}
.cool-svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #FE4A00;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: gap 0.2s;
}
.cool-svc-card__link:hover { gap: 12px; color: #e53d22; }

/* 4. GUARANTEES — Horizontal cards */
.cool-guarantees {
  background: #234190;
  padding: 64px 40px;
}
.cool-guarantees__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cool-guar-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 4px solid #FE4A00;
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.2s;
}
.cool-guar-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.cool-guar-card__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: #FE4A00;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(254,74,0,0.4);
  font-size: 24px;
}
.cool-guar-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
}
.cool-guar-card p {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin: 0;
}

/* 5. WHY CHOOSE — 3-col centered icons */
.cool-why {
  background: #fff;
  padding: 80px 40px;
}
.cool-why__inner { max-width: 1100px; margin: 0 auto; }
.cool-why h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #234190;
  text-align: center;
  margin: 0 0 56px;
}
.cool-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
.cool-why__item {
  text-align: center;
  padding: 0 16px;
}
.cool-why__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FE4A00, #fe4a00);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 6px 20px rgba(254,74,0,0.3);
  transition: all 0.2s;
}
.cool-why__item:hover .cool-why__icon { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(254,74,0,0.45); }
.cool-why__icon svg { width: 28px; height: 28px; }
.cool-why__item strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #234190;
  margin-bottom: 8px;
}
.cool-why__item span {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: #234190;
  line-height: 1.55;
}

/* 6. PROBLEMS — Dark navy numbered */
.cool-problems {
  background: linear-gradient(135deg, #234190 0%, #234190 100%);
  padding: 80px 40px;
}
.cool-problems__inner { max-width: 1100px; margin: 0 auto; }
.cool-problems h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin: 0 0 12px;
}
.cool-problems__sub {
  font-family: 'Inter', sans-serif;
  text-align: center;
  color: rgba(255,255,255,0.70);
  font-size: 1.15rem;
  margin: 0 0 48px;
}
.cool-problems__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.cool-prob {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  transition: all 0.2s;
}
.cool-prob:hover { background: rgba(254,74,0,0.12); border-color: rgba(254,74,0,0.4); }
.cool-prob__num {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #FE4A00;
  min-width: 40px;
  line-height: 1;
}
.cool-prob__text {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  line-height: 1.5;
}

/* 7. SERVICE AREAS STRIP */
.cool-areas {
  background: #f0f2f5;
  padding: 56px 40px;
  text-align: center;
}
.cool-areas__inner { max-width: 700px; margin: 0 auto; }
.cool-areas h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: #234190;
  margin: 0 0 12px;
}
.cool-areas p {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  color: #4b5563;
  line-height: 1.7;
  margin: 0 0 28px;
}
.cool-areas p a { color: #FE4A00; font-weight: 600; }
.cool-areas__btn {
  display: inline-block;
  background: #FE4A00;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(254,74,0,0.35);
  transition: all 0.2s;
}
.cool-areas__btn:hover { background: #e53d22; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(254,74,0,0.45); }

/* 8. CTA */
.cool-cta {
  background: linear-gradient(135deg, #234190 0%, #234190 50%, #234190 100%);
  padding: 80px 40px;
  text-align: center;
}
.cool-cta__inner { max-width: 680px; margin: 0 auto; }
.cool-cta h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 14px;
}
.cool-cta__sub {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  margin: 0 0 36px;
}
.cool-cta__buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cool-cta__btn-orange {
  display: inline-flex; align-items: center; gap: 8px;
  background: #FE4A00; color: #fff; font-family: 'Inter', sans-serif;
  font-size: 1.05rem; font-weight: 700; padding: 15px 32px;
  border-radius: 8px; text-decoration: none;
  box-shadow: 0 4px 20px rgba(254,74,0,0.4);
  transition: all 0.2s;
}
.cool-cta__btn-orange:hover { background: #e53d22; transform: translateY(-2px); }
.cool-cta__btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: #234190; font-family: 'Inter', sans-serif;
  font-size: 1.05rem; font-weight: 700; padding: 15px 32px;
  border-radius: 8px; text-decoration: none;
  transition: all 0.2s;
}
.cool-cta__btn-white:hover { background: #ffffff; transform: translateY(-2px); color: #234190; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .cool-svc-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .cool-hero { flex-direction: column; }
  .cool-hero__left { flex: none; padding: 56px 32px 40px; }
  .cool-hero__right { flex: none; height: 260px; }
  .cool-hero__right img { height: 130%; bottom: -15%; right: 50%; transform: translateX(50%); }
  .cool-stats__inner { grid-template-columns: repeat(2, 1fr); }
  .cool-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .cool-svc-cards { grid-template-columns: repeat(2, 1fr); }
  .cool-svc-card__img { height: 200px; }
  .cool-guarantees__inner { grid-template-columns: 1fr; }
  .cool-why__grid { grid-template-columns: repeat(2, 1fr); }
  .cool-problems__grid { grid-template-columns: 1fr; }
}@media (max-width: 600px) {
  .cool-hero__left { padding: 48px 20px 32px; }
  .cool-why__grid { grid-template-columns: 1fr; }
  .cool-stats__inner { grid-template-columns: repeat(2, 1fr); }
  .cool-svc-cards { grid-template-columns: 1fr; padding: 0 20px 48px; }
  .cool-services__head { padding: 48px 20px 28px; }
  .cool-why { padding: 60px 20px; }
  .cool-problems { padding: 60px 20px; }
  .cool-cta { padding: 60px 20px; }
  .cool-areas { padding: 48px 20px; }
  .cool-guarantees { padding: 48px 20px; }
}@media (max-width: 360px) {
  body { font-size: 15px; }
}/* 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; }