/* =========================================================
   MENU PREMIUM OJS 3.4 – CONTAINER TERBATAS
   BORDER HANYA BODY • SEARCH KANAN MENTOK
   ========================================================= */

/* HEADER - BORDER TERBATAS CONTAINER */
.pkp_structure_head {
    background-color:white !important;
    border-bottom: none !important; /* HAPUS FULL BORDER */
    position: relative !important;
}

/* TAMBAH BORDER HANYA DI CONTAINER */
.pkp_navigation_primary_wrapper {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%) !important;
    padding: 16px 24px !important; /* Padding simetris */
    display: flex !important;
    align-items: center !important;
    position: relative !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.5) !important;
    
    /* BORDER HANYA CONTAINER */
    border-bottom: 3px solid #1f5f8b !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

/* CONTAINER UTAMA - BATAS KIRI KANAN */
.pkp_navigation_primary_wrapper > .pkp_navigation_primary,
.pkp_navigation_primary_wrapper > .pkp_navigation_search_wrapper {
    max-width: 1200px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

/* PRIMARY MENU - PUSH SEARCH KE KANAN */
.pkp_navigation_primary {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin: 0 !important;
    padding: 0 !important;
    flex: 1 !important; /* Ambil ruang yang tersedia */
}

.pkp_navigation_primary > li {
    margin: 0 !important;
    padding: 0 !important;
}

/* MENU BUTTON PREMIUM */
.pkp_navigation_primary > li > a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    
    height: 44px !important;
    padding: 0 24px !important;
    min-width: 120px !important;
    
    background: linear-gradient(135deg, #1f5f8b 0%, #3b82f6 100%) !important;
    color: #ffffff !important;
    
    border-radius: 14px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-decoration: none !important;
    position: relative !important;
    overflow: hidden !important;
    
    box-shadow: 0 6px 20px rgba(31,95,139,0.3) !important;
    border: 2px solid rgba(255,255,255,0.2) !important;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1) !important;
}

/* SHIMMER EFFECT */
.pkp_navigation_primary > li > a::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent) !important;
    transition: left 0.6s !important;
}

.pkp_navigation_primary > li > a:hover::before {
    left: 100% !important;
}

.pkp_navigation_primary > li > a:hover {
    background: linear-gradient(135deg, #0f3f63, #1e40af) !important;
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 12px 35px rgba(31,95,139,0.45) !important;
}

/* ACTIVE STATE */
.pkp_navigation_primary > li.current > a {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
    color: #1f5f8b !important;
    border: 3px solid #1f5f8b !important;
    box-shadow: 0 4px 15px rgba(31,95,139,0.2) !important;
    font-weight: 700 !important;
}

/* SEARCH BUTTON - MENTOK KANAN • TETAP TOMbol PREMIUM */
.pkp_navigation_search_wrapper {
    display: flex !important;
    align-items: center !important;
    margin-left: auto !important;    /* PUSH KE KANAN */
    margin-right: 0 !important;     /* NO GAP KANAN */
    padding-right: 0 !important;    /* HAPUS PADDING */
    width: auto !important;
}

/* SEARCH BUTTON - STYLE TOMbol PREMIUM */
.pkp_navigation_search_wrapper a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    
    height: 44px !important;
    padding: 0 28px !important;     /* LEBIH LEBAR */
    min-width: 140px !important;    /* UKURAN TETAP */
    
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: #ffffff !important;
    border-radius: 14px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-decoration: none !important;
    
    box-shadow: 0 6px 20px rgba(16,185,129,0.3) !important;
    border: 2px solid rgba(255,255,255,0.2) !important;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1) !important;
    
    /* FORCE NO GAP */
    margin-right: 0 !important;
    margin-left: auto !important;
}

