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



.azp-page *, .azp-page *::before, .azp-page *::after {box-sizing:border-box !important;margin:0;padding:0}
.azp-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}
.azp-page img {max-width:100% !important;height:auto !important;display:block !important}
.azp-page a {text-decoration:none;color:inherit}
/* FULL-WIDTH THEME OVERRIDES */
.azp-hero,.azp-breadcrumb,.azp-trust-bar,.azp-section,.azp-review-strip,.azp-community-section,.azp-founder-section,.azp-cta-section,.azp-faq-section,.azp-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 */
.azp-page button,
.azp-page button[type],
.azp-page .azp-faq-item button,
.azp-page .azp-faq-section button,
body .azp-page button,
body .azp-faq-question,
body button.azp-faq-question,
#content .azp-page button,
.site-main .azp-page button,
.entry-content .azp-page button,
.entry-content button.azp-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;
}

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

/* HERO — split-right */
.azp-hero {position:relative;background:linear-gradient(rgba(15,8,3,0.80),rgba(15,8,3,0.80)),url('../images/azalea-park-hero.webp') center/cover no-repeat;color:#fff;overflow:hidden}
.azp-hero::before {content:'';position:absolute;inset:0;background:rgba(26,14,8,0.74);z-index:1}
.azp-hero::after {content:'';position:absolute;bottom:0;left:0;right:0;height:6px;background:linear-gradient(90deg,#FE4A00,#FE4A00,#FE4A00);z-index:3}
.azp-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}
.azp-hero-badge .azp-pulse {width:8px;height:8px;background:#FE4A00;border-radius:50%;animation:azp-pulse 2s infinite}
@keyframes azp-pulse {0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.5)}}
.azp-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}
.azp-hero h1 span {color:#FE4A00;position:relative}
.azp-hero-sub {font-size:1.15rem;color:rgba(255,255,255,0.85);margin-bottom:32px;max-width:520px}
.azp-hero-sub strong {color:#fff}
.azp-hero-ctas {display:flex;gap:16px;flex-wrap:wrap}
.azp-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}
.azp-btn-primary:link,.azp-btn-primary:visited {color:#fff !important}
.azp-btn-primary:hover {background:#fe4a00;transform:translateY(-2px);box-shadow:0 6px 30px rgba(255,102,0,0.5) !important}
.azp-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}
.azp-btn-secondary:link,.azp-btn-secondary:visited {color:#fff !important}
.azp-btn-secondary:hover {border-color:#fff;background:rgba(255,255,255,0.1)}
.azp-guarantee-card {background:rgba(15,8,3,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}
.azp-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}
.azp-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}
.azp-guarantee-label {font-size:1.5rem;font-weight:700;margin-top:4px;color:#fff}
.azp-guarantee-sub {color:rgba(255,255,255,0.85);margin-top:12px;font-size:1rem}
.azp-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}

.azp-hero::before {content:'';position:absolute;top:-50%;right:-20%;width:600px;height:600px;background:radial-gradient(circle,rgba(255,102,0,0.15) 0%,transparent 70%);border-radius:50%}
.azp-hero {padding:80px 0 60px}
.azp-hero-grid {display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;position:relative;z-index:2;direction:rtl}
.azp-hero-grid > div {direction:ltr}

/* TRUST BAR — icon-circles */
.azp-trust-bar {background:#fff;padding:36px 0;border-bottom:1px solid #ffffff}
.azp-trust-items {display:grid;grid-template-columns:repeat(4,1fr);gap:24px;text-align:center}
.azp-trust-item {display:flex;flex-direction:column;align-items:center;gap:8px}
.azp-trust-icon {width:64px;height:64px;background:linear-gradient(135deg,#0a1628,#234190);border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;font-size:1.4rem;box-shadow:0 4px 16px rgba(0,0,0,0.12) !important}
.azp-trust-text {text-align:center}
.azp-trust-text strong {display:block;font-size:1.15rem;color:#234190;font-weight:800}
.azp-trust-text span {font-size:0.8rem;color:#234190}

/* SECTIONS */
.azp-section {padding:60px 0 !important}
.azp-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}
.azp-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:none !important;font-weight:600 !important;font-size:2.6rem !important}
.azp-section-desc {font-size:1.1rem !important;color:#4b5563 !important;max-width:700px;margin-bottom:40px !important}

/* WHY CHOOSE US */
.azp-why-section {background:#fff}
.azp-why-grid {display:grid;grid-template-columns:repeat(2,1fr);gap:24px}
.azp-why-card {background:#ffffff !important;border-radius:20px !important;padding:32px !important;border:1px solid #ffffff !important;transition:all 0.3s;position:relative;overflow:hidden;box-shadow:0 4px 16px rgba(0,0,0,0.1) !important}
.azp-why-card:hover {border-color:#FE4A00 !important;transform:translateY(-4px);box-shadow:0 12px 40px rgba(0,0,0,0.15) !important}
.azp-why-card::before {content:'';position:absolute;top:0;left:0;right:0;height:4px;background:linear-gradient(90deg,#0a1628,#FE4A00);opacity:0;transition:opacity 0.3s}
.azp-why-card:hover::before {opacity:1}
.azp-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}
.azp-why-card h3 {font-size:1.2rem;font-weight:700;margin-bottom:10px;color:#234190 !important}
.azp-why-card p {color:#4b5563;font-size:0.95rem}
.azp-why-card.azp-featured {background:linear-gradient(135deg,#0a1628,#234190) !important;color:#fff !important;border-color:transparent !important;grid-row:span 2}
.azp-why-card.azp-featured h3 {color:#fff !important}
.azp-why-card.azp-featured p {color:rgba(255,255,255,0.8)}
.azp-why-card.azp-featured .azp-why-card-icon {background:rgba(255,255,255,0.15)}
.azp-featured-stat {font-size:3.5rem;font-weight:900;color:#FE4A00;line-height:1;margin:24px 0 8px}
.azp-featured-stat-label {font-size:1rem;color:rgba(255,255,255,0.85)}

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

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

/* NEIGHBORHOODS */
.azp-neighborhoods-section {background:#fff}
.azp-neighborhoods-grid {display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start}
.azp-neighborhood-list {display:grid;grid-template-columns:1fr 1fr;gap:12px}
.azp-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}
.azp-neighborhood-item:hover {border-color:#FE4A00;background:#fff}
.azp-neighborhood-item .azp-dot {width:10px;height:10px;background:#FE4A00;border-radius:50%;flex-shrink:0}
.azp-neighborhood-item .azp-name {font-weight:600;font-size:0.95rem}
.azp-neighborhood-item .azp-zip {font-size:0.8rem;color:#234190}
.azp-map-container {border-radius:20px !important;overflow:hidden !important;border:2px solid #ffffff !important;box-shadow:0 8px 30px rgba(0,0,0,0.1) !important}
.azp-map-container iframe {width:100%;height:500px;border:0}

/* FAQ — bordered-stack */
.azp-faq-section {background:linear-gradient(180deg,#f3f3f3 0%,#fff 100%)}
.azp-faq-grid {display:flex;flex-direction:column;gap:16px;max-width:900px}
.azp-faq-item {background:#fff !important;border-left:4px solid #FE4A00 !important;padding:24px 28px !important;border-radius:0 20px 20px 0 !important;box-shadow:0 2px 8px rgba(0,0,0,0.06) !important;transition:all 0.3s}
.azp-faq-item:hover {border-left-color:#fe4a00 !important;box-shadow:0 4px 16px rgba(0,0,0,0.1) !important;transform:translateX(4px)}
.azp-faq-item h3 {font-size:1.05rem;font-weight:700;color:#234190 !important;margin-bottom:10px}
.azp-faq-item p {color:#4b5563 !important;font-size:0.95rem !important;line-height:1.7 !important}

/* FOUNDER */
.azp-founder-section {background: #234190 !important;color:#fff !important;position:relative;overflow:hidden;padding:60px 0}
.azp-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%}
.azp-founder-section,.azp-founder-section div,.azp-founder-section span,.azp-founder-section p {color:#fff !important}
.azp-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;
}
.azp-founder-image {width:100%;aspect-ratio:1;border-radius:20px;overflow:hidden;border:2px solid rgba(255,255,255,0.1)}
.azp-founder-image img {width:100%;height:100%;object-fit:cover;object-position:center top;display:block}
.azp-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}
.azp-founder-name {font-weight:700;font-size:1.1rem;color:#fff !important}
.azp-founder-title {color:rgba(255,255,255,0.85) !important;font-size:0.95rem}
.azp-founder-license {margin-top:4px;color:#FE4A00 !important;font-size:0.85rem;font-weight:600}

/* CTA — gradient-box */
.azp-cta-section {background:#FE4A00;color:#fff;text-align:center;padding:60px 0 !important;position:relative;overflow:hidden}
.azp-cta-section::before {content:'';position:absolute;top:0;left:0;right:0;bottom:0;background:linear-gradient(135deg,rgba(0,0,0,0.1) 0%,transparent 50%,rgba(0,0,0,0.1) 100%)}
.azp-cta-content {position:relative;z-index:2}
.azp-cta-section h2 {font-size:2.2rem;font-weight:900;margin-bottom:12px;color:#fff !important;border:none !important;padding:0 !important}
.azp-cta-section p {font-size:1.15rem;margin-bottom:28px;opacity:0.95;color:#fff}
.azp-btn-white {display:inline-flex;align-items:center;gap:10px;background:#fff;color:#FE4A00 !important;padding:18px 40px;border-radius:8px;font-weight:800;font-size:1.2rem;transition:all 0.3s;box-shadow:0 4px 20px rgba(0,0,0,0.15) !important}
.azp-btn-white:link,.azp-btn-white:visited {color:#FE4A00 !important}
.azp-btn-white:hover {transform:translateY(-2px);box-shadow:0 8px 30px rgba(0,0,0,0.2) !important}

/* MOBILE CTA */
.azp-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)}
.azp-mobile-cta a {display:flex;align-items:center;justify-content:center;gap:10px;color:#fff !important;font-weight:800;font-size:1.1rem}
.azp-mobile-cta a:link,.azp-mobile-cta a:visited {color:#fff !important}

/* DIVIDER — dots */
.azp-divider-dots {text-align:center;padding:20px 0}
.azp-divider-dots::before {content:'\2022 \2022 \2022 \2022 \2022';letter-spacing:12px;color:#f3f3f3;font-size:1.2rem}

/* RESPONSIVE */
@media (max-width:1024px) {
.azp-hero-grid {grid-template-columns:1fr;gap:40px;direction:ltr}
.azp-hero h1 {font-size:2.4rem}
.azp-why-grid {grid-template-columns:1fr 1fr}
.azp-why-card.azp-featured {grid-row:span 1}
.azp-services-grid {grid-template-columns:1fr 1fr}
.azp-neighborhoods-grid {grid-template-columns:1fr}
.azp-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;
}
.azp-founder-image {max-width:200px}
.azp-faq-grid {grid-template-columns:repeat(2,1fr)}
.azp-cta-content {grid-template-columns:1fr}
}
@media (max-width:768px) {
.azp-hero {padding:50px 0 40px}
.azp-hero h1 {font-size:2rem}
.azp-trust-items {grid-template-columns:1fr 1fr;gap:16px}
.azp-why-grid {grid-template-columns:1fr}
.azp-services-grid {grid-template-columns:1fr}
.azp-neighborhood-list {grid-template-columns:1fr}
.azp-section {padding:40px 0 !important}
.azp-section-title {font-size:1.8rem !important}
.azp-hero-ctas {flex-direction:column}
.azp-btn-primary,.azp-btn-secondary {justify-content:center}
.azp-mobile-cta {display:block}
.azp-page {padding-bottom:60px}
.azp-cta-content {flex-direction:column;text-align:center}
}


/* ===== AZALEA PARK: Retro Vintage Override ===== */
/* Why section: warm retro cream, 2-col, thick-boxed retro cards */
.azp-why-section { background: #f0f2f5 !important; }
.azp-section-label { color: #e53d22 !important; }
.azp-why-card { background: #fff !important; border: 3px solid #0a1628 !important; border-radius: 0 !important; box-shadow: 6px 6px 0 #0a1628 !important; transition: none !important; }
.azp-why-card:hover { transform: translate(-3px,-3px) !important; box-shadow: 9px 9px 0 #0a1628 !important; }
.azp-why-card h3 { color: #0a1628 !important; font-family: 'Playfair Display', Georgia, serif !important; }
.azp-why-card p { color: #374151 !important; }
.azp-why-card-icon { background: #FE4A00 !important; border-radius: 0 !important; }
.azp-why-card.azp-featured { background: #0a1628 !important; border-color: #FE4A00 !important; box-shadow: 6px 6px 0 #FE4A00 !important; }
.azp-why-card.azp-featured h3 { color: #fff !important; }
.azp-why-card.azp-featured p { color: rgba(255,255,255,0.75) !important; }
/* Services: warm retro dark */
.azp-services-section { background: #234190 !important; }
.azp-services-section .azp-section-label { color: #FE4A00 !important; }
.azp-services-section .azp-section-title { color: #fff !important; border: none !important; }
.azp-services-section .azp-section-desc { color: rgba(255,255,255,0.85) !important; }
.azp-service-card { background: #fff !important; border: 3px solid #FE4A00 !important; border-radius: 0 !important; box-shadow: 5px 5px 0 rgba(254,74,0,0.4) !important; }
.azp-service-card:hover { transform: translate(-2px,-2px) !important; box-shadow: 7px 7px 0 rgba(254,74,0,0.5) !important; }
/* Cost: retro dark header */
.azp-cost-section { background: #f0f2f5 !important; }
.azp-cost-table thead { background: linear-gradient(135deg, #0a1628, #e53d22) !important; }
.azp-cost-table tbody tr:nth-child(even) { background: #f0f2f5 !important; }
/* FAQ: warm cream, retro box */
.azp-faq-section { background: #fff !important; }
.azp-faq-item { background: #f0f2f5 !important; border-left: 4px solid #e53d22 !important; border-radius: 0 !important; box-shadow: 3px 3px 0 rgba(184,92,0,0.25) !important; }
/* Trust icons: retro amber */
.azp-trust-icon { background: linear-gradient(135deg, #0a1628, #e53d22) !important; }

/* ═══ AZALEA PARK — Full Orange Retro 1950s Hero ═══ */
/* Replace dark photo with full orange gradient */
.azp-hero {
  background: linear-gradient(150deg, #FE4A00 0%, #e53d22 55%, #e53d22 100%) !important;
}
/* Repurpose ::before as giant "1952" year watermark */
.azp-hero::before {
  content: '1952' !important;
  background: none !important;
  inset: auto !important;
  top: 50% !important;
  right: -1% !important;
  transform: translateY(-50%) !important;
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  font-size: 30rem !important;
  font-weight: 900 !important;
  color: rgba(255,255,255,0.09) !important;
  line-height: 1 !important;
  letter-spacing: -0.04em !important;
  pointer-events: none !important;
  z-index: 1 !important;
  font-family: 'Inter', sans-serif !important;
}
/* Navy guarantee card — pops on orange bg */
.azp-guarantee-card {
  background: #234190 !important;
  border-color: rgba(255,255,255,0.2) !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35) !important;
}
.azp-guarantee-card::before {
  background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent 50%, rgba(254,74,0,0.12)) !important;
}
/* Trust bar icons — navy to match card */
.azp-trust-icon {
  background: linear-gradient(135deg, #234190, #234190) !important;
}
/* Retro "EST. 1952" stamp badge */
.azp-hero-badge {
  background: rgba(0,0,0,0.25) !important;
  border-color: rgba(255,255,255,0.85) !important;
  color: #fff !important;
}
/* "Original" span — white on orange bg */
.azp-hero h1 span { color: #fff !important; text-shadow: 0 2px 14px rgba(0,0,0,0.3); }
/* Bullet checkmarks — white (override inline color:#FE4A00) */
.azp-hero ul li span { color: rgba(255,255,255,0.85) !important; }
/* Hero sub-list text — ensure readable white */
.azp-hero ul li { color: rgba(255,255,255,0.92) !important; }

/* ═══════════════════════════════════════════════════════
   AZALEA PARK — COMPLETE FORMAT REDESIGN
   Hero: true split (text left / guarantee card right)
   WHY: light cream bg, horizontal editorial strips, no photos
   Services: 3-col grid on light gray
═══════════════════════════════════════════════════════ */

/* ── HERO: true split layout ─────────────────────────── */
.azp-hero {
  background: linear-gradient(135deg, #0a1628 0%, #2e1200 45%, #0a1628 100%) !important;
  position: relative !important;
  overflow: hidden !important;
}
.azp-hero::before {
  content: '1952' !important;
  position: absolute !important;
  font-size: 28rem !important;
  font-weight: 900 !important;
  color: rgba(254,74,0,0.06) !important;
  right: -2rem !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  pointer-events: none !important;
  line-height: 1 !important;
  z-index: 0 !important;
}
.azp-hero-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  grid-template-rows: unset !important;
  gap: 48px !important;
  align-items: center !important;
  flex-direction: unset !important;
  text-align: left !important;
}
.azp-hero-grid > div:first-child { order: 2 !important; margin-top: 0 !important; }
.azp-hero-grid > div:last-child  { order: 1 !important; }
.azp-guarantee-card {
  background: rgba(254,74,0,0.12) !important;
  border: 2px solid rgba(254,74,0,0.45) !important;
  border-radius: 16px !important;
  padding: 36px !important;
  text-align: center !important;
}
.azp-guarantee-number {
  font-size: 7rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  color: #FE4A00 !important;
  display: block !important;
}

/* ── WHY SECTION: cream bg, horizontal editorial strips ── */
.azp-why-section {
  background: #f0f2f5 !important;
}
.azp-section-label {
  color: #FE4A00 !important;
}
.azp-why-section .azp-section-title { color: #234190 !important; }
.azp-why-section .azp-section-desc  { color: #4b5563 !important; }

/* Grid → flex column */
.azp-why-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  grid-template-columns: unset !important;
}

/* HIDE card photos — use element+class for higher specificity */
img.azp-why-card-img {
  display: none !important;
  width: 0 !important;
  max-height: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  flex: 0 0 0 !important;
  min-width: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Each card → horizontal strip */
.azp-why-section .azp-why-card {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 20px !important;
  padding: 24px 28px !important;
  background: #fff !important;
  border: 1px solid #fe4a00 !important;
  border-left: 5px solid #FE4A00 !important;
  border-radius: 10px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
  overflow: visible !important;
  grid-row: span 1 !important;
  transform: none !important;
}
.azp-why-section .azp-why-card:hover {
  box-shadow: 0 6px 24px rgba(254,74,0,0.10) !important;
  transform: translateY(-2px) !important;
}
.azp-why-section .azp-why-card::before { display: none !important; }

/* Icon stays, smaller */
.azp-why-section .azp-why-card-icon {
  width: 52px !important;
  height: 52px !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
  background: linear-gradient(135deg,#FE4A00,#FE4A00) !important;
  border-radius: 12px !important;
}
/* Text container: fills remaining space */
.azp-why-section .azp-why-card > div:not(.azp-why-card-icon) {
  flex: 1 !important;
}
.azp-why-section .azp-why-card h3 {
  color: #234190 !important;
  padding: 0 !important;
  margin: 0 0 6px 0 !important;
}
.azp-why-section .azp-why-card p {
  color: #4b5563 !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Featured card: dark strip */
.azp-why-section .azp-why-card.azp-featured {
  background: #234190 !important;
  border-color: rgba(254,74,0,0.5) !important;
  border-left-color: #FE4A00 !important;
}
.azp-why-section .azp-why-card.azp-featured h3 { color: #fff !important; }
.azp-why-section .azp-why-card.azp-featured p  { color: rgba(255,255,255,0.78) !important; }
.azp-why-section .azp-why-card.azp-featured .azp-why-card-icon {
  background: rgba(255,255,255,0.15) !important;
}
.azp-featured-stat       { color: #FE4A00 !important; font-size: 2rem !important; line-height: 1; margin: 4px 0 0 !important; }
.azp-featured-stat-label { color: rgba(255,255,255,0.85) !important; font-size: 0.85rem !important; }

/* ── SERVICES: 3-col on light gray ───────────────────── */
.azp-services-section {
  background: #f0f2f5 !important;
}
.azp-services-section .azp-section-title { color: #234190 !important; border-color: transparent !important; }
.azp-services-section .azp-section-desc  { color: #374151 !important; }
.azp-services-section .azp-section-label { color: #FE4A00 !important; }
.azp-services-grid {
  grid-template-columns: repeat(3, 1fr) !important;
  display: grid !important;
}
.azp-service-card {
  background: #fff !important;
  border: 1px solid #f3f3f3 !important;
  border-top: 4px solid #FE4A00 !important;
  border-radius: 10px !important;
  color: #234190 !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06) !important;
}
.azp-service-card-number { color: rgba(254,74,0,0.20) !important; }
.azp-service-card h3 { color: #234190 !important; }
.azp-service-card p  { color: #4b5563 !important; }
.azp-service-card a  { color: #FE4A00 !important; }

/* ── FAQ ─────────────────────────────────────────────── */
.azp-faq-section { background: #f0f2f5 !important; }

/* ═══ AZALEA PARK — Retro 1950s Florida / Image Reveal ═══ */
/* Fix: remove crushing 80% black overlay, let the image breathe */
.azp-hero {
  background:
    linear-gradient(
      160deg,
      rgba(20, 6, 0, 0.55) 0%,
      rgba(120, 35, 5, 0.42) 45%,
      rgba(180, 60, 0, 0.30) 100%
    ),
    url('../images/azalea-park-hero.webp') center/cover no-repeat !important;
}
/* Remove the extra dark inset overlay */
.azp-hero::before {
  content: '1952' !important;
  display: block !important;
  background: none !important;
  border-radius: 0 !important;
  inset: auto !important;
  position: absolute !important;
  top: 50% !important;
  right: -1% !important;
  left: auto !important;
  width: auto !important;
  height: auto !important;
  transform: translateY(-50%) !important;
  font-size: 20rem !important;
  font-weight: 900 !important;
  color: rgba(255, 140, 60, 0.08) !important;
  line-height: 1 !important;
  letter-spacing: -0.04em !important;
  pointer-events: none !important;
  z-index: 1 !important;
  font-family: 'Inter', sans-serif !important;
}
/* Warm retro badge */
.azp-hero-badge {
  background: rgba(200, 60, 10, 0.18) !important;
  border-color: rgba(255, 130, 60, 0.45) !important;
  color: #FE4A00 !important;
}
/* Warm retro guarantee card */
.azp-guarantee-card {
  background: rgba(22, 6, 0, 0.88) !important;
  border-color: rgba(255, 120, 50, 0.25) !important;
}
.azp-guarantee-card::before {
  background: linear-gradient(135deg, rgba(190, 55, 5, 0.45), transparent 50%, rgba(255, 90, 0, 0.20)) !important;
}

/* ===== AZALEA PARK: 1950s Retro — Orange/Cream with Vintage Feel ===== */

/* WHY section: cream bg (already set), enhance featured card to orange-red gradient */
.azp-why-section { background: #f0f2f5 !important; }
.azp-why-section .azp-why-card.azp-featured {
  background: linear-gradient(90deg, #FE4A00, #FE4A00) !important;
  border: none !important;
  border-left: none !important;
}
.azp-why-section .azp-why-card.azp-featured h3 { color: #fff !important; }
.azp-why-section .azp-why-card.azp-featured p { color: rgba(255,255,255,0.88) !important; }
.azp-why-section .azp-why-card.azp-featured .azp-why-card-icon { background: rgba(255,255,255,0.2) !important; }
.azp-featured-stat { color: #fff !important; text-shadow: 0 2px 8px rgba(0,0,0,0.2) !important; }
.azp-featured-stat-label { color: rgba(255,255,255,0.82) !important; }

/* Regular WHY strips: enhance left orange border */
.azp-why-section .azp-why-card:not(.azp-featured) {
  border-left: 4px solid #FE4A00 !important;
  background: #ffffff !important;
}

/* Services: cream bg (retro), sharp corners, orange top border */
.azp-services-section { background: #f0f2f5 !important; }
.azp-service-card {
  border-radius: 0 !important;
  border-top: 4px solid #FE4A00 !important;
  border: 1px solid #fe4a00 !important;
  border-top: 4px solid #FE4A00 !important;
  background: #ffffff !important;
  box-shadow: none !important;
}
.azp-service-card:hover { transform: translateY(-2px) !important; box-shadow: 0 4px 16px rgba(139,32,0,0.12) !important; }

/* FAQ: warm cream bg (already #f0f2f5, confirm) */
.azp-faq-section { background: #f0f2f5 !important; }
.azp-faq-item {
  background: #fff !important;
  border: 1px solid #fe4a00 !important;
  border-radius: 0 !important;
}
.azp-faq-item h3 { color: #234190 !important; border-bottom-color: #FE4A00 !important; }

/* CTA: orange-red gradient bg */
.azp-cta-section { background: linear-gradient(90deg, #FE4A00, #FE4A00) !important; }
.azp-cta-section::before { background: none !important; }
/* === MAP LAYOUT FIX: full-width stacked === === */
.azp-neighborhoods-grid { display: block !important; }
.azp-neighborhood-list { display: grid !important; grid-template-columns: repeat(3,1fr) !important; gap: 12px !important; margin-bottom: 32px !important; }
.azp-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; }
.azp-map-container iframe { width: 100% !important; height: 400px !important; border: 0 !important; display: block !important; }
@media (max-width: 768px) {
  .azp-neighborhood-list { grid-template-columns: 1fr 1fr !important; }
  .azp-map-container iframe { height: 280px !important; }
}
@media (max-width: 480px) {
  .azp-neighborhood-list { grid-template-columns: 1fr !important; }
}

/* === SERVICE AREA EAST-ORLANDO STYLE === === */
.azp-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;
}
.azp-neighborhood-item:hover { background: #fff !important; border-color: #fe4a00 !important; }
.azp-dot { width:10px; height:10px; background:#FE4A00; border-radius:50%; flex-shrink:0; }
.azp-name { font-weight:600; font-size:0.95rem; color:#234190; }
.azp-zip { font-size:0.8rem; color:#234190; }
.azp-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;
}
.azp-map-container iframe { width:100% !important; height:450px !important; border:0 !important; display:block !important; }
@media (max-width:768px) { .azp-map-container iframe { height:280px !important; } }
