/* ═══════════════════════════════════════════════
   BEENIE GUNTER CARE FOUNDATION — Global Styles
   ═══════════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ── */
:root {
   --orange: #E8590C;
   --orange2: #FF7A2F;
   --orange3: #FFA366;
   --orange-bg: #FFF4EE;
   --black: #0A0A0A;
   --dark: #1A1A1A;
   --dark2: #2A2A2A;
   --grey: #6B7280;
   --grey2: #9CA3AF;
   --light: #F3F4F6;
   --white: #FFFFFF;
   --shadow: 0 10px 40px rgba(0, 0, 0, .12);
   --shadow-o: 0 10px 40px rgba(232, 89, 12, .25);
   --radius: 12px;
   --radius2: 24px;
}

/* ── RESET & BASE ── */
*,
*::before,
*::after {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

html {
   scroll-behavior: smooth;
}

body {
   font-family: 'Open Sans', sans-serif;
   color: var(--dark);
   background: var(--white);
   overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
   font-family: 'Poppins', sans-serif;
}

a {
   text-decoration: none;
   color: inherit;
}

img {
   max-width: 100%;
   display: block;
}

/* ── LAYOUT ── */
.container {
   max-width: 1180px;
   margin: 0 auto;
   padding: 0 24px;
}

.section-pad {
   padding: 90px 0;
}

.text-center {
   text-align: center;
}

/* ── TYPOGRAPHY HELPERS ── */
.tag {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   font-family: 'Poppins', sans-serif;
   font-size: .72rem;
   font-weight: 700;
   letter-spacing: .18em;
   text-transform: uppercase;
   color: var(--orange);
   margin-bottom: 14px;
}

.tag::before {
   content: '';
   width: 28px;
   height: 2px;
   background: var(--orange);
}

.tag.center {
   justify-content: center;
}

h2.title {
   font-size: clamp(1.9rem, 3.5vw, 2.8rem);
   font-weight: 700;
   line-height: 1.2;
   margin-bottom: 16px;
   color: var(--black);
}

h2.title span {
   color: var(--orange);
}

.sub {
   font-size: 1.05rem;
   line-height: 1.8;
   color: var(--grey);
   max-width: 600px;
}

.sub.center {
   margin: 0 auto;
}

/* ── BUTTONS ── */
.btn {
   display: inline-flex;
   align-items: center;
   gap: 9px;
   font-family: 'Poppins', sans-serif;
   font-size: .88rem;
   font-weight: 600;
   letter-spacing: .04em;
   padding: 14px 28px;
   border: none;
   cursor: pointer;
   border-radius: 50px;
   transition: all .3s;
   text-decoration: none;
}

.btn-orange {
   background: var(--orange);
   color: var(--white);
}

.btn-orange:hover {
   background: var(--orange2);
   transform: translateY(-2px);
   box-shadow: var(--shadow-o);
}

.btn-white {
   background: var(--white);
   color: var(--orange);
   border: 2px solid var(--white);
}

.btn-white:hover {
   background: transparent;
   color: var(--white);
}

.btn-outline {
   background: transparent;
   color: var(--orange);
   border: 2px solid var(--orange);
}

.btn-outline:hover {
   background: var(--orange);
   color: var(--white);
}

.btn-dark {
   background: var(--dark);
   color: var(--white);
}

.btn-dark:hover {
   background: var(--black);
   transform: translateY(-2px);
}

/* ── ANIMATION ── */
.fade-up {
   opacity: 0;
   transform: translateY(36px);
   transition: opacity .7s ease, transform .7s ease;
}

.fade-up.visible {
   opacity: 1;
   transform: translateY(0);
}

/* ══════════════════════════════
   NAVIGATION
══════════════════════════════ */
nav {
   position: sticky;
   top: 0;
   z-index: 1000;
   background: rgba(255, 255, 255, .97);
   box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
   backdrop-filter: blur(12px);
}

.nav-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 12px 24px;
   max-width: 1180px;
   margin: 0 auto;
   gap: 20px;
}

.logo {
   display: flex;
   align-items: center;
   gap: 12px;
}

.logo img {
   height: 56px;
   width: auto;
}

.logo-text strong {
   font-family: 'Poppins', sans-serif;
   font-size: 1rem;
   font-weight: 700;
   color: var(--black);
   display: block;
   line-height: 1.2;
}

.logo-text span {
   font-size: .65rem;
   color: var(--orange);
   letter-spacing: .1em;
   text-transform: uppercase;
   font-weight: 600;
}

.nav-links {
   display: flex;
   gap: 4px;
   list-style: none;
   align-items: center;
}

.nav-links a {
   font-family: 'Poppins', sans-serif;
   font-size: .78rem;
   font-weight: 500;
   color: var(--dark2);
   padding: 8px 12px;
   border-radius: 8px;
   transition: .25s;
}

.nav-links a:hover,
.nav-links a.active {
   color: var(--orange);
   background: var(--orange-bg);
}

.nav-donate {
   background: var(--orange) !important;
   color: var(--white) !important;
   border-radius: 50px !important;
   padding: 10px 20px !important;
   font-weight: 700 !important;
}

.nav-donate:hover {
   background: var(--orange2) !important;
}

