/* ================================================================
   OCL AFRICA RESOURCES LIMITED — v3 Design System
   White-first · Manrope headings · Inter body · Font Awesome icons
   Colors: #f37017 (orange) · #007a3f (green) · #111 (text)
   ================================================================ */

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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #333;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 9999;
  background: var(--orange);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- TOKENS ---- */
:root {
  --orange:      #f37017;
  --orange-dark: #c85c0e;
  --orange-lt:   #fff3ea;
  --green:       #007a3f;
  --green-dark:  #005c2f;
  --green-lt:    #e8f5ee;
  --ink:         #0f1923;
  --ink-2:       #1c2b3a;
  --text:        #333333;
  --text-md:     #555555;
  --text-lt:     #888888;
  --border:      #e4e8ec;
  --border-lt:   #f0f3f6;
  --bg:          #ffffff;
  --bg-2:        #f7f9fb;
  --bg-3:        #eef1f5;
  --radius-sm:   4px;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.07);
  --shadow:      0 4px 20px rgba(0,0,0,0.09);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.14);
}

/* ================================================================
   TOPBAR
   ================================================================ */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  padding: 8px 48px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.topbar a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.topbar a:hover { color: var(--orange); }
.topbar i { color: var(--orange); margin-right: 6px; font-size: 11px; }
.topbar-spacer { margin-left: auto; }

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.navbar-inner {
  max-width: 1160px;
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-svg { height: 38px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: 0.5px;
}
.nav-logo-sub {
  font-size: 9px;
  font-weight: 500;
  color: var(--text-lt);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-company-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: 0.2px;
}
.nav-company-sub {
  font-size: 9px;
  font-weight: 500;
  color: var(--text-lt);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
}
@media (max-width: 560px) {
  .nav-company-name { font-size: 12px; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-links > li > a:hover { color: var(--orange); background: var(--orange-lt); }
.nav-links > li > a.active { color: var(--orange); }

.nav-links .nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 210px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.nav-links .has-dropdown:hover .nav-dropdown,
.nav-links .has-dropdown.open .nav-dropdown { display: block; }
.has-dropdown .nav-dropdown {
  top: calc(100% + 2px); /* was + 8px — reduce gap */
}
.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 8px; /* invisible bridge between trigger and dropdown */
}
.nav-links .nav-dropdown a.nav-sub-active { color: var(--orange); background: var(--orange-lt); }
.nav-links .nav-dropdown a {
  display: block;
  padding: 11px 18px;
  font-size: 13px;
  color: var(--text);
  border-bottom: 1px solid var(--border-lt);
  transition: background 0.15s, color 0.15s;
}
.nav-links .nav-dropdown a:last-child { border-bottom: none; }
.nav-links .nav-dropdown a:hover { background: var(--orange-lt); color: var(--orange); }

.navbar .nav-links .nav-cta-link {
  background: var(--orange);
  color: #fff;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: background 0.2s;
}
.navbar .nav-links .nav-cta-link:hover { background: var(--orange-dark); }

.nav-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 6px;
  font-size: 20px;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
}

.nav-close {
  display: none;
  position: absolute;
  top: 20px;
  right: 24px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--ink);
  background: var(--bg-2);
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.nav-contact-mobile { display: none; }

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-left {
  opacity: 0; transform: translateX(-28px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(28px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; transition: none; }
}

/* ================================================================
   LAYOUT
   ================================================================ */
.container { max-width: 1160px; margin: 0 auto; padding: 0 48px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-alt { background: var(--bg-2); }
.section-dark { background: var(--ink); color: #fff; }
.section-dark .section-label { color: var(--orange); }
.section-dark .section-label::before { background: var(--orange); }
.section-dark .section-title { color: #fff; }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}
.section-label.center { justify-content: center; }
.section-label.center::before { display: none; }
.section-label.green-label { color: var(--green); }
.section-label.green-label::before { background: var(--green); }

.section-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 50px);
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.section-title.center { text-align: center; }
.section-body {
  font-size: 15px;
  color: var(--text-md);
  line-height: 1.8;
  max-width: 560px;
}
.section-body.center { text-align: center; margin: 0 auto; }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: none;
  transition: all 0.2s;
  cursor: pointer;
}
.btn i { font-size: 12px; }
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(243,112,23,0.35); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-outline-dark { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-outline-dark:hover { background: var(--ink); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.8); }
.btn-outline-orange { background: transparent; color: var(--orange); border: 1.5px solid var(--orange); }
.btn-outline-orange:hover { background: var(--orange); color: #fff; }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--ink);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 56px 100px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ink);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}
.hero-eyebrow-pulse {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(243,112,23,0.5); }
  50% { box-shadow: 0 0 0 7px rgba(243,112,23,0); }
}
.hero-headline {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(44px, 5.5vw, 80px);
  color: #fff;
  line-height: 1.0;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  margin-top: 20px;
}
.hero-headline .hl-orange { color: var(--orange); }
.hero-headline .hl-green { color: #4db87a; }
.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 40px;
  font-weight: 300;
  
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
  font-family: 'Manrope', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.hero-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Hero image side */
.hero-image-col {
  position: relative;
  overflow: hidden;
}
.hero-image-col img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.65) saturate(0.85);
}
/* Diagonal cut between hero panels */
.hero-image-col::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: -48px;
  width: 96px;
  background: var(--ink);
  transform: skewX(-4deg);
  transform-origin: top left;
  z-index: 1;
}
/* Glass cards over hero image */
.hero-glass-cards {
  position: absolute;
  bottom: 40px;
  left: 60px;
  right: 28px;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hero-glass-card {
  background: rgba(15,25,35,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.hero-glass-card-icon {
  width: 32px; height: 32px;
  background: rgba(243,112,23,0.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
}
.hero-glass-card-icon i { color: var(--orange); font-size: 14px; }
.hero-glass-card h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.hero-glass-card p { font-size: 11px; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* ================================================================
   HERO SHOWCASE (homepage)
   ================================================================ */
.hero-showcase {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--ink);
  display: flex;
  flex-direction: column;
}
.hero-showcase-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55) saturate(0.9);
  transform: scale(1.02);
}
.hero-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10,15,20,0.85) 0%, rgba(10,15,20,0.55) 45%, rgba(10,15,20,0.35) 100%);
}
.hero-showcase-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding-top: 160px;
  padding-bottom: 64px;
  
}
.hero-showcase-content {
  max-width: 620px;
}
.hero-showcase-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 18px;
}
.hero-showcase-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.1;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 32px;
}
.hero-showcase-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-carousel {
  margin-top: auto;
  align-self: flex-end;
  width: 50%;
  box-sizing: border-box;
}
.hero-carousel-viewport {
  overflow: hidden;
  padding-left: 56px;
  -webkit-mask-image: linear-gradient(to right, transparent 0, rgba(0,0,0,1) 56px);
  mask-image: linear-gradient(to right, transparent 0, rgba(0,0,0,1) 56px);
}
.hero-carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-carousel-card {
  flex: 0 0 270px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(15,25,35,0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 18px;
}
.hero-carousel-card-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  color: #fff;
}
.hero-carousel-card-icon.orange-bg { background: var(--orange); }
.hero-carousel-card-icon.green-bg { background: var(--green); }
.hero-carousel-card-text h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.hero-carousel-card-text p {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.hero-carousel-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}
.hero-carousel-index, .hero-carousel-total {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
}
.hero-carousel-bar {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  overflow: hidden;
}
.hero-carousel-bar-fill {
  height: 100%;
  background: var(--orange);
  width: 25%;
  transition: width 0.4s ease;
}

