/* Contact Us page pixel-precise layout */

body.page-contact { background: #fff; }

.contact-wrap {
  width: 1170px;
  margin: 0 auto;
  padding: 80px 0 80px;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  color: #101223;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 40px;
}

/* Left column: form */
.contact-form {
  background: #ffffff;
}
.contact-form .section-title {
  font-size: 28px;
  line-height: 26px;
  font-weight: 800;
  margin-bottom: 32px;
}
.contact-form .section-lead {
  font-size: 1.25rem;
  line-height: 22px;
  color: #5a5a5a;
  margin-bottom: 32px;
}
.form-control {
  width: 100%;
  height: 42px;
  border: 1px solid #e1e1e1;
  border-radius: 6px;
  padding: 0 12px;
  font-size: 1.25rem;
  margin-bottom: 12px;
  background: #f7f7f7;
}
.form-textarea {
  width: 100%;
  min-height: 120px;
  border: 1px solid #e1e1e1;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 1.25rem;
  background: #f7f7f7;
  resize: vertical;
}

.captcha-row { display: flex; align-items: center; gap: 14px; margin: 16px 0; }
.captcha-box {
  width: 304px; height: 78px;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  background: #f3f3f3;
  display: flex; align-items: center; justify-content: center;
  color: #666; font-size: 1.25rem;
}

.submit-btn {
  margin-top: 32px;
  display: inline-block;
  background: #bf2026;
  color: #fff;
  border: none;
  border-radius: 18px;
  height: 36px;
  padding: 0 28px;
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.submit-btn:hover { background: #a5191f; }

/* Right column: office info */
.contact-info { color: #3a3a3a; }
.contact-info .intro {
  font-size: 1.25rem; line-height: 22px; color: #5a5a5a; margin-bottom: 18px;
}
.contact-info .office-title { font-size: 23px; font-weight: 800; margin-top: 32px; margin-bottom: 32px; }
.contact-info .address, .contact-info .phones { font-size: 1.25rem; line-height: 20px; color: #4a4a4a; }
.contact-info .hours-title { font-size: 23px; font-weight: 800; margin-top: 32px; margin-bottom: 32px; }
.contact-info .hours { font-size: 1.25rem; line-height: 20px; }

/* Banner title overlay tweak for contact page */
.page-contact .hero-content .max-w-3xl h1 {
  font-size: 38px !important; line-height: 1.25 !important; color: #fff !important;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-wrap { width: 92%; padding: 32px 0 60px; }
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 640px) {
  .form-control { height: 40px; }
  .captcha-box { width: 100%; }
}