/* ================================================================
   IJAPHC — Unified Modern Teal Theme
   Replaces: header-theme.css, footer-theme.css, styleddaa.css,
             new-style6482.css, responsive.css
   ================================================================ */

/* ----------------------------------------------------------------
   1. DESIGN TOKENS
   ---------------------------------------------------------------- */
:root {
  --primary:        #0F766E;
  --primary-dark:   #115E59;
  --primary-darker: #134e4a;
  --primary-light:  #2dd4bf;
  --accent:         #F59E0B;
  --accent-dark:    #d97706;
  --bg-main:        #F1F5F9;
  --card-bg:        #FFFFFF;
  --text-dark:      #0F172A;
  --text-muted:     #64748B;
  --border:         #e5e7eb;
  --dark-bg:        #020617;
  --white:          #FFFFFF;
  --gold:           #F59E0B;
  --shadow-sm:      0 1px 3px rgba(0,0,0,.08);
  --shadow-md:      0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:      0 10px 40px rgba(0,0,0,.14);
  --radius:         8px;
  --radius-lg:      12px;
}

/* ----------------------------------------------------------------
   2. RESET & BASE
   ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

*, *::before, *::after { box-sizing: border-box; }

html {
  margin: 0 !important;
  padding: 0 !important;
  background: #020617;
}

body {
  margin: 0 !important;
  padding: 0 !important;
  background: var(--bg-main);
  color: var(--text-dark);
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

h1,h2,h3,h4,h5,h6 { margin-top: 0; line-height: 1.3; }
p { margin-top: 0; }
a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }
ul { padding-left: 1.4em; }

/* ----------------------------------------------------------------
   3. TOPBAR
   ---------------------------------------------------------------- */