@media (max-width: 820px) {
  .hero-showcase { min-height: auto; padding-bottom: 32px; }
  .hero-showcase-inner { padding-top: 120px; padding-bottom: 0; margin-top:170px;}
  .hero-showcase-content { max-width: 100%; }
  .hero-carousel { width: 100%; margin-top: 32px; align-self: stretch; box-sizing: border-box; }
  .hero-carousel-viewport { padding-left: 0; -webkit-mask-image: none; mask-image: none; }
  .hero-carousel-card { flex: 0 0 100%; }
}
@media (max-width: 560px) {
  .hero-showcase-inner { padding-top: 100px; 
  margin-top:120px;}
  .hero-showcase-cta-row .btn { width: 100%; justify-content: center; }
  .hero-carousel { margin-top: 24px; }
}

/* ================================================================
   BRAND STATEMENT (homepage)
   ================================================================ */
.brand-statement-section {
  background: var(--ink);
  padding: 80px 0 96px;
}
.brand-statement-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  line-height: 1.3;
  max-width: 1000px;
  margin-bottom: 64px;
}
.brand-statement-lead {
  font-size: clamp(28px, 3.4vw, 44px);
  color: #fff;
}
.brand-statement-trail {
  font-size: clamp(20px, 2.4vw, 30px);
  color: rgba(255,255,255,0.45);
}
/* ---- Pinned scroll: text sticks, images slide vertically ---- */
.av-pin-section {
  position: relative;
}
.av-pin-inner {
  position: sticky;
  top: 0;
  height: 100vh;
  max-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.av-pin-grid {
  display: grid;
  grid-template-columns: minmax(0, 420px) 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}
.av-image-viewport {
  position: relative;
  height: 70vh;
  max-height: 600px;
  overflow: hidden;
}
.av-image-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  will-change: transform;
}
.av-image-frame {
  height: 70vh;
  max-height: 600px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.av-image-frame img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.brand-statement-rows {
  border-top: 1px solid rgba(255,255,255,0.12);
  max-width: 760px;
  margin-left: auto;
}
.brand-statement-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.brand-statement-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
}
.brand-statement-copy {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}
.brand-statement-tagline {
  text-align: right;
  margin-top: 56px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
}

