/* ═══════════════════════════════════════════════════
   VIRTUAL GURU EDU LIMITED – site.css
   ═══════════════════════════════════════════════════ */

:root {
  --vg-ink: #10233d;
  --vg-ink-soft: #51657f;
  --vg-deep: #07121f;
  --vg-surface: #f7f1e8;
  --vg-surface-strong: #fffcf7;
  --vg-line: rgba(16, 35, 61, 0.1);
  --vg-accent: #ef7c21;
  --vg-accent-deep: #c95d09;
  --vg-success: #207964;
  --vg-shadow: 0 1.6rem 3.5rem rgba(7, 18, 31, 0.12);
  --vg-radius: 1.5rem;
  --vg-radius-sm: 1rem;
}

/* ─── Base ─── */
html { scroll-behavior: smooth; }

body {
  background:
    radial-gradient(circle at top left, rgba(239, 124, 33, 0.07), transparent 22rem),
    linear-gradient(180deg, #fdfaf5 0%, var(--vg-surface) 50%, #f9f3ea 100%);
  color: var(--vg-ink);
  font-family: "Manrope", sans-serif;
}

h1, h2, h3, h4, .font-display {
  font-family: "Cormorant Garamond", serif;
}

a { color: inherit; }
img { max-width: 100%; }

.text-accent { color: var(--vg-accent) !important; }

/* ─── Section spacing ─── */
.section-pad { padding-top: 4rem; padding-bottom: 4rem; }
.pb-lg-6 { padding-bottom: 5rem; }

@media (min-width: 992px) {
  .section-pad { padding-top: 5.5rem; padding-bottom: 5.5rem; }
  .pb-lg-6 { padding-bottom: 6.5rem; }
}

/* ─── Top notice bar ─── */
.site-notice {
  background: var(--vg-deep);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.73rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

/* ─── Navbar ─── */
.navbar-shell {
  transition: background 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
  border-bottom: 1px solid rgba(16, 35, 61, 0.06);
  box-shadow: none;
}

.navbar-shell::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--vg-accent) 0%, transparent 50%);
  opacity: 0.35;
  pointer-events: none;
}

body.is-scrolled .navbar-shell {
  background: #fff;
  border-bottom-color: transparent;
  box-shadow: 0 4px 28px rgba(7, 18, 31, 0.09);
}

body.is-scrolled .navbar-shell::after { opacity: 0; }

