/* Location landing page styles */

.location-breadcrumbs {
  margin-top: 80px;
  padding: 10px 0;
  font-size: 0.9rem;
}

.location-breadcrumbs a {
  color: var(--fun-text-dark);
  text-decoration: none;
}

.location-breadcrumbs a:hover {
  color: var(--fun-accent-dark);
}

.location-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.location-services-grid a {
  display: block;
  padding: 14px 16px;
  background: #f5f5f5;
  border-radius: 8px;
  color: #222;
  text-decoration: none;
  font-weight: 600;
  border-left: 4px solid var(--cta-bg, #b5281f);
  transition: background 0.2s;
}

.location-services-grid a:hover {
  background: #eee;
  color: var(--cta-bg, #b5281f);
}

.location-neighborhoods {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
}

.location-neighborhoods li {
  padding: 8px 12px;
  background: #f9f9f9;
  border-radius: 6px;
  color: #333;
}

.location-neighborhoods li i {
  color: var(--cta-bg, #b5281f);
  margin-right: 8px;
}

.location-faq {
  margin: 30px 0;
}

.location-faq-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.location-faq-item h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.location-gmb {
  margin: 40px 0 20px;
  padding: 30px 24px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 12px;
  color: #fff;
  text-align: center;
}

.location-gmb h2 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.location-gmb p {
  color: #e0e0e0;
  margin-bottom: 16px;
}

.location-gmb .gmb-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.location-gmb .gmb-btn {
  background-color: #4285f4;
}

.location-gmb .gmb-btn:hover {
  background-color: #3367d6;
}

.location-gmb .gmb-nap {
  font-size: 0.9rem;
  color: #ccc;
}

.location-gmb .gmb-nap a {
  color: var(--cta-bg, #b5281f);
}

.location-other-cities {
  margin-top: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
}

.location-other-cities ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.location-other-cities a {
  color: var(--cta-bg, #b5281f);
  font-weight: 600;
}

@media (max-width: 768px) {
  .content-area {
    grid-template-columns: 1fr;
  }

  .main-content {
    padding-right: 0;
  }
}