@import url('https://fonts.googleapis.com/css2?family=Blinker:wght@100;200;300;400;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Domine:wght@400..700&display=swap');
:root {
  /* PRIMARY BRAND */
  --primary-orange: #ff8c1a;
  --secondary-black: #0f0f0f;

  /* ACCENT & SUPPORT */
  --accent-brown: #7a5a3a;
  --accent-gray: #6b6b6b;
  --accent-cream: #f5f5f5;

  /* TEXT */
  --text-light: #ffffff;
  --text-dark: #1f1f1f;
  --text-muted: #9a9a9a;

  /* UI ELEMENTS */
  --border-dark: #2a2a2a;
  --border-light: #e0e0e0;

  /* EFFECTS */
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  --transition: all 0.3s ease;
}

/* ===== RESET & BASE STYLES ===== */
* {
  box-sizing: border-box;
}

.pkp_structure_page {
  background-color: var(--accent-cream);
}

body h1,
h2,
h3 {
  font-family: "Domine", serif !important;
}

body h4,
h5,
p {
  font-family: 'Blinker', sans-serif !important;
}


.alert-info {
  background: linear-gradient(135deg, var(--secondary-black) 0%, var(--primary-orange) 50%, var(--accent-cream) 100%);
  border-top-left-radius: 12px;
  border-bottom: 12px;
}

/* Adjust body padding for fixed header */
body {
  padding-top: 80px !important;
  background-color: var(--text-light);
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
  body {
    padding-top: 70px !important;
  }

  .hero-section {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }
}


/* Overlay transparan di atas background (kalau mau efek semi gelap) */

/* ===== HERO SECTION SCROLL ANIMATIONS ===== */
.hero-section {
  position: relative;
  min-height: 100%;
  height: 240px;
  padding-top: 40px;
  background-image:url("https://ijodm.dinamikapublika.id/public/site/Assets/Mosaic_backgroundz.png");
  background-blend-mode: soft-light, overlay;
  background-size: 400px 400px, 300px 300px;
  background-attachment: fixed;
  background-position: center top;
  color: var(--secondary-black) !important;
  transition: all 0.5s ease !important;
}

.hero-section.scrolled {
  background-color: var(--border-dark) !important;
}

.hero-section.scrolled .hero-title {
  color: var(--primary-orange) !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important;
}

.hero-section.scrolled .hero-subtitle,
.hero-section.scrolled .hero-ISSN {
  color: var(--secondary-black) !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5) !important;
}

/* Container mengikuti layout utama OJS */
.hero-container {
  max-width: 1200px;
  /* samakan dengan .pkp_structure_main */
  margin: 0 auto;
  padding: 0 1.5rem;
  /* padding kiri-kanan agar sejajar */
  text-align: left;
  /* sejajarkan dengan main content */
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.hero-subtitle {
  font-size: 3.3rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.hero-issn {
  font-size: 3rem;
  font-weight: 400;
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 4rem;
  }

  .hero-subtitle {
    font-size: 3rem;
  }
}


.page_index_journal {
  display: flex;
  flex-direction: column;
}

.page h2 {
  text-align: center;
  font-weight: bold;
  color: var(--accent-brown);
}

/* Geser .additional_content ke atas */
.page_index_journal .additional_content {
  order: -1;
}

/* ===== MODERN ADDITIONAL CONTENT - UPDATED ===== */
.content-grid {
  display: grid;
  grid-template-areas:
    "cover details"
    "about about"
    "focus focus"
    "indexing indexing";
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-title {
  text-align: center;
  font-weight: 500;
  font-size: 2rem;
  color: var(--primary-orange);
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--primary-orange);
}

.section {
  background-color: var(--accent-cream);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.section:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

/* Grid Area Assignments */
.section.cover-section {
  grid-area: cover;
}

.section.details-section {
  grid-area: details;
}

.section.about-section {
  grid-area: about;
}

.section.focus-scope-section {
  grid-area: focus;
}

.section.indexing-section {
  grid-area: indexing;
}

/* Journal Cover Section */
.cover-image {
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  margin: 0 auto;
  display: block;
}

.cover-image:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Journal Details Section */
.journal-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  height: 100%;
  justify-content: center;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem;
  border-bottom: 1px solid var(--border-dark);
  background: var(--border-dark);
  border-radius: 8px;
  transition: var(--transition);
  min-height: 70px;
}

.detail-item:hover {
  background: var(--primary-orange);
  transform: translateX(5px);
}

.detail-item:hover .detail-label,
.detail-item:hover .detail-value {
  color: var(--secondary-black);
}

.detail-label {
  font-weight: 700;
  color: var(--text-light);
  font-size: 1.2rem;
}

.detail-value {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1.2rem;
  text-align: right;
}

/* About the Journal Section */
.about-section {
  min-height: 300px;
}

.about-text {
  line-height: 1.7;
  text-align: justify;
  font-size: 1.4rem;
  margin: 0;
  color: var(--text-dark);
}

.about-text p {
  margin-bottom: 1.5rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* Focus and Scope Section - Updated */
.focus-scope-section {
  text-align: left;
}

.scope-intro {
  line-height: 1.7;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
  color: var(--text-dark);
  text-align: center;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.scope-card {
  background: var(--secondary-black);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.scope-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-orange);
}

.scope-card-header {
  background: linear-gradient(135deg, var(--accent-brown) 0%, #2c2c2c 100%);
  color: var(--accent-brown);
  border-bottom: 3px solid var(--primary-orange);
  flex-shrink: 0;
}

.scope-card-header h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-light);
  padding: 3rem 1.5rem;
}

.scope-card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.scope-card-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.scope-card-content li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
  color: var(--text-dark);
}

.scope-card-content li:last-child {
  margin-bottom: 0;
}

.scope-card-content li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-orange);
  font-size: 1.2rem;
  font-weight: bold;
}

.scope-card-content li strong {
  color: var(--accent-brown);
  font-weight: 600;
}

.scope-note {
  background: linear-gradient(135deg, rgba(213, 155, 137, 0.1) 0%, rgba(248, 244, 239, 0.3) 100%);
  border-radius: 10px;
  padding: 1.5rem;
  border-left: 4px solid var(--primary-orange);
  margin-top: 1rem;
}

.scope-note p {
  margin: 0;
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 1.4rem;
  text-align: center;
}

/* Indexing Section - NO HORIZONTAL SCROLL */
.indexing-section {
  text-align: center;
}

.indexing-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
  justify-items: center;
}

.index-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  width: 100%;
  max-width: 160px;
  padding: 1rem;
  background-color: var(--text-light);
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 2px solid var(--border-dark);
}

.index-logo-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(213, 155, 137, 0.2);
  border-color: var(--primary-orange);
}

.index-logo {
  max-width: 100%;
  max-height: 45px;
  width: auto;
  height: auto;
  filter: grayscale(40%);
  transition: var(--transition);
}

.index-logo-container:hover .index-logo {
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1000px) {
  .content-grid {
    grid-template-areas:
      "cover"
      "details"
      "about"
      "focus"
      "indexing";
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .scope-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 1.5rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .detail-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    padding: 0.8rem;
    min-height: auto;
  }

  .detail-value {
    text-align: center;
  }

  .indexing-logos {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
  }

  .index-logo-container {
    height: 70px;
    max-width: 140px;
    padding: 0.8rem;
  }

  .index-logo {
    max-height: 35px;
  }
}

@media (max-width: 768px) {
  .indexing-logos {
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 1rem;
  }

  .index-logo-container {
    height: 65px;
    max-width: 130px;
    padding: 0.7rem;
  }

  .index-logo {
    max-height: 32px;
  }

  .scope-card-header h3 {
    font-size: 1.2rem;
  }

  .scope-card-content li {
    font-size: 0.95rem;
  }

  .cover-image {
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 1.2rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .cover-image {
    max-width: 200px;
  }

  .detail-label,
  .detail-value {
    font-size: 1rem;
  }

  .about-text,
  .scope-intro,
  .scope-note p {
    font-size: 1rem;
  }

  .scope-card-content li {
    font-size: 0.9rem;
  }

  .indexing-logos {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.8rem;
  }

  .index-logo-container {
    height: 60px;
    max-width: 120px;
    padding: 0.6rem;
  }

  .index-logo {
    max-height: 30px;
  }
}

/* ===== HEADER & NAVIGATION (VISIKOM) ===== */
/* ===== HEADER SCROLL ANIMATIONS ===== */
.navbar-default {
  background-color: var(--secondary-black);
  border: none;
  border-bottom: 2px solid var(--border-dark);
  box-shadow: var(--shadow);
  margin-bottom: 0;
  transition: all 0.4s ease !important;
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.navbar-default.header-scrolled {
  background-color: var(--accent-brown) !important;
  border-bottom-color: var(--primary-orange) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
}

.navbar-default.header-scrolled .nav>li>a {
  color: var(--secondary-black) !important;
}

.navbar-default.header-scrolled .nav>li>a:hover,
.navbar-default.header-scrolled .nav>li>a:focus {
  background-color: var(--primary-orange) !important;
  color: var(--accent-brown) !important;
}

.navbar-default.header-scrolled .navbar-brand img {
  filter: brightness(0) invert(1) !important;
}

.navbar-default.header-scrolled .navbar-form .form-control {
  border-color: var(--primary-orange) !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: var(--secondary-black) !important;
}

.navbar-default.header-scrolled .navbar-form .btn.btn-default {
  background-color: var(--primary-orange) !important;
  color: var(--accent-brown) !important;
  border-color: var(--primary-orange) !important;
}

/* Header Container */
.navbar>.container-fluid,
#headerNavigationContainer .container-fluid {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 2px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Site name & logo */
.site-name {
  height: auto;
  margin: 0;
  padding: 0;
  background: none;
}

.site-name a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-name a img {
  width: 240px;
  height: 90px;
  object-fit: cover;
  border: none;
}

/* ===== NAVIGATION MENU ===== */
#nav-menu {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.navbar-brand {
  height: 100% !important;
  padding: 1px 15px !important;
}

.navbar-nav {
  display: flex;
  align-items: center;
  margin: 0;
  gap: 10px;
}


.navbar-default .nav>li>a {
  color: var(--primary-orange) !important;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 20px;
  transition: var(--transition);
  font-family: "Domine", serif !important;
  font-weight: 400;
}

.navbar-default .nav>li>a:hover,
.navbar-default .nav>li>a:focus {
  background-color: var(--accent-cream);
  color: var(--secondary-black) !important;
}

/* Dropdown menu */
.dropdown-menu {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 0;
}

.dropdown-menu>li>a {
  padding: 10px 20px;
  color: var(--text-dark) !important;
  transition: var(--transition);
}

.dropdown-menu>li>a:hover {
  background-color: var(--primary-orange);
  color: var(--accent-brown);
}

/* ===== SEARCH FORM ===== */
.navbar-form.navbar-left {
  margin: 0 0 0 15px;
  display: flex;
  align-items: center;
}

.navbar-form .form-control {
  border: 2px solid var(--border-dark);
  border-radius: 20px 0 0 20px;
  padding: 8px 15px;
  height: 38px;
  width: 200px;
  transition: var(--transition);
}

.navbar-form .form-control:focus {
  border-color: var(--primary-orange);
  outline: none;
  box-shadow: none;
}

.navbar-form .btn.btn-default {
  border: 2px solid var(--primary-orange);
  border-radius: 0 20px 20px 0;
  background: var(--primary-orange);
  color: var(--accent-brown);
  height: 38px;
  padding: 0 15px;
  transition: var(--transition);
}

.navbar-form .btn.btn-default:hover {
  background: var(--accent-brown);
  color: var(--accent-brown);
}

/* ===== MOBILE MENU ===== */
.navbar-toggle {
  border: none;
}

.navbar-toggle .icon-bar {
  background-color: var(--text-dark);
}


/* ===== MAIN CONTENT LAYOUT ===== */
.pkp_structure_content.container {
  background-color: #ffffff;
  ;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  padding: 0 !important;
  max-width: 1200px;
}

/* Journal Description */
.journal-description {
  display: none !important;
}


.cmp_breadcrumbs {
  width: 100%;
  max-width: 800px;
}

.breadcrumb {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: var(--text-dark);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.breadcrumb::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-orange), var(--border-dark));
}

