/* ============================================================
   MPW HOLDINGS — MAIN STYLESHEET v4.0
   Fidelis Agency — 2026
   KBC-inspired palette — Lighter blues from logo, warmer golds
   ============================================================ */

:root {
  /* ── New palette: lighter versions of logo colors ── */
  --blue:       #2563A8;  /* Primary blue — lighter than logo #0C549D */
  --blue-dark:  #1A4B7C;  /* Dark blue for footers/sections */
  --blue-deep:  #0F3A5E;  /* Deepest blue for hero overlays */
  --gold:       #C9A355;  /* Warmer gold — lighter than logo #BB9045 */
  --gold-light: #D4B46A;  /* Light gold for accents */

  --light:      #FAFAF8;
  --alt:        #F3F1EE;
  --text:       #2C2C2C;
  --text-muted: #6B7280;
  --white:      #FFFFFF;
  --border:     rgba(0,0,0,0.08);
  --border-light: #e5e2dd;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --max-width: 1200px;
  --transition: 0.3s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans); color: var(--text);
  background: var(--light); line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
address { font-style: normal; }

/* ── Container ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
@media (min-width: 1024px) { .container { padding: 0 32px; } }


/* ============================================================
   NAVBAR — White bg, logo image, pill CTA in blue
   ============================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
#navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.06); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-width); margin: 0 auto;
  padding: 16px 24px;
}
@media (min-width: 1024px) { .nav-inner { padding: 16px 32px; } }

.nav-logo { display: flex; align-items: center; padding: 4px; }
.nav-logo-img { height: 56px; width: auto; }

.nav-links { display: none; align-items: center; gap: 32px; }
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-links a {
  font-family: var(--font-sans); font-size: 13px; font-weight: 500;
  color: var(--blue-dark); transition: color var(--transition);
  position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  height: 2px; width: 0; background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:not(.nav-cta):hover { color: var(--blue); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  background: var(--blue); color: var(--white) !important;
  padding: 10px 28px; border-radius: 9999px;
  font-size: 13px !important; font-weight: 600;
  transition: all var(--transition);
}
.nav-cta:hover { background: var(--blue-dark); }
.nav-cta::after { display: none !important; }

.nav-hamburger {
  display: flex; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 8px;
}
@media (min-width: 1024px) { .nav-hamburger { display: none; } }
.nav-hamburger span { width: 24px; height: 1.5px; background: var(--blue-dark); transition: var(--transition); display: block; }

/* Mobile menu */
.nav-links.open {
  display: flex !important; flex-direction: column;
  position: fixed; top: 89px; left: 0; right: 0;
  background: var(--white); padding: 32px 24px; gap: 20px;
  border-bottom: 1px solid var(--border); z-index: 999;
}
.nav-links.open .nav-cta {
  margin-top: 16px; text-align: center;
  padding: 12px 28px; display: block;
}


/* ============================================================
   HERO — Centered, warmer overlay, pill buttons
   ============================================================ */
#hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding-top: 89px;
  background-image: url('../images/hero.jpg');
  background-size: cover; background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15,58,94,0.70) 0%,
    rgba(26,75,124,0.55) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 800px; padding: 80px 24px;
  animation: fadeUp 1s ease both;
}
.hero-label {
  font-family: var(--font-sans); font-size: 13px; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--gold-light);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 500; color: var(--white);
  line-height: 1.05; margin-top: 24px;
  letter-spacing: -0.02em;
}
.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400; color: var(--white);
  margin-top: 16px; line-height: 1.3;
}
.hero-sub {
  font-size: 15px; font-weight: 400;
  color: rgba(255,255,255,0.9); margin-top: 16px;
}
.hero-description {
  font-size: 16px; color: rgba(255,255,255,0.80);
  font-weight: 400; margin-top: 12px;
  max-width: 640px; margin-left: auto; margin-right: auto;
  line-height: 1.7;
}
.hero-actions {
  display: flex; gap: 16px; justify-content: center;
  flex-wrap: wrap; margin-top: 44px;
}
.btn-pill-white {
  background: var(--white); color: var(--blue-dark);
  padding: 16px 44px; border-radius: 9999px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 2px solid var(--white);
  transition: all var(--transition);
}
.btn-pill-white:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.2); transform: translateY(-1px); }
.btn-pill-outline {
  color: var(--white);
  padding: 16px 44px; border-radius: 9999px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.btn-pill-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.hero-selective {
  margin-top: 24px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-light);
}
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0.7; color: var(--white);
}
.hero-scroll span {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
}


