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




/* ---------- 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 41s linear infinite !important;
}

.shah-ticker__track:hover {
  animation-play-state: paused !important;
}

.shah-ticker__content {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

.shah-ticker__item {
  color: #fff !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 19px;
  font-weight: 700;
  line-height: 1 !important;
  padding: 0 16px !important;
  white-space: nowrap !important;
}

.shah-ticker__dot {
  display: inline-block !important;
  width: 6px !important;
  height: 6px !important;
  background: #fff !important;
  border-radius: 50% !important;
  opacity: 0.7 !important;
  flex-shrink: 0 !important;
}

@keyframes shahTickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}/* ---------- SITE HEADER ---------- */
.shah-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 99998 !important;
  background: #234190 !important;border-bottom: 3px solid #FE4A00 !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08) !important;
  width: 100% !important;
}/* ---------- MOBILE MENU ---------- */
.shah-mobile-menu {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 100000 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

.shah-mobile-menu.shah-mobile-menu--open {
  pointer-events: auto !important;
  visibility: visible !important;
}

.shah-mobile-menu__overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0,0,0,0.6) !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
}

.shah-mobile-menu--open .shah-mobile-menu__overlay {
  opacity: 1 !important;
}

.shah-mobile-menu__panel {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  width: 320px !important;
  max-width: 85vw !important;
  height: 100% !important;
  background: #0a1628 !important;
  transform: translateX(100%) !important;
  transition: transform 0.3s ease !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
  display: flex !important;
  flex-direction: column !important;
}

.shah-mobile-menu--open .shah-mobile-menu__panel {
  transform: translateX(0) !important;
}

.shah-mobile-menu__top {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 16px 20px !important;
  border-bottom: 1px solid #f0f2f5 !important;
}

.shah-mobile-menu__logo img {
  width: 160px !important;
  height: auto !important;
  display: block !important;
}

.shah-mobile-menu__close {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  background: none !important;
  border: 1px solid rgba(255,255,255,0.85) !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.85) !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.85) !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.85) !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.85) !important;
  line-height: 1.4 !important;
}

.shah-mobile-menu__sublink:hover {
  color: #FE4A00 !important;
  background: rgba(255,255,255,0.85) !important;
}

/* CTA at bottom of mobile menu */
.shah-mobile-menu__cta {
  padding: 20px !important;
  border-top: 1px solid rgba(255,255,255,0.85) !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;
}

.shah-footer__service-areas {
  background: #ffffff;
  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: #FE4A00;
  margin: 0 0 32px 0 !important;
  letter-spacing: -0.02em !important;
}

.shah-footer__city-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 12px !important;
}

.shah-footer__areas-tagline {
  text-align: center !important;
  margin-top: 24px !important;
  font-size: 0.85rem !important;
  color: #374151 !important;
  line-height: 1.6 !important;
  max-width: 900px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.shah-footer__city-link {
  display: block !important;
  padding: 14px 18px !important;
  background: rgba(255,255,255,0.85) !important;
  border: 1px solid rgba(255,255,255,0.85) !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;
}

.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;
}

.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; }

.shah-footer__social-icons {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  margin-top: 20px !important;
}

.shah-footer__social-icons a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 42px !important;
  height: 42px !important;
  border-radius: 6px !important;
  background: #FE4A00 !important;
  transition: background 0.2s ease, transform 0.2s ease !important;
  text-decoration: none !important;
}

.shah-footer__social-icons a:hover {
  background: #FE4A00!important;
  transform: translateY(-2px) !important;
}

.shah-footer__social-icons a svg {
  width: 20px !important;
  height: 20px !important;
}

.shah-footer__copyright {
  background: #FE4A00 !important;
  padding: 14px 0 !important;
  width: 100% !important;
}

.shah-footer__copyright-text {
  text-align: center !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  color: rgba(255,255,255,0.9) !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}

.shah-footer__copyright-text a {
  color: #fff !important;
  text-decoration: underline !important;
  font-weight: 600 !important;
}

/* ==========================================================================
   RESPONSIVE — 1024px (nav collapse to mobile)
   ========================================================================== */
@media (max-width: 1024px) {
  .shah-ticker__item { font-size: 19px; padding: 0 12px !important; }
  .shah-ticker { height: 36px !important; }
}