.breadcrumb li {
  display: flex;
  align-items: center;
  position: relative;
}

.breadcrumb li:not(:last-child)::after {
  content: '›';
  margin: 0 12px;
  color: var(--primary-orange);
  font-weight: bold;
  font-size: 18px;
}

.breadcrumb a {
  text-decoration: none;
  color: var(--text-light);
  padding: 10px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.breadcrumb a:hover {
  background-color: rgba(213, 155, 137, 0.15);
  color: var(--primary-orange);
  transform: translateY(-2px);
}

.breadcrumb .active {
  color: var(--primary-orange);
  padding: 10px 16px;
  font-weight: 600;
  position: relative;
}

.breadcrumb .active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background-color: var(--primary-orange);
  border-radius: 2px;
}

/* Animasi untuk breadcrumb */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.breadcrumb li {
  animation: fadeInUp 0.5s ease forwards;
}

.breadcrumb li:nth-child(1) {
  animation-delay: 0.1s;
}

.breadcrumb li:nth-child(2) {
  animation-delay: 0.2s;
}

/* Responsif */
@media (max-width: 480px) {
  .breadcrumb {
    flex-direction: column;
    padding: 12px;
  }

  .breadcrumb li:not(:last-child)::after {
    display: none;
  }

  .breadcrumb li {
    margin-bottom: 8px;
  }

  .breadcrumb li:last-child {
    margin-bottom: 0;
  }
}


/* ===== SIDEBAR STYLING ===== */

.pkp_block.block_make_submission a{
  color: var(--secondary-black) !important;
  background-color: var(--primary-orange) !important;
}

.pkp_block.block_custom {
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pkp_block.block_custom:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.modern-accordion {
  width: 100%;
}

.accordion-item {
  border-bottom: 1px solid var(--border-dark);
  overflow: hidden;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  margin: 0;
}

.accordion-button {
  width: 100%;
  background: white;
  border: none;
  padding: 20px 20px;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.accordion-button:hover {
  background-color: rgba(213, 155, 137, 0.1);
}

.accordion-button:after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  transition: var(--transition);
  color: var(--primary-orange);
}

.accordion-button.active {
  background-color: rgba(213, 155, 137, 0.15);
  color: var(--primary-orange);
}

.accordion-button.active:after {
  transform: rotate(180deg);
  color: var(--accent-brown);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: white;
}

.accordion-body {
  padding: 0 20px 20px;
}

/* ===== ABOUT JOURNAL BUTTONS MODERN v2.3 ===== */
.journal-buttons-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.journal-btn {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  text-align: center;
  font-weight: bold;
  padding: 0.6em 2em;
  border: 3px solid var(--primary-orange);
  border-radius: 2px;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  transition: 0.3s ease all;
  z-index: 1;
  width: 100%;
  margin: 5px 0;
  height: 60px !important;

}

a .journal-btn {
  color: var(--primary-orange) !important;
}

.journal-btn:before {
  transition: 0.5s all ease;
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  bottom: 0;
  opacity: 0;
  content: '';
  background-color: var(--primary-orange);
  z-index: -1;
}

.journal-btn:hover, .journal-btn:focus {
  color: white;
}

.journal-btn:hover:before, .journal-btn:focus:before {
  transition: 0.5s all ease;
  left: 0;
  right: 0;
  opacity: 1;
}

.journal-btn:active {
  transform: scale(0.9);
}

/* Staggered animation for buttons */
.journal-buttons-grid .journal-btn {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.journal-buttons-grid .journal-btn:nth-child(1) {
  animation-delay: 0.05s;
}

.journal-buttons-grid .journal-btn:nth-child(2) {
  animation-delay: 0.1s;
}

.journal-buttons-grid .journal-btn:nth-child(3) {
  animation-delay: 0.15s;
}

.journal-buttons-grid .journal-btn:nth-child(4) {
  animation-delay: 0.2s;
}

.journal-buttons-grid .journal-btn:nth-child(5) {
  animation-delay: 0.25s;
}

.journal-buttons-grid .journal-btn:nth-child(6) {
  animation-delay: 0.3s;
}

.journal-buttons-grid .journal-btn:nth-child(7) {
  animation-delay: 0.35s;
}

.journal-buttons-grid .journal-btn:nth-child(8) {
  animation-delay: 0.4s;
}

.journal-buttons-grid .journal-btn:nth-child(9) {
  animation-delay: 0.45s;
}

.journal-buttons-grid .journal-btn:nth-child(10) {
  animation-delay: 0.5s;
}

.journal-buttons-grid .journal-btn:nth-child(11) {
  animation-delay: 0.55s;
}

.journal-buttons-grid .journal-btn:nth-child(12) {
  animation-delay: 0.6s;
}

.journal-buttons-grid .journal-btn:nth-child(13) {
  animation-delay: 0.65s;
}

.journal-buttons-grid .journal-btn:nth-child(14) {
  animation-delay: 0.7s;
}

.journal-buttons-grid .journal-btn:nth-child(15) {
  animation-delay: 0.75s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Accordion button dengan icon - Enhanced */
.accordion-button .fa-book-open {
  margin-right: 10px;
  opacity: 0.9;
  transition: all 0.3s ease;
  font-family: 'Blinker', sans-serif;
}

.accordion-button.active .fa-book-open {
  transform: rotate(15deg);
  opacity: 1;
}

.accordion-button {
  font-family: "Domine", serif !important;
}

/* ===== RESPONSIVE BUTTONS v2.3 ===== */
@media (max-width: 768px) {
  .journal-btn {
    padding: 18px 20px;
    min-height: 56px;
    gap: 14px;
  }

  .journal-btn i {
    font-size: 1.2rem;
    width: 22px;
  }

  .journal-btn span {
    font-size: 0.95rem;
  }

  .journal-btn::after {
    right: 20px;
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 480px) {
  .journal-btn {
    padding: 16px 18px;
    min-height: 52px;
    gap: 12px;
  }

  .journal-btn i {
    font-size: 1.1rem;
    width: 20px;
  }

  .journal-btn span {
    font-size: 0.9rem;
  }

  .journal-btn::after {
    right: 18px;
    width: 14px;
    height: 14px;
  }
}

.accordion-body a {
  color: var(--primary-orange);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  padding: 5px 0;
}

.accordion-body a:hover {
  color: var(--text-dark);
  transform: translateX(5px);
}

.accordion-body a i {
  color: var(--primary-orange);
  font-size: 0.9rem;
  width: 18px;
}

.image-grid img {
  width: 100%;
  border-radius: 8px;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.image-grid img:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 15px;
}

.stat-box {
  background: var(--secondary-black);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  border: 1px solid var(--border-dark);
}

.stat-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-orange);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-dark);
}


/* ===== FOOTER STYLING ===== */
.footer {
  background: linear-gradient(135deg, var(--neutral-light), #e0e0e0);
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand-logo img {
  width: 240px;
  height: auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 0 0 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #ccc;
}

.footer-col h6 {
  color: var(--accent-brown);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent-cream);
}

.footer-col p {
  color: var(--neutral-dark);
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-col small {
  color: var(--neutral-dark);
  line-height: 1.5;
  display: block;
  margin-bottom: 10px;
}

.footer-license {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
  justify-content: left !important;
}

.footer-license a {
  transition: transform 0.3s ease;
}

.footer-license a:hover {
  transform: translateY(-3px);
}

.footer-license img {
  height: 45px;
  width: auto;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 25px 0;
}

.footer-logos a {
  transition: transform 0.3s ease;
}

.footer-logos a:hover {
  transform: translateY(-3px);
}

.footer-logos img {
  height: 35px;
  width: auto;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.copyright {
  margin-top: 20px;
  color: var(--neutral-dark);
  font-size: 1rem;
}

.copyright a {
  color: var(--primary-orange);
  text-decoration: none;
  font-weight: 600;
}

.copyright a:hover {
  text-decoration: underline;
}

/* ===== HIDDEN ELEMENTS ===== */
#navigationUser,
footer .col-md-2 {
  display: none !important;
}

/* ===== RESPONSIVE DESIGN - MOBILE FIRST ===== */

/* Mobile (default) */
.pkp_structure_main,
.pkp_structure_sidebar {
  width: 100%;
  padding: 20px 15px;
}

/* ===== RESPONSIVE + LAYOUT FIX ===== */

/* Default layout (Desktop) */
.pkp_structure_content.container {
  display: grid;
  grid-template-columns: 70% 30%;
  grid-template-areas: "main sidebar";
  gap: 0;
  padding: 0 !important;
  margin: 0 auto;
  max-width: 1200px;
}

/* Grid area placement */
.pkp_structure_main {
  grid-area: main;
  padding: 12px;
  border-right: 1px solid #e0e0e0;
}

.pkp_structure_sidebar {
  grid-area: sidebar;
  padding: 40px 20px;
}

/* ===== FOOTER CENTERED ===== */
.footer {
  background: linear-gradient(135deg, var(--neutral-light), #e0e0e0);
  text-align: center;
  padding: 40px 0 20px;
}

.footer .container {
  width: 100%;
  /* agak ketengah */
  margin: 0 auto;
  align-items: center;
}

/* Footer content grid */
.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-items: center;
  text-align: left;
}

/* License & logos */
.footer-license,
.footer-logos {
  justify-content: center;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .pkp_structure_content.container {
    grid-template-columns: 65% 35%;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.4rem;
  }
}

@media (max-width: 800px) {

  /* Adjust body padding for mobile */
  body {
    padding-top: 60px !important;
  }

  /* Mobile Header */
  .navbar-default {
    padding: 5px 0;
  }

  .site-name a img {
    width: 200px;
    height: auto;
  }

  /* Hide desktop navigation */
  #nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--secondary-black);
    z-index: 1002;
    padding: 70px 20px 20px;
    overflow-y: auto;
    transition: var(--transition);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    display: block !important;
  }

  #nav-menu.nav-open {
    right: 0;
  }

  /* Mobile navigation layout */
  #main-navigation {
    flex-direction: column;
    width: 100%;
  }

  #main-navigation>li {
    width: 100%;
    border-bottom: 1px solid var(--border-dark);
  }

  #main-navigation>li>a {
    border-radius: 0;
    padding: 15px;
    display: block;
    color: var(--text-light) !important;
  }

  /* Mobile dropdown handling */
  .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    border-radius: 0;
    padding-left: 15px;
    float: none;
    width: 100%;
    background-color: var(--secondary-black) !important;
  }

  .dropdown-menu.show {
    display: block;
  }

  .dropdown>a::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    float: right;
    transition: var(--transition);
  }

  .dropdown.active>a::after {
    transform: rotate(180deg);
  }

  /* Mobile search form */
  .navbar-form.navbar-left {
    width: 100%;
    margin: 20px 0 0;
    justify-content: center;
  }

  .navbar-form .form-control {
    width: 70%;
  }

  /* Hero section mobile */
  .hero-section {
    padding: 40px 0;
    height: auto;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.4;
  }

   /* 2. MAIN CONTENT LAYOUT */
  .pkp_structure_content.container {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Reset Bootstrap grid classes untuk mobile */
  .pkp_structure_main.col-xs-12.col-sm-10.col-md-8,
  .pkp_structure_sidebar.left.col-xs-12.col-sm-8.col-md-4 {
    width: 100% !important;
    float: none !important;
    padding: 15px !important;
    margin: 0 !important;
  }

  .pkp_structure_main {
    width: 100% !important;
    padding: 15px !important;
    margin-bottom: 70px !important;
    border-right: none !important;
  }

  .section {
    padding: 1.2rem;
  }

  .section-title {
    font-size: 1.3rem;
  }

  /* Editor info mobile */
  .editor-info {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .editor-photo {
    width: 100px;
    height: 100px;
  }

  /* Indexing logos mobile */
  .indexing-logos {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
  }

  .index-logo-container {
    height: 80px;
    padding: 0.8rem;
  }

  .index-logo {
    max-height: 50px;
  }

  /* Footer mobile */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-license {
    justify-content: center;
  }

  .footer-logos {
    gap: 8px;
  }

  .footer-logos img {
    height: 30px;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section {
    padding: 1rem;
  }

  .section-title {
    font-size: 1.2rem;
  }

  .indexing-logos {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.8rem;
  }

  .index-logo-container {
    height: 70px;
    padding: 0.6rem;
  }

  .navbar-form .form-control {
    width: 60%;
  }

  /* Mobile menu button styling */
  .navbar-toggle {
    display: block;
    margin-right: 0;
  }

  .navbar-toggle .icon-bar {
    background-color: var(--text-dark);
    transition: var(--transition);
  }

  .navbar-default.header-scrolled .navbar-toggle .icon-bar {
    background-color: var(--secondary-black);
  }
}

@media (max-width: 400px) {
  .hero-title {
    font-size: 1.6rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .site-name a img {
    width: 160px;
  }

  .indexing-logos {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }
}

/* Mobile overlay for menu */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  display: none;
}

.mobile-overlay.active {
  display: block;
}

/* Ensure navbar toggle is visible on mobile */
.navbar-toggle {
  display: none;
}

@media (max-width: 800px) {
  .navbar-toggle {
    display: block;
  }
}

/* ===== MOBILE HEADER LAYOUT ===== */
@media (max-width: 800px) {

  /* Header container adjustment */
  .navbar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 15px;
  }

  /* Logo di kiri */
  .site-name {
    margin: 0;
    flex-shrink: 0;
  }

  .site-name a img {
    width: 180px !important;
    height: auto !important;
    max-height: 50px;
    object-fit: contain;
  }

  /* Burger menu di kanan */
  .navbar-toggle {
    display: block;
    margin: 0;
    order: 2;
    border: none;
    background: transparent;
    padding: 8px;
    margin-left: auto;
  }

  .navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--text-dark);
    border-radius: 1px;
    margin: 4px 0;
    transition: var(--transition);
  }

  .navbar-default.header-scrolled .navbar-toggle .icon-bar {
    background-color: var(--secondary-black);
  }

  /* Hilangkan padding yang tidak perlu */
  #headerNavigationContainer .container-fluid {
    padding: 0;
  }

  /* Pastikan row tidak mengganggu layout */
  .navbar>.container-fluid .row {
    margin: 0;
  }

  /* Sembunyikan elemen yang tidak diperlukan di mobile */
  #navigationUser {
    display: none !important;
  }

  /* Atur ulang padding header */
  .navbar-default {
    padding: 8px 0;
  }
}

