/* Service Detail Page Styles */

.service-detail-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  color: var(--first-color);
}

.service-hero {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

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

.breadcrumb a:hover {
  opacity: 0.7;
}

.separator {
  color: var(--first-color);
  opacity: 0.6;
}

.current {
  font-weight: 500;
}

.service-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--first-color) 0%, rgba(0, 0, 0, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.service-content {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  padding: 3rem;
}

.main-content h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--first-color);
}

.main-content h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 2.5rem 0 1rem;
  color: var(--first-color);
}

.main-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--first-color);
}

.main-content p {
  line-height: 1.7;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0;
}

.feature-item {
  background: rgba(0, 0, 0, 0.03);
  padding: 1.8rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.feature-item h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.feature-item p {
  margin-bottom: 0;
  font-size: 0.95rem;
  opacity: 0.8;
}

.outcomes-section {
  background: rgba(0, 0, 0, 0.03);
  padding: 2rem;
  border-radius: 16px;
  margin-top: 2.5rem;
}

.outcome-list {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.outcome-list li {
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  opacity: 0.9;
}

.outcome-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color, #4CAF50);
  font-weight: bold;
  font-size: 1.1rem;
}

/* Process Steps */
.process-steps {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.process-step {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 12px;
  border-left: 3px solid var(--accent-color, rgba(0, 0, 0, 0.2));
}

.decision-framework p, h4 {
  margin-bottom: 0 !important;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--accent-color, rgba(0, 0, 0, 0.1));
  border-radius: 50%;
  font-weight: bold;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.step-content h4 {
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.step-content p {
  margin-bottom: 0;
  font-size: 0.95rem;
  opacity: 0.8;
}

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cta-box {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  text-align: center;
}

.cta-box h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.cta-box p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-block;
  background: var(--first-color);
  color: var(--second-color);
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.related-services {
  background: rgba(0, 0, 0, 0.03);
  padding: 1.5rem;
  border-radius: 12px;
}

.related-services h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.related-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.related-services li {
  margin-bottom: 0.5rem;
}

.related-services a {
  color: var(--first-color);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  font-size: 0.95rem;
}

.related-services a:hover {
  opacity: 1;
}

/* Additional sections */
.tools-grid,
.principles-grid,
.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.tool-category,
.principle,
.scenario {
  background: rgba(0, 0, 0, 0.03);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.tool-category h4,
.principle h4,
.scenario h4 {
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.tool-category p,
.principle p,
.scenario p {
  margin-bottom: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Framework sections */
.framework-section {
  background: rgba(0, 0, 0, 0.03);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--accent-color, rgba(0, 0, 0, 0.2));
}

.framework-section h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.framework-section ul {
  margin: 0;
  padding-left: 1.5rem;
}

.framework-section li {
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

/* Special note boxes */
.tech-note,
.founder-note,
.decision-note {
  background: rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 1.5rem;
}

.tech-note h4,
.founder-note h4,
.decision-note h4 {
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.tech-note p,
.founder-note p,
.decision-note p {
  margin-bottom: 0;
  font-size: 0.9rem;
  opacity: 0.8;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
  
  .service-hero h1 {
    font-size: 2.2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .tools-grid,
  .principles-grid,
  .scenarios-grid {
    grid-template-columns: 1fr;
  }
  
  .process-step {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .service-detail-container {
    padding: 1rem;
  }
  
  .breadcrumb {
    font-size: 0.8rem;
  }
  
  .service-hero h1 {
    font-size: 1.8rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
}