/* ============================================================
   SECTION COMMONS — Bolder headings
   ============================================================ */
.section-header { text-align: center; margin-bottom: 80px; }
.section-label {
  font-family: var(--font-sans); font-size: 13px; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 20px;
}
.section-title-centered {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500; color: var(--blue-dark);
  line-height: 1.15; letter-spacing: -0.01em;
}
.title-underline {
  position: relative; display: inline-block;
}
.title-underline::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; width: 100%; height: 3px;
  background: var(--gold);
  opacity: 0.7;
}
.section-subtitle {
  font-size: 16px; color: var(--text-muted);
  line-height: 1.7; max-width: 640px;
  margin: 24px auto 0;
}


/* ============================================================
   ABOUT — Centered, decorative circle, bento cards
   ============================================================ */
#about {
  position: relative; overflow: hidden;
  padding: 140px 0; background: var(--light);
}
.about-deco-circle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 900px; border-radius: 50%;
  background: rgba(243,241,238,0.6);
  pointer-events: none;
}
.about-inner { position: relative; z-index: 1; }
.about-header { text-align: center; margin-bottom: 56px; }
.about-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500; color: var(--blue-dark);
  line-height: 1.15;
}
.about-statements {
  max-width: 640px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 16px;
}
.statement {
  display: flex; align-items: flex-start; gap: 16px;
}
.statement-dash {
  display: block; width: 24px; height: 2px;
  background: var(--gold);
  flex-shrink: 0; margin-top: 12px;
  opacity: 0.8;
}
.statement p {
  font-size: 15px; color: rgba(44,44,44,0.75); line-height: 1.7;
}
.about-mandate {
  font-family: var(--font-sans); font-size: 14px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue-dark);
  margin-top: 32px;
}

/* Bento Cards */
.bento-grid {
  display: grid; gap: 24px; grid-template-columns: 1fr 1fr;
  margin-top: 96px;
}
.bento-card { padding: 40px; }
@media (min-width: 1024px) { .bento-card { padding: 56px; } }
.bento-mission {
  background: var(--blue-dark);
  border-radius: 24px 24px 0 24px;
}
.bento-vision {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 0 24px 24px 24px;
}
.bento-label {
  font-family: var(--font-sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--gold);
}
.bento-divider {
  width: 56px; height: 2px; background: var(--gold);
  margin-top: 16px;
}
.bento-text {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400; line-height: 1.5;
  margin-top: 32px;
}
.bento-mission .bento-text { color: rgba(255,255,255,0.9); }
.bento-vision .bento-text { color: rgba(44,44,44,0.8); }

/* Who We Serve */
.who-we-serve {
  text-align: center; margin-top: 112px;
}
.wws-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500; color: var(--blue-dark);
}
.wws-desc {
  font-size: 15px; color: rgba(44,44,44,0.7);
  line-height: 1.7; max-width: 640px;
  margin: 24px auto 0;
}
.wws-pills {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 16px; margin-top: 48px;
}
.pill {
  border: 1px solid rgba(37,99,168,0.2);
  background: var(--white);
  padding: 12px 24px; border-radius: 9999px;
  font-size: 14px; font-weight: 600; color: var(--blue-dark);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: all var(--transition);
}
.pill:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }


/* ============================================================
   SCOPE OF ENGAGEMENT — Centered, rounded cards
   ============================================================ */
#sectors { padding: 140px 0; background: var(--light); }

.services-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
.service-card {
  border: 1px solid rgba(37,99,168,0.12);
  background: var(--white);
  border-radius: 16px; padding: 32px;
  transition: all var(--transition);
}
.service-card:hover { box-shadow: 0 4px 20px rgba(37,99,168,0.08); border-color: rgba(37,99,168,0.2); }
.service-card h3 {
  font-family: var(--font-sans); font-size: 16px;
  font-weight: 700; color: var(--blue-dark);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14px; color: var(--text-muted); line-height: 1.7;
}

