/* ----- CSS FOOTER KUSTOM IJOCS ----- */
  .ijocs-footer-wrapper {
    background-color: #0b132b; /* Midnight Blue */
    color: #e2e8f0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    border-top: 4px solid;
    border-image: linear-gradient(to right, #1c3d5a, #3b82f6, #10b981) 1; 
    position: relative;
    margin-top: 60px;
    z-index: 10; /* Memastikan footer kita di layer atas */
  }
  
  .ijocs-footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px 30px;
  }

  .footer-widget {
    flex: 1;
    min-width: 280px;
    margin-bottom: 30px;
    padding: 0 15px;
  }

  .footer-widget h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }

  .footer-widget h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #10b981;
    transition: width 0.4s ease-in-out;
  }

  .footer-widget:hover h3::after {
    width: 80px;
  }

  .footer-widget p {
    font-size: 14.5px;
    color: #94a3b8;
    margin-bottom: 15px;
    text-align: justify;
  }

  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-links li {
    margin-bottom: 12px;
  }

  .footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14.5px;
    display: inline-block;
    transition: all 0.3s ease;
  }

  .footer-links a:hover {
    color: #3b82f6;
    transform: translateX(8px); 
  }

  .footer-contact li {
    display: flex;
    align-items: flex-start;
    font-size: 14.5px;
    color: #94a3b8;
    margin-bottom: 15px;
  }

  .footer-contact .icon {
    color: #10b981;
    margin-right: 12px;
    font-size: 18px;
  }

  .footer-bottom {
    background-color: #060b19;
    padding: 25px 20px 35px; /* Padding bawah ditambah sedikit */
    text-align: center;
    border-top: 1px solid #1e293b;
  }

  .footer-bottom p {
    margin: 5px 0;
    font-size: 13px;
    color: #64748b;
  }

  .footer-bottom a {
    color: #10b981;
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-bottom a:hover {
    color: #3b82f6;
  }

  .cc-badge {
    margin: 15px 0 10px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
  }

  .cc-badge:hover {
    opacity: 1;
  }

  /* ----- KODE RAHASIA UNTUK MENYEMBUNYIKAN LOGO PKP/OJS ----- */
  /* Ini akan menargetkan blok bawaan OJS dan membuatnya hilang */
  .pkp_structure_footer_wrapper .pkp_block.block_developed_by,
  .pkp_brand_footer {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    position: absolute !important;
    pointer-events: none !important;
  }



  /* =========================================================
   CUSTOM HEADER & NAVIGATION BAR IJOCS
========================================================= */

/* 1. Memperjelas Judul Jurnal di atas Banner dengan efek lebih elegan */
.pkp_site_name .is_text {
    color: #ffffff !important;
    text-shadow: 0px 4px 12px rgba(0, 0, 0, 0.9), 0px 2px 5px rgba(0, 0, 0, 0.7) !important; 
    font-size: 2.4rem;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 15px 0;
    display: inline-block;
    margin: 0;
}

/* 2. Merapikan Menu Register & Login (User Navigation) */
.pkp_navigation_user_wrapper {
    background-color: rgba(11, 28, 44, 0.95) !important;
    border-radius: 0 0 8px 8px;
    padding: 6px 20px;
    position: absolute;
    top: 0;
    right: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 100;
}

ul.pkp_navigation_user {
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    gap: 15px;
    align-items: center;
}

ul.pkp_navigation_user li {
    list-style: none !important;
}

.pkp_navigation_user li a {
    color: #e2e8f0 !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.pkp_navigation_user li a:hover {
    color: #10b981 !important; /* Hijau emerald modern */
}

/* 3. Merapikan Navbar Utama agar Rapi, Sejajar, dan Proporsional */
.pkp_structure_head {
    background-color: #0b132b !important; /* Warna navy seragam dari footer */
}

.pkp_navigation_primary_wrapper {
    background-color: #0b132b !important; 
    width: 100%;
    margin: 0;
    padding: 0 20px !important; /* Padding ujung kiri-kanan */
    border-bottom: 3px solid #10b981 !important; /* Garis hijau di bawah navbar */
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    min-height: 55px !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Mengatur Layout Menu Utama (Kiri) dan Pencarian (Kanan) */
ul.pkp_navigation_primary {
    display: flex !important;
    align-items: center !important; 
    flex-wrap: wrap;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

ul.pkp_navigation_primary > li {
    margin: 0 !important;
    padding: 0 !important;
}

ul.pkp_navigation_primary > li > a {
    color: #ffffff !important; /* Memastikan teks berwarna putih */
    font-family: 'Segoe UI', Roboto, sans-serif !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    padding: 18px 20px !important; /* Menjadikan menu proporsional di tengah */
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    text-decoration: none !important;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: block !important;
    line-height: 1 !important;
}

/* Aksen Hover untuk Menu Utama */
ul.pkp_navigation_primary > li > a:hover, 
ul.pkp_navigation_primary > li:hover > a,
ul.pkp_navigation_primary > li[aria-current="page"] > a,
ul.pkp_navigation_primary > li.current > a {
    background-color: #1c3d5a !important; 
    color: #10b981 !important;
}

/* 4. Memperbaiki Posisi Kolom Pencarian / Search Box */
.pkp_navigation_primary_wrapper .pkp_search {
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
}

/* 5. Merapikan Sub-menu (Dropdown) jika ada */
ul.pkp_navigation_primary ul {
    background-color: #0b132b !important; 
    border-top: 2px solid #10b981 !important;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5) !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}

ul.pkp_navigation_primary ul li a {
    color: #cbd5e1 !important;
    padding: 12px 20px !important;
    font-size: 13.5px !important;
    text-transform: none !important;
    font-weight: 500 !important;
    display: block !important;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

ul.pkp_navigation_primary ul li a:hover {
    background-color: #1c3d5a !important;
    color: #10b981 !important;
    padding-left: 25px !important; /* Efek bergeser ke kanan yang elegan */
}



/* =========================================================
   CUSTOM HOMEPAGE IJOCS
========================================================= */

.ijocs-home-wrapper {
    margin-top: 20px;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

/* Banner Selamat Datang */
.ijocs-hero {
    background: linear-gradient(135deg, #0b132b 0%, #1c3d5a 100%);
    color: #ffffff;
    padding: 50px 40px;
    border-radius: 10px;
    margin-bottom: 40px;
    border-bottom: 5px solid #10b981; /* Aksen zamrud */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.ijocs-hero h1 {
    color: #10b981;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 15px;
}

.ijocs-hero p {
    font-size: 16px;
    color: #e2e8f0;
    margin-bottom: 30px;
}

.btn-hero {
    background-color: #10b981;
    color: #ffffff !important;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-hero:hover {
    background-color: #0b132b;
    border: 1px solid #10b981;
    transform: translateY(-3px);
}

/* Layout 2 Kolom Sesuai Sketsa */
.ijocs-home-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

/* Kolom Kiri */
.ijocs-sidebar-custom {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background-color: #f8fafc;
    padding: 25px;
    border-radius: 8px;
    border-top: 4px solid #0b132b;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    height: fit-content;
}

.ijocs-sidebar-custom h3 {
    color: #0b132b;
    font-size: 18px;
    border-bottom: 2px solid #10b981;
    padding-bottom: 10px;
    margin-top: 0;
    margin-bottom: 15px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #475569;
    font-size: 14.5px;
}

.info-list li {
    margin-bottom: 12px;
    line-height: 1.5;
}

/* Kolom Kanan (Konten Utama) */
.ijocs-main-content {
    flex: 2;
    min-width: 300px;
    line-height: 1.8;
    color: #334155;
    font-size: 15px;
}

.ijocs-main-content h2 {
    color: #0b132b;
    margin-top: 0;
    font-weight: 600;
}



/* =========================================================
   CUSTOM SIDEBAR MENU IJOCS (STANDAR SCOPUS Q1)
========================================================= */

.ijocs-sidebar-menu {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-top: 4px solid #0b132b; /* Aksen Midnight Blue di atas blok */
    border-radius: 6px;
    margin-bottom: 25px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    overflow: hidden;
}

.ijocs-sidebar-menu .sidebar-header {
    background-color: #f8fafc;
    color: #0b132b;
    font-weight: 700;
    padding: 15px 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 1px solid #e2e8f0;
}

.ijocs-sidebar-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ijocs-sidebar-menu ul li {
    border-bottom: 1px solid #f1f5f9;
}

.ijocs-sidebar-menu ul li:last-child {
    border-bottom: none;
}

.ijocs-sidebar-menu ul li a {
    display: block;
    padding: 12px 20px;
    color: #475569;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent; /* Persiapan untuk animasi hover */
}

/* Efek saat menu diarahkan (Geser ke kanan + Warna Hijau Zamrud) */
.ijocs-sidebar-menu ul li a:hover {
    background-color: #f8fafc;
    color: #10b981; 
    border-left: 3px solid #10b981;
    padding-left: 26px; 
}

/* Tombol Khusus (Submit & Template) agar berbeda dari menu biasa */
.ijocs-sidebar-menu ul li a.btn-sidebar-action {
    background-color: #10b981;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
    border-left: none;
    padding: 12px;
}
.ijocs-sidebar-menu ul li a.btn-sidebar-action:hover {
    background-color: #0b132b;
    padding-left: 12px; /* Mematikan efek geser untuk tombol */
}
.ijocs-sidebar-menu ul li a.btn-sidebar-action.alt {
    background-color: #f39c12; /* Warna emas/oranye untuk template */
}
.ijocs-sidebar-menu ul li a.btn-sidebar-action.alt:hover {
    background-color: #0b132b;
}

.sidebar-tools {
    padding: 20px;
    text-align: center;
    font-size: 13px;
    color: #64748b;
}


/* =========================================================
   STYLE LOGO INDEXING & VISITOR COUNTER IJOCS
========================================================= */

/* Wadah untuk barisan logo */
.sidebar-logos {
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; /* Jarak antar logo */
    background-color: #ffffff;
}

/* Efek Grayscale untuk Logo */
.sidebar-logos a img {
    max-width: 140px; /* Ukuran maksimal logo agar seragam */
    height: auto; 
    opacity: 0.6;
    transition: all 0.4s ease-in-out;
}

/* Efek saat logo disorot mouse (Berubah ke warna asli & membesar sedikit) */
.sidebar-logos a:hover img {
    opacity: 1;
    transform: scale(1.08); /* Efek zoom tipis yang mewah */
}

/* Wadah untuk Visitor Counter */
.sidebar-counter {
    padding: 15px;
    text-align: center;
    background-color: #f8fafc;
}

.visitor-text {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 12px;
    font-weight: 500;
}


/* =========================================================
   CUSTOM EDITORIAL TEAM IJOCS (SCOPUS STANDARD)
========================================================= */

.ijocs-editorial-wrapper {
    font-family: 'Segoe UI', Roboto, sans-serif;
    color: #334155;
    margin-top: 10px;
}

.editorial-section {
    margin-bottom: 40px;
}

/* Judul Posisi (Editor-in-Chief, dll) */
.section-title {
    color: #0b132b;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #10b981; /* Aksen Zamrud */
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* Desain Kartu Editor */
.editor-card {
    background-color: #f8fafc;
    border-left: 4px solid #0b132b; /* Garis tegas Midnight Blue di kiri */
    padding: 20px 25px;
    margin-bottom: 15px;
    border-radius: 0 6px 6px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.editor-card:hover {
    border-left: 4px solid #10b981; /* Garis berubah hijau saat dihover */
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.editor-name {
    color: #0b132b;
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.editor-affiliation {
    font-size: 14.5px;
    color: #475569;
    font-style: italic;
    margin: 0 0 12px 0;
}

/* Desain Tombol Badge ID Akademik */
.editor-profiles {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.profile-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 20px; /* Bentuk kapsul */
    transition: opacity 0.3s ease;
}

.profile-badge:hover {
    opacity: 0.8;
}

/* Warna Khusus Masing-masing Database */
.scopus { background-color: #e77500; } /* Warna khas Scopus (Oranye) */
.orcid { background-color: #a6ce39; color: #ffffff; } /* Warna khas ORCID (Hijau Muda) */
.scholar { background-color: #4285f4; } /* Warna khas Google (Biru) */


/* =========================================================
   CUSTOM WORKFLOW / PEER REVIEW IJOCS
========================================================= */

.review-workflow {
    position: relative;
    margin-top: 30px;
}

.workflow-step {
    display: flex;
    margin-bottom: 25px;
    background: #f8fafc;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.03);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

/* Animasi melayang saat disorot mouse */
.workflow-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

/* Kotak Angka di sebelah kiri */
.step-number {
    background: #0b132b; /* Midnight Blue */
    color: #10b981; /* Emerald Green */
    font-size: 28px;
    font-weight: 800;
    padding: 20px 25px;
    border-radius: 8px 0 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
}

.step-content {
    padding: 20px 25px;
}

.step-content h3 {
    margin: 0 0 10px 0;
    color: #0b132b;
    font-size: 18px;
    font-weight: 700;
}

.step-content p {
    margin: 0;
    color: #475569;
    font-size: 14.5px;
    line-height: 1.6;
}


