/* uo-contact-map.css
   Contact Map – modern/kurumsal
*/

.contact-map .contact-card,
.contact-map .map-card{
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.10);
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 18px 55px rgba(2,6,23,.08);
  overflow: hidden;
}

/* İletişim kartı */
.contact-map .contact-card{
  padding: clamp(14px, 2.2vw, 18px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Başlık alanı */
.contact-map .contact-card__head{
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(15,23,42,.08);
}

.contact-map .contact-card__title{
  margin: 0;
  font-weight: 800;
  letter-spacing: -.01em;
  font-size: 1.05rem;
  color: #0f172a;
}

.contact-map .contact-card__sub{
  font-size: .92rem;
  color: rgba(15,23,42,.62);
}

/* Liste */
.contact-map .contact-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.contact-map .contact-item{
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  padding: 8px 10px;
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 14px;
  background: rgba(255,255,255,.7);
}

.contact-map .contact-item i{
  margin-top: 2px;
  opacity: .85;
  font-size: 1.05rem;
}

.contact-map .contact-item span,
.contact-map .contact-item a{
  font-size: .98rem;
  line-height: 1.45;
  color: #0f172a;
  text-decoration: none;
}

.contact-map .contact-item a:hover{
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Aksiyon butonları */
.contact-map .contact-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.contact-map .contact-btn{
  border-radius: 999px;
  padding: .55rem .85rem;
  font-weight: 700;
  letter-spacing: .01em;
}

/* Outline-secondary daha kurumsal */
.contact-map .btn-outline-secondary.contact-btn{
  border-color: rgba(15,23,42,.18);
  color: rgba(15,23,42,.84);
}
.contact-map .btn-outline-secondary.contact-btn:hover{
  border-color: rgba(15,23,42,.28);
  color: #0f172a;
}

/* Harita kartı */
.contact-map .map-card{
  height: 100%;
}

/* Map-lite içerik taşmaları */
.contact-map .map-card .map-lite{
  border-radius: 0;
}

/* Mobil */
@media (max-width: 575.98px){
  .contact-map .contact-item{ padding: 9px 10px; }
  .contact-map .contact-btn{
    width: 100%;
    justify-content: center;
  }
}
