* { 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(254,74,0,0.15) !important;
  border-color: rgba(254,74,0,0.3) !important;
  border-left-color: #FE4A00 !important;
  color: #fff !important;
  transform: translateY(-1px) !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shah-footer__social-icons a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 42px !important;
  height: 42px !important;
  border-radius: 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); } }

/* FAQ: always visible */
.eo-faq-answer { max-height: 1000px !important; padding: 8px 24px 20px 24px !important; overflow: visible !important; }
.eo-faq-question { background: transparent !important; background-color: transparent !important; color: #234190 !important; font-weight: 700 !important; font-size: 1.1rem !important; cursor: default !important; pointer-events: none !important; padding: 20px 24px 8px 24px !important; border: none !important; border-radius: 0 !important; box-shadow: none !important; text-align: left !important; width: 100% !important; display: block !important; text-transform: none !important; letter-spacing: normal !important; }
.eo-faq-question::after { display: none !important; }
.eo-faq-question:hover, .eo-faq-question:focus { background: transparent !important; background-color: transparent !important; color: #234190 !important; box-shadow: none !important; outline: none !important; }

/* FAQ question: remove orange box — high-specificity override */
button.eo-faq-question, .eo-faq-question,
body button.eo-faq-question,
.eo-page button.eo-faq-question,
.eo-page .eo-faq-item button,
.eo-page .eo-faq-section button,
body .entry-content button.eo-faq-question,
body .site-main button.eo-faq-question,
body #content button.eo-faq-question {
  background: transparent !important;
  background-color: transparent !important;
  color: #234190 !important;
  font-weight: 700 !important;
  font-size: 1.1rem !important;
  cursor: default !important;
  pointer-events: none !important;
  padding: 20px 24px 8px 24px !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-align: left !important;
  width: 100% !important;
  display: block !important;
  text-transform: none !important;
  letter-spacing: normal !important;
}
button.eo-faq-question::after, body button.eo-faq-question::after,
.eo-page button.eo-faq-question::after,
body .entry-content button.eo-faq-question::after { display: none !important; content: '' !important; }
button.eo-faq-question:hover, button.eo-faq-question:focus,
body button.eo-faq-question:hover, body button.eo-faq-question:focus,
body .entry-content button.eo-faq-question:hover,
body .entry-content button.eo-faq-question:focus {
  background: transparent !important;
  background-color: transparent !important;
  color: #234190 !important;
  box-shadow: none !important;
  outline: none !important;
}



html, body { overflow-x: hidden !important; }

/* FULL-WIDTH BREAKOUT — sections must span viewport */
.eo-hero, .eo-trust-bar, .eo-breadcrumb,
.eo-why-section, .eo-services-section, .eo-cost-section,
.eo-neighborhoods-section, .eo-faq-section,
.eo-founder-section, .eo-cta-section, .eo-mobile-cta {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.eo-page *, .eo-page *::before, .eo-page *::after {box-sizing:border-box !important;margin:0;padding:0}
.eo-page {font-family:'Inter',-apple-system,BlinkMacSystemFont,sans-serif !important;color:#234190 !important;line-height:1.7 !important;overflow-x:hidden}
.eo-page img {max-width:100% !important;height:auto !important;display:block !important}
.eo-page a {text-decoration:none;color:inherit}
/* NUCLEAR THEME BUTTON RESET — Hello Elementor Child theme forces orange bg on all buttons */
.eo-page button,
.eo-page button[type],
.eo-page .eo-faq-item button,
.eo-page .eo-faq-section button,
body .eo-page button,
body .eo-faq-question,
body button.eo-faq-question,
#content .eo-page button,
.site-main .eo-page button,
.entry-content .eo-page button,
.entry-content button.eo-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,sans-serif !important;
-webkit-appearance:none !important;appearance:none !important;
}
.eo-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 */
.eo-breadcrumb {background:#f3f3f3;padding:12px 0;font-size:0.85rem;color:#4b5563;border-bottom:1px solid #f0f2f5}
.eo-breadcrumb a {color:#0a1628}
.eo-breadcrumb a:link,.eo-breadcrumb a:visited {color:#0a1628 !important}
.eo-breadcrumb a:hover {text-decoration:underline}
.eo-breadcrumb span {margin:0 8px}

/* HERO */
.eo-hero {position:relative;background:url('/east-orlando-ac-repair/east-orlando-aerial-2.webp') 35% center/cover no-repeat;color:#fff;padding:80px 0 60px;overflow:hidden}
.eo-hero-watermark {position:absolute;top:-30%;left:-5%;width:160%;height:160%;object-fit:cover;opacity:0.11;pointer-events:none;z-index:1;filter:grayscale(1) brightness(1.3);mix-blend-mode:luminosity}
.eo-hero::before {display:none}
.eo-hero::after {content:'';position:absolute;bottom:0;left:0;right:0;height:6px;background:linear-gradient(90deg,#FE4A00,#FE4A00,#FE4A00)}
.eo-hero-grid {display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;position:relative;z-index:2}
.eo-hero-badge {display:inline-flex;align-items:center;gap:8px;background:rgba(0,0,0,0.55);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);border:1px solid rgba(254,74,0,0.6);border-radius:50px;padding:8px 20px;font-size:0.85rem;font-weight:600;color:#ffffff;margin-bottom:24px;letter-spacing:0.5px}
.eo-hero-badge .eo-pulse {width:8px;height:8px;background:#FE4A00;border-radius:50%;animation:eo-pulse 2s infinite}
@keyframes eo-pulse {0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.5)}}
.eo-hero h1 {font-family:'Inter',sans-serif;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}
.eo-hero h1 .eo-highlight {color:#FE4A00;position:relative}
.eo-hero-sub {font-size:1.15rem;color:rgba(255,255,255,0.85);margin-bottom:32px;max-width:520px}
.eo-hero-sub strong {color:#fff}
.eo-hero-ctas {display:flex;gap:16px;flex-wrap:wrap}
.eo-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(254,74,0,0.4)}
.eo-btn-primary:link,.eo-btn-primary:visited {color:#fff !important}
.eo-btn-primary:hover {background:#fe4a00;transform:translateY(-2px);box-shadow:0 6px 30px rgba(254,74,0,0.5)}
.eo-btn-secondary {display:inline-flex;align-items:center;gap:10px;background:#fff;color:#234190 !important;padding:16px 32px;border-radius:8px;font-weight:700;font-size:1.05rem;border:2px solid #fff;transition:all 0.3s}
.eo-btn-secondary:link,.eo-btn-secondary:visited {color:#234190 !important}
.eo-btn-secondary:hover {border-color:#f0f2f5;background:#f3f3f3;color:#234190 !important}

/* GUARANTEE CARD */
.eo-guarantee-card {background:rgba(8,16,36,0.50);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);border:2px solid rgba(254,74,0,0.6);border-radius:20px;padding:40px;text-align:center;position:relative;box-shadow:0 8px 40px rgba(0,0,0,0.4)}
.eo-guarantee-card::before {content:'';position:absolute;inset:-2px;border-radius:22px;background:linear-gradient(135deg,rgba(254,74,0,0.5),transparent 50%,rgba(254,74,0,0.3));z-index:-1}
.eo-guarantee-number {font-size:9rem;font-weight:900;line-height:1;color:#fff}
.eo-guarantee-label {font-size:1.5rem;font-weight:700;margin-top:4px;color:#FE4A00}
.eo-guarantee-sub {color:rgba(255,255,255,0.85);margin-top:12px;font-size:1rem}
.eo-guarantee-penalty {display:inline-block;margin-top:20px;background:rgba(254,74,0,0.2);border:1px solid rgba(254,74,0,0.4);border-radius:8px;padding:10px 24px;font-weight:700;color:#ffffff;font-size:1.1rem}

/* TRUST BAR */
.eo-trust-bar {background:#ffffff;border-bottom:1px solid #ffffff;padding:20px 0}
.eo-trust-items {display:grid;grid-template-columns:repeat(4,1fr);gap:24px;text-align:center}
.eo-trust-item {display:flex;align-items:center;justify-content:center;gap:12px}
.eo-trust-icon {width:44px;height:44px;background:linear-gradient(135deg,#0a1628,#3a7bd5);border-radius:10px;display:flex;align-items:center;justify-content:center;color:#fff;font-size:1.2rem;flex-shrink:0}
.eo-trust-text {text-align:left}
.eo-trust-text strong {display:block;font-size:0.95rem;color:#234190}
.eo-trust-text span {font-size:0.8rem;color:#234190}

/* SECTIONS */
.eo-section {padding:60px 0 !important}
.eo-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}
.eo-section-title {font-family:'Inter',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}
.eo-section-desc {font-size:1.1rem !important;color:#4b5563 !important;max-width:700px;margin-bottom:40px !important}

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

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

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

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

/* FAQ */
.eo-faq-section {background:linear-gradient(180deg,#ffffff 0%,#fff 100%)}
.eo-faq-grid {display:grid;grid-template-columns:1fr 1fr;gap:20px;align-items:start}
.eo-faq-item {background:#fff !important;border:2px solid #FE4A00 !important;border-radius:12px !important;overflow:hidden !important;transition:all 0.3s;box-shadow:0 4px 16px rgba(0,0,0,0.08) !important}
.eo-faq-item:hover {border-color:#0a1628 !important;box-shadow:0 6px 24px rgba(0,0,0,0.12) !important}
/* FAQ BUTTON — ultra-specific selectors to beat theme */
button.eo-faq-question,
.eo-faq-question,
.eo-page button.eo-faq-question,
.eo-page .eo-faq-question,
.eo-page .eo-faq-item button,
.eo-page .eo-faq-section button,
.entry-content button.eo-faq-question,
.entry-content .eo-faq-question,
body .entry-content button.eo-faq-question,
body .site-main button.eo-faq-question,
body #content button.eo-faq-question {
padding:20px 24px !important;
font-weight:700 !important;
font-size:1rem !important;
color:#fff !important;
cursor:pointer !important;
display:flex !important;
justify-content:space-between !important;
align-items:center !important;
gap:16px !important;
background:#FE4A00 !important;
background-color:#FE4A00 !important;
background-image:none !important;
border:none !important;
border-radius:0 !important;
width:100% !important;
text-align:left !important;
font-family:'Inter',-apple-system,sans-serif !important;
margin:0 !important;
box-shadow:none !important;
line-height:1.5 !important;
text-transform:none !important;
letter-spacing:normal !important;
min-height:auto !important;
outline:none !important;
text-decoration:none !important;
-webkit-appearance:none !important;
appearance:none !important;
}
button.eo-faq-question:hover,
.eo-page button.eo-faq-question:hover,
body .entry-content button.eo-faq-question:hover {background:#fe4a00 !important;background-color:#fe4a00 !important;color:#fff !important}
button.eo-faq-question:focus,
.eo-page button.eo-faq-question:focus,
body .entry-content button.eo-faq-question:focus {background:#FE4A00 !important;background-color:#FE4A00 !important;color:#fff !important;outline:none !important;box-shadow:none !important}
button.eo-faq-question::after,
.eo-faq-question::after,
.eo-page button.eo-faq-question::after,
body .entry-content button.eo-faq-question::after {content:'+' !important;font-size:1.5rem !important;color:#fff !important;font-weight:300 !important;flex-shrink:0;transition:transform 0.3s;background:none !important;background-color:transparent !important;border:none !important;box-shadow:none !important;width:auto !important;height:auto !important;padding:0 !important;margin:0 !important}
.eo-faq-item.eo-active button.eo-faq-question::after,
.eo-faq-item.eo-active .eo-faq-question::after {transform:rotate(45deg)}
.eo-faq-answer {padding:0 24px 20px !important;max-height:none;overflow:visible !important;transition:all 0.4s ease;background:#fff !important}
.eo-faq-item.eo-active .eo-faq-answer {padding:0 24px 20px !important;max-height:400px}
.eo-faq-answer p {color:#4b5563 !important;font-size:0.95rem !important;line-height:1.7 !important}

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

/* CTA */
.eo-cta-section {background:linear-gradient(rgba(254,74,0,0.82),rgba(254,74,0,0.88)),url('../east-orlando-ac-repair/east-orlando-aerial.webp') center/cover no-repeat;color:#fff;text-align:center;padding:60px 0;position:relative;overflow:hidden}
.eo-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%)}
.eo-cta-content {position:relative;z-index:2}
.eo-cta-section h2 {font-size:2.2rem;font-weight:900;margin-bottom:12px;color:#fff !important;border:none !important;padding:0 !important}
.eo-cta-section p {font-size:1.15rem;margin-bottom:28px;opacity:0.95;color:#fff}
.eo-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)}
.eo-btn-white:link,.eo-btn-white:visited {color:#FE4A00 !important}
.eo-btn-white:hover {transform:translateY(-2px);box-shadow:0 8px 30px rgba(0,0,0,0.2)}

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

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


/* ===== SECTION BG SOLIDS ===== */

/* Trust bar — solid dark navy */
.eo-trust-bar { background: linear-gradient(135deg, #234190 0%, #234190 100%); border-bottom: 1px solid rgba(255,255,255,0.08); }
.eo-trust-bar .eo-trust-item span { color: rgba(255,255,255,0.85); }
.eo-trust-bar .eo-trust-item strong { color: #fff; }

/* Services section — solid dark navy */
.eo-services-section { background: linear-gradient(135deg, #234190 0%, #234190 100%); }
.eo-services-section .eo-section-label { color: #FE4A00 !important; }
.eo-services-section .eo-section-title { color: #fff !important; border: none !important; }
.eo-services-section .eo-section-desc { color: rgba(255,255,255,0.75) !important; }
.eo-service-card { background: rgba(255,255,255,0.06) !important; border: 1px solid rgba(255,255,255,0.12) !important; }
.eo-service-card h3 { color: #fff !important; }
.eo-service-card p { color: rgba(255,255,255,0.75) !important; }
.eo-service-card-number { color: rgba(255,255,255,0.08) !important; }
.eo-service-link { color: #FE4A00 !important; }
.eo-service-link:link, .eo-service-link:visited { color: #FE4A00 !important; }
.eo-service-card:hover { background: rgba(255,255,255,0.12) !important; border-color: rgba(254,74,0,0.5) !important; }
/* WHY card image banners */
.eo-why-card { padding: 0 !important; }
.eo-page .eo-why-card-img { width: 100% !important; height: 160px !important; object-fit: cover !important; display: block !important; border-radius: 0 !important; }
.eo-why-card-body { padding: 28px; }
.eo-page .eo-why-card-img.eo-img-product { object-fit: contain !important; background: #fff; }

/* Service card image banners */
.eo-service-card { padding: 0 !important; overflow: hidden !important; }
.eo-page .eo-service-card-img { width: 100% !important; height: 180px !important; object-fit: cover !important; display: block !important; border-radius: 0 !important; flex-shrink: 0; }
.eo-service-card-body { padding: 24px 28px 28px; }
.eo-page .eo-service-card-img.eo-img-product { object-fit: contain !important; background: #fff; }

/* FAQ section — solid dark navy */
.eo-faq-section { background: linear-gradient(180deg, #234190 0%, #234190 100%); }
.eo-faq-section .eo-section-label { color: #FE4A00 !important; }
.eo-faq-section .eo-section-title { color: #fff !important; border: none !important; }
.eo-faq-section .eo-section-desc { color: rgba(255,255,255,0.75) !important; }
.eo-faq-item { background: rgba(255,255,255,0.06) !important; border-left-color: #FE4A00 !important; }
.eo-faq-question, .eo-faq-item h3 { color: #fff !important; }
.eo-faq-answer p, .eo-faq-answer { color: rgba(255,255,255,0.8) !important; }
.eo-faq-section .eo-faq-answer { background: rgba(255,255,255,0.04) !important; border-top: 2px solid #FE4A00 !important; }
.eo-faq-section .eo-faq-answer p { color: rgba(255,255,255,0.82) !important; }

/* FAQ question: remove orange box — final override */
button.eo-faq-question, .eo-faq-question,
body button.eo-faq-question,
.eo-page button.eo-faq-question,
.eo-page .eo-faq-item button,
.eo-page .eo-faq-section button,
body .entry-content button.eo-faq-question,
body .site-main button.eo-faq-question,
body #content button.eo-faq-question {
  background: transparent !important;
  background-color: transparent !important;
  color: #234190 !important;
  font-weight: 700 !important;
  font-size: 1.1rem !important;
  cursor: default !important;
  pointer-events: none !important;
  padding: 20px 24px 8px 24px !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-align: left !important;
  width: 100% !important;
  display: block !important;
  text-transform: none !important;
  letter-spacing: normal !important;
}
button.eo-faq-question::after, body button.eo-faq-question::after,
.eo-page button.eo-faq-question::after,
body .entry-content button.eo-faq-question::after { display: none !important; content: '' !important; }
button.eo-faq-question:hover, button.eo-faq-question:focus,
body button.eo-faq-question:hover, body button.eo-faq-question:focus,
body .entry-content button.eo-faq-question:hover,
body .entry-content button.eo-faq-question:focus {
  background: transparent !important;
  background-color: transparent !important;
  color: #234190 !important;
  box-shadow: none !important;
  outline: none !important;
}
/* === MAP LAYOUT FIX: full-width stacked === === */
.eo-neighborhoods-grid { display: block !important; }
.eo-neighborhood-list { display: grid !important; grid-template-columns: repeat(3,1fr) !important; gap: 12px !important; margin-bottom: 32px !important; }
.eo-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; }
.eo-map-container iframe { width: 100% !important; height: 400px !important; border: 0 !important; display: block !important; }
@media (max-width: 768px) {
  .eo-neighborhood-list { grid-template-columns: 1fr 1fr !important; }
  .eo-map-container iframe { height: 280px !important; }
}
@media (max-width: 480px) {
  .eo-neighborhood-list { grid-template-columns: 1fr !important; }
}
.eo-hero h1 { text-shadow: 0 2px 12px rgba(0,0,0,0.7) !important; }
.eo-hero-sub { text-shadow: 0 1px 6px rgba(0,0,0,0.6) !important; }
.eo-hero-badge { text-shadow: none !important; }
.eo-hero h1 { text-shadow: 0 2px 4px rgba(0,0,0,0.9), 0 4px 20px rgba(0,0,0,0.8), 0 8px 40px rgba(0,0,0,0.6) !important; }
.eo-hero-sub { text-shadow: 0 1px 4px rgba(0,0,0,0.95), 0 4px 20px rgba(0,0,0,0.85), 0 8px 32px rgba(0,0,0,0.6) !important; }

/* === FAQ question text: white on dark bg (was navy-on-navy = invisible) === */
.eo-faq-section button.eo-faq-question,
.eo-faq-section .eo-faq-question { color: #fff !important; }
.eo-faq-section .eo-faq-answer p { color: rgba(255,255,255,0.82) !important; }
.eo-faq-section .eo-faq-item {
  background: rgba(255,255,255,0.06) !important;
  border-color: rgba(255,255,255,0.15) !important;
}

/* === WHITE BORDERS ON BLUE BG CARDS === */
.eo-services-section .eo-service-card { border: 2px solid rgba(255,255,255,0.85) !important; }
.eo-faq-section .eo-faq-item { background: rgba(255,255,255,0.06) !important; border: 2px solid rgba(255,255,255,0.85) !important; border-radius: 10px !important; }
