/* ===========================================
   YES I CAN CAMPAIGNS CIC — Stylesheet
   =========================================== */

/* ── Variables ── */
:root {
  --green:         #1b5e3b;
  --green-dark:    #0c2414;
  --green-deep:    #071a0e;
  --green-mid:     #2e7d52;
  --green-light:   #e6f4ea;
  --green-xlight:  #f2f9f4;
  --green-glow:    #4caf50;

  --gold:          #c4903d;
  --gold-dark:     #9a7231;
  --gold-light:    #fdf6e8;

  --teal:          #1a7a6d;
  --teal-dark:     #0d5c52;
  --teal-light:    #e0f2ef;

  --sage:          #7a9b8a;
  --sage-light:    #e8f0ea;

  --dark:          #071a0e;
  --dark-2:        #0c2414;
  --gray:          #5a6b62;
  --gray-light:    #8a9b92;
  --border:        #c5d8ce;
  --light:         #f2f9f4;
  --white:         #FFFFFF;

  --shadow-sm:  0 1px 3px rgba(7,26,14,0.06), 0 1px 2px rgba(7,26,14,0.04);
  --shadow:     0 4px 16px rgba(7,26,14,0.08);
  --shadow-lg:  0 12px 40px rgba(7,26,14,0.12);
  --shadow-green: 0 8px 24px rgba(27,94,59,0.25);
  --shadow-gold:  0 8px 24px rgba(196,144,61,0.25);

  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --transition:      all 0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-fast: all 0.15s ease;
}

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

p { color: var(--gray); margin-bottom: 0; }
a { color: var(--green); }

/* ── Navbar ─ */
.navbar {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 70%, #0f3020 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 0.625rem 0;
  transition: var(--transition);
  z-index: 1050;
  position: relative;
  overflow: hidden;
}

.navbar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(76,175,80,0.4), transparent);
}

.navbar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, transparent 40%);
  pointer-events: none;
}

.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 4px 30px rgba(27,94,59,0.35);
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 80%, var(--green-mid) 100%);
}

.navbar-brand { text-decoration: none; line-height: 1; position: relative; z-index: 1; padding: 0; display: flex; align-items: center; gap: 12px; }
.navbar-brand img { height: 48px; width: auto; transition: var(--transition); filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2)); }
.navbar-brand .brand-text { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.5rem; color: white; }
.navbar-brand .brand-text span { color: var(--gold); }
.navbar.scrolled .navbar-brand img { height: 40px; }

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8) !important;
  padding: 0.4rem 0.875rem !important;
  border-radius: 8px;
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: #FFFFFF !important;
  background: rgba(255,255,255,0.12);
  box-shadow: 0 2px 12px rgba(34,197,94,0.15);
}

.btn-nav-donate {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark) !important;
  border-radius: 50px;
  padding: 0.45rem 1.25rem !important;
  font-weight: 700;
  font-size: 0.85rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(196,144,61,0.35);
}

.btn-nav-donate::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; right: 0; bottom: 0;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s;
}

.btn-nav-donate:hover::before { left: 100%; }

.btn-nav-donate:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--dark) !important;
  box-shadow: 0 4px 20px rgba(196,144,61,0.5);
  transform: translateY(-2px);
}

/* ── Buttons ── */
.btn-yic {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  padding: 0.75rem 1.75rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-yic::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; right: 0; bottom: 0;
  width: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s;
}

.btn-yic:hover::before { left: 100%; }

.btn-yic-primary {
  background: linear-gradient(135deg, var(--green), var(--green-glow));
  color: white;
  border-color: var(--green);
  box-shadow: 0 4px 15px rgba(22,163,74,0.3);
}
.btn-yic-primary:hover {
  background: linear-gradient(135deg, var(--green-mid), var(--green));
  border-color: var(--green-mid);
  color: white;
  box-shadow: 0 8px 25px rgba(22,163,74,0.4);
  transform: translateY(-3px);
}