/* Sectors */
.sectors-section {
  margin-top: 112px; text-align: center;
}
.sectors-heading {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500; color: var(--blue-dark);
}
.sectors-subtitle {
  font-size: 15px; color: var(--text-muted);
  line-height: 1.7; margin-top: 24px;
}
.sectors-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 56px;
}
.sector-tile {
  background: rgba(37,99,168,0.04);
  border: 1px solid rgba(37,99,168,0.12);
  border-radius: 12px; padding: 24px;
  font-size: 14px; font-weight: 600; color: var(--blue-dark);
  text-align: left; transition: all var(--transition);
}
.sector-tile:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }


/* ============================================================
   STRUCTURING FRAMEWORK — Centered, rounded cards
   ============================================================ */
#framework {
  position: relative; overflow: hidden;
  padding: 140px 0; background: var(--light);
}
.framework-deco-circle {
  position: absolute; right: -256px; top: 25%;
  width: 700px; height: 700px; border-radius: 50%;
  background: rgba(243,241,238,0.5);
  pointer-events: none;
}
.framework-inner { position: relative; z-index: 1; }

.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  border: 1px solid rgba(0,0,0,0.06);
  background: var(--white);
  border-radius: 16px; padding: 32px;
  position: relative; overflow: hidden;
  transition: all var(--transition);
}
.step-card:hover { box-shadow: 0 8px 32px rgba(37,99,168,0.10); }
.step-num {
  font-family: var(--font-serif); font-size: 48px;
  font-weight: 700; color: rgba(37,99,168,0.10);
  line-height: 1; margin-bottom: 8px;
}
.step-card h3 {
  font-size: 15px; font-weight: 700; color: var(--blue-dark);
  margin-bottom: 12px;
}
.step-card p {
  font-size: 14px; color: var(--text-muted); line-height: 1.7;
}

/* Core Institutional Principles box */
.core-principles-box {
  display: flex; justify-content: center;
  margin-top: 112px;
}
.core-principles-inner {
  width: 100%; max-width: 70%;
  background: var(--blue-dark);
  border-radius: 24px 24px 24px 0;
  padding: 40px;
}
.core-principles-label {
  font-family: var(--font-sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--gold);
}
.core-principles-list {
  display: flex; flex-direction: column; gap: 16px;
  margin-top: 24px;
}
.core-principle-item {
  display: flex; align-items: flex-start; gap: 12px;
}
.gold-dot {
  display: block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--gold);
  flex-shrink: 0; margin-top: 6px;
}
.core-principle-item span:last-child {
  font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.7;
}


/* ============================================================
   LEADERSHIP — Centered, rounded cards
   ============================================================ */
#leadership {
  position: relative; overflow: hidden;
  padding: 140px 0; background: var(--light);
}
.leadership-deco-circle {
  position: absolute; left: -192px; bottom: 0;
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(243,241,238,0.4);
  pointer-events: none;
}
.leadership-inner { position: relative; z-index: 1; }

.leadership-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.leadership-card {
  border: 1px solid rgba(0,0,0,0.06);
  background: var(--white);
  padding: 40px;
}
.leadership-card-left { border-radius: 24px 24px 0 24px; }
.leadership-card-right { border-radius: 0 24px 24px 24px; }

.leadership-group-title {
  font-family: var(--font-sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(26,75,124,0.6);
}
.team-members {
  display: flex; flex-direction: column; gap: 24px;
  margin-top: 32px;
}
.member {
  display: flex; align-items: center; gap: 16px;
}
.member-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(37,99,168,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--blue);
  flex-shrink: 0;
}
.member-name {
  font-size: 14px; font-weight: 600; color: var(--text);
}
.member-role {
  font-size: 12px; color: var(--text-muted); margin-top: 2px;
}


/* ============================================================
   GOVERNANCE & COMPLIANCE — Rounded cards with icons
   ============================================================ */
#governance {
  background: rgba(243,241,238,0.3);
  padding: 140px 0;
}
.gov-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.gov-card {
  background: var(--white);
  padding: 40px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.gov-card-left { border-radius: 24px 24px 0 24px; }
.gov-card-right { border-radius: 0 24px 24px 24px; }

.gov-icon {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid rgba(37,99,168,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
}
.gov-card-title {
  font-family: var(--font-serif); font-size: 20px;
  font-weight: 400; color: var(--blue-dark);
  margin-top: 24px;
}
.gov-card-title-bold { font-weight: 700; }
.gov-list {
  list-style: none; margin-top: 24px;
  display: flex; flex-direction: column; gap: 16px;
}
.gov-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: rgba(44,44,44,0.7); line-height: 1.7;
}
.compliance-items {
  display: flex; flex-direction: column; gap: 20px;
  margin-top: 24px;
}
.compliance-item h4 {
  font-size: 14px; font-weight: 700; color: var(--text);
  margin-bottom: 2px;
}
.compliance-item p {
  font-size: 14px; color: var(--text-muted); line-height: 1.6;
}
.gov-closing {
  text-align: center; margin-top: 64px;
  font-family: var(--font-sans); font-size: 13px;
  font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--blue-dark);
}


