/* ===== SERVICES PAGE SPECIFIC STYLES ===== */

/* Services Intro */
.services-intro-image {
  position: relative;
}

.services-intro-image::before {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  border-radius: var(--border-radius-lg);
  z-index: -1;
  opacity: 0.1;
}

/* Service Cards */
.service-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--box-shadow);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-lg);
}

.service-card:hover::before {
  width: 6px;
}

.service-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 102, 0, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.service-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark);
}

.service-features {
  margin: 1.5rem 0;
}

.service-features li {
  position: relative;
  padding-left: 0;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.service-features li strong {
  color: var(--primary);
}

.service-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.benefit-badge {
  background: rgba(255, 102, 0, 0.1);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Process Steps */
.process-steps {
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 30px;
  top: 80px;
  bottom: -3rem;
  width: 2px;
  background: var(--gray-light);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 2rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.step-content {
  flex: 1;
  padding-top: 0.5rem;
}

.step-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

/* Case Studies */
.case-study-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
  height: 100%;
}

.case-study-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-lg);
}

.case-study-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-light);
}

.company-logo {
  width: 60px;
  height: 60px;
  background: var(--gray-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.company-info h5 {
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
}

.company-info span {
  color: var(--gray);
  font-size: 0.875rem;
}

.case-study-content p {
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.case-study-results {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.result-item {
  display: flex;
  flex-direction: column;
}

.result-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.result-label {
  font-size: 0.8rem;
  color: var(--gray);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .service-card {
    padding: 2rem;
  }
  
  .process-step {
    flex-direction: column;
    text-align: center;
  }
  
  .step-number {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .process-step:not(:last-child)::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 767.98px) {
  .service-card {
    padding: 1.5rem;
  }
  
  .case-study-card {
    padding: 1.5rem;
  }
  
  .case-study-results {
    flex-direction: column;
    gap: 1rem;
  }
  
  .service-benefits {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}