.agent-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Avatar düzenleme */
.agent-avatar{
  width:115px;
  height:auto;
  display:flex;
  align-items:center;
  justify-content:center;
}

.agent-avatar img{
  width:115px !important;
  height:auto !important;
  object-fit:contain;
  border-radius:0 !important;
}

/* Profil kartı iyileştirme */
.agent-detail-section .agent-header{
    background:#ffffff;
    border-radius:16px;
    padding:25px 30px;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
    transition:all .3s ease;
}

/* Hover efekti (masaüstü) */
@media (min-width: 992px){
    .agent-detail-section .agent-header:hover{
        transform:translateY(-3px);
        box-shadow:0 12px 35px rgba(0,0,0,0.08);
    }
}

/* İsim biraz daha güçlü */
.agent-name{
    font-weight:700;
    font-size:22px;
}

/* Mobil düzen */
@media (max-width:768px){

    .agent-header{
        flex-direction:column !important;
        text-align:center;
        padding:20px;
    }

    .agent-avatar{
        margin-bottom:15px;
    }

    .agent-info{
        align-items:center;
    }

    .agent-whatsapp-section{
        justify-content:center;
    }
}

.agent-info {
    flex: 1;
}

/* İlan Kartı Premium Görünüm */
.property-card{
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
  transition:all .3s ease;
}

.property-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 45px rgba(0,0,0,0.12);
}

/* Fiyat Güçlendirme */
.property-price{
  font-size:20px;
  font-weight:700;
  color:#111;
}

/* Başlık Netlik */
.property-title{
  font-weight:600;
  font-size:16px;
}

/* Badge Daha Premium */
.badge{
  border-radius:20px;
  padding:4px 10px;
  font-size:12px;
}

/* Mobil düzen */
@media(max-width:768px){
  .property-card{
    margin-bottom:20px;
  }
}

/* =========================
   PREMIUM İLAN KARTLARI
   (Güvenli / Çakışmasız)
========================= */

/* Kart: birden fazla olası selector ile yakalıyoruz */
.property-card,
.property-item,
.property-box,
.listing-item,
.card.property,
.agent-properties-section .card {
  border-radius: 16px !important;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,.06) !important;
  transition: transform .25s ease, box-shadow .25s ease;
  background: #fff;
}

/* Hover (mobilde hover yok gibi düşün ama masaüstünde premium hissi verir) */
@media (min-width: 992px){
  .property-card:hover,
  .property-item:hover,
  .property-box:hover,
  .listing-item:hover,
  .card.property:hover,
  .agent-properties-section .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,.12) !important;
  }
}

/* Görsel: hafif zoom ile canlılık */
.property-card img,
.property-item img,
.property-box img,
.listing-item img,
.card.property img,
.agent-properties-section .card img {
  transition: transform .35s ease;
  display:block;
}

@media (min-width: 992px){
  .property-card:hover img,
  .property-item:hover img,
  .property-box:hover img,
  .listing-item:hover img,
  .card.property:hover img,
  .agent-properties-section .card:hover img {
    transform: scale(1.03);
  }
}

/* Fiyat: daha güçlü görünüm (mevcut sınıflar farklı olabilir diye çoklu yakalama) */
.property-price,
.price,
.card .price,
.card .property-price,
.agent-properties-section .card strong,
.agent-properties-section .card .text-end {
  font-weight: 800 !important;
  letter-spacing: .2px;
}

/* Badge’ler: daha modern */
.badge,
.badge-success,
.badge-danger,
.label,
.tag {
  border-radius: 999px !important;
  padding: 4px 10px !important;
  font-size: 12px !important;
}

/* Mobilde kart boşlukları */
@media (max-width: 768px){
  .property-card,
  .property-item,
  .property-box,
  .listing-item,
  .card.property,
  .agent-properties-section .card {
    border-radius: 14px !important;
    box-shadow: 0 8px 22px rgba(0,0,0,.06) !important;
  }
}

/* =========================
   KURUMSAL PREMIUM FINAL
========================= */

/* Profil kartı daha elit boşluk */
.agent-detail-section .agent-header{
  border-radius:18px !important;
  padding:28px 36px !important;
}

/* İsim daha güçlü */
.agent-name{
  font-weight:800 !important;
  font-size:24px !important;
  letter-spacing:.3px;
}

/* WhatsApp butonu daha ciddi */
.agent-whatsapp-section a,
.agent-whatsapp-section .btn{
  border-radius:10px !important;
  font-weight:600;
  padding:10px 20px;
  box-shadow:0 6px 18px rgba(37,211,102,.25);
  transition:all .25s ease;
}

@media(min-width:992px){
  .agent-whatsapp-section a:hover,
  .agent-whatsapp-section .btn:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 24px rgba(37,211,102,.35);
  }
}

/* İlan kartları daha premium */
.agent-properties-section .card{
  border-radius:18px !important;
  overflow:hidden;
  box-shadow:0 14px 35px rgba(0,0,0,.06) !important;
  transition:all .3s ease;
}

@media(min-width:992px){
  .agent-properties-section .card:hover{
    transform:translateY(-6px);
    box-shadow:0 22px 55px rgba(0,0,0,.12) !important;
  }
}

/* Fiyat daha baskın */
.agent-properties-section .card strong,
.agent-properties-section .price{
  font-size:20px !important;
  font-weight:800 !important;
  color:#111 !important;
}

/* Badge daha modern */
.badge{
  border-radius:50px !important;
  padding:4px 12px !important;
  font-weight:600;
}

/* Genel sayfa havası */
body{
  background:#f6f7f9;
}