/* ============================================================
   MARYAM RAFIEE — CONTACT PAGE (contact.html) STYLES
   Loaded together with base.css.
   ============================================================ */

.contact-section {
  min-height: 80vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 2rem 6rem;
}

.contact-section-inner {
  max-width: 600px;
  width: 100%;
}

.contact-section-inner .section-label { margin-bottom: 0.5rem; }
.contact-section-inner .section-title { margin-bottom: 0.5rem; }
.contact-section-inner .divider { margin-bottom: 1.5rem; }

.contact-section-intro {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: inherit;
  opacity: 0.85;
}

.contact-section-form .form-row { margin-bottom: 1.4rem; }
.contact-section-form label {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  opacity: 0.7;
}
.contact-section-form .form-control { width: 100%; box-sizing: border-box; }
.contact-section-form textarea.form-control { resize: vertical; min-height: 120px; }

.form-control {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid var(--border); border-radius: 4px;
  font-family: var(--sans); font-size: 0.95rem;
  color: var(--text-dark); background: var(--warm-white);
  transition: border-color 0.2s; outline: none;
}
.form-control:focus { border-color: var(--accent-dark); }
.form-status {
  margin-top: 1rem; padding: 0.85rem 1rem;
  border-radius: 4px; font-size: 0.875rem; display: none;
}
.form-status.success { background: #f0f9f0; border: 1px solid #c3e6c3; color: #2d5a2d; display: block; }
.form-status.error   { background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; display: block; }

@media (max-width: 600px) {
  .contact-section { padding: 2rem 1.25rem 4rem; }
}
