/* =============================================
   WHAT WE BRING TO THE TABLE
   ============================================= */

.services-cards {
  padding: 80px 0 60px;
}

/* Header */
.services-cards__header {
  text-align: center;
  margin-bottom: 70px;
}

.services-cards__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 95px;
  line-height: 0.85;
  letter-spacing: 1px;
}

.services-cards__title--black  { color: #111; display: block; }
.services-cards__title--purple { color: var(--purple); display: block; }

/* =============================================
   STICKY CARDS STACK
   ============================================= */

.services-cards__stack {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

/* Wrapper per card — ini yang punya tinggi scroll */
.sc-wrap {
  position: sticky;
  top: 80px; /* jarak dari top viewport saat sticky */
  height: auto;
  margin-bottom: 40px;
}

/* Card itu sendiri */
.sc-card {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  min-height: 340px;
  padding: 40px;
  gap: 32px;
  overflow: hidden;
}

/* Setiap card punya z-index naik supaya menimpa card sebelumnya */
.sc-wrap:nth-child(1) { z-index: 1; }
.sc-wrap:nth-child(2) { z-index: 2; }
.sc-wrap:nth-child(3) { z-index: 3; }
.sc-wrap:nth-child(4) { z-index: 4; }
.sc-wrap:nth-child(5) { z-index: 5; }
.sc-wrap:nth-child(6) { z-index: 6; }

/* Card reverse (teks kiri, foto kanan) */
.sc-card--reverse {
  flex-direction: row-reverse;
}

/* Foto — rounded, ada padding dari card */
.sc-card__photo {
  flex: 0 0 50%;
  border-radius: 14px;
  overflow: hidden;
}

.sc-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.sc-card:hover .sc-card__photo img {
  transform: scale(1.04);
}

/* Konten */
.sc-card__content {
  flex: 1;
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.sc-card__title {
  font-family: 'Poppins', sans-serif;
  font-size: 50px;
  font-weight: 900;
  color: #111;
  line-height: 1.15;
}

.sc-card__desc {
  font-size: 20px;
  font-weight: 600;
  color: #444;
  line-height: 1.2;
}

/* Tags — vertical list dengan custom checkmark bullet */
.sc-card__tags {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 25px;
  margin-bottom: 25px;
  margin-left: 3px;
  list-style: none;
  padding: 0;
}

.sc-card__tags span {
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  padding: 0;
  border-radius: 0;
  border: none;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.sc-card__tags span::before {
  content: '';
  display: inline-block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background-image: url('../images/check.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* CTA Button — pink, full width */
.sc-card__content .btn {
  
  color: #fff;
  width: 100%;
  text-align: center;
  margin-top: 6px;
  font-size: 20px;
  font-weight: 600;
  padding: 14px 20px;
  border-radius: 30px;
}

/* =============================================
   HOW WE WORK & PICK YOUR MOVE
   (placeholder — diisi nanti)
   ============================================= */

.howwework {
  padding: 80px 0;
}

.pickurmove {
  background: #111;
  padding: 80px 0;
}

/* =============================================
   RESPONSIVE
   ============================================= */

/* ===== TABLET 768px ===== */
@media (max-width: 768px) {

  .services-cards { padding: 60px 0 40px; }

  .services-cards__title { font-size: 56px; }
  .services-cards__header { margin-bottom: 40px; }

  /* Hapus sticky — tidak bekerja baik di mobile */
  .sc-wrap {
    position: relative;
    top: auto;
    margin-bottom: 20px;
  }

  .sc-card,
  .sc-card--reverse {
    flex-direction: column;
    padding: 0;
    gap: 0;
    min-height: auto;
  }

  .sc-card__photo {
    flex: none;
    height: 220px;
    border-radius: 14px 14px 0 0;
  }

  .sc-card__content {
    padding: 24px 24px 28px;
    gap: 10px;
  }

  .sc-card__title { font-size: 28px; }
  .sc-card__desc  { font-size: 15px; }
  
	.sc-card__tags {
	  gap: 5px;
	  margin-top: 15px;
	  margin-bottom: 15px;
	}  

  .sc-card__tags span {
    font-size: 11px;
  }

  .sc-card__tags span::before {
    width: 16px;
    height: 16px;
  }

  .sc-card__content .btn {
    font-size: 15px;
    padding: 12px 16px;
  }
}

/* ===== MOBILE 480px ===== */
@media (max-width: 480px) {

  .services-cards { padding: 48px 0 32px; }

  .services-cards__title { font-size: 40px; }

  .sc-card__photo { height: 270px; }

  .sc-card__content { padding: 20px 20px 24px; }

  .sc-card__title { font-size: 24px; }
  .sc-card__desc  { font-size: 14px; }
}
