/* ===== PAGE HERO ===== */
.page-hero {
  position: relative;
  margin-top: var(--nav-height);
  min-height: 360px;
  background: linear-gradient(135deg, var(--green-dark), var(--green)), url('https://images.unsplash.com/photo-1528360983277-13d401cdc186?w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  display: flex;
  align-items: center;
  padding: 80px 0 70px;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(74,82,56,.55), rgba(74,82,56,.85));
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.page-hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  max-width: 750px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  animation: slideUp 1s ease both;
}
.page-hero-title span { color: var(--green-pale); }

.page-hero-desc {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.92;
  animation: slideUp 1s ease both;
}

/* ===== PROGRAM PAGE ===== */
.program-page {
  padding: 90px 0 100px;
  background: var(--light-cream);
}

/* ===== PICKER ===== */
.program-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.picker-item {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  text-align: left;
  border: 2px solid transparent;
  position: relative;
}

.picker-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.picker-item.active {
  border-color: var(--green);
  box-shadow: var(--shadow-green);
  transform: translateY(-4px);
}

.picker-item.active::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 22px;
  height: 22px;
  background: var(--white);
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  z-index: 2;
}

.picker-img {
  position: relative;
  height: 180px;
  width: 455px;
  background-size: cover;
  background-position: center;
}

.picker-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(74,82,56,0.55));
}

.picker-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}

.picker-info {
  padding: 18px 20px 22px;
}
.picker-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.picker-info span {
  font-size: 0.82rem;
  color: var(--gray);
  font-weight: 500;
}

.picker-item.active .picker-info h3 { color: var(--green-dark); }

/* ===== DETAIL PANEL ===== */
.program-detail {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px 48px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-border);
}

.detail-panel { display: none; animation: fadeUp 0.5s ease; }
.detail-panel.active { display: block; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.detail-head { margin-bottom: 40px; text-align: center; }

.detail-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.25;
}
.detail-title span { color: var(--green); }

.detail-lead {
  max-width: 760px;
  margin: 0 auto;
  color: var(--gray);
  line-height: 1.8;
  font-size: 0.98rem;
}

/* ===== Block ===== */
.detail-block {
  background: var(--green-pale);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  margin-bottom: 36px;
}

.block-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.block-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.block-head h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
}

.req-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.req-col {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  border: 1px solid var(--gray-border);
}

.req-col h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-border);
}

.req-list { display: flex; flex-direction: column; gap: 10px; }
.req-list li {
  position: relative;
  padding-left: 26px;
  color: var(--dark-2);
  font-size: 0.92rem;
  line-height: 1.55;
}
.req-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px; height: 18px;
  background: var(--green-pale);
  color: var(--green);
  border-radius: 50%;
  font-size: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Materi, Metode, Tujuan ===== */
.mmt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}

.mmt-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
  border-top: 4px solid var(--green);
}
.mmt-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.mmt-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--green-pale);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.mmt-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}

.mmt-card ul { display: flex; flex-direction: column; gap: 8px; }
.mmt-card ul li {
  position: relative;
  padding-left: 18px;
  font-size: 0.9rem;
  color: var(--dark-2);
  line-height: 1.55;
}
.mmt-card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
}

/* ===== CTA inside detail ===== */
.detail-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 8px;
}

.btn-outline-green {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green);
}
.btn-outline-green:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .program-picker { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto 50px; }
  .program-detail { padding: 36px 24px; }
  .req-grid { grid-template-columns: 1fr; gap: 18px; }
  .mmt-grid { grid-template-columns: 1fr; }
  .picker-item.active::after { display: none; }
}

@media (max-width: 600px) {
  .page-hero { padding: 60px 0 50px; min-height: 280px; }
  .program-page { padding: 60px 0 80px; }
  .detail-block { padding: 26px 20px; }
  .req-col { padding: 20px 18px; }
}
