/* ================================================
   ALFRED4PRO — Campaign Design System
   "Leadership. Innovation. Excellence."
   Alfred Addy for GRNMA Central Region
   ================================================ */

@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800;900&family=Montserrat:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap");

/* --- CSS Variables --- */
:root {
  /* Alfred4Pro Brand: Sea Blue + Green + White */
  --navy: #023e58;
  --navy-mid: #02526e;
  --navy-light: #036a8a;
  --gold: #1a9e5a;
  --gold-light: #22c56e;
  --gold-glow: rgba(26, 158, 90, 0.25);
  --red: #0077a8;
  --red-light: #0096c7;
  --red-glow: rgba(0, 150, 199, 0.2);
  /* Sea Blue */
  --seablue: #0096c7;
  --seablue-dark: #023e58;
  --seablue-light: #00b4d8;
  --seablue-glow: rgba(0, 150, 199, 0.25);
  /* Green */
  --green: #1a9e5a;
  --green-dark: #14784a;
  --green-light: #22c56e;
  --green-glow: rgba(26, 158, 90, 0.25);
  --white: #ffffff;
  --off-white: #f0f8ff;
  --cream: #e8f5ff;
  --dark: #011826;
  --gray-100: #f0f7fb;
  --gray-200: #d8eef5;
  --gray-400: #7ab3c8;
  --gray-600: #355f70;
  --gray-800: #0d2e3c;
  --font-display: "Cinzel", "Georgia", serif;
  --font-heading: "Montserrat", "Plus Jakarta Sans", sans-serif;
  --font-body: "Inter", "Montserrat", sans-serif;
  --shadow-gold: 0 8px 40px rgba(212, 160, 23, 0.3);
  --shadow-navy: 0 20px 60px rgba(10, 22, 40, 0.4);
  --shadow-red: 0 8px 30px rgba(185, 28, 28, 0.3);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Global Reset --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
img {
  max-width: 100%;
  height: auto;
}
.section-padding {
  padding: 110px 0;
}
.section-padding-sm {
  padding: 72px 0;
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes goldPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(212, 160, 23, 0.4);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(212, 160, 23, 0);
  }
}
@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes rotateGlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}
@keyframes particleFloat {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) rotate(720deg);
    opacity: 0;
  }
}
@keyframes preloaderSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes preloaderPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes flagWave {
  0%,
  100% {
    transform: skewX(0deg) scaleX(1);
  }
  25% {
    transform: skewX(-2deg) scaleX(0.98);
  }
  75% {
    transform: skewX(2deg) scaleX(1.02);
  }
}
@keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes blink {
  50% {
    border-color: transparent;
  }
}
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes ribbonSlide {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100vw);
  }
}
@keyframes starTwinkle {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}
@keyframes borderGlow {
  0%,
  100% {
    border-color: var(--gold);
    box-shadow: 0 0 10px var(--gold-glow);
  }
  50% {
    border-color: var(--gold-light);
    box-shadow: 0 0 30px rgba(240, 192, 64, 0.5);
  }
}

/* Scroll Animations */
.fade-in-up,
.fade-in-left,
.fade-in-right,
.scale-in {
  opacity: 0;
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-in-up {
  transform: translateY(40px);
}
.fade-in-left {
  transform: translateX(-50px);
}
.fade-in-right {
  transform: translateX(50px);
}
.scale-in {
  transform: scale(0.85);
}
.fade-in-up.visible,
.fade-in-left.visible,
.fade-in-right.visible,
.scale-in.visible {
  opacity: 1;
  transform: none;
}
.stagger-1 {
  transition-delay: 0.1s;
}
.stagger-2 {
  transition-delay: 0.2s;
}
.stagger-3 {
  transition-delay: 0.3s;
}
.stagger-4 {
  transition-delay: 0.4s;
}
.stagger-5 {
  transition-delay: 0.5s;
}
.stagger-6 {
  transition-delay: 0.6s;
}

/* ===================================
   PRELOADER
   =================================== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 28px;
  transition: opacity 0.8s ease;
}
.preloader-emblem {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader-ring {
  width: 120px;
  height: 120px;
  border: 3px solid transparent;
  border-top-color: var(--gold);
  border-right-color: var(--gold-light);
  border-radius: 50%;
  animation: preloaderSpin 1s linear infinite;
}
.preloader-logo-img {
  position: absolute;
  width: 90px;
  height: 90px;
  object-fit: contain;
  animation: preloaderPulse 2s ease infinite;
}
.preloader-logo-inner {
  position: absolute;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 2px;
  animation: preloaderPulse 2s ease infinite;
}
.preloader-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 4px;
  text-transform: uppercase;
}
.preloader-name span {
  color: var(--gold);
}
.preloader-tagline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.preloader-bar {
  width: 180px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}
.preloader-bar::after {
  content: "";
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  animation: preloaderFill 1.8s ease forwards;
}
@keyframes preloaderFill {
  to {
    width: 100%;
  }
}

/* ===================================
   PARTICLES CANVAS
   =================================== */
#particleCanvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* ===================================
   MOBILE OVERLAY & SIDEBAR
   =================================== */
@keyframes sidebarLinkIn {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes sidebarCtaIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes sidebarLogoIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}

.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(1, 24, 38, 0.75);
  z-index: 10998; opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.mobile-overlay.active { opacity: 1; pointer-events: all; }

.mobile-sidebar {
  position: fixed; top: 0; left: -110%;
  height: 100%; width: 300px; max-width: 88vw;
  background: linear-gradient(170deg, var(--navy-mid) 0%, var(--dark) 100%);
  z-index: 10999;
  display: flex; flex-direction: column;
  transition: left 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-right: 1px solid rgba(26, 158, 90, 0.18);
  overflow-y: auto; overflow-x: hidden;
  box-shadow: 12px 0 60px rgba(0, 0, 0, 0.5);
}
.mobile-sidebar.active { left: 0; }

/* Sidebar Header — label + close button only */
.sidebar-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 20px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}
.sidebar-header-label {
  font-family: var(--font-heading);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}