.btn-yic-accent {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  border-color: var(--gold);
  box-shadow: 0 4px 15px rgba(217,119,6,0.3);
}
.btn-yic-accent:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-color: var(--gold-dark);
  color: white;
  box-shadow: 0 8px 25px rgba(217,119,6,0.4);
  transform: translateY(-3px);
}

.btn-yic-outline-white {
  background: rgba(255,255,255,0.08);
  color: white;
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}
.btn-yic-outline-white:hover {
  background: rgba(255,255,255,0.18);
  color: white;
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255,255,255,0.1);
}

.btn-yic-outline-blue {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-yic-outline-blue:hover {
  background: var(--green);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.btn-yic-green {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: white;
  border-color: var(--green-dark);
  box-shadow: 0 4px 15px rgba(20,83,45,0.3);
}
.btn-yic-green:hover {
  background: linear-gradient(135deg, var(--green-deep), var(--green-dark));
  border-color: var(--green-deep);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(20,83,45,0.4);
}

/* ── Tags ── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 0.3rem 0.9rem;
  position: relative;
  overflow: hidden;
}

.tag::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: rgba(255,255,255,0.25);
  border-radius: 50px 50px 0 0;
  pointer-events: none;
}

.tag-blue   { background: linear-gradient(135deg, var(--green-xlight), var(--green-light)); color: var(--green-dark); }
.tag-orange { background: linear-gradient(135deg, var(--gold-light), #f0e0c0); color: var(--gold-dark); }
.tag-green  { background: linear-gradient(135deg, var(--green-light), #cde6d5); color: var(--green-dark); }
.tag-teal   { background: linear-gradient(135deg, var(--teal-light), #b8ddd4); color: var(--teal-dark); }
.tag-white  { background: rgba(255,255,255,0.15); color: white; border: 1px solid rgba(255,255,255,0.2); }

/* ── Section Base ── */
.section    { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-bg   { background: var(--light); }
.section-dark { background: var(--dark); }
.section-dark p { color: rgba(255,255,255,0.6); }
.section-head { margin-bottom: 3.5rem; }

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  color: var(--dark);
  margin-bottom: 0.75rem;
}
.section-title.white { color: white; }

.section-lead {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 560px;
}
.section-lead.wide { max-width: 720px; }
.section-lead.white { color: rgba(255,255,255,0.65); }

/* ── Hero ── */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--green-deep) 0%, var(--green-dark) 35%, var(--green-mid) 70%, var(--green) 100%);
  padding-top: 80px;
}

.hero-bg-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.15) translate(20px, -10px); }
}

.hero-shape-1 {
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(27,94,59,0.5) 0%, transparent 70%);
  top: -120px; right: -80px;
  animation-delay: 0s;
}
.hero-shape-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(26,122,109,0.4) 0%, transparent 70%);
  bottom: -100px; left: 80px;
  animation-delay: 2s;
}
.hero-shape-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(196,144,61,0.3) 0%, transparent 70%);
  top: 50%; left: -100px;
  animation-delay: 4s;
}
.hero-shape-4 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(76,175,80,0.3) 0%, transparent 70%);
  bottom: 20%; right: 30%;
  animation-delay: 1s;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}

.hero-content { position: relative; z-index: 2; color: white; padding: 3rem 0 4rem; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(27,94,59,0.3), rgba(26,122,109,0.2));
  border: 1px solid rgba(76,175,80,0.35);
  color: #cde6d5;
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  box-shadow: 0 4px 15px rgba(27,94,59,0.15);
  position: relative;
  overflow: hidden;
}

.hero-badge::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), transparent);
  pointer-events: none;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1.25rem;
  line-height: 1.1;
  text-shadow: 0 2px 40px rgba(22,163,74,0.2);
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--green-glow), #6fbf73, var(--green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

.hero-stats-panel {
  background: linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 2rem;
  backdrop-filter: blur(12px);
  position: relative; z-index: 2;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.08);
}