/* HOVER TOMbol HIJAU */
.pkp_navigation_search_wrapper a:hover {
    background: linear-gradient(135deg, #047857, #065f46) !important;
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 12px 35px rgba(16,185,129,0.45) !important;
}

/* CONTAINER FORCE MENTOK */
.pkp_navigation_primary_wrapper {
    justify-content: space-between !important;
    padding-right: 24px !important;
}

.pkp_navigation_primary_wrapper > .pkp_navigation_search_wrapper {
    margin-left: auto !important;
    margin-right: 0 !important;
}

/* MOBILE - JUGA TETAP TOMbol */
@media (max-width: 991px) {
    .pkp_navigation_search_wrapper {
        margin-left: auto !important;
        margin-right: 0 !important;
        width: auto !important;
    }
    
    .pkp_navigation_search_wrapper a {
        height: 44px !important;
        padding: 0 24px !important;
        min-width: 120px !important;
        border-radius: 12px !important;
    }
}


/* DROPDOWN */
.pkp_navigation_primary li ul {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%) !important;
    border-radius: 16px !important;
    padding: 12px 0 !important;
    border: 2px solid rgba(31,95,139,0.1) !important;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15) !important;
    margin-top: 8px !important;
}

.pkp_navigation_primary li ul li a {
    color: #374151 !important;
    padding: 12px 24px !important;
    font-weight: 500 !important;
    border-radius: 12px !important;
    margin: 4px 8px !important;
}

.pkp_navigation_primary li ul li a:hover {
    background: linear-gradient(135deg, rgba(31,95,139,0.1), rgba(59,130,246,0.1)) !important;
    color: #1f5f8b !important;
}

/* LOGIN BUTTON */
.pkp_navigation_user a {
    background: linear-gradient(135deg, rgba(31,95,139,0.15), rgba(59,130,246,0.15)) !important;
    color: #1f5f8b !important;
    border: 2px solid rgba(31,95,139,0.2) !important;
    padding: 10px 20px !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    margin-left: 12px !important;
}

