.quote-section {
  margin: 200px 0 80px 0;
  padding: 24px 0;
  color: var(--blaze-color-black);
}

.quote-header {
  text-align: center;

  margin-bottom: 48px;
}

.quote-title {
  font-size: 32px;

  font-weight: 700;

  color: #111;
}

.quote-subtitle {
  font-size: 18px;
  margin-top: -10px;
  color: #666;
}

.quote-form {
  max-width: 1050px;

  margin: 0 auto;
}

.quote-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 24px;
}

.quote-group {
  display: flex;

  flex-direction: column;
}

.quote-group--full {
  grid-column: 1 / -1;
}

.quote-group label {
  font-size: 18px;

  font-weight: 700;

  color: var(--blaze-color-black);

  margin-bottom: 12px;
}

.form-group label span {
  color: var(--blaze-color-black);
}
.form-group .filter-group {
  height: 64px;
}
.form-group select {
  height: 62px;
}
.form-group input,
.form-group textarea {
  width: 100%;

  border: 1px solid var(--blaze-color-primary);

  border-radius: 22px;

  padding: 0 20px;

  height: 64px;

  font-size: 16px;

  outline: none;

  transition: 0.25s;
}

.form-group textarea {
  height: 180px;

  padding: 20px;

  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #111;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #8b8b8b;
}

.date-wrapper {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 24px;
}

.address-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 24px;
}

.address-field {
  grid-column: 1 / -1;
}

.zip-field {
  grid-column: 1 / -1;
}

.quote-group select {
  appearance: none;

  -webkit-appearance: none;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23f6b51b' viewBox='0 0 16 16'%3E%3Cpath d='M3.204 5h9.592L8 11z'/%3E%3C/svg%3E");

  background-repeat: no-repeat;

  background-position: right 18px center;

  padding-right: 50px;
}

.form-group .captcha-label {
  margin-bottom: 0;
}
.captcha-question {
  margin: 0 0 8px;

  color: #1a1a1a;

  font-size: 15px;
}

.quote-recaptcha {
  min-height: 78px;
}

.quote-recaptcha__notice {
  margin: 0;
  color: #8a5b00;
  font-size: 15px;
  line-height: 22px;
}

.agreement {
  display: flex;

  align-items: flex-start;

  gap: 14px;

  cursor: pointer;
  margin-top: 16px;
  font-weight: normal !important;
}

.agreement input[type="checkbox"] {
  width: 22px;

  height: 22px;

  margin-top: 2px;

  accent-color: var(--blaze-color-primary);
}

.agreement span {
  font-size: 16px;

  font-weight: 400;

  line-height: 1.7;
}

.quote-submit {
  width: fit-content;

  height: 60px;

  border: none;

  border-radius: 8px;

  background: var(--blaze-color-primary);

  color: #111;

  font-size: 24px;

  font-weight: 600;

  cursor: pointer;

  transition: 0.25s;
}

.quote-submit:hover {
  background: #111;

  color: #fff;
}

.quote-success {
  margin-bottom: 30px;

  background: #e8f8ec;

  color: #237a3b;

  padding: 20px;

  border-radius: 10px;
}

.quote-errors {
  margin-bottom: 30px;

  background: #fff2f2;

  color: #b42318;

  padding: 20px;

  border-radius: 10px;
}

.quote-errors ul {
  margin: 0;

  padding-left: 18px;
}

.quote-form__honeypot {
  display: none;
}

@media (max-width: 991px) {
  .quote-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .quote-title {
    font-size: 34px;
  }

  .date-wrapper,
  .address-grid {
    grid-template-columns: 1fr;
  }

  .address-field,
  .zip-field {
    grid-column: auto;
  }
}

@media (max-width: 480px) {
  .form-group input {
    height: 40px;
    border-radius: 24px;
  }
  .form-group textarea {
    height: 88px;
    min-height: 0;
    padding: 16px;
  }
  .form-group textarea::placeholder,
  .form-group input::placeholder {
    font-size: 12px;
    color: #646464;
  }

  .quote-title {
    font-size: 20px;
    font-weight: 600;
  }
  .quote-subtitle {
    margin-top: 1px;
    font-size: 18px;
    line-height: normal;
  }

  .quote-header {
    margin-bottom: 16px;
  }
  .quote-grid {
    gap: 16px;
  }

  .form-group label {
    font-size: 18px;
    font-weight: 700;
  }
  .form-group select {
    height: 38px;
  }
  .form-group .filter-group {
    height: 40px;
  }

  .form-group input,
  .form-group textarea {
    padding: 0 16px;
  }

  .form-group select {
    font-size: 12px;
    color: #646464;
  }
  .agreement {
    gap: 8px;
  }
  .agreement input[type="checkbox"] {
    min-width: 24px;
    height: 24px;
    border: 2px solid #333;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
  }

  .quote-submit {
    width: 100%;
    font-size: 14px;
    font-weight: 500;
  }
}
