/* custom css */
.pkp_navigation_user {
  display: none !important;
}

.pkp_navigation_primary {
  grid-area: nav;
}
.pkp_search {
  grid-area: search;
  justify-self: end;
}

.pkp_navigation_primary > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pkp_head_wrapper,
.pkp_head {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.pkp_site_name_wrapper {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.pkp_site_name_wrapper img {
  width: 100vw !important;
  height: auto;
  display: block;
}

/* Link navigasi */
.pkp_navigation a {
  color: var(--ink);
  text-decoration: none;
}
.pkp_navigation a:hover,
.pkp_navigation a:focus {
  color: var(--brand-green);
}

.pkp_site_nav_menu {
  background-color: transparent !important;
}

/* Responsif */
@media (max-width: 992px) {
  .sb-box.sb-links {
    padding: 12px;
  }
  .sb-list a {
    padding: 11px 12px;
  }
}

@media (max-width: 768px) {
  .pkp_structure_head .pkp_head_wrapper {
    grid-template-columns: 1fr;
    grid-template-areas:
      "logo"
      "nav"
      "search";
  }
  .pkp_search {
    justify-self: start;
  }
}

/* TAMBAHKAN */
/* HEADER & BANNER */
/* Enhanced Banner Presentation for Rectangular Banner */
/* .pkp_site_name {
  grid-area: logo;
  text-align: center;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  padding: 10px 0 !important;
  margin: 0 !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
} */

/* .pkp_site_name .is_img img {
  width: 100% !important;
  max-width: 100%;
  height: auto;
  max-height: 180px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease;
  border-radius: 4px;
}

.pkp_site_name .is_img img:hover {
  transform: scale(1.01);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
} */

.pkp_site_name {
  grid-area: logo;
  text-align: center;
  background: linear-gradient(
    rgba(255, 255, 255, 0.98),
    rgba(255, 255, 255, 0.95)
  ) !important;
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  padding: 15px 0 !important;
  margin: 0 !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.pkp_site_name .is_img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.pkp_site_name .is_img img {
  width: auto !important;
  max-width: 100%;
  height: auto;
  max-height: 170px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.pkp_site_name .is_img img:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* Responsive Banner Handling */
@media (max-width: 768px) {
  .pkp_site_name .is_img img {
    max-height: 120px;
    padding: 5px;
  }

  .pkp_site_name {
    padding: 8px 0 !important;
  }
}

@media (max-width: 480px) {
  .pkp_site_name .is_img img {
    max-height: 100px;
  }

  .pkp_site_name_wrapper {
    padding: 0 10px;
  }
}
/* HEADER & BANNER */

/* NAVIGATION */
/* .pkp_navigation_primary {
  grid-area: nav;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pkp_navigation_primary > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}

.pkp_navigation_primary > ul > li > a {
  display: block;
  padding: 12px 18px;
  color: #2e3a3f;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.pkp_navigation_primary > ul > li > a:hover,
.pkp_navigation_primary > ul > li > a:focus {
  color: #1b5e20;
  background-color: rgba(46, 125, 50, 0.1);
  transform: translateY(-2px);
}

.pkp_navigation_primary > ul > li > a::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 0;
  height: 3px;
  background-color: #2e7d32;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.pkp_navigation_primary > ul > li > a:hover::after,
.pkp_navigation_primary > ul > li > a:focus::after {
  width: 70%;
} */
/* NAVIGATION */

/* SEARCH */
/* .pkp_search {
  grid-area: search;
  justify-self: end;
  display: flex;
  align-items: center;
}

.pkp_search input[type="text"] {
  padding: 10px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 30px;
  font-size: 14px;
  transition: all 0.3s ease;
  width: 200px;
}

.pkp_search input[type="text"]:focus {
  border-color: #2e7d32;
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
  outline: none;
  width: 240px;
}

.pkp_search button[type="submit"] {
  background: #2e7d32;
  color: white;
  border: none;
  border-radius: 30px;
  padding: 10px 15px;
  margin-left: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.pkp_search button[type="submit"]:hover {
  background: #1b5e20;
} */
/* SEARCH */

/* HEADER CONTAINER */
/* .pkp_head_wrapper,
.pkp_head {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
} */
/* HEADER CONTAINER */

/* BLOCK CUSTOM SIDEBAR*/
.pkp_block {
  margin: 0 !important;
}

@media (min-width: 992px) {
  .pkp_block {
    padding: 0.5rem 1rem;
  }
}

/* === CLEAN MODERN SIDEBAR STYLE === */
.block_sidebar_menu {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 18px 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  font-family: "Inter", "Open Sans", sans-serif;
  transition: box-shadow 0.2s ease;
}

.block_sidebar_menu .title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2e3a3f;
  border-bottom: 2px solid #2e7d32;
  padding-bottom: 5px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.block_sidebar_menu .menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.block_sidebar_menu .menu-list li a {
  color: #2e3a3f;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border-left: 3px solid transparent;
  padding: 8px;
  display: block;
  border-radius: 6px;
  transition: all 0.25s ease-in-out;
}

.block_sidebar_menu .menu-list li a:hover {
  background-color: #f4f6f5;
  color: #1b5e20;
  border-left: 2px solid #2e7d32;
  padding-left: 12px;
}

/* ARTICLE TEMPLATE */
.block_article_template {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  font-family: "Inter", "Open Sans", sans-serif;
  transition: box-shadow 0.2s ease;
}

.block_article_template:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.block_article_template .title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2e3a3f;
  border-bottom: 2px solid #2e7d32;
  padding-bottom: 5px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.block_article_template .desc {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 12px;
}

.block_article_template .btn {
  display: block;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 12px;
  margin-bottom: 8px;
  text-align: center;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.block_article_template .btn.download {
  background-color: #2e7d32;
  color: #fff;
}

.block_article_template .btn.download:hover {
  background-color: #1b5e20;
}

.block_article_template .btn.online {
  background-color: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #2e7d32;
}

.block_article_template .btn.online:hover {
  background-color: #c8e6c9;
}

.block_article_template .link.guidelines {
  display: block;
  font-size: 0.9rem;
  text-decoration: none;
  color: #2e7d32;
  font-weight: 500;
}

.block_article_template .link.guidelines:hover {
  text-decoration: underline;
}

/* === VISITOR COUNTER BLOCK === */
.block_visitor_counter {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 18px 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  text-align: left;
  font-family: "Inter", "Open Sans", sans-serif;
}

.block_visitor_counter .title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2e3a3f;
  border-bottom: 2px solid #2e7d32;
  padding-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.block_visitor_counter .counter-box {
  padding-top: 10px;
}

/* === COUNTRY VISITOR COUNTER === */
.block_country_counter {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 18px 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  text-align: left;
  font-family: "Inter", "Open Sans", sans-serif;
}

.block_country_counter .title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2e3a3f;
  border-bottom: 2px solid #2e7d32;
  padding-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.flag-counter-box img {
  margin-top: 5px;
  width: auto;
  max-width: 100%;
  height: auto;
  transition: transform 0.2s ease;
}

/* Enhanced Navigation Styles */
/* .pkp_navigation_primary_wrapper > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 0;
  padding: 0;
} */

.pkp_navigation_primary_wrapper > ul > li {
  margin: 0;
}

.pkp_navigation_primary_wrapper > ul > li > a,
.pkp_navigation_search_wrapper > a {
  display: block;
  padding: 6px 10px;
  color: #2e3a3f;
  font-weight: 600;
  text-decoration: none;
  /* border-radius: 6px; */
  transition: all 0.3s ease;
  background: transparent;
  border-bottom: 2px solid transparent;
}

.pkp_navigation_primary_wrapper > ul > li > a:hover,
.pkp_navigation_primary_wrapper > ul > li > a:focus,
.pkp_navigation_search_wrapper > a:hover,
.pkp_navigation_search_wrapper > a:active {
  color: #1b5e20;
  background-color: #f4f6f5;
  border-color: #2e7d32;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.15);
}

.pkp_navigation_primary_wrapper > ul > li > a:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(46, 125, 50, 0.1);
}

/* Sub menu items */
.pkp_navigation_primary_wrapper ul ul {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  padding: 8px 0;
  min-width: 200px;
}

.pkp_navigation_primary_wrapper ul ul li a {
  padding: 10px 20px;
  color: #2e3a3f;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
}

.pkp_navigation_primary_wrapper ul ul li a:hover,
.pkp_navigation_primary_wrapper ul ul li a:focus {
  background-color: #f4f6f5;
  color: #1b5e20;
  border-left: 3px solid #2e7d32 !important;
  padding-left: 22px;
}

/* Modern Button Styles | start */
.pkp_button,
.cmp_button,
.pkp_button_primary,
.pkp_button_offset,
.pkp_search button[type="submit"],
.cmp_form .buttons button {
  display: inline-block;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-family: "Inter", "Open Sans", sans-serif;
}

/* Primary Button */
.pkp_button_primary {
  background-color: #2e7d32;
  background-image: none;
  color: #ffffff;
  border-color: #2e7d32;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2);
}

.pkp_button_primary:hover,
.pkp_button_primary:focus {
  background-color: #1b5e20;
  border-color: #1b5e20;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(46, 125, 50, 0.3);
}

.pkp_button_primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(46, 125, 50, 0.2);
}

/* Secondary Button */
.pkp_button,
.cmp_button {
  background-color: #ffffff;
  color: #2e7d32;
  border-color: #2e7d32;
}

.pkp_button:hover,
.pkp_button:focus,
.cmp_button:hover,
.cmp_button:focus {
  background-color: #f4f6f5;
  color: #1b5e20;
  border-color: #1b5e20;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.15);
}

.pkp_button:active,
.cmp_button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(46, 125, 50, 0.1);
}

/* Outline Button */
.pkp_button_link {
  background-color: transparent;
  color: #2e7d32;
  border: 2px solid #2e7d32;
  box-shadow: none;
}

.pkp_button_link:hover,
.pkp_button_link:focus {
  background-color: #2e7d32;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.15);
}
/* Modern Button Styles | end */

/* Modern Form Elements | start */
.cmp_form input[type="text"],
.cmp_form input[type="email"],
.cmp_form input[type="password"],
.cmp_form input[type="url"],
.cmp_form input[type="tel"],
.cmp_form select,
.cmp_form textarea,
.pkp_search input[type="text"] {
  padding: 4px 8px;
  width: 100%;
  height: auto;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.5;
  transition: all 0.3s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.cmp_form input[type="text"]:focus,
.cmp_form input[type="email"]:focus,
.cmp_form input[type="password"]:focus,
.cmp_form input[type="url"]:focus,
.cmp_form input[type="tel"]:focus,
.cmp_form select:focus,
.cmp_form textarea:focus,
.pkp_search input[type="text"]:focus {
  border-color: #2e7d32;
  box-shadow: 0 2px 8px rgba(46, 125, 50, 0.15);
  outline: none;
}

.cmp_form textarea {
  resize: vertical;
}
/* Modern Form Elements | end */

/* Content Card System | start */
.content-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  font-family: "Inter", "Open Sans", sans-serif;
}

.content-card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.content-card .title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2e3a3f;
  border-bottom: 2px solid #2e7d32;
  padding-bottom: 12px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
/* Content Card System | end */

/* Global Typography | start */
body {
  font-family: "Inter", "Open Sans", sans-serif;
  line-height: 1.6;
  color: #2e3a3f;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", "Open Sans", sans-serif;
  font-weight: 700;
  color: #1a2327;
}

h1 {
  font-size: 2.25rem;
}
h2 {
  font-size: 1.875rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}
h5 {
  font-size: 1.125rem;
}
h6 {
  font-size: 1rem;
}

a {
  color: #2e7d32;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover,
a:focus {
  color: #1b5e20;
  text-decoration: underline;
}
/* Global Typography | end */
