
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: hidden; }
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 29s 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 { display: none !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: 18px 7px !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.3px !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: #f04f25 !important; }

/* Pipe separators between nav items */
.shah-header__nav-item + .shah-header__nav-item {
  display: flex !important;
  align-items: center !important;
}
.shah-header__nav-item + .shah-header__nav-item::before {
  content: '|' !important;
  color: rgba(255,255,255,0.35) !important;
  font-size: 14px !important;
  font-weight: 300 !important;
  flex-shrink: 0 !important;
}

/* Dropdown */
.shah-header__nav-has-dropdown { padding-bottom: 10px !important; margin-bottom: -10px !important; }
.shah-header__dropdown {
  position: absolute !important;
  top: calc(100% - 2px) !important;
  left: 0 !important;
  padding-top: 4px !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,

/* 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: #ffffff !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;
}



/* ---------- FOOTER ---------- */

.shah-footer__container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
}

/* Service Areas Band */






/* 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__columns {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px !important;
  }

  .shah-footer__main {
    padding: 40px 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__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;
}



/* Contact Page — scoped with .cp- prefix */


.cp-page { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: #0a1628; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.cp-page-bg { background: #f0f2f5; min-height: 100vh; padding: 1px 0; position: relative; overflow: hidden; }
.cp-page-bg::after { content: ''; position: absolute; top: 0; right: -60px; width: 220px; height: 100%; background: #FE4A00; clip-path: polygon(60px 0, 100% 0, 100% 100%, 0 100%); pointer-events: none; z-index: 0; opacity: 0.92; }
.cp-page { position: relative; z-index: 1; }

/* Hero */
.cp-hero { background: #234190; color: #fff; padding: 60px 40px; text-align: center; border-radius: 16px; margin: 30px 0; position: relative; overflow: hidden; }
.cp-hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(254,74,0,0.2) 0%, transparent 70%); pointer-events: none; }
.cp-hero h1 { font-size: 2.4rem; font-weight: 900; margin: 0 0 12px; position: relative; }
.cp-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.9); margin: 8px 0; position: relative; }
.cp-hero .cp-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; }
.cp-hero .cp-hero-phone:hover { background: #e53d22; transform: scale(1.05); }

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

/* Form Section */
.cp-form-wrap { background: #234190; border: none; border-radius: 16px; padding: 40px; box-shadow: 0 8px 32px rgba(35,65,144,0.25); }
.cp-form-wrap h2 { color: #fff; font-size: 1.6rem; font-weight: 800; margin: 0 0 6px; }
.cp-form-wrap .cp-form-sub { color: rgba(255,255,255,0.85); font-size: 0.95rem; margin: 0 0 28px; }

.cp-form label { display: block; font-weight: 600; font-size: 0.9rem; color: rgba(255,255,255,0.9); margin-bottom: 6px; }
.cp-form .cp-field { margin-bottom: 20px; }
.cp-form input[type="text"],
.cp-form input[type="email"],
.cp-form input[type="tel"],
.cp-form select,
.cp-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: #ffffff; }
.cp-form input:focus,
.cp-form select:focus,
.cp-form textarea:focus { outline: none; border-color: #FE4A00; background: #fff; }
.cp-form textarea { resize: vertical; min-height: 100px; }
.cp-form .cp-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.cp-form .cp-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; }
.cp-form .cp-submit:hover { background: #e53d22; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(240,79,37,0.35); }
.cp-form .cp-submit:disabled { background: #f3f3f3; cursor: not-allowed; transform: none; box-shadow: none; }

.cp-form .cp-success { display: none; text-align: center; padding: 40px 20px; }
.cp-form .cp-success h3 { color: #fff; font-size: 1.5rem; margin: 0 0 10px; }
.cp-form .cp-success p { color: rgba(255,255,255,0.9); font-size: 1.05rem; }
.cp-form .cp-success .cp-check { width: 64px; height: 64px; background: #FE4A00; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.cp-form .cp-success .cp-check svg { width: 32px; height: 32px; stroke: #fff; stroke-width: 3; fill: none; }
.cp-form .cp-error { color: #FE4A00; font-size: 0.85rem; margin-top: 4px; display: none; }
.cp-form .cp-field.cp-invalid input,
.cp-form .cp-field.cp-invalid select { border-color: #FE4A00; }
.cp-form .cp-field.cp-invalid .cp-error { display: block; }

/* Sidebar */
.cp-sidebar { }
.cp-info-card { background: #234190; border-radius: 16px; padding: 30px; margin-bottom: 24px; border: none; box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.cp-info-card h3 { color: #fff; font-size: 1.2rem; font-weight: 800; margin: 0 0 16px; }
.cp-info-card p { color: rgba(255,255,255,0.88); line-height: 1.7; margin: 10px 0; font-size: 0.95rem; }
.cp-info-card a { color: #FE4A00; text-decoration: none; font-weight: 600; }
.cp-info-card a:hover { text-decoration: underline; }

.cp-guarantee { background: #FE4A00; color: #fff; border-radius: 16px; padding: 30px; text-align: center; box-shadow: 0 8px 32px rgba(254,74,0,0.25); }
.cp-guarantee h3 { color: #fff; font-size: 1.3rem; margin: 0 0 8px; }
.cp-guarantee .cp-big { font-size: 3rem; font-weight: 900; color: #fff; line-height: 1; }
.cp-guarantee p { color: rgba(255,255,255,0.92); font-size: 0.95rem; }

/* Why Choose Us */
.cp-why { margin: 50px 0; }
.cp-why h2 { color: #0a1628; font-size: 1.8rem; font-weight: 800; text-align: center; margin-bottom: 30px; }
.cp-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cp-why-card { background: #234190; border: none; border-radius: 12px; padding: 24px; text-align: center; transition: all 0.3s; box-shadow: 0 4px 16px rgba(35,65,144,0.18); }
.cp-why-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(35,65,144,0.28); }
.cp-why-card .cp-icon { width: 56px; height: 56px; background: #FE4A00; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.cp-why-card .cp-icon svg { width: 28px; height: 28px; stroke: #fff; fill: none; stroke-width: 2; }
.cp-why-card h4 { color: #fff; font-weight: 700; margin: 0 0 8px; }
.cp-why-card p { color: rgba(255,255,255,0.82); font-size: 0.9rem; line-height: 1.6; margin: 0; }

/* Final CTA */

/* Service Areas inside page-bg */
.cp-areas-wrap { background: #fff; border-radius: 16px; padding: 28px 32px; margin: 0 0 40px; box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.cp-areas-heading { font-size: 1.1rem; font-weight: 700; color: #234190; text-align: center; margin: 0 0 18px; text-transform: uppercase; letter-spacing: 0.03em; }
.cp-areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.cp-area-pill { display: block; padding: 8px 12px; background: linear-gradient(135deg, #fff 0%, #fff 20%, rgba(254,74,0,0.18) 45%, rgba(254,74,0,0.55) 65%, #FE4A00 100%); border: 2px solid #FE4A00; border-radius: 8px; color: #0a1628; font-size: 13px; font-weight: 600; text-decoration: none; text-align: center; transition: all 0.2s ease; }
.cp-area-pill:hover { background: linear-gradient(135deg, #fff 0%, rgba(254,74,0,0.4) 40%, #FE4A00 100%); color: #0a1628; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(254,74,0,0.25); }
@media (max-width: 768px) { .cp-areas-grid { grid-template-columns: repeat(2, 1fr); } }

/* Schema */

/* Responsive */
@media (max-width: 768px) {
  .cp-hero { padding: 40px 24px; }
  .cp-hero h1 { font-size: 1.8rem; }
  .cp-grid { grid-template-columns: 1fr; gap: 24px; }
  .cp-form-wrap { padding: 28px 20px; }
  .cp-form .cp-row { grid-template-columns: 1fr; }
  .cp-why-grid { grid-template-columns: 1fr; }
  
}

@media (max-width: 360px) {
  body { font-size: 15px; }
}
