.request-service-component {
  scroll-margin-top: 110px;
}

.request-service-form {
  width: 100%;
}

.request-service-extra {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.request-service-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.request-service-field label {
  font-size: 12px;
  font-weight: 700;
  color: #3a4f3a;
}

.request-service-field input,
.request-service-field select,
.request-service-field textarea {
  width: 100%;
  border: 1px solid #d8e4d8;
  border-radius: 8px;
  padding: 10px;
  background: #fff;
  color: #1c2b1c;
  font: inherit;
}

.request-service-field textarea {
  min-height: 96px;
  resize: vertical;
}

.request-service-full {
  grid-column: 1 / -1;
}

.global-free-estimate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 10px;
  background: #dc2626;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.28);
}

.global-free-estimate:hover,
.global-free-estimate:focus-visible {
  background: #b91c1c;
}

.lead-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.lead-inline-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid #d8e4d8;
  border-radius: 999px;
  background: #fff;
  color: #1d5fb8;
  font-weight: 700;
  text-decoration: none;
}

.lead-inline-links a:hover,
.lead-inline-links a:focus-visible {
  border-color: #1d5fb8;
  background: #e8f0fc;
}

.estimate-trustline {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}

.lead-cta-row + .estimate-trustline,
.hero-actions + .estimate-trustline {
  color: inherit;
  opacity: 0.8;
}

@media (max-width: 900px) {
  .request-service-extra {
    grid-template-columns: 1fr;
  }
}