.hamburger {
   display: none;
   background: none;
   border: 2px solid var(--orange);
   color: var(--orange);
   width: 40px;
   height: 40px;
   border-radius: 8px;
   align-items: center;
   justify-content: center;
   font-size: 1rem;
   cursor: pointer;
}

.mob-menu {
   display: none;
   flex-direction: column;
   background: var(--white);
   border-top: 2px solid var(--orange-bg);
   box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
}

.mob-menu a {
   font-family: 'Poppins', sans-serif;
   font-size: .9rem;
   font-weight: 500;
   color: var(--dark2);
   padding: 14px 24px;
   border-bottom: 1px solid var(--light);
   transition: .2s;
}

.mob-menu a:hover {
   color: var(--orange);
   background: var(--orange-bg);
}

.mob-menu.open {
   display: flex;
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
   position: relative;
   min-height: 100vh;
   display: flex;
   align-items: center;
   overflow: hidden;
}

.hero-bg {
   position: absolute;
   inset: 0;
   background: url('../img/been.png') center/cover no-repeat;
}

.hero-overlay {
   position: absolute;
   inset: 0;
   background: linear-gradient(135deg, rgba(10, 10, 10, .90) 0%, rgba(232, 89, 12, .50) 100%);
}

.hero-content {
   position: relative;
   z-index: 2;
   padding: 140px 24px 80px;
   max-width: 1180px;
   margin: 0 auto;
   width: 100%;
}

.hero-badge {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: rgba(255, 255, 255, .12);
   border: 1px solid rgba(255, 255, 255, .25);
   padding: 7px 18px;
   border-radius: 50px;
   font-family: 'Poppins', sans-serif;
   font-size: .78rem;
   font-weight: 600;
   letter-spacing: .1em;
   text-transform: uppercase;
   color: var(--white);
   margin-bottom: 24px;
   backdrop-filter: blur(8px);
}

.hero-badge i {
   color: var(--orange3);
}

.hero h1 {
   font-size: clamp(2.4rem, 5.5vw, 4.6rem);
   font-weight: 800;
   line-height: 1.05;
   color: var(--white);
   margin-bottom: 16px;
   max-width: 860px;
}

.hero h1 span {
   color: var(--orange3);
}

.hero .hero-sub {
   font-size: clamp(1rem, 2vw, 1.3rem);
   color: rgba(255, 255, 255, .82);
   font-family: 'Poppins', sans-serif;
   font-weight: 300;
   margin-bottom: 36px;
   max-width: 640px;
}

.hero-btns {
   display: flex;
   gap: 14px;
   flex-wrap: wrap;
   margin-bottom: 60px;
}

.hero-pillars {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
   padding-top: 36px;
   border-top: 1px solid rgba(255, 255, 255, .15);
}

.hero-pillar {
   display: flex;
   align-items: center;
   gap: 10px;
   background: rgba(255, 255, 255, .08);
   border: 1px solid rgba(255, 255, 255, .15);
   border-radius: 50px;
   padding: 10px 20px;
   font-family: 'Poppins', sans-serif;
   font-size: .82rem;
   font-weight: 500;
   color: rgba(255, 255, 255, .85);
}

.hero-pillar i {
   color: var(--orange3);
}

.ngo-ribbon {
   position: absolute;
   top: 32px;
   right: 32px;
   z-index: 3;
   background: var(--orange);
   color: var(--white);
   font-family: 'Poppins', sans-serif;
   font-size: .7rem;
   font-weight: 700;
   letter-spacing: .12em;
   text-transform: uppercase;
   padding: 8px 20px;
   border-radius: 50px;
   box-shadow: 0 4px 20px rgba(232, 89, 12, .5);
}

/* ══════════════════════════════
   TRUST BAR
══════════════════════════════ */
.trust-bar {
   background: var(--black);
   padding: 20px 0;
   border-bottom: 3px solid var(--orange);
}

.trust-inner {
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 40px;
   flex-wrap: wrap;
}

.trust-item {
   display: flex;
   align-items: center;
   gap: 10px;
   font-family: 'Poppins', sans-serif;
   font-size: .82rem;
   font-weight: 500;
   color: rgba(255, 255, 255, .7);
}

.trust-item i {
   color: var(--orange);
   font-size: 1rem;
}

/* ══════════════════════════════
   PAGE HEADER (inner pages)
══════════════════════════════ */
.page-header {
   background: linear-gradient(135deg, rgba(10, 10, 10, .92) 0%, rgba(232, 89, 12, .60) 100%),
      url('../img/been.png') center/cover no-repeat;
   padding: 120px 0 70px;
   text-align: center;
   color: var(--white);
}

.page-header .tag {
   color: var(--orange3);
   justify-content: center;
}

.page-header .tag::before {
   background: var(--orange3);
}

.page-header h1 {
   font-size: clamp(2rem, 4vw, 3.4rem);
   font-weight: 800;
   color: var(--white);
   margin-bottom: 14px;
}

.page-header h1 span {
   color: var(--orange3);
}

.page-header p {
   font-size: 1.05rem;
   color: rgba(255, 255, 255, .75);
   max-width: 600px;
   margin: 0 auto;
}

/* ══════════════════════════════
   CARDS & GRIDS
══════════════════════════════ */
.card-grid-3 {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 24px;
   margin-top: 48px;
}

.card-grid-4 {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 20px;
   margin-top: 48px;
}

.card-grid-2 {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 24px;
   margin-top: 48px;
}

