/* ════════════════════════════════════════════════════════
   TSOGO-TLHAGO TRADING ENTERPRISE — SITE STYLES
   📝 EDIT: BRAND COLOURS below — change these to update whole site
   ════════════════════════════════════════════════════════ */
:root {
  --teal:        #126973;
  --aqua:        #29A4AE;
  --green:       #5E9631;
  --orange:      #EC9A3B;
  --charcoal:    #2F2F2F;
  --white:       #FFFFFF;
  --off-white:   #F7F9F8;
  --light-teal:  #EBF5F6;
  --light-green: #EFF6E8;
  --light-orange:#FEF5E8;
  --border:      rgba(18,105,115,0.15);
  --shadow:      0 4px 24px rgba(18,105,115,0.12);
  --shadow-lg:   0 12px 48px rgba(18,105,115,0.18);
  --radius:      16px;
  --radius-sm:   10px;
  --nav-height:  76px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--white); color: var(--charcoal); font-family: 'Poppins', sans-serif; overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
textarea { font-family: 'Poppins', sans-serif; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 2px; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
section { padding: 100px 0; }
.mt-28 { margin-top: 28px; }
.nowrap { white-space: nowrap; }
.shrink-0 { flex-shrink: 0; }
.flex-row { display: flex; align-items: center; gap: 12px; }
.bg-teal { background: var(--teal); }
.bg-green { background: var(--green); }
.bg-orange { background: var(--orange); }
.bg-aqua { background: var(--aqua); }

/* ── TYPOGRAPHY ── */
.section-tag { display: inline-flex; align-items: center; gap: 10px; font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
.section-tag::before { content: ''; width: 28px; height: 3px; background: var(--orange); border-radius: 2px; flex-shrink: 0; }
.section-tag.light { color: rgba(255,255,255,0.8); }
.section-tag.light::before { background: rgba(255,255,255,0.5); }
.section-title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: clamp(30px, 4.5vw, 52px); line-height: 1.15; color: var(--charcoal); margin-bottom: 16px; }
.section-title.white { color: var(--white); }
.section-intro { font-size: 16px; color: rgba(47,47,47,0.7); line-height: 1.8; max-width: 680px; }
.section-intro.white { color: rgba(255,255,255,0.8); }
.body-text { font-size: 15px; color: rgba(47,47,47,0.75); line-height: 1.85; }
.accent-teal { color: var(--teal); }
.accent-orange { color: var(--orange); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-intro { margin: 0 auto; }
.divider-bar { width: 60px; height: 4px; border-radius: 2px; background: linear-gradient(90deg, var(--teal), var(--green)); margin-bottom: 24px; }
.divider-bar.light { background: linear-gradient(90deg, rgba(255,255,255,0.6), rgba(255,255,255,0.2)); }

/* ── BUTTONS ── */
.btn-primary,
.btn-secondary,
.btn-orange,
.btn-outline,
.btn-white,
.btn-outline-white,
.btn-submit {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-sm);
  transition: all .25s;
}

.btn-primary { background: var(--teal); color: var(--white); padding: 14px 32px; display: inline-flex; align-items: center; gap: 8px; border: 2px solid var(--teal); }
.btn-primary:hover { background: #0e5560; border-color: #0e5560; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(18,105,115,.3); }

.btn-secondary { background: transparent; color: var(--white); padding: 14px 32px; border: 2px solid rgba(255,255,255,0.6); display: inline-flex; align-items: center; gap: 8px; }
.btn-secondary:hover { background: rgba(255,255,255,.15); border-color: var(--white); transform: translateY(-2px); }

.btn-orange { background: var(--orange); color: var(--white); padding: 14px 32px; display: inline-flex; align-items: center; gap: 8px; border: 2px solid var(--orange); }
.btn-orange:hover { background: #d4872a; border-color: #d4872a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(236,154,59,.35); }

.btn-outline { background: transparent; color: var(--teal); padding: 13px 28px; border: 2px solid var(--teal); display: inline-flex; align-items: center; gap: 8px; }
.btn-outline:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }

.btn-white { background: var(--white); color: var(--orange); padding: 14px 32px; display: inline-block; letter-spacing: .5px; }
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }

.btn-outline-white { background: transparent; color: var(--white); font-size: 14px; padding: 12px 26px; border: 2px solid rgba(255,255,255,.4); display: inline-block; }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

.btn-submit { width: 100%; background: var(--teal); color: var(--white); font-weight: 800; font-size: 15px; padding: 16px; border: 2px solid var(--teal); margin-top: 6px; }
.btn-submit:hover { background: #0e5560; border-color: #0e5560; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(18,105,115,.3); }
.btn-submit:disabled { opacity: .65; cursor: not-allowed; transform: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }

/* ════════════════════════════════
   NAVIGATION
   ════════════════════════════════ */
header { position: relative; z-index: 1000; }

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 4%;
  background: rgba(255,255,255,0.97);
  border-bottom: 2px solid var(--border);
  box-shadow: 0 2px 20px rgba(18,105,115,.1);
  transition: all .3s;
}

@supports ((backdrop-filter: blur(20px)) or (-webkit-backdrop-filter: blur(20px))) {
  nav {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(255,255,255,0.85);
  }
}

nav.scrolled { height: 62px; box-shadow: 0 4px 28px rgba(18,105,115,.16); }
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img { height: 54px; width: auto; transition: height .3s; }
nav.scrolled .nav-logo-img { height: 44px; }

.nav-links { display: flex; align-items: center; justify-content: center; gap: 0; padding: 0 24px; }
.nav-links li { flex: 1; display: flex; justify-content: center; }
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--charcoal);
  padding: 8px 10px;
  border-radius: 7px;
  transition: all .22s;
  letter-spacing: .4px;
  white-space: nowrap;
  text-align: center;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: left .22s, right .22s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--teal); background: var(--light-teal); }
