/* ================================
   SERVICE PAGE - CLEAN TYPOGRAPHY
   DOAR 4 MĂRIMI DE FONT!
   ================================ */

/* === CONTAINER === */
.service-page {
  padding: 6rem 2rem 4rem;
  min-height: 100vh;
}

.service-container {
  max-width: 800px;
  margin: 0 auto;
}

/* === BACK LINK === */
.service-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem; /* SIZE 1 */
  color: var(--color-text-secondary);
  text-decoration: none;
  margin-bottom: 3rem;
  transition: all 0.3s ease;
}

.service-back-link:hover {
  color: var(--color-sage-green);
  transform: translateX(-4px);
}

/* === IMAGE === */
.service-image {
  margin-bottom: 3rem;
}

.service-image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
}

/* === HEADER === */
.service-header {
  text-align: center;
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--color-border);
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; /* SIZE 2 - TITLU PRINCIPAL */
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text-primary);
  margin-bottom: 2rem;
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.service-price-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-price-old {
  font-size: 1.5rem; /* SIZE 3 - SECONDARY */
  font-weight: 600;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.service-price-new {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; /* SIZE 4 - PREȚ MARE */
  font-weight: 700;
  color: var(--color-sage-green);
}

.service-duration {
  font-size: 0.9rem; /* SIZE 1 */
  color: var(--color-text-muted);
  font-weight: 500;
}

.service-lead {
  font-size: 1.15rem; /* SIZE 3 - LEAD TEXT */
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
  max-width: 65ch;
  margin-left: auto;
  margin-right: auto;
}

.service-cta-primary {
  display: inline-block;
  background: var(--color-sage-green);
  color: white;
  padding: 1.25rem 3rem;
  border-radius: 999px;
  font-size: 1rem; /* SIZE 3 */
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(168, 182, 161, 0.25);
}

.service-cta-primary:hover {
  background: var(--color-deep-sage);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168, 182, 161, 0.35);
}

/* === DESCRIPTION === */
.service-description {
  margin-bottom: 4rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
}

.service-description h2,
.service-description h3,
.service-description h4 {
  font-family: 'Playfair Display', serif;
  color: var(--color-text-primary);
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-description h2 {
  font-size: 2rem; /* SIZE 4 */
}

.service-description h3 {
  font-size: 1.5rem; /* SIZE 3 */
}

.service-description h4 {
  font-size: 1.15rem; /* SIZE 3 */
}

.service-description p {
  font-size: 1rem; /* SIZE 3 - BODY */
  margin-bottom: 1.5rem;
}

.service-description ul {
  margin: 1.5rem 0;
  padding-left: 0;
  list-style: none;
}

.service-description ul li {
  font-size: 1rem; /* SIZE 3 - BODY */
  margin-bottom: 0.75rem;
  line-height: 1.7;
  padding-left: 2rem;
  position: relative;
}

.service-description ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-sage-green);
  font-weight: 700;
  font-size: 1.2rem;
}

.service-description ol {
  margin: 1.5rem 0 1.5rem 2rem;
}

.service-description ol li {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.service-description strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

/* === SECTIONS === */
.service-section {
  margin-bottom: 4rem;
}

.service-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; /* SIZE 4 - SUBTITLE */
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 2rem;
  text-align: center;
}

/* === FAQ === */
.service-faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-question-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.faq-answer-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
}

.faq-answer-text p {
  margin: 0.5rem 0;
}

.faq-answer-text ul {
  margin: 0.75rem 0;
  padding-left: 0;
  list-style: none;
}

.faq-answer-text ul li {
  margin: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
  line-height: 1.6;
}

.faq-answer-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-sage-green);
  font-weight: 700;
  font-size: 1.1rem;
}

.faq-answer-text ol {
  margin: 0.75rem 0;
  padding-left: 1.5rem;
}

.faq-answer-text ol li {
  margin: 0.25rem 0;
  line-height: 1.6;
}

/* === FINAL CTA - EMPATIC === */
.service-final-cta {
  margin-top: 4rem;
  margin-bottom: 2rem;
}

.final-cta-content {
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.final-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.final-cta-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  max-width: 50ch;
  margin: 0 auto 2rem;
}

.service-cta-final {
  display: inline-block;
  background: var(--color-sage-green);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(168, 182, 161, 0.3);
}

.service-cta-final:hover {
  background: var(--color-deep-sage);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(168, 182, 161, 0.4);
  color: white;
}

.final-cta-details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: 1.25rem;
}

.final-cta-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 1.25rem;
  font-style: italic;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .service-page {
    padding: 4rem 1.5rem 3rem;
  }
  
  .service-title {
    font-size: 2rem; /* SIZE 2 mobile */
  }
  
  .service-price-new {
    font-size: 2rem; /* SIZE 4 mobile */
  }
  
  .service-price-old {
    font-size: 1.25rem; /* SIZE 3 mobile */
  }
  
  .service-lead {
    font-size: 1rem; /* SIZE 3 mobile */
  }
  
  .service-section-title {
    font-size: 1.5rem; /* SIZE 4 mobile */
  }
  
  .final-cta-title {
    font-size: 1.5rem; /* SIZE 4 mobile */
  }
  
  .final-cta-price .price-new {
    font-size: 2.5rem; /* SIZE 2 mobile */
  }
  
  .service-cta-primary,
  .service-cta-final {
    width: 100%;
    padding: 1.25rem 2rem;
  }
  
  .final-cta-content {
    padding: 2rem 1.5rem;
  }
}

/* ================================
   TYPOGRAPHY SCALE (DOAR 4 MĂRIMI!)
   ================================
   SIZE 1: 0.9rem  (small text, notes)
   SIZE 2: 3rem    (huge - titluri hero, prețuri)
   SIZE 3: 1-1.15rem (body, lead, subtitluri)
   SIZE 4: 2rem    (section titles)
   ================================ */