.brand-logo-shell {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  height: auto;
  padding: 6px 14px 6px 10px;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.navbar-brand img {
  height: 80px;
  width: auto;
  min-width: 320px;
  max-width: none;
  object-fit: contain;
  object-position: left center;
}

.navbar .nav-link,
.navbar .dropdown-item { font-weight: 600; }

.navbar .nav-link {
  color: #3d4f63;
  border-radius: 8px;
  padding-inline: 0.85rem;
  font-size: 0.88rem;
  transition: color 0.18s ease, background 0.18s ease;
}

.navbar .nav-link.active {
  color: var(--vg-accent-deep);
  font-weight: 700;
  background: rgba(239, 124, 33, 0.08);
}

.navbar .nav-link:hover:not(.nav-cta),
.navbar .nav-link:focus:not(.nav-cta) {
  color: var(--vg-accent-deep);
  background: rgba(239, 124, 33, 0.07);
}

.nav-cta {
  background: var(--vg-accent) !important;
  color: #fff !important;
  border-radius: 999px !important;
  padding-inline: 1.1rem !important;
  font-weight: 700 !important;
}

.nav-cta:hover, .nav-cta:focus {
  background: var(--vg-accent-deep) !important;
  color: #fff !important;
}

.navbar-toggler {
  border: 1px solid rgba(16, 35, 61, 0.12) !important;
  border-radius: 8px !important;
  padding: 0.4rem 0.6rem !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2816%2C35%2C61%2C0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.dropdown-menu {
  border: 1px solid rgba(16, 35, 61, 0.08);
  border-radius: var(--vg-radius-sm);
  box-shadow: 0 1rem 2.5rem rgba(7, 18, 31, 0.1);
  padding: 0.5rem;
  min-width: 16rem;
}

.dropdown-item {
  border-radius: 0.75rem;
  padding: 0.65rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 500;
}

.dropdown-item .bi {
  color: var(--vg-accent);
  opacity: 0.9;
}

.dropdown-item .bi { color: var(--vg-accent); }

.dropdown-item.active,
.dropdown-item:active,
.dropdown-item:hover,
.dropdown-item:focus {
  background: rgba(239, 124, 33, 0.1);
  color: var(--vg-deep);
}

/* ─── Hero ─── */
.hero-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(239, 124, 33, 0.2), transparent 24rem),
    radial-gradient(circle at 88% 22%, rgba(255,255,255,0.06), transparent 20rem),
    linear-gradient(135deg, #07121f 0%, #10233d 52%, #163455 100%);
  color: #fff;
}

.hero-section::before {
  content: "";
  position: absolute;
  width: 22rem;
  height: 22rem;
  left: -6rem;
  bottom: -8rem;
  border-radius: 50%;
  background: rgba(239, 124, 33, 0.12);
  filter: blur(18px);
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  width: 26rem;
  height: 26rem;
  right: -6rem;
  top: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  padding-top: 4rem;
  padding-bottom: 4rem;
  min-height: 75vh;
}

@media (min-width: 992px) {
  .hero-inner { min-height: 80vh; }
}

.hero-label,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-label {
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
}

.hero-label::before,
.section-label::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--vg-accent);
  flex-shrink: 0;
}

.section-label { color: var(--vg-accent-deep); }

.hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 0.93;
  letter-spacing: -0.04em;
}

.page-hero-title {
  font-size: clamp(2.6rem, 6.5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-copy,
.page-copy,
.section-copy { color: var(--vg-ink-soft); }

.hero-copy {
  color: rgba(255, 255, 255, 0.76);
  max-width: 44rem;
  font-size: 1.06rem;
  line-height: 1.7;
}

/* Hero visual */
.hero-visual-wrap { position: relative; }

.hero-banner-card {
  border-radius: var(--vg-radius);
  overflow: hidden;
  box-shadow: 0 2rem 4.5rem rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255,255,255,0.1);
}

.hero-banner-card img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  max-height: 428px;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, #10233d, #1c4a7a);
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--vg-radius-sm);
  padding: 1.1rem 0.75rem;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease;
}

.hero-badge:hover { background: rgba(255,255,255,0.13); }

.hero-badge-val {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

.hero-badge-lbl {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.62);
  margin-top: 0.4rem;
  line-height: 1.3;
  font-weight: 600;
}

/* ─── Buttons ─── */
.btn-brand {
  background: var(--vg-accent);
  border-color: var(--vg-accent);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
}

.btn-brand:hover,
.btn-brand:focus {
  background: var(--vg-accent-deep);
  border-color: var(--vg-accent-deep);
  color: #fff;
}

.btn-outline-brand {
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

/* ─── Stats Strip ─── */
.stats-strip {
  background: var(--vg-surface-strong);
  border-top: 1px solid var(--vg-line);
  border-bottom: 1px solid var(--vg-line);
}

.stat-strip-item { position: relative; }

.stat-strip-item + .stat-strip-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--vg-line);
}

.stat-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--vg-accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--vg-ink-soft);
  font-weight: 600;
  line-height: 1.3;
}

/* ─── Section alternate ─── */
.bg-section-alt {
  background: linear-gradient(180deg, rgba(247, 241, 232, 0.5) 0%, var(--vg-surface) 100%);
  border-top: 1px solid rgba(16, 35, 61, 0.04);
  border-bottom: 1px solid rgba(16, 35, 61, 0.04);
}