.nav-links a:hover::after,
.nav-links a.active::after { left: 10%; right: 10%; }

.nav-right { flex-shrink: 0; }
.nav-download {
  background: var(--orange);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  padding: 10px 18px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all .22s;
  white-space: nowrap;
  letter-spacing: .3px;
  border: 2px solid var(--orange);
}
.nav-download:hover { background: #d4872a; border-color: #d4872a; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(236,154,59,.35); }

.nav-divider { width: 1px; height: 28px; background: var(--border); margin-right: 20px; flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; border-radius: 8px; cursor: pointer; transition: background .2s; }
.hamburger:hover { background: var(--light-teal); }
.hamburger span { width: 24px; height: 2.5px; background: var(--charcoal); border-radius: 2px; display: block; transition: all .3s; }
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 2px solid var(--border);
  z-index: 800;
  padding: 20px 5% 28px;
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: all .3s ease;
  box-shadow: 0 8px 32px rgba(18,105,115,.12);
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 6px; }
.mob-link { display: block; padding: 13px 16px; border-radius: 10px; font-family: 'Montserrat',sans-serif; font-size: 14px; font-weight: 600; color: var(--charcoal); transition: all .25s; }
.mob-link:hover,
.mob-link:focus-visible { background: var(--light-teal); color: var(--teal); }
.mob-dl { background: var(--orange) !important; color: var(--white) !important; margin-top: 8px; }