/* Untuk layar sangat kecil, perkecil logo */
@media (max-width: 480px) {
  .site-name a img {
    width: 150px !important;
    max-height: 45px;
  }

  .navbar-toggle {
    padding: 6px;
  }

  .navbar-toggle .icon-bar {
    width: 20px;
  }
}

/* ===== SIDEBAR MOBILE STYLES ===== */
#sidebarToggle {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--primary-orange);
  color: white;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

#sidebarToggle:hover {
  background: var(--accent-brown);
  transform: scale(1.1);
}

/* Mobile Sidebar Overlay */
.sidebar-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1004;
  display: none;
}

.sidebar-mobile-overlay.active {
  display: block;
}

/* Mobile Sidebar Container */
.sidebar-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 90%;
  max-width: 400px;
  height: 100vh;
  background: var(--secondary-black);
  z-index: 1005;
  transition: var(--transition);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.sidebar-mobile.active {
  right: 0;
}

.sidebar-mobile-header {
  background: var(--accent-brown);
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--primary-orange);
  flex-shrink: 0;
}

.sidebar-mobile-header h3 {
  margin: 0;
  color: white;
  font-size: 1.3rem;
}

.sidebar-close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 5px;
  transition: var(--transition);
}

.sidebar-close-btn:hover {
  color: var(--primary-orange);
}

.sidebar-mobile-content {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

/* Hide desktop sidebar on mobile */
@media (max-width: 800px) {
  .pkp_structure_sidebar {
    display: none !important;
  }

  #sidebarToggle {
    display: block;
  }
}

@media (max-width: 600px) {
  .sidebar-mobile {
    width: 100%;
    max-width: none;
  }

  #sidebarToggle {
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}

/* ===== PERBAIKAN OVERLAY NAVBAR ===== */
.mobile-overlay {
  position: fixed;
  top: 60px;
  /* Mulai dari bawah navbar */
  left: 0;
  width: 100%;
  height: calc(100vh - 60px);
  /* Tinggi dikurangi tinggi navbar */
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  display: none;
}

.mobile-overlay.active {
  display: block;
}

/* Pastikan navbar tetap di atas semua overlay */
.navbar-default {
  z-index: 1002 !important;
}

#nav-menu {
  z-index: 1003 !important;
}

/* ===== SIDEBAR MOBILE STYLES ===== */
#sidebarToggle {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--primary-orange);
  color: white;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1006;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

#sidebarToggle:hover {
  background: var(--accent-brown);
  transform: scale(1.1);
}

/* Mobile Sidebar Overlay */
.sidebar-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1004;
  display: none;
}

.sidebar-mobile-overlay.active {
  display: block;
}

/* Mobile Sidebar Container */
.sidebar-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 90%;
  max-width: 400px;
  height: 100vh;
  background: var(--secondary-black);
  z-index: 1005;
  transition: var(--transition);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.sidebar-mobile.active {
  right: 0;
}

.sidebar-mobile-header {
  background: var(--accent-brown);
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--primary-orange);
  flex-shrink: 0;
}

.sidebar-mobile-header h3 {
  margin: 0;
  color: white;
  font-size: 1.3rem;
}

.sidebar-close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 5px;
  transition: var(--transition);
}

.sidebar-close-btn:hover {
  color: var(--primary-orange);
}

.sidebar-mobile-content {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

/* Hide desktop sidebar on mobile */
@media (max-width: 800px) {
  .pkp_structure_sidebar {
    display: none !important;
  }

  #sidebarToggle {
    display: block;
  }
}

@media (max-width: 600px) {
  .sidebar-mobile {
    width: 100%;
    max-width: none;
  }

  #sidebarToggle {
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}

.pkp_block.block_make_submission a {
  width: 100%;
}

.pkp_block.block_make_submission a::before {
  font-family: "FontAwesome";
  content: "\f1d8";
  /* kode untuk fa-paper-plane */
  margin-right: 8px;
  font-size: 14px;
  display: inline-block;
  vertical-align: middle;
}

.pkp_block.block_make_submission a :hover {
  background-color: var(--primary-orange);
  color: #1c1c1c;
}

/* ===== MODERN SEARCH ACCORDION ===== */
.modern-search-form {
  padding: 0;
}

.search-input-group {
  display: flex;
  gap: 0;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--border-dark);
  transition: var(--transition);
  background: white;
}

.search-input-group:focus-within {
  border-color: var(--primary-orange);
  box-shadow: 0 4px 15px rgba(213, 155, 137, 0.2);
  transform: translateY(-1px);
}

.search-input {
  flex: 1;
  border: none;
  padding: 12px 20px;
  font-size: 0.95rem;
  background: transparent;
  outline: none;
  color: var(--text-dark);
}

.search-input::placeholder {
  color: #999;
  font-size: 0.9rem;
}

.search-submit {
  background: var(--primary-orange);
  color: white;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

.search-submit:hover {
  background: var(--accent-brown);
  transform: none;
}

.search-text {
  display: inline;
}


/* Accordion button dengan icon */
.accordion-button .fa-search {
  margin-right: 8px;
  opacity: 0.8;
}

/* ===== RESPONSIVE SEARCH ===== */
@media (max-width: 768px) {
  .search-input-group {
    flex-direction: column;
    border-radius: 15px;
    border-width: 1px;
  }

  .search-input {
    padding: 15px;
    border-bottom: 1px solid var(--border-dark);
  }

  .search-submit {
    padding: 12px 15px;
    justify-content: center;
  }

}

@media (max-width: 480px) {
  .search-text {
    display: none;
  }

  .search-submit {
    padding: 12px;
  }

}

/* Animation untuk search focus */
@keyframes searchPulse {
  0% {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  50% {
    box-shadow: 0 4px 20px rgba(213, 155, 137, 0.3);
  }

  100% {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
}

.search-input-group:focus-within {
  animation: searchPulse 2s ease-in-out;
}


/*staticpage*/

/* ===== BASE SECTION STYLES ===== */
.section-v3 {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.section-v3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-orange), var(--accent-brown));
}

/* Background Variations */
.focus-scope-section-v3,
.copyright-section-v3,
.ethics-section-v3 {
  background: var(--text-light);
}

.peer-review-section-v3,
.open-access-section-v3,
.fees-section-v3 {
 background: var(--text-light);
}

.plagiarism-retraction-v3 {
  background: var(--text-light);
}

.archiving-section {
  background: var(--text-light);
}

/* ===== SECTION HEADERS ===== */
.section-header,
.focus-header,
.review-header,
.policy-header,
.archiving-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.version-badge,
.focus-badge,
.review-badge,
.archive-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-orange), var(--accent-brown));
  color: var(--accent-brown);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.archive-badge {
  padding: 10px 25px;
  text-transform: uppercase;
}