/* ─── Cards (shared) ─── */
.glass-card,
.content-card,
.doc-card,
.policy-card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(16, 35, 61, 0.08);
  border-radius: var(--vg-radius);
  box-shadow: 0 1rem 2.5rem rgba(7, 18, 31, 0.05);
}

.glass-card { background: rgba(255, 255, 255, 0.68); }

.content-card-dark {
  background: linear-gradient(135deg, rgba(16, 35, 61, 0.98), rgba(7, 18, 31, 0.98));
  color: #fff;
  border-radius: 1.75rem;
  box-shadow: var(--vg-shadow);
}

.content-card-dark .page-copy,
.content-card-dark .section-copy,
.content-card-dark .list-muted,
.content-card-dark .small-meta { color: rgba(255, 255, 255, 0.76); }

/* ─── Service cards ─── */
.service-card {
  background: #fff;
  border: 1px solid rgba(16, 35, 61, 0.07);
  border-radius: var(--vg-radius);
  box-shadow: 0 0.75rem 2rem rgba(7, 18, 31, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1.75rem 3.5rem rgba(7, 18, 31, 0.1);
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--vg-accent), var(--vg-accent-deep));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.45rem;
  box-shadow: 0 0.6rem 1.5rem rgba(239, 124, 33, 0.3);
}

/* ─── Why cards ─── */
.why-card {
  background: #fff;
  border: 1px solid rgba(16, 35, 61, 0.07);
  border-radius: var(--vg-radius);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 0.5rem 1.5rem rgba(7, 18, 31, 0.04);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1.25rem 2.75rem rgba(7, 18, 31, 0.09);
}

.why-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(239, 124, 33, 0.1);
  border: 1px solid rgba(239, 124, 33, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--vg-accent);
  font-size: 1.35rem;
  margin: 0 auto;
}