.sidebar-logo {
  height: 54px; width: auto; object-fit: contain;
  opacity: 0;
}
.mobile-sidebar.active .sidebar-logo {
  animation: sidebarLogoIn 0.5s ease 0.15s both;
}
.sidebar-close {
  background: rgba(26, 158, 90, 0.1);
  border: 1px solid rgba(26, 158, 90, 0.25);
  color: var(--gold); font-size: 1rem;
  width: 38px; height: 38px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--transition); flex-shrink: 0;
}
.sidebar-close:hover { background: var(--gold); color: var(--navy); transform: rotate(90deg); }

/* Nav */
.sidebar-nav {
  display: flex; flex-direction: column; gap: 2px;
  padding: 20px 14px; flex: 1;
}
.sidebar-link {
  display: flex; align-items: center; gap: 14px;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font-heading);
  font-weight: 600; font-size: 0.95rem;
  padding: 13px 16px; border-radius: var(--radius);
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  position: relative; overflow: hidden;
  opacity: 0;
}
.sidebar-link::before {
  content: ''; position: absolute;
  inset: 0; background: rgba(26, 158, 90, 0.08);
  transform: translateX(-100%); transition: transform 0.3s ease;
  border-radius: var(--radius);
}
.sidebar-link:hover::before,
.sidebar-link.active::before { transform: translateX(0); }
.sidebar-link:hover,
.sidebar-link.active {
  color: var(--white);
  border-left-color: var(--gold);
}
.sidebar-link-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.92rem; color: var(--gold-light);
  flex-shrink: 0; transition: all 0.3s ease; position: relative; z-index: 1;
}
.sidebar-link:hover .sidebar-link-icon,
.sidebar-link.active .sidebar-link-icon {
  background: var(--gold); color: var(--navy);
  border-color: var(--gold); transform: scale(1.05);
}
.sidebar-link-text { flex: 1; position: relative; z-index: 1; }
.sidebar-link-arrow {
  font-size: 0.68rem; color: rgba(255, 255, 255, 0.18);
  transition: all 0.3s ease; position: relative; z-index: 1;
}
.sidebar-link:hover .sidebar-link-arrow,
.sidebar-link.active .sidebar-link-arrow {
  color: var(--gold); transform: translateX(4px);
}

/* Stagger animation when sidebar opens */
.mobile-sidebar.active .sidebar-link:nth-child(1) { animation: sidebarLinkIn 0.4s ease 0.18s both; }
.mobile-sidebar.active .sidebar-link:nth-child(2) { animation: sidebarLinkIn 0.4s ease 0.24s both; }
.mobile-sidebar.active .sidebar-link:nth-child(3) { animation: sidebarLinkIn 0.4s ease 0.30s both; }
.mobile-sidebar.active .sidebar-link:nth-child(4) { animation: sidebarLinkIn 0.4s ease 0.36s both; }
.mobile-sidebar.active .sidebar-link:nth-child(5) { animation: sidebarLinkIn 0.4s ease 0.42s both; }
.mobile-sidebar.active .sidebar-link:nth-child(6) { animation: sidebarLinkIn 0.4s ease 0.48s both; }

.sidebar-cta-wrap { padding: 0 14px 20px; }
.sidebar-cta {
  display: flex; align-items: center; gap: 10px; justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy) !important;
  font-family: var(--font-heading);
  font-weight: 700; font-size: 0.9rem;
  padding: 14px 24px; border-radius: 50px;
  transition: var(--transition); opacity: 0;
}
.mobile-sidebar.active .sidebar-cta { animation: sidebarCtaIn 0.4s ease 0.42s both; }
.sidebar-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); color: var(--navy) !important; }

.sidebar-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 20px 28px; flex-shrink: 0;
}
.sidebar-tagline {
  font-size: 0.78rem; color: rgba(255, 255, 255, 0.35);
  font-style: italic; margin-bottom: 16px; line-height: 1.5;
}
.sidebar-socials { display: flex; gap: 10px; list-style: none; }
.sidebar-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(26, 158, 90, 0.08);
  border: 1px solid rgba(26, 158, 90, 0.2);
  color: var(--gold-light); font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.sidebar-socials a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.1);
}

