@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=Lexend+Deca:wght@100..900&display=swap');

:root {
  --primary-rose: #d59b89;
  --secondary-black: #1c1c1c;
  --accent-cream: #f8f4ef;
  --text-dark: #2b2b2b;
  --text-light: #ffffff;
  --border-light: #e6dfd8;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

/* ===== RESET & BASE STYLES ===== */
* {
  box-sizing: border-box;
}

.pkp_structure_page {
  background-color: #ffffff;
}

body h1,
h2,
h3 {
  font-family: 'Blinker', sans-serif !important;
}

body h4,
h5,
p {
  font-family: "Lexend Deca", sans-serif !important;
}


.alert-info {
  background: linear-gradient(135deg, var(--secondary-black) 0%, var(--primary-rose) 50%, var(--primary-light) 100%);
  border-top-left-radius: 12px;
  border-bottom: 12px;
}

/* Adjust body padding for fixed header */
body {
  padding-top: 80px !important;
  background-color: var(--accent-cream);
}

/* ===== 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:
    linear-gradient(180deg,
      rgba(248, 244, 239, 0.9) 0%,
      rgba(213, 155, 137, 0.15) 35%,
      rgba(248, 244, 239, 0.9) 100%),
    repeating-linear-gradient(135deg,
      transparent 0px,
      transparent 24px,
      rgba(213, 155, 137, 0.03) 24px,
      rgba(213, 155, 137, 0.03) 48px);
  background-blend-mode: soft-light, overlay;
  background-size: 400px 400px, 300px 300px;
  background-attachment: fixed;
  background-position: center top;
  color: var(--text-dark);
  transition: all 0.5s ease !important;
}

.hero-section.scrolled {
  background-image:
    linear-gradient(180deg,
      rgba(28, 28, 28, 0.95) 0%,
      rgba(28, 28, 28, 0.85) 35%,
      rgba(28, 28, 28, 0.95) 100%),
    repeating-linear-gradient(135deg,
      transparent 0px,
      transparent 24px,
      rgba(213, 155, 137, 0.1) 24px,
      rgba(213, 155, 137, 0.1) 48px) !important;
}

.hero-section.scrolled .hero-title {
  color: var(--primary-rose) !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(--accent-cream) !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;
  color: var(--secondary-black);
}

.hero-subtitle {
  font-size: 3.3rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--secondary-black);
}

.hero-issn {
  font-size: 3rem;
  font-weight: 400;
  color: var(--secondary-black);
}

/* 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(--secondary-black);
}

/* Geser .additional_content ke atas */
.page_index_journal .additional_content {
  order: -1;
}
/* ===== MODERN ADDITIONAL CONTENT ===== */
.content-grid {
  display: grid;
  grid-template-areas: 
    "cover editor details"
    "focus focus focus"
    "indexing indexing indexing";
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section {
  background-color: var(--text-light);
  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);
}

.section-title {
  color: var(--secondary-black);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 3px solid var(--primary-rose);
  width: 100%;
  text-align: center;
  font-weight: 700;
}

/* Grid Area Assignments */
.section:nth-child(1) { grid-area: cover; }
.section:nth-child(2) { grid-area: editor; }
.section:nth-child(3) { grid-area: details; }
.section.focus-scope-section { grid-area: focus; }
.section.indexing-section { grid-area: indexing; }

/* Journal Cover Section */
.cover-image {
  max-width: 200px;
  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.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Editor Info Section - VERTICAL LAYOUT */
.editor-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  height: 100%;
}

.editor-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-rose);
}

.editor-details {
  width: 100%;
}

.editor-details h3 {
  color: var(--secondary-black);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 700;
}

.editor-details p {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  margin: 0;
}

/* Journal Details Section */
.journal-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid var(--border-light);
  background: var(--accent-cream);
  border-radius: 8px;
  transition: var(--transition);
}

.detail-item:hover {
  background: var(--primary-rose);
  transform: translateX(5px);
}

.detail-item:hover .detail-label,
.detail-item:hover .detail-value {
  color: var(--text-light);
}

.detail-label {
  font-weight: 700;
  color: var(--secondary-black);
  font-size: 1rem;
}

.detail-value {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1rem;
}

/* Focus and Scope Section */
.focus-scope-section {
  text-align: left;
}

