.contact-main {
  padding: 3rem 0 4rem;
  min-height: 60vh;
}

.contact-main h1 {
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
  font-weight: 700;
}

.contact-sub {
  margin: 0 0 2rem;
  color: var(--text-muted);
}

.contact-grid {
  display: grid;
  gap: 2rem;
  max-width: 720px;
}

.contact-form-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 2rem;
}

.contact-form .form-group {
  margin-bottom: 1.25rem;
}

.contact-form .form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-form .btn {
  margin-top: 0.25rem;
}

.contact-feedback {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
}

.contact-feedback.success {
  background: rgba(63, 185, 80, 0.15);
  border: 1px solid var(--success);
  color: var(--success);
}

.contact-feedback.error {
  background: rgba(248, 81, 73, 0.15);
  border: 1px solid var(--error);
  color: var(--error);
}

.contact-info h2 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-info p {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.hidden {
  display: none !important;
}
