/* ===== RESET DASAR ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f4f8fb;
  color: #333;
  line-height: 1.6;
}

/* ===== BANNER TETAP DI ATAS ===== */
.banner {
  position: fixed;            /* bikin nempel di atas */
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #004080, #0073e6);
  color: #fff;
  padding: 25px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 1000;              /* biar di atas konten */
}

.banner-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.banner .logo {
  width: 300px;
  height: auto;
}

.menu {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.menu a {
  color: #fff;
  background: #004080;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 18px;
  border-radius: 15px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.menu a:hover {
  background: #ffcc00;
  color: #004080;
}


/* ===== GAMBAR DI ATAS FORMULIR ===== */
.top-image {
  text-align: center;
  margin: 140px 0 10px 0;  /* ⬅ margin-top lebih besar, margin-bottom sedikit lebih */
}

.top-image img {
  width: 900px;
  max-width: 100%;
  height: auto;
  border-radius: 25px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

/* ===== SECTION INFORMASI ===== */
.info-section {
  max-width: 950px;
  margin: 30px auto 80px auto;
  padding: 20px;  /* 👈 ini yang bikin padding-top 160px kamu hilang */
}

.info-section h2 {
  text-align: center;
  color: #004080;
  font-size: 26px;
  margin-bottom: 10px;
}

.info-section .deskripsi {
  text-align: center;
  color: #555;
  font-size: 15px;
  margin-bottom: 30px;
}

/* ===== CARD / BLOK ===== */
.card-info {
  background: #fff;
  padding: 25px;
  margin-bottom: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.card-info:hover {
  transform: translateY(-4px);
}

.card-info h3 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ===== TABEL JADWAL ===== */
.jadwal-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 14px;
}

.jadwal-table th,
.jadwal-table td {
  padding: 12px;
  border-bottom: 1px solid #e0e0e0;
  text-align: left;
}

.jadwal-table th {
  background: #004080;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
}

.jadwal-table tr:hover {
  background: #f0f6ff;
}

/* ===== SYARAT PENDAFTARAN ===== */
.persyaratan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.persyaratan-grid ul {
  list-style: none;
  padding-left: 0;
}

.persyaratan-grid li {
  background: #f0f6ff;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.persyaratan-grid li::before {
  content: "✔";
  color: #004080;
  font-weight: bold;
}

/* ===== CARA DAFTAR ===== */
.cara-daftar {
  padding-left: 18px;
  line-height: 1.6;
}

.cara-daftar li {
  margin-bottom: 10px;
}

.cara-daftar a {
  color: #004080;
  font-weight: 500;
  text-decoration: none;
}

.cara-daftar a:hover {
  text-decoration: underline;
}

/* ===== TOMBOL KEMBALI (BULAT SEMPURNA) ===== */
.btn-kembali-circle {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 50px;                /* Lebar sama tinggi */
  height: 50px;
  background: #004080;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;              /* Biar icon/text di tengah */
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-kembali-circle:hover {
  background: #0059b3;
  transform: scale(1.1);
}

/* ===== DOWNLOAD BROSUR CARD ===== */
.download-card {
  background: linear-gradient(135deg, #004080, #0073e6);
  color: #fff;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  margin-top: 25px;
  box-shadow: 0 5px 20px rgba(0, 64, 128, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 64, 128, 0.4);
}

.download-card img {
  width: 110px;
  height: auto;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 2px solid #fff;
}

.download-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}

.download-card p {
  font-size: 14px;
  margin-bottom: 18px;
}

.download-card a {
  display: inline-block;
  background: #ffcc00;
  color: #004080;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.download-card a:hover {
  background: #ffe066;
  transform: scale(1.05);
}

/* Responsif */
@media (max-width: 480px) {
  .download-card {
    padding: 20px;
  }

  .download-card img {
    width: 90px;
  }

  .download-card h4 {
    font-size: 16px;
  }

  .download-card p {
    font-size: 13px;
  }

  .download-card a {
    font-size: 13px;
    padding: 8px 16px;
  }
}

/* ===================== RESPONSIF ≤ 600px ===================== */
@media (max-width: 600px) {
  /* ===== Section Informasi ===== */
  .info-section {
    padding: 15px;
  }

  .info-section h2 {
    font-size: 22px;
  }

  /* ===== Tabel Jadwal ===== */
  .jadwal-table th,
  .jadwal-table td {
    padding: 10px 8px;
    font-size: 13px;
  }

  /* ===== Tombol Kembali ===== */
  .btn-kembali-circle {
    padding: 12px;
    font-size: 16px;
  }
}

/* ===================== RESPONSIF ≤ 480px ===================== */
@media (max-width: 480px) {
  /* ===== Banner & Logo ===== */
  .banner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px 10px;
    margin-bottom: 30px;
  }

  .banner .logo {
    width: 250px;
    margin-bottom: 7px;
  }

  /* ===== Menu Navigasi ===== */
  .menu {
    justify-content: center;
    gap: 8px;
  }

  .menu a {
    font-size: 12px;
    padding: 4px 10px;
  }

  /* ===== Gambar Atas ===== */
  .top-image img {
    width: 100%;
    max-width: 330px;
    border-radius: 12px;
    margin-bottom: -15px;
  }

  /* ===== Formulir ===== */
  .form-container {
    width: 90%;
    padding: 20px 15px;
    margin-bottom: 40px;
  }

  .form-container h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 8px;
    font-size: 13px;
  }

  .form-row {
    flex-direction: column;
    gap: 10px;
  }

  /* ===== Tombol ===== */
  button {
    font-size: 14px;
    padding: 10px;
  }

  /* ===== Tombol Kembali ===== */
  .btn-kembali-circle {
    width: 40px;
    height: 40px;
    font-size: 17px;
    bottom: 12px;
    left: 12px;
  }
}