.about-text {
  line-height: 1.7;
  text-align: justify;
  font-size: 1.1rem;
  margin: 0;
  color: var(--text-dark);
}

/* 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-light);
}

.index-logo-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(213, 155, 137, 0.2);
  border-color: var(--primary-rose);
}

.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"
      "editor"
      "details"
      "focus"
      "indexing";
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .section {
    padding: 1.5rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .editor-info {
    gap: 1.2rem;
  }
  
  .editor-photo {
    width: 120px;
    height: 120px;
  }
  
  .editor-details h3 {
    font-size: 1.3rem;
  }
  
  .detail-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    padding: 0.8rem;
  }
  
  .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;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 1.2rem;
  }
  
  .section-title {
    font-size: 1.4rem;
  }
  
  .cover-image {
    max-width: 150px;
  }
  
  .editor-photo {
    width: 100px;
    height: 100px;
  }
  
  .editor-details h3 {
    font-size: 1.2rem;
  }
  
  .editor-details p {
    font-size: 0.9rem;
  }
  
  .detail-label,
  .detail-value {
    font-size: 0.9rem;
  }
  
  .about-text {
    font-size: 1rem;
  }
  
  .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(--accent-cream);
  border: none;
  border-bottom: 2px solid var(--border-light);
  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(--secondary-black) !important;
  border-bottom-color: var(--primary-rose) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
}

.navbar-default.header-scrolled .nav>li>a {
  color: var(--accent-cream) !important;
}

.navbar-default.header-scrolled .nav>li>a:hover,
.navbar-default.header-scrolled .nav>li>a:focus {
  background-color: var(--primary-rose) !important;
  color: var(--secondary-black) !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-rose) !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: var(--accent-cream) !important;
}

.navbar-default.header-scrolled .navbar-form .btn.btn-default {
  background-color: var(--primary-rose) !important;
  color: var(--secondary-black) !important;
  border-color: var(--primary-rose) !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(--text-dark) !important;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 20px;
  transition: var(--transition);
  font-family: 'Blinker', sans-serif !important;
  font-weight: 400;
}

.navbar-default .nav>li>a:hover,
.navbar-default .nav>li>a:focus {
  background-color: var(--primary-rose);
  color: var(--text-light) !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-rose);
  color: var(--text-light);
}

/* ===== 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-light);
  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-rose);
  outline: none;
  box-shadow: none;
}

.navbar-form .btn.btn-default {
  border: 2px solid var(--primary-rose);
  border-radius: 0 20px 20px 0;
  background: var(--primary-rose);
  color: var(--text-light);
  height: 38px;
  padding: 0 15px;
  transition: var(--transition);
}

.navbar-form .btn.btn-default:hover {
  background: var(--secondary-black);
  color: var(--text-light);
}

/* ===== 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-rose), var(--border-light));
}

.breadcrumb li {
  display: flex;
  align-items: center;
  position: relative;
}

.breadcrumb li:not(:last-child)::after {
  content: '›';
  margin: 0 12px;
  color: var(--primary-rose);
  font-weight: bold;
  font-size: 18px;
}

.breadcrumb a {
  text-decoration: none;
  color: var(--text-dark);
  padding: 10px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
  display: flex;
  align-items: center;
  color: var(--accent-cream);
}

.breadcrumb a:hover {
  background-color: rgba(213, 155, 137, 0.15);
  color: var(--primary-rose);
  transform: translateY(-2px);
}

.breadcrumb .active {
  color: var(--primary-rose);
  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-rose);
  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_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-light);
  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-rose);
}

.accordion-button.active {
  background-color: rgba(213, 155, 137, 0.15);
  color: var(--primary-rose);
}

.accordion-button.active:after {
  transform: rotate(180deg);
  color: var(--secondary-black);
}

.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 {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: linear-gradient(135deg, #1c1c1c 0%, #2b2b2b 50%, #1c1c1c 100%);
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-weight: 600;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  font-family: 'Blinker', sans-serif;
  min-height: 60px;
  /* Hapus height fixed, gunakan min-height */
}

a .journal-btn {
  color: var(--text-light) !important;
}

.journal-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-rose) 0%, var(--secondary-black) 100%);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.journal-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%) translateX(10px);
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d59b89' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E");
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
}

.journal-btn:hover::before {
  left: 0;
}

.journal-btn:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.journal-btn i,
.journal-btn span {
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-family: 'Blinker', sans-serif;
}

