/* Center contact section with comfortable spacing */
.contact-wrap{
  max-width: 1200px;        /* limit width and center */
  margin: 64px auto 56px;   /* push down from header and give bottom breathing room */
  padding: 0 10px;          /* small side padding for narrow screens */
  display:grid;
  grid-template-columns: 480px 1fr;
  gap:16px;
  align-items:stretch;
}

/* keep existing visual styles; only adjustments below if not present */
.info-panel{
  background:#1f2937;
  color:#e5e7eb;
  border-radius:16px;
  padding:22px;
  min-height:500px;   /* 讓左邊也拉長 */
  display: flex;
  flex-direction: column;
  justify-content: center; /* 內容置中，看起來更舒服 */
}
.map-panel{
  border-radius:16px;
  overflow:hidden;
  border:1px solid #e5e7eb;
  background:#fff;
  min-height:500px;
}
.map-panel iframe{
  width:100%;
  height:100%;
  min-height:500px;
  border:0;
}

@media (max-width: 980px){
  .contact-wrap{ grid-template-columns: 1fr; margin: 48px auto 48px; }
  .map-panel{ min-height:360px; }
  .map-panel iframe{ min-height:360px; }
}

/* 讓電話和 Email 反黃 */
.contact-wrap .info-panel a {
  color: #FFD700;       /* 金黃色 */
  font-weight: 600;
  text-decoration: none;
}
.contact-wrap .info-panel a:hover {
  color: #FFA500;       /* 橘色 hover */
  text-decoration: underline;
}
