/* ==========================================================================
   Service Page Shared Styles
   ========================================================================== */

/* Hero Section */
.service-hero {
  padding: 12rem 0 8rem;
  background: var(--gradient-hero);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.breadcrumb {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--text-primary);
}

.breadcrumb i {
  font-size: 0.7rem;
}

.service-hero h1 {
  max-width: 900px;
  margin: 0 auto 1.5rem;
}

.service-hero .subheading {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.service-hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Section Shared */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

/* What Is Section */
.what-is-section {
  background: var(--bg-secondary);
}

.what-is-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.what-is-image {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  font-size: 5rem;
  color: var(--accent-blue);
}

.what-is-content h2 {
  margin-bottom: 1.5rem;
}

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

.feature-card {
  padding: 2rem;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--accent-cyan);
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

/* Process Timeline */
.process-section {
  background: var(--bg-secondary);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  position: relative;
}

.process-step {
  position: relative;
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--bg-card);
  border: 1px solid var(--accent-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.process-step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* Why Choose Us */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Stats Section */
.stats-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-family: 'JetBrains Mono', monospace;
  text-shadow: 0 0 20px var(--accent-glow);
}

.stat-item p {
  color: var(--accent-cyan);
  font-weight: 500;
  margin: 0;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 1rem;
  background: var(--bg-card);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Related Services */
.related-services {
  background: var(--bg-secondary);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 8rem 0;
  background: linear-gradient(rgba(5,5,8,0.8), rgba(5,5,8,0.8)), url('../assets/images/cta-bg.jpg') center/cover;
  border-top: 1px solid var(--border);
}

/* Responsive */
@media (max-width: 768px) {
  .what-is-grid, .why-choose-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .related-grid {
    grid-template-columns: 1fr;
  }
  
  .service-hero-ctas {
    flex-direction: column;
  }
}