.section-main-title,
.focus-main-title,
.review-main-title,
.policy-main-title,
.archive-main-title {
  color: var(--accent-brown);
  font-weight: 800;
  margin-bottom: 15px;
  font-size: 42px;
  background: linear-gradient(135deg, var(--accent-brown) 0%, var(--primary-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.archive-main-title {
  margin-bottom: 20px;
}

.section-subtitle,
.focus-subtitle,
.review-subtitle,
.policy-subtitle,
.archive-subtitle {
  color: var(--text-dark);
  font-size: 18px;
  margin-bottom: 30px;
  font-weight: 400;
}

.archive-subtitle {
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Header Decorations */
.header-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.decoration-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
}

.decoration-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary-orange);
  margin: 0 15px;
}

.header-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.graphic-circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--primary-orange);
}

.graphic-line {
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-orange), var(--accent-brown));
  margin: 0 15px;
}

/* ===== STATS COMPONENTS ===== */
.scope-stats,
.stats-grid,
.overview-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.scope-stats {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.scope-stat,
.stat-item,
.overview-stat {
  background: white;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-top: 4px solid var(--primary-orange);
  transition: transform 0.3s ease;
}

.scope-stat {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
}

.scope-stat:hover,
.stat-item:hover,
.overview-stat:hover {
  transform: translateY(-5px);
}

.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(213, 155, 137, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-orange);
  flex-shrink: 0;
}

.stat-content {
  flex: 1;
}

.stat-number,
.overview-stat .stat-number,
.stat-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-brown);
  margin-bottom: 8px;
}

.stat-value {
  font-size: 36px;
  margin-bottom: 8px;
}

.stat-label,
.overview-stat .stat-label {
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
}

.review-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.review-stat {
  text-align: center;
}

.archive-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}

.stat {
  text-align: center;
}

/* ===== CARD COMPONENTS ===== */
.scope-card,
.modern-card,
.guideline-card,
.access-card,
.copyright-card,
.fees-card,
.ethics-card,
.system-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(230, 223, 216, 0.5);
}

.scope-card:hover,
.modern-card:hover,
.guideline-card:hover,
.access-card:hover,
.copyright-card:hover,
.fees-card:hover,
.ethics-card:hover,
.system-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.system-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Card Headers */
.scope-card .card-header,
.modern-card .card-header,
.guideline-card .card-header,
.access-card .card-header,
.copyright-card .card-header,
.fees-card .card-header,
.ethics-card .card-header {
  padding: 25px 30px;
  background: linear-gradient(135deg, var(--accent-brown) 0%, #2c2c2c 100%);
  color: var(--accent-brown);
  display: flex;
  align-items: center;
  gap: 15px;
}

.scope-card.primary .card-header {
  background: linear-gradient(135deg, var(--primary-orange) 0%, #e8a798 100%);
}

.scope-card.secondary .card-header {
  background: linear-gradient(135deg, var(--accent-brown) 0%, #3a3a3a 100%);
}

.access-card.primary .card-header {
  background: linear-gradient(135deg, var(--primary-orange) 0%, #e8a798 100%);
}

/* Card Icons */
.card-icon,
.system-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-orange);
  flex-shrink: 0;
}

.system-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: rgba(213, 155, 137, 0.1);
  margin-bottom: 25px;
}

.system-card.secondary .system-icon {
  background: rgba(28, 28, 28, 0.1);
  color: var(--accent-brown);
}

.system-card.tertiary .system-icon {
  background: rgba(139, 115, 85, 0.1);
  color: #8b7355;
}

.access-card .card-icon,
.scope-card .card-icon {
  color: white;
}

.card-header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: var(--secondary-black);
}

/* Card Content */
.card-content {
  padding: 30px;
}

.card-content h3 {
  color: var(--accent-brown);
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}

.card-content p {
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 25px;
}

.system-card h3 {
  color: var(--accent-brown);
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 600;
}

.system-card p {
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 15px;
}

