/* Price Drops - Modern, Image-Forward Design */

/* Hero with property background */
.drops-hero {
  position: relative;
  padding: 80px 0 100px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  overflow: hidden;
}

.drops-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=1600&h=900&fit=crop&auto=format');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  filter: blur(3px);
}

.drops-hero .container {
  position: relative;
  z-index: 1;
}

.drops-hero h1 {
  color: white;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.drops-hero .subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.25rem;
  font-weight: 400;
}

/* Property Card - Image-Forward Layout */
.property-card-new {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: row;
  height: 280px;
}

.property-card-new:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

/* Image Section - 40% width */
.property-card-new__image {
  width: 40%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

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

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

/* Savings Badge on Image */
.property-card-new__savings-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #10b981;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
  font-family: var(--f-mono);
}

/* Content Section - 60% width */
.property-card-new__content {
  width: 60%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Address & Details */
.property-card-new__header {
  margin-bottom: 16px;
}

.property-card-new__postcode {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.property-card-new__address {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.property-card-new__meta {
  display: flex;
  gap: 10px;
}

.property-card-new__meta-item {
  font-size: 0.875rem;
  color: #64748b;
  padding: 4px 12px;
  background: #f1f5f9;
  border-radius: 4px;
  font-weight: 500;
}

/* Price Section */
.property-card-new__price-section {
  margin-bottom: 16px;
}

.property-card-new__current-price {
  font-size: 2.25rem;
  font-weight: 800;
  color: #0f172a;
  font-family: var(--f-mono);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.property-card-new__old-price {
  font-size: 0.9375rem;
  color: #94a3b8;
  text-decoration: line-through;
  margin-bottom: 2px;
}

.property-card-new__sale-date {
  font-size: 0.8125rem;
  color: #cbd5e1;
}

/* Savings Display */
.property-card-new__savings {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #f0fdf4;
  border-left: 4px solid #10b981;
  border-radius: 6px;
  margin-bottom: 16px;
}

.property-card-new__savings-amount {
  font-size: 1.25rem;
  font-weight: 700;
  color: #10b981;
  font-family: var(--f-mono);
}

.property-card-new__savings-percent {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #059669;
}

/* CTA */
.property-card-new__cta {
  display: block;
  text-align: center;
  padding: 12px 24px;
  background: #3b82f6;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s ease;
  font-size: 0.9375rem;
}

.property-card-new__cta:hover {
  background: #2563eb;
  color: white;
}

.property-card-new__added {
  font-size: 0.8125rem;
  color: #94a3b8;
  margin-top: 8px;
  text-align: center;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.stat-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.stat-card__value {
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--f-mono);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-card__value--blue { color: #3b82f6; }
.stat-card__value--green { color: #10b981; }
.stat-card__value--dark { color: #0f172a; }

.stat-card__label {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

/* Grid Layout */
.properties-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .drops-hero h1 {
    font-size: 2rem;
  }

  .drops-hero .subtitle {
    font-size: 1rem;
  }

  .property-card-new {
    flex-direction: column;
    height: auto;
  }

  .property-card-new__image {
    width: 100%;
    height: 240px;
  }

  .property-card-new__content {
    width: 100%;
  }

  .property-card-new__address {
    font-size: 1.25rem;
  }

  .property-card-new__current-price {
    font-size: 1.75rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stat-card__value {
    font-size: 2.5rem;
  }
}

/* Desktop: 2 columns for larger screens */
@media (min-width: 1024px) {
  .properties-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
