:root {
  --navy: #0d1f42;
  --navy2: #162d5c;
  --blue: #2057a7;
  --blue-light: #3b82f6;
  --gold: #e8b84b;
  --gold2: #c99a2e;
  --gold-pale: rgba(232,184,75,0.12);
  --light: #f5f7fb;
  --gray: #506070;
  --gray-light: #e1e8f0;
  --white: #ffffff;
  --success: #16a34a;
  --error: #dc2626;
  --radius: 14px;
  --shadow: 0 8px 32px rgba(13,31,66,0.10);
  --shadow-lg: 0 20px 60px rgba(13,31,66,0.14);
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
#preloader {
  position:fixed; inset:0; z-index:9999;
  background:#0d1f42; display:flex; align-items:center; justify-content:center;
  transition:opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.hide { opacity:0; visibility:hidden; }
.skip-link {
  position:absolute; top:-100px; left:12px; z-index:10000;
  background:var(--gold); color:var(--navy); padding:12px 22px;
  border-radius:8px; font-weight:700; font-size:0.9rem;
  text-decoration:none; transition:top 0.2s ease;
}
.skip-link:focus { top:12px; outline:3px solid var(--navy); outline-offset:2px; }
.preloader-spinner {
  width:48px; height:48px; border-radius:50%;
  border:3px solid rgba(232,184,75,0.2); border-top-color:#e8b84b;
  animation:spin 0.8s linear infinite;
}
@keyframes spin { to { transform:rotate(360deg); } }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: #2a3a50;
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration:none; color:inherit; }
img { max-width:100%; display:block; }