/* Info Card (light bg) */
.info-card {
   background: var(--white);
   border-radius: var(--radius2);
   border: 1.5px solid var(--light);
   padding: 32px 26px;
   transition: all .4s;
}

.info-card:hover {
   transform: translateY(-6px);
   box-shadow: 0 20px 50px rgba(0, 0, 0, .1);
   border-color: var(--orange);
}

.info-card .ic-icon {
   width: 56px;
   height: 56px;
   background: var(--orange-bg);
   border-radius: 14px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.4rem;
   color: var(--orange);
   margin-bottom: 18px;
   transition: .3s;
}

.info-card:hover .ic-icon {
   background: var(--orange);
   color: var(--white);
}

.info-card h3 {
   font-size: 1rem;
   font-weight: 700;
   color: var(--black);
   margin-bottom: 8px;
}

.info-card p {
   font-size: .87rem;
   line-height: 1.65;
   color: var(--grey);
}

/* Dark Card */
.dark-card {
   background: rgba(255, 255, 255, .04);
   border: 1px solid rgba(255, 255, 255, .08);
   border-radius: var(--radius2);
   padding: 32px 26px;
   transition: .4s;
   border-top: 3px solid transparent;
}

.dark-card:hover {
   border-top-color: var(--orange);
   background: rgba(232, 89, 12, .05);
}

.dark-card .dc-icon {
   width: 56px;
   height: 56px;
   background: rgba(232, 89, 12, .12);
   border-radius: 14px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.4rem;
   color: var(--orange);
   margin-bottom: 18px;
}

.dark-card h3 {
   font-size: 1rem;
   font-weight: 700;
   color: var(--white);
   margin-bottom: 8px;
}

.dark-card p {
   font-size: .87rem;
   line-height: 1.65;
   color: rgba(255, 255, 255, .5);
}

.dark-card .dc-tag {
   margin-top: 14px;
   display: inline-flex;
   align-items: center;
   gap: 6px;
   background: rgba(232, 89, 12, .12);
   color: var(--orange);
   font-family: 'Poppins', sans-serif;
   font-size: .72rem;
   font-weight: 600;
   padding: 5px 12px;
   border-radius: 50px;
}

/* ══════════════════════════════
   ABOUT SECTION
══════════════════════════════ */
.about {
   background: var(--white);
}

.about-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 70px;
   align-items: center;
}

.about-img-wrap {
   position: relative;
}

.about-img-main {
   border-radius: var(--radius2);
   overflow: hidden;
   aspect-ratio: 4/5;
}

.about-img-main img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.about-img-accent {
   position: absolute;
   bottom: -24px;
   right: -24px;
   width: 180px;
   border-radius: var(--radius);
   overflow: hidden;
   border: 4px solid var(--white);
   box-shadow: var(--shadow);
}

.about-founded {
   position: absolute;
   top: 24px;
   left: -20px;
   background: var(--orange);
   color: var(--white);
   padding: 18px 16px;
   border-radius: var(--radius);
   text-align: center;
   box-shadow: var(--shadow-o);
}

.about-founded .yr {
   font-family: 'Poppins', sans-serif;
   font-size: 1.8rem;
   font-weight: 800;
   display: block;
   line-height: 1;
}

.about-founded .lbl {
   font-size: .65rem;
   font-weight: 600;
   letter-spacing: .1em;
   text-transform: uppercase;
   opacity: .85;
}

/* ══════════════════════════════
   FOUNDER
══════════════════════════════ */
.founder {
   background: linear-gradient(135deg, var(--black) 0%, var(--dark) 100%);
   padding: 80px 0;
   position: relative;
   overflow: hidden;
}

.founder::before {
   content: '';
   position: absolute;
   top: -100px;
   right: -100px;
   width: 400px;
   height: 400px;
   background: var(--orange);
   border-radius: 50%;
   opacity: .05;
}

.founder-grid {
   display: grid;
   grid-template-columns: 1fr 1.4fr;
   gap: 60px;
   align-items: center;
}

.founder-img {
   position: relative;
}

.founder-img-wrap {
   border-radius: var(--radius2);
   overflow: hidden;
   aspect-ratio: 3/4;
   border: 3px solid rgba(232, 89, 12, .3);
}

.founder-img-wrap img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: top;
}

.founder-quote-mark {
   position: absolute;
   top: -20px;
   left: -20px;
   width: 60px;
   height: 60px;
   background: var(--orange);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 2rem;
   color: var(--white);
   font-family: 'Georgia', serif;
   box-shadow: var(--shadow-o);
}

.founder-content {
   color: var(--white);
}

.founder-content .tag {
   color: var(--orange3);
}

.founder-content .tag::before {
   background: var(--orange3);
}

.founder-content h2 {
   color: var(--white);
}

.founder-content h2 span {
   color: var(--orange3);
}

.founder-message {
   background: rgba(255, 255, 255, .05);
   border: 1px solid rgba(255, 255, 255, .1);
   border-left: 3px solid var(--orange);
   padding: 24px;
   border-radius: 0 var(--radius) var(--radius) 0;
   margin: 20px 0;
}

.founder-message p {
   font-style: italic;
   font-size: 1.05rem;
   line-height: 1.8;
   color: rgba(255, 255, 255, .8);
}

