* { 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 — base overrides (goldenrod section overrides these further) */
.gr-why-card-img { width: 100% !important; height: 120px !important; object-fit: cover !important; display: block !important; flex-shrink: 0; }
.gr-service-card { padding: 0 !important; overflow: hidden !important; }
.gr-service-card-img { width: 100% !important; height: 200px !important; object-fit: cover !important; display: block !important; }
.gr-service-card-number { padding: 24px 28px 0 28px !important; }
.gr-service-card h3 { padding: 0 28px !important; margin-top: 8px !important; }
.gr-service-card p { padding: 0 28px 12px 28px !important; }
.gr-service-card a.gr-service-link { display: block; padding: 0 28px 28px 28px !important; }




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

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

/* HERO — angled */
.gr-hero {position:relative;background:linear-gradient(rgba(10,8,0,0.65),rgba(10,8,0,0.65)),url('../images/goldenrod-hero-lancelot-apts.avif') center/cover no-repeat;color:#fff;overflow:hidden}
.gr-hero::after {content:'';position:absolute;bottom:0;left:0;right:0;height:6px;background:linear-gradient(90deg,#FE4A00,#FE4A00,#FE4A00)}
.gr-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}
.gr-hero-badge .gr-pulse {width:8px;height:8px;background:#FE4A00;border-radius:50%;animation:gr-pulse 2s infinite}
@keyframes gr-pulse {0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.5)}}
.gr-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}
.gr-hero h1 span {color:#FE4A00;position:relative}
.gr-hero-sub {font-size:1.15rem;color:rgba(255,255,255,0.85);margin-bottom:32px;max-width:520px}
.gr-hero-sub strong {color:#fff}
.gr-hero-ctas {display:flex;gap:16px;flex-wrap:wrap}
.gr-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}
.gr-btn-primary:link,.gr-btn-primary:visited {color:#fff !important}
.gr-btn-primary:hover {background:#fe4a00;transform:translateY(-2px);box-shadow:0 6px 30px rgba(255,102,0,0.5) !important}
.gr-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}
.gr-btn-secondary:link,.gr-btn-secondary:visited {color:#fff !important}
.gr-btn-secondary:hover {border-color:#fff;background:rgba(255,255,255,0.1)}
.gr-guarantee-card {width:100%;max-width:700px;display:flex;flex-direction:row;align-items:center;gap:40px;padding:28px 40px;background:rgba(15,10,5,0.92);border:1px solid rgba(255,255,255,0.1);border-radius:20px;padding:40px;text-align:center;position:relative;box-shadow:0 8px 32px rgba(0,0,0,0.2) !important}
.gr-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}
.gr-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}
.gr-guarantee-label {font-size:1.5rem;font-weight:700;margin-top:4px;color:#fff}
.gr-guarantee-sub {color:rgba(255,255,255,0.85);margin-top:12px;font-size:1rem}
.gr-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}

.gr-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%}
.gr-hero {padding:80px 0 60px;position:relative}
.gr-hero-grid {display:flex;flex-direction:column;align-items:center;gap:40px;position:relative;z-index:2}
.gr-hero-content {text-align:center;max-width:780px;padding-right:60px}
.gr-hero-accent {background:rgba(255,102,0,0.12);padding:48px 40px;display:flex;flex-direction:column;justify-content:center;align-items:center;clip-path:polygon(15% 0,100% 0,100% 100%,0% 100%);text-align:center}
.gr-hero-accent .gr-guarantee-number {font-size:5rem}

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

/* SECTIONS */
.gr-section {padding:60px 0 !important}
.gr-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}
.gr-section-title {font-family:'Inter',-apple-system,BlinkMacSystemFont,sans-serif !important;font-size:2.4rem !important;font-weight:800 !important;line-height:1.2 !important;color:#234190 !important;margin-bottom:16px !important;border:none !important;padding:0 !important;text-transform:uppercase !important;letter-spacing:2px !important;font-weight:900 !important}
.gr-section-desc {font-size:1.1rem !important;color:#4b5563 !important;max-width:700px;margin-bottom:40px !important}

/* WHY CHOOSE US */
.gr-why-section {background:#fff}
.gr-why-grid {display:grid;grid-template-columns:repeat(2,1fr);gap:24px}
.gr-why-card {background:#f3f3f3 !important;border-radius:4px !important;padding:32px !important;border:none !important;transition:all 0.3s;position:relative;overflow:hidden;box-shadow:none !important}
.gr-why-card:hover {border-color:none !important;transform:translateY(-4px);box-shadow:0 4px 16px rgba(0,0,0,0.08) !important}
.gr-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}
.gr-why-card h3 {font-size:1.2rem;font-weight:700;margin-bottom:10px;color:#234190 !important}
.gr-why-card p {color:#4b5563;font-size:0.95rem}
.gr-why-card.gr-featured {background:linear-gradient(135deg,#0a1628,#3d2e00) !important;color:#fff !important;border-color:transparent !important;grid-row:span 2}
.gr-why-card.gr-featured h3 {color:#fff !important}
.gr-why-card.gr-featured p {color:rgba(255,255,255,0.8)}
.gr-why-card.gr-featured .gr-why-card-icon {background:rgba(15,10,5,0.92)}
.gr-featured-stat {font-size:2.4rem;font-weight:900;color:#FE4A00;line-height:1;margin:16px 0 6px}
.gr-featured-stat-label {font-size:1rem;color:rgba(255,255,255,0.85)}

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

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

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

/* FAQ — tabbed */
.gr-faq-section {background:linear-gradient(180deg,#f3f3f3 0%,#fff 100%)}
.gr-faq-tabs {display:flex;gap:0;margin-bottom:32px;border-bottom:2px solid #f0f2f5}
.gr-faq-tab {padding:14px 28px;font-weight:700;font-size:0.95rem;color:#4b5563;cursor:pointer;border-bottom:3px solid transparent;margin-bottom:-2px;transition:all 0.3s;background:none;border-top:none;border-left:none;border-right:none}
.gr-faq-tab:hover {color:#234190}
.gr-faq-tab.gr-tab-active {color:#FE4A00;border-bottom-color:#FE4A00}
/* Override nuclear reset for tab buttons */
.gr-page .gr-faq-tabs button.gr-faq-tab,
body .gr-page .gr-faq-tabs button.gr-faq-tab,
.entry-content .gr-faq-tabs button.gr-faq-tab {
background:none !important;background-color:transparent !important;color:#234190 !important;
padding:14px 28px !important;border:none !important;border-bottom:3px solid transparent !important;
margin:0 !important;margin-bottom:-2px !important;cursor:pointer !important;font-weight:700 !important;
font-size:0.95rem !important;box-shadow:none !important;border-radius:0 !important}
.gr-page .gr-faq-tabs button.gr-faq-tab:hover {color:#234190 !important}
.gr-page .gr-faq-tabs button.gr-faq-tab.gr-tab-active {color:#FE4A00 !important;border-bottom-color:#FE4A00 !important}
.gr-faq-panel {display:none}
.gr-faq-panel.gr-panel-active {display:grid;grid-template-columns:1fr 1fr;gap:24px}
.gr-faq-item {background:#fff !important;border:1px solid #ffffff !important;border-radius:4px !important;padding:28px !important;box-shadow:0 4px 16px rgba(0,0,0,0.08) !important}
.gr-faq-item h3 {font-size:1.05rem;font-weight:700;color:#234190 !important;margin-bottom:12px}
.gr-faq-item p {color:#4b5563 !important;font-size:0.92rem !important;line-height:1.7 !important}

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

/* CTA — split-card */
.gr-cta-section {background:#fff;padding:60px 0 !important}
.gr-cta-content {display:grid;grid-template-columns:1fr 1fr;border-radius:16px;overflow:hidden;box-shadow:0 8px 40px rgba(0,0,0,0.12) !important}
.gr-cta-left {background:linear-gradient(135deg,#0a1628,#3d2e00);padding:48px 40px;color:#fff}
.gr-cta-right {background:#FE4A00;padding:48px 40px;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center}
.gr-cta-section h2 {font-size:2rem;font-weight:900;margin-bottom:12px;color:#fff !important;border:none !important;padding:0 !important}
.gr-cta-section p {font-size:1.05rem;color:rgba(255,255,255,0.85);margin-bottom:0}
.gr-cta-phone {font-size:2rem;font-weight:900;color:#fff;margin-bottom:16px;display:flex;align-items:center;gap:12px}
.gr-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}
.gr-btn-white:link,.gr-btn-white:visited {color:#FE4A00 !important}
.gr-btn-white:hover {transform:translateY(-2px);box-shadow:0 8px 30px rgba(0,0,0,0.2) !important}

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



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


/* ===== GOLDENROD: Retro Warm Neighborhood Override ===== */
/* Why section: warm cream with amber left-border cards */
.gr-why-section { background: #f3f3f3 !important; }
.gr-why-card { background: #fff !important; border: none !important; border-left: 5px solid #FE4A00 !important; border-radius: 0 !important; box-shadow: 0 3px 16px rgba(0,0,0,0.09) !important; }
.gr-why-card:hover { border-left-color: #FE4A00 !important; transform: translateX(4px) !important; box-shadow: 0 6px 24px rgba(0,0,0,0.13) !important; }
.gr-why-card.gr-featured { background: linear-gradient(135deg, #0a1628, #e53d22) !important; border-left-color: #FE4A00 !important; }
.gr-why-card-icon { background: linear-gradient(135deg, #FE4A00, #FE4A00) !important; }
.gr-section-label { color: #FE4A00 !important; }
/* Services: DARK background section */
.gr-services-section { background: linear-gradient(160deg, #fe4a00 0%, #fe4a00 100%) !important; }
.gr-services-section .gr-section-label { color: #FE4A00 !important; }
.gr-services-section .gr-section-title { color: #fff !important; border: none !important; }
.gr-services-section .gr-section-desc { color: rgba(255,255,255,0.85) !important; }
.gr-service-card { background: rgba(255,255,255,0.08) !important; border-color: rgba(255,255,255,0.15) !important; border-radius: 2px !important; }
.gr-service-card:hover { background: rgba(255,255,255,0.14) !important; border-color: #FE4A00 !important; }
.gr-service-card h3 { color: #fff !important; }
.gr-service-card p { color: rgba(255,255,255,0.85) !important; }
.gr-service-card-number { color: rgba(255,255,255,0.12) !important; }
.gr-service-link { color: #FE4A00 !important; }
.gr-service-link:link, .gr-service-link:visited { color: #FE4A00 !important; }
/* Cost: amber header */
.gr-cost-section { background: #f3f3f3 !important; }
.gr-cost-table thead { background: linear-gradient(135deg, #0a1628, #FE4A00) !important; }
.gr-cost-table tbody tr:nth-child(even) { background: #f0f2f5 !important; }
.gr-cost-table tbody tr:hover { background: #FE4A00 !important; }
/* FAQ: warm cream, card boxes */
.gr-faq-section { background: #fff !important; }
.gr-faq-item { background: #f3f3f3 !important; border-left-color: #FE4A00 !important; }
/* Trust icons: amber */
.gr-trust-icon { background: linear-gradient(135deg, #0a1628, #FE4A00) !important; }

/* ═══ GOLDENROD — Full Bright Orange / Sunshine ═══ */
.gr-hero {
  background: linear-gradient(rgba(10,8,0,0.60), rgba(10,8,0,0.60)), url('../images/goldenrod-hero-lancelot-apts.avif') center/cover no-repeat !important;
}
/* Repurpose ::before as "ROD" big watermark (retro sunburst feel) */
.gr-hero::before {
  content: '☀' !important;
  background: none !important;
  border-radius: 0 !important;
  top: 50% !important;
  right: 3% !important;
  left: auto !important;
  width: auto !important;
  height: auto !important;
  transform: translateY(-50%) !important;
  font-size: 28rem !important;
  font-weight: 900 !important;
  color: rgba(255,255,255,0.06) !important;
  line-height: 1 !important;
  pointer-events: none !important;
  z-index: 1 !important;
  position: absolute !important;
  display: block !important;
}
/* White text on orange bg */
.gr-hero-badge {
  background: rgba(0,0,0,0.20) !important;
  border-color: rgba(255,255,255,0.85) !important;
  color: #fff !important;
}
.gr-hero-sub { color: rgba(255,255,255,0.90) !important; }
.gr-hero ul li { color: rgba(255,255,255,0.92) !important; }
.gr-hero ul li span { color: rgba(255,255,255,0.85) !important; }
.gr-hero h1 span { color: #fff !important; text-shadow: 0 2px 14px rgba(0,0,0,0.3); }
.gr-hero-ctas .gr-btn-secondary { border-color: rgba(255,255,255,0.85) !important; color: #fff !important; }

/* ═══ BODY THEME: GR ═══ */
.gr-why-section {
  background: #f0f2f5 !important;
}
.gr-why-section .gr-section-title {
  color: #fff !important;
}
.gr-why-section .gr-section-desc {
  color: rgba(255,255,255,0.85) !important;
}
.gr-why-section .gr-section-label {
  color: #e53d22 !important;
}
.gr-why-card {
  background: #ffffff !important;
  border-color: #fe4a00 !important;
}
.gr-why-card h3 {
  color: #234190 !important;
}
.gr-why-card p,
.gr-why-card .gr-featured-stat-label {
  color: #4b5563 !important;
}
.gr-why-card-icon {
  background: linear-gradient(135deg,#FE4A00,#FE4A00) !important;
}
.gr-faq-section {
  background: #f0f2f5 !important;
}

/* ===== GOLDENROD: Bold Orange Retro — High Energy ===== */

/* WHY section: blue bg with orange waves, white text */
.gr-why-section { background: #234190 !important; position: relative !important; padding-top: 0 !important; padding-bottom: 0 !important; }
.gr-why-wave-top, .gr-why-wave-bottom { display: block; line-height: 0; }
.gr-why-wave-top svg, .gr-why-wave-bottom svg { display: block; width: 100%; height: 70px; }
.gr-why-section .gr-container { padding-top: 40px !important; padding-bottom: 40px !important; }
/* WHY: photo card grid — 4 cols, featured spans 2 */
.gr-why-grid { display: grid !important; grid-template-columns: repeat(4, 1fr) !important; gap: 12px !important; }
.gr-why-card {
  background: rgba(255,255,255,0.10) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  border-radius: 8px !important;
  color: #fff !important;
  padding: 0 !important;
  overflow: hidden !important;
}
.gr-why-card h3 { color: #fff !important; font-size: 0.92rem !important; padding: 10px 14px 4px !important; margin: 0 !important; }
.gr-why-card p { color: rgba(255,255,255,0.85) !important; font-size: 0.82rem !important; padding: 0 14px 12px !important; margin: 0 !important; }
.gr-why-card .gr-why-card-icon { display: none !important; }
.gr-why-card-img { display: block !important; width: 100% !important; height: 140px !important; object-fit: cover !important; }

/* Featured card: spans 2 cols, white bg */
.gr-why-card.gr-featured {
  background: #fff !important;
  border: none !important;
  grid-column: span 2 !important;
}
.gr-why-card.gr-featured h3 { color: #FE4A00 !important; }
.gr-why-card.gr-featured p { color: #374151 !important; }
.gr-why-card.gr-featured .gr-featured-stat { color: #FE4A00 !important; }
.gr-why-card.gr-featured .gr-featured-stat-label { color: #4b5563 !important; }
.gr-why-card.gr-featured .gr-why-card-icon { background: linear-gradient(135deg, #FE4A00, #FE4A00) !important; }

/* Services: dark navy bg, 3-col photo cards */
.gr-services-section { background: #234190 !important; }
.gr-services-section .gr-section-label { color: #FE4A00 !important; }
.gr-services-section .gr-section-title { color: #fff !important; }
.gr-services-section .gr-section-desc { color: rgba(255,255,255,0.75) !important; }
.gr-services-grid { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 16px !important; }
.gr-service-card {
  background: #234190 !important;
  border: none !important;
  border-top: 3px solid #FE4A00 !important;
  border-radius: 8px !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3) !important;
  padding: 0 !important;
  overflow: hidden !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.gr-service-card:hover { transform: translateY(-4px) !important; box-shadow: 0 10px 30px rgba(254,74,0,0.25) !important; }
.gr-service-card-img { display: block !important; width: 100% !important; height: 160px !important; object-fit: cover !important; }
.gr-service-card-number { color: #FE4A00 !important; font-size: 0.72rem !important; font-weight: 800 !important; letter-spacing: 0.1em !important; padding: 12px 16px 4px !important; }
.gr-service-card h3 { color: #fff !important; font-size: 0.95rem !important; font-weight: 700 !important; margin: 0 0 6px !important; padding: 0 16px !important; }
.gr-service-card p { color: rgba(255,255,255,0.85) !important; font-size: 0.82rem !important; line-height: 1.5 !important; padding: 0 16px 14px !important; margin: 0 !important; }
.gr-service-link { display: inline-block !important; color: #FE4A00 !important; font-size: 0.82rem !important; font-weight: 600 !important; padding: 0 16px 16px !important; text-decoration: none !important; }
.gr-service-link:hover { text-decoration: underline !important; }

/* FAQ: orange bg with white text, white card items */
.gr-faq-section { background: #FE4A00 !important; position: relative !important; overflow: hidden !important; }
.gr-faq-section::before {
  content: '';
  position: absolute;
  left: -60px;
  top: -80px;
  width: 180px;
  height: calc(100% + 160px);
  background: #234190;
  border-radius: 50%;
  opacity: 0.9;
  z-index: 0;
}

.gr-faq-section .gr-container { position: relative; z-index: 1; }
.gr-faq-section h2 { color: #fff !important; }
.gr-faq-section .gr-section-label { color: rgba(255,255,255,0.8) !important; }
.gr-faq-item {
  background: #fff !important;
  border: none !important;
  border-radius: 6px !important;
  margin-bottom: 8px !important;
}
.gr-faq-item h3 { color: #234190 !important; }
.gr-faq-item p { color: #374151 !important; }
/* Show all FAQ panels, hide tabs */
.gr-faq-tabs { display: none !important; }
.gr-faq-panel { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 24px !important; margin-bottom: 24px !important; }
/* Compact hero */
.gr-hero { padding: 48px 0 36px !important; }
/* Wide left-aligned hero, no right column */
.gr-hero-grid {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
  padding: 0 48px !important;
}
.gr-hero-content { text-align: left !important; padding-right: 0 !important; max-width: 700px !important; }
.gr-hero h1 { font-size: 3.2rem !important; }
.gr-hero-badge { justify-content: flex-start !important; }
.gr-hero-ctas { justify-content: flex-start !important; }
.gr-hero-accent { display: none !important; }
/* 90-min guarantee band */
.gr-guarantee-band {
  background: linear-gradient(90deg, #234190 0%, #234190 50%, #234190 100%);
  width: 100%;
  padding: 0;
  border-top: 3px solid #FE4A00;
  border-bottom: 3px solid #FE4A00;
}
.gr-guarantee-band-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 48px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.gr-gb-number {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: #FE4A00;
  flex-shrink: 0;
  letter-spacing: -2px;
}
.gr-gb-divider {
  width: 2px;
  height: 60px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}
.gr-gb-text { flex: 1; }
.gr-gb-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.gr-gb-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
}
.gr-gb-sub strong { color: #fff; }
.gr-gb-cta {
  display: inline-block;
  background: #FE4A00;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}
.gr-gb-cta:hover { background: #e53d22; }

/* === GOLDENROD: WHY photo grid + comparison table === */
.gr-why-grid { display: none !important; }
.gr-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.gr-photo-grid .gr-why-card {
  background: rgba(0,0,0,0.35) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  padding: 0 !important;
}
.gr-photo-grid .gr-why-card-img {
  display: block !important;
  width: 100% !important;
  height: 140px !important;
  object-fit: cover !important;
}
.gr-photo-grid .gr-why-card > div {
  background: rgba(0,0,0,0.55);
  padding: 12px 14px 14px;
}
.gr-photo-grid .gr-why-card h3 { color: #fff !important; font-size: 0.92rem !important; font-weight: 700; margin: 0 0 5px; padding: 0 !important; line-height: 1.3; }
.gr-photo-grid .gr-why-card p { color: rgba(255,255,255,0.92) !important; font-size: 0.82rem !important; line-height: 1.4; margin: 0; padding: 0 !important; }

/* Featured card: spans 2 cols + 2 rows, image fills full height with text overlay at bottom */
.gr-photo-grid .gr-why-card.gr-featured {
  grid-column: span 2 !important;
  grid-row: span 2 !important;
  background: #234190 !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
}
.gr-photo-grid .gr-why-card.gr-featured .gr-why-card-img {
  height: 100% !important;
  flex: 1 !important;
  object-fit: cover !important;
  object-position: center !important;
  min-height: 0 !important;
}
.gr-photo-grid .gr-why-card.gr-featured > div {
  background: rgba(0,0,0,0.65) !important;
  padding: 16px 20px 18px !important;
  flex-shrink: 0 !important;
}
.gr-photo-grid .gr-why-card.gr-featured h3 { color: #fff !important; font-size: 1.1rem !important; }
.gr-photo-grid .gr-why-card.gr-featured p { color: rgba(255,255,255,0.92) !important; font-size: 0.88rem !important; }
@media (max-width: 1024px) { .gr-photo-grid { grid-template-columns: repeat(2, 1fr); } .gr-photo-grid .gr-why-card.gr-featured { grid-column: span 2; grid-row: span 1 !important; } .gr-photo-grid .gr-why-card.gr-featured .gr-why-card-img { height: 180px !important; flex: none !important; } }
@media (max-width: 600px) { .gr-photo-grid { grid-template-columns: 1fr; } .gr-photo-grid .gr-why-card.gr-featured { grid-column: span 1; grid-row: span 1 !important; } }
.gr-comparison-table {
  overflow-x: auto;
  margin-top: 32px;
  border: 2px solid #FE4A00;
  border-radius: 8px;
}
.gr-comparison-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.gr-comparison-table thead th {
  background: #234190;
  color: #fff;
  padding: 14px 20px;
  text-align: left;
  font-weight: 700;
}
.gr-comparison-table thead th:first-child { background: #234190; }
.gr-comparison-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.04); }
.gr-comparison-table tbody tr:hover { background: rgba(255,255,255,0.08); }
.gr-comparison-table tbody td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  vertical-align: top;
}
.gr-comparison-table tbody td:first-child {
  font-weight: 700;
  color: #fff;
  background: rgba(255,255,255,0.03);
  white-space: nowrap;
}
.gr-comparison-table tbody td:nth-child(2) { color: rgba(255,100,100,0.85); }
.gr-comparison-table tbody td:nth-child(3) { color: #f3f3f3; }
@media (max-width: 640px) {
  .gr-comparison-table thead th,
  .gr-comparison-table tbody td { padding: 10px 12px; font-size: 0.82rem; }
}
/* === MAP LAYOUT FIX: full-width stacked === === */
.gr-neighborhoods-grid { display: block !important; }
.gr-neighborhood-list { display: grid !important; grid-template-columns: repeat(3,1fr) !important; gap: 12px !important; margin-bottom: 32px !important; }
.gr-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; }
.gr-map-container iframe { width: 100% !important; height: 400px !important; border: 0 !important; display: block !important; }
@media (max-width: 768px) {
  .gr-neighborhood-list { grid-template-columns: 1fr 1fr !important; }
  .gr-map-container iframe { height: 280px !important; }
}
@media (max-width: 480px) {
  .gr-neighborhood-list { grid-template-columns: 1fr !important; }
}

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