/* Shared "GET STARTED NOW" contact form-card styling — ditto geo-services.html */
.form-card {
  background: #fff;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
  border: 2px solid #1a3a8f;
}
.form-card h4 {
  color: #1a3a8f;
  font-weight: 900;
  text-align: center;
  margin-bottom: 5px;
}
.form-card .form-sub {
  text-align: center;
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 30px;
}
.form-card .form-control,
.form-card .form-select {
  padding: 14px;
  border-radius: 10px;
  margin-bottom: 18px;
  border: 1.5px solid #eee;
}
.form-card .form-check {
  text-align: left;
}
.btn-submit {
  background: linear-gradient(135deg, #1a3a8f 0%, #6b3fa0 100%);
  color: #fff;
  border: none;
  width: 100%;
  padding: 16px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(26,58,143,0.3);
}

@media (max-width: 991px) {
  .form-card { margin-top: 50px; }
}
