/**
 * Home Page - Auto-loaded CSS
 * Öne çıkan ilanlar için stiller
 */

/* Listing kartı resim alanı - sabit aspect ratio */
.property-listing .listing-img {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 66.67%; /* 3:2 aspect ratio */
  overflow: hidden;
  background: #f0f0f0;
}

.property-listing .listing-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Kategori bilgisi - başlık altı, konum üstü */
.property-listing .listing-category {
  font-size: 13px;
  color: #F18600;
  margin-bottom: 5px;
}

.property-listing .listing-category i {
  margin-right: 5px;
}

/* CTA / Danışman Ol bölümü */
.cta-area {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.cta-content {
  background: #fff;
  padding: 50px 40px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.cta-title {
  color: #333;
  font-weight: 700;
}

.cta-text {
  color: #666;
  font-size: 16px;
  line-height: 1.7;
}

.cta-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.cta-feature-item:hover {
  background: #e9ecef;
  transform: translateY(-3px);
}

.cta-feature-item i {
  font-size: 28px;
  color: var(--theme-color);
  margin-bottom: 10px;
}

.cta-feature-item span {
  font-weight: 500;
  color: #333;
  font-size: 14px;
}
