:root{
  --hec-primary:#0f2942;
  --hec-accent:#fe8601;
  --hec-text:#0f2942;
  --hec-muted:rgba(15,41,66,.72);
  --hec-border:rgba(15,41,66,.18);
  --hec-bg:#f7f9fc;
}

.hec-contact{
  background: linear-gradient(180deg, #ffffff, var(--hec-bg));
  padding: 42px 16px 18px;
}

.hec-contact__container{
  max-width: 1160px;
  margin: 0 auto;
}

.hec-contact__title{
  margin: 0 0 24px;
  text-align: center;
  font-size: clamp(24px, 2.6vw, 34px);
  color: var(--hec-primary);
  letter-spacing: .3px;
}

.hec-contact__grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 20px;
  align-items: start;
}

.hec-contact__left,
.hec-contact__right{
  background: #fff;
  border: 1px solid var(--hec-border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(15,41,66,.08);
}

.hec-contact__company{
  font-weight: 800;
  font-size: 18px;
  color: var(--hec-primary);
  margin-bottom: 14px;
}

.hec-contact__item{
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid rgba(15,41,66,.08);
}

.hec-contact__item:first-of-type{
  border-top: 0;
}

.hec-contact__icon{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(254,134,1,.35);
  background: rgba(254,134,1,.08);
  display: grid;
  place-items: center;
}

.hec-contact__label{
  font-weight: 700;
  color: var(--hec-primary);
  margin-bottom: 2px;
}

.hec-contact__value{
  color: var(--hec-muted);
  line-height: 1.45;
}

.hec-contact__notice{
  border-radius: 14px;
  padding: 10px 12px;
  margin-bottom: 10px;
  border: 1px solid;
  font-weight: 600;
}
.hec-contact__notice--success{
  color: #0f6b3a;
  background: rgba(43,213,118,.12);
  border-color: rgba(43,213,118,.28);
}
.hec-contact__notice--error{
  color: #9a1a1a;
  background: rgba(255,0,0,.07);
  border-color: rgba(255,0,0,.18);
}

.hec-contact__form{
  display: grid;
  gap: 12px;
}

.hec-contact__field{
  display: grid;
  gap: 6px;
}

.hec-contact__field span{
  font-weight: 700;
  color: var(--hec-primary);
  font-size: 14px;
}

.hec-contact__field input,
.hec-contact__field textarea{
  width: 100%;
  border: 1px solid rgba(15,41,66,.22);
  border-radius: 12px;
  padding: 12px 12px;
  outline: none;
  font-size: 14px;
  background: #fff;
}

.hec-contact__field input:focus,
.hec-contact__field textarea:focus{
  border-color: rgba(254,134,1,.8);
  box-shadow: 0 0 0 3px rgba(254,134,1,.16);
}

.hec-contact__btn{
  border: 0;
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 800;
  color: #fff;
  background: var(--hec-accent);
  cursor: pointer;
  transition: transform .15s ease, filter .15s ease;
}

.hec-contact__btn:hover{
  transform: translateY(-1px);
  background: #0f2942;
}


/* MAP full width */
.hec-contact__map{
  width: 100%;
  margin: 18px 0 0;
}
.hec-contact__map iframe{
  width: 100% !important;
  height: min(520px, 62vh) !important;
  display: block;
}

/* Responsive */
@media (max-width: 900px){
  .hec-contact__grid{
    grid-template-columns: 1fr;
  }
}


.hec-contact__link{
  color: var(--hec-primary);
  text-decoration: none;
  font-weight: 700;
}
.hec-contact__link:hover{ text-decoration: underline; }



/* Social icons row (under Email) */
.hec-contact__socialOnly{
  padding: 12px 0 4px;
  border-top: 1px solid rgba(15,41,66,.08);
}
.hec-contact__socialRow{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 0;
}
.hec-contact__socialBtn{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(254,134,1,.45);
  background: rgba(254,134,1,.10);
  display:grid;
  place-items:center;
  text-decoration:none;
}
.hec-contact__socialBtn:hover{
  background: rgba(254,134,1,.16);
  border-color: rgba(254,134,1,.65);
}
.hec-contact__socialBtn svg{ width:22px; height:22px; }