.founder-sig {
   font-family: 'Poppins', sans-serif;
   font-weight: 700;
   color: var(--orange3);
   margin-top: 12px;
   font-size: .9rem;
}

.founder-meta {
   display: flex;
   gap: 20px;
   flex-wrap: wrap;
   margin-top: 24px;
}

.founder-meta-item {
   display: flex;
   align-items: center;
   gap: 10px;
}

.founder-meta-icon {
   width: 46px;
   height: 46px;
   background: rgba(232, 89, 12, .12);
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--orange);
}

.founder-meta-lbl {
   font-size: .72rem;
   color: rgba(255, 255, 255, .45);
   font-family: 'Poppins', sans-serif;
   letter-spacing: .1em;
   text-transform: uppercase;
}

.founder-meta-val {
   color: var(--white);
   font-weight: 600;
   font-size: .9rem;
}

/* ══════════════════════════════
   VMO — Vision Mission Objectives
══════════════════════════════ */
.vmo {
   background: var(--light);
}

.vmo-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 24px;
   margin-top: 48px;
}

.vmo-card {
   border-radius: var(--radius2);
   padding: 36px 28px;
   transition: .4s;
}

.vmo-card.vision {
   background: var(--orange);
   color: var(--white);
}

.vmo-card.mission {
   background: var(--dark);
   color: var(--white);
}

.vmo-card.values {
   background: var(--white);
   border: 2px solid var(--light);
}

.vmo-card:hover {
   transform: translateY(-6px);
   box-shadow: var(--shadow);
}

.vmo-icon {
   width: 60px;
   height: 60px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.6rem;
   margin-bottom: 20px;
}

.vision .vmo-icon {
   background: rgba(255, 255, 255, .2);
   color: var(--white);
}

.mission .vmo-icon {
   background: rgba(232, 89, 12, .2);
   color: var(--orange3);
}

.values .vmo-icon {
   background: var(--orange-bg);
   color: var(--orange);
}

.vmo-card h3 {
   font-size: 1.15rem;
   font-weight: 700;
   margin-bottom: 14px;
}

.vision h3,
.mission h3 {
   color: var(--white);
}

.values h3 {
   color: var(--black);
}

.vmo-card p,
.vmo-card li {
   font-size: .9rem;
   line-height: 1.7;
}

.vision p,
.mission p {
   color: rgba(255, 255, 255, .85);
}

.vmo-card ul {
   list-style: none;
   display: flex;
   flex-direction: column;
   gap: 8px;
}

.vmo-card ul li {
   display: flex;
   align-items: center;
   gap: 8px;
   color: var(--grey);
}

.vmo-card ul li i {
   color: var(--orange);
   font-size: .8rem;
}

/* ══════════════════════════════
   OBJECTIVES
══════════════════════════════ */
.objectives {
   background: var(--white);
}

.obj-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
   gap: 20px;
   margin-top: 48px;
}

.obj-card {
   background: var(--white);
   border: 1.5px solid var(--light);
   border-radius: var(--radius2);
   padding: 28px 22px;
   transition: .4s;
   text-align: center;
}

.obj-card:hover {
   border-color: var(--orange);
   transform: translateY(-5px);
   box-shadow: 0 16px 40px rgba(232, 89, 12, .12);
}

.obj-card .oc-icon {
   width: 64px;
   height: 64px;
   background: var(--orange-bg);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.5rem;
   color: var(--orange);
   margin: 0 auto 16px;
   transition: .3s;
}

.obj-card:hover .oc-icon {
   background: var(--orange);
   color: var(--white);
}

.obj-card h4 {
   font-size: .95rem;
   font-weight: 700;
   color: var(--black);
   margin-bottom: 8px;
}

.obj-card p {
   font-size: .83rem;
   line-height: 1.6;
   color: var(--grey);
}

/* ══════════════════════════════
   STRATEGIES / PROGRAMMES
══════════════════════════════ */
.strategies {
   background: var(--white);
}

.strat-tabs {
   display: flex;
   gap: 8px;
   flex-wrap: wrap;
   margin-bottom: 40px;
}

.strat-tab {
   font-family: 'Poppins', sans-serif;
   font-size: .82rem;
   font-weight: 600;
   padding: 10px 20px;
   border-radius: 50px;
   border: 2px solid var(--light);
   background: var(--white);
   color: var(--grey);
   cursor: pointer;
   transition: .3s;
}

.strat-tab.active,
.strat-tab:hover {
   background: var(--orange);
   border-color: var(--orange);
   color: var(--white);
}

.strat-panel {
   display: none;
}

.strat-panel.active {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
   gap: 20px;
}

.strat-item {
   display: flex;
   align-items: flex-start;
   gap: 14px;
   padding: 20px;
   background: var(--light);
   border-radius: var(--radius);
   transition: .3s;
}

.strat-item:hover {
   background: var(--orange-bg);
}

.strat-item i {
   font-size: 1.2rem;
   color: var(--orange);
   margin-top: 2px;
   flex-shrink: 0;
}

.strat-item div strong {
   display: block;
   font-family: 'Poppins', sans-serif;
   font-size: .9rem;
   font-weight: 700;
   color: var(--black);
   margin-bottom: 4px;
}

.strat-item div span {
   font-size: .83rem;
   line-height: 1.6;
   color: var(--grey);
}