@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; }
}@media (max-width: 480px) {
  .shah-ticker__item { font-size: 19px; padding: 0 10px !important; }
  .shah-ticker { height: 32px !important; }
  .shah-ticker__dot { width: 4px !important; height: 4px !important; }.shah-footer__city-grid { grid-template-columns: 1fr !important; }
  .shah-footer__service-areas { padding: 28px 0 !important; }
  .shah-footer__areas-heading { font-size: 20px !important; }
  .shah-footer__columns { grid-template-columns: 1fr !important; gap: 28px !important; }
  .shah-footer__main { padding: 32px 0 !important; }
  .shah-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; }
}/* ---------- Hide mobile menu on desktop ---------- */
@media (min-width: 1025px) {
  .shah-mobile-menu { display: none !important; }
}

/* ---------- Prevent body scroll when mobile menu is open ---------- */
body.shah-mobile-open { overflow: hidden !important; }

/* ==========================================================================
   SCHEDULE SERVICE PAGE — sched- prefix
   ========================================================================== */

/* ----- HERO ----- */
.sched-hero {
  background: #234190;
  position: relative;
  overflow: hidden;
  max-height: 380px;
  min-height: 300px;
  display: flex;
  align-items: center;
}

.sched-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 32px;
  display: flex;
  align-items: center;
  gap: 48px;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Subtle background pattern */
.sched-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 340px;
  height: 340px;
  background: rgba(255,255,255,0.85);
  border-radius: 50%;
  z-index: 1;
}

.sched-hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 30%;
  width: 200px;
  height: 200px;
  background: rgba(254,74,0,0.07);
  border-radius: 50%;
  z-index: 1;
}

/* Navy curve at bottom */
.sched-hero__curve {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}

.sched-hero__curve svg {
  display: block;
  width: 100%;
}

/* Left: headline + CTA */
.sched-hero__left {
  flex: 1;
  min-width: 0;
}

.sched-hero__h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 14px 0;
  letter-spacing: -0.02em;
}

.sched-hero__sub {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.55;
  margin: 0 0 24px 0;
  max-width: 480px;
}

.sched-hero__call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FE4A00;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.sched-hero__call-btn:hover {
  background: #fe4a00;
  transform: translateY(-2px);
}

.sched-hero__call-btn svg {
  flex-shrink: 0;
}

/* Right: trust pills */
.sched-hero__right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sched-trust-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 8px;
  padding: 12px 20px;
  min-width: 260px;
}

.sched-trust-pill__check {
  width: 22px;
  height: 22px;
  background: #FE4A00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sched-trust-pill__check svg {
  width: 13px;
  height: 13px;
}

.sched-trust-pill__text {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

/* ----- MAIN 2-COL LAYOUT ----- */
.sched-main {
  display: flex;
  align-items: stretch;
  min-height: 680px;
}

/* LEFT column — contact info */
.sched-contact-col {
  width: 35%;
  background: #234190;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  flex-shrink: 0;
}

.sched-contact-logo img {
  width: 160px;
  height: auto;
  display: block;
}

.sched-contact-divider {
  height: 1px;
  background: rgba(255,255,255,0.85);
  margin: 0;
}

/* Phone */
.sched-contact-phone-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sched-contact-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.sched-contact-phone-link {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #FE4A00;
  text-decoration: none;
  line-height: 1.1;
  transition: color 0.2s;
}

.sched-contact-phone-link:hover {
  color: #fff;
}

/* Info rows */
.sched-contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sched-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.sched-contact-info-icon {
  width: 36px;
  height: 36px;
  background: rgba(254,74,0,0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sched-contact-info-icon svg {
  width: 17px;
  height: 17px;
}

.sched-contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sched-contact-info-text strong {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.sched-contact-info-text span,
.sched-contact-info-text a {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.2s;
}

.sched-contact-info-text a:hover {
  color: #FE4A00;
}

/* Map link */
.sched-map-link {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 6px;
  padding: 11px 16px;
  text-decoration: none;
  color: rgba(255,255,255,0.8);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
}

.sched-map-link:hover {
  background: rgba(254,74,0,0.15);
  border-color: rgba(254,74,0,0.3);
  color: #fff;
}

.sched-map-link svg {
  flex-shrink: 0;
}

/* Social icons */
.sched-social-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sched-social-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: #FE4A00;
  transition: transform 0.2s, opacity 0.2s;
  text-decoration: none;
}

.sched-social-row a:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

.sched-social-row a svg {
  width: 17px;
  height: 17px;
}

/* Emergency note */
.sched-emergency-note {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #FE4A00;
  line-height: 1.4;
  padding: 14px 16px;
  background: rgba(254,74,0,0.1);
  border-left: 3px solid #FE4A00;
  border-radius: 0 6px 6px 0;
}

/* RIGHT column — form */
.sched-form-col {
  width: 65%;
  background: #fff;
  padding: 40px 40px;
  display: flex;
  flex-direction: column;
}

.sched-form-heading {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #234190;
  margin: 0 0 6px 0;
}

.sched-form-subheading {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #234190;
  margin: 0 0 24px 0;
}

.sched-form-wrap {
  flex: 1;
}

.sched-form-wrap iframe {
  width: 100%;
  min-height: 700px;
  border: none;
  display: block;
}

/* ----- TRUST ROW ----- */
.sched-trust-row {
  background: #f3f3f3;
  border-top: 3px solid #FE4A00;
}

.sched-trust-row__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sched-trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 32px 24px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.sched-trust-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.09);
}

.sched-trust-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(254,74,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sched-trust-card__icon svg {
  width: 26px;
  height: 26px;
}

.sched-trust-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #234190;
  margin: 0;
}

.sched-trust-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #234190;
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  .sched-hero__inner {
    flex-direction: column;
    gap: 28px;
    padding: 36px 24px 48px;
  }

  .sched-hero {
    max-height: none;
  }

  .sched-hero__right {
    width: 100%;
  }

  .sched-trust-pill {
    min-width: 0;
  }

  .sched-main {
    flex-direction: column;
  }

  .sched-contact-col {
    width: 100%;
    padding: 36px 24px;
  }

  .sched-form-col {
    width: 100%;
    padding: 32px 20px;
  }

  .sched-trust-row__inner {
    grid-template-columns: 1fr;
    padding: 32px 20px;
  }
}