/* Logo pinned to very bottom of sidebar */
.sidebar-logo-bottom {
  padding: 18px 20px 24px;
  text-align: center;
  flex-shrink: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.sidebar-logo-bottom .sidebar-logo {
  height: 56px; width: auto;
  object-fit: contain; opacity: 0.75;
}
.mobile-sidebar.active .sidebar-logo-bottom .sidebar-logo {
  animation: sidebarLogoIn 0.5s ease 0.5s both;
}

/* ===================================
   NAVBAR
   =================================== */
.alfred-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 20px 0;
  transition: var(--transition);
}
.alfred-navbar .navbar-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.alfred-navbar .navbar-brand img {
  height: 52px;
  width: auto;
  border-radius: 0;
  border: none;
  object-fit: contain;
}
.alfred-navbar .brand-text span {
  color: var(--gold);
}
.alfred-navbar.scrolled {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 12px 0;
  box-shadow:
    0 4px 40px rgba(0, 0, 0, 0.4),
    0 1px 0 rgba(212, 160, 23, 0.1);
}
.alfred-navbar .nav-link {
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 6px 16px !important;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s;
  text-transform: uppercase;
}
.alfred-navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.alfred-navbar .nav-link:hover,
.alfred-navbar .nav-link.active {
  color: var(--gold);
}
.alfred-navbar .nav-link:hover::after,
.alfred-navbar .nav-link.active::after {
  left: 16px;
  right: 16px;
}
.alfred-navbar .btn-nav {
  background: linear-gradient(
    135deg,
    var(--gold),
    var(--gold-light)
  ) !important;
  color: var(--navy) !important;
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  transition: var(--transition) !important;
}
.alfred-navbar .btn-nav::after {
  display: none !important;
}
.alfred-navbar .btn-nav:hover {
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-gold) !important;
}
.mobile-toggler {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggler span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-toggler {
  transition: opacity 0.3s ease;
}

/* ===================================
   HERO SECTION (CAMPAIGN)
   =================================== */
.alfred-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(5, 14, 30, 0.97) 0%,
    rgba(10, 22, 40, 0.85) 50%,
    rgba(5, 14, 30, 0.92) 100%
  );
}
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  animation: particleFloat linear infinite;
  opacity: 0;
}
.hero-content {
  position: relative;
  z-index: 5;
  padding: 140px 0 100px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.3);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease forwards;
}
.hero-badge .badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: goldPulse 2s ease infinite;
}
.hero-name {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 8px;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-name .name-gold {
  color: var(--gold);
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease 0.35s both;
}
.hero-title span {
  color: var(--gold-light);
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.45s both;
}
.hero-tagline .highlight-red {
  color: var(--red-light);
}
.hero-tagline .highlight-gold {
  color: var(--gold);
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 44px;
  animation: fadeInUp 0.8s ease 0.55s both;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.65s both;
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 16px 32px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212, 160, 23, 0.45);
  color: var(--navy);
}
.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 2px solid rgba(212, 160, 23, 0.5);
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 14px 32px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
}
.btn-outline-gold:hover {
  background: rgba(212, 160, 23, 0.1);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}
.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 60px;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  animation: fadeInUp 0.8s ease 0.75s both;
}
.hero-stat-item {
  text-align: left;
}
.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-heading);
}
.hero-image-col {
  position: relative;
  z-index: 5;
  animation: fadeInRight 1s ease 0.3s both;
}
.hero-portrait-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}
/* Portrait glow — replaces old ring */
.portrait-glow {
  position: absolute;
  inset: -18px;
  border-radius: 26px;
  background: transparent;
  box-shadow:
    0 0 40px rgba(26, 158, 90, 0.22),
    0 0 90px rgba(0, 150, 199, 0.12);
  animation: portraitPulse 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes portraitPulse {
  0%, 100% { box-shadow: 0 0 40px rgba(26,158,90,0.22), 0 0 90px rgba(0,150,199,0.12); }
  50%       { box-shadow: 0 0 60px rgba(26,158,90,0.38), 0 0 120px rgba(0,150,199,0.2); }
}

/* ── ORBIT ICONS ── */
/* Classic orbit trick: outer rotate moves icon in circle,
   inner counter-rotate keeps it upright */
.orbit-icon {
  position: absolute;
  top: 50%; left: 50%;
  width: 52px; height: 52px;
  margin: -26px;
  pointer-events: none;
  z-index: 4;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 3px;
}
.orbit-icon i {
  font-size: 1.05rem;
  line-height: 1;
  display: block;
}
.orbit-icon span {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.58rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1;
  display: block;
}

/* Outer orbit — clockwise, r = 255px */
.orbit-vote-1 {
  animation: orbitCW 13s linear infinite;
  background: linear-gradient(135deg, #1a9e5a, #15864c);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(26,158,90,0.5);
}
.orbit-vote-2 {
  animation: orbitCW 13s linear infinite -6.5s; /* opposite side */
  background: linear-gradient(135deg, #0096c7, #007aaa);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(0,150,199,0.5);
}

/* Inner orbit — counter-clockwise, r = 195px */
.orbit-vote-3 {
  width: 44px; height: 44px; margin: -22px;
  animation: orbitCCW 9s linear infinite;
  background: linear-gradient(135deg, #023e58, #014a6b);
  color: var(--gold);
  border-radius: 50%;
  border: 1.5px solid rgba(26,158,90,0.4);
  box-shadow: 0 4px 14px rgba(1,24,38,0.4);
}
.orbit-vote-4 {
  width: 44px; height: 44px; margin: -22px;
  animation: orbitCCW 9s linear infinite -4.5s; /* opposite side */
  background: linear-gradient(135deg, #023e58, #014a6b);
  color: var(--gold);
  border-radius: 50%;
  border: 1.5px solid rgba(0,150,199,0.4);
  box-shadow: 0 4px 14px rgba(1,24,38,0.4);
}

@keyframes orbitCW {
  from { transform: rotate(0deg)   translateX(255px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(255px) rotate(-360deg); }
}
@keyframes orbitCCW {
  from { transform: rotate(0deg)   translateX(195px) rotate(0deg); }
  to   { transform: rotate(-360deg) translateX(195px) rotate(360deg); }
}
.hero-image-caption {
  text-align: center;
  margin-top: 32px;
}
.hero-image-caption .hero-name {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
  animation: none;
}
.hero-image-caption .hero-tagline {
  font-size: clamp(0.78rem, 1.2vw, 1rem);
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 0;
  animation: none;
  opacity: 0.85;
}
.hero-portrait {
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(212, 160, 23, 0.15);
  animation: floatY 6s ease-in-out infinite;
}
.hero-portrait-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-gold);
  z-index: 3;
  font-family: var(--font-heading);
  font-weight: 700;
}
.hero-portrait-badge .badge-title {
  font-size: 1.1rem;
  font-weight: 900;
}
.hero-portrait-badge .badge-sub {
  font-size: 0.72rem;
  letter-spacing: 1px;
  opacity: 0.8;
  text-transform: uppercase;
}
.hero-award-badge {
  position: absolute;
  top: 20px;
  right: -15px;
  background: var(--red);
  color: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-red);
  z-index: 3;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  text-align: center;
  line-height: 1.4;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeInUp 1s ease 1s both;
}
.hero-scroll-hint span {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--font-heading);
}
.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(212, 160, 23, 0.4);
  border-radius: 12px;
  position: relative;
}
.scroll-mouse::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 1.5s ease infinite;
}
@keyframes scrollDot {
  0% {
    opacity: 1;
    top: 6px;
  }
  100% {
    opacity: 0;
    top: 20px;
  }
}

