/* ==========================================================================
   SECTION 1: HEADER / SITE BRANDING
   - Header wrapper
   - Site title logo area
   - Full-width banner normalization
   ========================================================================== */
.pkp_structure_head {
    background: #ffffff !important;
    padding: 0 !important;
    margin: 0 !important;
}

.pkp_site_name_wrapper, 
.pkp_site_name {
    display: block !important;
    width: 100% !important;
    max-width: 1170px !important;
    padding: 0 !important;
    margin: 0 !important;
}

.pkp_site_name img {
    width: 100% !important;
    height: auto !important;
    max-height: 100% !important;
    object-fit: fill !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ==========================================================================
   SECTION 2: MAIN NAVIGATION BAR
   - Navbar container and layout
   - Primary menu spacing and alignment
   - Hover state styling for top links
   ========================================================================== */
.pkp_navigation_primary_row {
    position: relative !important; 
    top: auto !important;
    z-index: 999 !important; 
    background-color: #ffffff !important; 
    border-bottom: 1px solid #e1e8ed !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04) !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}

/* Kontainer Dalam: Menjaga lebar agar pas sejajar di bawah gambar header */
.pkp_navigation_primary_row .pkp_navigation_primary_wrapper {
    display: flex !important;
    /* PERUBAHAN UTAMA: Mengatur semua elemen rata kiri berkumpul bersama */
    justify-content: flex-start !important; 
    align-items: center !important;
    
    width: 100% !important;
    max-width: 1170px !important; /* Batas lebar sejajar header */
    margin: 0 auto !important; /* Memposisikan blok navigasi di tengah halaman */
    padding: 0 !important;
    box-sizing: border-box !important;
}

/* Wadah Teks Menu Utama */
.pkp_navigation_primary {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    margin: 0 !important;
    padding: 0 0 0 10px !important; /* Spasi di sebelah paling kiri menu pertama (Home) */
    list-style: none !important;
}

/* Mengatur item baris menu utama */
.pkp_navigation_primary > li {
    display: inline-block !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
}

/* Gaya Teks Menu Utama (Font 11px, Fit 1 Baris) */
.pkp_navigation_primary > li > a {
    color: #0A2540 !important; 
    font-weight: 700 !important; 
    text-transform: uppercase !important; 
    font-size: 11px !important; 
    padding: 14px 10px !important; 
    letter-spacing: 0.1px !important; 
    transition: all 0.15s ease-in-out !important; 
    display: block !important;
    line-height: 1.2 !important;
}

/* Efek Hover Menu Utama */
.pkp_navigation_primary > li > a:hover {
    color: #007BFF !important; 
    background-color: #f4f6f9 !important; 
}

/* ==========================================================================
   SECTION 3: NAVIGATION SEARCH LINK
   - Search button styles to match primary menu
   - Aligned and leveled with navigation items
   ========================================================================== */
.pkp_navigation_search_wrapper {
    margin: 0 0 0 18px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
}

.pkp_navigation_search_wrapper a {
    color: #007BFF !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 11px !important; /* Ukuran font disamakan */
    padding: 14px 10px !important; /* Tinggi area disamakan agar simetris */
    display: inline-block !important;
    line-height: 1.2 !important;
    text-decoration: none !important;
    align-items: flex-end !important;
}

.pkp_navigation_search_wrapper a:hover {
    color: #007BFF !important;
}

/* ==========================================================================
   SECTION 4: DROPDOWN SUBMENU
   - Submenu panel positioning
   - Background, border, shadow, hover states
   ========================================================================== */
.pkp_navigation_primary li:hover > ul {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.pkp_navigation_primary ul ul {
    background-color: #ffffff !important;
    border: 1px solid #e1e8ed !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    padding: 5px 0 !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    min-width: 190px !important;
    z-index: 1000 !important;
    display: none;
}

.pkp_navigation_primary ul ul li {
    width: 100% !important;
    display: block !important;
}

.pkp_navigation_primary ul ul a {
    color: #334E68 !important; 
    text-transform: none !important; 
    font-weight: 500 !important;
    font-size: 12px !important;
    display: block !important;
    padding: 8px 15px !important; 
}

.pkp_navigation_primary ul ul a:hover {
    background-color: #f4f6f9 !important; 
    color: #007BFF !important; 
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

/* ==========================================================================
   SECTION 5: MAIN PAGE LAYOUT
   - Content + sidebar layout
   - Card panel spacing, borders, and shadows
   ========================================================================== */
.pkp_structure_content {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 24px !important;
    max-width: 1170px !important;
    margin: 25px auto !important;
    padding: 0 0 20px !important;
    box-sizing: border-box !important;
}

.pkp_structure_main {
    flex: 1 1 0 !important;
    background: #ffffff !important;
    border: 1px solid #e7ecf1 !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04) !important;
    padding: 24px 28px !important;
    margin: 0 !important;
}

.pkp_structure_sidebar {
    width: 300px !important;
    flex: 0 0 300px !important;
    background: #ffffff !important;
    border: 1px solid #e7ecf1 !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04) !important;
    padding: 18px !important;
    margin: 0 !important;
}

.pkp_structure_sidebar .block,
.pkp_structure_sidebar .pkp_block {
    background: #ffffff !important;
    border: 1px solid #eef2f5 !important;
    border-radius: 6px !important;
    padding: 14px 14px 12px !important;
    margin-bottom: 14px !important;
    box-shadow: none !important;
}

.pkp_structure_sidebar .block:last-child,
.pkp_structure_sidebar .pkp_block:last-child {
    margin-bottom: 0 !important;
}

.pkp_structure_sidebar .block .title,
.pkp_structure_sidebar .pkp_block .title,
.pkp_structure_sidebar .block h2,
.pkp_structure_sidebar .pkp_block h2 {
    border: none !important;
    border-left: 3px solid #007BFF !important;
    padding-left: 8px !important;
    margin-bottom: 10px !important;
    background: transparent !important;
}

.pkp_structure_main,
.pkp_structure_sidebar,
.pkp_structure_sidebar .block,
.pkp_structure_sidebar .pkp_block {
    position: relative !important;
}

.pkp_structure_main::before,
.pkp_structure_sidebar::before,
.pkp_structure_sidebar .block::before,
.pkp_structure_sidebar .pkp_block::before {
    display: none !important;
}

.pkp_structure_main > *:not(:first-child),
.pkp_structure_sidebar > *:not(:first-child) {
    margin-top: 16px !important;
}

.pkp_structure_sidebar .block ul,
.pkp_structure_sidebar .pkp_block ul {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.pkp_structure_sidebar .block li,
.pkp_structure_sidebar .pkp_block li {
    margin: 0 !important;
    padding: 6px 0 !important;
    border-bottom: 1px solid #f1f4f7 !important;
}

.pkp_structure_sidebar .block li:last-child,
.pkp_structure_sidebar .pkp_block li:last-child {
    border-bottom: none !important;
}

/* ==========================================================================
   SECTION 5A: CUSTOM SIDEBAR MENU STATES
   - Sidebar menu link default state
   - Hover state with colored border & white text
   - Active/current state styling
   ========================================================================== */
.pkp_structure_sidebar .block li a,
.pkp_structure_sidebar .pkp_block li a {
    display: block !important;
    width: 100% !important;
    padding: 10px 14px !important;
    color: #0A2540 !important;
    background: #ffffff !important;
    border: 1px solid #007BFF !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    font-family: "Segoe UI", Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    transition: all 0.25s ease !important;
}

.pkp_structure_sidebar .block li a:hover,
.pkp_structure_sidebar .pkp_block li a:hover,
.pkp_structure_sidebar .block li a:focus,
.pkp_structure_sidebar .pkp_block li a:focus {
    color: #ffffff !important;
    background: #007BFF !important;
    border-color: #007BFF !important;
    box-shadow: 0 6px 14px rgba(0, 123, 255, 0.16) !important;
}

.pkp_structure_sidebar .block li.current a,
.pkp_structure_sidebar .pkp_block li.current a,
.pkp_structure_sidebar .block li.active a,
.pkp_structure_sidebar .pkp_block li.active a,
.pkp_structure_sidebar .block li a.active,
.pkp_structure_sidebar .pkp_block li a.active {
    color: #ffffff !important;
    background: #007BFF !important;
    border-color: #007BFF !important;
    box-shadow: 0 6px 14px rgba(0, 123, 255, 0.16) !important;
}

/* ==========================================================================
   SECTION 6: FOOTER — Elegant Ocean theme
   - Footer wrapper full-width layout
   - Logo, social, divider, columns, and bottom bar
   - Elegant blue palette and typography
   ========================================================================== */

:root {
  --java-navy:        #06283d;
  --java-deep:         #0a3f5c;
  --java-primary:      #0a6ea1;
  --java-accent:       #26c6da;
  --java-gold:         #d4af37;   /* aksen mewah, dipakai tipis-tipis saja */
  --java-text-soft:    #cfe3ee;
  --java-text-mute:    #8fadbf;
}

* { box-sizing: border-box; }

.java-footer {
  background: linear-gradient(160deg, var(--java-navy) 0%, var(--java-deep) 100%);
  color: var(--java-text-soft);
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin: -96px -50vw 0;
  padding: 0 0 16px;
  font-family: 'Poppins', 'Segoe UI', Roboto, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.2px;
  overflow: hidden;
}

.footer-content {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 24px 20px 22px;
  animation: footerFadeUp 0.6s ease both;
}

@keyframes footerFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- TOP: logo + social ---------- */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 24px 0 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo .logo-name {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
  line-height: 1.2;
  padding-top: 20px;
}

.footer-logo .logo-name img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  display: block;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
  filter: brightness(0) invert(1);
}

.logo-name small {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--java-text-mute);
  letter-spacing: 0.3px;
  margin-top: 2px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-left: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--java-text-soft);
  text-decoration: none;
  transition: all 0.3s ease;
}

/* hover simpel: naik sedikit + warna aksen + border gold tipis */
.footer-social a:hover {
  background: var(--java-accent);
  color: var(--java-navy);
  border-color: var(--java-gold);
  transform: translateY(-4px);
}

/* ---------- DIVIDER ---------- */
.footer-divider {
  height: 1px;
  margin: 0 0 24px;
  background: linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0.15), rgba(255,255,255,0.02));
}