.pkp_navigation_user a:hover {
    background: linear-gradient(135deg, #1f5f8b, #3b82f6) !important;
    color: white !important;
}

/* ========================================================
   MOBILE - HAMBURGER KANAN MENTOK
   ======================================================== */
@media (max-width: 991px) {
    .pkp_navigation_primary_wrapper {
        padding: 16px 20px !important;
    }
    
    .pkp_navigation_primary {
        display: none !important;
    }
    
    /* HAMBURGER MENTOK KANAN */
    .pkp_navigation_primary_toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 52px !important;
        height: 52px !important;
        background: linear-gradient(135deg, #1f5f8b, #3b82f6) !important;
        border: none !important;
        border-radius: 14px !important;
        margin-left: auto !important;
        margin-right: 0 !important;
        box-shadow: 0 6px 20px rgba(31,95,139,0.35) !important;
    }
    
    .pkp_navigation_primary_toggle::before {
        content: '☰' !important;
        font-size: 26px !important;
        color: white !important;
    }
}

/* TABLET & MOBILE */
@media (max-width: 768px) {
    .pkp_navigation_primary_wrapper {
        padding: 14px 16px !important;
    }
    
    .pkp_navigation_primary_wrapper > .pkp_navigation_primary,
    .pkp_navigation_primary_wrapper > .pkp_navigation_search_wrapper {
        padding: 0 !important;
    }
}

/* OJS FIXES */
.pkp_head_wrapper {
    overflow: visible !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.pkp_navigation_primary > li:first-child a {
    margin-left: 0 !important;
}

/* =========================================================
   FOOTER MODERN OJS 3.4 - FULL PUTIH ELEGANT
   LOGO + BUTTON PREMIUM + RESPONSIF
   ========================================================= */

/* MAIN CONTAINER */
.footer-modern {
    background-color:white !important;
    border-top: 4px solid #1f5f8b !important;
    padding: 65px 0 0 !important;
    box-shadow: 0 -8px 40px rgba(0,0,0,0.06) !important;
    position: relative !important;
    
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1f5f8b 0%, #3b82f6 25%, #10b981 50%, #f59e0b 75%, #1f5f8b 100%) !important;
}

/* CONTENT GRID */
.footer-content {
    max-width: 1200px !important;
    margin: 0 auto 50px !important;
    padding: 0 24px !important;
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr 1.2fr !important;
    gap: 70px !important;
}

/* BRAND SECTION */
.footer-brand {
    display: flex !important;
    flex-direction: column !important;
}

.brand-logo {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    margin-bottom: 24px !important;
    text-decoration: none !important;
}

.brand-logo img {
    width: 120px !important;
    height: 120px !important;
    border-radius: 20px !important;
    object-fit: cover !important;
    box-shadow: 0 10px 30px rgba(31,95,139,0.2) !important;
    border: 4px solid rgba(31,95,139,0.1) !important;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1) !important;
}

.brand-logo:hover img {
    transform: scale(1.1) rotate(5deg) !important;
    box-shadow: 0 20px 50px rgba(31,95,139,0.35) !important;
    border-color: #1f5f8b !important;
}

.brand-logo span {
    font-size: 32px !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #1f5f8b 0%, #3b82f6 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    letter-spacing: -1px !important;
}

.footer-brand p {
    color: #374151 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1.6 !important;
    margin: 0 0 12px 0 !important;
}

.footer-brand p small {
    font-weight: 400 !important;
    color: #6b7280 !important;
    font-size: 14px !important;
}

.publisher {
    background: linear-gradient(135deg, rgba(31,95,139,0.1), rgba(59,130,246,0.1)) !important;
    color: #1f5f8b !important;
    padding: 8px 16px !important;
    border-radius: 25px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    border-left: 4px solid #1f5f8b !important;
}

/* SECTION TITLES */
.footer-section h4 {
    color: #1f2937 !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    margin: 0 0 28px 0 !important;
    position: relative !important;
    padding-bottom: 12px !important;
}

.footer-section h4::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 50px !important;
    height: 4px !important;
    background: linear-gradient(90deg, #1f5f8b, #3b82f6) !important;
    border-radius: 3px !important;
}

/* PREMIUM BUTTONS */
.footer-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 14px 24px !important;
    margin: 8px 0 !important;
    border-radius: 16px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1) !important;
    border: 2px solid transparent !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
}

.footer-btn::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent) !important;
    transition: left 0.7s !important;
}

.footer-btn:hover::before {
    left: 100% !important;
}

/* BUTTON VARIANTS */
.footer-btn {
    background: rgba(255,255,255,0.85) !important;
    color: #374151 !important;
    border-color: rgba(229,231,235,0.8) !important;
}

.footer-btn:hover {
    background: linear-gradient(135deg, #1f5f8b, #3b82f6) !important;
    color: white !important;
    transform: translateX(12px) translateY(-3px) !important;
    box-shadow: 0 12px 40px rgba(31,95,139,0.35) !important;
}

.footer-btn.primary {
    background: linear-gradient(135deg, rgba(16,185,129,0.2), rgba(5,150,105,0.2)) !important;
    border-color: rgba(16,185,129,0.4) !important;
    color: #059669 !important;
}

.footer-btn.primary:hover {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    color: white !important;
}

.footer-btn.success {
    background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(5,150,105,0.15)) !important;
    border-color: rgba(16,185,129,0.3) !important;
    color: #059669 !important;
}

.footer-btn.success:hover {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    color: white !important;
}

.footer-btn.warning {
    background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(217,119,6,0.15)) !important;
    border-color: rgba(245,158,11,0.3) !important;
    color: #d97706 !important;
}

.footer-btn.warning:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706) !important;
    color: white !important;
}

.footer-btn.accent {
    background: linear-gradient(135deg, rgba(31,95,139,0.15), rgba(59,130,246,0.15)) !important;
    border-color: rgba(31,95,139,0.3) !important;
    color: #1f5f8b !important;
}