/* ===================================
   TICKER / ANNOUNCEMENT BAR
   =================================== */
.announcement-bar {
  background: linear-gradient(
    90deg,
    var(--gold),
    var(--gold-light),
    var(--gold)
  );
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 10;
}
.ticker-track {
  display: inline-flex;
  gap: 60px;
  animation: tickerScroll 25s linear infinite;
  padding: 12px 0;
}
@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}
.ticker-item i {
  color: var(--navy);
  opacity: 0.6;
}

/* ===================================
   SECTION HEADERS
   =================================== */
.section-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-tag .line {
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title .highlight {
  color: var(--gold);
  position: relative;
}
.section-title .highlight-red {
  color: var(--red);
}
.section-desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 48px;
}
.section-desc.centered {
  margin: 0 auto 48px;
}
.section-header {
  margin-bottom: 56px;
}

/* ===================================
   PAGE HERO (inner pages)
   =================================== */
.page-hero {
  background: linear-gradient(
    135deg,
    var(--dark) 0%,
    var(--navy) 50%,
    var(--navy-mid) 100%
  );
  padding: 160px 0 90px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 50%,
    rgba(212, 160, 23, 0.08) 0%,
    transparent 70%
  );
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  line-height: 1.8;
}
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 24px;
  font-family: var(--font-heading);
}
.breadcrumb-nav a {
  color: var(--gold);
}
.breadcrumb-nav a:hover {
  color: var(--gold-light);
}

/* ===================================
   CAMPAIGN PROMISE SECTION
   =================================== */
.promise-section {
  background: var(--off-white);
}
.promise-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10, 22, 40, 0.06);
}
.promise-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.promise-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(10, 22, 40, 0.12);
}
.promise-card:hover::before {
  transform: scaleX(1);
}
.promise-icon {
  width: 68px;
  height: 68px;
  border-radius: var(--radius);
  background: linear-gradient(
    135deg,
    rgba(212, 160, 23, 0.1),
    rgba(212, 160, 23, 0.05)
  );
  border: 1px solid rgba(212, 160, 23, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.6rem;
  color: var(--gold);
  transition: var(--transition);
}
.promise-card:hover .promise-icon {
  background: var(--gold);
  color: var(--navy);
}
.promise-card h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.promise-card p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ===================================
   JOURNEY / TIMELINE
   =================================== */
.timeline-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.timeline-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--gold),
    var(--gold),
    transparent
  );
  transform: translateX(-50%);
}
.timeline-item {
  position: relative;
  padding: 32px 0;
}
.timeline-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--navy);
  box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.2);
  z-index: 2;
}
.timeline-content {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 160, 23, 0.12);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  max-width: 44%;
  transition: var(--transition);
}
.timeline-content:hover {
  background: rgba(212, 160, 23, 0.06);
  border-color: rgba(212, 160, 23, 0.25);
}
.timeline-year {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 8px;
}
.timeline-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.timeline-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}
.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
  margin-right: 56%;
}
.timeline-item:nth-child(even) .timeline-content {
  margin-left: 56%;
}

/* ===================================
   ACHIEVEMENTS / AWARDS
   =================================== */
.award-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(10, 22, 40, 0.06);
  position: relative;
  overflow: hidden;
}
.award-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.award-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(10, 22, 40, 0.12);
}
.award-trophy {
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--navy);
  flex-shrink: 0;
}
.award-card h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.award-card p {
  font-size: 0.88rem;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.6;
}
.award-year {
  margin-left: auto;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
  flex-shrink: 0;
}

/* ===================================
   INNOVATIONS / DIGITAL SYSTEMS
   =================================== */
.innovation-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border: 1px solid rgba(212, 160, 23, 0.15);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.innovation-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(212, 160, 23, 0.08) 0%,
    transparent 70%
  );
  transition: var(--transition);
}
.innovation-card:hover {
  border-color: rgba(212, 160, 23, 0.4);
  transform: translateY(-5px);
}
.innovation-card:hover::before {
  transform: scale(2);
}
.innovation-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(212, 160, 23, 0.1);
  line-height: 1;
  margin-bottom: 16px;
}
.innovation-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: rgba(212, 160, 23, 0.12);
  border: 1px solid rgba(212, 160, 23, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 20px;
  transition: var(--transition);
}
.innovation-card:hover .innovation-icon {
  background: var(--gold);
  color: var(--navy);
}
.innovation-card h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.innovation-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}
.innovation-tag {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.2);
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===================================
   STATS COUNTER SECTION
   =================================== */
.stats-section {
  background: linear-gradient(135deg, var(--navy), var(--dark));
}
.stat-counter-item {
  text-align: center;
  padding: 20px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0 auto;
}

/* ===================================
   VISION CARDS
   =================================== */
.vision-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(10, 22, 40, 0.08);
}
.vision-card.gold-border {
  border-color: var(--gold);
}
.vision-card.red-border {
  border-color: var(--red);
}
.vision-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(10, 22, 40, 0.15);
}
.vision-card-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.vision-card-icon.gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
}
.vision-card-icon.red {
  background: linear-gradient(135deg, var(--red), var(--red-light));
  color: var(--white);
}
.vision-card-icon.navy {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--gold);
}
.vision-card h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
}
.vision-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ===================================
   ABOUT IMAGE SECTION
   =================================== */
