@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --green-dark: #237A47;
  --green-emerald: #277D46;
  --green-btn: #237A47;
  --green-light: #EBF6EF;
  --green-border: #B4E5C9;
  
  --bg-cream: #f8fafc;
  --bg-subtle: #ffffff;
  --white: #ffffff;
  --gray-light: #F1F5F9;
  --gray-mid: #E2E8F0;
  --gray-text: #64748B;
  --text-dark: #0F172A;
  --text-muted: #475569;
  --card-border: #E2E8F0;
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --card-shadow: 0 4px 20px -2px rgba(6, 78, 59, 0.03), 0 2px 6px -1px rgba(0, 0, 0, 0.01);
  --card-shadow-hover: 0 16px 36px rgba(6, 78, 59, 0.08);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font);
  color: var(--text-dark);
  background-color: var(--bg-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== HERO SECTION (HIJAU MUDA SOFT - GAMBAR 1) ===== */
.hero {
  position: relative;
  background: linear-gradient(180deg, #f0fdf4 0%, #ecfdf5 100%);
  border: 1px solid #d1fae5;
  color: #064e3b;
  padding: 64px 32px;
  text-align: center;
  overflow: hidden;
  margin-bottom: 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px -2px rgba(6, 78, 59, 0.03);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 800;
  color: #064E3B;
  background: #EBF6EF;
  border: 1px solid #B4E5C9;
  padding: 6px 20px;
  border-radius: 30px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: 2.3rem;
  font-weight: 800;
  color: #064e3b;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.25;
}

.hero-divider {
  width: 60px;
  height: 4px;
  background: #047857;
  margin: 0 auto 20px;
  border-radius: 4px;
}

.hero p {
  font-size: 0.98rem;
  color: #047857;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 32px;
  font-weight: 500;
}

.btn-hero {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #064e3b;
  color: #ffffff;
  padding: 12px 36px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(6, 78, 59, 0.2);
}

.btn-hero:hover {
  background: #043d2e;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(6, 78, 59, 0.3);
  color: #ffffff;
}

.hero-badge {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.hero-badge-icon {
  width: 32px;
  height: 32px;
  background: rgba(4, 120, 87, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-badge-icon svg {
  width: 16px;
  height: 16px;
  fill: #047857;
}

.hero-badge-text strong {
  display: block;
  font-size: 0.88rem;
  color: #064e3b;
  font-weight: 800;
}

.hero-badge-text span {
  display: block;
  font-size: 0.78rem;
  color: #475569;
}

/* ===== SECTION ===== */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 40px;
}

.section-bar {
  width: 6px;
  height: 42px;
  background: linear-gradient(180deg, #064E3B 0%, #34D399 100%);
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(6, 78, 59, 0.2);
  flex-shrink: 0;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 0.92rem;
  color: var(--green-emerald);
  font-weight: 600;
  margin-top: 3px;
}

/* ===== KONSELOR GRID & CARDS (DESIGN IJO TERANG - GAMBAR 2) ===== */
.konselor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.konselor-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfc 100%);
  border: 1px solid rgba(180, 229, 201, 0.4);
  border-radius: 24px;
  padding: 40px 24px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px -10px rgba(35, 122, 71, 0.05), 0 1px 3px rgba(0, 0, 0, 0.01);
  position: relative;
  overflow: hidden;
}

.konselor-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #237A47 0%, #34D399 50%, #1B6339 100%);
  transition: height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.konselor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -15px rgba(35, 122, 71, 0.15), 0 0 0 1px rgba(35, 122, 71, 0.2);
  border-color: rgba(35, 122, 71, 0.2);
}

.konselor-card:hover::before {
  height: 8px;
}

/* Photo Styling */
.konselor-photo {
  position: relative;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 22px;
  background: linear-gradient(135deg, #EBF6EF 0%, #ffffff 100%);
  padding: 5px;
  border: 3px solid #ffffff;
  box-shadow: 0 8px 24px rgba(35, 122, 71, 0.08), 0 0 0 2px rgba(35, 122, 71, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.konselor-card:hover .konselor-photo {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(35, 122, 71, 0.18), 0 0 0 3px #34D399;
}

.konselor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.4s ease;
}

.konselor-card:hover .konselor-photo img {
  transform: scale(1.08);
}

.konselor-photo svg {
  width: 52px;
  height: 52px;
  fill: #94A3B8;
}

/* Name & Expertise */
.konselor-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: -0.4px;
}

.konselor-expertise {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #237A47;
  background: #EBF6EF;
  border: 1px solid #B4E5C9;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(35, 122, 71, 0.04);
  line-height: 1.4;
  max-width: 100%;
}

/* Button */
.btn-konselor {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, #064E3B 0%, #047857 100%);
  color: #ffffff;
  padding: 13px 24px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 16px rgba(6, 78, 59, 0.2);
  margin-top: auto;
}

.btn-konselor svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
  transition: transform 0.25s ease;
}

.btn-konselor:hover {
  background: linear-gradient(135deg, #047857 0%, #065F46 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(6, 78, 59, 0.3);
}

.btn-konselor:hover svg {
  transform: translateX(4px);
}

.section-divider {
  border: none;
  border-top: 1.5px dashed var(--card-border);
  margin-top: 60px;
}

/* ===== PERSIAPAN ===== */
.persiapan-wrap {
  background: linear-gradient(180deg, #F0FDF4 0%, #FFFFFF 100%);
  border: 1.5px solid #DCFCE7;
  border-radius: var(--radius-lg);
  padding: 52px 40px;
  box-shadow: var(--card-shadow);
}

.persiapan-title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 32px;
  letter-spacing: -0.4px;
}

.persiapan-title svg {
  width: 26px;
  height: 26px;
  fill: var(--green-dark);
}

.persiapan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.persiapan-card {
  background: #ffffff;
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.persiapan-card:hover {
  transform: translateY(-6px);
  border-color: var(--green-border);
  box-shadow: 0 14px 30px -5px rgba(6, 78, 59, 0.12);
}

.persiapan-num {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #064E3B 0%, #047857 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(6, 78, 59, 0.25);
}

.persiapan-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.persiapan-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.persiapan-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--green-dark);
  text-decoration: none;
  transition: all 0.2s ease;
}

.persiapan-link svg {
  width: 14px;
  height: 14px;
  fill: var(--green-dark);
  transition: transform 0.2s ease;
}

.persiapan-link:hover {
  color: var(--green-emerald);
}

.persiapan-link:hover svg {
  transform: translateX(3px);
}

/* ===== KETENTUAN ===== */
.ketentuan {
  background: var(--bg-cream);
  padding-top: 0;
}

.ketentuan-wrap {
  background: #ffffff;
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 52px 40px;
  box-shadow: var(--card-shadow);
}

.ketentuan-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 32px;
  letter-spacing: -0.4px;
}

.ketentuan-heading svg {
  width: 26px;
  height: 26px;
  fill: var(--green-dark);
}

.ketentuan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.ketentuan-card {
  background: var(--bg-subtle);
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  transition: all 0.3s ease;
}

.ketentuan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px -5px rgba(0, 0, 0, 0.06);
}

