/* ============================================================
   CONTACT PAGE — contact.css
   ============================================================ */

.contact-main {
  background-color: var(--bg);
  min-height: 70vh;
  padding: 80px 24px 100px;
  animation: fadeIn 0.5s ease both;
}

.contact-inner {
  max-width: 720px;
  margin: 0 auto;
}

/* ===== TITLE ===== */
.contact-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 48px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

/* ===== FORM ===== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

/* ===== FIELD WRAPPER ===== */
.contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ===== LABELS ===== */
.contact-label {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
}

.contact-sublabel {
  font-family: var(--font-body);
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--dark);
  display: block;
  margin-bottom: 6px;
}

.contact-req {
  font-weight: 400;
  color: var(--gray);
}

/* ===== NAME ROW ===== */
.contact-name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-name-col {
  display: flex;
  flex-direction: column;
}

/* ===== INPUTS ===== */
.contact-input {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  border: 1px solid #b8b0a8;
  border-radius: 3px;
  padding: 10px 12px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.contact-input:focus {
  border-color: var(--orange);
}

.contact-textarea {
  min-height: 150px;
  resize: vertical;
}

/* ===== SUBMIT ===== */
.contact-submit {
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  background-color: var(--orange);
  border: none;
  border-radius: 8px;
  padding: 18px 40px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.15s;
}

.contact-submit:hover {
  background-color: var(--orange-dark);
  transform: translateY(-1px);
}

/* ===== SUCCESS MESSAGE ===== */
.contact-thanks {
  display: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--orange);
  font-weight: 600;
  margin-top: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 560px) {
  .contact-name-row {
    grid-template-columns: 1fr;
  }

  .contact-main { padding: 60px 20px 80px; }
  .contact-title { margin-bottom: 36px; }
}
