.contact-page{
  min-height:calc(100vh - 86px);
  padding:56px 0;
  background:
    linear-gradient(180deg, rgba(39,169,216,.12) 0%, rgba(234,246,251,.78) 44%, var(--bg) 100%);
}

.contact-shell{
  display:flex;
  justify-content:center;
}

.contact-panel{
  width:min(100%, 680px);
  padding:34px;
  border:1px solid var(--line);
  border-radius:8px;
  background:#fff;
  box-shadow:0 18px 42px rgba(29,39,48,.08);
}

.contact-panel h1{
  margin:0 0 14px;
  color:var(--ink);
  font-size:clamp(34px, 5vw, 48px);
  line-height:1.05;
  letter-spacing:0;
}

.contact-panel p{
  margin:8px 0 0;
  color:var(--muted);
  font-size:17px;
  line-height:1.6;
}

.contact-number{
  display:flex;
  flex-wrap:wrap;
  gap:8px 12px;
  margin-top:22px;
  padding:16px;
  border:1px solid var(--line);
  border-radius:8px;
  background:var(--soft);
}

.contact-number span{
  color:var(--muted);
  font-weight:700;
}

.contact-number strong{
  color:var(--brand-dark);
}

.whatsapp-button{
  min-height:54px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-top:24px;
  padding:13px 22px;
  border-radius:6px;
  background:#20b85a;
  color:#fff;
  font-weight:800;
  box-shadow:0 12px 26px rgba(32,184,90,.22);
}

.whatsapp-button:hover{
  background:#159447;
}

.whatsapp-button-icon{
  position:relative;
  width:22px;
  height:22px;
  border:2px solid currentColor;
  border-radius:50%;
}

.whatsapp-button-icon:before{
  content:"";
  position:absolute;
  left:5px;
  top:5px;
  width:8px;
  height:8px;
  border-left:3px solid currentColor;
  border-bottom:3px solid currentColor;
  transform:rotate(-35deg);
}

.whatsapp-button-icon:after{
  content:"";
  position:absolute;
  left:0;
  bottom:-5px;
  width:8px;
  height:8px;
  border-left:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform:rotate(-18deg);
}

@media (max-width:560px){
  .contact-page{
    padding:38px 0;
  }

  .contact-panel{
    padding:24px;
  }

  .whatsapp-button{
    width:100%;
  }
}
