/* =====================================================================
   WE EXPRESS JOURNAL — Main Stylesheet
   Colors: Navy #1B3A6B | Gold #B8962E | White #fff | Light #f5f7fa
   ===================================================================== */

/* ── CSS Variables ─────────────────────────────────────────────────── */
:root {
  --navy:      #1B3A6B;
  --navy-dark: #0f2048;
  --navy-mid:  #234a88;
  --gold:      #B8962E;
  --gold-light:#d4ac3a;
  --gold-pale: #f5eed8;
  --white:     #ffffff;
  --light:     #f5f7fa;
  --light-2:   #eef1f7;
  --text:      #2c3e50;
  --text-light:#6b7a99;
  --border:    #dde3ef;
  --shadow:    0 4px 24px rgba(27,58,107,0.10);
  --shadow-lg: 0 12px 48px rgba(27,58,107,0.18);
  --radius:    10px;
  --radius-lg: 18px;
  --trans:     0.35s cubic-bezier(0.4,0,0.2,1);
  --font-body: 'Inter', system-ui, sans-serif;
  --font-head: 'Playfair Display', Georgia, serif;
  --nav-h:     72px;
  --topbar-h:  38px;
}

/* ── Reset & Base ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Container ─────────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Read Progress Bar ─────────────────────────────────────────────── */
.read-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  width: 0%;
  z-index: 9999;
  transition: width 0.1s;
}

/* ── Top Bar ───────────────────────────────────────────────────────── */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1100;
  transition: transform var(--trans);
}
.topbar__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.topbar__inner span {
  display: flex; align-items: center; gap: 6px;
}
.topbar__inner span i { color: var(--gold); }
.topbar__actions {
  margin-left: auto;
  display: flex;
  gap: 10px;
}
.btn-top {
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  transition: all var(--trans);
}
.btn-top:hover { background: rgba(255,255,255,0.15); }
.btn-top--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
}
.btn-top--gold:hover { background: var(--gold-light); }

/* ── Navbar ─────────────────────────────────────────────────────────── */
.navbar {
  background: var(--white);
  height: var(--nav-h);
  position: sticky;
  top: var(--topbar-h);
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(27,58,107,0.08);
  border-bottom: 2px solid var(--navy);
  transition: all var(--trans);
}
.navbar.scrolled {
  box-shadow: var(--shadow-lg);
  top: 0;
}
.navbar__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 20px;
}
.navbar__brand { display: flex; align-items: center; }
.navbar__logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  transition: transform var(--trans);
}
.navbar__logo:hover { transform: scale(1.06); }
.navbar__menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.navbar__item { position: relative; }
.navbar__link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 13px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy);
  border-radius: 6px;
  transition: all var(--trans);
  position: relative;
  white-space: nowrap;
}
.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--trans);
}
.navbar__link:hover::after,
.navbar__link.active::after { left: 10%; right: 10%; }
.navbar__link:hover,
.navbar__link.active {
  color: var(--gold);
  background: rgba(184,150,46,0.06);
}
.navbar__link i { font-size: 0.65rem; transition: transform var(--trans); }
.has-dropdown:hover .navbar__link i { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 6px); left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--trans);
  z-index: 500;
}
.has-dropdown:hover .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown__item {
  display: block;
  padding: 10px 16px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--trans);
}
.dropdown__item:hover { background: var(--gold-pale); color: var(--navy); padding-left: 20px; }