/* ---------- LINK COLUMNS ---------- */
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 36px 0 12px;
}

.footer-box {
  list-style: none;
  margin: 0; padding: 0;
}

.box-title {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
  position: relative;
  padding-bottom: 8px;
}

/* garis kecil bawah judul kolom — elegan, minim */
.box-title::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 26px;
  height: 2px;
  background: var(--java-gold);
}

.footer-box li {
  margin-bottom: 10px;
  font-size: 0.88rem;
  color: var(--java-text-mute);
}

.footer-box a {
  color: var(--java-text-mute);
  text-decoration: none;
  position: relative;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

/* hover link: geser dikit + warna terang, simpel & smooth */
.footer-box a:hover {
  color: var(--java-accent);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.footer-contact i {
  color: var(--java-gold);
  margin-top: 3px;
  width: 14px;
}

/* ---------- BOTTOM BAR ---------- */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 16px;
  padding: 16px 8vw 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--java-text-mute);
}

.footer-bottom a {
  color: var(--java-text-soft);
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer-bottom a:hover {
  color: var(--java-gold);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .footer-links { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
/* ==========================================================================
   SECTION 7: SLIDESHOW CSS ONLY
   - Slideshow container, slide animation, dots, and hover effect
   - Keep HTML and JS out of this stylesheet
   ========================================================================== */

  /* ---------------------------------------------------------------
     Container: rounded, shadow, biar rapi sesuai tema ocean blue.
     Ganti angka di max-width kalau mau ukuran beda.
  --------------------------------------------------------------- */
  .slideshow-container {
    position: relative;
    max-width: 200px;
    margin: 0 auto 12px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(6, 40, 61, 0.18);
  }

  .mySlides {
    display: none;
  }

  .mySlides img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
  }

  .slideshow-container:hover .mySlides img {
    transform: scale(1.04);
  }

  /* animasi fade otomatis (dikontrol lewat opacity oleh JS) */
  .fade {
    animation: javaFade 1s ease-in-out;
  }

  @keyframes javaFade {
    from { opacity: 0.25; }
    to   { opacity: 1; }
  }

  /* titik indikator di bawah gambar */
  .dot-container {
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 6px;
  }

  .sdot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .sdot.active {
    background: #26c6da;
    width: 16px;
    border-radius: 4px;
  }
/* ===== Journal Policy ===== */

.journal-policy{
    margin:20px 0;
}



/* Item */

.policy-item{
    display:flex;
    align-items:center;
    gap:12px;

    padding:14px 16px;
    margin-bottom:12px;

    background:#ffffff;
    border:1.5px solid #007BFF;
    border-radius:10px;

    color:#0A2540;
    background-clip:padding-box;
    text-decoration:none;
    font-family:"Segoe UI", Arial, sans-serif;
    font-size:15px;
    font-weight:600;
    line-height:1.45;

    transition:all .35s ease;
    position:relative;
    overflow:hidden;

    box-shadow:0 5px 14px rgba(16,42,67,.05);
}

/* Gradient overlay */

.policy-item::before{
    content:"";
    position:absolute;
    inset:0;
    width:100%;
    height:100%;

    background:#007BFF;

    transform:translateX(-100%);
    transition:transform .45s cubic-bezier(.22,1,.36,1);
    z-index:0;
}

/* Content */

.policy-item i,
.policy-item span{
    position:relative;
    z-index:3;
    transition:color .35s ease;
}

.policy-item i{
    width:22px;
    font-size:18px;
    color:#163A72;
}

/* Hover */

.policy-item:hover,
.policy-item:focus-visible{
    transform:translateY(-3px);
    border-color:#007BFF;
    box-shadow:0 10px 22px rgba(0, 123, 255, 0.16);
}

.policy-item:hover::before,
.policy-item:focus-visible::before{
    transform:translateX(0);
}

.policy-item:hover i,
.policy-item:hover span,
.policy-item:focus-visible i,
.policy-item:focus-visible span{
    color:#fff;
}

/* Click */

.policy-item:active{
    transform:translateY(-1px);
}