/**
 * contact-us.css
 *
 * Styling for views/contact-us.php — loaded only on that page (see
 * layouts/head.php's $page === 'contact-us' check). Same palette as
 * search.css/listing-detail.css/home.css. The form itself and the agent
 * contact block are styled by the shared css/lead-form.css (its lf- and
 * ac- prefixed classes, also loaded on this page) — this file owns the
 * two-column layout, the left column's copy, and the Client Reviews
 * section below it.
 */

/* Same container/padding convention as views/search.php's .sr-wrap and
   views/listing-detail.php's .ld-wrap (max-width/margin/padding), not a
   separately-invented set of numbers — see those files' own css. */
.cu-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 24px 16px 48px;
  color: #12233D;
}

.cu-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.cu-heading {
  font-size: 30px;
  font-weight: 800;
  margin: 0 0 16px;
}

.cu-copy {
  font-size: 15px;
  line-height: 1.6;
  color: #4B5A70;
  margin: 0 0 16px;
}

.cu-copy a {
  color: #1E40AF;
  font-weight: 600;
  text-decoration: underline;
}

.cu-info .ac-block {
  margin-top: 24px;
}

/* ---- Client Reviews ---- */

.cu-reviews {
  margin-top: 56px;
}

.cu-reviews-heading {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 20px;
  color: #12233D;
}

.cu-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cu-review-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border: 1px solid #DCE1E8;
  border-radius: 10px;
  background: #F7F8FA;
}

.cu-review-heading {
  font-size: 15px;
  font-weight: 700;
  color: #12233D;
  margin: 0;
}

.cu-review-body {
  font-size: 13px;
  line-height: 1.55;
  color: #4B5A70;
  margin: 0;
  flex: 1 1 auto;
}

.cu-review-footer {
  font-size: 12px;
  font-weight: 600;
  color: #1E40AF;
  margin: 0;
}

@media (max-width: 860px) {
  .cu-columns {
    grid-template-columns: 1fr;
  }

  .cu-reviews-grid {
    grid-template-columns: 1fr;
  }
}