/* ════════════════════════════════
   HERO
   ════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-height);
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #0b4a52 0%, var(--teal) 40%, #1a8591 65%, var(--green) 100%); }
.hero-pattern { position: absolute; inset: 0; background-image: radial-gradient(circle at 70% 30%, rgba(236,154,59,.22) 0%, transparent 45%), radial-gradient(circle at 85% 80%, rgba(94,150,49,.2) 0%, transparent 40%), radial-gradient(circle at 10% 70%, rgba(41,164,174,.25) 0%, transparent 40%); }
.hero-pattern::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-logo-topleft {
  position: absolute;
  top: calc(var(--nav-height) + 36px);
  left: 5%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: fadeUp .8s ease both;
}
.hero-logo-topleft img {
  height: clamp(90px, 10vw, 140px);
  width: auto;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,.35));
  transition: transform .3s;
}
.hero-logo-topleft img:hover { transform: scale(1.04); }
.hero-logo-wordmark { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(13px, 1.5vw, 17px); color: rgba(255,255,255,0.92); letter-spacing: 3px; text-transform: uppercase; margin-top: 6px; text-shadow: 0 2px 8px rgba(0,0,0,.4); }
.hero-logo-sub { font-family: 'Poppins', sans-serif; font-size: clamp(10px, 1vw, 12px); color: var(--orange); letter-spacing: 2px; font-weight: 600; text-transform: uppercase; margin-top: 2px; }
.hero-logo-fallback[hidden] { display: none !important; }

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 5% 80px;
  animation: fadeUp .9s .15s ease both;
}
.hero-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.9); font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; padding: 8px 18px; border-radius: 100px; margin-bottom: 28px; letter-spacing: 1.5px; text-transform: uppercase; width: fit-content; }
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); animation: pulseDot 2s infinite; flex-shrink: 0; }
.hero-title { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(38px, 6.5vw, 76px); line-height: 1.06; color: var(--white); margin-bottom: 26px; letter-spacing: -1px; }
.hero-title-accent { color: var(--orange); }
.hero-sub { font-size: clamp(15px, 1.8vw, 18px); color: rgba(255,255,255,.82); max-width: 560px; line-height: 1.8; margin-bottom: 44px; }
.hero-sub em { color: var(--orange); font-style: normal; font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-logo-float {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: clamp(200px, 28vw, 400px);
  opacity: .12;
  filter: brightness(10);
  pointer-events: none;
  animation: floatLogo 9s ease-in-out infinite;
}

/* ── STATS TICKER ── */
.stats-bar { background: var(--charcoal); padding: 16px 0; overflow: hidden; }
.stats-track { display: flex; animation: ticker 35s linear infinite; width: max-content; }
.stats-track:hover { animation-play-state: paused; }
.stats-item { display: flex; align-items: center; gap: 16px; padding: 0 44px; white-space: nowrap; font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 1px; color: rgba(255,255,255,.8); text-transform: uppercase; }
.stats-item .dot { color: var(--orange); font-size: 20px; }

/* ── ABOUT ── */
.about { background: var(--white); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-bottom: 60px; }
.value-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.pillar { display: flex; gap: 12px; align-items: flex-start; padding: 16px; border-radius: var(--radius-sm); border: 1px solid var(--border); background: var(--off-white); transition: all .25s; }
.pillar:hover { border-color: var(--teal); background: var(--light-teal); transform: translateY(-2px); }
.pillar-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.pillar strong { display: block; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; color: var(--charcoal); margin-bottom: 2px; }
.pillar p { font-size: 12px; color: rgba(47,47,47,.6); line-height: 1.5; }
.about-visual-main { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); }
.mosaic-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 320px; }
.mosaic-tile { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 28px 16px; gap: 10px; border: 1px solid rgba(255,255,255,.12); transition: background .25s; }
.mosaic-tile:hover { background: rgba(255,255,255,.08); }
.mosaic-tile span { font-size: 40px; }
.mosaic-tile p { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.8); text-align: center; }
.mt-bg1 { background: linear-gradient(135deg,#0b4a52,var(--teal)); }
.mt-bg2 { background: linear-gradient(135deg,rgba(236,154,59,.4),rgba(236,154,59,.6)); }
.mt-bg3 { background: linear-gradient(135deg,rgba(94,150,49,.4),rgba(94,150,49,.6)); }
.mt-bg4 { background: linear-gradient(135deg,rgba(0,0,0,.2),rgba(0,0,0,.3)); }
.about-stats-row { display: flex; gap: 12px; margin-top: 16px; }
.stat-bubble { flex: 1; background: var(--teal); color: var(--white); border-radius: var(--radius-sm); padding: 18px 14px; text-align: center; box-shadow: var(--shadow); }
.stat-bubble.sb-orange { background: var(--orange); }
.stat-bubble.sb-green { background: var(--green); }
.stat-num { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 24px; line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 11px; opacity: .85; letter-spacing: .5px; line-height: 1.3; }
.purpose-strip { display: grid; grid-template-columns: 1fr 1fr; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); }
.purpose-box { padding: 36px 44px; }
.purpose-box.bg-teal { background: var(--teal); }
.purpose-box.bg-green { background: var(--green); }
.purpose-label { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.65); margin-bottom: 14px; }
.purpose-box p { font-size: 15px; color: rgba(255,255,255,.9); line-height: 1.8; font-style: italic; }
.tagline-big { font-family: 'Montserrat', sans-serif !important; font-weight: 800 !important; font-size: 18px !important; line-height: 1.4 !important; font-style: normal !important; }