/* ===== SYSTEM CARD SPECIAL STYLES ===== */
.system-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.system-card.primary::before {
  background: linear-gradient(90deg, var(--primary-orange), #e8a798);
}

.system-card.secondary::before {
  background: linear-gradient(90deg, var(--accent-brown), #3a3a3a);
}

.system-card.tertiary::before {
  background: linear-gradient(90deg, #8b7355, #a88c6c);
}

.system-card ul {
  padding-left: 20px;
  color: var(--text-dark);
  margin-bottom: 25px;
}

.system-card li {
  margin-bottom: 8px;
  line-height: 1.5;
  position: relative;
}

.system-card li::before {
  content: '✓';
  color: var(--primary-orange);
  font-weight: bold;
  position: absolute;
  left: -20px;
}

.system-status {
  display: flex;
  align-items: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-dark);
}

.status-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #10b981;
  margin-right: 10px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

.status-text {
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
}

/* ===== LIST COMPONENTS ===== */
.focus-list,
.scope-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.focus-item {
  display: flex;
  gap: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--border-dark);
}

.focus-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.focus-marker {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(213, 155, 137, 0.1);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.focus-content h4 {
  color: var(--accent-brown);
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
}

.focus-content p {
  color: var(--text-dark);
  margin-bottom: 0;
  line-height: 1.6;
  font-size: 14px;
}

/* Scope Types */
.scope-type {
  padding-bottom: 25px;
  border-bottom: 1px solid var(--border-dark);
}

.scope-type:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.scope-type h4 {
  color: var(--accent-brown);
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
}

.scope-type p {
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 14px;
}

.type-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.type-tag {
  background: rgba(213, 155, 137, 0.1);
  color: var(--primary-orange);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid rgba(213, 155, 137, 0.2);
}

.type-tag.severe {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.type-tag.moderate {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.type-tag.minor {
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

/* ===== PROCESS STYLES ===== */
.process-overview {
  text-align: center;
  margin-bottom: 60px;
}

.overview-title {
  color: var(--accent-brown);
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 32px;
}

.overview-description {
  color: var(--text-dark);
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.6;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 60px;
}

.process-step {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid var(--primary-orange);
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-orange), var(--accent-brown));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.step-header h3 {
  color: var(--accent-brown);
  margin: 0;
  font-size: 22px;
  font-weight: 600;
}

.step-content p {
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 15px;
}

.step-details {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.detail-item {
  display: flex;
  gap: 8px;
}

.detail-label {
  color: var(--accent-brown);
  font-weight: 500;
}

.detail-value {
  color: var(--primary-orange);
  font-weight: 600;
}

/* Process Flow */
.process-flow,
.retraction-timeline {
  margin: 25px 0;
}

.flow-step,
.timeline-item {
  display: flex;
  margin-bottom: 25px;
  position: relative;
}

.step-marker {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-orange), var(--accent-brown));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-right: 20px;
  flex-shrink: 0;
}

.timeline-marker {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary-orange);
  margin-right: 25px;
  margin-top: 5px;
  flex-shrink: 0;
  position: relative;
}

.timeline-marker::after {
  content: '';
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 40px;
  background: var(--border-dark);
}

.timeline-item:last-child .timeline-marker::after {
  display: none;
}

.step-content h4,
.timeline-content h4 {
  color: var(--accent-brown);
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
}

.step-content p,
.timeline-content p {
  margin-bottom: 0;
  color: var(--text-dark);
  font-size: 14px;
  line-height: 1.6;
}

/* ===== STANDARDS & COMPLIANCE ===== */
.standards-section {
  margin-top: 40px;
}

.standards-title {
  color: var(--accent-brown);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  font-size: 32px;
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.standard-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border-top: 4px solid var(--primary-orange);
}

.standard-card:hover {
  transform: translateY(-5px);
}

.standard-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(213, 155, 137, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary-orange);
}

.standard-card h4 {
  color: var(--accent-brown);
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
}

.standard-card p {
  color: var(--text-dark);
  margin-bottom: 0;
  line-height: 1.6;
  font-size: 14px;
}

/* Compliance Sections */
.compliance-section {
  margin-bottom: 60px;
}

.compliance-title {
  color: var(--accent-brown);
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
  font-size: 32px;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.compliance-item {
  text-align: center;
  padding: 25px;
  background: rgba(248, 244, 239, 0.5);
  border-radius: 12px;
}

.compliance-item h4 {
  color: var(--accent-brown);
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
}

.compliance-item p {
  color: var(--text-dark);
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.5;
}

.compliance-status {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.compliance-status.verified {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

/* ===== COMPLIANCE BADGES WITH IMAGES ===== */
.compliance-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
}

.compliance-badge {
  background: var(--accent-brown);
  padding: 1rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.compliance-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(213, 155, 137, 0.15);
}

.compliance-badge img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: grayscale(30%);
  transition: var(--transition);
}

.compliance-badge:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Responsive Design untuk Badges */
@media (max-width: 768px) {
  .compliance-badges {
    gap: 1rem;
  }

  .compliance-badge {
    padding: 0.8rem 1.2rem;
  }

  .compliance-badge img {
    height: 35px;
  }
}

@media (max-width: 480px) {
  .compliance-badges {
    gap: 0.8rem;
  }

  .compliance-badge {
    padding: 0.6rem 1rem;
  }

  .compliance-badge img {
    height: 30px;
  }
}

/* ===== THRESHOLD BARS ===== */
.thresholds-section {
  margin-top: 30px;
}

.thresholds-section h4 {
  color: var(--accent-brown);
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
}

.threshold-bar {
  margin-bottom: 15px;
}

.threshold-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 500;
}

.bar-fill {
  height: 8px;
  border-radius: 4px;
  transition: width 0.5s ease;
}

.threshold-bar.green .bar-fill {
  background: linear-gradient(90deg, #10b981, #34d399);
}

.threshold-bar.yellow .bar-fill {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.threshold-bar.red .bar-fill {
  background: linear-gradient(90deg, #ef4444, #f87171);
}

/* ===== ADDITIONAL COMPONENTS ===== */
.mission-section,
.additional-info,
.ethics-compliance,
.copyright-license,
.misconduct-policy,
.policy-footer,
.archive-footer {
  background: white;
  border-radius: 16px;
  padding: 40px;
  margin-top: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.mission-section {
  border-left: 4px solid var(--primary-orange);
}

.additional-info {
  border-left: 4px solid var(--primary-orange);
}

.ethics-compliance {
  border-right: 4px solid var(--primary-orange);
  margin-bottom: 40px;
  text-align: center;
}

.copyright-license {
  border-top: 4px solid var(--primary-orange);
  text-align: center;
}

.misconduct-policy {
  border-left: 4px solid var(--primary-orange);
}

.policy-footer {
  border-radius: 12px;
  text-align: center;
}

.archive-footer {
  text-align: center;
}

.mission-title,
.additional-info h3,
.ethics-compliance h3,
.copyright-license h3,
.misconduct-policy h3 {
  color: var(--accent-brown);
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 28px;
}

.ethics-compliance h3 {
  margin-bottom: 15px;
}

.copyright-license h3 {
  margin-bottom: 20px;
}

.mission-content p,
.additional-info p,
.ethics-compliance p,
.copyright-license p,
.archive-note p {
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.archive-note p {
  margin-bottom: 0;
}

.mission-highlights {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(213, 155, 137, 0.1);
  padding: 12px 20px;
  border-radius: 25px;
  color: var(--accent-brown);
  font-weight: 500;
}

.highlight-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-orange);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 12px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.info-item {
  text-align: center;
}

.info-item h4 {
  color: var(--accent-brown);
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
}

.info-item p {
  color: var(--text-dark);
  margin-bottom: 0;
  line-height: 1.6;
  font-size: 14px;
}

/* ===== AUTHOR GUIDELINES SPECIFIC ===== */
.guidelines-overview {
  margin-bottom: 50px;
}

.requirement-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.requirement-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.req-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(213, 155, 137, 0.1);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.req-content h4 {
  color: var(--accent-brown);
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 600;
}

.req-content p {
  color: var(--text-dark);
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.5;
}

.process-step .step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-orange), var(--accent-brown));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.process-step .step-content h4 {
  color: var(--accent-brown);
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 600;
}

.process-step .step-content p {
  color: var(--text-dark);
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.5;
}

/* ===== OPEN ACCESS SPECIFIC ===== */
.policy-content p {
  color: var(--text-dark);
  margin-bottom: 25px;
  line-height: 1.7;
  font-size: 16px;
}

.license-info {
  margin-top: 25px;
}

.license-info h4 {
  color: var(--accent-brown);
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
}

.license-info p {
  margin-bottom: 20px;
}

.license-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.license-badge {
  background: rgba(213, 155, 137, 0.1);
  color: var(--primary-orange);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(213, 155, 137, 0.2);
}

.benefits-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--primary-orange);
  height: fit-content;
}

.benefits-card h3 {
  color: var(--accent-brown);
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.benefit-icon {
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(213, 155, 137, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-content h4 {
  color: var(--accent-brown);
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 600;
}

.benefit-content p {
  color: var(--text-dark);
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.5;
}

/* ===== COPYRIGHT SPECIFIC ===== */
.rights-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.right-item h4 {
  color: var(--accent-brown);
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
}

.right-item ul {
  padding-left: 20px;
  color: var(--text-dark);
}

.right-item li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.permissions-info h4 {
  color: var(--accent-brown);
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
}

.permissions-info p {
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.6;
}

.permission-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.permission-type h5 {
  color: var(--accent-brown);
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
}

.permission-type ul {
  padding-left: 20px;
  color: var(--text-dark);
}

.permission-type li {
  margin-bottom: 6px;
  line-height: 1.5;
  font-size: 14px;
}

.license-details p {
  color: var(--text-dark);
  margin-bottom: 25px;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.license-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.license-btn {
  background: linear-gradient(135deg, var(--primary-orange), var(--accent-brown));
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.license-btn:hover {
  transform: translateY(-2px);
  color: white;
  text-decoration: none;
}

.license-btn.secondary {
  background: transparent;
  color: var(--primary-orange);
  border: 2px solid var(--primary-orange);
}

/* ===== FEES SPECIFIC ===== */
.section-header {
  margin-bottom: 50px;
}

.section-title {
  color: var(--primary-orange);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-subtitle {
  color: #6c757d;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.header-decoration {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.decoration-dot {
  width: 8px;
  height: 8px;
  background: #004AAD;
  border-radius: 50%;
  margin: 0 5px;
}

/* Fees Card */
.fees-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 30px;
}

.card-header {
  background: linear-gradient(135deg, #004AAD, #032a64);
  color: white;
  padding: 30px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.card-header h2 {
  margin: 0;
  font-weight: 600;
  font-size: 1.8rem;
}

/* Fee Tier */
.fee-tier.featured {
  padding: 40px;
  border: 2px solid var(--secondary-black);
  border-radius: 12px;
  margin: 30px;
  background: white;
  position: relative;
}

.tier-header {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 74, 173, 0.1);
}

.tier-header h3 {
  color: var(--primary-orange);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.tier-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-orange);
  margin-top: 10px;
}

.tier-description {
  color: #6c757d;
  font-size: 1.1rem;
  margin-bottom: 25px;
  font-weight: 500;
}

/* Features List */
.features-list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin: 30px 0;
}

.features-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 74, 173, 0.05);
  color: #2d2d2d;
  font-size: 1.05rem;
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list li i {
  color: var(--primary-orange);
  margin-right: 10px;
  font-size: 1.2rem;
}

/* Important Note */
.important-note {
  background: rgba(0, 74, 173, 0.05);
  border-left: 4px solid var(--secondary-black);
  padding: 20px;
  margin: 30px;
  border-radius: 8px;
}

.note-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.note-header i {
  color: #004AAD;
  font-size: 1.5rem;
  margin-right: 10px;
}

.note-header h4 {
  color: #004AAD;
  margin: 0;
  font-weight: 600;
}

.important-note p {
  color: #2d2d2d;
  margin: 0;
  line-height: 1.6;
}

/* Payment Details */
.payment-details {
  margin: 30px;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 12px;
}

.payment-title {
  color: #004AAD;
  font-weight: 600;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
}

.payment-title i {
  margin-right: 10px;
  font-size: 1.3rem;
}

.bank-info {
  background: white;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.bank-detail {
  display: flex;
  margin-bottom: 15px;
  align-items: center;
}

.bank-detail:last-child {
  margin-bottom: 0;
}

.bank-detail .label {
  min-width: 150px;
  font-weight: 600;
  color: #2d2d2d;
}

.bank-detail .value {
  color: #004AAD;
  font-weight: 500;
}

.bank-detail .account-number {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.payment-notice .alert {
  margin: 0;
  border-radius: 10px;
  border: 1px solid #ffd54f;
  background: #fff8e1;
}

.payment-notice .alert p {
  margin: 10px 0 0 0;
  color: #856404;
}

/* Processing Info */
.processing-info {
  margin: 30px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.info-item {
  display: flex;
  align-items: center;
  padding: 20px;
  background: white;
  border-radius: 10px;
  border: 1px solid rgba(0, 74, 173, 0.1);
  transition: transform 0.3s ease;
}

.info-item:hover {
  transform: translateY(-5px);
  border-color: #004AAD;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #004AAD, #032a64);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.info-icon i {
  color: white;
  font-size: 1.5rem;
}

.info-content h5 {
  color: #004AAD;
  font-weight: 600;
  margin-bottom: 5px;
}

.info-content p {
  color: #6c757d;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .fee-tier.featured {
    margin: 15px;
    padding: 25px;
  }
  
  .tier-price {
    font-size: 2.5rem;
  }
  
  .payment-details,
  .important-note,
  .processing-info {
    margin: 15px;
  }
  
  .bank-detail {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .bank-detail .label {
    min-width: auto;
    margin-bottom: 5px;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
  }
  
  .info-item {
    flex-direction: column;
    text-align: center;
  }
  
  .info-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .tier-price {
    font-size: 2.2rem;
  }
  
  .features-list li {
    font-size: 1rem;
  }
}

/* ===== ETHICS SPECIFIC ===== */
.responsibilities-list,
.standards-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.responsibility-item,
.standard-item {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-dark);
}

.responsibility-item:last-child,
.standard-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.responsibility-item h4,
.standard-item h4 {
  color: var(--accent-brown);
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
}

.responsibility-item p,
.standard-item p {
  color: var(--text-dark);
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.5;
}

.misconduct-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.misconduct-process .process-step {
  text-align: center;
  padding: 25px;
  background: rgba(248, 244, 239, 0.5);
  border-radius: 12px;
}

.misconduct-process .step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-orange), var(--accent-brown));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 15px;
}

.misconduct-process .step-content h4 {
  color: var(--accent-brown);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}

.misconduct-process .step-content p {
  color: var(--text-dark);
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.5;
}

.version-info p {
  margin-bottom: 8px;
  color: var(--text-dark);
}

.compliance-note {
  font-size: 14px;
  color: var(--primary-orange);
  font-weight: 500;
}

/* ===== ARCHIVING SPECIFIC ===== */
.systems-section {
  margin-bottom: 80px;
}

.systems-title {
  color: var(--accent-brown);
  text-align: center;
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 32px;
}

.systems-description {
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  line-height: 1.6;
}

.systems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.strategy-section {
  margin-bottom: 80px;
}

.strategy-title {
  color: var(--accent-brown);
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
  font-size: 32px;
}

.strategy-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.strategy-timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-dark);
}

.timeline-item {
  display: flex;
  margin-bottom: 50px;
  position: relative;
}

.timeline-year {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-orange), var(--accent-brown));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 40px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.timeline-content {
  flex: 1;
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--primary-orange);
}

.timeline-content h4 {
  color: var(--accent-brown);
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
}

.timeline-content p {
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.6;
}

.progress-container {
  margin-top: 15px;
}

.progress-bar {
  height: 8px;
  background-color: var(--border-dark);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-orange), var(--accent-brown));
  border-radius: 4px;
  transition: width 1s ease;
}

.progress-text {
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
}

.tech-specs-section {
  margin-bottom: 80px;
}

.specs-title {
  color: var(--accent-brown);
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
  font-size: 32px;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.spec-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-top: 4px solid var(--primary-orange);
  transition: transform 0.3s ease;
}

.spec-card:hover {
  transform: translateY(-5px);
}

.spec-card h4 {
  color: var(--accent-brown);
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.spec-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-dark);
}

.spec-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.spec-name {
  color: var(--accent-brown);
  font-weight: 500;
}

.spec-value {
  color: var(--text-dark);
  font-size: 14px;
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.standard-item {
  background: white;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border: 1px solid rgba(230, 223, 216, 0.5);
}

.standard-item:hover {
  transform: translateY(-5px);
}

.standard-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-orange), var(--accent-brown));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 15px;
  font-size: 18px;
}

.standard-item h5 {
  color: var(--accent-brown);
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
}

.standard-item p {
  color: var(--text-dark);
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.5;
}

/* ===== PREVENTION GRID ===== */
.prevention-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.prevention-item h4 {
  color: var(--accent-brown);
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
}

.prevention-item ul {
  padding-left: 20px;
  color: var(--text-dark);
}

.prevention-item li {
  margin-bottom: 10px;
  line-height: 1.5;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991px) {

  .section-main-title,
  .focus-main-title,
  .review-main-title,
  .policy-main-title,
  .archive-main-title {
    font-size: 36px;
  }

  .scope-stats,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-highlights {
    flex-direction: column;
    align-items: center;
  }

  .permission-types {
    grid-template-columns: 1fr;
  }

  .misconduct-process {
    grid-template-columns: repeat(2, 1fr);
  }

  .systems-grid {
    grid-template-columns: 1fr;
  }

  .archive-stats {
    flex-direction: column;
    gap: 25px;
  }
}

