.dr1057herocontact{
  min-height:70vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:80px 20px;
  background:radial-gradient(circle at top, #0b1224, #050816);
  position:relative;
  overflow:hidden;
}

/* glow */
.dr1057herocontact::before{
  content:"";
  position:absolute;
  width:600px;
  height:600px;
  background:radial-gradient(circle, rgba(0,150,255,0.25), transparent 60%);
  top:-200px;
  left:-200px;
  filter:blur(90px);
}

.dr1057herocontact-inner{
  text-align:center;
  z-index:2;
  color:#fff;
  max-width:1000px;
  width:100%;
}

/* TITLE */
.dr1057herocontact-title{
  font-size:3rem;
  font-weight:800;
  background:linear-gradient(90deg,#fff,gold,#fff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* SUBTITLE */
.dr1057herocontact-subtitle{
  margin-top:10px;
  opacity:0.8;
}

/* IMAGE WRAPPER (KEY FIX) */
.dr1057herocontact-image{
  margin-top:30px;
  width:100%;
  display:flex;
  justify-content:center;
}

/* ⭐ REAL FIX (NO CROPPING EVER) */
.dr1057herocontact-image img{
  width:100%;
  max-width:900px;   /* allows full landscape visibility */
  height:auto;       /* IMPORTANT */

  display:block;
  border-radius:18px;
  box-shadow:0 30px 80px rgba(0,0,0,0.6);

  object-fit:contain; /* safe mode */
  transform:perspective(1000px) rotateX(2deg);
  transition:0.4s ease;
}

/* hover */
.dr1057herocontact-image img:hover{
  transform:perspective(1000px) rotateX(0deg) scale(1.01);
}

/* mobile */
@media(max-width:768px){
  .dr1057herocontact-title{
    font-size:2.2rem;
  }

  .dr1057herocontact-image img{
    max-width:100%;
    border-radius:14px;
  }
}