.quote-wrap {
  background: radial-gradient(circle at top left, rgba(250, 182, 55, 0.16), transparent 32%), linear-gradient(135deg, #07111b 0%, #111827 46%, #f7f4ee 46%, #ffffff 100%);
  padding: 80px 0;
  color: #101820;
}

.quote-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.quote-heading {
  max-width: 780px;
  margin-bottom: 32px;
  color: #ffffff;
}

.quote-kicker,
.quote-section-title p,
.quote-summary-kicker {
  margin: 0 0 8px;
  color: #fab637;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.quote-heading h1 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.quote-heading p:last-child {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.7;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
  gap: 28px;
  align-items: start;
}

.quote-panel {
  border: 1px solid rgba(16, 24, 32, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 70px rgba(7, 17, 27, 0.16);
}

.quote-form {
  padding: clamp(24px, 4vw, 42px);
}

.quote-section + .quote-section {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid #edf0f4;
}

.quote-section-title {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 22px;
}

.quote-section-title span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  flex: 0 0 46px;
  border-radius: 50%;
  background: #101820;
  color: #fab637;
  font-weight: 800;
}

.quote-section-title h2,
.quote-summary h2 {
  margin: 0;
  color: #101820;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: -0.03em;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.quote-field--full {
  grid-column: 1 / -1;
}

.quote-field label {
  display: block;
  margin-bottom: 8px;
  color: #2b3540;
  font-weight: 800;
  font-size: 14px;
}

.quote-input-shell {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  border: 1px solid #dfe5ec;
  border-radius: 16px;
  background: #f8fafc;
  padding: 0 16px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.quote-input-shell:focus-within,
.quote-field textarea:focus {
  border-color: #fab637;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(250, 182, 55, 0.15);
}

.quote-input-shell i {
  color: #fab637;
  font-size: 18px;
}

.quote-field input,
.quote-field select,
.quote-field textarea {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #101820;
  font: inherit;
  font-weight: 600;
}

.quote-field select {
  cursor: pointer;
}

.quote-field textarea {
  min-height: 132px;
  resize: vertical;
  border: 1px solid #dfe5ec;
  border-radius: 16px;
  background: #f8fafc;
  padding: 16px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.quote-field small {
  display: block;
  margin-top: 7px;
  color: #b42318;
  font-weight: 700;
}

.quote-submit {
  width: 100%;
  margin-top: 32px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #fab637, #ffcf6b);
  color: #101820;
  padding: 18px 24px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 18px 32px rgba(250, 182, 55, 0.28);
  transition: transform .2s ease, box-shadow .2s ease;
}

.quote-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 42px rgba(250, 182, 55, 0.36);
}

.quote-summary {
  position: sticky;
  top: 105px;
  padding: 32px;
  overflow: hidden;
}

.quote-summary::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, #fab637, #101820);
}

.quote-summary-copy {
  margin: 12px 0 24px;
  color: #697586;
  line-height: 1.7;
}

.quote-summary-list {
  display: grid;
  gap: 12px;
}

.quote-summary-list div {
  display: grid;
  gap: 5px;
  padding: 16px;
  border: 1px solid #edf0f4;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.quote-summary-list span {
  color: #697586;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quote-summary-list strong {
  color: #101820;
  font-size: 16px;
  line-height: 1.35;
}

.quote-summary-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 22px;
  padding: 18px;
  border-radius: 18px;
  background: #101820;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.quote-summary-note i {
  color: #fab637;
  font-size: 22px;
}

.quote-alert {
  margin-bottom: 24px;
  border-radius: 20px;
  padding: 20px 24px;
  font-weight: 800;
  line-height: 1.65;
  box-shadow: 0 18px 45px rgba(7, 17, 27, 0.12);
}

.quote-alert--success {
  border: 1px solid #abefc6;
  background: #ecfdf3;
  color: #067647;
}

.quote-alert--error {
  border: 1px solid #fecdca;
  background: #fef3f2;
  color: #b42318;
}

@media (max-width: 991px) {
  .quote-layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
    gap: 20px;
  }

  .quote-summary {
    padding: 26px;
  }
}

@media (max-width: 767px) {
  .quote-wrap {
    padding: 56px 0;
    background: linear-gradient(180deg, #07111b 0%, #111827 34%, #f7f4ee 34%, #ffffff 100%);
  }

  .quote-layout,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .quote-summary {
    position: static;
  }
}

.pac-container {
  z-index: 10000;
  border: 1px solid #dfe5ec;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(7, 17, 27, 0.16);
  font-family: inherit;
}

.quote-alert--custom-location {
  background: #fff8e6;
  border-color: #f4c15d;
  color: #5d4200;
}