/* ══════════════════════════════
   SIGNATURE PROGRAMS
══════════════════════════════ */
.signature {
   background: linear-gradient(135deg, var(--black), var(--dark));
}

/* ══════════════════════════════
   OUTCOMES / IMPACT
══════════════════════════════ */
.outcomes {
   background: var(--orange);
}

.outcomes-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 24px;
   margin-top: 48px;
}

.outcome-card {
   background: rgba(255, 255, 255, .12);
   border: 1px solid rgba(255, 255, 255, .2);
   border-radius: var(--radius2);
   padding: 32px 26px;
   transition: .3s;
}

.outcome-card:hover {
   background: rgba(255, 255, 255, .2);
}

.outcome-card h3 {
   font-family: 'Poppins', sans-serif;
   font-size: 1rem;
   font-weight: 700;
   color: var(--white);
   margin-bottom: 14px;
   display: flex;
   align-items: center;
   gap: 10px;
}

.outcome-card ul {
   list-style: none;
   display: flex;
   flex-direction: column;
   gap: 8px;
}

.outcome-card ul li {
   font-size: .87rem;
   color: rgba(255, 255, 255, .8);
   display: flex;
   align-items: flex-start;
   gap: 8px;
   line-height: 1.5;
}

.outcome-card ul li i {
   color: rgba(255, 255, 255, .5);
   margin-top: 3px;
   flex-shrink: 0;
}

/* ══════════════════════════════
   MONITORING & EVALUATION
══════════════════════════════ */
.monitoring {
   background: var(--light);
}

.me-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
   gap: 20px;
   margin-top: 48px;
}

.me-card {
   background: var(--white);
   border-radius: var(--radius2);
   padding: 28px 20px;
   text-align: center;
   box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
   transition: .3s;
}

.me-card:hover {
   transform: translateY(-4px);
   box-shadow: var(--shadow);
}

.me-card i {
   font-size: 2rem;
   color: var(--orange);
   margin-bottom: 12px;
   display: block;
}

.me-card h4 {
   font-size: .92rem;
   font-weight: 700;
   color: var(--black);
   margin-bottom: 6px;
}

.me-card p {
   font-size: .82rem;
   color: var(--grey);
   line-height: 1.5;
}

/* ══════════════════════════════
   IMPLEMENTATION
══════════════════════════════ */
.implementation {
   background: var(--black);
   position: relative;
   overflow: hidden;
}

.impl-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 24px;
   margin-top: 48px;
   position: relative;
}

/* ══════════════════════════════
   SUSTAINABILITY
══════════════════════════════ */
.sustainability {
   background: var(--white);
}

/* ══════════════════════════════
   BUDGET
══════════════════════════════ */
.budget-section {
   background: var(--light);
}

.budget-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
   align-items: center;
   margin-top: 48px;
}

.budget-bars {
   display: flex;
   flex-direction: column;
   gap: 20px;
}

.b-row {
   display: flex;
   align-items: center;
   gap: 14px;
}

.b-label {
   font-family: 'Poppins', sans-serif;
   font-size: .88rem;
   font-weight: 600;
   color: var(--dark);
   min-width: 180px;
}

.b-track {
   flex: 1;
   background: rgba(0, 0, 0, .08);
   height: 12px;
   border-radius: 6px;
   overflow: hidden;
}

.b-fill {
   height: 100%;
   border-radius: 6px;
   transition: width 1.5s ease;
}

.b-pct {
   font-family: 'Poppins', sans-serif;
   font-size: .9rem;
   font-weight: 700;
   color: var(--dark);
   min-width: 36px;
   text-align: right;
}

.funding-box {
   background: var(--orange);
   border-radius: var(--radius2);
   padding: 40px 36px;
   color: var(--white);
   text-align: center;
}

.funding-box .amount {
   font-family: 'Poppins', sans-serif;
   font-size: 2.6rem;
   font-weight: 800;
   line-height: 1;
   margin: 16px 0 8px;
}

.funding-box .period {
   font-size: .88rem;
   opacity: .8;
   margin-bottom: 24px;
}

/* ══════════════════════════════
   PARTNERSHIP CTA
══════════════════════════════ */
.partnership-cta {
   background: var(--dark);
}

.partner-types {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
   gap: 16px;
   margin-top: 40px;
}

.partner-type {
   background: rgba(255, 255, 255, .05);
   border: 1px solid rgba(255, 255, 255, .08);
   border-radius: var(--radius);
   padding: 22px 18px;
   text-align: center;
   transition: .3s;
}

.partner-type:hover {
   background: rgba(232, 89, 12, .1);
   border-color: var(--orange);
}

.partner-type i {
   font-size: 1.6rem;
   color: var(--orange);
   display: block;
   margin-bottom: 10px;
}

.partner-type span {
   font-family: 'Poppins', sans-serif;
   font-size: .82rem;
   font-weight: 600;
   color: rgba(255, 255, 255, .7);
}

/* ══════════════════════════════
   GET INVOLVED
══════════════════════════════ */
.getinvolved {
   background: var(--light);
}

.involve-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 24px;
   margin-top: 48px;
}

.inv-card {
   background: var(--white);
   border-radius: var(--radius2);
   padding: 40px 32px;
   text-align: center;
   border: 2px solid transparent;
   transition: .4s;
   box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
}

.inv-card:hover {
   border-color: var(--orange);
   transform: translateY(-6px);
   box-shadow: var(--shadow-o);
}