.hero-stats-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), transparent);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  pointer-events: none;
}

.hero-stat-item { text-align: center; padding: 1rem; position: relative; }

.hero-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: white;
  display: block;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(255,255,255,0.12);
}

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.35rem;
}

/* ── Counter ─ */
.counter-section {
  background: linear-gradient(135deg, var(--green-dark), var(--green), var(--teal));
  padding: 56px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(22,163,74,0.25);
}

.counter-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
}

.counter-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.counter-item { text-align: center; position: relative; z-index: 1; }

.counter-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: white;
  display: block;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(255,255,255,0.15);
}

.counter-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  margin-top: 0.5rem;
  font-weight: 500;
}

/* ── Cards ── */
.yic-card {
  background: linear-gradient(145deg, #FFFFFF, #f8faf9);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.yic-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(180deg, rgba(22,163,74,0.04), transparent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  pointer-events: none;
}

.yic-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(5,46,22,0.12), 0 4px 12px rgba(22,163,74,0.06);
  border-color: rgba(22,163,74,0.2);
}

.yic-card h4 { font-size: 1.1rem; color: var(--dark); margin-bottom: 0.4rem; }
.yic-card p  { font-size: 0.875rem; }

.card-icon-wrap {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.1rem;
  position: relative;
  overflow: hidden;
}

.card-icon-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: rgba(255,255,255,0.35);
  border-radius: var(--radius) var(--radius) 0 0;
  pointer-events: none;
}

.icon-blue   { background: linear-gradient(135deg, var(--green-xlight), var(--green-light)); color: var(--green-dark); }
.icon-orange { background: linear-gradient(135deg, var(--gold-light), #f0e0c0); color: var(--gold-dark); }
.icon-green  { background: linear-gradient(135deg, var(--green-light), #cde6d5); color: var(--green-dark); }
.icon-purple { background: linear-gradient(135deg, var(--teal-light), #b8ddd4); color: var(--teal-dark); }
.icon-teal   { background: linear-gradient(135deg, var(--teal-light), #b8ddd4); color: var(--teal-dark); }

/* ── Programme Cards ── */
.prog-card {
  background: linear-gradient(180deg, #FFFFFF, #fafbfb);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  text-decoration: none;
  display: block;
  color: var(--dark);
  height: 100%;
  position: relative;
}

.prog-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(180deg, rgba(22,163,74,0.04), transparent);
  pointer-events: none;
  z-index: 1;
}

.prog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(5,46,22,0.15), 0 8px 20px rgba(22,163,74,0.08);
  color: var(--dark);
  border-color: transparent;
}

.prog-card-header {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.prog-card-header::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.35), transparent);
  pointer-events: none;
}

.prog-card-header-emoji { font-size: 3.5rem; position: relative; z-index: 1; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1)); }

.prog-card-body { padding: 1.5rem 1.75rem 1.75rem; position: relative; }
.prog-card-body h4 { font-size: 1.15rem; margin-bottom: 0.4rem; color: var(--dark); }
.prog-card-body p  { font-size: 0.855rem; color: var(--gray); }

.prog-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  margin-top: 1rem;
  transition: gap 0.2s;
}
.prog-card:hover .prog-learn-more { gap: 0.7rem; }

/* ── Programme Detail Sections ── */
.prog-detail {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.prog-detail:last-child { border-bottom: none; }

.prog-icon-big {
  width: 80px; height: 80px;
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(5,46,22,0.1);
}

.prog-icon-big::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.4), transparent);
  pointer-events: none;
}

.prog-feature-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
}
.prog-feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--dark-2);
}
.prog-feature-list li:last-child { border-bottom: none; }
.prog-feature-list li i { font-size: 0.8rem; flex-shrink: 0; }

