/* Contact hero — standalone, does NOT affect Treatments (unique class names) */
.contact-page-hero{
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center; /* middle */
  overflow: hidden;
  background: #0f1117;
}

.contact-page-hero__bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  filter: saturate(0.95) contrast(1.05) brightness(0.78);
}

.contact-page-hero__overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 500px at 20% 70%, rgba(255,255,255,0.10), rgba(255,255,255,0) 60%),
    linear-gradient(to top, rgba(0,0,0,0.58), rgba(0,0,0,0.18) 60%, rgba(0,0,0,0.10));
}

.contact-page-hero__inner{
  position: relative;
  width: 100%;
  max-width: 1160px;        /* match Treatments feel */
  margin: 0 auto;
  padding: 38px 22px;       /* same rhythm as Treatments hero */
}

.contact-page-hero__title{
  margin: 0;
  color: #fff;
  font-weight: 600;
  line-height: 1.02;
  font-size: clamp(34px, 4.2vw, 64px);
  text-shadow: 0 10px 35px rgba(0,0,0,.35);
  max-width: 18ch;
}

.contact-page-hero__sub{
  margin: 12px 0 0;
  color: rgba(255,255,255,.88);
  font-size: 16px;
  line-height: 1.65;
  max-width: 60ch;
}

/* Mobile: align like Treatments and keep comfortable padding */
@media (max-width: 640px){
  .contact-page-hero{ min-height: 240px; }
  .contact-page-hero__inner{ padding: 28px 18px; }
  .contact-page-hero__sub{ font-size: 15px; }
}

/* Contact form — reduce bulk (scoped to contact only) */
.mbc-contact-wrap{
  max-width: 1040px;
}

.mbc-contact-wrap .mbc-two-col{
  gap: 16px;
}

.mbc-contact-wrap input,
.mbc-contact-wrap select,
.mbc-contact-wrap textarea{
  font-size: 14px;
  padding: 9px 11px;
  border-radius: 12px;
}

.mbc-contact-wrap textarea{ min-height: 110px; }

.mbc-contact-wrap .btn,
.mbc-contact-wrap button{
  padding: 9px 12px;
  border-radius: 12px;
  font-size: 14px;
}
