/* Contact page aligned with compact static info page layout */
.wx-contact-page{
  font-family:Roboto, sans-serif;
}
.wx-contact-page .wx-info-hero,
.wx-contact-page .wx-info-hero *{
  color:#fff !important;
}
.wx-contact-page .wx-info-hero h1{
  color:#fff !important;
  text-shadow:0 2px 18px rgba(0,0,0,.32) !important;
}
.wx-contact-page .wx-info-hero p{
  color:rgba(241,245,249,.92) !important;
}
.wx-contact-page .wx-info-eyebrow{
  color:#f5b942 !important;
}
.wx-contact-hero-card a{
  color:#f5b942 !important;
  text-decoration:none;
  font-weight:600;
}
.wx-contact-hero-card a:hover{
  color:#ffd166 !important;
}
.wx-contact-panel{
  padding:20px;
}
.wx-contact-section-head span{
  display:inline-flex;
  align-items:center;
  min-height:26px;
  padding:0 12px;
  margin-bottom:10px;
  border-radius:999px;
  background:#fff7ed;
  border:1px solid rgba(245,185,66,.38);
  color:#7c2d12;
  font-size:12px;
  font-weight:500;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.wx-contact-section-head h2,
.wx-contact-support-strip h2{
  margin:0 0 8px;
  color:#0f172a;
  font-size:clamp(20px,2vw,30px);
  line-height:1.15;
  letter-spacing:-.025em;
  font-weight:600;
}
.wx-contact-section-head h2::after,
.wx-contact-support-strip h2::after{
  content:'';
  display:block;
  width:46px;
  height:2px;
  margin-top:8px;
  border-radius:99px;
  background:#f5b942;
}
.wx-contact-section-head p{
  max-width:860px;
  margin:0 0 18px;
  color:#475569;
  font-size:13px;
  line-height:1.65;
}
.wx-contact-form{
  display:grid;
  gap:12px;
}
.wx-form-row{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}
.wx-field{
  display:grid;
  gap:7px;
}
.wx-field label{
  color:#0f172a;
  font-size:13px;
  font-weight:600;
}
.wx-field input,
.wx-field select,
.wx-field textarea{
  width:100%;
  min-height:44px;
  padding:12px 13px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.10);
  background:#f8fafc;
  color:#111827;
  font:400 14px/1.4 Roboto, sans-serif;
  outline:none;
  box-sizing:border-box;
  transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.wx-field textarea{
  min-height:138px;
  resize:vertical;
}
.wx-field input:focus,
.wx-field select:focus,
.wx-field textarea:focus{
  background:#fff;
  border-color:rgba(245,185,66,.72);
  box-shadow:0 0 0 4px rgba(245,185,66,.14);
}
.wx-contact-submit{
  justify-self:start;
  min-height:44px;
  padding:0 22px;
  border:0;
  border-radius:999px;
  background:linear-gradient(135deg,#7f1d1d,#9a3412);
  color:#fff;
  font-size:14px;
  font-weight:600;
  cursor:pointer;
  box-shadow:0 16px 35px rgba(127,29,29,.22);
  transition:transform .2s ease, filter .2s ease;
}
.wx-contact-submit:hover{
  transform:translateY(-1px);
  filter:brightness(1.05);
}
.wx-contact-alert{
  padding:14px 16px;
  border-radius:18px;
  border:1px solid transparent;
  background:#fff;
  box-shadow:0 14px 35px rgba(15,23,42,.07);
}
.wx-contact-alert strong{
  display:block;
  margin-bottom:4px;
  font-size:15px;
  font-weight:600;
}
.wx-contact-alert span{
  display:block;
  font-size:13px;
  line-height:1.6;
  font-weight:400;
}
.wx-contact-alert--success{
  border-color:#bbf7d0;
  color:#047857;
  background:#ecfdf5;
}
.wx-contact-alert--error{
  border-color:#fecaca;
  color:#b91c1c;
  background:#fef2f2;
}
.wx-contact-support-strip{
  padding:18px;
}
.wx-contact-direct-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
  margin-top:14px;
}
.wx-contact-direct-grid a{
  display:grid;
  gap:5px;
  min-height:72px;
  padding:14px;
  border-radius:18px;
  background:#fafafa;
  border:1px solid rgba(15,23,42,.08);
  text-decoration:none;
  transition:border-color .2s ease, transform .2s ease, background .2s ease;
}
.wx-contact-direct-grid a:hover{
  transform:translateY(-1px);
  background:#fff7ed;
  border-color:rgba(245,185,66,.45);
}
.wx-contact-direct-grid strong{
  color:#0f172a;
  font-size:13px;
  font-weight:600;
}
.wx-contact-direct-grid span{
  color:#475569;
  font-size:13px;
  line-height:1.4;
  overflow-wrap:anywhere;
}
.wx-contact-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.wx-contact-tags span{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:0 10px;
  border-radius:999px;
  background:#fff7ed;
  border:1px solid rgba(245,185,66,.28);
  color:#7c2d12;
  font-size:12px;
  font-weight:500;
}
.wx-contact-sidebar .wx-info-side-card.notice p{
  color:#475569;
}
@media (max-width:980px){
  .wx-contact-direct-grid{
    grid-template-columns:1fr;
  }
}
@media (max-width:720px){
  .wx-contact-panel,
  .wx-contact-support-strip{
    padding:15px;
    border-radius:20px;
  }
  .wx-form-row{
    grid-template-columns:1fr;
  }
  .wx-contact-submit{
    width:100%;
  }
  .wx-contact-meta{
    gap:6px;
  }
}