.topbar {
  background: #020617;
  color: #94a3b8;
  font-size: 12px;
  display: block;
}
.topbar-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  padding: 6px 16px;
}
.topbar a {
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}
.topbar a:hover { color: #F59E0B; }
.topbar .topbar-divider { color: #334155; }

/* ----------------------------------------------------------------
   4. SITE HEADER
   ---------------------------------------------------------------- */

/* Header + nav wrapper — scrolls normally; only nav sticks */
.sticky-header-group {
  position: sticky;
  top: 0;
  z-index: 1000;
  margin-top: 0 !important;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
}
.site-header .header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.site-header .logo-wrap {
  flex-shrink: 0;
  text-decoration: none;
}
.site-header .logo-wrap img {
  height: 78px;
  width: auto;
  object-fit: contain;
  display: block;
}
.site-header .journal-title { flex: 1; }
.site-header .journal-title h1 {
  margin: 0 0 3px;
  color: #0F766E;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
}
.site-header .journal-title p {
  margin: 0;
  color: #64748B;
  font-size: 13px;
}

/* ----------------------------------------------------------------
   5. NAVIGATION  — dark teal bar, white links, sliding indicator
   ---------------------------------------------------------------- */
.site-nav {
  background: linear-gradient(135deg, #042f2e 0%, #0b5e58 55%, #0f766e 100%);
  border-bottom: 1px solid rgba(0,0,0,.2);
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-nav .nav-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  padding: 0 16px;
  flex-wrap: nowrap;
}

/* Desktop: links in a flex row */
.site-nav .nav-links-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex: 1;
  flex-wrap: nowrap;
  position: relative;
}

.site-nav a.nav-link-item {
  display: block;
  padding: 14px 13px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: .4px;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: color .2s ease;
}
.site-nav a.nav-link-item:hover {
  color: #ffffff;
}
.site-nav a.nav-link-item.active {
  color: #ffffff;
  font-weight: 700;
}

/* === Sliding indicator (bottom border) === */
.nav-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: #2dd4bf;
  border-radius: 3px 3px 0 0;
  pointer-events: none;
  opacity: 0;
  z-index: 2;
  transition: left  .32s cubic-bezier(.4, 0, .2, 1),
              width .32s cubic-bezier(.4, 0, .2, 1),
              opacity .18s ease;
}

.nav-spacer { flex: 1 1 auto; }

.site-nav .nav-cta {
  display: inline-block;
  flex-shrink: 0;
  margin: 8px 0 8px 12px;
  padding: 8px 18px;
  background: linear-gradient(135deg, #d97706 0%, #fbbf24 100%);
  color: #1a0a00 !important;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(245,158,11,.4);
  transition: transform .2s ease, box-shadow .2s ease;
}
.site-nav .nav-cta:hover {
  color: #1a0a00 !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(245,158,11,.55);
}

/* ── Dropdown menus ──────────────────────────────────────────── */
.nav-dropdown {
  position: relative;
}

.site-nav a.nav-link-item.nav-has-dropdown {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-arrow {
  font-size: 9px;
  transition: transform .22s ease;
}

.nav-dropdown:hover .nav-arrow,
.nav-dropdown.open   .nav-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: linear-gradient(160deg, #042f2e 0%, #0b5e58 100%);
  min-width: 215px;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  display: none;
  flex-direction: column;
  z-index: 1001;
  border-top: 2px solid #f59e0b;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: flex;
}

.nav-dropdown-menu a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
  padding: 10px 18px;
  font-size: 12.5px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background .15s, color .15s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 9px;
}

.nav-dropdown-menu a i {
  width: 14px;
  text-align: center;
  color: #2dd4bf;
  font-size: 11px;
  flex-shrink: 0;
}

.nav-dropdown-menu a:hover {
  background: rgba(255,255,255,.1);
  color: #fbbf24;
}

.nav-dropdown-menu a:hover i {
  color: #fbbf24;
}

.nav-dropdown-menu a:last-child {
  border-bottom: none;
  border-radius: 0 0 8px 8px;
}

/* Mobile dropdown */
@media (max-width: 992px) {
  .nav-dropdown-menu {
    position: static;
    display: none;
    background: rgba(0,0,0,.18);
    border-radius: 6px;
    margin: 0 8px 6px;
    border-top: 1px solid rgba(255,255,255,.12);
    box-shadow: none;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    display: flex;
  }
  .nav-dropdown-menu a {
    padding: 10px 18px;
    font-size: 13px;
  }
}

/* Mobile hamburger — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 5px;
  padding: 7px 9px;
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,.9);
  border-radius: 2px;
  transition: transform .28s ease, opacity .2s ease;
}
/* Animate hamburger → X when open */
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------------------------------------------------------------
   6. HERO SECTION
   ---------------------------------------------------------------- */
.hero-section {
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-darker) 100%);
  color: var(--white);
}
.hero-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 40px;
  padding: 48px 16px;
  align-items: center;
}
.hero-text h2 {
  font-size: 2.1rem;
  font-weight: 800;
  margin: 0 0 14px;
  line-height: 1.25;
}
.hero-text p {
  opacity: .88;
  font-size: 1.05rem;
  max-width: 520px;
  line-height: 1.65;
}
.hero-btns {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Journal cover box */
.journal-cover-box {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-lg);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.journal-cover-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}

/* ----------------------------------------------------------------
   7. BUTTONS
   ---------------------------------------------------------------- */
.btn-theme {
  display: inline-block;
  padding: 11px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .22s;
  text-align: center;
  line-height: 1.4;
}
.btn-accent {
  background: var(--accent);
  color: #1f2937;
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  border-color: rgba(255,255,255,.7);
  color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
}
.btn-primary-theme {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary-theme:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* ----------------------------------------------------------------
   8. CARDS / FLOATING SECTION (below hero)
   ---------------------------------------------------------------- */
.section-float {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  padding: 32px 16px 48px;
  position: relative;
  z-index: 2;
}
.section-float-single {
  grid-template-columns: 1fr;
}
.theme-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-md);
}
.theme-card h3 {
  margin: 0 0 16px;
  color: var(--text-dark);
  font-size: 1.1rem;
  font-weight: 700;
  border-left: 4px solid var(--primary);
  padding-left: 12px;
}

/* Journal meta list inside card */
.journal-meta {
  list-style: none;
  padding: 0;
  margin: 0;
}
.journal-meta li {
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.journal-meta li:last-child { border-bottom: none; }
.journal-meta li strong { color: var(--text-dark); }
.journal-meta a { color: var(--primary); font-weight: 500; }
.journal-meta a:hover { text-decoration: underline; }

/* Track article input */
.track-input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 12px;
  outline: none;
  transition: border-color .2s;
  color: var(--text-dark);
}
.track-input:focus { border-color: var(--primary); }

/* ----------------------------------------------------------------
   9. ABOUT SECTION
   ---------------------------------------------------------------- */
