/* === Reset & Base Style === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  min-height: 100vh;
  width: 100%;
  background: #f4f6f8;
  overflow-x: hidden;
  font-family: "Poppins", tahoma, geneva, sans-serif;
}
a { color: #1f2a44; }
a:hover { color: #415d8c; }

/* === Site Branding & Header === */
.pkp_site_name {
  margin: 0;
  padding: 0 !important;
}
.pkp_site_name .is_img img {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  display: block;
  margin: 0 auto;
}
.pkp_site_name_wrapper {
  background: transparent !important;
  margin: 0;
  padding: 0 auto !important;
  text-align: center;
}

/* === Header === */
.pkp_structure_head {
  background-color: #1f2a44 !important;
}
.pkp_site_name, 
.pkp_site_name a {
  color: #f9f9f9 !important;
}

/* === Konten Utama === */
.pkp_structure_page {
  margin: auto;
  max-width: 1162px; /* responsif */
  width: 95%;
  background: #ffffff;
  padding-bottom: 0 !important;
  box-shadow: 0 0 10px rgba(31,42,68,0.08);
}
.pkp_structure_content {
  padding-top: 0;
}
.pkp_structure_sidebar .pkp_block .title {
  font-family: "Poppins", helvetica, calibri;
  color: #1f2a44;
}

/* === Navigasi Utama === */
.pkp_navigation_primary_row {
  background: #2b3b5f;
  margin-top: 0;
  padding-top: 0;
}


/* Block sidebar */
.pkp_structure_sidebar .pkp_block {
  margin-bottom: 16px;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e6e9ef;
  transition: all 0.3s ease;
}
.pkp_structure_sidebar .pkp_block:hover {
  box-shadow: 0 4px 12px rgba(31,42,68,0.12);
  transform: translateY(-2px);
}

/* Judul block */
.pkp_structure_sidebar .pkp_block .title {
  background: none;
  color: #1f2a44;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 15px;
  border-bottom: 1px solid #e6e9ef;
  letter-spacing: 1px;
}

/* Isi menu */
.pkp_structure_sidebar .pkp_block ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pkp_structure_sidebar .pkp_block ul li a {
  display: block;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  font-size: 14px;
  color: #2b3b5f;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid #f1f3f6;
}
.pkp_structure_sidebar .pkp_block ul li a:hover {
  background: #f4f6fa;
  color: #1f2a44;
  padding-left: 20px;
}
.pkp_structure_sidebar .pkp_block ul li a::before {
  content: "";
  color: #415d8c;
  font-size: 12px;
}

/* === Tombol Submit === */
.submit-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
}
.submit-btn {
  background: #1f2a44;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  padding: 10px 30px;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}
.submit-btn:hover {
  background: #2b3b5f;
}

/* === Footer === */
.pkp_structure_footer .pkp_footer_content {
  background: #1f2a44;
  color: #f0f3f7;
  padding: 20px 0;
  font-family: "Poppins", sans-serif;
  text-align: center;
}
.pkp_structure_footer .pkp_footer_content a {
  color: #cbd4e6;
  text-decoration: none;
  transition: 0.3s;
}
.pkp_structure_footer .pkp_footer_content a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.pkp_brand_footer {
display: none;
}

/* === Responsif === */
@media (max-width: 1024px) {
  .pkp_structure_page {
    width: 98%;
    padding: 10px;
  }
  .pkp_structure_sidebar {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
  .pkp_structure_page {
    width: 100%;
    padding: 10px;
    box-shadow: none;
  }
  .pkp_structure_sidebar {
    padding: 10px;
    border-radius: 8px;
    box-shadow: none;
  }
  .pkp_structure_sidebar .pkp_block .title {
    font-size: 13px;
    padding: 10px;
  }
  .pkp_structure_sidebar .pkp_block ul li a {
    font-size: 13px;
    padding: 10px;
  }
  .submit-btn {
    font-size: 14px;
    padding: 8px 20px;
  }
}

@media (max-width: 480px) {
  .pkp_site_name .is_img img {
    max-width: 200px; /* logo mengecil di HP */
  }
  .pkp_structure_sidebar .pkp_block ul li a {
    font-size: 12px;
    padding: 8px;
  }
  .submit-btn {
    width: 100%; /* tombol full di HP */
    border-radius: 8px;
  }
}