.inv-icon-wrap {
   width: 80px;
   height: 80px;
   background: var(--orange-bg);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.8rem;
   color: var(--orange);
   margin: 0 auto 20px;
   transition: .3s;
}

.inv-card:hover .inv-icon-wrap {
   background: var(--orange);
   color: var(--white);
}

.inv-card h3 {
   font-size: 1.2rem;
   font-weight: 700;
   color: var(--black);
   margin-bottom: 10px;
}

.inv-card p {
   font-size: .9rem;
   line-height: 1.7;
   color: var(--grey);
   margin-bottom: 24px;
}

/* ══════════════════════════════
   DONATION / PAYMENT DETAILS
══════════════════════════════ */
.donate-details {
   margin-top: 56px;
}

.donate-details-header {
   text-align: center;
   margin-bottom: 32px;
}

.donate-details-header h3 {
   font-family: 'Poppins', sans-serif;
   font-size: 1.4rem;
   font-weight: 700;
   color: var(--black);
   margin-bottom: 8px;
}

.donate-details-header p {
   font-size: .92rem;
   color: var(--grey);
}

.donate-channels {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 24px;
}

.donate-channel {
   background: var(--white);
   border-radius: var(--radius2);
   border: 2px solid var(--light);
   overflow: hidden;
   box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
   transition: .4s;
}

.donate-channel:hover {
   border-color: var(--orange);
   box-shadow: 0 12px 40px rgba(232, 89, 12, .12);
   transform: translateY(-4px);
}

.dc-header {
   display: flex;
   align-items: center;
   gap: 14px;
   padding: 20px 26px;
   border-bottom: 1.5px solid var(--light);
}

.dc-logo {
   width: 52px;
   height: 52px;
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
   overflow: hidden;
}

.dc-logo img {
   width: 100%;
   height: 100%;
   object-fit: contain;
}

.dc-header-text strong {
   font-family: 'Poppins', sans-serif;
   font-size: 1rem;
   font-weight: 700;
   color: var(--black);
   display: block;
}

.dc-header-text span {
   font-size: .78rem;
   color: var(--grey);
   font-weight: 500;
}

.dc-body {
   padding: 22px 26px;
   display: flex;
   flex-direction: column;
   gap: 14px;
}

.dc-row {
   display: flex;
   align-items: center;
   gap: 12px;
}

.dc-row-icon {
   width: 36px;
   height: 36px;
   background: var(--orange-bg);
   border-radius: 10px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--orange);
   font-size: .9rem;
   flex-shrink: 0;
}

.dc-row-info {
   flex: 1;
}

.dc-row-info label {
   font-family: 'Poppins', sans-serif;
   font-size: .72rem;
   font-weight: 700;
   letter-spacing: .08em;
   text-transform: uppercase;
   color: var(--grey2);
   display: block;
   margin-bottom: 2px;
}

.dc-row-info span {
   font-family: 'Poppins', sans-serif;
   font-size: .95rem;
   font-weight: 700;
   color: var(--black);
}

.dc-copy {
   background: none;
   border: none;
   cursor: pointer;
   color: var(--grey2);
   font-size: .85rem;
   padding: 6px;
   border-radius: 6px;
   transition: .25s;
   margin-left: auto;
}

.dc-copy:hover {
   color: var(--orange);
   background: var(--orange-bg);
}

.mobile-channels {
   display: flex;
   flex-direction: column;
   gap: 14px;
}

.mobile-item {
   display: flex;
   align-items: center;
   gap: 12px;
   background: var(--light);
   border-radius: 14px;
   padding: 14px 16px;
   transition: .3s;
}

.mobile-item:hover {
   background: var(--orange-bg);
}

.mobile-item-logo {
   width: 44px;
   height: 44px;
   border-radius: 10px;
   display: flex;
   align-items: center;
   justify-content: center;
   overflow: hidden;
   flex-shrink: 0;
}

.mobile-item-logo img {
   width: 100%;
   height: 100%;
   object-fit: contain;
}

.mobile-item-info {
   flex: 1;
}

.mobile-item-info label {
   font-family: 'Poppins', sans-serif;
   font-size: .72rem;
   font-weight: 700;
   letter-spacing: .08em;
   text-transform: uppercase;
   color: var(--grey2);
   display: block;
   margin-bottom: 2px;
}

.mobile-item-info span {
   font-family: 'Poppins', sans-serif;
   font-size: 1rem;
   font-weight: 700;
   color: var(--black);
}

.mobile-copy {
   background: none;
   border: none;
   cursor: pointer;
   color: var(--grey2);
   font-size: .85rem;
   padding: 6px;
   border-radius: 6px;
   transition: .25s;
}

.mobile-copy:hover {
   color: var(--orange);
   background: rgba(232, 89, 12, .1);
}

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
.contact {
   background: var(--white);
}

.contact-grid {
   display: grid;
   grid-template-columns: 1fr 1.2fr;
   gap: 60px;
}

.ci {
   display: flex;
   align-items: flex-start;
   gap: 16px;
   margin-bottom: 18px;
}

.ci-icon {
   width: 46px;
   height: 46px;
   min-width: 46px;
   background: var(--orange-bg);
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--orange);
   font-size: 1.05rem;
}