.about-hero-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-navy);
  position: relative;
}
.about-img-wrapper {
  position: relative;
  display: inline-block;
}
.about-img-wrapper::before {
  content: "";
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 2px solid rgba(212, 160, 23, 0.3);
  border-radius: var(--radius-xl);
  z-index: 0;
}
.about-img-wrapper img {
  position: relative;
  z-index: 1;
}
.about-floating-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  z-index: 2;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-gold);
  text-align: center;
}
.about-floating-badge .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}
.about-floating-badge .lbl {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
}

/* ===================================
   POSITIONS HELD
   =================================== */
.position-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(10, 22, 40, 0.05);
}
.position-item:hover {
  border-color: rgba(212, 160, 23, 0.3);
  transform: translateX(6px);
}
.position-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: linear-gradient(
    135deg,
    rgba(212, 160, 23, 0.12),
    rgba(212, 160, 23, 0.06)
  );
  border: 1px solid rgba(212, 160, 23, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.position-item h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.position-item p {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin: 0;
}
.position-year {
  margin-left: auto;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 20% 50%,
    rgba(212, 160, 23, 0.08) 0%,
    transparent 60%
  );
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
}
.cta-section p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.05rem;
  line-height: 1.8;
}
.btn-primary-alfred {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 16px 32px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary-alfred:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
  color: var(--navy);
}
.btn-dark-alfred {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 16px 32px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
}
.btn-dark-alfred:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  transform: translateY(-3px);
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-card-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-navy);
}
.contact-info-side {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 60px 48px;
  height: 100%;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-info-item h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.contact-info-item p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  margin: 0;
}
.contact-form-side {
  padding: 60px 48px;
}
.contact-form-side h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact-form-side p {
  color: var(--gray-600);
  margin-bottom: 36px;
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 8px;
  display: block;
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--gray-800);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.1);
}
textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

/* ===================================
   FOOTER
   =================================== */
.alfred-footer {
  background: var(--dark);
}
.footer-top {
  padding: 80px 0 48px;
}
.footer-brand {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-logo {
  height: 50px;
  margin-bottom: 16px;
}
.footer-desc {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 28px;
}
.footer-socials {
  display: flex;
  gap: 10px;
  list-style: none;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212, 160, 23, 0.08);
  border: 1px solid rgba(212, 160, 23, 0.15);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-socials a:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: scale(1.1);
}
.footer-widget h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.88rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before {
  content: "→";
  color: var(--gold);
  opacity: 0;
  transition: all 0.3s;
  margin-left: -16px;
}
.footer-links a:hover {
  color: var(--gold);
  padding-left: 8px;
}
.footer-links a:hover::before {
  opacity: 1;
  margin-left: 0;
}
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-contact-item i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-item p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.88rem;
  margin: 0;
}
.gold-stripe {
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold),
    var(--gold-light),
    var(--gold),
    transparent
  );
}
.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.82rem;
  margin: 0;
}
.footer-bottom a {
  color: var(--gold);
}
.footer-bottom a:hover {
  color: var(--gold-light);
}

/* ===================================
   SCROLL TO TOP
   =================================== */
.scroll-top-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9998;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
}
.scroll-top-btn:hover {
  transform: translateY(-4px) scale(1.05);
}

/* ===================================
   404 PAGE
   =================================== */
.notfound-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark), var(--navy));
  text-align: center;
}
.notfound-num {
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 12rem);
  font-weight: 900;
  color: rgba(212, 160, 23, 0.15);
  line-height: 1;
  margin-bottom: 8px;
}
.notfound-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.notfound-desc {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1rem;
  margin-bottom: 40px;
}

/* ===================================
   ADMIN OVERRIDES (minimal)
   =================================== */
.admin-sidebar-brand {
  font-family: var(--font-display) !important;
  color: var(--gold) !important;
}

/* ===================================
   UTILITIES
   =================================== */
.text-gold {
  color: var(--gold) !important;
}
.text-navy {
  color: var(--navy) !important;
}
.text-white {
  color: var(--white) !important;
}
.bg-navy {
  background: var(--navy) !important;
}
.bg-gold {
  background: var(--gold) !important;
}
.divider-gold {
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--gold),
    var(--gold-light),
    transparent
  );
  border: none;
  margin: 32px 0;
}

/* ===================================
   BEYOND PRO MODAL
   =================================== */
.hero-badge-trigger {
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.hero-badge-trigger:hover {
  background: rgba(212, 160, 23, 0.18);
  border-color: rgba(212, 160, 23, 0.6);
  transform: translateY(-1px);
}
.badge-info-icon {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-left: 2px;
}

#beyondProModal .modal-dialog {
  max-width: 640px;
}
#beyondProModal .modal-backdrop,
#beyondProModal + .modal-backdrop {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.beyond-pro-modal-content {
  background: linear-gradient(160deg, #011828 0%, #023e58 100%);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: 20px;
  padding: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(212,160,23,0.08);
}
.beyond-pro-modal-content::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.beyond-pro-close {
  position: absolute;
  top: 18px; right: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  z-index: 9999;
  isolation: isolate;
}
.beyond-pro-close:hover {
  background: rgba(212,160,23,0.15);
  color: var(--gold);
  border-color: rgba(212,160,23,0.3);
}
.beyond-pro-header {
  padding: 48px 44px 24px;
  text-align: center;
}
.beyond-pro-icon-wrap {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,160,23,0.18), rgba(212,160,23,0.06));
  border: 1px solid rgba(212,160,23,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin: 0 auto 18px;
}
.beyond-pro-tag {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
  margin-bottom: 10px;
}
.beyond-pro-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin: 0;
}
.beyond-pro-title span {
  color: var(--gold);
}
.beyond-pro-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,160,23,0.25), transparent);
  margin: 0 44px;
}
.beyond-pro-body {
  padding: 28px 44px 24px;
}
.beyond-pro-body p {
  color: rgba(255,255,255,0.65);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.beyond-pro-callout {
  position: relative;
  background: rgba(212,160,23,0.07);
  border-left: 3px solid var(--gold);
  border-radius: 0 10px 10px 0;
  padding: 18px 22px 18px 28px;
  margin-top: 8px;
}
.beyond-pro-callout p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  margin-bottom: 0;
}
.beyond-pro-callout strong {
  color: var(--gold);
}
.beyond-pro-quote-icon {
  position: absolute;
  top: -10px; left: 16px;
  font-size: 1.2rem;
  color: var(--gold);
  opacity: 0.4;
}
.beyond-pro-footer-pad {
  height: 36px;
}