.section-about {
  padding: 64px 16px;
  background: var(--bg-main);
}
.about-inner {
  max-width: 900px;
  margin: auto;
  text-align: center;
}
.about-inner h2 { color: var(--text-dark); font-size: 1.8rem; margin-bottom: 14px; }
.about-inner p  { color: var(--text-muted); font-size: 1.05rem; line-height: 1.75; }

/* ----------------------------------------------------------------
   10. WHY CHOOSE SECTION
   ---------------------------------------------------------------- */
.section-why {
  background: var(--white);
  padding: 64px 16px;
}
.section-why h2 {
  text-align: center;
  color: var(--text-dark);
  font-size: 1.8rem;
  margin-bottom: 40px;
}
.why-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-item {
  background: var(--bg-main);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  border-top: 3px solid var(--primary);
  transition: transform .2s, box-shadow .2s;
}
.why-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-item i {
  font-size: 30px;
  color: var(--primary);
  margin-bottom: 14px;
  display: block;
}
.why-item h4 { margin: 0 0 8px; color: var(--text-dark); font-size: 1rem; }
.why-item p  { margin: 0; color: var(--text-muted); font-size: 13px; line-height: 1.6; }

/* ----------------------------------------------------------------
   11. PUBLICATION JOURNEY
   ---------------------------------------------------------------- */