/* ── Page Hero ── */
.page-hero {
  background: linear-gradient(160deg, var(--green-deep) 0%, var(--green-dark) 35%, var(--green-mid) 70%, var(--green-deep) 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 30px rgba(27,94,59,0.4);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(22,163,74,0.3) 0%, rgba(13,148,136,0.15) 50%, transparent 70%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.page-hero-gloss {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34,197,94,0.4), transparent);
  pointer-events: none;
  z-index: 1;
}

.page-hero-content { position: relative; z-index: 1; color: white; }
.page-hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: white;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(22,163,74,0.25);
}
.page-hero-content p  { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

/* ── Breadcrumb ── */
.page-breadcrumb {
  position: relative; z-index: 1;
  display: flex; justify-content: center;
  gap: 0.5rem; align-items: center;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
}
.page-breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; }
.page-breadcrumb a:hover { color: rgba(255,255,255,0.75); }
.page-breadcrumb span { color: rgba(255,255,255,0.25); }
.page-breadcrumb .current { color: rgba(255,255,255,0.75); }

/* ── Impact Stats ── */
.stat-card {
  background: linear-gradient(145deg, #FFFFFF, #f8faf9);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(22,163,74,0.05), transparent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  pointer-events: none;
}

.stat-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(5,46,22,0.1); }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--green);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label { font-size: 0.85rem; color: var(--gray); line-height: 1.4; }

/* ── Data Bars ── */
.data-bar-item { margin-bottom: 1.5rem; }

.data-bar-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.45rem;
  font-size: 0.875rem;
}
.data-bar-label { color: var(--dark-2); font-weight: 500; }
.data-bar-value { color: var(--green); font-weight: 700; }

.data-bar-track {
  height: 10px;
  background: linear-gradient(180deg, #c8d9cc, #e2ece4);
  border-radius: 50px;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(5,46,22,0.06);
}
.data-bar-fill {
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--green), var(--green-glow));
  transition: width 1.5s cubic-bezier(0.4,0,0.2,1);
  width: 0%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(22,163,74,0.3);
}

.data-bar-fill::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: rgba(255,255,255,0.3);
  border-radius: 50px 50px 0 0;
  pointer-events: none;
}

.data-bar-fill.yellow { background: linear-gradient(90deg, var(--gold-dark), var(--gold)); box-shadow: 0 2px 8px rgba(196,144,61,0.3); }
.data-bar-fill.green  { background: linear-gradient(90deg, var(--green-dark), var(--green)); box-shadow: 0 2px 8px rgba(20,83,45,0.3); }
.data-bar-fill.teal   { background: linear-gradient(90deg, var(--teal-dark), var(--teal)); box-shadow: 0 2px 8px rgba(13,148,136,0.3); }

/* ── Highlight Block ── */
.highlight-block {
  background: linear-gradient(135deg, var(--green-dark), var(--green-deep), var(--green-deep));
  border-radius: var(--radius-xl);
  padding: 3rem 3.5rem;
  position: relative;
  overflow: hidden;
  color: white;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.highlight-block::before {
  content: '"';
  position: absolute;
  top: -20px; left: 28px;
  font-family: 'Playfair Display', serif;
  font-size: 12rem;
  color: rgba(22,163,74,0.1);
  line-height: 1;
  pointer-events: none;
}

.highlight-block::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34,197,94,0.35), transparent);
  pointer-events: none;
}

.highlight-block h2 { color: white; position: relative; z-index: 1; margin-bottom: 1rem; }
.highlight-block p  { font-size: 1.05rem; color: rgba(255,255,255,0.75); line-height: 1.7; position: relative; z-index: 1; }

/* ── Who We Are features ── */
.wwa-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.wwa-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green-xlight), var(--green-light));
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(22,163,74,0.12);
}

.wwa-icon::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: rgba(255,255,255,0.35);
  border-radius: 10px 10px 0 0;
  pointer-events: none;
}

.wwa-text h6 { font-family: 'Poppins', sans-serif; font-size: 0.9rem; font-weight: 600; color: var(--dark); margin-bottom: 0.2rem; }
.wwa-text p  { font-size: 0.855rem; margin: 0; }