/* ===================================
   RESPONSIVE
   =================================== */

/* --- Tablet (≤991px) --- */
@media (max-width: 991px) {
  .mobile-toggler { display: flex; }
  .navbar-collapse { display: none !important; }

  .section-padding { padding: 80px 0; }
  .section-padding-sm { padding: 52px 0; }

  .hero-content { padding: 120px 0 80px; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .hero-portrait { width: 100%; max-width: 380px; }
  .orbit-icon { display: none; }
  .hero-image-caption .hero-name { font-size: 1.5rem; }
  .hero-image-caption .hero-tagline { font-size: 0.82rem; }

  /* Timeline → single column left-aligned */
  .timeline-section::before { left: 20px; }
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 52px; margin-right: 0;
    max-width: calc(100% - 68px);
  }
  .timeline-dot { left: 20px; transform: translate(-50%, -50%); }

  /* About image — reduce decoration offset on tablet */
  .about-img-wrapper::before { top: -10px; left: -10px; right: 10px; bottom: 10px; }
  .about-floating-badge { bottom: -14px; right: -14px; }

  /* Position items — remove hover slide on touch */
  .position-item:hover { transform: none; }

  /* Page hero */
  .page-hero { padding: 130px 0 64px; }
}

/* --- Mobile (≤767px) --- */
@media (max-width: 767px) {
  .section-padding { padding: 60px 0; }
  .section-padding-sm { padding: 40px 0; }

  /* Hero */
  .alfred-hero { min-height: 0; }
  .hero-content { padding: 110px 0 60px; }
  .hero-badge { font-size: 0.68rem; padding: 6px 14px; }
  .hero-title { font-size: 0.78rem; letter-spacing: 2px; }
  .hero-desc { font-size: 0.95rem; }
  .hero-stats {
    gap: 20px 32px;
    padding-top: 36px; margin-top: 36px;
    display: grid; grid-template-columns: 1fr 1fr;
  }
  .hero-stat-number { font-size: 2rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .btn-gold, .btn-outline-gold { width: 100%; justify-content: center; }

  /* Page hero */
  .page-hero { padding: 110px 0 52px; }
  .page-hero h1 { font-size: 2rem; }
  .page-hero p { font-size: 0.95rem; }

  /* Section titles */
  .section-title { font-size: 1.7rem; }

  /* About image wrapper — contain badge on mobile */
  .about-img-wrapper { display: block; }
  .about-img-wrapper::before { display: none; }
  .about-floating-badge {
    position: static; display: inline-flex; gap: 12px;
    align-items: center; margin-top: 20px;
    border-radius: var(--radius); padding: 14px 20px;
  }
  .about-floating-badge .num { font-size: 1.6rem; }

  /* Contact — stack panels */
  .contact-card-wrapper { border-radius: var(--radius-lg); }
  .contact-info-side { padding: 36px 24px; }
  .contact-form-side { padding: 36px 24px; }

  /* Award cards — remove side float */
  .award-card { flex-direction: column; gap: 12px; }
  .award-year { margin-left: 0; font-size: 1.1rem; }

  /* Promise cards — full width */
  .promise-card { padding: 28px 24px; }

  /* Stats section */
  .stat-counter-item { padding: 14px 8px; }
  .stat-number { font-size: 2.2rem; }

  /* Innovation cards */
  .innovation-card { padding: 28px 24px; }

  /* Position item — tighter */
  .position-item { padding: 18px 16px; gap: 14px; flex-wrap: wrap; }
  .position-year { width: 100%; margin-left: 0; }

  /* Vision cards */
  .vision-card { padding: 32px 24px; }

  /* Footer */
  .footer-top { padding: 56px 0 36px; }
  .footer-logo { height: 42px; }
  .footer-bottom .row { flex-direction: column; gap: 6px; text-align: center; }
  .footer-bottom .text-md-end { text-align: center !important; }

  /* Ticker */
  .ticker-item { font-size: 0.72rem; }

  /* Hero portrait badge adjustments */
  .hero-portrait-badge { left: 0; bottom: 10px; }
  .hero-award-badge { right: 0; top: 10px; }

  /* Hero image col — centre on mobile */
  .hero-image-col { display: flex; flex-direction: column; align-items: center; padding-top: 0; }
  .hero-portrait-wrapper { margin: 0 auto; }
  .hero-portrait { width: 100%; max-width: 300px; }
  .hero-image-caption { margin-top: 24px; }
  .hero-image-caption .hero-name { font-size: 1.3rem; }
  .hero-image-caption .hero-tagline { font-size: 0.75rem; }
  .hero-portrait-badge, .hero-award-badge { display: none; }

  /* CTA section */
  .cta-section h2 { font-size: 1.6rem; }
}

/* --- Small Mobile (≤576px) --- */
@media (max-width: 576px) {
  /* Hero safe padding — prevent text clipping at edges */
  .alfred-hero .container { padding-left: 22px; padding-right: 22px; }
  .hero-content { padding: 100px 0 52px; }

  .hero-name { font-size: 2.6rem; }
  .hero-tagline { font-size: 1.3rem; }
  .hero-ctas .btn-gold, .hero-ctas .btn-outline-gold { padding: 14px 24px; font-size: 0.85rem; }

  .alfred-navbar { padding: 14px 0; }
  .alfred-navbar .navbar-brand img { height: 42px; }

  /* Page hero */
  .page-hero { padding: 100px 0 44px; }
  .page-hero h1 { font-size: 1.75rem; }
  .breadcrumb-nav { font-size: 0.75rem; }

  /* Sections */
  .section-title { font-size: 1.5rem; }
  .section-desc { font-size: 0.95rem; }

  /* Stats grid 2-col */
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 16px 24px; }

  /* Award card */
  .award-trophy { width: 44px; height: 44px; font-size: 1.1rem; }

  /* Position icon */
  .position-icon { width: 40px; height: 40px; font-size: 0.95rem; }

  /* Contact form */
  .contact-form-side { padding: 28px 18px; }
  .contact-info-side { padding: 28px 18px; }

  /* Scroll to top */
  .scroll-top-btn { bottom: 18px; right: 18px; width: 42px; height: 42px; }

  /* Preloader */
  .preloader-ring { width: 100px; height: 100px; }
  .preloader-logo-img { width: 76px; height: 76px; }

  .hero-name { font-size: 2.6rem;
  }
  .hero-tagline {
    font-size: 1.4rem;
  }
}

