/* Contacts (v25) — layout like screenshot, styled to match site */
.ct3{ padding-top: 10px; }

.ct3-surface{ padding: 18px; }

.ct3-grid{
  display:grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 18px;
  align-items: start;
}

.ct3-title{
  font-family: "Unbounded", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.ct3-contacts{
  display:grid;
  gap: 10px;
  margin-bottom: 14px;
}

.ct3-item{
  display:flex;
  align-items:center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,124,207,.14);
  background: rgba(255,255,255,.02);
}

.ct3-item:hover{
  border-color: rgba(0,124,207,.28);
  background: rgba(0,124,207,.03);
}

.ct3-ic{
  display:flex;
  align-items:center;
  justify-content:center;

  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(0,124,207,.18);
  background: rgba(0,124,207,.10);
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 auto;
}

.ct3-ic svg{
  width: 18px;
  height: 18px;
  fill: #007ccf;
}

.ct3-text{
  font-weight: 700;
  opacity: .95;
}

.ct3-form{
  display:grid;
  gap: 12px;
  margin-top: 6px;
}

.ct3-field label{
  display:block;
  font-weight: 800;
  margin-bottom: 6px;
  opacity: .92;
}

.ct3-field input,
.ct3-field textarea{
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.10);
  color: inherit;
  outline: none;
}

.ct3-field input:focus,
.ct3-field textarea:focus{
  border-color: rgba(0,124,207,.35);
  box-shadow: 0 0 0 4px rgba(0,124,207,.12);
}

.ct3-btn{ width: 260px; }

.ct3-note{
  margin-top: 4px;
  font-size: 13px;
  opacity: .75;
  max-width: 48ch;
}

.ct3-map{
  border-radius: 18px;
  border: 1px solid rgba(0,124,207,.16);
  background: rgba(255,255,255,.02);
  overflow: hidden;
  min-height: 520px;
  box-shadow: 0 10px 30px rgba(0,0,0,.10);
}

.ct3-map iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display:block;
  min-height: 520px;
}

@media (max-width: 980px){
  .ct3-grid{ grid-template-columns: 1fr; }
  .ct3-map{ min-height: 420px; }
  .ct3-map iframe{ min-height: 420px; }
  .ct3-btn{ width: 100%; }
}

.ct3-address{
  display:flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,124,207,.14);
  background: rgba(255,255,255,.02);
  margin-bottom: 10px;
}



/* Fix hero title overflow */
.hero-title-small{font-size:20px;line-height:1.2;max-width:100%;white-space:normal;overflow-wrap:anywhere;}
