/* RGR Estimate Form */

.rgr-estimate-form,
.rgr-estimate-form * { box-sizing: border-box; }

.rgr-estimate-form {
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  color: var(--rgr-black);
  padding: clamp(32px, 4vw, 64px) clamp(24px, 3vw, 48px);
}

.rgr-estimate-form__heading {
  margin: 0 0 10px;
  font-size: clamp(26px, 2.4vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--rgr-black);
}

.rgr-estimate-form__sub {
  margin: 0 0 28px;
  font-size: clamp(14px, 0.95vw, 16px);
  color: rgba(3,4,5,0.60);
  line-height: 1.5;
}

.rgr-estimate-form__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rgr-estimate-form__row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.rgr-field {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--rgr-black);
  background: #fff;
  border: 1.5px solid rgba(3,4,5,0.18);
  border-radius: 6px;
  outline: none;
  transition: border-color 160ms ease;
  appearance: none;
  -webkit-appearance: none;
}
.rgr-field:focus {
  border-color: var(--rgr-red);
}
.rgr-field--error {
  border-color: #c0392b;
  background: #fff8f8;
}
.rgr-field--error:focus {
  border-color: #c0392b;
}
.rgr-field::placeholder {
  color: rgba(3,4,5,0.40);
}
.rgr-field--textarea {
  resize: vertical;
  min-height: 110px;
}
select.rgr-field {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.rgr-estimate-form__submit {
  align-self: flex-start;
  margin-top: 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.rgr-estimate-form__disclaimer {
  margin: 14px 0 0;
  font-size: 11px;
  line-height: 1.55;
  color: rgba(3, 4, 5, 0.42);
}
.rgr-estimate-form__disclaimer a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 160ms ease;
}
.rgr-estimate-form__disclaimer a:hover {
  color: rgba(3, 4, 5, 0.70);
}

/* ── Submission feedback ─────────────────────────────────────── */
.rgr-estimate-form__msg {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 15px;
  line-height: 1.5;
}
.rgr-estimate-form__msg[data-type="success"] {
  background: #f0faf0;
  color: #1a6e1a;
  border: 1.5px solid #b3e0b3;
}
.rgr-estimate-form__msg[data-type="error"] {
  background: #fff5f5;
  color: #c0392b;
  border: 1.5px solid #f5b8b8;
}

/* ── Mobile ──────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .rgr-estimate-form__row--split {
    grid-template-columns: 1fr;
  }
}