.journal-btn:hover {
  border-color: var(--primary-rose);
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 8px 25px rgba(213, 155, 137, 0.25),
    0 4px 12px rgba(28, 28, 28, 0.15);
}

/* PERBAIKAN: Pastikan teks berwarna putih saat hover */
.journal-btn:hover span {
  color: white !important;
  transform: translateX(4px);
}

.journal-btn:hover i {
  color: white !important;
  transform: translateX(4px) scale(1.1);
}

.journal-btn i {
  font-size: 1.3rem;
  width: 24px;
  text-align: center;
  color: var(--primary-rose);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-family: 'Blinker', sans-serif;
}

.journal-btn span {
  flex: 1;
  font-size: 1rem;
  letter-spacing: -0.01em;
  font-family: 'Blinker', sans-serif;
  font-weight: 600;
  color: var(--text-dark);
  /* Pastikan warna teks normal hitam */
}

/* Animation for button hover - Enhanced */
@keyframes buttonPulse {
  0% {
    box-shadow:
      0 8px 25px rgba(213, 155, 137, 0.25),
      0 4px 12px rgba(28, 28, 28, 0.15),
      0 0 0 0 rgba(213, 155, 137, 0.6);
  }

  70% {
    box-shadow:
      0 8px 25px rgba(213, 155, 137, 0.25),
      0 4px 12px rgba(28, 28, 28, 0.15),
      0 0 0 12px rgba(213, 155, 137, 0);
  }

  100% {
    box-shadow:
      0 8px 25px rgba(213, 155, 137, 0.25),
      0 4px 12px rgba(28, 28, 28, 0.15),
      0 0 0 0 rgba(213, 155, 137, 0);
  }
}

.journal-btn:active {
  animation: buttonPulse 0.5s;
  transform: translateY(-1px) scale(1.01);
  transition: all 0.1s ease;
}

/* 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: 'Blinker', sans-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;
  }
}

/* Enhanced focus states for accessibility */
.journal-btn:focus {
  outline: none;
  border-color: var(--primary-rose);
  box-shadow:
    0 0 0 3px rgba(213, 155, 137, 0.3),
    0 8px 25px rgba(213, 155, 137, 0.25);
}

.journal-btn:focus::before {
  left: 0;
}

.journal-btn:focus i,
.journal-btn:focus span {
  color: white !important;
  transform: translateX(4px);
}


.accordion-body a {
  color: var(--primary-rose);
  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-rose);
  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(--accent-cream);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  border: 1px solid var(--border-light);
}

.stat-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-rose);
}

.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(--secondary-black);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary-light);
}

.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-rose);
  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(--accent-cream);
    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-light);
  }

  #main-navigation>li>a {
    border-radius: 0;
    padding: 15px;
    display: block;
    color: var(--text-dark) !important;
  }

  /* Mobile dropdown handling */
  .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    border-radius: 0;
    padding-left: 15px;
    float: none;
    width: 100%;
  }

  .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;
  }

  /* Main content mobile layout */
  .pkp_structure_content.container {
    grid-template-columns: 1fr;
    margin: 20px auto;
  }

  .pkp_structure_main {
    padding: 20px;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }

  .pkp_structure_sidebar {
    padding: 20px;
  }

  /* Content grid mobile */
  .content-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .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(--accent-cream);
  }
}

@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(--accent-cream);
  }

  /* 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-rose);
  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(--secondary-black);
  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(--accent-cream);
  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(--secondary-black);
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--primary-rose);
  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-rose);
}

.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-rose);
  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(--secondary-black);
  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(--accent-cream);
  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(--secondary-black);
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--primary-rose);
  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-rose);
}

.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-rose);
  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-light);
  transition: var(--transition);
  background: white;
}

.search-input-group:focus-within {
  border-color: var(--primary-rose);
  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-rose);
  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(--secondary-black);
  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-light);
  }

  .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-rose), var(--secondary-black));
}

/* Background Variations */
.focus-scope-section-v3,
.copyright-section-v3,
.ethics-section-v3 {
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-cream) 100%);
}

.peer-review-section-v3,
.open-access-section-v3,
.fees-section-v3 {
  background: linear-gradient(135deg, var(--accent-cream) 0%, #ffffff 100%);
}

.plagiarism-retraction-v3 {
  background: linear-gradient(135deg, var(--accent-cream) 0%, #ffffff 50%, rgba(248, 244, 239, 0.3) 100%);
}

.archiving-section {
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-cream) 100%);
}