@media (max-width: 600px) {
  .sched-hero__h1 {
    font-size: 1.6rem;
  }

  .sched-hero__inner {
    padding: 28px 16px 44px;
  }

  .sched-form-col {
    padding: 24px 16px;
  }

  .sched-contact-col {
    padding: 28px 16px;
  }

  .sched-contact-phone-link {
    font-size: 1.65rem;
  }

  .sched-trust-row__inner {
    padding: 24px 16px;
    gap: 16px;
  }
}.skip-nav:focus{left:4px!important;outline:3px solid #FE4A00;border-radius:4px;}

/* Schedule Service Page — ss- prefix */


.ss-page-bg { background: linear-gradient(135deg, #234190 0%, #234190 100%); min-height: 100vh; padding: 1px 0; }
.ss-page { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: #fff; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Hero */
.ss-hero { background: rgba(255,255,255,0.85); color: #fff; padding: 60px 40px; text-align: center; border-radius: 16px; margin: 30px 0; position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,0.85); }
.ss-hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(240,79,37,0.15) 0%, transparent 70%); pointer-events: none; }
.ss-hero h1 { font-size: 2.4rem; font-weight: 900; margin: 0 0 12px; position: relative; }
.ss-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.9); margin: 8px 0; position: relative; }
.ss-hero .ss-hero-phone { display: inline-block; background: #FE4A00; color: #fff !important; padding: 16px 40px; font-size: 1.3rem; font-weight: 800; text-decoration: none; border-radius: 50px; margin-top: 20px; transition: all 0.3s; position: relative; }
.ss-hero .ss-hero-phone:hover { background: #e53d22; transform: scale(1.05); }

/* Two-column layout */
.ss-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; margin: 40px 0; align-items: start; }

/* Form Section */
.ss-form-wrap { background: rgba(255,255,255,0.95); border-radius: 16px; padding: 40px; box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.ss-form-wrap h2 { color: #234190; font-size: 1.6rem; font-weight: 800; margin: 0 0 6px; }
.ss-form-wrap .ss-form-sub { color: #234190; font-size: 0.95rem; margin: 0 0 28px; }
.ss-form label { display: block; font-weight: 600; font-size: 0.9rem; color: #234190; margin-bottom: 6px; }
.ss-form .ss-field { margin-bottom: 20px; }
.ss-form input[type="text"],
.ss-form input[type="email"],
.ss-form input[type="tel"],
.ss-form select,
.ss-form textarea { width: 100%; padding: 14px 16px; border: 2px solid #f0f2f5; border-radius: 10px; font-size: 1rem; font-family: inherit; color: #234190; transition: border-color 0.2s; box-sizing: border-box; background: #f3f3f3; }
.ss-form input:focus, .ss-form select:focus, .ss-form textarea:focus { outline: none; border-color: #FE4A00; background: #fff; }
.ss-form textarea { resize: vertical; min-height: 100px; }
.ss-form .ss-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ss-form .ss-submit { display: block; width: 100%; padding: 18px; background: #FE4A00; color: #fff; font-size: 1.15rem; font-weight: 800; border: none; border-radius: 50px; cursor: pointer; transition: all 0.3s; font-family: inherit; letter-spacing: 0.5px; }
.ss-form .ss-submit:hover { background: #e53d22; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(240,79,37,0.35); }
.ss-form .ss-submit:disabled { background: #f3f3f3; cursor: not-allowed; transform: none; box-shadow: none; }
.ss-form .ss-success { display: none; text-align: center; padding: 40px 20px; }
.ss-form .ss-success h3 { color: #234190; font-size: 1.5rem; margin: 0 0 10px; }
.ss-form .ss-success p { color: #234190; font-size: 1.05rem; }
.ss-form .ss-success .ss-check { width: 64px; height: 64px; background: #374151; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.ss-form .ss-success .ss-check svg { width: 32px; height: 32px; stroke: #fff; stroke-width: 3; fill: none; }
.ss-form .ss-error { color: #FE4A00; font-size: 0.85rem; margin-top: 4px; display: none; }
.ss-form .ss-field.ss-invalid input, .ss-form .ss-field.ss-invalid select { border-color: #FE4A00; }
.ss-form .ss-field.ss-invalid .ss-error { display: block; }

/* Sidebar */
.ss-info-card { background: #fff; border-radius: 16px; padding: 30px; margin-bottom: 24px; box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.ss-info-card h3 { color: #234190; font-size: 1.2rem; font-weight: 800; margin: 0 0 16px; }
.ss-info-card p { color: #4b5563; line-height: 1.7; margin: 10px 0; font-size: 0.95rem; }
.ss-info-card a { color: #FE4A00; text-decoration: none; font-weight: 600; }
.ss-info-card a:hover { text-decoration: underline; }
.ss-guarantee { background: rgba(240,79,37,0.15); color: #fff; border-radius: 16px; padding: 30px; text-align: center; border: 1px solid rgba(240,79,37,0.3) !important; box-shadow: 0 8px 32px rgba(0,0,0,0.2) !important; }
.ss-guarantee h3 { color: #fff; font-size: 1.3rem; margin: 0 0 8px; }
.ss-guarantee .ss-big { font-size: 3rem; font-weight: 900; color: #FE4A00; line-height: 1; }
.ss-guarantee p { color: rgba(255,255,255,0.9); font-size: 0.95rem; }

/* Trust Cards */
.ss-trust { margin: 50px 0; }
.ss-trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ss-trust-card { background: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.85); border-radius: 12px; padding: 28px; text-align: center; transition: all 0.3s; }
.ss-trust-card:hover { border-color: #FE4A00; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.ss-trust-card .ss-icon { width: 56px; height: 56px; background: linear-gradient(135deg, #FE4A00 0%, #234190 100%); border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.ss-trust-card .ss-icon svg { width: 28px; height: 28px; stroke: #fff; fill: none; stroke-width: 2; }
.ss-trust-card h4 { color: #fff; font-weight: 700; margin: 0 0 8px; font-size: 1rem; }
.ss-trust-card p { color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.6; margin: 0; }

@media (max-width: 768px) {
  .ss-hero { padding: 40px 24px; }
  .ss-hero h1 { font-size: 1.8rem; }
  .ss-grid { grid-template-columns: 1fr; gap: 24px; }
  .ss-form-wrap { padding: 28px 20px; }
  .ss-form .ss-row { grid-template-columns: 1fr; }
  .ss-trust-grid { grid-template-columns: 1fr; }
}@media (max-width: 360px) {
  body { font-size: 15px; }
}/* INJECTION: area-pill */
.shah-area-pill { display: flex; align-items: center; gap: 8px; padding: 10px 14px; background: linear-gradient(to right, #ffffff 0%, #ffffff 25%, rgba(254,74,0,0.12) 50%, rgba(254,74,0,0.5) 75%, #FE4A00 100%); border: 2px solid #FE4A00; border-radius: 8px; color: #0a1628; font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.shah-area-pill:hover { background: linear-gradient(to right, #fff 0%, rgba(254,74,0,0.35) 40%, #FE4A00 100%); }
.area-pill__pin { flex-shrink: 0; }
.shah-area-pill-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 900px) { .shah-area-pill-grid { grid-template-columns: repeat(2, 1fr); } }@media (max-width: 480px) { .shah-area-pill-grid { grid-template-columns: 1fr; } }