/* ============================================================
   CORE INSTITUTIONAL PRINCIPLES — 3 cols, gold border top
   ============================================================ */
#principles {
  padding: 140px 0; background: var(--light);
}
.principles-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.principle-col {
  border-top: 3px solid var(--gold);
  padding-top: 24px;
}
.principle-col h3 {
  font-family: var(--font-serif); font-size: 20px;
  font-weight: 500; color: var(--blue-dark);
  margin-bottom: 12px;
}
.principle-col p {
  font-size: 14px; color: rgba(44,44,44,0.7); line-height: 1.7;
}


/* ============================================================
   MANDATE QUALIFICATION — Blue-dark bg, centered
   ============================================================ */
#mandate {
  background: var(--blue-dark); padding: 80px 0;
}
.mandate-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.mandate-label { color: var(--gold); }
.mandate-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 500; color: var(--white);
  margin-top: 24px;
}
.mandate-text {
  font-size: 16px; color: rgba(255,255,255,0.8);
  line-height: 1.8; margin-top: 24px;
}


/* ============================================================
   DISCLAIMER
   ============================================================ */
#disclaimer { background: var(--light); padding: 60px 0; }
.disclaimer-text {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.8; font-style: italic;
  text-align: center; max-width: 720px;
  margin: 0 auto;
}


/* ============================================================
   CONTACT — White bg, centered, single-column form
   ============================================================ */
#contact {
  background: var(--white); padding: 140px 0;
}
.contact-form-container {
  max-width: 640px; margin: 0 auto;
}
.contact-form {
  display: flex; flex-direction: column; gap: 24px;
}
.form-group { display: flex; flex-direction: column; }
.form-group label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(44,44,44,0.7); margin-bottom: 8px;
}
.req { color: #e53e3e; }
.optional { color: var(--text-muted); font-weight: 400; text-transform: none; letter-spacing: 0; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--border-light);
  background: var(--white);
  font-family: var(--font-sans); font-size: 14px;
  color: var(--text); outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(37,99,168,0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group textarea { resize: none; min-height: 120px; }
.form-group select { appearance: auto; cursor: pointer; }

.form-submit {
  width: 100%; padding: 16px;
  background: var(--blue); color: var(--white);
  border: none; cursor: pointer;
  font-family: var(--font-sans); font-size: 13px;
  font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition);
  margin-top: 8px;
  border-radius: 4px;
}
.form-submit:hover {
  background: var(--blue-dark);
  box-shadow: 0 4px 16px rgba(37,99,168,0.25);
}
.form-note {
  text-align: center; font-size: 12px;
  color: var(--text-muted); margin-top: 8px;
}

/* Contact info row */
.contact-info-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 640px; margin: 64px auto 0;
  text-align: center;
}
.contact-info-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue); display: block;
  margin-bottom: 4px;
}
.contact-info-item address,
.contact-info-item a {
  font-size: 12px; color: var(--text-muted);
  line-height: 1.6;
}
.contact-info-item a:hover { color: var(--blue); }

/* Success state */
.form-success {
  display: none; text-align: center;
  max-width: 640px; margin: 0 auto;
  padding: 48px; border: 1px solid var(--border-light);
  border-radius: 16px;
}
.form-success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(37,99,168,0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; color: var(--blue);
}
.form-success h3 {
  font-family: var(--font-serif); font-size: 24px;
  font-weight: 700; color: var(--blue-dark);
}
.form-success p {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.7; margin-top: 16px;
}


/* ============================================================
   FOOTER — Blue-dark bg
   ============================================================ */
