/* ========== CITY PAGE STYLES ========== */

/* Compact trust bar for city pages */
.trust-bar-compact {
  background: var(--light);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.trust-bar-compact .trust-items {
  gap: 32px;
}

.trust-bar-compact .trust-item {
  font-size: 14px;
}

.trust-bar-compact .trust-icon {
  width: 36px;
  height: 36px;
  font-size: 18px;
  border-radius: 10px;
}

/* Neighborhoods grid - card style */
.neighborhoods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.neighborhood-item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 20px 24px;
  text-align: center;
  font-weight: 600;
  color: white;
  font-size: 15px;
  transition: all 0.2s ease;
}

.neighborhood-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* Teal Also Serving section */
.also-serving-teal {
  background: linear-gradient(135deg, var(--teal-primary) 0%, var(--teal-dark) 100%);
  padding: 60px 0;
}

.also-serving-teal .also-serving-content {
  text-align: center;
}

.also-serving-teal h3 {
  color: var(--navy);
  font-size: 28px;
  margin-bottom: 24px;
}

.also-serving-teal .city-links-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.also-serving-teal .city-link-card {
  background: white;
  border-radius: 12px;
  padding: 20px 24px;
  min-width: 140px;
  text-align: center;
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.also-serving-teal .city-link-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* Responsive adjustments for city page grids */
@media (max-width: 900px) {
  .neighborhoods-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .neighborhoods-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .neighborhood-item {
    padding: 16px 12px;
    font-size: 14px;
  }

  .trust-bar-compact .trust-items {
    gap: 16px;
  }

  .trust-bar-compact .trust-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .also-serving-teal .city-link-card {
    min-width: 120px;
    padding: 16px 20px;
  }
}