.footer-btn.accent:hover {
    background: linear-gradient(135deg, #1f5f8b, #3b82f6) !important;
    color: white !important;
}

/* CONTACT LOCATION */
.contact-location {
    color: #6b7280 !important;
    font-size: 13px !important;
    margin-top: 16px !important;
    padding: 8px 16px !important;
    background: rgba(107,114,128,0.1) !important;
    border-radius: 20px !important;
    font-style: italic !important;
}

/* BOTTOM BAR */
.footer-bottom {
    max-width: 1200px !important;
    margin: 0 auto 20px !important;
    padding: 0 24px 24px !important;
    border-top: 1px solid #e5e7eb !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 24px !important;
}

.footer-bottom span:first-child {
    color: #6b7280 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

.footer-badges {
    display: flex !important;
    gap: 16px !important;
}

.badge {
    padding: 12px 24px !important;
    border-radius: 30px !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15) !important;
    transition: all 0.3s ease !important;
}

.badge.info {
    background: linear-gradient(135deg, #1f5f8b, #d97706) !important;
    color: #d97706 !important;
}

.badge.info {
    background: linear-gradient(135deg, #1f5f8b, #d97706) !important;
    color: #d97706 !important;
}

.badge:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 35px rgba(0,0,0,0.25) !important;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr !important;
        gap: 32px !important;
        padding: 0 20px !important;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
        padding: 0 16px !important;
    }
    
    .footer-modern {
        padding: 40px 0 0 !important;
    }
    
    .footer-bottom {
        flex-direction: column !important;
        text-align: center !important;
        gap: 20px !important;
        padding: 0 16px 20px !important;
    }
    
    .brand-logo img {
        width: 52px !important;
        height: 52px !important;
    }
}

@media (max-width: 480px) {
    .brand-logo img {
        width: 48px !important;
        height: 48px !important;
    }
    
    .brand-logo span {
        font-size: 26px !important;
    }
    
    .footer-btn {
        padding: 12px 20px !important;
        font-size: 13px !important;
    }
}
/* HAPUS / OVERRIDE BACKGROUND BIRU FOOTER WRAPPER */
.pkp_structure_footer_wrapper {
    background: transparent !important;
    background-color: #ffffff !important;
}

/* FORCE WHITE - HAPUS SEMUA WARNA LAIN */
.pkp_structure_footer_wrapper {
    background: #ffffff !important;
    background-color: #ffffff !important;
    background-image: none !important;
}

/* EXTRA SAFETY - OVERRIDE APA SAJA */
body .pkp_structure_footer_wrapper,
.pkp_page_footer .pkp_structure_footer_wrapper,
.pkp_structure_footer .pkp_structure_footer_wrapper {
    background: #ffffff !important;
}


/* OJS OVERRIDE */
.pkp_structure_footer .footer-modern * {
    background: transparent !important;
}

.pkp_footer_copyright .footer-modern {
    display: none !important;
}

/* FORCE WHITE */
.pkp_page_footer,
.pkp_structure_footer_wrapper,
.pkp_structure_footer {
    background: #ffffff !important;
}



#SIDEBAR
/* =========================================================
   SIDEBAR MENU PREMIUM – OJS 3.4
   PROFESSIONAL • ANIMATED • CONVERSION-FOCUSED
   ========================================================= */

.sidebar-menu-premium {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 28px;
  margin: 24px 0;
  box-shadow: 
    0 10px 30px rgba(0,0,0,0.1),
    0 1px 3px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

.sidebar-menu-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #10b981, #f59e0b);
}

/* HEADER */
.menu-header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f1f5f9;
}

