* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: #222;
  background: #fff;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  background: #031b4e;
  padding: 15px 0;
  transition: 0.3s;
}

.header .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header.scrolled {
  background: #02143b;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.logo img {
  height: 60px;
}

nav ul {
  display: flex;
  justify-content: center;
  gap: 30px;
}

nav ul li a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.btn-daftar {
  background: #f5b400;
  color: #000;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
}

.hero {
  background:
    linear-gradient(rgba(0, 20, 70, 0.85), rgba(0, 20, 70, 0.85)),
    url("../images/hero-bg.jpg");

  background-size: cover;
  background-position: center;

  color: #fff;

  padding: 70px 0;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.badge {
  display: inline-block;
  background: #d8a000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 25px;
}
.hero-left h1 {
  font-size: 58px;
  line-height: 1.1;
  margin-bottom: 15px;
}

.hero-left h1 span {
  display: block;
  color: #ffbf00;
}

.hero-left h3 {
  font-size: 34px;
  margin-bottom: 20px;
}
.hero-left p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 35px;
}
.hero-info {
  display: flex;
  gap: 30px;
  margin-bottom: 35px;
}

.info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.info-item i {
  color: #f5b400;
  font-size: 22px;
}
.hero-btn {
  display: flex;
  gap: 15px;
}
.btn-primary,
.btn-daftar,
.btn-quota,
.btn-card {
  transition: 0.3s;
}

.btn-primary:hover,
.btn-daftar:hover,
.btn-quota:hover,
.btn-card:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: #f5b400;
  color: #000;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: bold;
}

.btn-secondary {
  border: 2px solid #f5b400;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
  }

  .hero-left h1 {
    font-size: 38px;
  }

  .hero-info {
    flex-direction: column;
  }

  nav {
    display: none;
  }
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 40px;
  align-items: center;
}

.hero {
  background: linear-gradient(135deg, #001a57, #002f86);

  color: #fff;
  padding: 60px 0;
}

.hero-left h1 {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 800;
}

.hero-left h1 span {
  color: #ffbf00;
  display: block;
}

.tahun {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 25px 0;
}

.tahun span {
  width: 150px;
  height: 3px;
  background: #ffbf00;
}

.hero-info {
  display: flex;
  gap: 40px;
  margin: 35px 0;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.info-item i {
  color: #ffbf00;
  font-size: 22px;
}
.btn-primary {
  background: #ffbf00;
  color: #000;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
}

.btn-secondary {
  border: 2px solid #ffbf00;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
}

/* =====================
   BENEFIT
===================== */

.benefit {
  background: #fff;
  padding: 70px 0;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #0b1d4d;
  margin-bottom: 50px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.benefit-item {
  text-align: center;
  padding: 10px;
  transition: 0.3s;
}

.benefit-item:hover {
  transform: translateY(-8px);
}

.benefit-item i {
  font-size: 40px;
  color: #d4a000;
  margin-bottom: 15px;
}

.benefit-item h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #0b1d4d;
  line-height: 1.4;
}

.benefit-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .benefit-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .benefit-grid {
    grid-template-columns: 1fr;
  }
}
/* =====================
   SKEMA SERTIFIKASI
===================== */

.certification {
  padding: 80px 0;
  background: #fff;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.cert-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
  transition: 0.3s;
}
.cert-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.cert-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.cert-icon i {
  color: #fff;
  font-size: 28px;
}

.green {
  background: #28a745;
}

.blue {
  background: #1565c0;
}

.purple {
  background: #8e24aa;
}

.cert-card h3 {
  font-size: 36px;
  color: #0b1d4d;
  margin-bottom: 10px;
}

.cert-subtitle {
  font-size: 15px;
  min-height: 60px;
  color: #444;
  line-height: 1.5;
}

.badge-level {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  margin: 20px 0;
  font-size: 13px;
  font-weight: 600;
}

.green-badge {
  background: #e7f7eb;
  color: #28a745;
}

.blue-badge {
  background: #e9f2ff;
  color: #1565c0;
}

.purple-badge {
  background: #f5e9fb;
  color: #8e24aa;
}

.cert-list {
  margin: 20px 0;
}

.cert-list li {
  margin-bottom: 10px;
  color: #555;
}

.old-price {
  text-decoration: line-through;
  color: #999;
}

.price h4 {
  font-size: 36px;
  margin-top: 10px;
}

.cpof .price h4 {
  color: #28a745;
}

.cpsp .price h4 {
  color: #1565c0;
}

.ccms .price h4 {
  color: #8e24aa;
}

.btn-card {
  display: block;
  text-align: center;
  padding: 14px;
  margin-top: 25px;
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
}

.green-btn {
  background: #28a745;
}

.blue-btn {
  background: #1565c0;
}

.purple-btn {
  background: #8e24aa;
}
@media (max-width: 992px) {
  .cert-grid {
    grid-template-columns: 1fr;
  }
}
/* ======================
   PROGRAM INFO
====================== */

.program-info {
  padding-bottom: 80px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.info-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  border: 1px solid #eee;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.info-card h3 {
  text-align: center;
  margin-bottom: 25px;
  color: #0b1d4d;
  font-size: 22px;
}

/* JADWAL */

.schedule-item {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.schedule-item:last-child {
  border-bottom: none;
}

.schedule-date {
  font-weight: 700;
  color: #28a745;
  display: block;
  margin-bottom: 5px;
}

/* SASARAN */

.target-list li {
  margin-bottom: 14px;
  padding-left: 20px;
  position: relative;
}

.target-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1565c0;
}

/* FASILITAS */

.facility-list li {
  margin-bottom: 14px;
  padding-left: 24px;
  position: relative;
}

.facility-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}
@media (max-width: 992px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}
/* ======================
   BIAYA PROGRAM
====================== */