/* ── Leader Cards ── */
.leader-card {
  background: linear-gradient(145deg, #FFFFFF, #f8faf9);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.leader-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(180deg, rgba(22,163,74,0.05), transparent);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  pointer-events: none;
}

.leader-card:hover { box-shadow: 0 16px 48px rgba(5,46,22,0.12); transform: translateY(-4px); }

.leader-avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(22,163,74,0.25);
}

.leader-avatar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: rgba(255,255,255,0.2);
  border-radius: 50% 50% 0 0;
  pointer-events: none;
}

.avatar-blue  { background: linear-gradient(135deg, var(--green), var(--green-glow)); }
.avatar-green { background: linear-gradient(135deg, var(--green-dark), var(--green)); }

.leader-role-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--green-xlight), var(--green-light));
  color: var(--green-dark);
  border-radius: 50px;
  padding: 0.3rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.875rem;
  position: relative;
  overflow: hidden;
}

.leader-name { font-size: 1.35rem; color: var(--dark); margin-bottom: 0.2rem; }
.leader-desc { font-size: 0.875rem; color: var(--gray); }

.cred-list { list-style: none; padding: 0; margin: 1.25rem 0 0; text-align: left; }
.cred-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--gray);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.cred-list li:last-child { border-bottom: none; }
.cred-list li i { color: var(--green); flex-shrink: 0; margin-top: 0.15rem; font-size: 0.75rem; }

/* ── Mission/Vision ── */
.mv-card {
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), transparent);
  pointer-events: none;
}

.mv-card-mission { background: linear-gradient(135deg, var(--green-dark), var(--green)); }
.mv-card-vision  { background: linear-gradient(135deg, var(--teal-dark), var(--teal)); }
.mv-card h3  { color: white; font-size: 1.3rem; margin-bottom: 0.75rem; }
.mv-card p   { color: rgba(255,255,255,0.85); font-size: 0.95rem; margin: 0; }
.mv-icon     { font-size: 2.5rem; margin-bottom: 1.25rem; }

/* ── Involvement Cards ── */
.involve-card {
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.involve-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(180deg, rgba(255,255,255,0.25), transparent);
  pointer-events: none;
}

.involve-card-blue   { background: linear-gradient(135deg, var(--green-xlight), var(--green-light)); border: 1px solid rgba(22,163,74,0.2); box-shadow: 0 4px 16px rgba(22,163,74,0.06); }
.involve-card-orange { background: linear-gradient(135deg, var(--gold-light), #f0e0c0); border: 1px solid rgba(196,144,61,0.2); box-shadow: 0 4px 16px rgba(196,144,61,0.06); }
.involve-card-green  { background: linear-gradient(135deg, var(--green-xlight), var(--green-light)); border: 1px solid rgba(27,94,59,0.2); box-shadow: 0 4px 16px rgba(27,94,59,0.06); }
.involve-card:hover  { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(5,46,22,0.12); }

.involve-icon {
  width: 68px; height: 68px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #FFFFFF, #f8faf9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 16px rgba(5,46,22,0.08), inset 0 1px 0 rgba(255,255,255,0.8);
  position: relative;
  overflow: hidden;
}

.involve-icon::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: rgba(255,255,255,0.5);
  border-radius: var(--radius) var(--radius) 0 0;
  pointer-events: none;
}

.involve-card h3 { font-size: 1.4rem; color: var(--dark); margin-bottom: 0.6rem; }
.involve-card p  { font-size: 0.9rem; color: var(--gray); margin-bottom: 1.5rem; }

.involve-list { list-style: none; padding: 0; margin: 0 0 1.75rem; }
.involve-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--dark-2);
  padding: 0.3rem 0;
}
.involve-list li i { font-size: 0.75rem; color: var(--green); }