.ci-text strong {
   display: block;
   font-family: 'Poppins', sans-serif;
   font-size: .82rem;
   font-weight: 700;
   margin-bottom: 2px;
   color: var(--black);
}

.ci-text span,
.ci-text a {
   font-size: .9rem;
   color: var(--grey);
}

.ci-text a:hover {
   color: var(--orange);
}

.socials {
   display: flex;
   gap: 10px;
   margin-top: 24px;
}

.socials a {
   width: 42px;
   height: 42px;
   background: var(--light);
   border-radius: 10px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--grey);
   font-size: .95rem;
   transition: .3s;
}

.socials a:hover {
   background: var(--orange);
   color: var(--white);
}

.contact-form-wrap {
   background: var(--light);
   border-radius: var(--radius2);
   padding: 40px;
}

.form-group {
   margin-bottom: 18px;
}

.form-group label {
   display: block;
   font-family: 'Poppins', sans-serif;
   font-size: .78rem;
   font-weight: 600;
   color: var(--dark2);
   margin-bottom: 7px;
   letter-spacing: .04em;
}

.form-group input,
.form-group textarea,
.form-group select {
   width: 100%;
   background: var(--white);
   border: 2px solid transparent;
   border-radius: 10px;
   padding: 13px 16px;
   font-family: 'Open Sans', sans-serif;
   font-size: .92rem;
   color: var(--dark);
   outline: none;
   transition: .3s;
}

.form-group input:focus,
.form-group textarea:focus {
   border-color: var(--orange);
   box-shadow: 0 0 0 4px rgba(232, 89, 12, .08);
}

.form-group textarea {
   resize: vertical;
   min-height: 110px;
}

.form-row {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 14px;
}

/* ══════════════════════════════
   NEWSLETTER BAR
══════════════════════════════ */
.newsletter {
   background: linear-gradient(135deg, var(--orange), var(--orange2));
   padding: 60px 0;
}

.newsletter-inner {
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 30px;
   flex-wrap: wrap;
}

.newsletter h2 {
   font-size: 1.8rem;
   color: var(--white);
   font-weight: 700;
}

.newsletter p {
   color: rgba(255, 255, 255, .8);
   font-size: .95rem;
   margin-top: 6px;
}

.nl-form {
   display: flex;
   gap: 0;
   max-width: 460px;
   width: 100%;
}

.nl-form input {
   flex: 1;
   background: rgba(255, 255, 255, .15);
   border: 2px solid rgba(255, 255, 255, .3);
   border-right: none;
   border-radius: 50px 0 0 50px;
   padding: 14px 22px;
   font-family: 'Open Sans', sans-serif;
   font-size: .92rem;
   color: var(--white);
   outline: none;
}

.nl-form input::placeholder {
   color: rgba(255, 255, 255, .6);
}

.nl-form button {
   background: var(--white);
   color: var(--orange);
   border: none;
   cursor: pointer;
   padding: 14px 24px;
   border-radius: 0 50px 50px 0;
   font-family: 'Poppins', sans-serif;
   font-size: .85rem;
   font-weight: 700;
   transition: .3s;
   white-space: nowrap;
}

.nl-form button:hover {
   background: var(--black);
   color: var(--white);
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
   background: var(--black);
}

.footer-top {
   padding: 70px 0 50px;
}

.footer-grid {
   display: grid;
   grid-template-columns: 2fr 1fr 1fr 1.2fr;
   gap: 40px;
}

.footer-brand p {
   font-size: .88rem;
   line-height: 1.75;
   color: rgba(255, 255, 255, .45);
   margin: 14px 0 22px;
}

.footer-logo {
   display: flex;
   align-items: center;
   gap: 12px;
}

.footer-logo img {
   height: 52px;
   filter: brightness(1.1);
}

.footer-logo .logo-text strong {
   color: var(--white);
}

.footer-logo .logo-text span {
   color: var(--orange);
}

.footer-socials {
   display: flex;
   gap: 8px;
}

.footer-socials a {
   width: 36px;
   height: 36px;
   background: rgba(255, 255, 255, .06);
   border: 1px solid rgba(255, 255, 255, .1);
   border-radius: 8px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: rgba(255, 255, 255, .45);
   font-size: .85rem;
   transition: .3s;
}

.footer-socials a:hover {
   background: var(--orange);
   border-color: var(--orange);
   color: var(--white);
}