/* Mobile Toggle */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.navbar__toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--trans);
}
.navbar__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__toggle.open span:nth-child(2) { opacity: 0; width: 0; }
.navbar__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Flash Messages ──────────────────────────────────────────────── */
.flash-wrap { position: fixed; top: 120px; right: 20px; z-index: 2000; display: flex; flex-direction: column; gap: 8px; }
.flash {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem; font-weight: 500;
  box-shadow: var(--shadow-lg);
  animation: slideInRight 0.4s ease;
  max-width: 380px;
}
.flash--success { background: #1a6b3c; color: #fff; }
.flash--error   { background: #8b1a1a; color: #fff; }
.flash__close   { margin-left: auto; font-size: 0.75rem; opacity: 0.75; cursor: pointer; }
.flash__close:hover { opacity: 1; }

/* ── Hero Shared ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 92vh;
  padding: 80px 0 60px;
}
.hero__particles { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero__particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(184,150,46,0.13);
  animation: floatDot linear infinite;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: var(--white);
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(184,150,46,0.18);
  border: 1px solid rgba(184,150,46,0.4);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeInUp 0.7s ease both;
}
.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  animation: fadeInUp 0.8s 0.1s ease both;
}
.hero__title span { color: var(--gold-light); }
.hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 32px;
  max-width: 560px;
  line-height: 1.75;
  animation: fadeInUp 0.8s 0.2s ease both;
}
.hero__actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.3s ease both;
}
.hero__deco {
  position: absolute;
  right: -40px; top: 50%;
  transform: translateY(-50%);
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(184,150,46,0.12) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: pulse 6s ease-in-out infinite;
}
.hero__deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(184,150,46,0.2);
  animation: ringExpand 4s ease-in-out infinite;
}

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 700; font-size: 0.9rem;
  transition: all var(--trans);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,150,46,0.4);
}
.btn--outline {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn--sm { padding: 9px 20px; font-size: 0.82rem; }

/* ── Section Shared ──────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section--light { background: var(--light); }
.section--dark  { background: var(--navy-dark); color: var(--white); }
.section__header { text-align: center; margin-bottom: 56px; }
.section__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 12px;
}
.section__eyebrow::before,
.section__eyebrow::after {
  content: ''; display: block;
  width: 28px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.section__title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--navy-dark);
  margin-bottom: 14px;
  line-height: 1.25;
}
.section--dark .section__title { color: var(--white); }
.section__subtitle {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}
.section--dark .section__subtitle { color: rgba(255,255,255,0.7); }

/* Divider */
.gold-divider {
  width: 56px; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 4px;
  margin: 14px auto 0;
}

/* ── Stat Cards ──────────────────────────────────────────────────── */
.stats-strip {
  background: var(--navy);
  padding: 48px 0;
}
.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}
.stat-card {
  text-align: center;
  color: var(--white);
  padding: 24px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
  transition: all var(--trans);
}
.stat-card:hover {
  background: rgba(184,150,46,0.12);
  border-color: rgba(184,150,46,0.3);
  transform: translateY(-4px);
}
.stat-card__icon { font-size: 2rem; color: var(--gold); margin-bottom: 10px; }
.stat-card__num  { font-family: var(--font-head); font-size: 2.4rem; font-weight: 800; line-height: 1; }
.stat-card__label{ font-size: 0.82rem; color: rgba(255,255,255,0.7); margin-top: 4px; letter-spacing: 0.05em; }

/* ── Feature / Info Cards ────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all var(--trans);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card:hover::before { transform: scaleX(1); }
.card__icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: transform var(--trans);
}
.card:hover .card__icon { transform: scale(1.1) rotate(-5deg); }
.card__title { font-family: var(--font-head); font-size: 1.15rem; color: var(--navy-dark); margin-bottom: 10px; }
.card__text  { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }

/* ── Article Cards ───────────────────────────────────────────────── */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.article-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all var(--trans);
  display: flex; flex-direction: column;
}
.article-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.article-card__header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 20px 24px;
  display: flex; align-items: center; gap: 12px;
}
.article-card__category {
  background: rgba(184,150,46,0.25);
  color: var(--gold-light);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.article-card__type {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
}
.article-card__body { padding: 22px 24px; flex: 1; }
.article-card__title {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--navy-dark);
  margin-bottom: 8px;
  line-height: 1.45;
  transition: color var(--trans);
}
.article-card:hover .article-card__title { color: var(--gold); }
.article-card__meta {
  font-size: 0.8rem; color: var(--text-light);
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 12px;
}
.article-card__meta span { display: flex; align-items: center; gap: 5px; }
.article-card__footer {
  padding: 14px 24px;
  border-top: 1px solid var(--border);
  display: flex; gap: 10px;
}

