/* Estimate landing page */

.estimate-steps {
  padding: 4rem 1.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.estimate-steps-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.estimate-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .estimate-steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.estimate-step {
  text-align: center;
  padding: 1.5rem;
}

.estimate-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #014059;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.estimate-step-heading {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.estimate-step-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
}

/* Proof strip */
.estimate-proof {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  background-color: #014059;
  color: #ffffff;
  padding: 3rem 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .estimate-proof {
    grid-template-columns: repeat(3, 1fr);
  }
}

.estimate-proof-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #f37321;
  margin-bottom: 0.5rem;
}

.estimate-proof-label {
  font-size: 0.95rem;
  max-width: 280px;
  margin: 0 auto;
}

/* Form */
.estimate-form-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.estimate-form-title {
  text-align: center;
  margin-bottom: 2rem;
}

.estimate-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.estimate-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 641px) {
  .estimate-form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.estimate-select {
  width: 100%;
  appearance: none;
  background-color: transparent;
  cursor: pointer;
}

.estimate-textarea {
  width: 100%;
  resize: vertical;
}

.estimate-submit-button {
  align-self: center;
  padding: 0.9rem 2.5rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.estimate-submit-button:disabled {
  opacity: 0.6;
  cursor: wait;
}
