/* Contact Page Styles */

.contact-page {
  background: var(--bg-alt);
  min-height: 100vh;
  padding-bottom: 5rem;
}

.contact-hero {
  background: var(--bg-paper);
  padding: 3rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}
.ch-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.ch-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.ch-lead {
  font-size: 1.125rem;
  color: var(--fg-light);
}

.contact-section {
  padding-top: 3rem;
}
.c-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .c-grid { grid-template-columns: repeat(3, 1fr); }
}

.c-card {
  background: var(--bg-paper);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.c-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.c-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.c-card-icon svg { width: 1.5rem; height: 1.5rem; }
.c-card-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  color: var(--fg-dark);
  text-transform: none;
  margin-bottom: 0.5rem;
}
.c-card-primary {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg-dark);
  margin-bottom: 0.5rem;
}
.c-card-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.c-card-link:hover {
  color: var(--accent-hover);
}
.c-card-sub {
  color: var(--fg-light);
  font-size: 0.9375rem;
}

.contact-cta {
  background: var(--bg-paper);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  text-align: center;
  border: 1px solid var(--border-light);
  max-width: 800px;
  margin: 0 auto;
}
.contact-cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.contact-cta p {
  color: var(--fg-light);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}