@charset "UTF-8";

/* ========================================
   GREEN GARDEN - Service Page Styles
   ======================================== */

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--bg-white);
}

.cta-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-outline-white {
  background: transparent;
  color: var(--bg-white);
  border: 2px solid var(--bg-white);
}

.btn-outline-white:hover {
  background: var(--bg-white);
  color: var(--primary-color);
}

/* Service Detail */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail.reverse {
  direction: rtl;
}

.service-detail.reverse > * {
  direction: ltr;
}

.service-detail-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-detail-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.service-detail-content {
  position: relative;
}

.service-number {
  font-family: var(--font-family-en);
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary-pale);
  line-height: 1;
  margin-bottom: 10px;
}

.service-detail-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 15px;
}

.service-lead {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 20px;
}

.service-detail-content p {
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 15px;
}

.service-features {
  margin-top: 25px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--text-color);
}

.service-features li i {
  color: var(--primary-color);
  font-size: 0.875rem;
}

/* Flow Section */
.flow-list {
  max-width: 800px;
  margin: 0 auto;
}

.flow-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 30px 0;
  position: relative;
}

.flow-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 25px;
  top: 80px;
  width: 2px;
  height: calc(100% - 50px);
  background: var(--primary-light);
}

.flow-number {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-en);
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}

.flow-content h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 10px;
}

.flow-content p {
  color: var(--text-light);
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .service-detail {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 0;
  }

  .service-detail.reverse {
    direction: ltr;
  }

  .service-detail-image img {
    height: 250px;
  }

  .service-number {
    font-size: 3rem;
  }

  .service-detail-content h3 {
    font-size: 1.5rem;
  }

  .flow-item {
    gap: 15px;
  }

  .flow-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .flow-item:not(:last-child)::after {
    left: 20px;
    top: 65px;
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}
