/* CONTACT.HTML MAIN AREA */
.card-contact {
  background: var(--card-bg);
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-subtle);
  padding: 1.5rem;
  }

.card h2 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  text-align: left;
}

.card p.lead {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

form.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-row label {
  font-size: 0.85rem;
  font-weight: 500;
}

.form-row input,
.form-row textarea {
    font: inherit;
    padding: 0.6rem 0.75rem;
    border-radius: 0.6rem;
    border: 1px solid var(--border-subtle);
    background: #f9fafb;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.form-row input:focus,
.form-row textarea:focus {
    border-color: var(--accent);
    background: #ffffff;
    box-shadow: 0 0 0 1px rgba(31, 41, 51, 0.15);
}

.form-row textarea {
    min-height: 140px;
    resize: vertical;
}

.hint {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.submit-row {
    display: flex;
    justify-content: flex-start;
    margin-top: 0.75rem;
}

button.btn-primary {
    border: none;
    border-radius: 999px;
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.18);
    transition: transform 0.1s ease, box-shadow 0.1s ease, opacity 0.15s ease;
}

button.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.22);
    opacity: 0.96;
}