/* ─── Contact page styles ────────────────────────────────────────────────── */
.contact-hero {
  background: linear-gradient(135deg, #0f766e 0%, #0d9488 45%, #0ea5e9 100%);
  color: #fff;
  padding: 4rem 1.5rem;
  text-align: center;
}
.contact-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  margin: 0 0 .75rem;
}
.contact-hero p {
  font-size: 1.125rem;
  opacity: .9;
  max-width: 38rem;
  margin: 0 auto;
  line-height: 1.65;
}

.contact-body {
  max-width: 52rem;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}
.contact-intro {
  margin-bottom: 2.5rem;
  color: var(--color-neutral-700);
  font-size: 1rem;
  line-height: 1.75;
}
.contact-intro p { margin: 0 0 .75rem; }
.contact-intro p:last-child { margin-bottom: 0; }

.form-card {
  background: #fff;
  border: 1px solid var(--color-neutral-200);
  border-radius: var(--radius-2xl);
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
  overflow: hidden;
}
.google-form-frame {
  width: 100%;
  border: none;
  display: block;
  min-height: 640px;
}
.form-placeholder {
  padding: 3rem 2rem;
  text-align: center;
}
.form-placeholder .placeholder-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}
.form-placeholder h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-neutral-800);
  margin: 0 0 .75rem;
}
.form-placeholder p {
  color: var(--color-neutral-600);
  font-size: .9rem;
  line-height: 1.65;
  max-width: 30rem;
  margin: 0 auto .5rem;
}
.form-placeholder code {
  background: var(--color-neutral-100);
  border: 1px solid var(--color-neutral-200);
  border-radius: .3rem;
  padding: .15rem .4rem;
  font-size: .8rem;
  font-family: ui-monospace, monospace;
  color: var(--color-teal-700);
}
.form-setup-steps {
  text-align: left;
  background: var(--color-neutral-50);
  border: 1px solid var(--color-neutral-200);
  border-radius: var(--radius-xl);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem auto 0;
  max-width: 32rem;
  font-size: .875rem;
  color: var(--color-neutral-700);
  line-height: 1.7;
}
.form-setup-steps ol { margin: .5rem 0 0; padding-left: 1.25rem; }
.form-setup-steps li { margin-bottom: .4rem; }
.form-setup-steps strong { color: var(--color-neutral-900); }

.contact-form {
  padding: 2rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .375rem;
}
.form-group label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--color-neutral-700);
}
.form-group input,
.form-group textarea {
  width: 100%;
  box-sizing: border-box;
  padding: .625rem .875rem;
  border: 1px solid var(--color-neutral-300);
  border-radius: var(--radius-lg);
  font-family: inherit;
  font-size: .9375rem;
  color: var(--color-neutral-900);
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--color-neutral-400); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-teal-500);
  box-shadow: 0 0 0 3px rgba(20,184,166,.15);
}
.form-group textarea {
  resize: vertical;
  min-height: 7rem;
}
.submit-btn {
  align-self: flex-start;
  padding: .625rem 1.75rem;
  background: var(--color-teal-600);
  color: #fff;
  border: none;
  border-radius: var(--radius-lg);
  font-family: inherit;
  font-size: .9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s, opacity .15s;
}
.submit-btn:hover { background: var(--color-teal-700); }
.submit-btn:disabled { opacity: .6; cursor: not-allowed; }
.form-success {
  margin: 0;
  padding: .875rem 1rem;
  background: #f0fdf9;
  border: 1px solid #99f6e4;
  border-radius: var(--radius-lg);
  color: var(--color-teal-700);
  font-size: .9rem;
  font-weight: 500;
}
.form-error {
  margin: 0;
  padding: .875rem 1rem;
  background: #fff1f2;
  border: 1px solid #fecdd3;
  border-radius: var(--radius-lg);
  color: #be123c;
  font-size: .9rem;
}
