/* Climate Change Heating & Cooling — "What Will a New AC Cost You?" quote flow */
.ac-quote-promo {
  background: linear-gradient(135deg, #0a2a45, #0a76b8);
  color: #fff;
}
.ac-quote-promo-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px 0;
}
.ac-quote-promo .eyebrow { color: #9bd8ff; }
.ac-quote-promo h2 { margin: 4px 0 6px; color: #fff; }
.ac-quote-promo p { margin: 0; max-width: 60ch; color: #dceaf6; }

.page-ac-quote .sticky-call { display: none; }

.ac-quote-band { padding-top: 26px; padding-bottom: 26px; }
.ac-quote-app { max-width: 720px; margin: 0 auto; }
.ac-quote-noscript,
.ac-quote-fallback {
  padding: 18px;
  border: 1px solid var(--line, #e6e9ef);
  border-radius: 12px;
  background: #fff7ed;
}

.ac-quote-shell {
  border: 1px solid var(--line, #e6e9ef);
  border-radius: 16px;
  background: #fff;
  padding: 22px 22px 18px;
  box-shadow: 0 18px 40px rgba(10, 42, 69, 0.08);
}
.ac-quote-progress {
  height: 8px;
  border-radius: 999px;
  background: #e8eef5;
  overflow: hidden;
}
.ac-quote-progress span {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, #0a76b8, #f47b20);
  transition: width 0.25s ease;
}
.ac-quote-step-count {
  margin: 10px 0 2px;
  font-size: 13px;
  color: #66758a;
  font-weight: 700;
}
.ac-quote-q-title { margin: 6px 0 4px; font-size: 22px; line-height: 1.25; }
.ac-quote-q-help { margin: 0 0 16px; color: #66758a; font-size: 14px; }

.ac-quote-options { display: grid; gap: 10px; }
@media (min-width: 520px) {
  .ac-quote-options.cols-2 { grid-template-columns: 1fr 1fr; }
}
.ac-quote-option {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--line, #e6e9ef);
  border-radius: 12px;
  background: #fff;
  font: inherit;
  color: var(--navy, #102a43);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, transform 0.05s;
}
.ac-quote-option:hover { border-color: #9cc3e3; }
.ac-quote-option:active { transform: translateY(1px); }
.ac-quote-option.is-selected {
  border-color: #0a76b8;
  background: #eef6fc;
  box-shadow: inset 0 0 0 1px #0a76b8;
}
.ac-quote-option .opt-emoji { font-size: 22px; line-height: 1; }
.ac-quote-option .opt-label { font-weight: 700; }
.ac-quote-option .opt-sub { display: block; font-weight: 500; color: #66758a; font-size: 13px; }

.ac-quote-field { display: block; margin-bottom: 14px; }
.ac-quote-field span { display: block; font-weight: 700; margin-bottom: 6px; font-size: 14px; }
.ac-quote-field input,
.ac-quote-field textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--line, #e6e9ef);
  border-radius: 10px;
  font: inherit;
  background: #fff;
}
.ac-quote-field input:focus,
.ac-quote-field textarea:focus { outline: 2px solid #0a76b8; outline-offset: 1px; }

.ac-quote-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  border: 1px solid var(--line, #e6e9ef);
  border-radius: 10px;
  background: #f7fafc;
  font-size: 14px;
}
.ac-quote-consent input { margin-top: 3px; }

.ac-quote-preview {
  margin: 0 0 14px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line, #e6e9ef);
  background: #eef2f7;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ac-quote-preview img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ac-quote-preview .preview-fallback { color: #66758a; font-size: 14px; padding: 18px; text-align: center; }

.ac-quote-autocomplete-hint { font-size: 12.5px; color: #8a97a8; margin: -6px 0 12px; }

.ac-quote-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}
.ac-quote-nav .button { min-width: 120px; }
.ac-quote-nav [data-ac-next] { margin-left: auto; }

.ac-quote-error { color: #c0392b; font-size: 14px; margin: 10px 2px 0; min-height: 1em; }

.ac-quote-success {
  text-align: center;
  padding: 18px 8px;
}
.ac-quote-success .check {
  width: 64px; height: 64px; border-radius: 50%;
  background: #1f9d55; color: #fff; font-size: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.ac-quote-success h2 { margin: 0 0 8px; }
.ac-quote-success p { color: #44546a; max-width: 48ch; margin: 0 auto 8px; }

.ac-quote-address-wrap {
  position: relative;
}

.ac-quote-suggestions {
  display: grid;
  gap: 0;
  max-height: 260px;
  margin: -8px 0 12px;
  overflow-y: auto;
  border: 1px solid #c9d7e5;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(10, 42, 69, 0.16);
}

.ac-quote-suggestion {
  display: grid;
  gap: 2px;
  width: 100%;
  padding: 11px 13px;
  border: 0;
  border-bottom: 1px solid #e6e9ef;
  background: #fff;
  color: var(--navy, #102a43);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.ac-quote-suggestion:last-child { border-bottom: 0; }
.ac-quote-suggestion:hover,
.ac-quote-suggestion.is-active {
  background: #eef6fc;
}
.ac-quote-suggestion span { font-weight: 700; }
.ac-quote-suggestion small {
  color: #66758a;
  font-size: 12.5px;
  line-height: 1.3;
}

/* Legacy Google dropdown fallback if the data API is unavailable. */
.pac-container { z-index: 9999; border-radius: 10px; }
