/* ===================================
   SERVICE PAGE SPECIFIC STYLES
   =================================== */

/* Service Hero Section */
.service-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.service-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.service-hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.service-hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.service-hero-title .line {
  display: block;
  margin-bottom: 0.5rem;
}

.service-hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--gray-medium);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.service-hero-badges {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Service Includes Section */
.service-includes-section {
  padding: 6rem 0;
  background: var(--white);
}

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

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--duration-fast) var(--ease-out-expo);
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
  animation: icon-float 3s ease-in-out infinite;
}

@keyframes icon-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--gray-dark);
}

.feature-card p {
  color: var(--gray-medium);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Service Why Section */
.service-why-section {
  padding: 6rem 0;
  background: var(--gray-light);
}

.service-content-box {
  max-width: 800px;
  margin: 2rem auto 0;
  background: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--primary);
}

.service-content-box p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--gray-dark);
  margin-bottom: 1.5rem;
}

.service-content-box p:last-child {
  margin-bottom: 0;
}

/* Service Experience Section */
.service-experience-section {
  padding: 6rem 0;
  background: var(--white);
}

/* Service Process Section */
.service-process-section {
  padding: 6rem 0;
  background: var(--gray-light);
}

.process-timeline {
  max-width: 900px;
  margin: 3rem auto 0;
  position: relative;
}

.process-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  align-items: flex-start;
}

.process-step::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 70px;
  width: 2px;
  height: calc(100% + 3rem);
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  z-index: 0;
}

.process-step:last-child::before {
  display: none;
}

.process-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.process-content {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  flex: 1;
  transition: all var(--duration-fast) var(--ease-out-expo);
}

.process-content:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-xl);
}

.process-content h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.process-content p {
  color: var(--gray-medium);
  line-height: 1.6;
}

/* Service FAQ Section */
.service-faq-section {
  padding: 6rem 0;
  background: var(--white);
}

/* Service Page Specific Animations */
.service-page [data-animate] {
  opacity: 0;
}

.service-page [data-animate="fade-up"] {
  transform: translateY(30px);
}

.service-page [data-animate].animated {
  opacity: 1;
  transform: translateY(0);
  transition: opacity var(--duration-slow) var(--ease-out-expo), 
              transform var(--duration-slow) var(--ease-out-expo);
}

/* Responsive Design for Service Pages */
@media (max-width: 768px) {
  .service-hero {
    padding: 8rem 0 4rem;
    min-height: 60vh;
  }

  .service-hero-title {
    font-size: 2rem;
  }

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

  .service-hero-badges {
    flex-direction: column;
    align-items: center;
  }

  .service-hero-badges .badge {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

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

  .service-content-box {
    padding: 2rem;
  }

  .service-content-box p {
    font-size: 1rem;
  }

  .process-step {
    flex-direction: column;
    gap: 1rem;
  }

  .process-step::before {
    left: 30px;
    top: 70px;
  }

  .process-number {
    width: 60px;
    height: 60px;
    font-size: 1.25rem;
  }

  .process-content {
    padding: 1.5rem;
  }

  .process-content h3 {
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  .service-hero {
    padding: 7rem 0 3rem;
  }

  .service-includes-section,
  .service-why-section,
  .service-experience-section,
  .service-process-section,
  .service-faq-section {
    padding: 4rem 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .feature-icon {
    font-size: 2.5rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .feature-card h3 {
    font-size: 1.125rem;
  }

  .service-content-box {
    padding: 1.5rem;
  }
}

/* Dark Theme Support for Service Pages */
[data-theme="dark"] .service-hero-subtitle,
[data-theme="dark"] .feature-card p,
[data-theme="dark"] .service-content-box p,
[data-theme="dark"] .process-content p {
  color: var(--gray-medium);
}

[data-theme="dark"] .feature-card,
[data-theme="dark"] .service-content-box,
[data-theme="dark"] .process-content {
  background: #1e293b;
  color: #f1f5f9;
}

[data-theme="dark"] .feature-card h3,
[data-theme="dark"] .process-content h3 {
  color: #f1f5f9;
}

[data-theme="dark"] .service-content-box {
  border-left-color: var(--primary);
}

/* Blue Theme */
[data-theme="blue"] .process-number,
[data-theme="blue"] .feature-card:hover {
  border-color: var(--primary);
}

[data-theme="blue"] .service-content-box {
  border-left-color: var(--primary);
}

/* Purple Theme */
[data-theme="purple"] .process-number,
[data-theme="purple"] .feature-card:hover {
  border-color: var(--primary);
}

[data-theme="purple"] .service-content-box {
  border-left-color: var(--primary);
}

/* Green Theme */
[data-theme="green"] .process-number,
[data-theme="green"] .feature-card:hover {
  border-color: var(--primary);
}

[data-theme="green"] .service-content-box {
  border-left-color: var(--primary);
}
.seo-text {
  position: absolute;
  left: -9999px;
  height: 1px;
  overflow: hidden;
}