/* ===== 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-rose), var(--secondary-black));
  color: var(--text-light);
  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(--secondary-black);
  font-weight: 800;
  margin-bottom: 15px;
  font-size: 42px;
  background: linear-gradient(135deg, var(--secondary-black) 0%, var(--primary-rose) 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-rose), transparent);
}

.decoration-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary-rose);
  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-rose);
}

.graphic-line {
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-rose), var(--secondary-black));
  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-rose);
  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-rose);
  flex-shrink: 0;
}

.stat-content {
  flex: 1;
}

.stat-number,
.overview-stat .stat-number,
.stat-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--secondary-black);
  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(--secondary-black) 0%, #2c2c2c 100%);
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 15px;
}

.scope-card.primary .card-header {
  background: linear-gradient(135deg, var(--primary-rose) 0%, #e8a798 100%);
}

.scope-card.secondary .card-header {
  background: linear-gradient(135deg, var(--secondary-black) 0%, #3a3a3a 100%);
}

.access-card.primary .card-header {
  background: linear-gradient(135deg, var(--primary-rose) 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-rose);
  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(--secondary-black);
}

.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(--accent-cream);
}

/* Card Content */
.card-content {
  padding: 30px;
}

.card-content h3 {
  color: var(--secondary-black);
  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(--secondary-black);
  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-rose), #e8a798);
}

.system-card.secondary::before {
  background: linear-gradient(90deg, var(--secondary-black), #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-rose);
  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-light);
}

.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-light);
}

.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-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.focus-content h4 {
  color: var(--secondary-black);
  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-light);
}

.scope-type:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.scope-type h4 {
  color: var(--secondary-black);
  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-rose);
  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(--secondary-black);
  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-rose);
}

.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-rose), var(--secondary-black));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.step-header h3 {
  color: var(--secondary-black);
  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(--secondary-black);
  font-weight: 500;
}

.detail-value {
  color: var(--primary-rose);
  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-rose), var(--secondary-black));
  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-rose);
  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-light);
}

.timeline-item:last-child .timeline-marker::after {
  display: none;
}

.step-content h4,
.timeline-content h4 {
  color: var(--secondary-black);
  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(--secondary-black);
  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-rose);
}

.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-rose);
}

.standard-card h4 {
  color: var(--secondary-black);
  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(--secondary-black);
  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(--secondary-black);
  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(--secondary-black);
    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-light);
    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(--secondary-black);
  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-rose);
}

.additional-info {
  border-left: 4px solid var(--primary-rose);
}

.ethics-compliance {
  border-right: 4px solid var(--primary-rose);
  margin-bottom: 40px;
  text-align: center;
}

.copyright-license {
  border-top: 4px solid var(--primary-rose);
  text-align: center;
}

.misconduct-policy {
  border-left: 4px solid var(--primary-rose);
}

.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(--secondary-black);
  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(--secondary-black);
  font-weight: 500;
}

.highlight-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-rose);
  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(--secondary-black);
  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-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.req-content h4 {
  color: var(--secondary-black);
  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-rose), var(--secondary-black));
  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(--secondary-black);
  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(--secondary-black);
  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-rose);
  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-rose);
  height: fit-content;
}

.benefits-card h3 {
  color: var(--secondary-black);
  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(--secondary-black);
  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(--secondary-black);
  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(--secondary-black);
  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(--secondary-black);
  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-rose), var(--secondary-black));
  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-rose);
  border: 2px solid var(--primary-rose);
}

/* ===== FEES SPECIFIC ===== */
.fees-structure {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.fee-tier {
  background: rgba(248, 244, 239, 0.5);
  border-radius: 12px;
  padding: 25px;
  border-left: 4px solid var(--primary-rose);
}

.fee-tier.discounted {
  border-left-color: #f59e0b;
}

.fee-tier.waiver {
  border-left-color: #10b981;
}

.tier-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.tier-header h3 {
  color: var(--secondary-black);
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.tier-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-rose);
}

.fee-tier.discounted .tier-price {
  color: #f59e0b;
}

.fee-tier.waiver .tier-price {
  color: #10b981;
}

.fee-tier p {
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.6;
}

.fee-tier ul {
  padding-left: 20px;
  color: var(--text-dark);
}

