* { 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 ---------- */


/* ---------- REMOVE ELEMENTOR INJECTED CONTENT ---------- */
.elementor-location-footer,
.elementor-location-header,
div[data-elementor-type="footer"],
div[data-elementor-type="header"],
.footer-service-areas,
.footer-tagline {
  display: none !important;
}

/* ---------- 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 34s 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;
}

.shah-header__inner {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 24px !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
  height: 84px !important;
}

/* Logo */
.shah-header__logo {
  flex-shrink: 0 !important;
}

.shah-header__logo a {
  display: block !important;
  text-decoration: none !important;
}

.shah-header__logo img {
  width: 180px !important;
  height: auto !important;
  display: block !important;
}

/* Desktop Nav */
.shah-header__nav {
  flex: 1 !important;
  display: flex !important;
  justify-content: center !important;
}

.shah-header__nav-list {
  display: flex !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 0 !important;
}

.shah-header__nav-item {
  position: relative !important;
}

.shah-header__nav-item > a {
  display: block !important;
  padding: 20px 12px !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  color: #ffffff !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: color 0.2s ease !important;
}

.shah-header__nav-item > a:hover,
.shah-header__nav-active > a {
  color: #FE4A00 !important;
}

/* Dropdown */
.shah-header__dropdown {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  min-width: 280px !important;
  background: #234190 !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3) !important;
  border-radius: 0 !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(4px) !important;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease !important;
  z-index: 99999 !important;
}

.shah-header__dropdown--wide {
  min-width: 320px !important;
}

.shah-header__nav-has-dropdown:hover > .shah-header__dropdown {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.shah-header__dropdown li {
  margin: 0 !important;
  padding: 0 !important;
}

.shah-header__dropdown li a {
  display: block !important;
  padding: 10px 20px !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #fff !important;
  text-decoration: none !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.1) !important;
  transition: background 0.15s ease !important;
  white-space: normal !important;
  line-height: 1.4 !important;
}

.shah-header__dropdown li:last-child a {
  border-bottom: none !important;
}

.shah-header__dropdown li a:hover,
.shah-header__dropdown-active {
  background: #FE4A00 !important;
  color: #fff !important;
}

/* Right section */
.shah-header__right {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-shrink: 0 !important;
}

.shah-header__phone {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  text-decoration: none !important;
  color: #ffffff !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
  transition: color 0.2s ease !important;
}

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

.shah-header__phone svg {
  flex-shrink: 0 !important;
}

.shah-header__open-badge {
  display: inline-block !important;
  background: #374151 !important;
  color: #fff !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  padding: 3px 8px !important;
  border-radius: 3px !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}

.shah-header__location {
  display: block !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 11px !important;
  color: rgba(255,255,255,0.75) !important;
  white-space: nowrap !important;
  line-height: 1.2 !important;
}

/* Hamburger — mobile only */
.shah-header__hamburger {
  display: none !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 5px !important;
  width: 44px !important;
  height: 44px !important;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  padding: 0 !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

.shah-header__hamburger-bar {
  display: block !important;
  width: 26px !important;
  height: 3px !important;
  background: #234190 !important;
  border-radius: 2px !important;
  transition: all 0.3s ease !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 rgba(255,255,255,0.1) !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: linear-gradient(135deg, #0a1628 0%, #0a1628 100%) !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: rgba(255,255,255,0.85) !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(255,102,0,0.15) !important;
  border-color: rgba(255,102,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: 50% !important;
  background: rgba(255,255,255,0.08) !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 {
  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 {
    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;
}

/* ── NEARBY CITIES SECTION ── */
.city-nearby {
  background: #fff;
  padding: 52px 20px 48px;
  border-top: 1px solid #ffffff;
}
.city-nearby__inner {
  max-width: 1060px;
  margin: 0 auto;
}
.city-nearby h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 900;
  color: #234190;
  text-align: center;
  margin: 0 0 8px;
}
.city-nearby__sub {
  font-family: 'Inter', sans-serif;
  text-align: center;
  color: #234190;
  font-size: 1rem;
  margin: 0 0 32px;
}
.city-nearby__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.city-nearby__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;
}
.city-nearby__link:hover {
  background: linear-gradient(135deg, #f0f2f5 0%, #FE4A00 50%, #FE4A00 100%);
  transform: translateY(-1px);
}
.city-nearby__pin { flex-shrink: 0; display: block; }
@media (max-width: 700px) { .city-nearby__grid { grid-template-columns: repeat(2, 1fr); } }

/* City page card images */
.sc-why-card { padding: 0 !important; overflow: hidden !important; }
.sc-why-card-img { width: 100% !important; height: 200px !important; object-fit: cover !important; display: block !important; flex-shrink: 0; }
.sc-why-card-icon { margin: 24px 28px 0 28px !important; }
.sc-why-card h3 { padding: 0 28px !important; margin-top: 12px !important; }
.sc-why-card p { padding: 0 28px 20px 28px !important; }
.sc-featured-stat { padding-left: 28px !important; }
.sc-featured-stat-label { padding: 0 28px 28px 28px !important; }
.sc-service-card { padding: 0 !important; overflow: hidden !important; }
.sc-service-card-img { width: 100% !important; height: 200px !important; object-fit: cover !important; display: block !important; }
.sc-service-card-number { padding: 24px 28px 0 28px !important; }
.sc-service-card h3 { padding: 0 28px !important; margin-top: 8px !important; }
.sc-service-card p { padding: 0 28px 12px 28px !important; }
.sc-service-card a.sc-service-link { display: block; padding: 0 28px 28px 28px !important; }



.sc-page *, .sc-page *::before, .sc-page *::after {box-sizing:border-box !important;margin:0;padding:0}
.sc-page {font-family:'Inter',-apple-system,BlinkMacSystemFont,sans-serif !important;color:#234190 !important;line-height:1.7 !important;overflow-x:hidden;width:100% !important;max-width:100% !important;margin-left:auto !important;margin-right:auto !important}
.sc-page img {max-width:100% !important;height:auto !important;display:block !important}
.sc-page a {text-decoration:none;color:inherit}
/* FULL-WIDTH THEME OVERRIDES */
.sc-hero,.sc-breadcrumb,.sc-trust-bar,.sc-section,.sc-review-strip,.sc-community-section,.sc-founder-section,.sc-cta-section,.sc-faq-section,.sc-footer-service-areas {width:100% !important;max-width:100% !important;margin-left:0 !important;margin-right:0 !important}
.entry-content,.site-main,.page .entry-content,.page-content {max-width:100% !important;width:100% !important;padding-left:0 !important;padding-right:0 !important;margin-left:auto !important;margin-right:auto !important}

/* NUCLEAR THEME BUTTON RESET */
.sc-page button,
.sc-page button[type],
.sc-page .sc-faq-item button,
.sc-page .sc-faq-section button,
body .sc-page button,
body .sc-faq-question,
body button.sc-faq-question,
#content .sc-page button,
.site-main .sc-page button,
.entry-content .sc-page button,
.entry-content button.sc-faq-question {
background:#FE4A00 !important;background-color:#FE4A00 !important;
border:none !important;border-radius:0 !important;
color:#fff !important;
box-shadow:none !important;outline:none !important;
text-transform:none !important;letter-spacing:normal !important;
padding:0 !important;margin:0 !important;
font-family:'Inter',-apple-system,BlinkMacSystemFont,sans-serif !important;
-webkit-appearance:none !important;appearance:none !important;
}

.sc-container {max-width:1200px;margin:0 auto;padding:0 24px}
.sr-only {position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0)}

/* BREADCRUMB */
.sc-breadcrumb {background:#f3f3f3;padding:12px 0;font-size:0.85rem;color:#4b5563;border-bottom:1px solid #f0f2f5}
.sc-breadcrumb a {color:#0a1628}
.sc-breadcrumb a:link,.sc-breadcrumb a:visited {color:#0a1628 !important}
.sc-breadcrumb a:hover {text-decoration:underline}
.sc-breadcrumb span {margin:0 8px}

/* HERO — fullwidth-overlay */
.sc-hero {position:relative;background:linear-gradient(rgba(5,12,22,0.80),rgba(5,12,22,0.80)),url('../images/dalle-aerial-drone-photograph-of-seminole-coun-1773508705531.webp') center/cover no-repeat;color:#fff;overflow:hidden}
.sc-hero::after {content:'';position:absolute;bottom:0;left:0;right:0;height:6px;background:linear-gradient(90deg,#FE4A00,#FE4A00,#FE4A00)}
.sc-hero-badge {display:inline-flex;align-items:center;gap:8px;background:rgba(255,102,0,0.15);border:1px solid rgba(255,102,0,0.4);border-radius:50px;padding:8px 20px;font-size:0.85rem;font-weight:600;color:#FE4A00;margin-bottom:24px;letter-spacing:0.5px}
.sc-hero-badge .sc-pulse {width:8px;height:8px;background:#FE4A00;border-radius:50%;animation:sc-pulse 2s infinite}
@keyframes sc-pulse {0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.5)}}
.sc-hero h1 {font-size:3rem;font-weight:900;line-height:1.1;margin-bottom:20px;letter-spacing:-0.02em;color:#fff !important;border:none !important;padding:0 !important}
.sc-hero h1 span {color:#FE4A00;position:relative}
.sc-hero-sub {font-size:1.15rem;color:rgba(255,255,255,0.85);margin-bottom:32px;max-width:520px}
.sc-hero-sub strong {color:#fff}
.sc-hero-ctas {display:flex;gap:16px;flex-wrap:wrap}
.sc-btn-primary {display:inline-flex;align-items:center;gap:10px;background:#FE4A00;color:#fff !important;padding:16px 32px;border-radius:8px;font-weight:700;font-size:1.05rem;transition:all 0.3s;box-shadow:0 4px 20px rgba(255,102,0,0.4) !important}
.sc-btn-primary:link,.sc-btn-primary:visited {color:#fff !important}
.sc-btn-primary:hover {background:#fe4a00;transform:translateY(-2px);box-shadow:0 6px 30px rgba(255,102,0,0.5) !important}
.sc-btn-secondary {display:inline-flex;align-items:center;gap:10px;background:transparent;color:#fff !important;padding:16px 32px;border-radius:8px;font-weight:700;font-size:1.05rem;border:2px solid rgba(255,255,255,0.3);transition:all 0.3s}
.sc-btn-secondary:link,.sc-btn-secondary:visited {color:#fff !important}
.sc-btn-secondary:hover {border-color:#fff;background:rgba(255,255,255,0.1)}
.sc-guarantee-card {background:rgba(10,8,5,0.92);border:1px solid rgba(255,255,255,0.1);border-radius:20px;padding:40px;text-align:center;position:relative;box-shadow:0 8px 32px rgba(0,0,0,0.2) !important}
.sc-guarantee-card::before {content:'';position:absolute;inset:-2px;border-radius:22px;background:linear-gradient(135deg,rgba(255,102,0,0.5),transparent 50%,rgba(255,102,0,0.3));z-index:-1}
.sc-guarantee-number {font-size:6rem;font-weight:900;line-height:1;background:linear-gradient(135deg, #FE4A00 0%, #FE4A00 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.sc-guarantee-label {font-size:1.5rem;font-weight:700;margin-top:4px;color:#fff}
.sc-guarantee-sub {color:rgba(255,255,255,0.85);margin-top:12px;font-size:1rem}
.sc-guarantee-penalty {display:inline-block;margin-top:20px;background:rgba(255,102,0,0.2);border:1px solid rgba(255,102,0,0.4);border-radius:8px;padding:10px 24px;font-weight:700;color:#FE4A00;font-size:1.1rem}

.sc-hero::before {content:'';position:absolute;top:0;left:0;right:0;bottom:0;background:linear-gradient(90deg,rgba(255,255,255,0.02) 1px,transparent 1px),linear-gradient(rgba(255,255,255,0.02) 1px,transparent 1px);background-size:60px 60px;z-index:1}
.sc-hero {padding:120px 0 100px;text-align:center}
.sc-hero-grid {position:relative;z-index:2;max-width:780px;margin:0 0 0 80px;margin-right:auto;max-width:700px}
.sc-hero-ctas {justify-content:center}
.sc-hero h1 {font-size:3.5rem}
.sc-hero-stats {display:grid;grid-template-columns:1fr 1fr;gap:24px;padding:0;display:flex;justify-content:center;gap:48px;margin-top:48px;flex-wrap:wrap}
.sc-hero-stat {text-align:center}
.sc-hero-stat-num {font-size:3rem;font-weight:900;color:#FE4A00}
.sc-hero-stat-label {font-size:0.9rem;color:rgba(255,255,255,0.85);margin-top:4px}

/* TRUST BAR — stat-blocks */
.sc-trust-bar {background:#fff;padding:32px 0;border-bottom:1px solid #ffffff}
.sc-trust-items {display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.sc-trust-item {padding:20px 24px;border-left:4px solid #FE4A00;background:#f3f3f3}
.sc-trust-icon {display:none}
.sc-trust-text strong {display:block;font-size:1.8rem;font-weight:900;color:#234190;line-height:1.1}
.sc-trust-text span {font-size:0.8rem;color:#234190;margin-top:4px;display:block}

/* SECTIONS */
.sc-section {padding:60px 0 !important}
.sc-section-label {display:inline-block !important;font-size:0.8rem !important;font-weight:700 !important;text-transform:uppercase !important;letter-spacing:2px !important;color:#FE4A00 !important;margin-bottom:12px !important}
.sc-section-title {font-family:'Inter',-apple-system,BlinkMacSystemFont,sans-serif !important;font-size:2.4rem !important;font-weight:800 !important;line-height:1.2 !important;color:#234190 !important;margin-bottom:16px !important;border:none !important;padding:0 !important;text-transform:uppercase !important;letter-spacing:2px !important;font-weight:900 !important}
.sc-section-desc {font-size:1.1rem !important;color:#4b5563 !important;max-width:700px;margin-bottom:40px !important}

/* WHY CHOOSE US */
.sc-why-section {background:#fff}
.sc-why-grid {display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.sc-why-card {background:#f3f3f3 !important;border-radius:4px !important;padding:32px !important;border:none !important;transition:all 0.3s;position:relative;overflow:hidden;box-shadow:none !important}
.sc-why-card:hover {border-color:none !important;transform:translateY(-4px);box-shadow:0 4px 16px rgba(0,0,0,0.08) !important}
.sc-why-card-icon {width:56px;height:56px;background:linear-gradient(135deg, #FE4A00 0%, #FE4A00 100%);border-radius:14px;display:flex;align-items:center;justify-content:center;color:#fff;font-size:1.5rem;margin-bottom:20px}
.sc-why-card h3 {font-size:1.2rem;font-weight:700;margin-bottom:10px;color:#234190 !important}
.sc-why-card p {color:#4b5563;font-size:0.95rem}
.sc-why-card.sc-featured {background:linear-gradient(135deg,#234190,#234190) !important;color:#fff !important;border-color:transparent !important;grid-row:span 2}
.sc-why-card.sc-featured h3 {color:#fff !important}
.sc-why-card.sc-featured p {color:rgba(255,255,255,0.8)}
.sc-why-card.sc-featured .sc-why-card-icon {background:rgba(10,8,5,0.92)}
.sc-featured-stat {font-size:3.5rem;font-weight:900;color:#FE4A00;line-height:1;margin:24px 0 8px}
.sc-featured-stat-label {font-size:1rem;color:rgba(255,255,255,0.85)}

/* SERVICES */
.sc-services-section {background:linear-gradient(180deg,#f3f3f3 0%,#fff 100%)}
.sc-services-grid {display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.sc-service-card {background:#fff !important;border-radius:4px !important;padding:32px !important;border:none !important;transition:all 0.3s;position:relative;box-shadow:none !important}
.sc-service-card:hover {border-color:#234190 !important;transform:translateY(-4px);box-shadow:0 4px 16px rgba(0,0,0,0.08) !important}
.sc-service-card-number {font-size:3rem;font-weight:900;color:#ffffff;line-height:1;margin-bottom:16px}
.sc-service-card h3 {font-size:1.15rem;font-weight:700;margin-bottom:10px;color:#234190 !important}
.sc-service-card p {color:#4b5563;font-size:0.92rem;margin-bottom:16px}
.sc-service-link {color:#FE4A00 !important;font-weight:600;font-size:0.9rem;display:inline-flex;align-items:center;gap:6px;transition:gap 0.3s}
.sc-service-link:link,.sc-service-link:visited {color:#FE4A00 !important}
.sc-service-link:hover {gap:10px}

/* COST TABLE */
.sc-cost-section {background:#fff}
.sc-cost-table {width:100% !important;border-collapse:collapse !important;border-radius:4px !important;overflow:hidden !important;box-shadow:0 4px 20px rgba(0,0,0,0.1) !important}
.sc-cost-table thead {background:linear-gradient(135deg,#234190,#234190);color:#fff}
.sc-cost-table th {padding:16px 24px;text-align:left;font-weight:700;font-size:0.95rem;color:#fff !important}
.sc-cost-table td {padding:14px 24px;border-bottom:1px solid #f0f2f5;font-size:0.95rem}
.sc-cost-table tbody tr:nth-child(even) {background:#f3f3f3}
.sc-cost-table tbody tr:hover {background:#f0f2f5}
.sc-cost-note {margin-top:16px;font-size:0.85rem;color:#4b5563;font-style:italic}

/* NEIGHBORHOODS */
.sc-neighborhoods-section {background:#fff}
.sc-neighborhoods-grid {display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start}
.sc-neighborhood-list {display:grid;grid-template-columns:1fr 1fr;gap:12px}
.sc-neighborhood-item {display:flex !important;align-items:center !important;gap:12px !important;padding:14px 18px !important;background:#f3f3f3 !important;border-radius:10px !important;border:1px solid #f0f2f5 !important;transition:all 0.3s;box-shadow:0 2px 8px rgba(0,0,0,0.06) !important}
.sc-neighborhood-item:hover {border-color:#FE4A00;background:#fff}
.sc-neighborhood-item .sc-dot {width:10px;height:10px;background:#FE4A00;border-radius:50%;flex-shrink:0}
.sc-neighborhood-item .sc-name {font-weight:600;font-size:0.95rem}
.sc-neighborhood-item .sc-zip {font-size:0.8rem;color:#234190}
.sc-map-container {border-radius:4px !important;overflow:hidden !important;border:2px solid #ffffff !important;box-shadow:0 8px 30px rgba(0,0,0,0.1) !important}
.sc-map-container iframe {width:100%;height:500px;border:0}

/* FAQ — minimal-list */
.sc-faq-section {background:#fff}
.sc-faq-grid {max-width:800pxdisplay:grid;grid-template-columns:repeat(2,1fr);gap:20px;align-items:start;}
.sc-faq-item {padding:24px 0;border-bottom:1px solid #ffffff}
.sc-faq-item:last-child {border-bottom:none}
.sc-faq-item h3 {font-size:1.05rem;font-weight:700;color:#234190 !important;margin-bottom:10px}
.sc-faq-item p {color:#234190 !important;font-size:0.95rem !important;line-height:1.7 !important}

/* FOUNDER */
.sc-founder-section {background:linear-gradient(135deg,#234190 0%,#234190 100%) !important;color:#fff !important;position:relative;overflow:hidden;padding:60px 0}
.sc-founder-section::before {content:'';position:absolute;top:-100px;right:-100px;width:400px;height:400px;background:radial-gradient(circle,rgba(255,102,0,0.1) 0%,transparent 70%);border-radius:50%}
.sc-founder-section,.sc-founder-section div,.sc-founder-section span,.sc-founder-section p {color:#fff !important}
.sc-founder-grid {display:grid;grid-template-columns:1fr 2fr;gap:60px;align-items:center;position:relative;z-index:2;
  background: rgba(255,255,255,0.07) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: 16px !important;
  padding: 36px !important;
}
.sc-founder-image {width:100%;aspect-ratio:1;border-radius:20px;overflow:hidden;border:2px solid rgba(255,255,255,0.1)}
.sc-founder-image img {width:100%;height:100%;object-fit:cover;object-position:center top;display:block}
.sc-founder-quote {font-size:1.3rem;font-style:italic;line-height:1.8;color:rgba(255,255,255,0.9) !important;margin-bottom:24px;position:relative;padding-left:24px;border-left:4px solid #FE4A00}
.sc-founder-name {font-weight:700;font-size:1.1rem;color:#fff !important}
.sc-founder-title {color:rgba(255,255,255,0.85) !important;font-size:0.95rem}
.sc-founder-license {margin-top:4px;color:#FE4A00 !important;font-size:0.85rem;font-weight:600}

/* CTA — minimal-strip */
.sc-cta-section {background:#234190;padding:40px 0 !important}
.sc-cta-content {display:flex;align-items:center;justify-content:space-between;gap:32px;flex-wrap:wrap}
.sc-cta-section h2 {font-size:1.6rem;font-weight:800;margin:0;color:#fff !important;border:none !important;padding:0 !important}
.sc-cta-section p {font-size:1rem;margin:4px 0 0;color:rgba(255,255,255,0.85);max-width:500px}
.sc-btn-cta {display:inline-flex;align-items:center;gap:10px;background:#FE4A00;color:#fff !important;padding:16px 36px;border-radius:8px;font-weight:800;font-size:1.1rem;transition:all 0.3s;box-shadow:0 4px 20px rgba(255,102,0,0.4) !important;white-space:nowrap}
.sc-btn-cta:link,.sc-btn-cta:visited {color:#fff !important}
.sc-btn-cta:hover {background:#fe4a00;transform:translateY(-2px)}

/* MOBILE CTA */
.sc-mobile-cta {display:none;position:fixed;bottom:0;left:0;right:0;background:#FE4A00;padding:12px 20px;z-index:1000;box-shadow:0 -4px 20px rgba(0,0,0,0.15)}
.sc-mobile-cta a {display:flex;align-items:center;justify-content:center;gap:10px;color:#fff !important;font-weight:800;font-size:1.1rem}
.sc-mobile-cta a:link,.sc-mobile-cta a:visited {color:#fff !important}



/* RESPONSIVE */
@media (max-width:1024px) {
.sc-hero-grid {grid-template-columns:1fr;gap:40px}
.sc-hero h1 {font-size:2.4rem}
.sc-why-grid {grid-template-columns:1fr 1fr}
.sc-why-card.sc-featured {grid-row:span 1}
.sc-services-grid {grid-template-columns:1fr 1fr}
.sc-neighborhoods-grid {grid-template-columns:1fr}
.sc-founder-grid {grid-template-columns:1fr;
  background: rgba(255,255,255,0.07) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: 16px !important;
  padding: 36px !important;
}
.sc-founder-image {max-width:200px}
.sc-faq-grid {grid-template-columns:repeat(2,1fr)}
.sc-cta-content {grid-template-columns:1fr}
}
@media (max-width:768px) {
.sc-hero {padding:50px 0 40px}
.sc-hero h1 {font-size:2rem}
.sc-trust-items {grid-template-columns:1fr 1fr;gap:16px}
.sc-why-grid {grid-template-columns:1fr}
.sc-services-grid {grid-template-columns:1fr}
.sc-neighborhood-list {grid-template-columns:1fr}
.sc-section {padding:40px 0 !important}
.sc-section-title {font-size:1.8rem !important}
.sc-hero-ctas {flex-direction:column}
.sc-btn-primary,.sc-btn-secondary {justify-content:center}
.sc-mobile-cta {display:block}
.sc-page {padding-bottom:60px}
.sc-cta-content {flex-direction:column;text-align:center}
}


/* ===== SEMINOLE COUNTY: Official Government Style Override ===== */
/* Why section: crisp white, 4-col, minimal cards with dark bottom border */
.sc-why-section { background: #fff !important; border-top: 4px solid #234190 !important; }
.sc-section-label { color: #234190 !important; }
.sc-why-card { background: #fff !important; border: none !important; border-bottom: 3px solid #f0f2f5 !important; border-radius: 0 !important; box-shadow: none !important; padding-bottom: 24px !important; }
.sc-why-card:hover { border-bottom-color: #234190 !important; transform: translateY(-3px) !important; box-shadow: 0 4px 16px rgba(107,28,46,0.1) !important; }
.sc-why-card-icon { background: linear-gradient(135deg, #3a0a14, #234190) !important; border-radius: 4px !important; }
.sc-why-card.sc-featured { background: linear-gradient(135deg, #3a0a14, #234190) !important; border-bottom-color: transparent !important; border-radius: 4px !important; box-shadow: 0 8px 30px rgba(107,28,46,0.25) !important; }
/* Services: dark maroon section */
.sc-services-section { background: linear-gradient(160deg, #fe4a00 0%, #fe4a00 100%) !important; }
.sc-services-section .sc-section-label { color: #FE4A00 !important; }
.sc-services-section .sc-section-title { color: #fff !important; border: none !important; }
.sc-services-section .sc-section-desc { color: rgba(255,255,255,0.85) !important; }
.sc-service-card { background: rgba(255,255,255,0.07) !important; border-color: rgba(255,255,255,0.15) !important; border-radius: 4px !important; }
.sc-service-card:hover { background: rgba(254,74,0,0.15) !important; border-color: #FE4A00 !important; }
.sc-service-card h3 { color: #fff !important; }
.sc-service-card p { color: rgba(255,255,255,0.85) !important; }
.sc-service-card-number { color: rgba(255,255,255,0.1) !important; }
.sc-service-link { color: #FE4A00 !important; }
.sc-service-link:link, .sc-service-link:visited { color: #FE4A00 !important; }
/* Cost: maroon header, clean table */
.sc-cost-table thead { background: linear-gradient(135deg, #1a0008, #234190) !important; }
/* FAQ: dark maroon */
.sc-faq-section { background: linear-gradient(160deg, #fe4a00 0%, #fe4a00 100%) !important; }
.sc-faq-section .sc-section-label { color: #FE4A00 !important; }
.sc-faq-section .sc-section-title { color: #fff !important; border: none !important; }
.sc-faq-section .sc-section-desc { color: rgba(255,255,255,0.85) !important; }
.sc-faq-item { background: rgba(255,255,255,0.07) !important; border-left-color: #FE4A00 !important; }
.sc-faq-item h3 { color: #fff !important; }
/* Trust icons: maroon */
.sc-trust-icon { background: linear-gradient(135deg, #1a0008, #234190) !important; }

/* ═══ BODY THEME: SC ═══ */
.sc-why-section {
  background: #234190 !important;
}
.sc-why-section .sc-section-title {
  color: #fff !important;
}
.sc-why-section .sc-section-desc {
  color: rgba(255,255,255,0.75) !important;
}
.sc-why-section .sc-section-label {
  color: #FE4A00 !important;
}
.sc-why-card {
  background: rgba(255,255,255,0.05) !important;
  border-color: rgba(255,255,255,0.10) !important;
}
.sc-why-card h3 {
  color: #fff !important;
}
.sc-why-card p,
.sc-why-card .sc-featured-stat-label {
  color: rgba(255,255,255,0.85) !important;
}
.sc-why-card-icon {
  background: linear-gradient(135deg,#FE4A00,#FE4A00) !important;
}
.sc-faq-section {
  background: #f3f3f3 !important;
}
.sc-faq-section .sc-section-title { color: #234190 !important; }
.sc-faq-section .sc-section-desc { color: #4b5563 !important; }
.sc-faq-section .sc-section-label { color: #FE4A00 !important; }
.sc-faq-item { background: #ffffff !important; border-left: 4px solid #FE4A00 !important; }
.sc-faq-item h3 { color: #234190 !important; }
.sc-faq-item p { color: #374151 !important; }

/* ═══ SEMINOLE COUNTY — Hard Split: Dark Panel Left / Aerial Photo Right ═══ */
/* Gradient creates a visually split hero: near-opaque left 55%, fully clear right 45% */
.sc-hero {
  background:
    linear-gradient(
      90deg,
      rgba(5,12,22,0.95) 0%,
      rgba(5,12,22,0.95) 50%,
      rgba(5,12,22,0.30) 58%,
      rgba(5,12,22,0.05) 100%
    ),
    url('../images/dalle-aerial-drone-photograph-of-seminole-coun-1773508705531.webp') center/cover no-repeat !important;
  text-align: left !important;
  padding: 110px 0 90px !important;
  min-height: 520px !important;
}
/* Orange vertical left-edge accent stripe */
.sc-hero::before {
  content: '' !important;
  display: block !important;
  position: absolute !important;
  top: 0 !important; bottom: 0 !important; left: 0 !important;
  width: 6px !important;
  background: linear-gradient(180deg, #FE4A00, #e53d22) !important;
  z-index: 3 !important;
  border-radius: 0 !important;
  font-size: 0 !important;
}
/* Layout: text left col, stats right col */
.sc-hero > .sc-container {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 40px !important;
  align-items: center !important;
  position: relative !important;
  z-index: 2 !important;
}
.sc-hero-grid {
  max-width: none !important;
  margin: 0 !important;
  text-align: left !important;
}
.sc-hero h1 { text-align: left !important; font-size: 3.4rem !important; }
.sc-hero-sub { text-align: left !important; margin-left: 0 !important; max-width: 480px !important; }
.sc-hero-badge { margin: 0 0 24px !important; }
/* Stats panel on right side — frosted glass card */
.sc-hero-stats {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 2px !important;
  margin: 0 !important;
  justify-content: flex-start !important;
  background: rgba(254,74,0,0.12) !important;
  border: 1px solid rgba(254,74,0,0.30) !important;
  border-radius: 4px !important;
  padding: 0 !important;
  overflow: hidden !important;
  position: relative !important;
  z-index: 2 !important;
}
.sc-hero-stat {
  text-align: center !important;
  padding: 28px 16px !important;
  background: rgba(5,12,22,0.70) !important;
}
.sc-hero-stat-num { font-size: 2.6rem !important; }
.sc-hero-ctas { justify-content: flex-start !important; }

/* === SEMINOLE COUNTY WHY L3: 3-col compact, featured spans 2 cols === */
.sc-why-section { background: #234190 !important; }
.sc-why-section .sc-section-title { color: #fff !important; }
.sc-why-section .sc-section-label { color: rgba(255,255,255,0.85) !important; }
.sc-why-section .sc-section-desc { color: rgba(255,255,255,0.85) !important; }
.sc-why-section .sc-why-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px !important;
}
.sc-why-section .sc-why-card {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  border-radius: 0 !important;
  padding: 22px 18px !important;
  box-shadow: none !important;
  grid-row: span 1 !important;
  grid-column: span 1 !important;
}
.sc-why-section .sc-why-card.sc-featured {
  background: rgba(254,74,0,0.10) !important;
  border-color: #FE4A00 !important;
  border-width: 1px !important;
  grid-column: span 2 !important;
  grid-row: span 1 !important;
}
.sc-why-section .sc-why-card-img { display: none !important; }
.sc-why-section .sc-why-card-icon { background: rgba(254,74,0,0.15) !important; border-radius: 0 !important; }
.sc-why-section .sc-why-card h3 { color: #fff !important; font-size: 0.95rem !important; margin-bottom: 8px !important; }
.sc-why-section .sc-why-card p { color: rgba(255,255,255,0.85) !important; font-size: 0.85rem !important; }
.sc-why-section .sc-why-card.sc-featured h3 { color: #FE4A00 !important; font-size: 1.05rem !important; }
.sc-why-section .sc-why-card.sc-featured p { color: rgba(255,255,255,0.75) !important; }
.sc-why-section .sc-featured-stat { font-size: 2.5rem !important; font-weight: 900 !important; color: #FE4A00 !important; }
.sc-why-section .sc-featured-stat-label { color: rgba(255,255,255,0.85) !important; font-size: 0.8rem !important; }

/* === Guarantee divider strip === */
.sc-guarantee-divider {
  background: linear-gradient(90deg, #234190, #234190) !important;
  border-top: 3px solid #FE4A00 !important;
  border-bottom: 3px solid #FE4A00 !important;
  padding: 18px 24px !important;
}
.sc-gd-inner {
  max-width: 1200px !important;
  margin: 0 auto !important;
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
  flex-wrap: wrap !important;
}
.sc-gd-number { font-size: 2.8rem !important; font-weight: 900 !important; color: #FE4A00 !important; line-height: 1 !important; flex-shrink: 0 !important; }
.sc-gd-sep { color: rgba(255,255,255,0.2) !important; font-size: 2rem !important; flex-shrink: 0 !important; }
.sc-gd-text { flex: 1 !important; color: rgba(255,255,255,0.85) !important; font-size: 0.95rem !important; }
.sc-gd-text strong { color: #fff !important; }
.sc-gd-btn { background: #FE4A00 !important; color: #fff !important; padding: 10px 18px !important; border-radius: 4px !important; text-decoration: none !important; font-weight: 700 !important; font-size: 0.88rem !important; white-space: nowrap !important; flex-shrink: 0 !important; }
/* === MAP LAYOUT FIX: full-width stacked === === */
.sc-neighborhoods-grid { display: block !important; }
.sc-neighborhood-list { display: grid !important; grid-template-columns: repeat(3,1fr) !important; gap: 12px !important; margin-bottom: 32px !important; }
.sc-map-container { border-radius: 12px !important; overflow: hidden !important; border: 2px solid #ffffff !important; box-shadow: 0 8px 30px rgba(0,0,0,0.1) !important; margin-top: 0 !important; }
.sc-map-container iframe { width: 100% !important; height: 400px !important; border: 0 !important; display: block !important; }
@media (max-width: 768px) {
  .sc-neighborhood-list { grid-template-columns: 1fr 1fr !important; }
  .sc-map-container iframe { height: 280px !important; }
}
@media (max-width: 480px) {
  .sc-neighborhood-list { grid-template-columns: 1fr !important; }
}

/* === SERVICE AREA EAST-ORLANDO STYLE === === */
.sc-neighborhood-item {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 14px 18px !important;
  background: #ffffff !important;
  border: 2px solid #FE4A00 !important;
  border-radius: 10px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
  transition: all 0.3s !important;
}
.sc-neighborhood-item:hover { background: #fff !important; border-color: #fe4a00 !important; }
.sc-dot { width:10px; height:10px; background:#FE4A00; border-radius:50%; flex-shrink:0; }
.sc-name { font-weight:600; font-size:0.95rem; color:#234190; }
.sc-zip { font-size:0.8rem; color:#234190; }
.sc-map-container {
  border-radius: 16px !important;
  overflow: hidden !important;
  border: 2px solid #ffffff !important;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1) !important;
}
.sc-map-container iframe { width:100% !important; height:450px !important; border:0 !important; display:block !important; }
@media (max-width:768px) { .sc-map-container iframe { height:280px !important; } }
