/* ONESEA Solutions — Contact page (page-contact.php only). */

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}
.contact-info-card {
  background: #fff;
  border: 1px solid rgba(0,45,87,0.10);
  border-radius: 16px;
  padding: 28px 22px 30px;
}
.contact-info-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(239,0,138,0.08);
  color: var(--onesea-pink);
  margin-bottom: 16px;
}
.contact-info-card__title {
  font-family: var(--font-sans);
  font-weight: var(--fw-bold);
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--onesea-navy);
  margin: 0 0 8px;
}
.contact-info-card__body {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--onesea-ink);
  margin: 0;
}
.contact-info-card__body a { color: var(--onesea-ink); text-decoration: none; }
.contact-info-card__body a:hover { color: var(--onesea-pink); text-decoration: underline; }

@media (max-width: 640px) {
  .contact-info-grid { grid-template-columns: 1fr; }
}

/* ===== Contact Form 7 acceptance checkbox (Contact page only — Onboard
   Life's CF7 form has no consent field). Generic wpcf7-* styling (error
   tips, response banner, spinner) lives in forms.css, shared with the
   Onboard Life apply-modal form. ===== */
.cf-form .cf-consent-cf7 .wpcf7-list-item { display: block; margin: 0; }
.cf-form .cf-consent-cf7 .wpcf7-list-item-label::before,
.cf-form .cf-consent-cf7 .wpcf7-list-item-label::after { content: none; }
.cf-form .cf-consent-cf7 label {
  display: flex; align-items: flex-start; gap: 12px; margin-top: 24px;
  font-family: var(--font-sans); font-size: 14.5px; line-height: 1.5; color: var(--onesea-ink); cursor: pointer;
}
.cf-form .cf-consent-cf7 input[type="checkbox"] {
  margin-top: 3px; width: 18px; height: 18px; accent-color: var(--onesea-pink); flex-shrink: 0;
}
.cf-form .cf-consent-cf7 input.wpcf7-not-valid { outline: 2px solid #d11d30; }
.cf-form .cf-consent-cf7 .wpcf7-list-item-label { flex: 1; min-width: 0; }