/* ====================================================
   CURRICULUM VITAE SECTION
   ==================================================== */

.cv-section { background: var(--white); }

/* ---------- Identity Header ---------- */
.cv-identity {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-light) 100%);
  border-radius: var(--radius-xl);
  padding: 48px 52px;
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}
.cv-identity::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(26,158,90,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.cv-identity-avatar {
  flex-shrink: 0;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 4px solid var(--gold);
  object-fit: cover;
  box-shadow: 0 0 0 6px rgba(26,158,90,0.15);
}
.cv-identity-initials {
  flex-shrink: 0;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 4px solid var(--gold);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy);
  box-shadow: 0 0 0 6px rgba(26,158,90,0.15);
}
.cv-identity-text { flex: 1; }
.cv-identity-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 4px;
  letter-spacing: -0.5px;
}
.cv-identity-credentials {
  font-size: 0.9rem;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 14px;
  font-family: var(--font-heading);
}
.cv-identity-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}
.cv-identity-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.87rem;
}
.cv-identity-meta-item i { color: var(--gold-light); font-size: 0.85rem; }
.cv-identity-badge {
  flex-shrink: 0;
  text-align: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 22px 28px;
}
.cv-identity-badge .num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.cv-identity-badge .lbl {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

/* ---------- CV Section Divider ---------- */
.cv-block-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.cv-block-label-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.15rem;
  flex-shrink: 0;
  box-shadow: 0 4px 16px var(--gold-glow);
}
.cv-block-label-text h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 2px;
}
.cv-block-label-text p {
  font-size: 0.82rem;
  color: var(--gray-600);
  margin: 0;
}

/* ---------- Current Positions ---------- */
.cv-position-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: default;
}
.cv-position-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity 0.3s;
}
.cv-position-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(2,62,88,0.1);
  border-color: var(--gold);
}
.cv-position-card:hover::before { opacity: 1; }
.cv-pos-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-glow);
  color: var(--gold);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
  font-family: var(--font-heading);
}
.cv-pos-badge.current::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.cv-position-card h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.cv-position-card .cv-pos-org {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cv-position-card .cv-pos-period {
  font-size: 0.8rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 12px;
}
.cv-position-card ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
}
.cv-position-card ul li {
  font-size: 0.83rem;
  color: var(--gray-600);
  padding: 3px 0;
  display: flex;
  gap: 8px;
  line-height: 1.5;
}
.cv-position-card ul li::before {
  content: '→';
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Education Hierarchy ---------- */
.cv-edu-tree {
  position: relative;
  padding-left: 24px;
}
.cv-edu-tree::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-light) 50%, rgba(26,158,90,0.2) 100%);
}
.cv-edu-node {
  display: flex;
  gap: 28px;
  margin-bottom: 32px;
  position: relative;
  align-items: flex-start;
}
.cv-edu-node:last-child { margin-bottom: 0; }
.cv-edu-dot {
  position: relative;
  flex-shrink: 0;
  z-index: 2;
}
.cv-edu-dot-inner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  box-shadow: 0 0 0 5px rgba(26,158,90,0.1);
  transition: transform 0.3s;
}
.cv-edu-node:hover .cv-edu-dot-inner { transform: scale(1.1); }
.cv-edu-rank {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
}
.cv-edu-card {
  flex: 1;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  transition: all 0.3s;
}
.cv-edu-node:hover .cv-edu-card {
  border-color: var(--gold);
  box-shadow: 0 8px 30px var(--gold-glow);
  transform: translateX(4px);
}
.cv-edu-degree {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.cv-edu-institution {
  font-size: 0.87rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
}
.cv-edu-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.cv-edu-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-heading);
}
.cv-edu-tag.year { background: rgba(2,62,88,0.07); color: var(--navy); }
.cv-edu-tag.honor { background: rgba(26,158,90,0.1); color: var(--gold); }
.cv-edu-tag.spec { background: rgba(2,62,88,0.05); color: var(--gray-600); border: 1px solid var(--gray-200); }
.cv-edu-thesis {
  font-size: 0.82rem;
  color: var(--gray-600);
  font-style: italic;
  line-height: 1.5;
  padding-top: 10px;
  border-top: 1px solid var(--gray-200);
  margin-top: 8px;
}
.cv-edu-thesis strong { color: var(--navy); font-style: normal; }

