/* ===================================
   SERVICES PAGE STYLES
   =================================== */

.page-hero {
  padding: var(--space-2xl) 0 var(--space-xl);
  background: linear-gradient(135deg, var(--forest-900) 0%, var(--forest-800) 100%);
  color: var(--cream-100);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,0.02) 2px, rgba(255,255,255,0.02) 4px),
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.02) 2px, rgba(255,255,255,0.02) 4px);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero .section-label {
  color: var(--sage-400);
}

.page-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--cream-100);
  margin-bottom: var(--space-md);
  max-width: 100%;
}

.page-subtitle {
  font-size: 1.25rem;
  color: var(--cream-200);
  max-width: 60ch;
  margin: 0 auto;
}

/* Service Detail Sections */
.services-detail {
  padding: var(--space-2xl) 0;
  background: var(--cream-100);
}

.services-detail.alt {
  background: var(--cream-200);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.services-detail.alt .service-detail-grid {
  direction: ltr;
}

.services-detail.alt .service-detail-content {
  order: 2;
}

.services-detail.alt .service-detail-image {
  order: 1;
}

.service-badge {
  width: 48px;
  height: 48px;
  background: var(--forest-900);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.service-badge svg {
  width: 28px;
  height: 28px;
  color: var(--cream-100);
}

.service-detail-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-md);
  color: var(--forest-900);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.service-detail-content .lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--forest-700);
  margin-bottom: var(--space-md);
  line-height: 1.5;
}

.service-detail-content p {
  color: var(--charcoal-800);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.service-features {
  list-style: none;
  margin-bottom: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.service-features svg {
  width: 24px;
  height: 24px;
  color: var(--forest-700);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-features span {
  font-weight: 500;
  color: var(--charcoal-900);
}

.service-detail-image {
  position: relative;
  height: 500px;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  border: 4px solid var(--charcoal-900);
  box-shadow: var(--shadow-brutal);
}

@media (max-width: 1024px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .services-detail.alt .service-detail-content {
    order: 1;
  }
  
  .services-detail.alt .service-detail-image {
    order: 2;
  }
  
  .service-detail-image {
    height: 400px;
  }
}

/* Additional Services Grid */
.additional-services {
  padding: var(--space-2xl) 0;
  background: var(--forest-900);
  color: var(--cream-100);
}

.additional-services .section-label {
  color: var(--sage-400);
}

.additional-services .section-title {
  color: var(--cream-100);
}

.additional-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.additional-card {
  background: var(--forest-800);
  padding: var(--space-lg);
  border-radius: 8px;
  border: 2px solid var(--forest-700);
  transition: all var(--transition-base);
}

.additional-card:hover {
  transform: translateY(-4px);
  border-color: var(--sage-600);
  box-shadow: var(--shadow-lg);
}

.additional-card svg {
  width: 40px;
  height: 40px;
  color: var(--sage-400);
  margin-bottom: var(--space-md);
}

.additional-card h3 {
  font-size: 1.5rem;
  color: var(--cream-100);
  margin-bottom: var(--space-sm);
}

.additional-card p {
  color: var(--cream-200);
  line-height: 1.6;
}