#footer {
  background: var(--blue-dark); padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px; margin-bottom: 64px;
}
.footer-logo { margin-bottom: 16px; display: flex; align-items: baseline; gap: 6px; }
.fw-serif {
  font-family: var(--font-serif); font-size: 24px;
  font-weight: 500; color: var(--white);
  letter-spacing: -0.01em;
}
.fw-label {
  font-family: var(--font-sans); font-size: 11px;
  font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
}
.footer-desc {
  font-size: 14px; color: rgba(255,255,255,0.5);
  line-height: 1.7; max-width: 360px; margin-bottom: 16px;
}
.footer-address {
  font-size: 14px; color: rgba(255,255,255,0.4);
  line-height: 1.7;
}
.footer-col h4 {
  font-family: var(--font-sans); font-size: 11px;
  font-weight: 600; letter-spacing: 0.10em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a,
.footer-col ul li span {
  font-size: 14px; color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-contact {
  display: flex; gap: 24px;
}
.footer-contact a {
  font-size: 12px; color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--white); }


/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .leadership-grid { grid-template-columns: 1fr; }
  .gov-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .core-principles-inner { max-width: 100%; }
  .leadership-card-left,
  .leadership-card-right { border-radius: 24px; }
  .gov-card-left,
  .gov-card-right { border-radius: 24px; }
  .contact-info-row { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  #about,
  #sectors,
  #framework,
  #leadership,
  #governance,
  #principles,
  #contact { padding: 80px 0; }
  #mandate { padding: 60px 0; }

  .section-header { margin-bottom: 48px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-mission { border-radius: 24px 24px 0 24px; }
  .bento-vision { border-radius: 0 24px 24px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .principles-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-contact { flex-direction: column; gap: 8px; align-items: center; }
  .who-we-serve { margin-top: 64px; }
  .core-principles-box { margin-top: 64px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-pill-white,
  .btn-pill-outline { width: 100%; max-width: 320px; text-align: center; }
  .nav-logo-img { height: 44px; }
}


/* ============================================================
   WORDPRESS ADMIN BAR OFFSET
   ============================================================ */
body.admin-bar #navbar { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar #navbar { top: 46px; }
}


/* ============================================================
   NAVBAR ADDITIONS — Divider, accent links, language switch
   ============================================================ */
.nav-divider {
  width: 1px; height: 20px;
  background: rgba(0,0,0,0.12);
}
.nav-link-accent {
  font-size: 12px !important; font-weight: 600 !important;
  color: var(--gold) !important;
  letter-spacing: 0.02em;
}
.nav-link-accent:hover { color: var(--blue) !important; }
.nav-link-accent::after { background: var(--gold) !important; }

.nav-lang {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid var(--blue);
  font-size: 11px !important; font-weight: 700 !important;
  color: var(--blue) !important;
  transition: all var(--transition);
}
.nav-lang:hover { background: var(--blue); color: var(--white) !important; }
.nav-lang::after { display: none !important; }


/* ============================================================
   PAGE TEMPLATES — Submit Project + Investor Enquiries
   ============================================================ */
.page-hero {
  padding: 140px 0 60px;
  background: var(--light);
  text-align: center;
}
.back-link {
  display: inline-block; font-size: 13px; font-weight: 500;
  color: var(--blue); margin-bottom: 32px;
  transition: color var(--transition);
}
.back-link:hover { color: var(--blue-dark); }
.page-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500; color: var(--blue-dark);
  line-height: 1.15; margin-top: 8px;
}
.page-intro {
  font-size: 16px; color: var(--text-muted);
  line-height: 1.7; max-width: 640px;
  margin: 24px auto 0;
}
.page-minimum {
  display: inline-block;
  margin-top: 24px; padding: 8px 24px;
  background: rgba(201,163,85,0.12);
  border: 1px solid rgba(201,163,85,0.3);
  border-radius: 9999px;
  font-size: 13px; font-weight: 700;
  color: var(--gold); letter-spacing: 0.04em;
}

.page-form-section {
  padding: 60px 0 140px;
  background: var(--white);
}

/* Form 2-column row */
.form-row-2 {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .form-row-2 { grid-template-columns: 1fr; }
}

/* Mobile navbar adjustments for more links */
@media (max-width: 1024px) {
  .nav-divider { display: none; }
  .nav-links.open .nav-link-accent { color: var(--gold) !important; }
  .nav-links.open .nav-lang {
    align-self: flex-start; margin-top: 8px;
  }
}