@media (max-width: 767px) {

  .section-v3,
  .focus-scope-section-v3,
  .peer-review-section-v3,
  .plagiarism-retraction-v3,
  .archiving-section,
  .guidelines-section-v3,
  .open-access-section-v3,
  .copyright-section-v3,
  .fees-section-v3,
  .ethics-section-v3 {
    padding: 50px 0;
  }

  .section-main-title,
  .focus-main-title,
  .review-main-title,
  .policy-main-title,
  .archive-main-title {
    font-size: 28px;
  }

  .scope-stats,
  .stats-grid,
  .overview-stats {
    grid-template-columns: 1fr;
  }

  .review-stats {
    flex-direction: column;
    gap: 25px;
  }

  .step-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .standards-grid {
    grid-template-columns: 1fr;
  }

  .mission-section,
  .scope-card .card-content,
  .additional-info,
  .ethics-compliance,
  .copyright-license,
  .misconduct-policy,
  .policy-footer,
  .archive-footer {
    padding: 25px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .compliance-grid {
    grid-template-columns: 1fr;
  }

  .misconduct-process {
    grid-template-columns: 1fr;
  }

  .license-actions {
    flex-direction: column;
    align-items: center;
  }

  .tier-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .systems-title,
  .strategy-title,
  .specs-title,
  .compliance-title {
    font-size: 26px;
  }

  .strategy-timeline::before {
    left: 25px;
  }

  .timeline-year {
    width: 50px;
    height: 50px;
    margin-right: 25px;
    font-size: 14px;
  }

  .specs-grid {
    grid-template-columns: 1fr;
  }

  .card-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .compliance-badges {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== TEAM SECTION STYLING ===== */
.team-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.team-section {
  margin-bottom: 3rem;
}

.team-section-title {
  color: var(--accent-brown);
  font-size: 2.8rem;
  /* Diperbesar dari 2.5rem */
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--primary-orange);
  display: inline-block;
  font-weight: 700;
}

/* Team Card Styling */
.team-card {
  background: var(--accent-cream);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  /* Diperbesar dari 1.5rem */
  border: 1px solid var(--border-dark);
  transition: var(--transition);
  overflow: hidden;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(213, 155, 137, 0.15);
}

.team-card-content {
  display: flex;
  align-items: center;
  padding: 2rem;
  /* Diperbesar dari 1.5rem */
  gap: 2rem;
  /* Diperbesar dari 1.5rem */
}

.team-card-image {
  width: 140px;
  /* Diperbesar dari 100px */
  height: 140px;
  /* Diperbesar dari 100px */
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-orange);
  /* Dipertebal dari 3px */
  flex-shrink: 0;
}

.team-card-info {
  flex: 1;
}

.team-card-name {
  color: var(--secondary-black);
  font-size: 1.8rem;
  /* Diperbesar dari 1.4rem */
  font-weight: 700;
  /* Dipertebal dari 600 */
  margin-bottom: 0.8rem;
  /* Diperbesar dari 0.5rem */
  line-height: 1.3;
}

.team-card-role {
  color: var(--primary-orange);
  font-size: 1.3rem;
  /* Diperbesar dari 1rem */
  font-weight: 600;
  /* Dipertebal dari 500 */
  margin-bottom: 0.8rem;
  /* Diperbesar dari 0.5rem */
  font-style: italic;
}

.team-card-institution {
  color: var(--text-dark);
  font-size: 1.1rem;
  /* Diperbesar dari 0.95rem */
  line-height: 1.5;
  margin-bottom: 1rem;
  /* Diperbesar dari 0.8rem */
}

.team-card-email {
  color: var(--accent-brown);
  font-size: 1.1rem;
  /* Diperbesar dari 0.9rem */
  margin-bottom: 1.5rem;
  /* Diperbesar dari 1rem */
  display: flex;
  align-items: center;
  gap: 0.8rem;
  /* Diperbesar dari 0.5rem */
  font-weight: 500;
}

.team-card-email::before {
  content: "\f0e0";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.2rem;
  /* Diperbesar dari 0.8rem */
  color: var(--primary-orange);
}

.team-card-links {
  display: flex;
  gap: 1rem;
  /* Diperbesar dari 0.8rem */
  flex-wrap: wrap;
}

.team-card-link {
  padding: 0.6rem 1.2rem;
  /* Diperbesar dari 0.4rem 0.8rem */
  background: var(--secondary-black);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1rem;
  /* Diperbesar dari 0.8rem */
  font-weight: 600;
  /* Dipertebal dari 500 */
  transition: var(--transition);
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.team-card-link:hover {
  background: var(--primary-orange);
  color: var(--accent-brown);
  transform: translateY(-2px);
}


/* ===== SIMPLE EDITOR IN CHIEF CARD ===== */
.team-card-chief-premium {
  background: linear-gradient(145deg, var(--accent-cream), #ffffff);
  border: 3px solid var(--primary-orange);
  border-radius: 15px;
  margin-top: 2rem;
  margin-bottom: 3rem;
  position: relative;
  box-shadow: var(--shadow);
}

.premium-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-orange), var(--accent-brown));
  color: var(--text-light);
  padding: 0.7rem 2.2rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  z-index: 10;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(255, 140, 26, 0.4);
  border: 2px solid var(--accent-cream);
}

/* Styling khusus untuk konten editor in chief */
.team-card-chief-premium .team-card-image {
  width: 150px;
  height: 150px;
  border: 4px solid var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(255, 140, 26, 0.1);
}

.team-card-chief-premium .team-card-name {
  font-size: 1.9rem;
  color: var(--secondary-black);
  position: relative;
  padding-bottom: 0.5rem;
}

.team-card-chief-premium .team-card-name::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary-orange);
}

.team-card-chief-premium .team-card-role {
  font-size: 1.4rem;
  color: var(--primary-orange);
  font-weight: 700;
  margin-top: 0.5rem;
}

.team-card-chief-premium .team-card-content {
  padding: 2.2rem;
}

.team-card-chief-premium .team-card-institution {
  color: var(--accent-gray);
  font-weight: 500;
  font-size: 1.15rem;
}

.team-card-chief-premium .team-card-email {
  color: var(--secondary-black);
  font-weight: 600;
}

.team-card-chief-premium .team-card-links .team-card-link {
  background: var(--secondary-black);
}

.team-card-chief-premium .team-card-links .team-card-link:hover {
  background: var(--primary-orange);
  color: var(--secondary-black);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .team-card-chief-premium {
    margin: 2rem 1rem;
  }
  
  .team-card-chief-premium .team-card-image {
    width: 130px;
    height: 130px;
  }
  
  .team-card-chief-premium .team-card-name {
    font-size: 1.7rem;
  }
  
  .team-card-chief-premium .team-card-role {
    font-size: 1.2rem;
  }
  
  .premium-badge {
    font-size: 0.9rem;
    padding: 0.6rem 1.8rem;
    top: -12px;
  }
}

@media (max-width: 480px) {
  .team-card-chief-premium .team-card-content {
    padding: 1.5rem;
  }
  
  .team-card-chief-premium .team-card-name {
    font-size: 1.5rem;
  }
  
  .team-card-chief-premium .team-card-name::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .team-card-chief-premium .team-card-role {
    font-size: 1.1rem;
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .team-container {
    padding: 1.5rem;
    /* Diperbesar dari 1rem */
  }

  .team-section-title {
    font-size: 2.2rem;
    /* Diperbesar dari 2rem */
  }

  .team-card-content {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    /* Diperbesar dari 1.2rem */
    gap: 1.5rem;
    /* Diperbesar dari 1rem */
  }

  .team-card-image {
    width: 120px;
    /* Diperbesar dari 80px */
    height: 120px;
  }


  .team-card-links {
    justify-content: center;
  }

  .team-card-email {
    justify-content: center;
  }

}

@media (max-width: 480px) {
  .team-section-title {
    font-size: 1.8rem;
  }

  .team-card-name {
    font-size: 1.5rem;
  }

  .team-card-role {
    font-size: 1.1rem;
  }

}

/* ===== CONTACT SECTION REDESIGN ===== */
.contact_section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.contact {
  background: var(--accent-brown);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-dark);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.contact:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(213, 155, 137, 0.15);
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-orange), #e67e22);
}

.contact.primary::before {
  background: linear-gradient(90deg, var(--primary-orange), #d35400);
}

.contact.support::before {
  background: linear-gradient(90deg, var(--primary-orange), #3498db);
}

.contact h3 {
  color: var(--accent-brown);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--primary-orange);
  display: inline-block;
  font-weight: 700;
}

.contact .name {
  color: var(--accent-brown);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  padding: 1rem;
  background: var(--secondary-black);
  border-radius: 10px;
  border-left: 4px solid var(--primary-orange);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border-dark);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item .label {
  min-width: 80px;
  color: var(--accent-brown);
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-item .label::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1rem;
  color: var(--primary-orange);
}

.contact-item.phone .label::before {
  content: "\f095";
}

.contact-item.email .label::before {
  content: "\f0e0";
}

.contact-item .value {
  color: var(--text-dark);
  font-size: 1.1rem;
  font-weight: 500;
  flex: 1;
}

.contact-item .value a {
  color: var(--primary-orange);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 600;
}

.contact-item .value a:hover {
  color: var(--accent-brown);
  text-decoration: underline;
}

/* Badge untuk Principal Contact */
.contact.primary {
  position: relative;
}

.primary-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--primary-orange), #e67e22);
  color: var(--accent-brown);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(213, 155, 137, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact_section {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact {
    padding: 2rem 1.5rem;
  }

  .contact h3 {
    font-size: 1.6rem;
  }

  .contact .name {
    font-size: 1.2rem;
    padding: 0.8rem;
  }

  .contact-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .contact-item .label {
    min-width: auto;
  }

  .primary-badge {
    position: relative;
    top: auto;
    right: auto;
    display: inline-block;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .contact_section {
    grid-template-columns: 1fr;
  }

  .contact {
    padding: 1.5rem;
  }

  .contact h3 {
    font-size: 1.4rem;
  }

  .contact .name {
    font-size: 1.1rem;
  }

  .contact-item .value {
    font-size: 1rem;
  }
}

/* ===== ABOUT JOURNAL SECTION ===== */
.about-journal {
  background: linear-gradient(135deg, var(--accent-brown) 0%, var(--secondary-black) 100%);
  border-radius: 20px;
  padding: 3rem;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-dark);
}

.about-journal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.03"><polygon fill="%23d59b89" points="0,1000 1000,0 1000,1000"/></svg>');
  background-size: cover;
  pointer-events: none;
}

.about-journal-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.about-journal-title {
  color: var(--accent-brown);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.about-journal-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-orange), #e67e22);
  border-radius: 2px;
}

