
#contact-page {
  padding-bottom: 100px;
  background: var(--bg-main);
  position: relative;
}
#contact-page::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

.contact-hero {
  padding-top: 20px;
  padding-bottom: 56px;
}
.contact-hero-body {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 560px;
}

.contact-body { padding-bottom: 0; }
.contact-layout {
  max-width: 720px;
  margin: 0 auto;
}
.contact-form-wrap { position: relative; }

.contact-form-panel {
  padding: 40px 44px;
  position: relative;
  overflow: hidden;
}
.contact-form-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--accent-gold), var(--accent-copper), transparent);
  border-radius: 22px 22px 0 0;
}

.contact-form-header { margin-bottom: 28px; }
.contact-form-header h2 {
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--text-main);
  margin-top: 4px;
}
.contact-form-panel .btn-submit {
  margin-top: 24px;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .contact-hero { padding-top: 110px; padding-bottom: 40px; }
  .contact-form-panel { padding: 32px 28px; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form-panel { padding: 24px 20px; }
}
