/* Основные стили */
.property-complexes {
  padding: 40px 0;
  font-family: 'Arial', sans-serif;
  background-color: #f9f9f9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.section-title {
  margin-bottom: 15px;
  font-size: 32px;
  color: #222;
}

.section-description {
  margin-bottom: 30px;
  color: #666;
  font-size: 18px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Сетка карточек */
.property-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 0 auto;
  max-width: 1000px;
}

/* Стили карточки */
.property-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  width: calc(50% - 15px);
  max-width: 450px;
  min-width: 300px;
  margin-bottom: 20px;
}

.property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.property-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.property-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.property-card:hover .property-card-image img {
  transform: scale(1.05);
}

.property-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ff6b6b;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}

.property-badge.completed {
  background: #4caf50;
}

.property-card-content {
  padding: 20px;
}

.property-title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
}

.property-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 13px;
  color: #666;
}

.property-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 15px;
  font-size: 14px;
  color: #555;
}

.property-features span::before {
  content: "•";
  margin-right: 5px;
  color: #4a89dc;
}

.property-price {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
  color: #e74c3c;
}

.price-from {
  font-size: 14px;
  font-weight: normal;
  color: #777;
  margin-right: 5px;
}

.property-button {
  display: block;
  text-align: center;
  background: #4a89dc;
  color: white;
  padding: 10px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.property-button:hover {
  background: #3a70c2;
}

/* Адаптивность */
@media (max-width: 768px) {
  .property-card {
    width: 100%;
    max-width: 400px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .section-description {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .property-card-image {
    height: 180px;
  }
  
  .property-card-content {
    padding: 15px;
  }
}