/* Category & Location Landing Pages Styles */

.category-hero, .location-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  margin-bottom: 3rem;
}

.category-hero h1, .location-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.lead {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.category-hero p, .location-hero p {
  font-size: 1.1rem;
  opacity: 0.95;
}

.category-content, .location-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.category-intro, .location-intro {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 3rem;
}

.category-intro h2, .location-intro h2 {
  color: #333;
  margin-bottom: 1.5rem;
}

.benefits-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.benefits-list li {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.category-description {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

.seo-content {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid #e9ecef;
}

.seo-content h2 {
  color: #333;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.seo-content h3 {
  color: #555;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.seo-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.seo-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.seo-content blockquote {
  background: #f8f9fa;
  border-left: 4px solid #667eea;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
}

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  margin: 4rem 0 2rem 0;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  margin: 0.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: white;
  color: #667eea;
}

.btn-primary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .category-hero h1, .location-hero h1 {
    font-size: 1.8rem;
  }
  
  .lead {
    font-size: 1.1rem;
  }
  
  .benefits-list {
    grid-template-columns: 1fr;
  }
  
  .category-intro, .location-intro {
    padding: 1.5rem;
  }
}