/* ── Timeline ────────────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 36px; }
.timeline::before {
  content: ''; position: absolute;
  left: 12px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--navy), var(--gold), transparent);
}
.timeline__item { position: relative; margin-bottom: 32px; }
.timeline__dot {
  position: absolute;
  left: -30px; top: 4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--navy);
  transition: transform var(--trans);
}
.timeline__item:hover .timeline__dot { transform: scale(1.3); }
.timeline__content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  border-left: 3px solid var(--gold);
  transition: all var(--trans);
}
.timeline__item:hover .timeline__content { transform: translateX(4px); box-shadow: var(--shadow-lg); }
.timeline__date { font-size: 0.78rem; color: var(--gold); font-weight: 700; margin-bottom: 4px; }
.timeline__title { font-weight: 700; color: var(--navy-dark); margin-bottom: 6px; }
.timeline__text { color: var(--text-light); font-size: 0.88rem; }

/* ── Team / Editorial Cards ──────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 28px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all var(--trans);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-card__avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--navy), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.6rem; font-weight: 800;
  color: var(--white);
  border: 3px solid var(--gold-pale);
}
.team-card__name  { font-weight: 700; color: var(--navy-dark); margin-bottom: 6px; }
.team-card__role  { font-size: 0.78rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.team-card__inst  { font-size: 0.82rem; color: var(--text-light); }

/* ── Announcement Cards ──────────────────────────────────────────── */
.announce-list { display: flex; flex-direction: column; gap: 20px; }
.announce-card {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  transition: all var(--trans);
}
.announce-card:hover { transform: translateX(6px); box-shadow: var(--shadow-lg); }
.announce-card__date {
  min-width: 56px; text-align: center;
  background: var(--navy);
  color: var(--white);
  padding: 10px 8px;
  border-radius: 8px;
}
.announce-card__day   { font-size: 1.4rem; font-weight: 800; line-height: 1; }
.announce-card__month { font-size: 0.7rem; text-transform: uppercase; color: var(--gold); letter-spacing: 0.08em; }
.announce-card__body  { flex: 1; }
.announce-card__tag   {
  display: inline-block;
  background: var(--gold-pale); color: var(--navy);
  padding: 3px 10px; border-radius: 12px;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.announce-card__title { font-weight: 700; color: var(--navy-dark); margin-bottom: 6px; }
.announce-card__desc  { font-size: 0.88rem; color: var(--text-light); }

/* ── Contact Form ────────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.contact-info__item {
  display: flex; gap: 16px;
  margin-bottom: 28px;
}
.contact-info__icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info__label { font-size: 0.78rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.contact-info__val   { color: var(--text); font-size: 0.9rem; }

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.83rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-control {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: inherit; font-size: 0.9rem; color: var(--text);
  background: var(--light);
  transition: all var(--trans);
  outline: none;
}
.form-control:focus { border-color: var(--navy); background: var(--white); box-shadow: 0 0 0 3px rgba(27,58,107,0.08); }
textarea.form-control { resize: vertical; min-height: 130px; }

/* ── Page Hero (inner pages) ─────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 70%, var(--navy-mid) 100%);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0; height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero--light::after { background: var(--light); }
.page-hero__title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 10px;
  animation: fadeInUp 0.6s ease both;
}
.page-hero__title span { color: var(--gold-light); }
.page-hero__breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: rgba(255,255,255,0.7);
  animation: fadeInUp 0.6s 0.1s ease both;
}
.page-hero__breadcrumb a { color: var(--gold-light); }
.page-hero__breadcrumb a:hover { text-decoration: underline; }
.page-hero__bg-text {
  position: absolute;
  right: -20px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-head);
  font-size: 10rem; font-weight: 800;
  color: rgba(255,255,255,0.04);
  pointer-events: none; user-select: none;
  white-space: nowrap;
}

/* ── Accordion ───────────────────────────────────────────────────── */
.accordion__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow var(--trans);
}
.accordion__item.open { box-shadow: var(--shadow); }
.accordion__trigger {
  width: 100%; text-align: left;
  background: var(--white);
  padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
  font-weight: 600; color: var(--navy);
  font-size: 0.93rem;
  transition: background var(--trans);
}
.accordion__trigger:hover { background: var(--gold-pale); }
.accordion__item.open .accordion__trigger { background: var(--navy); color: var(--white); }
.accordion__trigger i { transition: transform var(--trans); font-size: 0.8rem; }
.accordion__item.open .accordion__trigger i { transform: rotate(180deg); }
.accordion__body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.accordion__body-inner { padding: 18px 20px; color: var(--text-light); font-size: 0.9rem; line-height: 1.75; }