/* ---------- Experience Timeline ---------- */
.cv-exp-timeline { position: relative; }
.cv-exp-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--gold-light), rgba(26,158,90,0.15));
}
.cv-exp-item {
  display: flex;
  gap: 0;
  margin-bottom: 48px;
  position: relative;
}
.cv-exp-item:last-child { margin-bottom: 0; }
.cv-exp-item:nth-child(odd) { flex-direction: row; }
.cv-exp-item:nth-child(even) { flex-direction: row-reverse; }
.cv-exp-content {
  width: calc(50% - 36px);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  transition: all 0.3s;
  position: relative;
}
.cv-exp-item:nth-child(odd) .cv-exp-content { margin-right: 36px; }
.cv-exp-item:nth-child(even) .cv-exp-content { margin-left: 36px; }
.cv-exp-content:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px var(--gold-glow);
  transform: translateY(-3px);
}
.cv-exp-item:nth-child(odd) .cv-exp-content::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 24px;
  width: 0; height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid var(--gray-200);
}
.cv-exp-item:nth-child(even) .cv-exp-content::after {
  content: '';
  position: absolute;
  left: -10px;
  top: 24px;
  width: 0; height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid var(--gray-200);
}
.cv-exp-center {
  width: 72px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}
.cv-exp-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--gold), 0 4px 16px var(--gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1rem;
  margin-top: 14px;
}
.cv-exp-year-pill {
  background: var(--navy);
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: 8px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}
.cv-exp-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.cv-exp-org {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}
.cv-exp-desc {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 0;
}
.cv-exp-sub {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--gray-200);
}
.cv-exp-sub-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--gray-600);
  margin-bottom: 5px;
}
.cv-exp-sub-item i { color: var(--gold); font-size: 0.7rem; margin-top: 3px; }

/* ---------- Leadership Hierarchy ---------- */
.cv-leadership-tree { position: relative; }
.cv-leadership-level {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}
.cv-leadership-item {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s;
  position: relative;
}
.cv-leadership-item.national { border-left-color: var(--navy); }
.cv-leadership-item.regional { border-left-color: var(--gold); }
.cv-leadership-item.community { border-left-color: var(--gold-light); }
.cv-leadership-item:hover {
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(2,62,88,0.08);
}
.cv-leadership-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.cv-leadership-item.national .cv-leadership-icon {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
}
.cv-leadership-item.regional .cv-leadership-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
}
.cv-leadership-body { flex: 1; }
.cv-leadership-body h6 {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 3px;
}
.cv-leadership-body p {
  font-size: 0.8rem;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.4;
}
.cv-leadership-period {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-600);
  white-space: nowrap;
  background: var(--gray-100);
  padding: 3px 10px;
  border-radius: 20px;
}
.cv-level-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px 5px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  font-family: var(--font-heading);
}
.cv-level-tag.national { background: rgba(2,62,88,0.08); color: var(--navy); }
.cv-level-tag.regional { background: rgba(26,158,90,0.1); color: var(--gold); }
.cv-level-tag.district { background: rgba(26,158,90,0.05); color: var(--gold-light); border: 1px solid var(--gold-light); }

/* ---------- Research Metrics ---------- */
.cv-research-metric {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.cv-research-metric::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.3s;
}
.cv-research-metric:hover { transform: translateY(-4px); box-shadow: 0 10px 30px var(--gold-glow); border-color: var(--gold); }
.cv-research-metric:hover::before { transform: scaleX(1); }
.cv-research-metric .metric-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  margin: 0 auto 16px;
}
.cv-research-metric .metric-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.cv-research-metric .metric-lbl {
  font-size: 0.82rem;
  color: var(--gray-600);
  font-weight: 600;
}

/* ---------- Affiliations ---------- */
.cv-affil-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s;
}
.cv-affil-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px var(--gold-glow);
  transform: translateX(4px);
}
.cv-affil-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1rem;
  flex-shrink: 0;
}
.cv-affil-body h6 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 2px;
}
.cv-affil-body p {
  font-size: 0.78rem;
  color: var(--gray-600);
  margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .cv-identity { flex-direction: column; padding: 32px 28px; gap: 24px; text-align: center; }
  .cv-identity-meta { justify-content: center; }
  .cv-identity-badge { align-self: center; }
  .cv-exp-timeline::before { left: 22px; transform: none; }
  .cv-exp-item, .cv-exp-item:nth-child(even) { flex-direction: column; padding-left: 64px; }
  .cv-exp-content, .cv-exp-item:nth-child(odd) .cv-exp-content,
  .cv-exp-item:nth-child(even) .cv-exp-content { width: 100%; margin: 0; }
  .cv-exp-center {
    position: absolute; left: 0; top: 0;
    width: 44px; flex-direction: row; gap: 8px;
  }
  .cv-exp-dot { margin-top: 0; width: 40px; height: 40px; font-size: 0.85rem; }
  .cv-exp-year-pill { display: none; }
  .cv-exp-item:nth-child(odd) .cv-exp-content::after,
  .cv-exp-item:nth-child(even) .cv-exp-content::after { display: none; }
  .cv-edu-tree::before { left: 23px; }
}
@media (max-width: 576px) {
  .cv-identity { padding: 24px 20px; }
  .cv-identity-name { font-size: 1.55rem; }
  .cv-identity-initials, .cv-identity-avatar { width: 90px; height: 90px; font-size: 1.8rem; }
}
