/* === NAVBAR HEADER === */
.navbar .header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.navbar .header-left img {
  width: 60px;
  height: auto;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.navbar .header-titles h1 {
  font-size: 18px;
  font-weight: 500;
  margin-left: -170px;
}

.navbar .header-titles h2 {
  font-size: 15px;
  font-weight: 500;
  margin-left: -170px;
}

/* === HERO SECTION === */
.hero-ppdb {
  background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
  color: var(--white);
  text-align: center;
  padding: 80px 20px;
  margin-top: 70px;
}

.hero-ppdb h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-ppdb p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
}

/* TOMBOL UTAMA SITUS PPDB */
.btn-ppdb-portal {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--primary-red);
  color: var(--white);
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  padding: 15px 35px;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
  transition: all 0.3s ease;
}

.btn-ppdb-portal:hover {
  background-color: #0a0844;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(46, 204, 113, 0.6);
}

/* === KONTEN INFORMASI === */
.container-ppdb {
  max-width: 1000px;
  margin: 40px auto 60px;
  padding: 0 20px;
}

.section-box {
  background: #f1f9ff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  margin-bottom: 30px;
}

.section-title {
  color: var(--dark-blue);
  font-size: 22px;
  margin-bottom: 20px;
  border-bottom: 2px solid #92a2af;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title i {
  color: var(--accent-orange);
}

/* Gaya Alur Pendaftaran */
.timeline {
  list-style: none;
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 5px;
  width: 2px;
  height: 90%;
  background: #ddd;
}

.timeline-item {
  position: relative;
  margin-bottom: 25px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary-blue);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--primary-blue);
}

.timeline-title {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 16px;
}

.timeline-desc {
  color: var(--text-gray);
  font-size: 14px;
}

/* Gaya List Persyaratan */
.req-list {
  list-style: none;
}

.req-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.req-list i {
  color: var(--accent-green);
  font-size: 18px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .navbar .header-left {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .navbar .header-left img {
    width: 50px;
    height: auto;
  }
  .navbar .header-titles h1 {
    margin-left: -280px;
    font-size: 16px;
    font-weight: 400;
  }
  .navbar .header-titles h2 {
    margin-left: -280px;
    font-size: 14px;
    font-weight: 400;
  }
  .page-header {
    height: 270px;
  }
  .page-header h2 {
    font-size: 26px;
    margin: 30px 0;
  }
  .hero-ppdb h2 {
    font-size: 28px;
  }
  .hero-ppdb p {
    font-size: 15px;
  }
  .btn-ppdb-portal {
    font-size: 16px;
    padding: 12px 25px;
  }
  .section-box {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .navbar .header-left {
    display: flex;
    align-items: center;
  }
  .navbar .header-left img {
    margin-left: -35px;
    width: 35px;
    height: auto;
  }
  .navbar .header-titles h1 {
    margin-left: -100px;
    font-size: 10px;
    font-weight: 400;
  }
  .navbar .header-titles h2 {
    margin-left: -100px;
    font-size: 9px;
    font-weight: 400;
  }
  .page-header {
    height: 200px;
  }
  .page-header h2 {
    font-size: 20px;
    margin: -5px 0 15px 0;
  }
  .bar {
    margin-right: -10px;
  }
  .hero-ppdb h2 {
    font-size: 24px;
  }
  .hero-ppdb p {
    font-size: 16px;
  }
  .btn-ppdb-portal {
    font-size: 14px;
    padding: 12px 25px;
  }
  .section-box {
    padding: 18px;
  }
}
