/* ============================================================
   SIRA  |  contact.css
   Styles specific to contact.html
   Builds on top of waitlist.css (.wl-* split layout + form)
   ============================================================ */

/* ── Info-panel contact methods ─────────────────────────── */
.ct-methods {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.ct-methods li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.ct-method-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.ct-method-icon svg { width: 18px; height: 18px; }

.ct-method-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ct-method-text .ct-method-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .2px;
}
.ct-method-text a,
.ct-method-text .ct-method-value {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  line-height: 1.5;
}
.ct-method-text a:hover { color: #FF6B7A; }

/* ── Textarea — mirror .wl-field input styling ──────────── */
.wl-field textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-family: inherit;
  font-size: 14px;
  color: var(--dark);
  background: var(--white);
  outline: none;
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
  transition: border-color .2s, box-shadow .2s;
}
.wl-field textarea:focus {
  border-color: var(--dark);
  box-shadow: 0 0 0 3px rgba(17, 24, 39, .07);
}
.wl-field textarea.input-error {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(232, 25, 44, .08);
}

/* ── Char counter ───────────────────────────────────────── */
.ct-counter {
  font-size: 11px;
  color: var(--gray);
  text-align: right;
  margin-top: -2px;
}