/* ── Tabs ────────────────────────────────────────────────────────── */
.tabs__nav {
  display: flex; gap: 6px; flex-wrap: wrap;
  border-bottom: 2px solid var(--border);
  margin-bottom: 32px;
}
.tabs__btn {
  padding: 10px 20px;
  font-weight: 600; font-size: 0.88rem; color: var(--text-light);
  border-radius: 8px 8px 0 0;
  transition: all var(--trans);
  position: relative; bottom: -2px;
  border-bottom: 2px solid transparent;
}
.tabs__btn.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
  background: var(--gold-pale);
}
.tabs__btn:hover { color: var(--navy); background: var(--light-2); }
.tabs__panel { display: none; }
.tabs__panel.active { display: block; animation: fadeIn 0.4s ease; }

/* ── CTA Banner ──────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23B8962E' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner__title {
  font-family: var(--font-head);
  font-size: 2rem; color: var(--white);
  margin-bottom: 12px; position: relative;
}
.cta-banner__title span { color: var(--gold-light); }
.cta-banner__text { color: rgba(255,255,255,0.75); margin-bottom: 28px; position: relative; }
.cta-banner__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── Auth Pages ──────────────────────────────────────────────────── */
.auth-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  display: flex; align-items: center; justify-content: center;
  padding: 40px 20px;
  position: relative; overflow: hidden;
}
.auth-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  max-width: 460px; width: 100%;
  box-shadow: 0 24px 72px rgba(0,0,0,0.35);
  animation: fadeInUp 0.6s ease both;
  position: relative; z-index: 2;
}
.auth-logo { display: flex; justify-content: center; margin-bottom: 24px; }
.auth-logo img { height: 60px; }
.auth-title {
  font-family: var(--font-head); font-size: 1.7rem;
  color: var(--navy-dark); text-align: center;
  margin-bottom: 6px;
}
.auth-sub { text-align: center; color: var(--text-light); font-size: 0.88rem; margin-bottom: 28px; }
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; }
.auth-divider span { height: 1px; background: var(--border); flex: 1; }
.auth-divider em { font-size: 0.78rem; color: var(--text-light); font-style: normal; }
.auth-footer { text-align: center; margin-top: 20px; font-size: 0.88rem; color: var(--text-light); }
.auth-footer a { color: var(--navy); font-weight: 600; }

/* ── 404 ─────────────────────────────────────────────────────────── */
.error-page { text-align: center; padding: 120px 20px; }
.error-page__code { font-size: 8rem; font-weight: 800; color: var(--navy); line-height: 1; opacity: 0.1; }
.error-page__title { font-family: var(--font-head); font-size: 2rem; color: var(--navy-dark); margin-bottom: 12px; }
.error-page__text  { color: var(--text-light); margin-bottom: 28px; }

/* ── Footer ──────────────────────────────────────────────────────── */
.footer { background: var(--navy-dark); position: relative; }
.footer__wave { line-height: 0; }
.footer__wave svg { width: 100%; height: 60px; display: block; }
.footer__body { padding: 20px 0 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer__logo { height: 56px; margin-bottom: 14px; border-radius: 8px; }
.footer__tagline { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.7; margin-bottom: 18px; }
.footer__social  { display: flex; gap: 10px; }
.footer__social a {
  width: 36px; height: 36px;
  border-radius: 8px; background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65); font-size: 0.9rem;
  transition: all var(--trans);
}
.footer__social a:hover { background: var(--gold); color: var(--navy-dark); transform: translateY(-2px); }
.footer__heading { color: var(--gold); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }
.footer__links li { margin-bottom: 8px; }
.footer__links a { color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: all var(--trans); }
.footer__links a:hover { color: var(--gold); padding-left: 4px; }
.footer__address p { color: rgba(255,255,255,0.65); font-size: 0.86rem; margin-bottom: 8px; display: flex; gap: 8px; align-items: flex-start; }
.footer__address i { color: var(--gold); margin-top: 3px; }
.footer__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(184,150,46,0.12); border: 1px solid rgba(184,150,46,0.3);
  color: var(--gold); padding: 8px 14px; border-radius: 8px;
  font-size: 0.78rem; font-weight: 700; margin-top: 14px;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  color: rgba(255,255,255,0.4); font-size: 0.8rem;
}
.footer__bottom p { padding: 0 20px; }