.journal-acronym {
  background: linear-gradient(135deg, var(--primary-orange), #e67e22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

.about-journal-subtitle {
  color: var(--text-dark);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
}

.about-journal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.about-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-text {
  color: var(--text-dark);
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: justify;
  margin: 0;
}

.about-text strong {
  color: var(--accent-brown);
  font-weight: 700;
}

/* Scope Highlights */
.scope-highlights {
  background: var(--accent-brown);
  border-radius: 15px;
  padding: 2rem;
  border-left: 5px solid var(--primary-orange);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.scope-title {
  color: var(--accent-brown);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.scope-title::before {
  content: "🎯";
  font-size: 1.2rem;
}

.scope-topics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.topic-item {
  background: transparent;
  padding: 0.8rem 0;
  text-align: left;
  font-weight: 600;
  color: var(--accent-brown);
  transition: var(--transition);
  border: none;
  font-family: "Lexend Deca", sans-serif;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  border-bottom: 1px solid var(--border-dark);
}

.topic-item:last-child {
  border-bottom: none;
}

.topic-item::before {
  content: "▸";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary-orange);
  font-size: 1.1rem;
  transition: var(--transition);
  min-width: 20px;
}

.topic-item:hover::before {
  content: "➤";
  color: var(--accent-brown);
  transform: translateX(3px);
}

.topic-item:hover {
  color: var(--primary-orange);
  padding-left: 0.5rem;
}

.scope-aspects {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.aspect-tag {
  background: var(--accent-brown);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  border: 1px solid var(--border-dark);
  transition: var(--transition);
}

.aspect-tag:hover {
  border-color: var(--primary-orange);
  color: var(--primary-orange);
  transform: translateY(-2px);
}

/* Journal Stats */
.journal-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--accent-brown);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(213, 155, 137, 0.15);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-orange);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-journal-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .scope-topics {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

@media (max-width: 768px) {
  .about-journal {
    padding: 2rem 1.5rem;
    margin: 2rem 0;
  }

  .about-journal-title {
    font-size: 2.2rem;
  }

  .about-journal-subtitle {
    font-size: 1.1rem;
  }

  .about-text {
    font-size: 1rem;
    text-align: left;
  }

  .journal-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .scope-topics {
    grid-template-columns: repeat(2, 1fr);
  }

  .scope-aspects {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .about-journal {
    padding: 1.5rem;
    border-radius: 15px;
  }

  .about-journal-title {
    font-size: 1.8rem;
  }

  .scope-topics {
    grid-template-columns: 1fr;
  }

  .topic-item {
    padding: 0.8rem;
  }

  .scope-highlights {
    padding: 1.5rem;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-journal-content>* {
  animation: fadeInUp 0.6s ease-out;
}

.about-column:first-child>* {
  animation-delay: 0.1s;
}

.about-column:last-child>* {
  animation-delay: 0.3s;
}

/* Page issue */
.current_issue {
  margin: 40px 0;
  padding: 30px;
  background: linear-gradient(135deg, rgba(255, 140, 26, 0.03) 0%, rgba(255, 140, 26, 0.02) 100%);
  border-radius: 16px;
  border: 1px solid rgba(255, 140, 26, 0.1);
  box-shadow: var(--shadow);
}

/* Page Header */
.page-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 3px solid;
  border-image: linear-gradient(90deg, var(--primary-orange), var(--accent-brown)) 1;
}

.page-header h2 {
  color: var(--secondary-black);
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-header h2:after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-orange), var(--accent-brown));
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Current Issue Title */
.current_issue_title.lead {
  text-align: center;
  color: var(--primary-orange);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 40px;
  padding: 15px;
  background: linear-gradient(135deg, rgba(255, 140, 26, 0.1) 0%, rgba(255, 140, 26, 0.05) 100%);
  border-radius: 10px;
  border-left: 5px solid var(--accent-brown);
}

/* Issue TOC Container */
.issue-toc {
  background: var(--text-light);
  border-radius: 12px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 140, 26, 0.1);
}

/* Issue Heading Row */
.heading.row {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px dashed rgba(255, 140, 26, 0.15);
}

/* Thumbnail Column */
.thumbnail.col-md-4 {
  text-align: center;
  padding: 15px;
}

.thumbnail.col-md-4 .cover {
  display: block;
  transition: var(--transition);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border: 5px solid var(--text-light);
}

.thumbnail.col-md-4 .cover:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(255, 140, 26, 0.25);
}

.thumbnail.col-md-4 .img-responsive {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.5s ease;
}

.thumbnail.col-md-4 .cover:hover .img-responsive {
  transform: scale(1.03);
}

/* Issue Details Column */
.issue-details.col-md-8 {
  padding: 0 30px;
}

.issue-details .published {
  font-size: 1.2rem;
  color: var(--secondary-black);
  margin-bottom: 20px;
  padding: 15px 20px;
  background: linear-gradient(135deg, rgba(255, 140, 26, 0.1) 0%, rgba(255, 140, 26, 0.05) 100%);
  border-radius: 8px;
  border-left: 4px solid var(--accent-brown);
}

.issue-details .published strong {
  color: var(--primary-orange);
  font-weight: 700;
}

/* Sections */
.sections {
  margin-top: 30px;
}

.section .page-header {
  text-align: left;
  border-bottom: none;
  margin-bottom: 25px;
  padding-bottom: 0;
}

.section .page-header h2 {
  font-size: 1.8rem;
  color: var(--secondary-black);
  text-transform: none;
  letter-spacing: normal;
}

.section .page-header h2 small {
  color: var(--primary-orange);
  font-weight: 700;
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--primary-orange), var(--accent-brown));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Article Summary */
.article-summary.media {
  margin-bottom: 25px;
  padding: 25px;
  background: var(--text-light);
  border-radius: 12px;
  border: 1px solid rgba(255, 140, 26, 0.1);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.article-summary.media:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-orange), var(--accent-brown));
}

.article-summary.media:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 140, 26, 0.15);
  border-color: rgba(255, 140, 26, 0.2);
}

/* Article Title */
.media-heading {
  margin-bottom: 15px;
}

.media-heading a {
  color: var(--secondary-black);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.4;
  text-decoration: none;
  transition: var(--transition);
  display: block;
}

.media-heading a:hover {
  color: var(--primary-orange);
  text-decoration: underline;
}

/* Meta Information */
.meta {
  margin-bottom: 10px;
}

.authors {
  color: var(--primary-orange);
  font-weight: 600;
  font-size: 1.5rem;
  padding: 4px 8px;
  background: rgba(255, 140, 26, 0.08);
  border-radius: 6px;
  display: inline-block;
}

/* Pages */
.pages {
  color: var(--accent-gray);
  font-weight: 500;
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 4px;
  display: inline-block;
}

/* Button Group */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.galley-link.btn {
  background: linear-gradient(135deg, var(--primary-orange), var(--secondary-black));
  border: none;
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(255, 140, 26, 0.3);
  position: relative;
  overflow: hidden;
  color: var(--text-light);
}

.galley-link.btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition);
}

.galley-link.btn:hover:before {
  left: 100%;
}

.galley-link.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 140, 26, 0.4);
  background: linear-gradient(135deg, var(--secondary-black), var(--primary-orange));
  color: var(--text-light);
}

.galley-link.btn.pdf:after {
  content: '📄';
  margin-left: 8px;
  font-size: 1.1em;
}

/* Read More Button */
.read-more.btn-primary {
  display: block;
  width: 250px;
  margin: 40px auto 0;
  padding: 15px 30px;
  background: linear-gradient(135deg, var(--primary-orange), var(--accent-brown));
  border: none;
  border-radius: 30px;
  color: var(--text-light);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 6px 15px rgba(255, 140, 26, 0.3);
  position: relative;
  overflow: hidden;
}

.read-more.btn-primary:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition);
}

.read-more.btn-primary:hover:before {
  left: 100%;
}

.read-more.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 140, 26, 0.4);
  color: var(--text-light);
  text-decoration: none;
}

.read-more.btn-primary .glyphicon {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.read-more.btn-primary:hover .glyphicon {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .heading.row {
    flex-direction: column;
  }

  .thumbnail.col-md-4 {
    margin-bottom: 30px;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .issue-details.col-md-8 {
    padding: 0;
    width: 100%;
  }

  .article-summary.media {
    padding: 20px 15px;
  }

  .media-body {
    padding-left: 15px;
  }

  .media-heading a {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .current_issue {
    padding: 20px 15px;
  }

  .page-header h2 {
    font-size: 2rem;
  }

  .current_issue_title.lead {
    font-size: 1.2rem;
  }

  .issue-toc {
    padding: 20px;
  }

  .article-summary.media {
    flex-direction: column;
  }

  .media-body {
    padding-left: 0;
    padding-top: 15px;
  }

  .btn-group {
    justify-content: center;
  }

  .read-more.btn-primary {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 576px) {
  .page-header h2 {
    font-size: 1.8rem;
  }

  .section .page-header h2 small {
    font-size: 1.5rem;
  }

  .media-heading a {
    font-size: 1.1rem;
  }

  .galley-link.btn {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
}

/* Animation for article cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.article-summary.media {
  animation: fadeInUp 0.5s ease forwards;
}

.article-summary.media:nth-child(1) {
  animation-delay: 0.1s;
}

.article-summary.media:nth-child(2) {
  animation-delay: 0.2s;
}

.article-summary.media:nth-child(3) {
  animation-delay: 0.3s;
}

.article-summary.media:nth-child(4) {
  animation-delay: 0.4s;
}

.article-summary.media:nth-child(5) {
  animation-delay: 0.5s;
}

/* Article Details Container - UNIK */
.article-details {
  background: var(--text-light);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 140, 26, 0.1);
}

/* Article Header dengan spesifisitas tinggi */
.article-details header {
  background: linear-gradient(135deg, var(--secondary-black) 0%, var(--primary-orange) 100%);
  color: var(--text-light);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.article-details header:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ff8c1a' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.2;
}

.article-details header .page-header {
  border: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.article-details header .page-header h1 {
  color: var(--text-light);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Article Sidebar - UNIK */
.article-sidebar {
  padding: 30px;
  background: linear-gradient(135deg, rgba(255, 140, 26, 0.05) 0%, rgba(255, 140, 26, 0.02) 100%);
  border-right: 1px solid rgba(255, 140, 26, 0.1);
  min-height: 100%;
}

.article-sidebar .cover-image {
  margin-bottom: 30px;
  text-align: center;
}

.article-sidebar .cover-image a {
  display: block;
  transition: var(--transition);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border: 5px solid var(--text-light);
}

.article-sidebar .cover-image a:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(255, 140, 26, 0.25);
}

.article-sidebar .cover-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.5s ease;
}

.article-sidebar .cover-image a:hover img {
  transform: scale(1.03);
}

.article-sidebar .download {
  margin-bottom: 30px;
  text-align: center;
}

.article-sidebar .download .galley-link {
  display: block;
  width: 100%;
  padding: 12px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary-orange), var(--accent-brown));
  color: var(--text-light);
  border: none;
  border-radius: 30px;
  transition: var(--transition);
}

.article-sidebar .download .galley-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 140, 26, 0.4);
}

/* List Group dalam sidebar artikel */
.article-sidebar .list-group {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.article-sidebar .list-group-item {
  border: none;
  padding: 20px;
  background: var(--text-light);
  border-bottom: 1px solid rgba(255, 140, 26, 0.1);
  transition: var(--transition);
}

.article-sidebar .list-group-item:last-child {
  border-bottom: none;
}

.article-sidebar .list-group-item:hover {
  background: rgba(255, 140, 26, 0.03);
}

.article-sidebar .list-group-item strong {
  color: var(--primary-orange);
  font-weight: 700;
  margin-right: 8px;
  display: inline-block;
  min-width: 90px;
}

.article-sidebar .list-group-item .value {
  color: var(--text-dark);
  display: inline-block;
  line-height: 1.6;
}

.article-sidebar .list-group-item.keywords .value {
  display: block;
  margin-top: 8px;
}

.article-sidebar .list-group-item.keywords .value span {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-orange), var(--accent-brown));
  color: var(--text-light);
  padding: 6px 12px;
  margin: 4px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.article-sidebar .list-group-item.keywords .value span:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 140, 26, 0.2);
}