.pricing {
  padding: 80px 0;
  background: #f8fafc;
}

.pricing-wrapper {
  display: grid;
  grid-template-columns: auto 600px;
  justify-content: center;
  gap: 30px;
}

/* TABLE */

.pricing-table {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.pricing-table table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table th {
  background: #0b1d4d;
  color: #fff;
  padding: 18px;
  text-align: center;
}

.pricing-table td {
  padding: 18px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.pricing-table tr:hover {
  background: #f8f9ff;
}

.pricing-note {
  padding: 20px;
  font-size: 14px;
  color: #666;
}

/* QUOTA BOX */

.quota-box {
  background: linear-gradient(135deg, #0b1d4d, #123c95);

  color: #fff;

  border-radius: 16px;

  padding: 35px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quota-badge {
  background: #ffbf00;
  color: #000;
  font-weight: 700;
  padding: 8px 15px;
  border-radius: 20px;
  width: max-content;
  margin-bottom: 20px;
}

.quota-box h3 {
  margin-bottom: 10px;
}

.quota-box h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.quota-box p {
  line-height: 1.8;
  margin-bottom: 25px;
}

.btn-quota {
  background: #ffbf00;
  color: #000;
  padding: 15px;
  text-align: center;
  border-radius: 8px;
  font-weight: 700;
}
@media (max-width: 992px) {
  .pricing-wrapper {
    grid-template-columns: 1fr;
  }
}
/* ======================
   FOOTER
====================== */

.footer {
  background: #001b57;
  color: #fff;
  padding: 70px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 60px;
}

.footer h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
}

.footer p {
  color: #d6d6d6;
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 12px;
}

.footer ul li a {
  color: #d6d6d6;
  text-decoration: none;
  transition: 0.3s;
}

.footer ul li a:hover {
  color: #ffbf00;
}

.footer-about p {
  max-width: 350px;
}

.footer-logo {
  width: 60px;
  margin-bottom: 20px;
}

.footer .container {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}
.hamburger {
  display: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}
@media (max-width: 768px) {
  nav {
    display: none;
  }

  .hamburger {
    display: block;
  }
}
.back-top {
  position: fixed;
  right: 20px;
  bottom: 20px;

  width: 50px;
  height: 50px;

  background: #ffbf00;

  color: #000;

  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 50%;

  font-size: 22px;

  z-index: 999;
}

@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #031b4e;

    display: none;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    padding: 20px;
  }
}
.hidden {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.show {
  opacity: 1;
  transform: translateY(0);
}
.partner-box {
  background: #fff;
  border-radius: 24px;
  padding: 25px 35px;
  margin-top: 15px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.partner-item {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner-item:not(:last-child) {
  border-right: 1px solid #e5e7eb;
  padding-right: 20px;
}

.partner-item img {
  max-width: 140px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .partner-box {
    flex-direction: column;
    padding: 20px;
  }

  .partner-item {
    width: 100%;
    padding: 20px 0;
  }

  .partner-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
    padding-right: 0;
  }
}
.organizer {
  text-align: center;
  margin-top: 25px;
}

.organizer p {
  margin-bottom: 10px;
  color: #fff;
  font-weight: 500;
}

.organizer img {
  max-width: 220px;
  height: auto;
  object-fit: contain;
}
.pricing-flyer {
  display: flex;
  justify-content: flex-end;
}

.pricing-flyer img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
}
