html,
body,
#page,
#content,
main,
article {
  overflow: visible !important;
}

#services-area {
  padding: 120px 0 100px 0; /* Padding bawah disesuaikan karena tidak ada sticky stacking */
  background: #f8fafc;
  color: #333333;
  position: relative;
}

#services-area .container-270 {
  max-width: 100%;
  padding-left: 270px;
  padding-right: 270px;
  margin: 0 auto;
  box-sizing: border-box;
  background: #f8fafc;
}

/* LAYOUT HEADER DUA KOLOM - Tanpa Animasi */
.header-flex-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0px;
  margin-bottom: 80px;
  max-width: 100% !important;
}
.header-left {
  flex: 0 0 48%;
}
.header-right {
  flex: 0 0 48%;
}

/* KONFIGURASI HEADER - Statis (Opacity 1 & Transform 0) */
.animate-left,
.animate-right {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  will-change: auto;
}

.section-badge {
  font-size: var(--fs-section-title);
  color: #0f172a !important;
  font-weight: var(--fw-extrabold);
  margin-bottom: 0 !important;
  letter-spacing: -1.5px !important;
  line-height: 1.1;
  max-width: 100%;
}
.section-description-text {
  font-size: var(--fs-section-desc);
  line-height: 1.6;
  color: #64748b;
  margin: 0;
  position: relative;
  max-width: 100%;
}

/* SERVICE ITEM - Statis (Bukan Sticky lagi) */
.service-layer-item {
  background: #f8fafc;
  position: relative !important; /* Diubah dari sticky agar tidak menumpuk */
  border-top: 2px dashed #d9d9d9;
  top: auto !important;
  overflow: hidden;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* DEKORASI & VISUAL */
.layer-background-decoration {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.layer-dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(0, 0, 0, 0.08) 1.5px,
    transparent 1.5px
  );
  background-size: 30px 30px;
}

.layer-visual-bg {
  position: absolute;
  background: #f8fafc;
  padding-top: 10px;
  top: 0;
  right: 10px;
  width: 80%;
  height: 80%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
  /* Animasi & Transition dihapus */
  transform: none !important;
  transition: none !important;
}

.floating-wrapper {
  width: 45%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 2;
  padding-right: 1%;
  animation: none !important; /* Efek melayang dihapus */
}

.parallax-img {
  width: 400px;
  height: 400px;
  object-fit: contain;
  object-position: right center;
  opacity: 0.9;
}

.media-overlay-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(90deg, #f8fafc 30%, transparent 85%);
}

.layer-content-wrapper {
  padding: 60px 0 80px 0; /* Padding disesuaikan */
  position: relative;
  z-index: 10;
}

.empty-space {
  display: none; /* Hilangkan ruang kosong karena sticky sudah tidak aktif */
}

.service-main-heading {
  font-size: var(--fs-content-title);
  font-weight: var(--fw-bold);
  margin: 0 !important;
}
.service-text {
  font-size: var(--fs-content-desc);
  color: #333333 !important;
  margin: 30px 0 40px 0 !important;
  max-width: 600px !important;
  line-height: 1.6;
}

/* Tombol (Tetap mempertahankan hover effect karena fungsional) */
.btn-primary-services {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 220px !important;
  height: 48px !important;
  border: 1px solid #000 !important;
  background: transparent !important;
  color: #000 !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  font-size: var(--fs-cta);
  font-weight: var(--fw-semibold);
  padding: 0 20px !important;
  position: relative !important;
  overflow: hidden !important;
  z-index: 1 !important;
}

/* Responsive */
@media (max-width: 1200px) {
  #services-area .container-270 {
    padding-left: 120px;
    padding-right: 120px;
  }
}

@media (max-width: 991px) {
  #services-area .container-270 {
    padding-left: 24px;
    padding-right: 24px;
  }
  .layer-visual-bg {
    width: 100% !important;
    right: 0 !important;
    justify-content: center !important;
    background: transparent !important;
    opacity: 0.15;
  }
  .media-overlay-mask {
    display: none !important;
  }
  .parallax-img {
    width: 280px !important;
    height: auto !important;
  }
  .service-layer-item {
    position: relative !important;
    top: auto !important;
  }
}