/* ─── Platform cards ─── */
.platform-card-modern {
  background: #fff;
  border: 1px solid rgba(16, 35, 61, 0.07);
  border-radius: var(--vg-radius-sm);
  box-shadow: 0 0.5rem 1.5rem rgba(7, 18, 31, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.platform-card-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 1.25rem 2.75rem rgba(7, 18, 31, 0.09);
}

.platform-icon {
  width: 3.25rem;
  height: 3.25rem;
  background: linear-gradient(135deg, var(--vg-ink), #1c4a7a);
  border-radius: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--vg-accent);
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* Platform showcase images */
.showcase-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.showcase-img {
  border-radius: var(--vg-radius-sm);
  overflow: hidden;
  box-shadow: 0 0.5rem 1.5rem rgba(7, 18, 31, 0.08);
}

.showcase-img img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.showcase-img:hover img { transform: scale(1.06); }

/* ─── Investor cards ─── */
.investor-card {
  background: #fff;
  border: 1px solid rgba(16, 35, 61, 0.07);
  border-radius: var(--vg-radius);
  box-shadow: 0 0.75rem 2rem rgba(7, 18, 31, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.investor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1.75rem 3.5rem rgba(7, 18, 31, 0.1);
}

.investor-card-icon {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 1.1rem;
  background: linear-gradient(135deg, rgba(239,124,33,0.14), rgba(239,124,33,0.05));
  border: 1px solid rgba(239, 124, 33, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--vg-accent-deep);
  font-size: 1.5rem;
}

/* ─── CTA Band ─── */
.cta-band {
  background: linear-gradient(135deg, #07121f 0%, #10233d 60%, #163455 100%);
  border-radius: 2rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cta-band::before {
  width: 30rem;
  height: 30rem;
  right: -10rem;
  top: -10rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-band::after {
  width: 20rem;
  height: 20rem;
  right: -4rem;
  top: -4rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-contact-link {
  text-decoration: none;
  color: #fff;
  padding: 0.9rem 1.1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease, transform 0.2s ease;
}

.cta-contact-link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transform: translateX(4px);
}

.cta-contact-icon {
  width: 2.8rem;
  height: 2.8rem;
  background: var(--vg-accent);
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  color: #fff;
}

.cta-contact-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.2rem;
}

.cta-contact-val {
  font-weight: 700;
  font-size: 0.95rem;
}

/* ─── Timeline ─── */
.timeline-item {
  position: relative;
  padding-left: 1rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--vg-accent);
}

.timeline-year {
  color: var(--vg-accent);
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1;
}

/* ─── Pillar card ─── */
.pillar-card {
  border-top: 2px solid rgba(239, 124, 33, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pillar-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 1.25rem 2.75rem rgba(7, 18, 31, 0.08);
}

/* ─── Platform row (old) ─── */
.platform-row + .platform-row,
.contact-row + .contact-row { border-top: 1px solid var(--vg-line); }

.arrow-link {
  color: var(--vg-accent-deep);
  font-weight: 800;
  text-decoration: none;
  font-size: 0.9rem;
}

.arrow-link:hover { color: var(--vg-accent); }

/* ─── Page hero (inner pages) ─── */
.page-hero {
  background:
    radial-gradient(circle at 90% 50%, rgba(239, 124, 33, 0.12), transparent 22rem),
    radial-gradient(circle at 10% 80%, rgba(16, 35, 61, 0.06), transparent 18rem),
    linear-gradient(135deg, #10233d 0%, #163455 55%, #1c4a7a 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -4rem;
  right: -5rem;
  width: 24rem;
  height: 24rem;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  bottom: -2rem;
  left: -4rem;
  width: 16rem;
  height: 16rem;
  background: rgba(239,124,33,0.08);
  border-radius: 50%;
  filter: blur(24px);
  pointer-events: none;
}

/* Bottom accent divider line on page-hero */
.page-hero .container { position: relative; z-index: 1; }

.page-hero .page-hero-title,
.page-hero h1,
.page-hero h2 { color: #fff; }

.page-hero .section-copy,
.page-hero .page-copy { color: rgba(255, 255, 255, 0.72); }

.breadcrumb-vg {
  font-size: 0.83rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.55);
}

.breadcrumb-vg a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.18s ease;
}

.breadcrumb-vg a:hover { color: var(--vg-accent); }

/* ─── Doc cards ─── */
.doc-card { transition: transform 0.22s ease, box-shadow 0.22s ease; }

.doc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 1.5rem 2.75rem rgba(7, 18, 31, 0.08);
}

.doc-year { font-size: 1.05rem; font-weight: 800; }

.doc-type {
  color: var(--vg-accent-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.disclosure-note {
  background: rgba(239, 124, 33, 0.07);
  border: 1px solid rgba(239, 124, 33, 0.15);
  border-radius: var(--vg-radius-sm);
}

/* ─── Governance pages ─── */
.governance-summary-card,
.profile-card,
.committee-card,
.governance-link-card {
  position: relative;
  overflow: hidden;
}

.profile-card,
.committee-card,
.governance-link-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(16, 35, 61, 0.08);
  border-radius: var(--vg-radius);
  box-shadow: 0 1rem 2.75rem rgba(7, 18, 31, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.profile-card::before,
.committee-card::before,
.governance-link-card::before,
.governance-summary-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--vg-accent), var(--vg-accent-deep));
}

.profile-card:hover,
.committee-card:hover,
.governance-link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1.5rem 3rem rgba(7, 18, 31, 0.1);
}

.profile-role {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(239, 124, 33, 0.1);
  color: var(--vg-accent-deep);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(16, 35, 61, 0.05);
  color: var(--vg-ink-soft);
  font-size: 0.8rem;
  font-weight: 700;
}

.meta-chip .bi {
  color: var(--vg-accent);
}

.governance-table-wrap {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 35, 61, 0.08);
  border-radius: var(--vg-radius);
  box-shadow: 0 1rem 2.75rem rgba(7, 18, 31, 0.05);
  overflow: hidden;
}

.governance-table {
  margin-bottom: 0;
}

.governance-table thead th {
  background: var(--vg-ink);
  color: #fff;
  border: 0;
  padding: 1rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.governance-table tbody td {
  padding: 1rem;
  border-color: var(--vg-line);
  color: var(--vg-ink-soft);
  vertical-align: top;
}

.governance-table tbody tr:last-child td {
  border-bottom: 0;
}

.governance-table strong {
  color: var(--vg-ink);
}

.committee-member + .committee-member {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--vg-line);
}

.committee-member-role {
  color: var(--vg-accent-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.committee-member-name {
  color: var(--vg-ink);
  font-size: 1.08rem;
  font-weight: 800;
}

.committee-member-designation {
  color: var(--vg-ink-soft);
  line-height: 1.6;
}

.governance-contact-link {
  color: var(--vg-accent-deep);
  font-weight: 700;
  text-decoration: none;
}

.governance-contact-link:hover {
  color: var(--vg-accent);
}

.governance-link-card {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

.governance-link-card:hover {
  color: inherit;
}

.link-arrow {
  color: var(--vg-accent-deep);
  font-size: 0.9rem;
  font-weight: 800;
}

.governance-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.governance-stat-item {
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.governance-stat-item strong {
  display: block;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.governance-stat-item span {
  display: block;
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.4;
}

@media (max-width: 767.98px) {
  .governance-table thead th,
  .governance-table tbody td {
    padding: 0.85rem 0.8rem;
  }

  .governance-stat-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Footer ─── */
.footer-shell {
  background: var(--vg-deep);
  color: #fff;
}

.footer-shell a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-shell a:hover { color: #fff; }

.footer-shell .small-meta { color: rgba(255, 255, 255, 0.5); }

.footer-brand-tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.footer-reg {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  line-height: 1.6;
}

.social-links { display: flex; gap: 0.5rem; margin-top: 1rem; }

.social-link {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.6rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.92rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
  background: var(--vg-accent);
  border-color: var(--vg-accent);
  color: #fff;
  transform: translateY(-2px);
}

/* ─── Side CTA (right-side, vertically centred) ─── */
.side-cta {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1030;
  align-items: flex-end;
}

.side-cta-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 0.6rem 0 0 0.6rem !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: -3px 3px 16px rgba(201, 93, 9, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, width 0.2s ease;
  padding: 0 !important;
  border-right: none !important;
}

.side-cta-btn:hover {
  transform: translateX(-4px);
  width: 3.5rem;
  box-shadow: -5px 5px 22px rgba(201, 93, 9, 0.38);
}

/* ─── Back to top ─── */
.btn-back-top {
  right: 1.25rem;
  bottom: 1.5rem;
  z-index: 1030;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--vg-ink);
  border-color: var(--vg-ink);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 0.5rem 1.5rem rgba(7, 18, 31, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.2s ease, background 0.2s ease;
}

.btn-back-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.btn-back-top:hover {
  background: var(--vg-accent);
  border-color: var(--vg-accent);
  color: #fff;
  transform: translateY(-3px);
}

@media (max-width: 767.98px) {
  .side-cta-btn { width: 2.75rem; height: 2.75rem; font-size: 1rem; }
  .btn-back-top { right: 1rem; bottom: 1rem; width: 2.75rem; height: 2.75rem; font-size: 1rem; }
}

/* ─── Reveal animation ─── */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal]:nth-child(2) { transition-delay: 0.1s; }
[data-reveal]:nth-child(3) { transition-delay: 0.2s; }
[data-reveal]:nth-child(4) { transition-delay: 0.3s; }

/* ─── Responsive ─── */
@media (max-width: 991.98px) {
  .navbar .nav-link { border-radius: 0.9rem; }
  .nav-cta { display: inline-flex; }
  .dropdown-menu { box-shadow: none; border-radius: 1rem; min-width: auto; }
}

@media (max-width: 767.98px) {
  .site-notice { font-size: 0.66rem; letter-spacing: 0.07em; }

  .brand-logo-shell { padding: 4px 10px 4px 6px; }
  .navbar-brand img { height: 44px; min-width: 200px; }

  .stat-strip-item:nth-child(2n)::before { display: none; }

  .hero-badges { grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
  .hero-badge-val { font-size: 1.4rem; }

  .showcase-strip { grid-template-columns: 1fr 1fr; }
  .showcase-img img { height: 90px; }

  .cta-band { border-radius: 1.25rem; }

  .hero-inner { min-height: auto; padding-top: 3rem; padding-bottom: 3rem; }
}

/* ═══════════════════════════════════════════════════
   NEWS & EVENTS
   ═══════════════════════════════════════════════════ */

.news-card {
  text-decoration: none;
  background: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(16, 35, 61, 0.08);
  box-shadow: 0 1rem 2.5rem rgba(7, 18, 31, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1.4rem 3rem rgba(7, 18, 31, 0.13);
  border-color: rgba(201, 93, 9, 0.18);
}

.news-card-media {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(16, 35, 61, 0.1), rgba(201, 93, 9, 0.12));
}

.news-card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.news-card-body {
  padding: 1.35rem 1.35rem 1.5rem;
}

.news-card-date {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--vg-accent);
}

.news-card-title {
  color: var(--vg-ink);
  line-height: 1.3;
}

.news-detail-banner {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 1.5rem 3.5rem rgba(7, 18, 31, 0.14);
}

.news-detail-banner-image {
  width: 100%;
  min-height: 320px;
  max-height: 580px;
  object-fit: cover;
  display: block;
}

.news-detail-content {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--vg-ink-soft);
  white-space: normal;
}

.news-detail-content > *:first-child {
  margin-top: 0;
}

.news-detail-content > *:last-child {
  margin-bottom: 0;
}

.news-detail-content h2,
.news-detail-content h3,
.news-detail-content h4 {
  color: var(--vg-ink);
  margin-top: 1.5rem;
  margin-bottom: 0.85rem;
}

.news-detail-content p,
.news-detail-content ul,
.news-detail-content ol,
.news-detail-content blockquote {
  margin-bottom: 1rem;
}

.news-detail-content ul,
.news-detail-content ol {
  padding-left: 1.25rem;
}

.news-detail-content a {
  color: var(--vg-accent-deep);
  text-decoration: underline;
}

.news-detail-content blockquote {
  margin-left: 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid rgba(201, 93, 9, 0.22);
  background: rgba(239, 124, 33, 0.06);
  border-radius: 0.75rem;
}

/* ═══════════════════════════════════════════════════
   PDF VIEWER MODAL
   ═══════════════════════════════════════════════════ */

.pdf-modal-content {
  border-radius: 1.25rem !important;
  box-shadow: 0 2rem 6rem rgba(7, 18, 31, 0.35);
}

.pdf-modal-header {
  background: linear-gradient(135deg, #07121f 0%, #10233d 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pdf-modal-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.65rem;
  background: var(--vg-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.pdf-modal-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pdf-modal-subtitle {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.pdf-modal-body {
  position: relative;
  background: #e8e8e8;
  min-height: 80vh;
}

.pdf-loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  z-index: 2;
}

.pdf-frame {
  display: block;
  width: 100%;
  height: 82vh;
  border: 0;
  position: relative;
  z-index: 1;
}

/* Doc card improvements */
.doc-card, .policy-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.doc-card:hover, .policy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1.5rem 3rem rgba(7, 18, 31, 0.1);
}

.doc-card::before, .policy-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--vg-accent), var(--vg-accent-deep));
  border-radius: 2px 2px 0 0;
}

.btn-view-pdf {
  background: var(--vg-ink);
  border-color: var(--vg-ink);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-view-pdf:hover, .btn-view-pdf:focus {
  background: var(--vg-accent-deep);
  border-color: var(--vg-accent-deep);
  color: #fff;
}

@media (max-width: 767.98px) {
  .pdf-frame { height: 70vh; }
  .pdf-modal-body { min-height: 70vh; }
  .pdf-modal-header .btn { font-size: 0.78rem; padding: 0.3rem 0.7rem; }
}

/* ═══════════════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════════════ */

.contact-form-card {
  background: #fff;
  border: 1px solid rgba(16, 35, 61, 0.07);
  border-radius: 1.75rem;
  box-shadow: 0 1rem 3rem rgba(7, 18, 31, 0.06);
}

/* Labels */
.cf-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--vg-ink);
  margin-bottom: 0.45rem;
  letter-spacing: 0.01em;
}

.cf-optional {
  font-weight: 500;
  color: var(--vg-ink-soft);
  font-size: 0.78rem;
}

/* Inputs */
.cf-input {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-family: "Manrope", sans-serif;
  color: var(--vg-ink);
  background: #fafbfc;
  border: 1.5px solid rgba(16, 35, 61, 0.12);
  border-radius: 0.85rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.cf-input::placeholder { color: #b0bbc8; }

.cf-input:focus {
  border-color: var(--vg-accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(239, 124, 33, 0.12);
}

.cf-input.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.cf-input.is-valid {
  border-color: #198754;
}

/* Select */
.cf-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2351657f' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 14px;
  padding-right: 2.5rem;
  cursor: pointer;
}

/* Textarea */
.cf-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

/* Char counter */
.cf-char-count {
  font-size: 0.75rem;
  color: var(--vg-ink-soft);
  text-align: right;
  flex-shrink: 0;
  margin-left: auto;
}

/* Error messages */
.cf-error {
  font-size: 0.78rem;
  color: #dc3545;
  font-weight: 600;
  margin-top: 0.3rem;
  min-height: 1.1rem;
}

.cf-help {
  font-size: 0.76rem;
  color: var(--vg-ink-soft);
  margin-top: 0.55rem;
}

/* .turnstile-shell {
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1.5px solid rgba(16, 35, 61, 0.12);
  border-radius: 0.85rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.turnstile-shell:focus-within {
  border-color: var(--vg-accent);
  box-shadow: 0 0 0 3px rgba(239, 124, 33, 0.12);
}

.turnstile-shell.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
} */

#cfTurnstile {
  min-height: 75px;
}

.contact-map-embed {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(16, 35, 61, 0.08);
  box-shadow: 0 0.75rem 2rem rgba(7, 18, 31, 0.06);
}

.contact-map-embed iframe {
  display: block;
  width: 100%;
  min-height: 260px;
}

/* Submit button */
.cf-submit-btn {
  min-width: 180px;
  font-size: 0.92rem;
  font-weight: 800;
}

/* Alert box */
.contact-alert {
  padding: 1rem 1.25rem;
  border-radius: 0.9rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1.5px solid;
}

.contact-alert.alert-success {
  background: rgba(25, 135, 84, 0.07);
  border-color: rgba(25, 135, 84, 0.25);
  color: #0f5132;
}

.contact-alert.alert-error {
  background: rgba(220, 53, 69, 0.07);
  border-color: rgba(220, 53, 69, 0.22);
  color: #842029;
}

/* ═══════════════════════════════════════════════════
   LEGAL PAGES
   ═══════════════════════════════════════════════════ */

.legal-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 35, 61, 0.08);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--vg-ink-soft);
}

.legal-section-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(16, 35, 61, 0.08);
  border-radius: var(--vg-radius);
  box-shadow: 0 1rem 2.75rem rgba(7, 18, 31, 0.05);
}

.legal-section-card h2,
.legal-section-card h3 {
  color: var(--vg-ink);
}

.legal-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--vg-ink-soft);
}

.legal-list li + li {
  margin-top: 0.7rem;
}

.legal-note {
  background: rgba(239, 124, 33, 0.07);
  border: 1px solid rgba(239, 124, 33, 0.15);
  border-radius: var(--vg-radius-sm);
}
