/* --------------------------------------------------------------------------
   15. ENROLLMENT & CONTACT FORM SECTION
   -------------------------------------------------------------------------- */
.form-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
}

.form-wrapper {
  max-width: 680px;
  margin: 0 auto;
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.form-header {
  margin-bottom: 2rem;
}

.form-header h2 {
  font-family: 'Poppins', sans-serif;
  color: var(--primary-blue);
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}

.form-header p {
  color: var(--gray-text);
  font-size: 0.95rem;
}

.styled-form .form-group {
  margin-bottom: 1.25rem;
}

.styled-form label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--primary-blue);
}

.styled-form label i {
  color: var(--accent-orange);
}

.styled-form input,
.styled-form select,
.styled-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--dark-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.styled-form input:focus,
.styled-form select:focus,
.styled-form textarea:focus {
  outline: none;
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(239, 125, 32, 0.15);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-submit-btn {
  width: 100%;
  margin-top: 0.5rem;
  justify-content: center;
}