/* ── Back to Top ─────────────────────────────────────────────────── */
.btn-back-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(184,150,46,0.4);
  opacity: 0; pointer-events: none;
  transition: all var(--trans);
  z-index: 900;
}
.btn-back-top.show { opacity: 1; pointer-events: all; }
.btn-back-top:hover { background: var(--gold-light); transform: translateY(-3px); }

/* ── Scroll Reveal ───────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right{ opacity: 0; transform: translateX(30px);  transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible{ opacity: 1; transform: translateX(0); }

/* ── Keyframe Animations ─────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes floatDot {
  0%   { transform: translate(0, 100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translate(0, -10vh) scale(1); opacity: 0; }
}
@keyframes pulse {
  0%, 100% { transform: translateY(-50%) scale(1); }
  50%       { transform: translateY(-50%) scale(1.08); }
}
@keyframes ringExpand {
  0%   { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(1.4); opacity: 0; }
}
@keyframes counterUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .topbar__inner span:not(:last-child) { display: none; }
  .navbar__menu {
    position: fixed; top: calc(var(--topbar-h) + var(--nav-h)); left: 0; right: 0;
    background: var(--white); flex-direction: column;
    padding: 16px 20px; gap: 4px;
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease;
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  .navbar__menu.open { max-height: 480px; }
  .navbar__toggle { display: flex; }
  .navbar__menu { margin-left: 0; align-items: stretch; }
  .navbar__link { padding: 10px 14px; }
  .dropdown { position: static; box-shadow: none; border: none; border-left: 3px solid var(--gold); border-radius: 0; padding-left: 8px; transform: none; opacity: 1; visibility: visible; }
  .hero { min-height: 70vh; }
  .hero__deco { display: none; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: center; text-align: center; }
  .cards-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
  .auth-card { padding: 32px 24px; }
  .form-card { padding: 28px 20px; }
  .cta-banner { padding: 40px 24px; }
}

/* ── Dashboard Standard Components ─────────────────────────────────── */
.glass-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 24px;
  transition: all var(--trans);
  animation: fadeInUp 0.5s ease both;
}
.glass-card:hover { border-color: var(--gold); transform: translateY(-3px); }

.stat-box {
  background: white;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.3s;
}
.stat-box:hover { transform: translateY(-4px); border-color: var(--gold); }
.stat-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  background: var(--navy); color: var(--gold);
}
.stat-info .num { font-size: 1.8rem; font-weight: 800; color: var(--navy-dark); line-height: 1; }
.stat-info .label { font-size: 0.75rem; color: #64748b; margin-top: 4px; font-weight: 700; text-transform: uppercase; }

.badge-status {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 20px;
  font-weight: 800; font-size: 0.72rem; text-transform: uppercase;
  background: var(--light); color: var(--navy);
  border: 1px solid var(--border);
}

.reviewer-row {
  background: var(--light);
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 12px;
  display: flex; justify-content: space-between; align-items: center;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.reviewer-row:hover { border-color: var(--gold); background: var(--white); box-shadow: var(--shadow); }

.timeline-item {
  position: relative;
  padding-left: 28px;
  padding-bottom: 24px;
  border-left: 2px dashed var(--border);
}
.timeline-item::before {
  content: ''; position: absolute; left: -7px; top: 0;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold);
}

/* Status colors for badges */
.badge-status[data-status="Accepted"], .badge-status[data-status="Completed"] { background: #10b981 !important; color: white !important; }
.badge-status[data-status="Rejected"], .badge-status[data-status="Declined"] { background: #ef4444 !important; color: white !important; }
.badge-status[data-status="Under Review"] { background: var(--navy) !important; color: white !important; }
.badge-status[data-status="Revision Required"] { background: var(--gold) !important; color: white !important; }
.badge-status[data-status="Submitted"] { background: #e0f2fe !important; color: #0369a1 !important; }

/* Dashboard Grids */
.dashboard-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}
@media (max-width: 992px) {
  .dashboard-grid { grid-template-columns: 1fr; }
}

