/* =========================
   CONTACT FORM – SINGLE COLUMN
   ========================= */
.contact-form-single {
  max-width: 600px;
  margin: 0 auto;
  background: var(--color-light);
  border: 1px solid var(--color-light-gray);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-form-single:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.contact-form-single h2 {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 2rem;
}

.contact-form-single form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Form elements moved to global styles.css */

button[type="submit"] {
  padding: 0.75rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: bold;
  background-color: var(--color-dark);
  color: var(--color-light);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

button[type="submit"]:hover {
  opacity: 0.85;
}
