/* === KONTAK page === */
.contact-wrap{
    width: min(100%, 980px);
    margin: 50px auto 0;
  }
  .contact-grid{
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 18px;
    align-items: start;
  }
  .contact-card{
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.03);
    border-radius: 18px;
    padding: 18px;
  }
  .contact-title{
    margin: 0 0 10px;
    font-weight: 700;
    letter-spacing: .5px;
  }
  .contact-row{
    display:flex;
    gap:10px;
    align-items:flex-start;
    margin-top: 10px;
    opacity: .95;
  }
  .contact-row .label{
    min-width: 92px;
    opacity: .8;
  }
  .contact-actions{
    margin-top: 16px;
    display:flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .map-embed{
    border-radius: 18px;
    overflow:hidden;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.03);
  }
  .map-embed iframe{
    width:100%;
    height: 360px;
    border: 0;
    display:block;
  }
  @media (max-width: 860px){
    .contact-grid{ grid-template-columns: 1fr; }
    .map-embed iframe{ height: 320px; }
  }

/* Kontak mobile spacing (presisi HP) */
@media (max-width: 860px){
  .contact-grid{ grid-template-columns: 1fr; gap: 22px; }
  .map-embed iframe{ height: 300px; }
}
@media (max-width: 480px){
  .contact-wrap{ width: 100%; margin: 28px auto 0; }
  .contact-card{
    padding: 16px;
    max-width: 92vw;
    margin-left: auto;
    margin-right: auto;
  }
  .map-embed iframe{
    height: 250px;
    border-radius: 18px;
  }
  .contact-actions .btn{ width: 100%; text-align: center; }
}