.footer-col h4 {
   font-family: 'Poppins', sans-serif;
   font-size: .82rem;
   font-weight: 700;
   letter-spacing: .12em;
   text-transform: uppercase;
   color: var(--orange);
   margin-bottom: 18px;
   padding-bottom: 10px;
   border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.footer-col ul {
   list-style: none;
   display: flex;
   flex-direction: column;
   gap: 10px;
}

.footer-col ul a {
   color: rgba(255, 255, 255, .45);
   font-size: .88rem;
   transition: .25s;
   display: flex;
   align-items: center;
   gap: 8px;
}

.footer-col ul a:hover {
   color: var(--orange);
   padding-left: 4px;
}

.footer-col ul a i {
   font-size: .65rem;
   color: var(--orange);
}

.footer-divider {
   height: 1px;
   background: rgba(255, 255, 255, .07);
}

.footer-bottom {
   max-width: 1180px;
   margin: 0 auto;
   display: flex;
   justify-content: space-between;
   align-items: center;
   flex-wrap: wrap;
   gap: 10px;
   padding: 20px 24px;
   font-size: .8rem;
   color: rgba(255, 255, 255, .3);
}

.footer-bottom a {
   color: rgba(255, 255, 255, .3);
   transition: .2s;
}

.footer-bottom a:hover {
   color: var(--orange);
}

/* ══════════════════════════════
   FLOATING ELEMENTS
══════════════════════════════ */
.float-donate {
   position: fixed;
   bottom: 28px;
   right: 28px;
   z-index: 999;
   display: flex;
   align-items: center;
   gap: 10px;
   background: var(--orange);
   color: var(--white);
   font-family: 'Poppins', sans-serif;
   font-size: .82rem;
   font-weight: 700;
   padding: 13px 22px;
   border-radius: 50px;
   box-shadow: var(--shadow-o);
   text-decoration: none;
   animation: pulse-d 2.5s infinite;
   transition: .3s;
}

.float-donate:hover {
   background: var(--orange2);
   transform: scale(1.06);
}

@keyframes pulse-d {

   0%,
   100% {
      box-shadow: var(--shadow-o);
   }

   50% {
      box-shadow: 0 10px 60px rgba(232, 89, 12, .55);
   }
}

.float-top {
   position: fixed;
   bottom: 100px;
   right: 28px;
   z-index: 999;
   width: 44px;
   height: 44px;
   background: rgba(232, 89, 12, .15);
   border: 2px solid var(--orange);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--orange);
   cursor: pointer;
   font-size: .95rem;
   opacity: 0;
   pointer-events: none;
   transition: .4s;
}

.float-top.show {
   opacity: 1;
   pointer-events: auto;
}

.float-top:hover {
   background: var(--orange);
   color: var(--white);
}

/* ══════════════════════════════
   TOAST NOTIFICATION
══════════════════════════════ */
#toast {
   position: fixed;
   bottom: 32px;
   left: 50%;
   transform: translateX(-50%) translateY(20px);
   background: var(--dark);
   color: var(--white);
   padding: 14px 24px;
   border-radius: 50px;
   font-family: 'Poppins', sans-serif;
   font-size: .88rem;
   font-weight: 500;
   box-shadow: 0 10px 40px rgba(0, 0, 0, .3);
   z-index: 2000;
   opacity: 0;
   transition: .4s;
   pointer-events: none;
   display: flex;
   align-items: center;
   gap: 10px;
   border-left: 3px solid var(--orange);
}

#toast.show {
   opacity: 1;
   transform: translateX(-50%) translateY(0);
}

#toast i {
   color: var(--orange);
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {

   .card-grid-3,
   .vmo-grid,
   .outcomes-grid,
   .impl-grid {
      grid-template-columns: repeat(2, 1fr);
   }

   .card-grid-4 {
      grid-template-columns: repeat(2, 1fr);
   }

   .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 28px;
   }
}

@media (max-width: 768px) {
   .nav-links {
      display: none;
   }

   .hamburger {
      display: flex;
   }

   .about-grid,
   .founder-grid,
   .budget-grid,
   .contact-grid {
      grid-template-columns: 1fr;
   }

   .involve-grid,
   .card-grid-3,
   .vmo-grid,
   .outcomes-grid,
   .impl-grid {
      grid-template-columns: 1fr;
   }

   .card-grid-4 {
      grid-template-columns: 1fr 1fr;
   }

   .about-img-accent,
   .about-founded {
      display: none;
   }

   .footer-grid {
      grid-template-columns: 1fr;
   }

   .form-row {
      grid-template-columns: 1fr;
   }

   .newsletter-inner {
      flex-direction: column;
      text-align: center;
   }

   .nl-form {
      max-width: 100%;
   }

   .section-pad {
      padding: 70px 0;
   }

   .ngo-ribbon {
      top: 16px;
      right: 16px;
      font-size: .65rem;
      padding: 6px 14px;
   }

   .donate-channels {
      grid-template-columns: 1fr;
   }
}

@media (max-width: 480px) {
   .hero h1 {
      font-size: 2rem;
   }

   .hero-btns {
      flex-direction: column;
   }

   .hero-btns .btn {
      justify-content: center;
   }

   .card-grid-4 {
      grid-template-columns: 1fr;
   }

   .float-donate span {
      display: none;
   }

   .float-donate {
      padding: 15px;
   }
}

/* ══════════════════════════════
   SPONSORS SECTION
══════════════════════════════ */
.sponsors-section { background: var(--white); }

/* flat responsive grid — all sponsors visible */
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.sponsor-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 2px solid var(--light);
  border-radius: var(--radius2);
  padding: 28px 20px;
  text-align: center;
  transition: .3s;
}
.sponsor-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(232,89,12,.12);
}

.sponsor-card-logo {
  width: 100%;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sponsor-card-logo img {
  max-height: 80px;
  max-width: 150px;
  width: 100%;
  object-fit: contain;
  filter: grayscale(.3);
  transition: filter .3s;
}
.sponsor-card:hover .sponsor-card-logo img { filter: grayscale(0); }

.sponsor-card-name {
  font-family: 'Poppins', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  color: var(--dark2);
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .sponsors-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .sponsors-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 380px) {
  .sponsors-grid { grid-template-columns: 1fr; }
}

/* (sponsor tier group styles removed — replaced by flat sponsors-grid) */
