/* Hero Section */

.form-hero {
  position: relative;
  color: white;
  padding: 6rem 1.5rem;
  text-align: center;
}
.form-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* subtle dark overlay */
  z-index: 0;
}

.form-hero h1 {
  position: relative;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  z-index: 1;
}

.form-hero p {
  position: relative;
  font-size: 1.2rem;
  z-index: 1;
  max-width: 600px;
  margin: auto;
}

/* Request Form Section */
.request-form-section {
  padding: 4rem 1rem;
  background: #f8fafe;
  border-bottom: 2px solid #efefef;
}

.service-request-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea, .form-group select {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.full-width {
  grid-column: 1 / -1;
}

.service-request-form button {
  margin-top: 2rem;
  margin-left: 0; 
  font-weight:500;
  display: block;
  font-size: 1.1rem;
  min-width: 40%;
}
.g-recaptcha {
  margin-top: 1.5rem
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr; /* stack fields */
  }
  .service-request-form button {
    width: 100%;
  }
}