.section-journey {
  background: linear-gradient(120deg, #e2e8f0, #f8fafc);
  padding: 64px 16px;
  text-align: center;
}
.section-journey h2 { color: var(--text-dark); font-size: 1.8rem; margin-bottom: 8px; }
.section-journey p  { color: var(--text-muted); margin-bottom: 30px; }
.journey-steps {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.journey-step {
  background: var(--primary);
  color: var(--white);
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  position: relative;
}
.journey-step::after {
  content: '→';
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 16px;
}
.journey-step:last-child::after { display: none; }

/* ----------------------------------------------------------------
   12. INNER PAGE LAYOUT
   (journal-container, content-layout, main-content — used by
    policy, about, guideline pages via about-us.css section refs)
   ---------------------------------------------------------------- */
.journal-container {
  max-width: 1200px;
  margin: 36px auto;
  padding: 0 16px;
}

.content-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  align-items: start;
}

.main-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.sidebar-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Section heading inside inner pages */
.section-title {
  color: var(--primary-dark);
  font-size: 1.5rem;
  font-weight: 700;
  border-bottom: 2px solid var(--border);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

/* Welcome / page-header box */
.welcome-box {
  background: linear-gradient(135deg,
    rgba(15,118,110,.08) 0%,
    rgba(20,184,166,.05) 100%);
  border-left: 4px solid var(--primary);
  padding: 20px 24px;
  margin-bottom: 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.welcome-box h2 { color: var(--primary-dark); margin-bottom: 6px; }

/* Inner page content typography */
.main-content h2 { color: var(--primary-dark); }
.main-content h3 {
  color: var(--primary);
  font-size: 1.15rem;
  margin-top: 28px;
}
.main-content p, .main-content li {
  color: #374151;
  line-height: 1.75;
}
.main-content a { color: var(--primary); }
.main-content a:hover { text-decoration: underline; }

/* Sidebar card */
.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.sidebar-card h4 {
  margin: 0 0 14px;
  color: var(--primary-dark);
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 8px;
}
.sidebar-card ul { list-style: none; padding: 0; margin: 0; }
.sidebar-card ul li { padding: 7px 0; border-bottom: 1px solid var(--bg-main); }
.sidebar-card ul li:last-child { border-bottom: none; }
.sidebar-card ul li a { color: var(--text-muted); font-size: 14px; }
.sidebar-card ul li a:hover { color: var(--primary); }

/* ----------------------------------------------------------------
   13. SECTION UTILITY
   ---------------------------------------------------------------- */
.section-heading {
  text-align: center;
  margin-bottom: 40px;
}
.section-heading h2 { font-size: 1.8rem; color: var(--text-dark); margin-bottom: 8px; }
.section-heading p  { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin: auto; }

.container-theme {
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;
}

.bg-white  { background: var(--white); }
.bg-light  { background: var(--bg-main); }
.text-primary { color: var(--primary); }
.text-muted-theme { color: var(--text-muted); }

/* ----------------------------------------------------------------
   14. SITE FOOTER
   ---------------------------------------------------------------- */
.site-footer {
  background: #020617;
  color: #94a3b8;
}
.site-footer .footer-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  padding: 52px 16px;
  font-size: 14px;
}
.site-footer h4 {
  color: var(--white);
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 600;
}
.site-footer p { margin: 0 0 8px; line-height: 1.65; color: #94a3b8; }
.site-footer a { color: #94a3b8; }
.site-footer a:hover { color: var(--accent); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { padding: 5px 0; }
.site-footer ul li a { color: #94a3b8; font-size: 14px; }
.site-footer ul li a:hover { color: var(--accent); }

.site-footer .footer-brand p { color: #64748b; line-height: 1.7; font-size: 13px; }

.footer-bottom {
  background: #000010;
  color: #64748b;
  text-align: center;
  padding: 14px 16px;
  font-size: 12px;
  border-top: 1px solid #1e293b;
}

#visitorCounter {
  font-size: 16px;
  font-weight: 600;
  color: #dbe5ff;
  text-align: left;
}

#visitorCounter i {
  color: #14b8a6;
}

/* ----------------------------------------------------------------
   15. CONTACT / FORM PAGES
   ---------------------------------------------------------------- */
.contact-wrap {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 16px;
}
.form-group-theme { margin-bottom: 18px; }
.form-group-theme label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}
.form-control-theme {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-control-theme:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15,118,110,.12);
}

/* ----------------------------------------------------------------
   16. LEGACY VARIABLE ALIASES
   (inner pages that were built before the unified theme still
    reference these names — map them to current tokens)
   ---------------------------------------------------------------- */
:root {
  --grad-main:      linear-gradient(135deg, var(--primary) 0%, var(--primary-light, #2dd4bf) 100%);
  --grad-soft:      linear-gradient(135deg, rgba(15,118,110,.15) 0%, rgba(45,212,191,.08) 100%);
  --grad-teal:      linear-gradient(135deg, var(--primary) 0%, var(--primary-darker) 100%);
  --bg-light:       #eef7f6;
  --light-bg:       #F1F5F9;
  --shadow-light:   0 2px 10px rgba(0,0,0,.08);
  --shadow-medium:  0 5px 20px rgba(0,0,0,.10);
  --shadow-heavy:   0 10px 30px rgba(0,0,0,.14);
  --border-color:   #e5e7eb;
  --primary-purple: #0b5e58;
  --primary-indigo: #0f766e;
  --primary-blue:   #14b8a6;
  --primary-light:  #2dd4bf;
  --primary-dark:   #115E59;
  --text-light:     #ffffff;
  --white:          #ffffff;
}

/* ----------------------------------------------------------------
   17. PAGE BANNER  (teal header for all inner pages)
   ---------------------------------------------------------------- */
.page-banner {
  background: linear-gradient(120deg, var(--primary-darker) 0%, var(--primary) 100%);
  color: #fff;
  padding: 36px 16px;
}
.page-banner-inner {
  max-width: 1200px;
  margin: auto;
}
.page-banner h1 {
  margin: 0 0 6px;
  font-size: 1.65rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
}
.page-banner p {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,.75);
}
.page-banner .breadcrumb-sep { margin: 0 6px; color: rgba(255,255,255,.4); }
.page-banner a.bc-link {
  color: rgba(255,255,255,.75);
  text-decoration: none;
}
.page-banner a.bc-link:hover { color: var(--accent); }

/* ----------------------------------------------------------------
   18. INNER-PAGE SECTION
   ---------------------------------------------------------------- */
.content-section {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.content-section:last-child { border-bottom: none; margin-bottom: 0; }

/* Sidebar quick-link list */
.indexing-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.indexing-list li { padding: 6px 0; border-bottom: 1px solid var(--bg-main); }
.indexing-list li:last-child { border-bottom: none; }
.sidebar-link {
  color: var(--text-muted);
  font-size: 14px;
  text-decoration: none;
  display: block;
}
.sidebar-link:hover { color: var(--primary); }

/* Announcement / news box used in sidebar */
.announcement-box {
  background: var(--white);
  border-left: 3px solid var(--primary);
  padding: 12px 14px;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-sm);
  font-size: 13px;
}
.announcement-title {
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 4px;
  font-size: 13px;
}

/* View-all button */
.view-all-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 7px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.view-all-btn:hover { background: var(--primary-dark); }

/* Journal action buttons (used in home subject section) */
.journal-btn {
  display: inline-block;
  padding: 10px 22px;
  background: var(--primary);
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
}
.journal-btn:hover { background: var(--primary-dark); color: #fff; }
.journal-btn-secondary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.journal-btn-secondary:hover { background: var(--primary); color: #fff; }

/* ----------------------------------------------------------------
   19a-0. HERO FEATURE BADGES
   ---------------------------------------------------------------- */
.hero-feature-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 22px;
}
.hero-fbadge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.9);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
  white-space: nowrap;
}
.hero-fbadge i {
  color: #2dd4bf;
  font-size: 0.85rem;
}

/* ----------------------------------------------------------------
   19a-1. TRIO SECTION (About | Current Issue | Important Dates)
   ---------------------------------------------------------------- */
.trio-section {
  background: #f1f5f9;
  padding: 40px 16px;
}
.trio-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 24px;
  align-items: start;
}

/* Shared card base */
.trio-card {
  border-radius: 12px;
  padding: 26px 22px;
  height: 100%;
}

/* About card — dark teal */
.trio-about {
  background: linear-gradient(160deg, #042f2e 0%, #0b5e58 100%);
  color: rgba(255,255,255,.85);
}
.trio-about .trio-card-label {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-left: 4px solid #2dd4bf;
  padding-left: 10px;
  margin-bottom: 16px;
}
.trio-about p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,.78);
  margin-bottom: 16px;
}
.trio-about-facts {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.trio-about-facts li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
  color: rgba(255,255,255,.8);
}
.trio-about-facts li i { color: #2dd4bf; flex-shrink: 0; }
.trio-btn {
  display: inline-block;
  padding: 9px 22px;
  background: #2dd4bf;
  color: #042f2e;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  transition: background .2s;
}
.trio-btn:hover { background: #14b8a6; color: #042f2e; }

/* Current Issue card — white */
.trio-current {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.trio-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.trio-card-label-light {
  font-size: 1rem;
  font-weight: 700;
  color: #115E59;
  text-transform: uppercase;
  letter-spacing: .8px;
  border-left: 4px solid #0F766E;
  padding-left: 10px;
}
.trio-view-all {
  font-size: 0.8rem;
  color: #0F766E;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.trio-view-all:hover { color: #115E59; text-decoration: underline; }
.trio-issue-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 4px;
}
.trio-sep { color: #9ca3af; }
.trio-issue-date {
  font-size: 0.78rem;
  color: #6b7280;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
}
.trio-articles {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.trio-articles li {
  font-size: 0.82rem;
  line-height: 1.5;
  border-bottom: 1px dashed #e5e7eb;
  padding-bottom: 10px;
}
.trio-articles li a {
  color: #374151;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}
.trio-articles li a:hover { color: #0F766E; }
.trio-art-author {
  font-size: 0.76rem;
  color: #9ca3af;
  margin-top: 3px;
}
.trio-empty { font-size: 0.85rem; color: #9ca3af; }
.trio-btn-light {
  display: inline-block;
  padding: 9px 22px;
  background: #0F766E;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  transition: background .2s;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}
.trio-btn-light:hover { background: #115E59; color: #fff; }

/* Important Dates card — white */
.trio-dates {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.trio-dates .trio-card-label-light { display: block; margin-bottom: 20px; }
.trio-date-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
}
.trio-date-item:last-of-type { border-bottom: none; }
.trio-date-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.trio-date-blue  { background: #eff6ff; color: #2563eb; }
.trio-date-red   { background: #fef2f2; color: #dc2626; }
.trio-date-green { background: #f0fdf4; color: #16a34a; }
.trio-date-amber { background: #fffbeb; color: #d97706; }
.trio-date-label {
  font-size: 0.78rem;
  color: #6b7280;
  font-weight: 500;
  margin-bottom: 3px;
}
.trio-date-val {
  font-size: 0.92rem;
  font-weight: 700;
  color: #115E59;
}
.trio-btn-dark {
  display: block;
  padding: 11px 22px;
  background: linear-gradient(135deg, #042f2e, #0f766e);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  margin-top: 6px;
  transition: opacity .2s;
}
.trio-btn-dark:hover { opacity: .88; color: #fff; }

/* ----------------------------------------------------------------
   19a. STATS BAR
   ---------------------------------------------------------------- */
.stats-bar {
  background: linear-gradient(135deg, #042f2e 0%, #0b5e58 60%, #0f766e 100%);
  border-bottom: 1px solid rgba(0,0,0,.2);
}
.stats-bar-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  padding: 0 16px;
}
.stat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 12px;
  flex: 1;
  text-align: center;
  gap: 4px;
}
.stat-pill-num {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2dd4bf;
  letter-spacing: .5px;
  line-height: 1;
}
.stat-pill-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: .6px;
}
.stat-bar-divider {
  width: 1px;
  background: rgba(255,255,255,.15);
  align-self: stretch;
  margin: 10px 0;
}

/* ----------------------------------------------------------------
   19b. PUBLICATION PROCESS
   ---------------------------------------------------------------- */
.pub-process-section {
  background: #fff;
  padding: 52px 16px;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}
.pub-process-inner {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}
.pub-process-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #115E59;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 36px;
}
.pub-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
}
.pub-step {
  flex: 1;
  min-width: 130px;
  max-width: 180px;
  text-align: left;
  padding: 0 8px;
}
.pub-step-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.pub-step-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
}
.ps-c1 { background: linear-gradient(135deg,#0F766E,#14b8a6); }
.ps-c2 { background: linear-gradient(135deg,#1d4ed8,#3b82f6); }
.ps-c3 { background: linear-gradient(135deg,#4338ca,#818cf8); }
.ps-c4 { background: linear-gradient(135deg,#7c3aed,#a78bfa); }
.ps-c5 { background: linear-gradient(135deg,#be185d,#f472b6); }
.pub-step-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #d1d5db;
  line-height: 1;
}
.pub-step h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 6px;
  line-height: 1.3;
}
.pub-step p {
  font-size: 0.78rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}
.pub-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 1.4rem;
  padding: 0 4px;
  padding-top: 16px;
  flex-shrink: 0;
}

/* ----------------------------------------------------------------
   19c. WHY PUBLISH / GUIDELINES / STAY CONNECTED
   ---------------------------------------------------------------- */
.why-section {
  background: #f8fafc;
  padding: 52px 16px;
  border-bottom: 1px solid #e5e7eb;
}
.why-section-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.why-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
}
.why-card-heading {
  font-size: 1rem;
  font-weight: 700;
  color: #115E59;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid #0F766E;
}
.why-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.why-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #374151;
}
.why-checklist li i {
  color: #0F766E;
  font-size: 1rem;
  flex-shrink: 0;
}
.why-links-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}
.why-links-list li {
  border-bottom: 1px solid #f1f5f9;
}
.why-links-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 4px;
  font-size: 0.88rem;
  color: #374151;
  text-decoration: none;
  transition: color .2s, padding-left .2s;
}
.why-links-list li a i {
  color: #0F766E;
  flex-shrink: 0;
}
.why-links-list li a:hover {
  color: #0F766E;
  padding-left: 8px;
}
.why-dark-btn {
  display: inline-block;
  padding: 10px 26px;
  background: #115E59;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: .5px;
  text-decoration: none;
  transition: background .2s;
  border: 2px solid #115E59;
}
.why-dark-btn:hover { background: #042f2e; color: #fff; }

/* Stay Connected card */
.why-card-connected { text-align: center; justify-content: center; }
.stay-icon-wrap {
  width: 52px;
  height: 52px;
  background: #f0fdf9;
  border: 2px solid #0F766E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0F766E;
  font-size: 1.2rem;
  margin: 0 auto 14px;
}
.stay-sub {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 16px;
}
.stay-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.stay-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.88rem;
  outline: none;
  transition: border-color .2s;
}
.stay-input:focus { border-color: #0F766E; }
.stay-subscribe-btn {
  width: 100%;
  padding: 10px;
  background: #0F766E;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: background .2s;
}
.stay-subscribe-btn:hover { background: #115E59; }
.stay-follow-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 10px;
}
.stay-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.stay-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  text-decoration: none;
  transition: opacity .2s, transform .2s;
}
.stay-social:hover { opacity: .85; transform: translateY(-2px); color: #fff; }
.stay-social.fb { background: #1877f2; }
.stay-social.tw { background: #1da1f2; }
.stay-social.li { background: #0a66c2; }
.stay-social.yt { background: #ff0000; }

/* ----------------------------------------------------------------
   19d. INDEXING BADGES BAR
   ---------------------------------------------------------------- */
.index-bar {
  background: #fff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 28px 16px;
}
.index-bar-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.index-bar-sep {
  width: 1px;
  height: 60px;
  background: #e5e7eb;
  flex-shrink: 0;
}
.index-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 16px;
  flex: 1;
  min-width: 160px;
  transition: transform .2s;
}
.index-badge:hover { transform: translateY(-2px); }
.index-badge-seal {
  flex-shrink: 0;
  position: relative;
  width: 60px;
  height: 60px;
}
.index-badge-ring {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #0F766E;
  outline: 2px dashed #0F766E;
  outline-offset: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0fdf9;
  color: #0F766E;
  font-size: 1.3rem;
  box-shadow: 0 2px 10px rgba(15,118,110,.12);
  transition: background .2s, box-shadow .2s;
}
.index-badge:hover .index-badge-ring {
  background: #0F766E;
  color: #fff;
  box-shadow: 0 4px 16px rgba(15,118,110,.25);
}
.index-badge-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.index-badge-text span {
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.3;
}
.index-badge-text strong {
  font-size: 0.9rem;
  color: #115E59;
  font-weight: 700;
  line-height: 1.3;
}

/* ----------------------------------------------------------------
   19. RESPONSIVE
   ---------------------------------------------------------------- */
@media (max-width: 992px) {
  /* Nav */
  .site-nav .nav-inner       { flex-wrap: wrap; }
  .nav-toggle                { display: flex; }
  .site-nav .nav-links-wrap  {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 12px;
    border-top: 1px solid rgba(255,255,255,.15);
    margin-top: 4px;
    max-height: 80vh;
    overflow-y: auto;
  }
  .site-nav .nav-links-wrap.open  { display: flex; }
  .site-nav a.nav-link-item       { padding: 11px 12px; width: 100%; }
  .site-nav a.nav-link-item:hover { background: rgba(255,255,255,.1); border-radius: 4px; color: #fff; }
  .nav-indicator                  { display: none; }
  .nav-spacer                     { display: none; }
  .site-nav .nav-cta              { margin: 8px 0 6px 12px; }

  /* Layouts */
  .hero-inner          { grid-template-columns: 1fr; }
  .journal-cover-box   { min-height: 200px; }
  .section-float       { grid-template-columns: 1fr; }
  .why-grid            { grid-template-columns: 1fr 1fr; }
  .content-layout      { grid-template-columns: 1fr; }
  .site-footer .footer-inner { grid-template-columns: 1fr 1fr; }

  /* New sections */
  .stats-bar-inner     { flex-wrap: wrap; gap: 0; }
  .stat-bar-divider    { display: none; }
  .stat-pill           { min-width: 45%; padding: 12px 8px; }
  .trio-inner          { grid-template-columns: 1fr; }
  .why-section-inner   { grid-template-columns: 1fr 1fr; }
  .why-card-connected  { grid-column: 1 / -1; max-width: 380px; margin: 0 auto; }
  .pub-steps           { flex-wrap: wrap; justify-content: center; gap: 20px; }
  .pub-step-arrow      { display: none; }
  .pub-step            { min-width: 140px; max-width: 45%; }
  .index-bar-inner     { justify-content: center; gap: 12px; }
  .index-bar-sep       { display: none; }
  .index-badge         { min-width: 140px; flex: 0 0 45%; }
  .hero-feature-badges { gap: 8px; }
  .hero-fbadge         { font-size: 0.75rem; padding: 7px 10px; }
}

@media (max-width: 576px) {
  .site-header .header-inner { flex-direction: column; text-align: center; }
  .site-header .logo-wrap img { height: 60px; }
  .site-header .journal-title h1 { font-size: 1.15rem; }
  .hero-text h2        { font-size: 1.55rem; }
  .why-grid            { grid-template-columns: 1fr; }
  .site-footer .footer-inner { grid-template-columns: 1fr; }
  .section-float       { padding-bottom: 28px; }
  .main-content        { padding: 20px 16px; }
  .stat-pill           { min-width: 100%; }
  .pub-step            { min-width: 80%; max-width: 100%; }
  .index-badge         { min-width: 130px; flex: 0 0 100%; justify-content: center; }
  .trio-card           { padding: 20px 16px; }
  .hero-fbadge         { font-size: 0.72rem; padding: 6px 10px; }
  .why-section-inner   { grid-template-columns: 1fr; }
  .why-card-connected  { grid-column: auto; max-width: 100%; }
  .pub-step            { min-width: 80%; max-width: 100%; }
}
