/* Page-specific styles for #services-page */

body.services-page .page-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, var(--surface) 0%, white 100%);
  border-bottom: 1px solid var(--border);
}

/* Split section */
body.services-page .split { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 80px; 
  margin: 100px auto; 
  align-items: center; 
}

body.services-page .split-media {
  position: relative;
}

body.services-page .split-media img { 
  width: 100%; 
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover; 
  border-radius: 24px; 
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

body.services-page .split-media::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  background: var(--gradient-1);
  border-radius: 24px;
  opacity: 0.8;
  z-index: -1;
}

body.services-page .split-copy h2 { 
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 42px);
  margin: 0 0 20px;
  color: var(--text);
  white-space: nowrap;
}

body.services-page .split-copy p {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
}

body.services-page .checklist {
  list-style: none;
  padding: 0;
}

body.services-page .checklist li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: var(--text);
  font-size: 16px;
}

body.services-page .checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 12px;
  width: 20px;
  height: 20px;
  background: var(--gradient-1);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

/* Intensive Program Highlight */
body.services-page .intensive-program-highlight {
  padding: 60px 0 80px;
  background: white;
}

body.services-page .intensive-card {
  background: linear-gradient(135deg, rgba(0,184,148,0.03) 0%, rgba(253,203,110,0.03) 100%);
  border: 2px solid var(--primary);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

body.services-page .intensive-badge {
  display: inline-block;
  background: var(--gradient-1);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

body.services-page .intensive-card h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 42px);
  margin: 0 0 12px;
  color: var(--text);
}

body.services-page .intensive-tagline {
  font-size: 20px;
  color: var(--primary);
  font-weight: 600;
  margin: 0 0 20px;
}

body.services-page .intensive-description {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0 0 40px;
  max-width: 900px;
}

body.services-page .intensive-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

body.services-page .intensive-feature h4 {
  font-size: 18px;
  color: var(--text);
  margin: 0 0 16px;
}

body.services-page .intensive-feature ul {
  list-style: none;
  padding: 0;
}

body.services-page .intensive-feature li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  color: var(--text-light);
  line-height: 1.6;
}

body.services-page .intensive-feature li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  width: 18px;
  height: 18px;
  background: var(--gradient-1);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
}

body.services-page .intensive-cta {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

body.services-page .hero-content-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

body.services-page .page-label {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

body.services-page .page-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5vw, 52px);
  margin: 0 0 16px;
  color: var(--text);
}

body.services-page .hero-subtitle {
  font-size: 20px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Main Services */
body.services-page .services-main {
  padding: 80px 0;
}

body.services-page .services-grid-main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

body.services-page .service-card-large {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

body.services-page .service-card-large:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

body.services-page .service-icon-large {
  width: 80px;
  height: 80px;
  background: var(--gradient-warm);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

body.services-page .service-icon-large svg {
  width: 40px;
  height: 40px;
  color: var(--primary-dark);
}

body.services-page .service-card-large h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  margin: 0 0 16px;
  color: var(--text);
}

body.services-page .service-card-large > p {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 32px;
}

body.services-page .service-features {
  margin-bottom: 32px;
}

body.services-page .service-features h4 {
  font-size: 18px;
  color: var(--text);
  margin: 0 0 16px;
}

body.services-page .service-features ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 12px;
}

body.services-page .service-features li {
  padding-left: 28px;
  position: relative;
  color: var(--text-light);
  line-height: 1.6;
}

body.services-page .service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--gradient-1);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

body.services-page .service-methods h4 {
  font-size: 18px;
  color: var(--text);
  margin: 0 0 16px;
}

body.services-page .method-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body.services-page .method-tag {
  display: inline-block;
  background: var(--surface);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--border);
}

/* Additional Services */
body.services-page .additional-services {
  padding: 80px 0;
  background: var(--surface);
}

body.services-page .additional-services h2 {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 42px);
  margin: 0 0 48px;
  color: var(--text);
}

body.services-page .services-grid-secondary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

body.services-page .service-card-secondary {
  background: white;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

body.services-page .service-card-secondary:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

body.services-page .service-icon-secondary {
  width: 64px;
  height: 64px;
  background: var(--gradient-warm);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

body.services-page .service-icon-secondary svg {
  width: 32px;
  height: 32px;
  color: var(--primary-dark);
}

body.services-page .service-card-secondary h3 {
  font-size: 22px;
  margin: 0 0 12px;
  color: var(--text);
}

body.services-page .service-card-secondary p {
  color: var(--text-light);
  line-height: 1.6;
}

/* CTA Section */
body.services-page .service-cta {
  padding: 80px 0;
}

body.services-page .cta-card-large {
  background: var(--gradient-warm);
  border-radius: 24px;
  padding: 60px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

body.services-page .cta-card-large h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 42px);
  margin: 0 0 16px;
  color: var(--text);
}

body.services-page .cta-card-large p {
  font-size: 20px;
  color: var(--text-light);
  margin: 0 0 32px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  body.services-page .intensive-card {
    padding: 32px 24px;
  }
  
  body.services-page .split { 
    grid-template-columns: 1fr; 
    gap: 40px; 
    margin: 60px auto; 
  }
  
  body.services-page .split-media::before {
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
  }
  
  body.services-page .intensive-features {
    grid-template-columns: 1fr;
  }
  
  body.services-page .services-grid-main {
    grid-template-columns: 1fr;
  }
  
  body.services-page .service-card-large {
    padding: 32px 24px;
  }
  
  body.services-page .service-features ul {
    grid-template-columns: 1fr;
  }
  
  body.services-page .services-grid-secondary {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  body.services-page .service-card-secondary {
    padding: 24px 20px;
  }
  
  body.services-page .cta-card-large {
    padding: 40px 24px;
  }
}