/* ── OFFERINGS ── */
.offerings { background: linear-gradient(180deg,#0b4a52 0%,var(--teal) 100%); position: relative; }
.offerings::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 80% 20%,rgba(236,154,59,.15) 0%,transparent 50%), radial-gradient(circle at 10% 80%,rgba(94,150,49,.15) 0%,transparent 50%); pointer-events: none; }
.offerings-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.offering-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 32px 26px; transition: all .25s; position: relative; overflow: hidden; }
.offering-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg,var(--orange),var(--green)); transform: scaleX(0); transition: transform .3s; transform-origin: left; }
.offering-card:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25); transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,.2); }
.offering-card:hover::before { transform: scaleX(1); }
.offer-icon-wrap { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.offer-icon { font-size: 26px; }
.offering-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 17px; color: var(--white); margin-bottom: 10px; line-height: 1.3; }
.offering-card p { font-size: 14px; color: rgba(255,255,255,.72); line-height: 1.75; margin-bottom: 18px; }
.card-link { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; color: var(--orange); letter-spacing: .5px; display: inline-flex; align-items: center; gap: 4px; transition: gap .25s; }
.card-link:hover { gap: 8px; }

/* ── PROGRAMS ── */
.programs { background: var(--off-white); }
.programs-header { margin-bottom: 52px; }
.programs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.program-card { background: var(--white); border-radius: var(--radius); padding: 32px 26px; box-shadow: var(--shadow); transition: all .25s; display: flex; flex-direction: column; }
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pc-teal { border-top: 4px solid var(--teal); }
.pc-orange { border-top: 4px solid var(--orange); }
.pc-green { border-top: 4px solid var(--green); }
.pc-featured { background: linear-gradient(135deg,var(--teal),#0b4a52); border-top: none; }
.pc-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 18px; gap: 10px; }
.pc-icon { font-size: 34px; line-height: 1; }
.pc-badge { font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 11px; border-radius: 100px; background: var(--light-teal); color: var(--teal); border: 1px solid var(--border); white-space: nowrap; }
.pc-badge-orange { background: var(--light-orange); color: var(--orange); border-color: rgba(236,154,59,.2); }
.pc-badge-green { background: var(--light-green); color: var(--green); border-color: rgba(94,150,49,.2); }
.pc-badge-white { background: rgba(255,255,255,.2); color: var(--white); border-color: rgba(255,255,255,.25); }
.pc-title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 19px; color: var(--charcoal); margin-bottom: 10px; line-height: 1.3; }
.pc-desc { font-size: 14px; color: rgba(47,47,47,.7); line-height: 1.75; margin-bottom: 18px; flex: 1; }
.pc-list { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.pc-list li { font-size: 13px; color: rgba(47,47,47,.7); padding-left: 18px; position: relative; line-height: 1.5; }
.pc-list li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.pc-list-white li { color: rgba(255,255,255,.8); }
.pc-list-white li::before { color: var(--orange); }
.pc-duration { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--teal); padding-top: 14px; border-top: 1px solid var(--border); }
.programs-cta { text-align: center; margin-top: 44px; padding: 36px; background: var(--white); border-radius: var(--radius); border: 2px dashed var(--border); }
.programs-cta p { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 17px; color: var(--charcoal); margin-bottom: 18px; }