.menu-header h3 {
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 12px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.journal-stats {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.stat {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

/* QUICK LINKS */
.quick-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.quick-btn {
  padding: 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.quick-btn.primary {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  box-shadow: 0 4px 15px rgba(16,185,129,0.3);
}

.quick-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16,185,129,0.4);
}

.quick-btn.secondary {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  color: #1e293b;
  border: 2px solid #e2e8f0;
}

.quick-btn.secondary:hover {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border-color: #3b82f6;
}

/* MENU GROUPS */
.menu-section {
  max-height: 500px;
  overflow-y: auto;
  margin-bottom: 24px;
}

.menu-group {
  margin-bottom: 24px;
  animation: slideInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.menu-group:nth-child(1) { animation-delay: 0.1s; }
.menu-group:nth-child(2) { animation-delay: 0.2s; }
.menu-group:nth-child(3) { animation-delay: 0.3s; }
.menu-group:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-group h4 {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 16px 0;
  padding: 12px 16px;
  background: linear-gradient(90deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-group.expanded h4 {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
}

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

.menu-group li {
  margin-bottom: 8px;
}

.menu-group a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255,255,255,0.8);
  color: #475569;
  text-decoration: none;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(226,232,240,0.8);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.menu-group a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(59,130,246,0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
}

.menu-group a:hover::before {
  width: 300px;
  height: 300px;
}

.menu-group a:hover {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border-color: #3b82f6;
  transform: translateX(6px);
  box-shadow: 0 6px 20px rgba(59,130,246,0.3);
}

/* FOOTER CTA */
.menu-footer {
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
}

.cta-button {
  display: block;
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: white;
  padding: 16px 24px;
  text-align: center;
  text-decoration: none;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 6px 20px rgba(99,102,241,0.4);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(99,102,241,0.5);
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .sidebar-menu-premium {
    margin: 16px -16px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
  
  .quick-links {
    flex-direction: column;
  }
  
  .menu-header h3 {
    font-size: 18px;
  }
}

/* Custom Scrollbar */
.menu-section::-webkit-scrollbar {
  width: 4px;
}

.menu-section::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 10px;
}

.menu-section::-webkit-scrollbar-thumb {
  background: linear-gradient(#cbd5e1, #94a3b8);
  border-radius: 10px;
}
.mobile-menu-fallback {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 99999;
  display: block !important;
}

@media (min-width: 992px) {
  .mobile-menu-fallback { display: none !important; }
}

.mobile-hamburger {
  background: #3b82f6;
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.mobile-nav {
  position: fixed;
  top: 70px;
  right: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  display: none;
  flex-direction: column;
}

.mobile-nav.show {
  display: flex;
}

.mobile-nav a {
  padding: 16px 24px;
  text-decoration: none;
  color: #1f2937;
  border-bottom: 1px solid #f3f4f6;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

/* =========================================================
   CONTACT US PAGE - JPIDE OJS 3.4
   MODERN • RESPONSIF • FORM PREMIUM
   ========================================================= */

.contact-page {
    background: linear-gradient(145deg, #f8fafc 0%, #ffffff 100%) !important;
    min-height: 100vh !important;
}

/* HERO SECTION */
.contact-hero {
    background: linear-gradient(135deg, #1f5f8b 0%, #3b82f6 100%) !important;
    color: white !important;
    padding: 80px 0 60px !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
}

.contact-hero::before {
    content: '';
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1.5" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') !important;
}

.contact-hero h1 {
    font-size: 48px !important;
    font-weight: 800 !important;
    margin: 0 0 16px 0 !important;
    background: linear-gradient(135deg, white 0%, #e2e8f0 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    letter-spacing: -1px !important;
}

.contact-hero p {
    font-size: 20px !important;
    opacity: 0.95 !important;
    margin: 0 !important;
    max-width: 600px !important;
    margin: 0 auto !important;
}

/* CONTAINER */
.container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
}

/* MAIN CONTENT GRID */
.contact-content {
    padding: 80px 0 !important;
}

.contact-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 60px !important;
}

/* CONTACT INFO */
.contact-info {
    background: white !important;
    padding: 48px !important;
    border-radius: 24px !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08) !important;
    border: 1px solid rgba(229,231,235,0.5) !important;
}

.contact-info h2 {
    color: #1f2937 !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    margin: 0 0 40px 0 !important;
    position: relative !important;
}

.contact-info h2::after {
    content: '' !important;
    position: absolute !important;
    bottom: -12px !important;
    left: 0 !important;
    width: 60px !important;
    height: 4px !important;
    background: linear-gradient(90deg, #1f5f8b, #3b82f6) !important;
    border-radius: 2px !important;
}

.contact-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 20px !important;
    margin-bottom: 32px !important;
    padding: 24px !important;
    background: linear-gradient(135deg, rgba(31,95,139,0.03), rgba(59,130,246,0.03)) !important;
    border-radius: 16px !important;
    border-left: 4px solid #1f5f8b !important;
    transition: all 0.3s ease !important;
}

.contact-item:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 40px rgba(31,95,139,0.1) !important;
}

.contact-icon {
    width: 56px !important;
    height: 56px !important;
    background: linear-gradient(135deg, #1f5f8b, #3b82f6) !important;
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 24px !important;
    flex-shrink: 0 !important;
    box-shadow: 0 8px 25px rgba(31,95,139,0.3) !important;
}

.contact-details h3 {
    color: #1f2937 !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    margin: 0 0 8px 0 !important;
}

.contact-details p {
    color: #4b5563 !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

.contact-details a {
    color: #1f5f8b !important;
    text-decoration: none !important;
    font-weight: 500 !important;
}

.contact-details a:hover {
    color: #3b82f6 !important;
    text-decoration: underline !important;
}

/* CONTACT FORM */
.contact-form-wrapper {
    display: flex !important;
    align-items: flex-start !important;
}

.contact-form {
    background: white !important;
    padding: 48px !important;
    border-radius: 24px !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08) !important;
    border: 1px solid rgba(229,231,235,0.5) !important;
    width: 100% !important;
}

.contact-form h2 {
    color: #1f2937 !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    margin: 0 0 12px 0 !important;
}

.contact-form p {
    color: #6b7280 !important;
    font-size: 16px !important;
    margin: 0 0 40px 0 !important;
}

/* FORM STYLES */
.contact-form-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
}

.form-group {
    position: relative !important;
}

.form-group input,
.form-group textarea {
    width: 100% !important;
    padding: 16px 20px !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 14px !important;
    font-size: 16px !important;
    background: #fafbfc !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none !important;
    border-color: #1f5f8b !important;
    background: white !important;
    box-shadow: 0 0 0 4px rgba(31,95,139,0.1) !important;
    transform: translateY(-2px) !important;
}

.form-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
}

.submit-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 18px 32px !important;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 16px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1) !important;
    box-shadow: 0 10px 30px rgba(16,185,129,0.3) !important;
    overflow: hidden !important;
    position: relative !important;
}

.submit-btn:hover {
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow: 0 20px 50px rgba(16,185,129,0.4) !important;
}

.submit-btn:active {
    transform: translateY(-2px) !important;
}

.btn-icon {
    transition: transform 0.3s ease !important;
}

.submit-btn:hover .btn-icon {
    transform: rotate(20deg) scale(1.2) !important;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .contact-hero h1 {
        font-size: 36px !important;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 0 40px !important;
    }
    
    .contact-hero h1 {
        font-size: 32px !important;
    }
    
    .contact-content {
        padding: 40px 0 !important;
    }
    
    .contact-info,
    .contact-form {
        padding: 32px 24px !important;
    }
    
    .form-row {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px !important;
    }
    
    .contact-hero h1 {
        font-size: 28px !important;
    }
    
    .contact-info,
    .contact-form {
        padding: 24px 20px !important;
    }
}

/* OJS COMPATIBILITY */
.pkp_structure_content .contact-page * {
    box-sizing: border-box !important;
}

