.section.intro {
  margin-top: 0;
  padding: 0;
}

.section.intro h2 {
  margin-top: 0;
  font-size: clamp(20px, 3vw, 32px); /* scalable */
}

.video-section {
  position: relative;
  width: 100%;
  height: 100vh; /* full layar */
  overflow: hidden;
}

.video-section video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover; /* biar penuh layarnya */
  z-index: 1;
}

#muteBtn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 2;
  padding: 10px 16px;
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
}

#unmuteBtn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 2;
  padding: 10px 16px;
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.text-two-column {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap; /* penting biar turun ke bawah kalau sempit */
  padding: 0px 60px;
}

.kiri {
  flex: 1;
  margin-top: 80px;
  min-width: 250px; /* biar nggak mepet banget */
}

.kanan {
  flex: 2;
}

.kanan p,
.text-full-width {
  font-size: clamp(16px, 2.5vw, 24px);
  color: #555;
  line-height: 1.6;
  text-align: justify;
  padding: 80px 60px;
}

/* ---------- RESPONSIVE BREAKPOINTS ---------- */
@media (max-width: 1024px) {
  .section.intro {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .section.intro {
    padding: 0 20px;
  }

  .text-two-column {
    flex-direction: column;
    gap: 30px;
  }

  .kanan, .kiri {
    flex: unset;
    width: 100%; /* ambil full width */
  }

  .section.intro iframe {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .section.intro {
    padding: 0 15px;
  }

  .section.intro iframe {
    height: 220px;
  }

  .kanan p,
  .text-full-width {
    font-size: 16px;
    line-height: 1.5;
  }
}