/* ── IMPACT ── */
.impact { background: var(--white); }
.impact-numbers { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-bottom: 52px; }
.impact-num-card { text-align: center; padding: 32px 16px; border-radius: var(--radius); background: var(--off-white); border: 1px solid var(--border); transition: all .25s; }
.impact-num-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.imp-num { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(34px,5vw,54px); line-height: 1; margin-bottom: 8px; }
.imp-label { font-size: 13px; color: rgba(47,47,47,.6); font-weight: 500; line-height: 1.4; }
.impact-table-wrap { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; margin-bottom: 44px; border: 1px solid var(--border); }
.table-title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 17px; padding: 22px 28px; border-bottom: 2px solid var(--border); color: var(--charcoal); background: var(--off-white); }
.table-scroll { overflow-x: auto; }
.impact-table { width: 100%; border-collapse: collapse; min-width: 660px; }
.impact-table th { background: var(--teal); color: var(--white); font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 15px 22px; text-align: left; }
.impact-table td { padding: 14px 22px; font-size: 14px; color: var(--charcoal); border-bottom: 1px solid rgba(18,105,115,.08); vertical-align: middle; }
.impact-table tr:hover td { background: var(--light-teal); }
.impact-table tr:last-child td { border-bottom: none; }
.client-badge { display: inline-block; font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; padding: 4px 11px; border-radius: 100px; background: var(--light-teal); color: var(--teal); letter-spacing: .5px; }
.cb-green { background: var(--light-green); color: var(--green); }
.cb-orange { background: var(--light-orange); color: #c07820; }
.learner-count { font-family: 'Montserrat', sans-serif; font-weight: 800; color: var(--teal); font-size: 16px; }
.clients-label { text-align: center; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(47,47,47,.4); margin-bottom: 18px; font-family: 'Montserrat', sans-serif; }
.client-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.cpill { font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700; padding: 10px 22px; border-radius: 100px; background: var(--off-white); border: 1px solid var(--border); color: rgba(47,47,47,.6); transition: all .25s; cursor: default; }
.cpill:hover { background: var(--light-teal); color: var(--teal); border-color: var(--teal); transform: translateY(-2px); }

/* ── TARGET ── */
.target { background: var(--off-white); }
.target-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: center; }
.market-bars { display: flex; flex-direction: column; gap: 22px; padding: 36px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--border); }
.mb-wrap { display: flex; flex-direction: column; gap: 7px; }
.mb-label { display: flex; align-items: center; gap: 10px; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 13px; color: var(--charcoal); }
.mb-icon { font-size: 18px; flex-shrink: 0; }
.mb-track { height: 10px; background: rgba(18,105,115,.1); border-radius: 10px; overflow: hidden; }
.mb-fill { height: 100%; border-radius: 10px; transition: width 1.2s ease; }
.mb-pct { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px; color: var(--teal); align-self: flex-end; }