.fee-tier li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.support-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-rose);
  height: fit-content;
}

.support-card h3 {
  color: var(--secondary-black);
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}

.support-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.support-option h4 {
  color: var(--secondary-black);
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
}

.support-option p {
  color: var(--text-dark);
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.5;
}

.waiver-info {
  background: rgba(248, 244, 239, 0.5);
  border-radius: 12px;
  padding: 20px;
}

.waiver-info h4 {
  color: var(--secondary-black);
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
}

.waiver-info p {
  color: var(--text-dark);
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.5;
}

.waiver-btn {
  display: inline-block;
  background: var(--primary-rose);
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.waiver-btn:hover {
  transform: translateY(-2px);
  color: white;
  text-decoration: none;
}

/* ===== 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-light);
}

.responsibility-item:last-child,
.standard-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.responsibility-item h4,
.standard-item h4 {
  color: var(--secondary-black);
  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-rose), var(--secondary-black));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 15px;
}

.misconduct-process .step-content h4 {
  color: var(--secondary-black);
  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-rose);
  font-weight: 500;
}

/* ===== ARCHIVING SPECIFIC ===== */
.systems-section {
  margin-bottom: 80px;
}

.systems-title {
  color: var(--secondary-black);
  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(--secondary-black);
  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-light);
}

.timeline-item {
  display: flex;
  margin-bottom: 50px;
  position: relative;
}

.timeline-year {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-rose), var(--secondary-black));
  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-rose);
}

.timeline-content h4 {
  color: var(--secondary-black);
  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-light);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-rose), var(--secondary-black));
  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(--secondary-black);
  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-rose);
  transition: transform 0.3s ease;
}

.spec-card:hover {
  transform: translateY(-5px);
}

.spec-card h4 {
  color: var(--secondary-black);
  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-light);
}

.spec-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.spec-name {
  color: var(--secondary-black);
  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-rose), var(--secondary-black));
  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(--secondary-black);
  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(--secondary-black);
  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(--secondary-black);
    font-size: 2.8rem; /* Diperbesar dari 2.5rem */
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-rose);
    display: inline-block;
    font-weight: 700;
}

/* Team Card Styling */
.team-card {
    background: var(--text-light);
    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-light);
    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-rose); /* 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-rose);
    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(--secondary-black);
    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-rose);
}

.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(--accent-cream);
    color: var(--secondary-black);
    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-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.team-card-link:hover {
    background: var(--primary-rose);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* Link type variations */