@media (max-width: 820px) {
  .brand-statement-row { grid-template-columns: 1fr; gap: 8px; }
  .brand-statement-rows { margin-left: 0; }
  .brand-statement-tagline { text-align: left; }

  /* Pinned scroll-jacking doesn't translate well to narrow screens, and the sliding
     images are desktop-only here: drop the pin/sticky and hide the image slider entirely,
     leaving just the static text. */
  .av-pin-section { height: auto !important; }
  .av-pin-inner { position: static; height: auto; overflow: visible; }
  .av-pin-grid { grid-template-columns: 1fr; gap: 28px; }
  .av-image-viewport { display: none; }
}
@media (max-width: 560px) {
  .brand-statement-section { padding: 56px 0 64px; }
  .brand-statement-text { margin-bottom: 40px; }
  .brand-statement-row-vision { display: none; }
}

/* ================================================================
   PAGE BANNER
   ================================================================ */
.page-banner {
  position: relative;
  background: var(--ink);
  padding: 88px 48px 72px;
  overflow: hidden;
}
.page-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}
.page-banner-inner {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
}
.page-banner-crumb {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.page-banner-crumb a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.page-banner-crumb a:hover { color: var(--orange); }
.page-banner-crumb i { font-size: 9px; }
.page-banner h1 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5.5vw, 68px);
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.5px;
}
.page-banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(243,112,23,0.4);
  padding: 5px 14px;
  border-radius: 20px;
}

/* ================================================================
   SKEWED SECTION DIVIDERS
   All skewed sections use clip-path for the diagonal cuts
   ================================================================ */
.section-skew-bottom {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 48px), 0 100%);
  padding-bottom: calc(96px + 48px);
}
.section-skew-top {
  clip-path: polygon(0 48px, 100% 0, 100% 100%, 0 100%);
  padding-top: calc(96px + 48px);
  margin-top: -48px;
}
.section-skew-both {
  clip-path: polygon(0 48px, 100% 0, 100% calc(100% - 48px), 0 100%);
  padding-top: calc(96px + 48px);
  padding-bottom: calc(96px + 48px);
  margin-top: -48px;
}

/* ================================================================
   SERVICE CARDS (white cards with border)
   ================================================================ */
.services-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  font-size: 22px;
}
.service-card-icon.orange-bg { background: var(--orange-lt); color: var(--orange); }
.service-card-icon.green-bg { background: var(--green-lt); color: var(--green); }
.service-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--text-md);
  line-height: 1.75;
  margin-bottom: 18px;
}
.service-card ul { display: flex; flex-direction: column; gap: 6px; margin-bottom: 22px; }
.service-card ul li {
  font-size: 13px;
  color: var(--text-md);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-card ul li i { color: var(--orange); font-size: 11px; }
.service-card ul li.green-dot i { color: var(--green); }
.service-card-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: gap 0.2s;
}
.service-card-link:hover { gap: 10px; }

/* ================================================================
   STICKY SCROLL SECTION
   Right image stays fixed, left content scrolls vertically
   ================================================================ */