/* ── GALLERY ── */
.gallery { background: var(--white); }
.gallery > .container { margin-bottom: 44px; }
.gallery-grid { padding: 0 5%; display: grid; grid-template-columns: repeat(4,1fr); grid-template-rows: 260px 200px 200px; gap: 12px; }
.gal-item { border-radius: 14px; overflow: hidden; position: relative; cursor: pointer; }
.gal-large { grid-column: span 2; grid-row: span 2; }
.gal-wide { grid-column: span 2; }
.gal-photo { width: 100%; height: 100%; position: relative; display: flex; align-items: flex-end; padding: 22px; transition: transform .4s ease; }
.gal-item:hover .gal-photo { transform: scale(1.04); }
.gal-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,0,0,.65) 0%,rgba(0,0,0,.1) 50%,transparent 100%); }
.gal-content { position: relative; z-index: 2; }
.gal-emoji { font-size: 30px; margin-bottom: 6px; filter: drop-shadow(0 2px 4px rgba(0,0,0,.3)); }
.gal-tag { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--white); background: rgba(0,0,0,.3); backdrop-filter: blur(4px); padding: 4px 11px; border-radius: 100px; display: inline-block; margin-bottom: 6px; }
.gal-caption { font-size: 12px; color: rgba(255,255,255,.8); line-height: 1.4; max-width: 300px; }
.gal-hover { position: absolute; inset: 0; background: linear-gradient(to top,rgba(18,105,115,.9) 0%,transparent 70%); display: flex; align-items: flex-end; padding: 18px; opacity: 0; transition: opacity .3s; }
.gal-item:hover .gal-hover { opacity: 1; }
.gal-hover span { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; color: var(--white); }
.gp1 { background: linear-gradient(165deg,#0d4a28 0%,#2d9b52 40%,#5E9631 65%,#EC9A3B 100%); }
.gp2 { background: linear-gradient(135deg,#0b4a52 0%,#126973 40%,#29A4AE 100%); }
.gp3 { background: linear-gradient(135deg,#7b1f2e 0%,#c0392b 40%,#EC9A3B 100%); }
.gp4 { background: linear-gradient(135deg,#3a1a6e 0%,#6c3483 40%,#29A4AE 100%); }
.gp5 { background: linear-gradient(135deg,#1a3a52 0%,#2e86ab 40%,#5E9631 100%); }
.gp6 { background: linear-gradient(135deg,#2c1a08 0%,#6b3a1a 40%,#EC9A3B 100%); }
.gp7 { background: linear-gradient(135deg,#126973 0%,#5E9631 50%,#8bc34a 100%); }
.gp8 { background: linear-gradient(135deg,#0d2b4a 0%,#1565c0 40%,#29A4AE 100%); }
.gp9 { background: linear-gradient(135deg,#2d1b69 0%,#EC9A3B 50%,#e57e0e 100%); }

/* ── TEAM ── */
.team { background: var(--off-white); }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.team-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: all .25s; border: 1px solid var(--border); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-avatar { height: 170px; display: flex; align-items: center; justify-content: center; }
.ta1 { background: linear-gradient(135deg,var(--teal),var(--aqua)); font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 44px; color: var(--white); letter-spacing: 2px; }
.ta2 { background: linear-gradient(135deg,var(--green),#8bc34a); font-size: 60px; }
.ta3 { background: linear-gradient(135deg,var(--orange),#f5c26e); font-size: 60px; }
.team-info { padding: 26px 26px 30px; }
.team-info h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 17px; color: var(--charcoal); margin-bottom: 5px; }
.team-role { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.team-info p { font-size: 14px; color: rgba(47,47,47,.65); line-height: 1.7; }
.join-banner { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 44px 52px; margin-top: 36px; background: linear-gradient(135deg,var(--charcoal),#1a1a1a); border-radius: var(--radius); flex-wrap: wrap; }
.join-banner h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 22px; color: var(--white); margin-bottom: 7px; }
.join-banner p { font-size: 14px; color: rgba(255,255,255,.65); max-width: 480px; line-height: 1.7; }

/* ── CTA BAND ── */
.cta-band { background: linear-gradient(135deg,var(--orange) 0%,#d4872a 100%); padding: 80px 5%; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 90% 50%,rgba(255,255,255,.1) 0%,transparent 50%); }
.cta-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 44px; flex-wrap: wrap; position: relative; z-index: 2; }
.cta-text h2 { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(26px,4vw,42px); color: var(--white); line-height: 1.15; margin-bottom: 10px; }
.cta-text p { font-size: 15px; color: rgba(255,255,255,.85); max-width: 500px; line-height: 1.75; }
.cta-btns { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }

/* ── CONTACT ── */
.contact { background: var(--white); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; margin-top: 44px; }
.office-block { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 22px; margin-bottom: 18px; transition: border-color .25s; }
.office-block:hover { border-color: var(--teal); }
.office-title { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.office-title strong { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; color: var(--teal); }
.office-detail { font-size: 14px; color: rgba(47,47,47,.7); line-height: 1.75; margin-bottom: 12px; padding-left: 26px; }
.office-contacts { display: flex; flex-direction: column; gap: 6px; padding-left: 26px; }
.contact-link { font-size: 13px; color: rgba(47,47,47,.65); transition: color .25s; display: block; }
a.contact-link:hover { color: var(--teal); }
.dl-box { display: flex; align-items: center; gap: 18px; padding: 22px; background: linear-gradient(135deg,var(--light-teal),var(--light-green)); border: 1px solid var(--border); border-radius: var(--radius-sm); flex-wrap: wrap; margin-top: 20px; }
.dl-box-icon { font-size: 36px; flex-shrink: 0; }
.dl-box-text strong { display: block; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 14px; color: var(--teal); margin-bottom: 3px; }
.dl-box-text p { font-size: 13px; color: rgba(47,47,47,.6); line-height: 1.5; }
.form-panel { background: var(--off-white); border: 1px solid var(--border); border-radius: 20px; padding: 44px 38px; }
.form-panel h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 26px; color: var(--teal); margin-bottom: 5px; }
.form-panel > p { font-size: 14px; color: rgba(47,47,47,.55); margin-bottom: 26px; }
.form-field { margin-bottom: 15px; }
.form-field label { display: block; font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(47,47,47,.55); margin-bottom: 7px; }
.form-field input, .form-field select, .form-field textarea { width: 100%; background: var(--white); border: 1.5px solid rgba(18,105,115,.2); border-radius: var(--radius-sm); padding: 13px 15px; color: var(--charcoal); font-family: 'Poppins', sans-serif; font-size: 14px; outline: none; transition: border-color .25s, box-shadow .25s; -webkit-appearance: none; }
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(47,47,47,.3); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(18,105,115,.1); }
.form-field input.error, .form-field select.error, .form-field textarea.error { border-color: #e74c3c; }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-feedback { margin-top: 12px; padding: 12px 16px; border-radius: var(--radius-sm); font-size: 14px; display: none; }
.form-feedback.success { background: rgba(94,150,49,.1); border: 1px solid rgba(94,150,49,.3); color: var(--green); display: block; }
.form-feedback.error { background: rgba(231,76,60,.08); border: 1px solid rgba(231,76,60,.25); color: #c0392b; display: block; }
.field-error { display: block; font-size: 12px; color: #c0392b; margin-top: 5px; }

/* ── FOOTER ── */
footer { background: var(--charcoal); }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 52px; padding: 64px 5% 52px; max-width: 1200px; margin: 0 auto; }
.footer-logo { height: 60px; width: auto; filter: brightness(0) invert(1); opacity: .9; margin-bottom: 18px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.48); line-height: 1.8; max-width: 270px; margin-bottom: 12px; }
.footer-tagline { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 1px; color: var(--orange); text-transform: uppercase; }
.footer-col h4 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.38); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.52); transition: all .25s; display: inline-block; }
.footer-col ul li a:hover { color: var(--orange); transform: translateX(4px); }
.footer-bottom { background: rgba(0,0,0,.28); }
.footer-bottom-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; padding: 22px 5%; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.28); }
.footer-bottom a { color: var(--orange); }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.f-badge { font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 1px; padding: 5px 12px; border-radius: 100px; background: rgba(255,255,255,.06); color: rgba(255,255,255,.4); border: 1px solid rgba(255,255,255,.1); text-transform: uppercase; }
.f-badge-green { color: rgba(94,150,49,.7); border-color: rgba(94,150,49,.2); }
.f-badge-orange { color: rgba(236,154,59,.7); border-color: rgba(236,154,59,.2); }

/* ── ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }

@keyframes pulseDot { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(.8); } }
@keyframes floatLogo { 0%,100% { transform: translateY(-50%); } 50% { transform: translateY(calc(-50% - 18px)); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .nav-links a { font-size: 11px; padding: 7px 7px; }
}
@media (max-width: 1024px) {
  .offerings-grid, .programs-grid { grid-template-columns: 1fr 1fr; }
  .about-inner, .target-inner, .contact-inner { grid-template-columns: 1fr; gap: 44px; }
  .impact-numbers { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; grid-auto-rows: 200px; }
  .gal-large, .gal-wide { grid-column: span 2; }
  .purpose-strip { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  nav { grid-template-columns: auto auto; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-right { display: flex; align-items: center; gap: 12px; }
}
@media (max-width: 768px) {
  section { padding: 70px 0; }
  nav { grid-template-columns: auto auto; }
  .nav-right { display: flex; align-items: center; gap: 10px; }
  .hero-logo-topleft { top: calc(var(--nav-height) + 20px); left: 4%; }
  .hero-logo-topleft img { height: 72px; }
  .hero-logo-float { display: none; }
  .hero-content { padding: 0 4% 60px; max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-secondary, .btn-orange { width: 100%; justify-content: center; }
  .offerings-grid, .programs-grid, .team-grid, .value-pillars, .footer-inner, .form-row { grid-template-columns: 1fr; }
  .cta-inner, .join-banner, .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .cta-btns { align-items: flex-start; width: 100%; }
  .join-banner { padding: 32px 24px; }
  .form-panel { padding: 28px 22px; }
  .footer-inner { padding: 44px 5% 36px; }
  .nav-right .nav-download, .nav-divider { display: none; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gal-large, .gal-wide, .gal-item { grid-column: span 1; }
  .impact-numbers { grid-template-columns: 1fr 1fr; }
  .about-stats-row { flex-wrap: wrap; }
  .hero-logo-topleft img { height: 56px; }
  .hero-logo-wordmark { font-size: 11px; letter-spacing: 2px; }
}