/* Article Main - UNIK */
.article-main {
  padding: 40px;
}

.article-main .authors {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid rgba(255, 140, 26, 0.1);
}

.article-main .author {
  margin-bottom: 20px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 140, 26, 0.05) 0%, rgba(255, 140, 26, 0.02) 100%);
  border-radius: 10px;
  border-left: 4px solid var(--accent-brown);
  transition: var(--transition);
}

.article-main .author:hover {
  transform: translateX(5px);
  background: linear-gradient(135deg, rgba(255, 140, 26, 0.08) 0%, rgba(255, 140, 26, 0.04) 100%);
}

.article-main .author strong {
  color: var(--secondary-black);
  font-size: 1.2rem;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.article-author-affilitation {
  color: var(--primary-orange);
  font-style: italic;
  font-size: 1rem;
}

/* Article Summary/Abstract */
.article-summary#summary {
  margin-bottom: 40px;
}

.article-summary#summary h2 {
  color: var(--secondary-black);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid;
  border-image: linear-gradient(90deg, var(--primary-orange), var(--accent-brown)) 1;
  display: inline-block;
}

.article-abstract {
  background: var(--text-light);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 140, 26, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  line-height: 1.8;
}

.article-abstract p {
  color: var(--text-dark);
  font-size: 1.5rem;
  margin: 0;
}

/* Article More Details - UNIK */
.article-more-details {
  padding: 0 40px 40px;
}

.article-more-details .panel.issue,
.article-more-details .panel.section {
  margin-bottom: 25px;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.article-more-details .panel-heading {
  background: linear-gradient(135deg, var(--secondary-black) 0%, var(--primary-orange) 100%);
  color: var(--text-light);
  font-weight: 700;
  padding: 18px 20px;
  border: none;
  font-size: 1.1rem;
}

.article-more-details .panel-body {
  padding: 20px;
  background: var(--text-light);
  color: var(--text-dark);
}

.article-more-details .panel-body .title {
  color: var(--primary-orange);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.article-more-details .panel-body .title:hover {
  color: var(--secondary-black);
  text-decoration: underline;
}

/* Article References - UNIK */
.article-references {
  margin-top: 40px;
}

.article-references h2 {
  color: var(--secondary-black);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid;
  border-image: linear-gradient(90deg, var(--primary-orange), var(--accent-brown)) 1;
  display: inline-block;
}

.article-references-content {
  background: var(--text-light);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 140, 26, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  max-height: 500px;
  overflow-y: auto;
  line-height: 1.6;
}

.article-references-content::-webkit-scrollbar {
  width: 8px;
}

.article-references-content::-webkit-scrollbar-track {
  background: rgba(255, 140, 26, 0.05);
  border-radius: 4px;
}

.article-references-content::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary-orange), var(--accent-brown));
  border-radius: 4px;
}

.article-references-content p {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed rgba(255, 140, 26, 0.1);
  color: var(--text-dark);
}

.article-references-content p:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.article-references-content a {
  color: var(--primary-orange);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.article-references-content a:hover {
  color: var(--secondary-black);
  text-decoration: underline;
}

/* Responsive Design untuk Halaman Artikel */
@media (max-width: 992px) {
  .article-details header {
    padding: 30px 20px;
  }

  .article-details header .page-header h1 {
    font-size: 1.8rem;
  }

  .article-sidebar {
    border-right: none;
    border-bottom: 1px solid rgba(255, 140, 26, 0.1);
  }

  .article-main,
  .article-more-details {
    padding: 30px 20px;
  }

  .article-sidebar .list-group-item strong {
    min-width: 80px;
  }

  .article-references-content {
    max-height: 400px;
  }
}

@media (max-width: 768px) {
  .article-details header .page-header h1 {
    font-size: 1.6rem;
  }

  .article-main .author {
    padding: 15px;
  }

  .article-main .author strong {
    font-size: 1.1rem;
  }

  .article-abstract,
  .article-references-content {
    padding: 20px;
  }

  .article-summary#summary h2,
  .article-references h2 {
    font-size: 1.6rem;
  }

  .page_article .breadcrumb {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .article-details header .page-header h1 {
    font-size: 1.4rem;
  }

  .article-details header {
    padding: 25px 15px;
  }

  .article-sidebar,
  .article-main,
  .article-more-details {
    padding: 25px 15px;
  }

  .article-sidebar .download .galley-link {
    padding: 10px 15px;
    font-size: 1rem;
  }

  .article-sidebar .list-group-item {
    padding: 15px;
  }

  .article-sidebar .list-group-item strong {
    display: block;
    margin-bottom: 5px;
  }

  .article-sidebar .list-group-item.keywords .value span {
    padding: 4px 10px;
    font-size: 0.85rem;
  }

  .article-abstract p {
    font-size: 1rem;
  }

  .article-summary#summary h2,
  .article-references h2 {
    font-size: 1.4rem;
  }
}

/* Animations khusus halaman artikel */
@keyframes articleSlideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.article-details {
  animation: articleSlideInUp 0.5s ease forwards;
}

.article-sidebar,
.article-main,
.article-more-details {
  opacity: 0;
  animation: articleSlideInUp 0.5s ease forwards;
}

.article-sidebar {
  animation-delay: 0.1s;
}

.article-main {
  animation-delay: 0.2s;
}

.article-more-details {
  animation-delay: 0.3s;
}

/* ===== ISSUES ARCHIVE STYLING ===== */

.issues.media-list {
  margin: 40px 0;
  padding: 30px;
  background: linear-gradient(135deg, rgba(255, 140, 26, 0.03) 0%, rgba(255, 140, 26, 0.02) 100%);
  border-radius: 16px;
  border: 1px solid rgba(255, 140, 26, 0.1);
  box-shadow: var(--shadow);
}

/* Issue Summary */
.issue-summary.media {
  margin-bottom: 30px;
  padding: 30px;
  background: var(--text-light);
  border-radius: 12px;
  border: 1px solid rgba(255, 140, 26, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  display: flex;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.issue-summary.media:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-orange), var(--accent-brown));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.issue-summary.media:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(255, 140, 26, 0.15);
  border-color: rgba(255, 140, 26, 0.2);
}

.issue-summary.media:hover:before {
  opacity: 1;
}

/* Media Left - Cover */
.media-left {
  width: 160px;
  margin-right: 30px;
  flex-shrink: 0;
}

.media-left .cover {
  display: block;
  transition: var(--transition);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border: 5px solid var(--text-light);
  position: relative;
}

.media-left .cover:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 140, 26, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.media-left .cover:hover:after {
  opacity: 1;
}

.media-left .cover:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 30px rgba(255, 140, 26, 0.25);
}

.media-object {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  transition: transform 0.5s ease;
}

.media-left .cover:hover .media-object {
  transform: scale(1.05);
}

/* Media Body */
.media-body {
  flex: 1;
  padding: 10px 0;
}

/* Media Heading */
.media-heading {
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}

.media-heading:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-orange), var(--accent-brown));
  border-radius: 2px;
}

.media-heading .title {
  color: var(--secondary-black);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.media-heading .title:hover {
  color: var(--primary-orange);
  text-decoration: none;
}

/* Series */
.series.lead {
  color: var(--primary-orange);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  padding: 12px 20px;
  background: linear-gradient(135deg, rgba(255, 140, 26, 0.1) 0%, rgba(255, 140, 26, 0.05) 100%);
  border-radius: 8px;
  display: inline-block;
  border-left: 4px solid var(--accent-brown);
  box-shadow: 0 4px 10px rgba(255, 140, 26, 0.1);
}

/* Description */
.description {
  margin-top: 20px;
  color: var(--text-dark);
  font-size: 1.05rem;
  line-height: 1.7;
  padding: 15px;
  background: linear-gradient(135deg, rgba(255, 140, 26, 0.02) 0%, rgba(255, 140, 26, 0.01) 100%);
  border-radius: 8px;
  border: 1px solid rgba(255, 140, 26, 0.05);
}

/* Animation for issue cards */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.issue-summary.media {
  animation: fadeInScale 0.5s ease forwards;
  opacity: 0;
}

.issue-summary.media:nth-child(1) {
  animation-delay: 0.1s;
}

.issue-summary.media:nth-child(2) {
  animation-delay: 0.2s;
}

.issue-summary.media:nth-child(3) {
  animation-delay: 0.3s;
}

.issue-summary.media:nth-child(4) {
  animation-delay: 0.4s;
}

.issue-summary.media:nth-child(5) {
  animation-delay: 0.5s;
}

/* Empty State - jika tidak ada description */
.description:empty {
  display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .issues.media-list {
    padding: 20px 15px;
  }

  .issue-summary.media {
    padding: 25px;
    flex-direction: column;
  }

  .media-left {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 25px;
  }

  .media-body {
    padding: 0;
    text-align: center;
  }

  .media-heading:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .media-heading .title {
    font-size: 1.6rem;
  }

  .series.lead {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .issues.media-list {
    padding: 15px 10px;
  }

  .issue-summary.media {
    padding: 20px;
  }

  .media-heading .title {
    font-size: 1.4rem;
  }

  .series.lead {
    font-size: 1.1rem;
    padding: 10px 15px;
  }

  .description {
    font-size: 1rem;
    padding: 12px;
  }

  .media-left {
    max-width: 180px;
  }
}

/* Special styling for single issue in archive */
@media (min-width: 769px) and (max-width: 992px) {
  .media-left {
    width: 140px;
    margin-right: 25px;
  }

  .media-heading .title {
    font-size: 1.6rem;
  }

  .series.lead {
    font-size: 1.2rem;
  }
}

/* Hover effects enhancement */
.issue-summary.media:hover .media-heading .title {
  color: var(--primary-orange);
  text-decoration: underline;
}

.issue-summary.media:hover .series.lead {
  background: linear-gradient(135deg, rgba(255, 140, 26, 0.15) 0%, rgba(255, 140, 26, 0.08) 100%);
  transform: translateX(5px);
  transition: var(--transition);
}

/* Status indicator (if needed for future) */
.issue-status {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 15px;
  background: linear-gradient(135deg, var(--accent-brown), var(--secondary-black));
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 8px rgba(255, 140, 26, 0.3);
  z-index: 2;
}

/* Issue metadata (if added in future) */
.issue-meta {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.9rem;
  color: var(--accent-gray);
}

.issue-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.issue-meta-item i {
  color: var(--primary-orange);
}

/* Empty state styling */
.issues-empty {
  text-align: center;
  padding: 60px 30px;
  color: var(--accent-gray);
  font-size: 1.2rem;
}

.issues-empty i {
  font-size: 3rem;
  color: var(--primary-orange);
  margin-bottom: 20px;
  display: block;
}

/* Loading state (for future AJAX loading) */
.issues-loading {
  text-align: center;
  padding: 40px;
}

.issues-loading .spinner {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 5px solid rgba(255, 140, 26, 0.1);
  border-radius: 50%;
  border-top-color: var(--primary-orange);
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

