


.locations-hero-section {
  padding: 120px 20px 300px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.locations-hero-section h1 {
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  margin-bottom: 20px;
  font-size: 3.5rem;
  line-height: 1.2;
}

.locations-hero-section p {
  color: var(--tertiary-500);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}


.locations-content-wrapper {
  padding-top: 10px;
  position: relative;
  z-index: 2;
}


.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.city-card {
  background: rgba(7, 51, 171, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 30px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  text-decoration: none !important;
  display: block;
}

.city-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(7, 51, 171, 0.5); 
}


.city-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(5, 51, 171, 0.3);
}

.city-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}


.city-title {
  color: var(--primary-900);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: "DM Sans", sans-serif;
}

.city-state {
  color: var(--primary-600);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-weight: 500;
}


.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.service-tag {
  background: var(--primary-900);
  color: var(--white);
  border: 1px solid rgba(7, 51, 171, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.city-card:hover .service-tag {
  background: rgba(7, 51, 171, 0.2);
  color: var(--primary-900);
}

.loading-spinner {
  text-align: center;
  padding: 100px;
  color: var(--tertiary-500);
  font-size: 1.2rem;
  grid-column: 1 / -1;
}


@media (max-width: 768px) {
  .locations-hero-section {
    padding: 100px 20px 40px;
  }

  .locations-hero-section h1 {
    font-size: 2.5rem;
  }

  .cities-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