.team-card-link.scholar { background: #4285f4; color: white; }
.team-card-link.sinta { background: #34a853; color: white; }
.team-card-link.orcid { background: #a6ce39; color: white; }
.team-card-link.scopus { background: #e78a48; color: white; }
.team-card-link.linkedin { background: #0077b5; color: white; }

/* ===== PREMIUM EDITOR IN CHIEF CARD ===== */
.team-card-chief-premium {
    background: linear-gradient(135deg, var(--text-light) 0%, #fef8f5 50%, var(--accent-cream) 100%);
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
    border-radius: 15px;
    margin-top: 3rem; /* Memberi jarak lebih di atas */
}

.team-card-chief-premium::before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--primary-rose), #e67e22, var(--primary-rose));
    border-radius: 18px;
    z-index: -1;
    opacity: 0.8;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.8; }
}

.premium-badge {
    position: absolute;
    top: -20px; /* Diperbesar dari -12px agar lebih terlihat */
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-rose), #e67e22);
    color: var(--text-light);
    padding: 0.8rem 2.5rem; /* Diperbesar dari 0.6rem 2rem */
    border-radius: 25px;
    font-weight: 800; /* Dipertebal dari 700 */
    font-size: 1.1rem; /* Diperbesar dari 0.9rem */
    text-transform: uppercase;
    letter-spacing: 2px; /* Diperlebar dari 1.5px */
    box-shadow: 0 8px 25px rgba(213, 155, 137, 0.6); /* Diperbesar shadow */
    z-index: 10; /* Pastikan di atas elemen lain */
    display: flex;
    align-items: center;
    gap: 0.8rem; /* Diperbesar dari 0.5rem */
    white-space: nowrap;
}

.premium-badge::before {
    content: "⭐";
    font-size: 1rem; /* Diperbesar dari 0.8rem */
}

/* Styling khusus untuk konten editor in chief */
.team-card-chief-premium .team-card-image {
    width: 160px; /* Lebih besar dari card biasa */
    height: 160px;
    border: 5px solid var(--primary-rose); /* Border lebih tebal */
}

.team-card-chief-premium .team-card-name {
    font-size: 2rem; /* Lebih besar dari card biasa */
    color: var(--secondary-black);
}

.team-card-chief-premium .team-card-role {
    font-size: 1.5rem; /* Lebih besar dari card biasa */
    color: var(--primary-rose);
    font-weight: 700;
}

.team-card-chief-premium .team-card-content {
    padding: 2.5rem; /* Lebih besar dari card biasa */
}

/* Achievement Icons untuk Editor in Chief */
.achievement-icons {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    justify-content: flex-start;
}

.achievement-icon {
    width: 40px; /* Diperbesar dari 32px */
    height: 40px;
    background: var(--accent-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-rose);
    font-size: 1rem; /* Diperbesar dari 0.8rem */
    color: var(--primary-rose);
    transition: var(--transition);
}

.achievement-icon:hover {
    background: var(--primary-rose);
    color: var(--text-light);
    transform: scale(1.1);
}

/* ===== 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-chief-premium .team-card-image {
        width: 140px; /* Diperbesar untuk mobile */
        height: 140px;
    }
    
    .team-card-links {
        justify-content: center;
    }
    
    .team-card-email {
        justify-content: center;
    }
    
    .premium-badge {
        font-size: 1rem; /* Diperbesar dari 0.8rem */
        padding: 0.7rem 2rem; /* Diperbesar dari 0.5rem 1.5rem */
        top: -18px; /* Diatur ulang untuk mobile */
    }
    
    .team-card-chief-premium .team-card-name {
        font-size: 1.8rem; /* Diatur untuk mobile */
    }
    
    .team-card-chief-premium .team-card-role {
        font-size: 1.3rem; /* Diatur untuk mobile */
    }
}

@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;
    }
    
    .premium-badge {
        font-size: 0.9rem;
        padding: 0.6rem 1.5rem;
        top: -15px;
    }
    
    .achievement-icons {
        gap: 0.8rem;
    }
    
    .achievement-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* ===== CONTACT SECTION REDESIGN ===== */
.contact_section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact {
    background: var(--text-light);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-light);
    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-rose), #e67e22);
}

.contact.primary::before {
    background: linear-gradient(90deg, var(--primary-rose), #d35400);
}

.contact.support::before {
    background: linear-gradient(90deg, var(--primary-rose), #3498db);
}

.contact h3 {
    color: var(--secondary-black);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--primary-rose);
    display: inline-block;
    font-weight: 700;
}

.contact .name {
    color: var(--secondary-black);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    padding: 1rem;
    background: var(--accent-cream);
    border-radius: 10px;
    border-left: 4px solid var(--primary-rose);
}

.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-light);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item .label {
    min-width: 80px;
    color: var(--secondary-black);
    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-rose);
}

.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-rose);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
}

.contact-item .value a:hover {
    color: var(--secondary-black);
    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-rose), #e67e22);
    color: var(--text-light);
    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(--text-light) 0%, var(--accent-cream) 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-light);
}

.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(--secondary-black);
    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-rose), #e67e22);
    border-radius: 2px;
}

.journal-acronym {
    background: linear-gradient(135deg, var(--primary-rose), #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(--secondary-black);
    font-weight: 700;
}

/* Scope Highlights */
.scope-highlights {
    background: var(--text-light);
    border-radius: 15px;
    padding: 2rem;
    border-left: 5px solid var(--primary-rose);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.scope-title {
    color: var(--secondary-black);
    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(--secondary-black);
    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-light);
}

.topic-item:last-child {
    border-bottom: none;
}

.topic-item::before {
    content: "▸";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-rose);
    font-size: 1.1rem;
    transition: var(--transition);
    min-width: 20px;
}

.topic-item:hover::before {
    content: "➤";
    color: var(--secondary-black);
    transform: translateX(3px);
}

.topic-item:hover {
    color: var(--primary-rose);
    padding-left: 0.5rem;
}

.scope-aspects {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.aspect-tag {
    background: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.aspect-tag:hover {
    border-color: var(--primary-rose);
    color: var(--primary-rose);
    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(--text-light);
    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-rose);
    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;
}