.ketentuan-card.highlight {
  background: linear-gradient(135deg, #032A20 0%, #064E3B 50%, #047857 100%) !important;
  border-color: #064E3B !important;
  color: #ffffff !important;
  box-shadow: 0 16px 36px rgba(6, 78, 59, 0.28);
}

.ketentuan-card.highlight h3 {
  color: #ffffff !important;
}

.ketentuan-card.highlight p {
  color: rgba(255, 255, 255, 0.9) !important;
}

.ketentuan-card.highlight .ketentuan-icon {
  background: rgba(255, 255, 255, 0.18) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ketentuan-card.highlight .ketentuan-icon svg {
  fill: #ffffff !important;
}

.ketentuan-icon {
  width: 48px;
  height: 48px;
  background: rgba(6, 78, 59, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.ketentuan-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--green-dark);
}

.ketentuan-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.ketentuan-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero h1 {
    font-size: 2.1rem;
  }
  .konselor-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .persiapan-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .ketentuan-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 44px 18px 48px;
    border-radius: var(--radius-lg);
  }
  .hero h1 {
    font-size: 1.65rem;
    letter-spacing: -0.5px;
  }
  .konselor-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .konselor-card {
    padding: 24px 12px 18px !important;
    border-radius: 18px !important;
  }
  .konselor-photo {
    width: 64px !important;
    height: 64px !important;
    margin-bottom: 14px !important;
    border-width: 2px !important;
  }
  .konselor-photo svg {
    width: 32px !important;
    height: 32px !important;
  }
  .konselor-name {
    font-size: 0.95rem !important;
    margin-bottom: 6px !important;
  }
  .konselor-expertise {
    font-size: 0.7rem !important;
    padding: 4px 10px !important;
    margin-bottom: 12px !important;
  }
  .btn-konselor {
    padding: 9px 12px !important;
    font-size: 0.78rem !important;
    border-radius: 8px !important;
    gap: 6px !important;
  }
  .btn-konselor svg {
    width: 14px !important;
    height: 14px !important;
  }

  .persiapan-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .persiapan-card {
    padding: 18px 14px !important;
    border-radius: 14px !important;
  }
  .persiapan-num {
    width: 30px !important;
    height: 30px !important;
    font-size: 0.8rem !important;
    margin-bottom: 12px !important;
  }
  .persiapan-card h4 {
    font-size: 0.88rem !important;
    margin-bottom: 6px !important;
  }
  .persiapan-card p {
    font-size: 0.76rem !important;
    line-height: 1.45 !important;
    margin-bottom: 14px !important;
  }
  .persiapan-link {
    font-size: 0.75rem !important;
  }

  .persiapan-wrap, .ketentuan-wrap {
    padding: 24px 16px !important;
  }
  .section {
    padding: 36px 14px !important;
  }
}

@media (max-width: 420px) {
  .konselor-grid { grid-template-columns: 1fr !important; gap: 10px !important; }
  .persiapan-grid { grid-template-columns: 1fr !important; gap: 10px !important; }
}


@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
  }
  50% {
    transform: scale(1.29);
    opacity: 1;
    box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.2);
  }
}