/* ── Contact page layout ── */
.contact-section {
  background: var(--off-white);
  padding: 4rem 1.5rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 3rem;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ── Left column ── */
.contact-left {
  background: var(--teal-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  color: white;
}
.contact-left h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: .5rem;
}
.contact-left > p {
  font-size: .9375rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Email card inside left col */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,.08);
  border: 2px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
}
.contact-info-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}
.contact-info-item strong {
  display: block;
  font-size: .9375rem;
  font-weight: 600;
  color: white;
  margin-bottom: .375rem;
}
.contact-info-item a {
  display: block;
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  transition: color .2s;
}
.contact-info-item a:hover { color: white; }
.contact-info-item p { font-size: .9rem; color: rgba(255,255,255,.7); }

/* Response time box */
.contact-response-box {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
}
.contact-response-box h4 {
  font-size: .9375rem;
  font-weight: 600;
  color: white;
  margin-bottom: .375rem;
}
.contact-response-box p {
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
}

/* Demo note */
.contact-info-note {
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 1.25rem;
  margin-top: .25rem;
}
.contact-info-note p {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
}
.contact-info-note strong { color: white; }

/* ── Right column ── */
.contact-right h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: .5rem;
}
.contact-right > p {
  font-size: .9375rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}
.contact-form-card {
  background: white;
  border: 2px solid #A7AAAD;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.form-group { margin-bottom: 1.125rem; }
.form-label {
  display: block;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: .375rem;
}
.form-input {
  width: 100%;
  padding: .6875rem .875rem;
  border: 1px solid #A7AAAD;
  border-radius: var(--radius-sm);
  font-size: .9375rem;
  font-family: inherit;
  color: var(--text-body);
  transition: border-color .2s;
  background: white;
}
.form-input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,122,107,.08);
}

@media(max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-section { padding: 3rem 1rem; }
}