/* =============================================
   HOW WE WORK + PICK YOUR MOVE – lastsections.css
   Spesifik untuk services.php
   ============================================= */

/* =============================================
   HOW WE WORK
   ============================================= */

.howwework {
  background-color: #1a1a1a;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  padding: 70px 0 80px;
  position: relative;
}

.howwework::before {
  display: none;
}

.howwework__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* White card — overflow visible supaya stripe & icon bisa keluar */
.howwework__card {
  background: #fff;
  border-radius: 24px;
  overflow: visible;
  position: relative;
  padding-top: 50px;   /* ← card putih menyembul di atas stripe */
  padding-bottom: 10px;  
}

/* Lime stripe — overflow visible, keluar kiri kanan card */
.howwework__stripe {
  position: absolute;
  left: 0;
  right: 0;
  top: 30%;           /* sesuaikan posisi vertikalnya */
  transform: translateY(-50%);
  height: 90px;
  background: var(--lime);
  display: flex;
  align-items: center;
  padding: 0 calc((100vw - var(--container)) / 2 + 85px);
  z-index: 2;
  overflow: visible;
}

/* Icon circle pink */
.howwework__icon {
  margin-right:50px;  
  width: 180px;  
}



/* Teks per step */
.howwework__texts {
  display: flex;
  padding: 120px 48px 48px;
  gap: 0;
}

.howwework__text {
  flex: 1;
  padding-right: 32px;
  text-align: center;
}

.howwework__title {
  font-family: 'Poppins', sans-serif;
  font-size: 25px;
  font-weight: 800;
  color: var(--purple);
  margin-bottom: 12px;
}

.howwework__desc {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  line-height: 1.2;
}

/* =============================================
   PICK YOUR MOVE CTA
   ============================================= */

.pickurmove {
  background: var(--pink);
  padding: 50px 0 50px;
  text-align: center;
}

.pickurmove__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.pickurmove__title {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 0.9;
}

.pickurmove__title span {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 72px;
  letter-spacing: -1px;
}

.pickurmove__title--white { color: #ffffff; }
.pickurmove__title--black { color: #111111; }

.pickurmove__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.pickurmove__buttons .btn {
  font-size: 20px;
  padding: 14px 40px;
  border-radius: 40px;
}

/* Mobile texts — default hidden */
.howwework__texts-mobile { display: none; }

/* Lime line mobile — default hidden */
.howwework::before { display: none; }

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

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

  /* HOW WE WORK */
  .howwework {
    padding: 50px 0 60px;
    position: relative;
  }

  /* Garis lime vertikal — hanya mobile */
  .howwework::before {
    content: '';
    display: block;
    position: absolute;
    left: 55px;
    top: 0;
    bottom: 0;
    width: 40px;
    background: var(--lime);
    z-index: 1;
  }

  .howwework__inner { padding: 0 20px; }

  .howwework__card {
    padding: 32px 24px;
    border-radius: 20px;
    overflow: visible;
    position: relative;
  }

  /* Sembunyikan desktop stripe & texts */
  .howwework__stripe { display: none; }
  .howwework__texts  { display: none; }

  /* Tampilkan mobile texts */
  .howwework__texts-mobile {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  /* Setiap row: icon kiri + teks kanan */
  .howwework__text-mobile {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    position: relative;
    z-index: 2;
  }

  .howwework__icon-mobile {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    object-fit: contain;
  }

  .howwework__text-mobile .howwework__title {
    font-size: 18px;
    margin-bottom: 4px;
    text-align: left;
  }

  .howwework__text-mobile .howwework__desc {
    font-size: 14px;
    text-align: left;
  }

  /* PICK YOUR MOVE */
  .pickurmove { padding: 40px 0; }
  .pickurmove__title span { font-size: 44px; }
  .pickurmove__buttons .btn { font-size: 16px; padding: 12px 28px; }
}

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

  .howwework__icon-mobile {
    width: 85px;
    height: 85px;
	 margin-left: -10px;
  }

  .howwework__text-mobile { gap: 12px; }

  .howwework__text-mobile .howwework__title { font-size: 16px; }
  .howwework__text-mobile .howwework__desc  { font-size: 13px; }

  .pickurmove__title span { font-size: 34px; }

  .pickurmove__buttons {
    flex-direction: row;  /* ← ganti dari column ke row */
    flex-wrap: wrap;      /* ← supaya tidak overflow kalau sempit */
    justify-content: center;
    gap: 10px;
  }

  .pickurmove__buttons .btn {
    width: auto;
    font-size: 15px;
  }
}
