
/* Hero section */
.hero-section {
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  color: white;
  padding: 80px 0;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  line-height: 1.2;
}

.hero-features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 950px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 500;
}

.feature-item svg {
  color: #22c55e;
}

/* Main list section */
.list-section {
  padding: 3rem 0;
  background: #f9fafb;
}

/* Filters container */
.filters-container {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.filters-form {
  display: flex;
  align-items: end;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 180px;
}

.filter-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
}

.filter-select {
  background: #f9fafb;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1.25em 1.25em;
  padding-right: 2.5rem;
}

.filter-select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.filter-select:hover {
  border-color: #9ca3af;
}

.filter-button {
  background: #3b82f6;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
  height: fit-content;
}

.filter-button:hover {
  background: #2563eb;
}

.filter-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

/* Address list */
.address-list {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.address-item {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: none;
  transition: background-color 0.2s ease;
}

.address-item:hover {
  background-color: #f9fafb;
}

.address-item:last-child {
  border-bottom: none;
}

.address-content {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr 1fr 1fr 1fr;
  gap: 1.5rem;
  padding: 1.5rem;
  align-items: start;
}

.address-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.field-label {
  font-size: 0.75rem;
  color: #6b7280;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.field-value {
  font-weight: 600;
  color: #374151;
  font-size: 0.875rem;
}

.field-value-primary {
  font-weight: 700;
  color: #3b82f6;
  font-size: 1.25rem;
}

.field-subtitle {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

.service-icons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.service-icon {
  background: #f3f4f6;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
}

.price-value {
  font-weight: 700;
  color: #374151;
  font-size: 1.125rem;
}

.address-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.btn-primary {
  background: #3b82f6;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background: #2563eb;
  color: white;
  text-decoration: none;
}

.btn-secondary {
  color: #3b82f6;
  font-size: 0.75rem;
  text-decoration: none;
  text-align: center;
  padding: 0.25rem;
}

.btn-secondary:hover {
  text-decoration: underline;
}

/* Responsive design */
@media (max-width: 1024px) {
  .address-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .filters-bar {
    flex-direction: column;
    align-items: stretch;
  }
  
  .filters-left {
    justify-content: center;
  }
  
  .filters-right {
    text-align: center;
  }
  
  .address-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .address-actions {
    flex-direction: row;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 2rem;
  }
}
