/* Service Pages Styles */

/* Service Hero */
.service-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, var(--light-purple) 0%, #f8f7fc 100%);
  text-align: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--primary-purple);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--dark-purple);
}

.breadcrumb i {
  color: var(--text-light);
  font-size: 0.7rem;
}

.breadcrumb span {
  color: var(--text-dark);
  font-weight: 600;
}

.service-hero h1 {
  font-size: 3rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Service Content */
.service-content {
  padding: 80px 0;
  background: white;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 3rem;
  align-items: start;
}

.content-section {
  margin-bottom: 3rem;
}

.content-section h2 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.content-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary-purple);
}

.content-section p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-item {
  text-align: center;
  padding: 1.5rem;
  border-radius: 15px;
  background: var(--bg-light);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(139, 95, 191, 0.1);
}

.feature-item i {
  font-size: 2.5rem;
  color: var(--primary-purple);
  margin-bottom: 1rem;
}

.feature-item h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.feature-item p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
}

/* Benefits List */
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.benefits-list li {
  padding: 0.75rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--text-light);
}

.benefits-list i {
  color: var(--primary-purple);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* Sidebar */
.content-sidebar {
  position: sticky;
  top: 100px;
}

.cta-card {
  background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
  color: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(139, 95, 191, 0.3);
}

.cta-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.btn-block {
  width: 100%;
  margin-bottom: 1rem;
}

.info-card {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 15px;
  margin-bottom: 1.5rem;
}

.info-card h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-card h4 i {
  color: var(--primary-purple);
}

.info-card p {
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* Related Services */
.related-services {
  padding: 80px 0;
  background: var(--bg-light);
}

.related-services h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 3rem;
  position: relative;
}

.related-services h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-purple);
}

.related-services .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.related-services .service-card {
  text-decoration: none;
  transition: transform 0.3s ease;
}

.related-services .service-card:hover {
  transform: translateY(-10px);
}

/* Navigation fixes for service pages */
.nav-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--primary-purple);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .content-sidebar {
    position: static;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .service-hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .breadcrumb {
    font-size: 0.8rem;
    flex-wrap: wrap;
  }

  .content-section h2 {
    font-size: 1.5rem;
  }
}