/* ── HEADER ── */
header {
  position: fixed; top:0; width:100%; z-index:1000;
  background: rgba(13,31,66,0.97);
  backdrop-filter: blur(14px);
  display: flex; align-items:center; justify-content:space-between;
  padding: 0 5%; height: 68px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow 0.3s;
}
header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.25); }
.logo { display:flex; align-items:center; gap:13px; }
.logo-badge {
  width:40px; height:40px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border-radius:10px;
  display:grid; place-items:center;
  font-weight:900; font-size:0.75rem; color:var(--navy);
  letter-spacing:0.5px;
  box-shadow: 0 2px 10px rgba(232,184,75,0.4);
}
.logo-text { color:var(--white); font-size:0.95rem; font-weight:700; line-height:1.25; }
.logo-text span { display:block; font-size:0.67rem; font-weight:400; color:#8899bb; }
.header-right { display:flex; align-items:center; gap:18px; }
nav ul { list-style:none; display:flex; gap:26px; }
nav ul li a {
  color:#aab4cc; font-size:0.875rem; font-weight:500;
  position:relative; padding-bottom:4px; transition:color 0.2s;
}
nav ul li a::after {
  content:''; position:absolute; bottom:0; left:0;
  width:0; height:2px; background:var(--gold); border-radius:1px;
  transition:width 0.3s;
}
nav ul li a:hover, nav ul li a.active { color:var(--gold); }
nav ul li a:hover::after, nav ul li a.active::after { width:100%; }

.lang-toggle {
  display:flex; align-items:center; gap:5px;
  background:rgba(255,255,255,0.07); border-radius:22px;
  padding:4px 6px; border:1px solid rgba(255,255,255,0.13);
}
.lang-btn {
  padding:4px 11px; border-radius:16px;
  font-size:0.73rem; font-weight:700;
  cursor:pointer; border:none; background:transparent;
  color:#8899bb; transition:all 0.2s;
  display:flex; align-items:center; gap:4px;
}
.lang-btn.active { background:var(--gold); color:var(--navy); }
.lang-btn:hover:not(.active) { color:var(--white); }

.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:4px; }
.hamburger span { width:22px; height:2px; background:var(--white); border-radius:2px; transition:all 0.3s; }
.hamburger.open span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items:center; justify-content:center;
  text-align: center; position:relative; overflow:hidden;
  background: linear-gradient(155deg, #0a172e 0%, #0d1f42 40%, #142952 70%, #1a3a70 100%);
  padding: 130px 6% 100px;
}
.hero-bg-grid {
  position:absolute; inset:0;
  background-image: linear-gradient(rgba(32,87,167,0.08) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(32,87,167,0.08) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-particles { position:absolute; inset:0; overflow:hidden; pointer-events:none; }
.particle {
  position:absolute; border-radius:50%;
  background:rgba(232,184,75,0.10);
  animation:float linear infinite;
}
@keyframes float {
  0%   { transform:translateY(100vh) scale(0); opacity:0; }
  10%  { opacity:1; }
  90%  { opacity:0.6; }
  100% { transform:translateY(-120px) scale(1); opacity:0; }
}
.hero-content { position:relative; z-index:2; max-width:860px; }
.hero-eyebrow {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(232,184,75,0.10); border:1px solid rgba(232,184,75,0.28);
  color:var(--gold); padding:6px 18px; border-radius:22px;
  font-size:0.74rem; font-weight:700; letter-spacing:1.2px;
  text-transform:uppercase; margin-bottom:26px;
  animation: fadeUp 0.6s ease both;
}
.hero h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2rem,4.5vw,3.4rem);
  font-weight:600; color:var(--white); line-height:1.22;
  margin-bottom:24px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero h1 em { color:var(--gold); font-style:italic; }
.hero-abstract {
  font-size:0.975rem; color:#9aaac4;
  max-width:700px; margin:0 auto 36px;
  line-height:1.9; text-align:justify;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-btns {
  display:flex; gap:14px; justify-content:center; flex-wrap:wrap;
  animation: fadeUp 0.6s 0.35s ease both;
}
.btn-primary {
  padding:13px 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color:var(--navy); font-weight:800; border-radius:10px;
  font-size:0.9rem; transition:all 0.25s;
  box-shadow:0 4px 22px rgba(232,184,75,0.35);
  border:none; cursor:pointer;
}
.btn-primary:hover { transform:translateY(-3px); box-shadow:0 8px 30px rgba(232,184,75,0.45); }
.btn-outline {
  padding:13px 32px; border:2px solid rgba(255,255,255,0.22);
  color:var(--white); font-weight:600; border-radius:10px;
  font-size:0.9rem; transition:all 0.25s; cursor:pointer;
  background:transparent;
}
.btn-outline:hover { border-color:var(--white); background:rgba(255,255,255,0.07); transform:translateY(-3px); }

.hero-stats {
  display:flex; gap:32px; justify-content:center; flex-wrap:wrap;
  margin-top:44px;
  animation: fadeUp 0.6s 0.45s ease both;
}
.stat-item { text-align:center; }
.stat-num { font-size:1.8rem; font-weight:800; color:var(--gold); line-height:1; }
.stat-lbl { font-size:0.73rem; color:#7788aa; text-transform:uppercase; letter-spacing:0.8px; margin-top:4px; }

.scroll-ind {
  position:absolute; bottom:30px; left:50%; transform:translateX(-50%);
  color:rgba(255,255,255,0.28); font-size:0.7rem;
  display:flex; flex-direction:column; align-items:center; gap:8px;
  animation:bounce 2.4s ease-in-out infinite; z-index:2;
}
.scroll-arrow { width:20px; height:20px; border-right:2px solid rgba(255,255,255,0.3); border-bottom:2px solid rgba(255,255,255,0.3); transform:rotate(45deg); }
@keyframes bounce {
  0%,100% { transform:translateX(-50%) translateY(0); }
  50%      { transform:translateX(-50%) translateY(10px); }
}

/* ── SECTIONS ── */
section { padding:96px 6%; }
.section-label {
  text-align:center; font-size:0.7rem; font-weight:700;
  letter-spacing:2.5px; text-transform:uppercase; color:var(--blue);
  margin-bottom:10px;
}
.section-title {
  text-align:center;
  font-family:'Lora',serif;
  font-size:clamp(1.7rem,3vw,2.4rem);
  font-weight:600; color:var(--navy); margin-bottom:12px; line-height:1.3;
}
.section-sub { text-align:center; color:var(--gray); max-width:600px; margin:0 auto 52px; font-size:0.93rem; }
.divider { width:44px; height:4px; background:linear-gradient(90deg,var(--blue),var(--gold)); border-radius:2px; margin:16px auto 0; }

/* ── SEARCH BAR ── */
.search-wrap {
  max-width:560px; margin:0 auto 44px;
  display:flex; gap:0; position:relative;
}
.search-input {
  flex:1; padding:14px 20px 14px 48px;
  border:2px solid var(--gray-light); border-radius:10px 0 0 10px;
  font-size:0.9rem; font-family:inherit; outline:none;
  transition:border-color 0.2s; color:var(--navy);
  background:var(--white);
}
.search-input:focus { border-color:var(--blue); }
.search-icon {
  position:absolute; left:16px; top:50%; transform:translateY(-50%);
  color:var(--gray); font-size:1rem; pointer-events:none;
}
.search-btn {
  padding:14px 22px; background:var(--blue); color:var(--white);
  border:none; border-radius:0 10px 10px 0; cursor:pointer;
  font-size:0.88rem; font-weight:600; font-family:inherit;
  transition:background 0.2s;
}
.search-btn:hover { background:var(--navy); }
.filter-tabs {
  display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin-bottom:36px;
}
.filter-tab {
  padding:7px 18px; border-radius:22px; font-size:0.8rem; font-weight:600;
  cursor:pointer; border:2px solid var(--gray-light); color:var(--gray);
  background:var(--white); transition:all 0.2s; font-family:inherit;
}
.filter-tab.active, .filter-tab:hover {
  background:var(--navy); color:var(--white); border-color:var(--navy);
}
.no-results {
  text-align:center; color:var(--gray); padding:40px;
  display:none; width:100%;
}
.no-results.show { display:block; }

/* ── CEK ARTIKEL SAYA: BANNER ── */
.article-check-banner {
  max-width:1100px; margin:0 auto 32px;
  background:linear-gradient(135deg,var(--navy) 0%,#1a3570 100%);
  border-radius:16px; padding:24px 28px;
  display:flex; align-items:center; gap:20px; flex-wrap:wrap;
  position:relative; overflow:hidden;
}
.article-check-banner::before {
  content:''; position:absolute; top:-40px; right:-40px;
  width:140px; height:140px; background:rgba(232,184,75,0.08); border-radius:50%;
}
.article-check-banner-icon {
  width:50px; height:50px; min-width:50px; border-radius:12px;
  background:rgba(232,184,75,0.15); display:grid; place-items:center;
  font-size:1.5rem; position:relative; z-index:1;
}
.article-check-banner-text { flex:1; min-width:220px; position:relative; z-index:1; }
.article-check-banner-title { color:var(--white); font-weight:700; font-size:0.98rem; margin-bottom:4px; }
.article-check-banner-sub { color:#9aaac4; font-size:0.83rem; line-height:1.5; }
.article-check-banner-btn {
  display:inline-flex; align-items:center; gap:8px;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:var(--navy); font-weight:800; padding:12px 24px;
  border-radius:10px; font-size:0.88rem; border:none; cursor:pointer;
  white-space:nowrap; transition:all 0.2s; position:relative; z-index:1;
  font-family:inherit;
}
.article-check-banner-btn:hover { transform:translateY(-2px); box-shadow:0 6px 20px rgba(232,184,75,0.4); }

/* ── CEK ARTIKEL SAYA: FORM & RESULT ── */
.ac-input { margin-bottom:0; }
#ac-form-state .form-group { margin-bottom:16px; }

.ac-result-card {
  border-radius:14px; padding:20px 22px; margin-bottom:14px;
  border:1.5px solid var(--gray-light); position:relative;
}
.ac-result-card.ac-top-match {
  border-color:var(--gold); background:linear-gradient(135deg,rgba(232,184,75,0.06),rgba(232,184,75,0.02));
  box-shadow:0 6px 20px rgba(232,184,75,0.15);
}
.ac-result-rank {
  position:absolute; top:-10px; left:18px;
  background:var(--gold); color:var(--navy); font-size:0.65rem; font-weight:800;
  padding:3px 12px; border-radius:10px; letter-spacing:0.5px;
}
.ac-result-card.ac-rank-2 .ac-result-rank,
.ac-result-card.ac-rank-3 .ac-result-rank {
  background:var(--light); color:var(--gray); border:1px solid var(--gray-light);
}
.ac-result-header { display:flex; align-items:center; gap:12px; margin-bottom:10px; margin-top:6px; }
.ac-result-abbr {
  font-size:0.7rem; font-weight:800; letter-spacing:1px; text-transform:uppercase;
  padding:4px 12px; border-radius:14px; color:#fff;
}
.ac-result-name { font-weight:700; color:var(--navy); font-size:0.95rem; }
.ac-result-score {
  margin-left:auto; font-size:0.78rem; font-weight:700;
  color:var(--gold2); white-space:nowrap;
}
.ac-result-topics { display:flex; gap:6px; flex-wrap:wrap; margin:10px 0; }
.ac-result-topic-chip {
  font-size:0.72rem; background:var(--light); color:var(--navy);
  padding:4px 11px; border-radius:12px; border:1px solid var(--gray-light);
}
.ac-result-actions { display:flex; gap:10px; margin-top:14px; flex-wrap:wrap; }
.ac-result-btn {
  display:inline-flex; align-items:center; gap:6px;
  padding:8px 16px; border-radius:8px; font-size:0.8rem; font-weight:700;
  text-decoration:none; cursor:pointer; border:none; font-family:inherit;
  transition:all 0.2s;
}
.ac-result-btn-primary { background:var(--navy); color:#fff; }
.ac-result-btn-primary:hover { background:#1a3570; transform:translateY(-1px); }
.ac-result-btn-sec { background:var(--light); color:var(--navy); border:1px solid var(--gray-light); }
.ac-result-btn-sec:hover { background:var(--gray-light); }
.ac-no-match-note {
  background:rgba(232,184,75,0.08); border:1px solid rgba(232,184,75,0.25);
  border-radius:10px; padding:14px 16px; font-size:0.82rem; color:var(--gray);
  margin-bottom:14px; line-height:1.6;
}

@media(max-width:600px) {
  .article-check-banner { flex-direction:column; text-align:center; }
  .article-check-banner-btn { width:100%; justify-content:center; }
  .ac-result-score { margin-left:0; width:100%; }
}
.index-badge {
  display:flex; align-items:center; gap:8px;
  background:var(--white); border:1.5px solid var(--gray-light);
  border-radius:10px; padding:10px 18px;
  font-size:0.82rem; font-weight:600; color:var(--navy);
  transition:all 0.2s;
}
.index-badge:hover { border-color:var(--blue); box-shadow:0 4px 14px rgba(32,87,167,0.12); transform:translateY(-2px); }
.index-badge span { font-size:1rem; }

/* ── SERVICES ── */
#services { background:var(--light); }
.service-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:22px; max-width:1100px; margin:0 auto;
}
.service-card {
  background:var(--white); border-radius:var(--radius);
  padding:32px 26px; border:1.5px solid var(--gray-light);
  transition:all 0.3s; position:relative; overflow:hidden;
}
.service-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,var(--blue),var(--gold));
  transform:scaleX(0); transform-origin:left; transition:transform 0.35s;
}
.service-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); border-color:transparent; }
.service-card:hover::before { transform:scaleX(1); }
.service-icon {
  width:52px; height:52px; border-radius:12px;
  background:linear-gradient(135deg,rgba(32,87,167,0.09),rgba(232,184,75,0.09));
  display:grid; place-items:center; font-size:1.6rem; margin-bottom:18px;
}
.service-card h3 { color:var(--navy2); font-size:1rem; font-weight:700; margin-bottom:10px; }

/* ── SERVICES ACCORDION ── */
.svc-accordion-wrap { max-width:1100px; margin:0 auto; display:flex; flex-direction:column; gap:14px; }
.svc-accordion-item {
  background:var(--white); border-radius:14px; border:1.5px solid var(--gray-light);
  overflow:hidden; transition:border-color 0.2s;
}
.svc-accordion-item.open { border-color:var(--blue); box-shadow:0 8px 28px rgba(32,87,167,0.1); }
.svc-accordion-header {
  width:100%; display:flex; align-items:center; gap:14px;
  padding:20px 24px; background:transparent; border:none; cursor:pointer;
  text-align:left; font-family:inherit;
}
.svc-accordion-bar { width:4px; height:28px; background:linear-gradient(180deg,var(--blue),var(--gold)); border-radius:2px; flex-shrink:0; }
.svc-accordion-header h3 { color:var(--navy); font-size:1.02rem; font-weight:700; flex:1; margin:0; }
.svc-accordion-count {
  font-size:0.75rem; color:var(--gray); background:var(--light);
  padding:4px 12px; border-radius:14px; white-space:nowrap; font-weight:600;
}
.svc-accordion-icon {
  width:28px; height:28px; border-radius:50%; background:var(--light);
  display:grid; place-items:center; font-size:1.1rem; font-weight:300; color:var(--navy);
  transition:transform 0.3s; flex-shrink:0;
}
.svc-accordion-item.open .svc-accordion-icon { transform:rotate(45deg); background:var(--gold); color:var(--navy); }
.svc-accordion-panel {
  max-height:0; overflow:hidden; transition:max-height 0.4s ease;
}
.svc-accordion-item.open .svc-accordion-panel { max-height:1200px; }
.svc-accordion-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:16px; padding:0 24px 24px;
}
.svc-accordion-grid .service-card { padding:22px 20px; }
.svc-accordion-grid .service-icon { width:42px; height:42px; font-size:1.3rem; margin-bottom:12px; }
.svc-accordion-grid .service-card h3 { font-size:0.92rem; margin-bottom:0; }
.kbli-badge {
  font-size:0.65rem; background:rgba(32,87,167,0.1); color:var(--blue);
  padding:2px 8px; border-radius:10px; font-weight:700; white-space:nowrap;
}
@media(max-width:768px) {
  .svc-accordion-header { padding:16px 18px; gap:10px; }
  .svc-accordion-header h3 { font-size:0.92rem; }
  .svc-accordion-count { display:none; }
  .svc-accordion-grid { padding:0 16px 18px; }
}
.service-card p { color:var(--gray); font-size:0.875rem; line-height:1.75; }

/* ── JOURNALS ── */
#journals { background:var(--white); }
.journal-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:26px; max-width:1100px; margin:0 auto;
  align-items:stretch;
}
.journal-card {
  position: relative;
  border-radius:16px; overflow:hidden;
  border:1.5px solid var(--gray-light);
  transition:all 0.3s; cursor:pointer;
  background:var(--white);
  aspect-ratio: 420 / 594;
}
.journal-card-link {
  position: absolute;
  inset: 0;
  z-index: 6;
  cursor: pointer;
}
.journal-card:hover { transform:translateY(-7px); box-shadow:var(--shadow-lg); border-color:transparent; }
.journal-header { padding:30px 28px; position:relative; overflow:hidden; }
.journal-header-cover {
  position: relative;
  height: 100%;
  aspect-ratio: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.journal-header-cover::before {
  content: '';
  position: absolute;
  inset: -15px;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  filter: blur(12px) brightness(0.65);
  z-index: -2;
}
.journal-header-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
.journal-cover-overlay {
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(10,20,45,0.55) 0%, rgba(10,20,45,0.82) 60%, rgba(10,20,45,0.94) 100%);
  z-index:0;
}
.journal-header-cover .journal-abbr,
.journal-header-cover h3 { position:relative; z-index:1; }
.j1 .journal-header { background:linear-gradient(140deg,#6b4c2a,#a07040); }
.j2 .journal-header { background:linear-gradient(140deg,#b84c00,#e86820); }
.j3 .journal-header { background:linear-gradient(140deg,#0a2a7a,#1a55c8); }
.journal-header::after {
  content:''; position:absolute; bottom:-35px; right:-35px;
  width:110px; height:110px; background:rgba(255,255,255,0.06); border-radius:50%;
}
.journal-header::before {
  content:''; position:absolute; top:-25px; left:-25px;
  width:80px; height:80px; background:rgba(255,255,255,0.04); border-radius:50%;
}
.journal-abbr {
  display:inline-block; background:rgba(255,255,255,0.18);
  color:#fff; padding:4px 13px; border-radius:22px;
  font-size:0.68rem; font-weight:800; letter-spacing:1.2px;
  text-transform:uppercase; margin-bottom:12px;
  border:1px solid rgba(255,255,255,0.2);
}
.journal-header h3 { color:var(--white); font-size:1rem; line-height:1.45; font-weight:700; position:relative; z-index:1; }
.journal-body {
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin-top: 0;
  z-index: 5;
  border-radius: 16px 16px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0;
}
.journal-meta {
  display:flex; gap:10px; flex-wrap:wrap; margin-bottom:14px;
  pointer-events: none;
}
.j-badge {
  font-size:0.68rem; font-weight:600; padding:3px 10px;
  border-radius:12px; background:var(--light); color:var(--gray);
  border:1px solid var(--gray-light);
  pointer-events: none;
}
.journal-body p { color:var(--gray); font-size:0.87rem; margin-bottom:18px; line-height:1.75; pointer-events: none; }
.journal-actions { display:flex; gap:10px; align-items:center; position: relative; z-index: 7; pointer-events: auto; }
.journal-submit-btn {
  display:inline-flex; align-items:center; gap:7px;
  padding:9px 20px; border-radius:8px;
  font-weight:700; font-size:0.82rem;
  transition:all 0.2s; border:none; cursor:pointer;
  font-family:inherit;
}
.j1 .journal-submit-btn { background:rgba(107,76,42,0.10); color:#5a3c18; }
.j2 .journal-submit-btn { background:rgba(184,76,0,0.10); color:#8a3200; }
.j3 .journal-submit-btn { background:rgba(10,42,122,0.10); color:#0a2a7a; }
.journal-submit-btn:hover { transform:translateX(5px); }
.journal-detail-btn {
  background:transparent; border:none; cursor:pointer;
  color:var(--gray); font-size:0.8rem; font-family:inherit; font-weight:500;
  padding:9px 12px; border-radius:8px; transition:background 0.2s;
}
.journal-detail-btn:hover { background:var(--light); color:var(--navy); }
.issn-row { margin-top:12px; padding-top:12px; border-top:1px dashed var(--gray-light); font-size:0.74rem; color:var(--gray); font-style:italic; pointer-events: none; }
.issn-row a { position: relative; z-index: 7; pointer-events: auto; }

.journal-card:hover .journal-body,
.journal-card:focus-within .journal-body,
.journal-card.active .journal-body {
  transform: translateY(0);
  opacity: 1;
}

/* ── MODAL ── */
.modal-overlay {
  position:fixed; inset:0; z-index:2000;
  background:rgba(10,20,45,0.75); backdrop-filter:blur(6px);
  display:flex; align-items:center; justify-content:center;
  padding:20px; opacity:0; pointer-events:none; transition:opacity 0.3s;
}
.modal-overlay.open { opacity:1; pointer-events:all; }
.modal {
  background:var(--white); border-radius:20px;
  max-width:600px; width:100%;
  transform:translateY(30px) scale(0.97); transition:transform 0.3s;
  overflow:hidden; max-height:90vh; overflow-y:auto;
}
.modal-overlay.open .modal { transform:translateY(0) scale(1); }
.modal-header { padding:32px 32px 24px; position:relative; }
.modal-header.j1 { background:linear-gradient(140deg,#6b4c2a,#a07040); }
.modal-header.j2 { background:linear-gradient(140deg,#b84c00,#e86820); }
.modal-header.j3 { background:linear-gradient(140deg,#0a2a7a,#1a55c8); }
.modal-close {
  position:absolute; top:16px; right:16px;
  width:32px; height:32px; border-radius:50%;
  background:rgba(255,255,255,0.15); border:none; cursor:pointer;
  color:var(--white); font-size:1.1rem; display:grid; place-items:center;
  transition:background 0.2s;
}
.modal-close:hover { background:rgba(255,255,255,0.25); }
.modal-abbr { display:inline-block; background:rgba(255,255,255,0.2); color:#fff; padding:4px 13px; border-radius:22px; font-size:0.68rem; font-weight:800; letter-spacing:1.2px; text-transform:uppercase; margin-bottom:12px; }
.modal-header h2 { color:var(--white); font-size:1.2rem; font-weight:700; line-height:1.4; }
.modal-body { padding:26px 32px 32px; }
.modal-section { margin-bottom:22px; }
.modal-section h4 { font-size:0.75rem; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:var(--blue); margin-bottom:8px; }
.modal-section p { color:var(--gray); font-size:0.88rem; line-height:1.75; }
.modal-meta-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.meta-box { background:var(--light); border-radius:10px; padding:12px 14px; }
.meta-box label { font-size:0.68rem; text-transform:uppercase; letter-spacing:1px; color:var(--gray); font-weight:600; display:block; margin-bottom:4px; }
.meta-box span { color:var(--navy); font-weight:700; font-size:0.88rem; }
.modal-topics { display:flex; gap:8px; flex-wrap:wrap; }
.topic-chip { background:var(--light); border:1px solid var(--gray-light); border-radius:20px; padding:5px 13px; font-size:0.78rem; color:var(--gray); }
.modal-footer { display:flex; gap:12px; margin-top:26px; }
.modal-btn-primary {
  flex:1; padding:12px 20px;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:var(--navy); font-weight:800; border-radius:9px;
  font-size:0.88rem; border:none; cursor:pointer;
  font-family:inherit; transition:all 0.2s; text-align:center;
  display:flex; align-items:center; justify-content:center; gap:8px;
}
.modal-btn-primary:hover { transform:translateY(-2px); box-shadow:0 6px 20px rgba(232,184,75,0.4); }
.modal-btn-sec {
  padding:12px 20px; border:2px solid var(--gray-light);
  color:var(--gray); border-radius:9px; font-size:0.88rem;
  font-weight:600; background:transparent; cursor:pointer;
  font-family:inherit; transition:all 0.2s;
}
.modal-btn-sec:hover { border-color:var(--navy); color:var(--navy); }

/* ── ABOUT ── */
#about { background:var(--light); }
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; max-width:1060px; margin:0 auto; }
.vm-grid { display:grid; grid-template-columns:1fr 1fr; }
.about-card {
  background:linear-gradient(145deg,var(--navy),#1a3570);
  border-radius:18px; padding:44px 36px; color:var(--white);
  text-align:center; position:relative; overflow:hidden;
  box-shadow:var(--shadow-lg);
}
.about-card::before {
  content:''; position:absolute; top:-50px; right:-50px;
  width:160px; height:160px; background:rgba(232,184,75,0.07); border-radius:50%;
}
.about-card::after {
  content:''; position:absolute; bottom:-40px; left:-40px;
  width:130px; height:130px; background:rgba(32,87,167,0.12); border-radius:50%;
}
.about-card-badge {
  display:inline-block; background:var(--gold);
  color:var(--navy); padding:5px 14px; border-radius:7px;
  font-size:0.7rem; font-weight:700; text-transform:uppercase;
  letter-spacing:1px; margin-bottom:18px; position:relative; z-index:1;
}
.about-card h3 { font-family:'Lora',serif; font-size:1.25rem; margin-bottom:14px; position:relative; z-index:1; }
.about-card p { font-size:0.875rem; color:#b0c0de; line-height:1.8; position:relative; z-index:1; }
.reg-box {
  margin-top:24px; background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.14); border-radius:10px;
  padding:14px 16px; font-size:0.78rem; color:#9aaac4;
  text-align:left; position:relative; z-index:1;
}
.reg-box strong { display:block; color:var(--gold); font-size:0.78rem; margin-bottom:4px; }
.about-text p { color:var(--gray); font-size:0.96rem; line-height:1.9; margin-bottom:18px; }
.about-features { display:flex; flex-direction:column; gap:16px; margin-top:28px; }
.about-feature { display:flex; gap:14px; align-items:flex-start; }
.feat-icon {
  width:42px; height:42px; min-width:42px;
  background:rgba(32,87,167,0.09); border-radius:10px;
  display:grid; place-items:center; font-size:1.1rem;
  border:1px solid rgba(32,87,167,0.12);
}
.feat-text h4 { font-size:0.92rem; color:var(--navy); font-weight:700; margin-bottom:3px; }
.feat-text p { font-size:0.83rem; color:var(--gray); margin-bottom:0; }

/* ── VISITORS ── */
#visitors { background:var(--navy); padding:72px 6%; }
.visitors-inner { max-width:860px; margin:0 auto; text-align:center; }
.visitors-inner .section-title { color:var(--white); }
.visitors-inner .section-label { color:var(--gold); }
.visitors-inner .divider { margin-bottom:32px; }
.flag-counter-wrap {
  display:flex; justify-content:center; align-items:flex-start;
  gap:14px; flex-wrap:wrap; margin-top:10px;
}
.flag-counter-wrap { gap:20px !important; }
.flag-entry { display:flex; flex-direction:column; align-items:center; gap:6px; }
.flag-box {
  width:56px; height:38px; border-radius:6px; overflow:hidden;
  border:1.5px solid rgba(255,255,255,0.18);
  box-shadow:0 3px 10px rgba(0,0,0,0.35);
  position:relative;
}
.flag-img-real {
  width:56px; height:38px; object-fit:cover; display:block;
}
.flag-fallback {
  display:none; width:100%; height:100%;
  background:linear-gradient(135deg,rgba(32,87,167,0.5),rgba(13,31,66,0.8));
  align-items:center; justify-content:center;
  font-size:0.7rem; font-weight:800; color:rgba(255,255,255,0.9);
  letter-spacing:1px;
}
.flag-count { font-size:0.84rem; color:var(--gold); font-weight:800; }
.flag-name { font-size:0.64rem; color:#8899bb; text-align:center; max-width:68px; line-height:1.3; }
.visitor-total { color:#8899bb; font-size:0.88rem; margin-top:20px; }
.visitor-total span { color:var(--gold); font-weight:800; font-size:1.15rem; }
.fc-embed-wrap { margin-top:24px; display:flex; justify-content:center; }
.hidden { display:none !important; }

/* ── CONTACT ── */
#contact { background:var(--navy2); padding:96px 6%; }
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:56px; max-width:1000px; margin:0 auto; align-items:start; }
.contact-left .section-title { color:var(--white); text-align:left; }
.contact-left .section-label { color:var(--gold); text-align:left; }
.contact-left .divider { margin:14px 0 0; }
.contact-left > p { color:#8899bb; margin-top:24px; line-height:1.85; font-size:0.93rem; }
.contact-items { display:flex; flex-direction:column; gap:18px; margin-top:30px; }
.contact-item { display:flex; gap:14px; align-items:flex-start; }
.c-icon {
  width:42px; height:42px; min-width:42px;
  background:rgba(232,184,75,0.1); border-radius:10px;
  display:grid; place-items:center; font-size:1.1rem;
  border:1px solid rgba(232,184,75,0.16);
}
.c-detail h4 { color:var(--white); font-size:0.82rem; font-weight:600; margin-bottom:4px; }
.c-detail p { color:#8899bb; font-size:0.84rem; line-height:1.65; }

/* ── CONTACT FORM ── */
.contact-form {
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:16px; padding:30px;
}
.contact-form h3 { color:var(--white); font-size:1.1rem; margin-bottom:22px; font-weight:700; }
.form-group { margin-bottom:16px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form-label { display:block; font-size:0.78rem; font-weight:600; color:#8899bb; margin-bottom:6px; letter-spacing:0.5px; }
.form-input, .form-select, .form-textarea {
  width:100%; padding:11px 14px;
  background:rgba(255,255,255,0.07); border:1.5px solid rgba(255,255,255,0.12);
  border-radius:9px; color:var(--white); font-size:0.875rem;
  font-family:inherit; outline:none; transition:border-color 0.2s;
  -webkit-appearance:none; appearance:none;
}
.form-input::placeholder, .form-textarea::placeholder { color:#5a6a82; }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color:var(--gold); background:rgba(255,255,255,0.09);
}

/* Override: .ac-input fields live inside a WHITE modal (unlike the dark Contact form),
   so they need dark text/caret instead of the white inherited from .form-input above. */
.ac-input {
  color:var(--navy) !important;
  caret-color:var(--navy) !important;
  background:var(--light) !important;
  border:1.5px solid var(--gray-light) !important;
}
.ac-input::placeholder { color:#9aa5b5 !important; }
.ac-input:focus {
  border-color:var(--blue) !important;
  background:var(--white) !important;
}

.form-select option { background:#1a2a50; color:var(--white); }
.form-textarea { resize:vertical; min-height:90px; line-height:1.65; }
.form-submit {
  width:100%; padding:13px 20px;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:var(--navy); font-weight:800; border-radius:9px;
  font-size:0.9rem; border:none; cursor:pointer;
  font-family:inherit; transition:all 0.25s; margin-top:6px;
}
.form-submit:hover { transform:translateY(-2px); box-shadow:0 6px 24px rgba(232,184,75,0.4); }
.form-submit:disabled { opacity:0.6; cursor:not-allowed; transform:none; }
.form-msg {
  padding:11px 14px; border-radius:9px;
  font-size:0.83rem; margin-top:12px;
  display:none; font-weight:600; text-align:center;
}
.form-msg.success { display:block; background:rgba(22,163,74,0.15); color:#4ade80; border:1px solid rgba(74,222,128,0.2); }
.form-msg.error { display:block; background:rgba(220,38,38,0.12); color:#f87171; border:1px solid rgba(248,113,113,0.2); }

/* ── FOOTER ── */
.site-footer { background:#07101f; }
.footer-main {
  max-width:1200px; margin:0 auto; padding:56px 6% 40px;
  display:grid; grid-template-columns:1.6fr 1fr 1fr 1.2fr; gap:40px;
}
.footer-col h4 {
  color:var(--white); font-size:0.78rem; font-weight:700;
  text-transform:uppercase; letter-spacing:1.2px; margin-bottom:18px;
}
.footer-col a {
  display:block; color:#7888a8; font-size:0.85rem;
  margin-bottom:11px; transition:color 0.2s;
}
.footer-col a:hover { color:var(--gold); }
.footer-social { display:flex; gap:10px; margin-top:16px; }
.social-icon {
  width:34px; height:34px; border-radius:8px;
  background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.1);
  display:flex; align-items:center; justify-content:center;
  color:#8899bb; transition:all 0.2s;
}
.social-icon svg { display:block; }
.social-icon:hover { background:var(--gold); color:var(--navy); border-color:var(--gold); }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,0.06);
  padding:22px 6%;
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:14px; max-width:1200px; margin:0 auto;
}
.footer-logo { color:var(--white); font-size:0.85rem; font-weight:600; }
.footer-logo span { color:#344460; font-size:0.72rem; font-weight:400; display:block; margin-top:2px; }
.footer-bottom p { color:#344460; font-size:0.76rem; }
@media(max-width:900px){ .footer-main{grid-template-columns:1fr 1fr;} }
@media(max-width:560px){ .footer-main{grid-template-columns:1fr;} .footer-bottom{flex-direction:column;text-align:center;} }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from{opacity:0;transform:translateY(28px);}to{opacity:1;transform:translateY(0);} }
.reveal { opacity:0; transform:translateY(30px); transition:opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay:0.1s; }
.reveal-delay-2 { transition-delay:0.2s; }
.reveal-delay-3 { transition-delay:0.3s; }

/* ── BACK TO TOP ── */
.back-top {
  position:fixed; bottom:28px; right:28px; z-index:900;
  width:44px; height:44px; border-radius:50%;
  background:var(--blue); color:var(--white);
  border:none; cursor:pointer; font-size:1.2rem;
  display:grid; place-items:center;
  box-shadow:0 4px 16px rgba(32,87,167,0.4);
  opacity:0; transform:translateY(10px);
  transition:all 0.3s; pointer-events:none;
}
.back-top.visible { opacity:1; transform:translateY(0); pointer-events:all; }
.back-top:hover { background:var(--navy); }

.wa-float {
  position:fixed; bottom:28px; left:28px; z-index:900;
  width:54px; height:54px; border-radius:50%;
  background:#25D366; display:grid; place-items:center;
  box-shadow:0 4px 18px rgba(37,211,102,0.45);
  transition:all 0.25s; animation:waPulse 2.4s infinite;
}
.wa-float:hover { transform:scale(1.08); box-shadow:0 6px 24px rgba(37,211,102,0.6); }
@keyframes waPulse {
  0%   { box-shadow:0 4px 18px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.5); }
  70%  { box-shadow:0 4px 18px rgba(37,211,102,0.45), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow:0 4px 18px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}
@media(max-width:768px){ .wa-float{ width:50px;height:50px;bottom:20px;left:20px; } .back-top{bottom:20px;right:20px;} }

/* ── CHATBOT WIDGET ── */
.chat-toggle {
  position:fixed; bottom:96px; right:28px; z-index:950;
  width:58px; height:58px; border-radius:50%;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  border:none; cursor:pointer; display:grid; place-items:center;
  box-shadow:0 6px 22px rgba(232,184,75,0.45);
  transition:transform 0.25s, box-shadow 0.25s;
  font-size:1.5rem;
}
.chat-toggle:hover { transform:scale(1.08); box-shadow:0 8px 28px rgba(232,184,75,0.55); }
.chat-toggle-icon-close { display:none; }
.chat-toggle.open .chat-toggle-icon-open { display:none; }
.chat-toggle.open .chat-toggle-icon-close { display:inline; color:var(--navy); }
.chat-toggle-dot {
  position:absolute; top:4px; right:4px; width:12px; height:12px;
  border-radius:50%; background:#16a34a; border:2px solid var(--navy);
  animation:waPulse 2.4s infinite;
}
.chat-toggle.open .chat-toggle-dot { display:none; }

.chat-panel {
  position:fixed; bottom:166px; right:28px; z-index:960;
  width:370px; max-width:calc(100vw - 40px); height:520px; max-height:70vh;
  background:var(--white); border-radius:18px;
  box-shadow:0 20px 60px rgba(0,0,0,0.25);
  display:flex; flex-direction:column; overflow:hidden;
  opacity:0; transform:translateY(20px) scale(0.96); pointer-events:none;
  transition:opacity 0.25s ease, transform 0.25s ease;
}
.chat-panel.open { opacity:1; transform:translateY(0) scale(1); pointer-events:all; }

.chat-header {
  background:linear-gradient(135deg,var(--navy),#1a3570);
  padding:16px 18px; display:flex; align-items:center; gap:12px; flex-shrink:0;
}
.chat-header-avatar {
  width:38px; height:38px; border-radius:50%;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:var(--navy); font-weight:800; font-size:0.8rem;
  display:grid; place-items:center; flex-shrink:0;
}
.chat-header-info { flex:1; min-width:0; }
.chat-header-title { color:var(--white); font-weight:700; font-size:0.92rem; }
.chat-header-status { color:#9aaac4; font-size:0.72rem; margin-top:1px; }
.chat-close-btn {
  width:28px; height:28px; border-radius:50%; background:rgba(255,255,255,0.1);
  border:none; color:var(--white); cursor:pointer; font-size:0.9rem;
  display:grid; place-items:center; flex-shrink:0; transition:background 0.2s;
}
.chat-close-btn:hover { background:rgba(255,255,255,0.2); }

.chat-messages {
  flex:1; overflow-y:auto; padding:16px; display:flex; flex-direction:column; gap:10px;
  background:var(--light);
}
.chat-bubble {
  max-width:85%; padding:10px 14px; border-radius:14px;
  font-size:0.84rem; line-height:1.55; word-wrap:break-word;
  animation:fadeUp 0.25s ease both;
}
.chat-bubble.bot {
  background:var(--white); color:#2a3a50; align-self:flex-start;
  border:1px solid var(--gray-light); border-bottom-left-radius:4px;
}
.chat-bubble.user {
  background:linear-gradient(135deg,var(--blue),var(--navy)); color:var(--white);
  align-self:flex-end; border-bottom-right-radius:4px;
}
.chat-bubble a { color:var(--gold2); font-weight:600; }
.chat-bubble.bot a { color:var(--blue); }
.chat-bubble ul { margin:6px 0 0 16px; padding:0; }
.chat-bubble li { margin-bottom:3px; }

.chat-quick-chips {
  display:flex; gap:6px; padding:0 12px 10px; flex-wrap:wrap; flex-shrink:0;
  background:var(--light);
}
.chat-chip {
  background:var(--white); border:1px solid var(--gray-light); color:var(--navy);
  font-size:0.72rem; font-weight:600; padding:6px 12px; border-radius:14px;
  cursor:pointer; transition:all 0.2s; font-family:inherit; white-space:nowrap;
}
.chat-chip:hover { background:var(--navy); color:var(--white); border-color:var(--navy); }

.chat-input-row {
  display:flex; gap:8px; padding:12px; border-top:1px solid var(--gray-light);
  background:var(--white); flex-shrink:0;
}
.chat-input {
  flex:1; border:1.5px solid var(--gray-light); border-radius:20px;
  padding:9px 16px; font-size:0.84rem; font-family:inherit; outline:none;
  transition:border-color 0.2s; min-width:0;
}
.chat-input:focus { border-color:var(--blue); }
.chat-send-btn {
  width:38px; height:38px; border-radius:50%; flex-shrink:0;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  border:none; color:var(--navy); cursor:pointer; font-size:1rem;
  display:grid; place-items:center; transition:transform 0.2s;
}
.chat-send-btn:hover { transform:scale(1.08); }

.chat-footer-note {
  font-size:0.65rem; color:var(--gray); text-align:center;
  padding:6px 12px 10px; background:var(--white); flex-shrink:0;
}

.chat-handoff-card {
  border:1.5px solid rgba(37,211,102,0.3) !important;
  background:rgba(37,211,102,0.06) !important;
}
.chat-handoff-btn {
  display:inline-flex; align-items:center; gap:8px;
  background:#25D366; color:#fff; padding:9px 18px;
  border-radius:20px; font-size:0.8rem; font-weight:700;
  text-decoration:none; transition:transform 0.2s;
}
.chat-handoff-btn:hover { transform:translateY(-1px); }

.chat-ai-badge {
  font-size:0.6rem; background:rgba(232,184,75,0.15); color:var(--gold);
  padding:2px 8px; border-radius:10px; font-weight:700; letter-spacing:0.5px;
  margin-left:6px; vertical-align:middle;
}

.chat-typing { display:flex; gap:4px; padding:4px 0; }
.chat-typing span {
  width:6px; height:6px; border-radius:50%; background:var(--gray);
  animation:typingBounce 1.2s infinite;
}
.chat-typing span:nth-child(2) { animation-delay:0.2s; }
.chat-typing span:nth-child(3) { animation-delay:0.4s; }
@keyframes typingBounce { 0%,60%,100%{transform:translateY(0);opacity:0.4;} 30%{transform:translateY(-5px);opacity:1;} }

@media(max-width:480px) {
  .chat-toggle { bottom:88px; right:16px; width:52px; height:52px; font-size:1.3rem; }
  .chat-panel {
    bottom:0; right:0; left:0; width:100%; max-width:100%;
    height:85vh; max-height:85vh; border-radius:18px 18px 0 0;
  }
  .back-top { bottom:20px; width:38px; height:38px; font-size:1rem; }
  .wa-float { width:46px; height:46px; }
  .wa-float svg { width:22px; height:22px; }
}

/* ── RESPONSIVE ── */
@media(max-width:768px) {
  nav {
    display:none; position:absolute; top:68px; left:0; right:0;
    background:rgba(13,31,66,0.98); padding:20px 5%;
    border-top:1px solid rgba(255,255,255,0.07);
  }
  nav.open { display:block; }
  nav ul { flex-direction:column; gap:14px; }
  .hamburger { display:flex; }
  .about-grid, .contact-grid, .form-row, .vm-grid { grid-template-columns:1fr; }
  section { padding:72px 5%; }
  footer { flex-direction:column; text-align:center; }
  .header-right { gap:10px; }
  .hero-stats { gap:20px; }
  .modal-body { padding:20px 20px 24px; }
  .modal-header { padding:24px 20px 18px; }
  .modal-meta-grid { grid-template-columns:1fr; }
  .modal-footer { flex-direction:column; }
  
  /* Horizontal scroll for journals on mobile */
  .journal-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 15px 5% 25px 5%;
    margin: 0 -5%;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  .journal-grid::-webkit-scrollbar {
    display: none;
  }
  .journal-card {
    flex: 0 0 290px;
    scroll-snap-align: center;
  }
}
/* ── ACCESSIBILITY: GLOBAL FOCUS STATES ── */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, .journal-card:focus-visible,
[tabindex]:focus-visible {
  outline:3px solid var(--gold);
  outline-offset:2px;
  border-radius:4px;
}
.hero:focus { outline:none; }
.modal-close:focus-visible { outline-color:#fff; }

@media(prefers-reduced-motion:reduce) {
  *, .reveal, .particle { animation:none!important; transition:none!important; }
}

/* ── PRINT STYLESHEET ── */
@media print {
  header, .wa-float, .back-top, .hero-particles, .scroll-ind, .filter-tabs, .search-wrap, .modal-overlay { display:none !important; }
  body { background:#fff; color:#000; }
  .hero { min-height:auto; padding:30px 0; background:#fff !important; color:#000; }
  .hero h1, .hero h1 em { color:#000 !important; }
  .hero-abstract { color:#333 !important; }
  section { padding:24px 0; page-break-inside:avoid; }
  .service-card, .journal-card { border:1px solid #ccc; box-shadow:none; }
  a { color:#000; text-decoration:underline; }
  .site-footer { background:#fff; color:#000; border-top:1px solid #ccc; }
}