.sticky-scroll-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: start;
  position: relative;
}
.sticky-scroll-left {
  padding-right: 64px;
}
.sticky-scroll-right {
  position: sticky;
  top: 88px;
  height: calc(100vh - 120px);
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.sticky-scroll-right img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.sticky-item {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.sticky-item:last-child { border-bottom: none; }
.sticky-item-num {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.sticky-item h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
}
.sticky-item p {
  font-size: 14px;
  color: var(--text-md);
  line-height: 1.8;
}
.sticky-item ul { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.sticky-item ul li {
  font-size: 14px;
  color: var(--text-md);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}
.sticky-item ul li i { color: var(--orange); font-size: 12px; margin-top: 3px; }

/* ================================================================
   GHANA MAP SECTION
   ================================================================ */
.ghana-map-section {
  position: relative;
  background: var(--ink);
  overflow: hidden;
}
.ghana-map-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: center;
}
.ghana-map-text .section-title { color: #fff; }
.ghana-map-text p { color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 28px; }
.ghana-location-list { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
.ghana-location-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.ghana-location-item i { color: var(--orange); font-size: 12px; }
.ghana-location-item .loc-name { color: #fff; font-weight: 600; }
.ghana-stat-row {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.ghana-stat-num {
  font-family: 'Manrope', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.ghana-stat-label { font-size: 11px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* Ghana SVG Map */
.ghana-svg-wrap {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.ghana-map-svg {
  width: 100%;
  max-width: 520px;
  height: auto;
}
.ghana-map-svg path {
  fill: rgba(0,122,63,0.18);
  stroke: rgba(0,122,63,0.5);
  stroke-width: 1.5;
}
.ghana-map-section .ghana-svg-wrap { flex: 1; }
.ghana-map-section .ghana-map-svg { max-width: 100%; }
/* Map dot markers
   viewBox is 1000x1000 (simplemaps Ghana region data); sizes below are scaled
   ~3.57x from the old 280-unit viewBox so rendered px size stays the same. */
.map-dot-group { cursor: default; }
.map-dot-outer {
  fill: none;
  stroke: var(--orange);
  stroke-width: 5;
  opacity: 0.4;
  animation: dot-ring 2.5s infinite;
}
.map-dot-outer.green-dot-outer { stroke: #4db87a; }
@keyframes dot-ring {
  0%,100% { r: 29; opacity: 0.4; }
  50% { r: 46; opacity: 0; }
}
.map-dot-inner { fill: var(--orange); }
.map-dot-inner.green-dot-inner { fill: #4db87a; }
.map-dot-label {
  font-family: 'Inter', sans-serif;
  font-size: 27.2px;
  font-weight: 500;
  fill: rgba(255,255,255,0.85);
  letter-spacing: 1px;
}
.map-legend-label {
  font-family: 'Inter', sans-serif;
  font-size: 30px;
  fill: rgba(255,255,255,0.55);
}
.map-attribution {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  fill: rgba(255,255,255,0.3);
}

/* ================================================================
   OPERATIONAL FOOTPRINT CARD (homepage only)
   ================================================================ */
.footprint-section { background: var(--bg-2); }
.footprint-card {
  position: relative;
  background: var(--ink-2);
  border-radius: 28px;
  padding: 56px 64px 40px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.footprint-card-top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 32px;
}
.footprint-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}
.footprint-subtitle {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.6;
  max-width: 260px;
}
.footprint-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  max-width: 280px;
  margin-top: 18px;
  
}
.footprint-map-wrap { display: flex; align-items: center; justify-content: center; }
.footprint-map-wrap .ghana-map-svg { max-width: 340px; }
.footprint-index {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 130px;
  justify-self: end;
}
.footprint-index-num { font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 1px; }
.footprint-index-line { flex: 1; width: 1px; background: rgba(255,255,255,0.2); margin: 10px 0; }
.footprint-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.footprint-stat-box {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 18px 20px;
}
.footprint-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.footprint-stat-value {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #fff;
}
.footprint-stat-value span {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-left: 4px;
}
@media (max-width: 860px) {
  .footprint-card { padding: 40px 28px 32px; }
  .footprint-card-top { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .footprint-subtitle { max-width: none; }
  .footprint-index { display: none; }
  .footprint-stats-row { grid-template-columns: 1fr; }
}

/* ================================================================
   OBLIQUE IMAGE + GLASS CARD SECTION (screenshot 4 treatment)
   ================================================================ */
.oblique-section {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.oblique-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}
.oblique-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(15,25,35,0.88) 0%, rgba(15,25,35,0.55) 55%, rgba(15,25,35,0.2) 100%);
}
.oblique-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
  width: 100%;
  padding: 80px 48px;
  max-width: 1160px;
  margin: 0 auto;
}
.oblique-heading {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 44px);
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.3px;
}
.oblique-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.87);
  line-height: 1.75;
  margin-top: 14px;
}
.oblique-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.oblique-card {
  background: rgba(15,25,35,0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 20px 18px;
  border-top: 2px solid transparent;
  transition: border-color 0.2s;
}
.oblique-card:hover { border-top-color: var(--orange); }
.oblique-card.green-top:hover { border-top-color: #4db87a; }
.oblique-card i {
  font-size: 18px;
  color: var(--orange);
  margin-bottom: 10px;
  display: block;
}
.oblique-card.green-top i { color: #4db87a; }
.oblique-card h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.oblique-card p { font-size: 12px; color: rgba(255,255,255,0.82); line-height: 1.6; }

/* ================================================================
   ABOUT SPLIT
   ================================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 680px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-img-badge {
  position: absolute;
  bottom: -22px; right: -22px;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--orange);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  border: 4px solid #fff;
  box-shadow: var(--shadow);
}
.about-img-badge-num {
  font-family: 'Manrope', sans-serif;
  font-size: 30px; font-weight: 800;
  color: #fff; line-height: 1;
}
.about-img-badge-text {
  font-size: 10px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 3px;
}
.about-body { margin-bottom: 8px; }
.about-body p {
  font-size: 15px;
  color: var(--text-md);
  line-height: 1.85;
  margin-bottom: 20px;
}
.about-body p:last-child { margin-bottom: 0; }
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 32px;
}
.about-pillar {
  background: var(--bg-2);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 16px;
}
.about-pillar.green-border { border-left-color: var(--green); }
.about-pillar h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}
.about-pillar p { font-size: 12px; color: var(--text-lt); line-height: 1.5; }

/* ================================================================
   MISSION / VISION
   ================================================================ */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mv-card {
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.mv-vision { background: var(--green); }
.mv-mission { background: var(--ink); }
.mv-card-num {
  position: absolute; top: 20px; right: 20px;
  width: 84px; height: 84px;
  pointer-events: none;
}
.mv-card-num img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.14;
}
.mv-card-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.55);
}
.mv-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 22px; font-weight: 800;
  color: #fff; margin-bottom: 16px; line-height: 1.25;
}
.mv-card p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.8; }

/* ================================================================
   TEAM CARDS
   ================================================================ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.team-ceo-wrap { display: flex; justify-content: center; margin-bottom: 44px; }
.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.team-card-img {
  width: 100%; height: 272px;
  object-fit: cover; object-position: top;
  background: var(--bg-3);
  display: block;
}
.team-card-placeholder {
  width: 100%; height: 272px;
  background: var(--bg-3);
  display: flex; align-items: center; justify-content: center;
  font-size: 56px; color: var(--text-lt);
}
.team-card-body { padding: 20px 22px 22px; border-top: 2px solid transparent; }
.team-card:hover .team-card-body { border-top-color: var(--orange); }
.team-card-name {
  font-family: 'Manrope', sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--ink); margin-bottom: 4px;
}
.team-card-role { font-size: 12px; color: var(--orange); font-weight: 600; line-height: 1.4; }
.team-ceo-card { width: 280px; }
.team-ceo-card .team-card-img,
.team-ceo-card .team-card-placeholder { height: 320px; }
.team-ceo-card .team-card-body { background: linear-gradient(160deg, var(--orange-lt) 0%, transparent 50%); border-top-color: var(--orange); }

/* ================================================================
   PROJECTS TABLE
   ================================================================ */
.proj-tabs {
  display: flex; gap: 0;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px;
  width: fit-content;
  margin-bottom: 36px;
}
.proj-tab-btn {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--text-md);
  padding: 9px 20px;
  border-radius: 6px;
  transition: all 0.2s;
}
.proj-tab-btn:hover { color: var(--ink); }
.proj-tab-btn.active { background: var(--orange); color: #fff; }
.proj-panel { display: none; }
.proj-panel.active { display: block; }
.proj-table {
  width: 100%; border-collapse: collapse;
}
.proj-table thead tr {
  background: var(--ink);
}
.proj-table th {
  padding: 14px 20px;
  text-align: left;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.proj-table td {
  padding: 15px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.proj-table tbody tr:hover td { background: var(--bg-2); }
.proj-table .sn-cell { font-size: 12px; color: var(--text-lt); width: 52px; font-weight: 600; }
.proj-table .desc-cell { color: var(--text); font-weight: 500; }
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
  padding: 4px 12px; border-radius: 20px;
}
.badge-ongoing {
  background: #fff3ea; color: var(--orange);
  border: 1px solid rgba(243,112,23,0.25);
}
.badge-ongoing::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange); border-radius: 50%;
  animation: pulse 2s infinite;
}
.badge-done {
  background: var(--green-lt); color: var(--green);
  border: 1px solid rgba(0,122,63,0.25);
}
.badge-done i { font-size: 10px; }
.proj-value {
  font-family: 'Manrope', sans-serif;
  font-size: 13px; font-weight: 700;
  color: var(--orange);
}

/* ================================================================
   PARTNERS & CLIENTS
   ================================================================ */
.partners-row {
  display: flex; gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.partner-cell {
  flex: 1; padding: 28px 20px;
  display: flex; align-items: center; justify-content: center;
  border-right: 1px solid var(--border);
  min-height: 88px;
  transition: background 0.2s;
}
.partner-cell:last-child { border-right: none; }
.partner-cell:hover { background: var(--orange-lt); }
.partner-name {
  font-family: 'Manrope', sans-serif;
  font-size: 13px; font-weight: 700;
  color: var(--text-md); text-align: center;
  line-height: 1.4;
  transition: color 0.2s;
}
.partner-cell:hover .partner-name { color: var(--orange); }
.partner-logo, .client-logo {
  max-height: 48px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: filter 0.25s, opacity 0.25s;
}
.partner-cell:hover .partner-logo, .client-cell:hover .client-logo {
  filter: none;
  opacity: 1;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.client-cell {
  padding: 18px 10px;
  display: flex; align-items: center; justify-content: center;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.client-cell:last-child { border-right: none; }
.client-cell:hover { background: var(--bg-2); }
/* JS clones the first 2 partner/client cells for the mobile infinite-loop carousel;
   keep them hidden everywhere except the mobile flex carousel, otherwise they show up
   as duplicated logos in the desktop grid/row. */
.carousel-clone { display: none; }
.client-name {
  font-size: 12px; font-weight: 600;
  color: var(--text-lt); text-align: center; line-height: 1.4;
  transition: color 0.2s;
}
.client-cell:hover .client-name { color: var(--ink); }

/* ================================================================
   CONTACT FORM
   ================================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px; align-items: start;
}
.contact-detail-row {
  display: flex; gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-icon {
  width: 42px; height: 42px;
  background: var(--orange-lt);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
  font-size: 16px;
}
.contact-icon.green { background: var(--green-lt); color: var(--green); }
.contact-detail-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 4px;
}
.contact-detail-value {
  font-size: 14px; color: var(--text-md); line-height: 1.65;
}
.contact-detail-value a { color: var(--text-md); }
.contact-detail-value a:hover { color: var(--orange); }
.contact-form-wrap {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  color: #fff;
}
.contact-form-wrap h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 24px; font-weight: 800;
  color: #fff; margin-bottom: 6px;
}
.contact-form-wrap .form-sub {
  font-size: 13px; color: rgba(255,255,255,0.5);
  margin-bottom: 28px; line-height: 1.6;
}
.form-group { margin-bottom: 14px; }
.form-label {
  display: block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 6px;
}
.form-req { color: var(--orange); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: #fff; outline: none;
  transition: border-color 0.2s;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--orange); }
.form-textarea { height: 120px; resize: vertical; }
.form-select option { background: var(--ink); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-feedback { display: none; margin-top: 12px; font-size: 13px; text-align: center; padding: 10px; border-radius: var(--radius-sm); }
.form-feedback.success { display: block; background: rgba(0,122,63,0.2); color: #4db87a; border: 1px solid rgba(0,122,63,0.3); }
.form-feedback.error { display: block; background: rgba(243,112,23,0.12); color: var(--orange); border: 1px solid rgba(243,112,23,0.2); }

/* ================================================================
   STATS STRIP
   ================================================================ */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-tile {
  background: #fff;
  padding: 32px 28px;
  text-align: center;
  transition: background 0.2s;
}
.stat-tile:hover { background: var(--orange-lt); }
.stat-num {
  font-family: 'Manrope', sans-serif;
  font-size: 38px; font-weight: 800;
  color: var(--orange); line-height: 1;
}
.stat-label { font-size: 12px; color: var(--text-lt); margin-top: 8px; letter-spacing: 0.5px; }

/* ================================================================
   GALLERY
   ================================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gallery-item {
  position: relative; overflow: hidden; aspect-ratio: 4/3;
  background: var(--bg-3);
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease; display: block;
}
.gallery-item:hover img { transform: scale(1.06); }

/* ================================================================
   GALLERY LIGHTBOX
   ================================================================ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,15,20,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.lightbox-overlay.open {
  opacity: 1;
  visibility: visible;
}
.lightbox-img-wrap {
  max-width: 88vw;
  max-height: 82vh;
}
.lightbox-img-wrap img {
  max-width: 88vw;
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  display: block;
}
.lightbox-close,
.lightbox-arrow {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.lightbox-close:hover,
.lightbox-arrow:hover { background: var(--orange); border-color: var(--orange); }
.lightbox-close {
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  font-size: 16px;
  z-index: 2;
}
.lightbox-arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 18px;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
@media (max-width: 560px) {
  .lightbox-close { top: 14px; right: 14px; width: 38px; height: 38px; font-size: 14px; }
  .lightbox-arrow { width: 40px; height: 40px; font-size: 15px; }
  .lightbox-prev { left: 6px; }
  .lightbox-next { right: 6px; }
  .lightbox-img-wrap { max-width: 94vw; max-height: 76vh; }
  .lightbox-img-wrap img { max-width: 94vw; max-height: 76vh; }
}

/* ================================================================
   BACK TO TOP
   ================================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  z-index: 600;
  cursor: pointer;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--orange-dark); }
@media (max-width: 560px) {
  .back-to-top { bottom: 18px; right: 16px; width: 42px; height: 42px; font-size: 14px; }
}

/* ================================================================
   CTA STRIP
   ================================================================ */
.cta-strip {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 80px 48px;
}
.cta-strip-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.08;
}
.cta-strip-overlay {
  position: absolute; inset: 0;
  background: var(--green);
}
.cta-strip-inner { position: relative; z-index: 2; }
.cta-strip h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 800; color: #fff;
  margin-bottom: 12px;
}
.cta-strip p { font-size: 15px; color: rgba(255,255,255,0.75); max-width: 500px; margin: 0 auto 32px; }
.cta-strip .btn-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.footer-mount-pull { margin-top: -48px; }
@media (max-width: 820px) {
  .footer-mount-pull { margin-top: 0; }
}

/* ================================================================
   FOOTER
   ================================================================ */
footer {
  background: var(--ink);
  padding: 72px 0 0;
  border-top: 3px solid var(--orange);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 0 48px;
  max-width: 1160px;
  margin: 0 auto;
}
.footer-brand-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 800; font-size: 18px;
  color: #fff; margin-bottom: 4px;
}
.footer-brand-sub {
  font-size: 10px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 14px;
}
.footer-brand-desc {
  font-size: 13px; color: rgba(255,255,255,0.45);
  line-height: 1.8; max-width: 280px;
}
.footer-social-row { display: flex; gap: 10px; margin-top: 18px; }
.footer-social-icon {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 14px;
  transition: background 0.2s;
}
.footer-social-icon:hover { background: var(--orange); }
.footer-col h4 {
  font-size: 10px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  font-size: 13px; color: rgba(255,255,255,0.80);
  transition: color 0.2s;
  display: flex; align-items: center; gap: 7px;
}
.footer-col ul li a:hover { color: #fff; }
.footer-col ul li a i { font-size: 11px; color: var(--orange); }
.footer-contact-item {
  display: flex; gap: 10px;
  margin-bottom: 10px;
  font-size: 13px; color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.footer-contact-icon { color: var(--orange); flex-shrink: 0; font-size: 13px; }
.footer-bottom {
  margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: var(--orange); font-weight: 600; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .navbar-inner { padding: 0 32px; }
  .topbar { padding: 7px 32px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image-col { height: 360px; }
  .hero-image-col::before { display: none; }
  .hero-glass-cards { display: none; }
  .hero-content { padding: 80px 32px 56px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; padding: 0 32px; }
  .footer-bottom { padding: 18px 32px; }
  .clients-grid { grid-template-columns: repeat(4, 1fr); }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .topbar { padding: 6px 16px; font-size: 11px; gap: 12px; }
  .topbar-spacer { display: none; }
  .navbar-inner { padding: 0 20px; }
  .nav-hamburger { display: flex; }
  .section { padding: 64px 0; }
  .section-skew-bottom { clip-path: none; padding-bottom: 64px; }
  .section-skew-top { clip-path: none; padding-top: 64px; margin-top: 0; }
  .section-skew-both { clip-path: none; padding: 64px 0; margin-top: 0; }
  .container { padding: 0 20px; }
  .hero-content { padding: 64px 20px 48px; }
  .hero-headline { font-size: clamp(36px, 9vw, 52px); }
  .hero-sub { font-size: 15px; max-width: 100%; }
  .hero-actions { flex-direction: row; flex-wrap: wrap; gap: 10px; }
  .hero-stats { flex-wrap: wrap; gap: 16px 28px; }
  .hero-stats > div { min-width: 120px; }
  .hero-image-col { height: 280px; }
  .page-banner { padding: 64px 20px 48px; padding-bottom: 56px; }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .about-img-badge { display: none; }
  .about-img-main { height: 320px; }
  .services-grid-4 { grid-template-columns: 1fr; }
  .service-card { padding: 28px 22px; }
  .mv-grid { grid-template-columns: 1fr; }
  .mv-card { padding: 32px 24px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .ghana-map-inner { grid-template-columns: 1fr; gap: 40px; }
  .ghana-map-section { background: var(--bg); }
  .ghana-map-text .section-title { color: var(--ink); font-size: clamp(22px, 5vw, 30px); }
  .ghana-map-text p { color: var(--text-lt); }
  .ghana-location-item .loc-name { color: var(--ink); }
  .ghana-svg-wrap {
    max-width: 380px;
    margin: 0 auto;
    background: var(--ink);
    border-radius: var(--radius-lg);
    padding: 24px;
  }
  .ghana-map-svg { width: 100%; max-width: 380px; }
  .ghana-stat-row { flex-wrap: wrap; gap: 16px; }
  .oblique-inner { grid-template-columns: 1fr; gap: 28px; padding: 56px 20px; }
  .oblique-cards-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .oblique-heading { font-size: clamp(24px, 5vw, 36px); }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 24px; }
  .sticky-scroll-wrap { grid-template-columns: 1fr; }
  .sticky-scroll-right { position: static; height: 280px; border-radius: var(--radius-lg); margin-bottom: 32px; order: unset; }
  .sticky-scroll-left { padding-right: 0; padding-left: 0; order: unset; }
  .sticky-scroll-wrap .sticky-scroll-right { order: -1 !important; }
  .form-row-2 { grid-template-columns: 1fr; }
  .partners-row { flex-wrap: wrap; }
  .partner-cell { flex: 0 0 50%; min-height: 72px; padding: 16px; }
  .cta-strip { padding: 56px 20px; }
  .proj-tabs { flex-wrap: wrap; }
  .proj-panel { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .proj-table { min-width: 480px; }
  .gallery-grid { gap: 2px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; padding: 0 20px; }
  .footer-bottom { padding: 16px 20px; flex-direction: column; text-align: center; gap: 6px; }
}
@media (max-width: 560px) {
  .topbar > span:nth-child(2) { display: none; }
  .nav-logo-text { display: none; }
  .section { padding: 52px 0; }
  .section-sm { padding: 40px 0; }
  .hero-content { padding: 48px 16px 40px; }
  .hero-headline { font-size: clamp(32px, 10vw, 44px); }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .page-banner { padding: 52px 16px 40px; }
  .page-banner h1 { font-size: clamp(28px, 8vw, 44px); }
  .oblique-inner { padding: 44px 16px; }
  .oblique-card { padding: 16px; }
  .service-card { padding: 22px 16px; }
  .service-card-icon { width: 44px; height: 44px; font-size: 18px; }
  .about-img-main { height: 240px; }
  .mv-card { padding: 24px 18px; }
  .ghana-svg-wrap { max-width: 300px; padding: 18px; }
  /* The track being slid via JS transform (.partners-row / .clients-grid) must not clip
     itself - it has its own overflow:hidden for the desktop rounded-card look, which was
     clipping the carousel to its own untransformed first slice and never revealing the
     rest. Move the card framing (border/radius/background/clip) to the wrapper instead, and
     let the track itself overflow freely so the transform can actually bring later cells
     into view. */
  .logo-carousel-viewport {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
  }
  .partners-row, .clients-grid {
    display: flex;
    flex-wrap: nowrap;
    grid-template-columns: none;
    border: none;
    border-radius: 0;
    overflow: visible;
  }
  .partner-cell, .client-cell { flex: 0 0 50%; }
  .carousel-clone { display: flex; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card-img, .team-card-placeholder { height: 240px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .footer-grid > *:first-child, .footer-grid > *:last-child { grid-column: 1 / -1; }
  footer { padding-top: 48px; }
  .contact-form-wrap { padding: 24px 16px; }
  .contact-layout iframe { height: 160px !important; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .oblique-cards-grid { grid-template-columns: 1fr; }
  .hero-glass-cards { grid-template-columns: 1fr; }

  /* Homepage operational footprint card: plain white background, smaller heading, bigger map */
  .footprint-section { background: #fff; }
  .footprint-card {
    background: transparent;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
  }
  .footprint-title { font-size: 23px; color: var(--ink); }
  .footprint-subtitle { color: var(--text-lt); }
  .footprint-desc { color: var(--text-md);
  display: none; }
  .footprint-map-wrap .ghana-map-svg { max-width: 100%; }

  /* Shared Ghana map section (about/services/projects/gallery/contact): drop the dark card, let the map use the full white background */
  .ghana-svg-wrap {
    background: transparent;
    padding: 0;
    max-width: 100%;
  }
  .ghana-map-section .ghana-map-svg { max-width: 100%; }

  /* Map text needs dark fills once it sits on a white background instead of the ink card */
  .footprint-map-wrap .map-dot-label,
  .ghana-svg-wrap .map-dot-label { fill: var(--ink); }
  .footprint-map-wrap .map-legend-label,
  .ghana-svg-wrap .map-legend-label { fill: var(--text-lt); }
  .footprint-map-wrap .map-attribution,
  .ghana-svg-wrap .map-attribution { fill: rgba(0,0,0,0.3); }

  /* Partners/clients logos stay in full colour on mobile (carousel already loops via JS) */
  .partner-logo, .client-logo { filter: none; opacity: 1; }
}

/* Mobile nav — slide from right */
@media (max-width: 820px) {
  .nav-links {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(320px, 85vw);
    background: #fff;
    box-shadow: -4px 0 32px rgba(0,0,0,0.15);
    padding: 80px 24px 32px;
    gap: 4px;
    z-index: 499;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-open .nav-links {
    transform: translateX(0);
  }
  .nav-links > li { width: 100%; }
  .nav-links > li > a {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    font-size: 17px;
    padding: 12px 16px;
    color: var(--ink);
  }
  .nav-links .nav-cta-link { justify-content: center; }
  .nav-links .nav-dropdown {
    position: static;
    top: auto; left: auto; min-width: 0;
    display: none;
    background: var(--bg-2);
    border: none;
    box-shadow: none;
    border-radius: var(--radius);
    margin: 4px 0 4px 16px;
  }
  /* Touch has no real :hover — neutralize the desktop hover-opens-dropdown rule here so
     a lingering/ghost hover state can't keep the dropdown open after it's been tap-closed. */
  .nav-links .has-dropdown:hover .nav-dropdown { display: none; }
  .nav-links .has-dropdown.open .nav-dropdown { display: block; }
  .nav-close { display: flex; }
  .nav-contact-mobile {
    display: flex;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border);
  }
  .nav-contact-mobile > a {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-start;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-md);
    padding: 12px 16px;
  }
  .nav-contact-mobile i { color: var(--orange); }
  /* backdrop-filter on .navbar creates a containing block that traps the fixed-position
     .nav-links drawer (even while closed), pushing it outside the navbar's box and causing
     horizontal overflow on the page. Disable it for the whole mobile breakpoint, not just
     while the menu is open. */
  .navbar { backdrop-filter: none; -webkit-backdrop-filter: none; }
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 498;
}
.nav-open .nav-backdrop { display: block; }

/* ================================================================
   MOBILE XS
   ================================================================ */
@media (max-width: 380px) {
  .container { padding: 0 14px; }
  .stats-strip { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .btn { padding: 11px 18px; font-size: 12px; }
  .nav-open .nav-links > li > a { font-size: 15px; }
}