/* ── UK Services ── */
.uk-service-card {
  background: linear-gradient(145deg, #FFFFFF, #f8faf9);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border-left: 4px solid var(--green);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.uk-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(22,163,74,0.04), transparent);
  pointer-events: none;
}

.uk-service-card:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(5,46,22,0.1);
}
.uk-service-card h5 { font-size: 1rem; color: var(--dark); margin-bottom: 0.35rem; }
.uk-service-card p  { font-size: 0.855rem; margin: 0; }

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(135deg, var(--green-dark), var(--green), var(--teal), var(--green-dark));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(22,163,74,0.2);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}

.cta-section .position-relative::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), transparent);
  pointer-events: none;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.cta-section h2 { color: white; text-shadow: 0 2px 10px rgba(0,0,0,0.15); }
.cta-section p  { color: rgba(255,255,255,0.85); }

/* ── Quote pull ── */
.impact-quote {
  border-left: 4px solid var(--green);
  padding: 1.25rem 1.75rem;
  background: linear-gradient(135deg, var(--green-xlight), var(--green-light));
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(22,163,74,0.06);
}

.impact-quote::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: rgba(255,255,255,0.3);
  pointer-events: none;
}

.impact-quote p { color: var(--dark-2); font-size: 1rem; font-style: italic; }

/* ── Number badge ── */
.number-badge {
  display: inline-flex;
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--green), var(--green-glow));
  color: white;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(22,163,74,0.3);
}

.number-badge::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: rgba(255,255,255,0.25);
  border-radius: 50% 50% 0 0;
  pointer-events: none;
}

/* ── Footer ── */
footer {
  background: linear-gradient(180deg, var(--green-deep), var(--green-dark));
  padding: 64px 0 28px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34,197,94,0.3), transparent);
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  font-weight: 800;
  color: white;
}
.footer-brand-name span { color: var(--gold); }

.footer-tagline {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  margin-top: 2px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-about {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.48);
  margin: 1.25rem 0;
  line-height: 1.7;
}

.footer-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 1.25rem;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.52);
  text-decoration: none;
  font-size: 0.875rem;
  padding: 0.3rem 0;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--green-glow); }
.footer-link i { font-size: 0.7rem; opacity: 0.5; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.58);
}
.footer-contact-item i { color: var(--gold); margin-top: 0.15rem; flex-shrink: 0; }

.social-links  { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.48);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.85rem;
  position: relative;
  overflow: hidden;
}

.social-btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: rgba(255,255,255,0.04);
  border-radius: 50% 50% 0 0;
  pointer-events: none;
}

.social-btn:hover {
  background: linear-gradient(135deg, var(--green), var(--green-glow));
  border-color: var(--green);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(22,163,74,0.3);
}

.company-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, rgba(27,94,59,0.25), rgba(26,122,109,0.15));
  border: 1px solid rgba(76,175,80,0.3);
  color: #cde6d5;
  border-radius: 50px;
  padding: 0.25rem 0.75rem;
  font-size: 0.74rem;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.company-badge::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: rgba(255,255,255,0.06);
  border-radius: 50px 50px 0 0;
  pointer-events: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  margin-top: 2.5rem;
}
.footer-bottom-text { font-size: 0.8rem; color: rgba(255,255,255,0.28); }

/* ── Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.anim-fade-up {
  opacity: 0;
  animation: fadeInUp 0.65s ease forwards;
}
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }

/* ── Responsive ─ */
@media (max-width: 991px) {
  .section { padding: 64px 0; }
  .hero { min-height: auto; padding-bottom: 56px; }
  .hero-content { padding: 2rem 0 2rem; }
}

@media (max-width: 767px) {
  .section { padding: 48px 0; }
  .page-hero { padding: 120px 0 60px; }
  .counter-section { padding: 40px 0; }
  .highlight-block { padding: 2rem 1.75rem; }
  .highlight-block::before { font-size: 7rem; }
  .involve-card { padding: 1.75rem; }
}

@media (max-width: 575px) {
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .btn-yic { width: 100%; justify-content: center; }
}
