/* ============================================================
   MUSHTAQ DEVELOPMENT FOUNDATION — Main Stylesheet
   ============================================================ */

   @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600;700&display=swap');

   /* ── RESET & BASE ── */
   *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
   
   :root {
     --blue:        #1a4fa0;
     --blue-dark:   #0c2d6b;
     --blue-mid:    #1e5bb8;
     --blue-light:  #3a7bd5;
     --red:         #c0392b;
     --red-light:   #e04535;
     --gold:        #c9a84c;
     --gold-light:  #e2c572;
     --cream:       #f8f6f1;
     --cream-dark:  #eeebe3;
     --white:       #ffffff;
     --text:        #111827;
     --text-mid:    #374151;
     --text-muted:  #6b7280;
     --border:      rgba(26, 79, 160, 0.1);
     --shadow-sm:   0 2px 12px rgba(12,45,107,0.08);
     --shadow-md:   0 8px 32px rgba(12,45,107,0.14);
     --shadow-lg:   0 20px 60px rgba(12,45,107,0.2);
     --radius:      10px;
     --pad-x:       clamp(20px, 6vw, 88px);
     --pad-y:       clamp(64px, 9vw, 120px);
     --nav-h:       72px;
   }
   
   html { scroll-behavior: smooth; font-size: 16px; }
   
   body {
     font-family: 'Outfit', sans-serif;
     background: var(--cream);
     color: var(--text);
     overflow-x: hidden;
     -webkit-font-smoothing: antialiased;
   }
   
   img { display: block; max-width: 100%; }
   a  { text-decoration: none; }
   ul { list-style: none; }
   
   ::-webkit-scrollbar { width: 5px; }
   ::-webkit-scrollbar-track { background: var(--cream); }
   ::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }
   
   /* ── UTILITY ── */
   .container {
     width: 100%;
     max-width: 1240px;
     margin: 0 auto;
     padding: 0 var(--pad-x);
   }
   
   .section-label {
     display: inline-flex; align-items: center; gap: 10px;
     font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
     color: var(--red); font-weight: 600; margin-bottom: 14px;
   }
   .section-label::before {
     content: ''; display: block;
     width: 28px; height: 2px; background: currentColor;
   }
   
   .section-title {
     font-family: 'Cormorant Garamond', serif;
     font-size: clamp(30px, 4vw, 52px);
     line-height: 1.1; color: var(--blue-dark);
     margin-bottom: 18px;
   }
   .section-title em { color: var(--red); font-style: italic; }
   
   .section-sub {
     color: var(--text-muted);
     font-size: clamp(15px, 1.4vw, 17px);
     line-height: 1.75; max-width: 540px;
   }
   
   /* ── BUTTONS ── */
   .btn {
     display: inline-flex; align-items: center; gap: 8px;
     padding: 13px 32px; border-radius: 5px;
     font-family: 'Outfit', sans-serif;
     font-size: 12px; font-weight: 600;
     letter-spacing: 1.5px; text-transform: uppercase;
     cursor: pointer; border: none;
     transition: transform 0.28s cubic-bezier(.34,1.56,.64,1), box-shadow 0.28s, background 0.25s;
   }
   .btn:hover { transform: translateY(-3px); }
   .btn:active { transform: translateY(0); }
   
   .btn-primary {
     background: var(--red); color: var(--white);
     box-shadow: 0 5px 20px rgba(192,57,43,0.38);
   }
   .btn-primary:hover { background: var(--red-light); box-shadow: 0 10px 30px rgba(192,57,43,0.46); }
   
   .btn-outline {
     background: transparent; color: var(--white);
     border: 1.5px solid rgba(255,255,255,0.45);
   }
   .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
   
   .btn-blue {
     background: var(--blue); color: var(--white);
     box-shadow: 0 5px 20px rgba(26,79,160,0.32);
   }
   .btn-blue:hover { background: var(--blue-mid); box-shadow: 0 10px 30px rgba(26,79,160,0.4); }
   
   /* ── SCROLL REVEAL ── */
   .reveal {
     opacity: 0;
     transform: translateY(36px);
     transition: opacity 0.75s cubic-bezier(.4,0,.2,1), transform 0.75s cubic-bezier(.4,0,.2,1);
   }
   .reveal.visible { opacity: 1; transform: translateY(0); }
   
   /* ================================================================
      NAVIGATION
      ================================================================ */
   #nav {
     position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
     height: var(--nav-h);
     display: flex; align-items: center;
     padding: 0 var(--pad-x);
     background: rgba(8, 22, 56, 0.97);
     backdrop-filter: blur(14px);
     border-bottom: 1px solid rgba(201,168,76,0.18);
     transition: height 0.3s, background 0.3s;
   }
   #nav.scrolled { height: 60px; background: rgba(8,22,56,0.99); }
   
   .nav-inner {
     display: flex; align-items: center;
     justify-content: space-between; width: 100%;
   }
   
   .nav-brand { display: flex; align-items: center; gap: 12px; }
   .nav-logo-box {
     width: 42px; height: 42px; border-radius: 8px;
     background: var(--white);
     display: flex; align-items: center; justify-content: center;
     flex-shrink: 0;
     transition: background 0.3s;
   }
   .nav-logo-box:hover { background: var(--red); }
   .nav-logo-box svg { width: 22px; height: 22px; fill: var(--white); }
   
   .nav-brand-copy { line-height: 1.1; }
   .nav-brand-copy strong {
     display: block;
     font-family: 'Cormorant Garamond', serif;
     font-size: 16px; color: var(--white); font-weight: 700;
   }
   .nav-brand-copy span {
     font-size: 9.5px; letter-spacing: 2.5px; text-transform: uppercase;
     color: var(--gold); opacity: 0.88;
   }
   
   .nav-links {
     display: flex; align-items: center; gap: 36px;
   }
   .nav-links a {
     font-size: 12px; letter-spacing: 1.2px; text-transform: uppercase;
     font-weight: 500; color: rgba(255,255,255,0.76);
     position: relative; padding-bottom: 4px;
     transition: color 0.25s;
   }
   .nav-links a::after {
     content: ''; position: absolute; bottom: 0; left: 0;
     width: 0; height: 1.5px; background: var(--gold);
     transition: width 0.3s;
   }
   .nav-links a:hover,
   .nav-links a.active { color: var(--white); }
   .nav-links a:hover::after,
   .nav-links a.active::after { width: 100%; }
   
   .nav-cta {
     background: var(--red) !important;
     color: var(--white) !important;
     padding: 8px 22px;
     border-radius: 5px;
     font-weight: 600;
     transition: background 0.25s, transform 0.25s !important;
   }
   .nav-cta::after { display: none !important; }
   .nav-cta:hover { background: var(--red-light) !important; transform: translateY(-2px) !important; }
   
   /* Hamburger */
   .hamburger {
     display: none;
     flex-direction: column; gap: 5px;
     cursor: pointer; padding: 4px;
   }
   .hamburger span {
     display: block; width: 24px; height: 2px;
     background: var(--white); border-radius: 2px;
     transition: 0.3s;
   }
   .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
   .hamburger.open span:nth-child(2) { opacity: 0; }
   .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
   
   /* Mobile drawer */
   .mobile-drawer {
     position: fixed; top: var(--nav-h); left: 0; right: 0;
     background: rgba(8,22,56,0.99);
     backdrop-filter: blur(16px);
     padding: 28px var(--pad-x) 36px;
     display: flex; flex-direction: column; gap: 6px;
     z-index: 999;
     transform: translateY(-120%);
     transition: transform 0.38s cubic-bezier(.4,0,.2,1);
     border-bottom: 1px solid rgba(201,168,76,0.15);
   }
   .mobile-drawer.open { transform: translateY(0); }
   .mobile-drawer a {
     font-size: 15px; font-weight: 500;
     color: rgba(255,255,255,0.8);
     padding: 12px 0;
     border-bottom: 1px solid rgba(255,255,255,0.06);
     display: flex; align-items: center; justify-content: space-between;
     transition: color 0.2s;
   }
   .mobile-drawer a:hover { color: var(--gold); }
   .mobile-drawer .mob-cta {
     margin-top: 16px; text-align: center;
     background: var(--red); color: var(--white) !important;
     border-radius: 5px; border: none;
     padding: 14px;
   }
   
   /* ================================================================
      HERO
      ================================================================ */
   .hero {
     min-height: 100vh;
     padding-top: var(--nav-h);
     background:
       linear-gradient(145deg, rgba(8,22,56,0.93) 0%, rgba(26,79,160,0.82) 55%, rgba(192,57,43,0.28) 100%),
       url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?w=1600&q=80') center/cover no-repeat;
     display: flex; align-items: center;
     position: relative; overflow: hidden;
   }
   
   /* animated geometric rings */
   .hero-ring {
     position: absolute; border-radius: 50%;
     border: 1px solid rgba(201,168,76,0.15);
     pointer-events: none;
   }
   .hero-ring-1 {
     width: 700px; height: 700px;
     top: -250px; right: -200px;
     animation: ring-spin 35s linear infinite;
   }
   .hero-ring-2 {
     width: 380px; height: 380px;
     bottom: -140px; left: -100px;
     animation: ring-spin 22s linear infinite reverse;
     border-color: rgba(192,57,43,0.12);
   }
   .hero-ring-3 {
     width: 200px; height: 200px;
     top: 30%; right: 8%;
     animation: ring-spin 16s linear infinite;
     border-color: rgba(255,255,255,0.07);
   }
   @keyframes ring-spin { to { transform: rotate(360deg); } }
   
   .hero-inner {
     position: relative; z-index: 2;
     padding: clamp(60px,8vh,100px) var(--pad-x);
     max-width: 1240px; margin: 0 auto; width: 100%;
     display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
   }
   
   .hero-left {}
   .hero-pill {
     display: inline-flex; align-items: center; gap: 8px;
     background: rgba(201,168,76,0.14);
     border: 1px solid rgba(201,168,76,0.38);
     color: var(--gold-light);
     font-size: 10.5px; letter-spacing: 2.5px; text-transform: uppercase;
     padding: 7px 18px; border-radius: 40px;
     margin-bottom: 28px;
     animation: fadeUp 0.9s ease both;
   }
   .hero-pill-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
   
   .hero-h1 {
     font-family: 'Cormorant Garamond', serif;
     font-size: clamp(38px, 5.5vw, 72px);
     color: var(--white); line-height: 1.06;
     margin-bottom: 22px;
     animation: fadeUp 0.9s 0.15s ease both;
   }
   .hero-h1 em { color: var(--gold); font-style: italic; }
   
   .hero-p {
     color: rgba(255,255,255,0.72);
     font-size: clamp(15px,1.5vw,17.5px); line-height: 1.75;
     margin-bottom: 40px; max-width: 480px;
     animation: fadeUp 0.9s 0.3s ease both;
   }
   
   .hero-btns {
     display: flex; gap: 14px; flex-wrap: wrap;
     animation: fadeUp 0.9s 0.45s ease both;
   }
   
   /* hero right — stats cards */
   .hero-right {
     animation: fadeUp 0.9s 0.25s ease both;
   }
   
   .hero-cards {
     display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
   }
   .hero-card {
     background: rgba(255,255,255,0.06);
     border: 1px solid rgba(255,255,255,0.12);
     backdrop-filter: blur(10px);
     border-radius: var(--radius);
     padding: 28px 22px;
     text-align: center;
     transition: background 0.3s, transform 0.3s;
   }
   .hero-card:hover { background: rgba(255,255,255,0.11); transform: translateY(-4px); }
   .hero-card-num {
     font-family: 'Cormorant Garamond', serif;
     font-size: clamp(32px,4vw,52px);
     color: var(--gold); font-weight: 700; line-height: 1;
   }
   .hero-card-label {
     font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase;
     color: rgba(255,255,255,0.55); margin-top: 6px;
   }
   .hero-card.card-tall { grid-column: span 2; padding: 22px 28px; text-align: left; display: flex; align-items: center; gap: 20px; }
   .hero-card.card-tall .hero-card-num { font-size: 36px; }
   .hero-card.card-tall .hero-card-label { text-align: left; }
   
   @keyframes fadeUp {
     from { opacity: 0; transform: translateY(28px); }
     to   { opacity: 1; transform: translateY(0); }
   }
   
   /* ================================================================
      ABOUT
      ================================================================ */
   .about {
     padding: var(--pad-y) var(--pad-x);
     background: var(--white);
   }
   .about-grid {
     max-width: 1240px; margin: 0 auto;
     display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px,7vw,108px);
     align-items: center;
   }
   
   /* Visual side */
   .about-visual { position: relative; }
   
   .about-img-frame {
     position: relative; border-radius: var(--radius); overflow: hidden;
   }
   .about-img-frame img {
     width: 100%; height: 480px; object-fit: cover;
     transition: transform 0.65s cubic-bezier(.4,0,.2,1);
   }
   .about-img-frame:hover img { transform: scale(1.04); }
   
   .about-img-overlay {
     position: absolute; inset: 0;
     background: linear-gradient(to top, rgba(12,45,107,0.45) 0%, transparent 60%);
   }
   
   .about-accent-box {
     position: absolute; top: -18px; left: -18px;
     width: 100px; height: 100px;
     border: 3px solid var(--red);
     border-radius: var(--radius); z-index: 0;
   }
   .about-img-frame { z-index: 1; }
   
   .about-float-card {
     position: absolute; bottom: -28px; right: -28px; z-index: 2;
     background: var(--blue-dark);
     border-radius: var(--radius);
     padding: 24px 28px;
     box-shadow: var(--shadow-lg);
   }
   .about-float-num {
     font-family: 'Cormorant Garamond', serif;
     font-size: 48px; color: var(--gold); font-weight: 700; line-height: 1;
   }
   .about-float-label {
     font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
     color: rgba(255,255,255,0.55); margin-top: 4px;
   }
   
   /* Text side */
   .about-text { padding-top: 12px; }
   
   .about-features {
     display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
     margin-top: 36px;
   }
   .feat-card {
     background: var(--cream);
     border: 1px solid var(--border);
     border-radius: var(--radius); padding: 20px;
     transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
   }
   .feat-card:hover {
     border-color: var(--blue-light);
     transform: translateY(-4px);
     box-shadow: var(--shadow-md);
   }
   .feat-icon {
     width: 40px; height: 40px; border-radius: 8px;
     background: var(--blue);
     display: flex; align-items: center; justify-content: center;
     margin-bottom: 12px;
     transition: background 0.3s;
   }
   .feat-card:hover .feat-icon { background: var(--red); }
   .feat-icon svg { width: 18px; height: 18px; fill: var(--white); }
   .feat-card h4 { font-size: 13px; font-weight: 600; color: var(--blue-dark); margin-bottom: 5px; }
   .feat-card p  { font-size: 12px; color: var(--text-muted); line-height: 1.55; }
   
   /* ================================================================
      MISSION / VISION BANNER
      ================================================================ */
   .mv-banner {
     display: grid; grid-template-columns: 1fr 1px 1fr;
     background: var(--blue-dark);
   }
   .mv-divider { background: rgba(201,168,76,0.22); }
   .mv-item {
     padding: clamp(52px,7vw,90px) clamp(32px,5vw,72px);
     position: relative; overflow: hidden;
     transition: background 0.35s;
   }
   .mv-item:hover { background: rgba(255,255,255,0.035); }
   .mv-item::before {
     content: attr(data-bg);
     position: absolute; right: -16px; top: -16px;
     font-family: 'Cormorant Garamond', serif;
     font-size: 130px; font-weight: 700;
     color: rgba(255,255,255,0.028);
     line-height: 1; pointer-events: none;
     user-select: none;
   }
   .mv-tag {
     display: flex; align-items: center; gap: 8px;
     font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
     color: var(--gold); font-weight: 600; margin-bottom: 18px;
   }
   .mv-tag::before { content: ''; width: 22px; height: 1.5px; background: var(--gold); }
   .mv-item h3 {
     font-family: 'Cormorant Garamond', serif;
     font-size: clamp(22px,2.8vw,36px);
     color: var(--white); margin-bottom: 16px;
   }
   .mv-item p { color: rgba(255,255,255,0.62); line-height: 1.78; font-size: 15px; max-width: 420px; }
   
   /* ================================================================
      PROGRAMS
      ================================================================ */
   .programs {
     padding: var(--pad-y) var(--pad-x);
     background: var(--cream);
   }
   .programs-inner { max-width: 1240px; margin: 0 auto; }
   
   .programs-head {
     display: flex; justify-content: space-between; align-items: flex-end;
     margin-bottom: 56px; gap: 24px; flex-wrap: wrap;
   }
   .programs-head-right { max-width: 360px; }
   
   .programs-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px;
   }
   
   .prog-card {
     background: var(--white);
     border: 1px solid var(--border);
     border-radius: var(--radius);
     overflow: hidden;
     display: flex; flex-direction: column;
     transition: transform 0.35s cubic-bezier(.34,1.36,.64,1), box-shadow 0.35s;
   }
   .prog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
   
   .prog-card-body { padding: 32px 28px 24px; flex: 1; position: relative; }
   .prog-card-num {
     position: absolute; top: 16px; right: 20px;
     font-family: 'Cormorant Garamond', serif;
     font-size: 52px; font-weight: 700;
     color: rgba(26,79,160,0.055); line-height: 1;
   }
   .prog-icon {
     width: 54px; height: 54px; border-radius: 13px;
     background: linear-gradient(135deg, var(--blue), var(--blue-light));
     display: flex; align-items: center; justify-content: center;
     margin-bottom: 20px;
     transition: transform 0.35s cubic-bezier(.34,1.36,.64,1), background 0.3s;
   }
   .prog-card:hover .prog-icon { transform: rotate(-8deg) scale(1.12); background: linear-gradient(135deg, var(--red), var(--red-light)); }
   .prog-icon svg { width: 24px; height: 24px; fill: var(--white); }
   
   .prog-card h3 { font-size: 17px; font-weight: 700; color: var(--blue-dark); margin-bottom: 10px; }
   .prog-card p  { font-size: 13.5px; color: var(--text-muted); line-height: 1.68; }
   
   .prog-card-foot {
     padding: 16px 28px;
     border-top: 1px solid var(--border);
     display: flex; align-items: center; gap: 8px;
     color: var(--blue); font-size: 11px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase;
     transition: color 0.2s;
   }
   .prog-card:hover .prog-card-foot { color: var(--red); }
   .prog-card-foot svg { width: 15px; height: 15px; fill: currentColor; transition: transform 0.3s; }
   .prog-card:hover .prog-card-foot svg { transform: translateX(5px); }
   
   /* ================================================================
      IMPACT COUNTER STRIP
      ================================================================ */
   .impact-strip {
     background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
     padding: clamp(52px,7vw,90px) var(--pad-x);
     position: relative; overflow: hidden;
   }
   .impact-strip::after {
     content: '';
     position: absolute; top: -40%; right: -8%;
     width: 560px; height: 560px;
     background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
     pointer-events: none;
   }
   .impact-inner {
     max-width: 1240px; margin: 0 auto; position: relative; z-index: 2;
   }
   .impact-head { text-align: center; margin-bottom: 60px; }
   .impact-head .section-label { justify-content: center; color: var(--gold); }
   .impact-head .section-label::before { background: var(--gold); }
   .impact-head .section-title { color: var(--white); }
   .impact-head .section-title em { color: var(--gold-light); }
   
   .impact-grid {
     display: grid;
     grid-template-columns: repeat(5, 1fr);
     gap: 2px;
     background: rgba(255,255,255,0.07);
     border-radius: var(--radius);
     overflow: hidden;
   }
   .impact-item {
     background: rgba(255,255,255,0.035);
     padding: 44px 24px; text-align: center;
     transition: background 0.3s;
   }
   .impact-item:hover { background: rgba(255,255,255,0.09); }
   .impact-num {
     font-family: 'Cormorant Garamond', serif;
     font-size: clamp(36px,4vw,60px);
     color: var(--gold); font-weight: 700; line-height: 1;
     margin-bottom: 10px;
   }
   .impact-label {
     font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase;
     color: rgba(255,255,255,0.52);
   }
   
   /* ================================================================
      PROJECTS
      ================================================================ */
   .projects {
     padding: var(--pad-y) var(--pad-x);
     background: var(--white);
   }
   .projects-inner { max-width: 1240px; margin: 0 auto; }
   
   .projects-head { margin-bottom: 52px; }
   
   .projects-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 28px;
   }
   
   .project-card {
     border-radius: var(--radius);
     overflow: hidden;
     background: var(--cream);
     border: 1px solid var(--border);
     display: flex; flex-direction: column;
     transition: transform 0.35s cubic-bezier(.34,1.36,.64,1), box-shadow 0.35s;
   }
   .project-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
   
   /* Image placeholder that's ready for real images */
   .project-img {
     width: 100%; height: 210px;
     overflow: hidden; position: relative;
     background: var(--cream-dark);
     flex-shrink: 0;
   }
   .project-img img {
     width: 100%; height: 100%; object-fit: cover;
     transition: transform 0.6s cubic-bezier(.4,0,.2,1);
   }
   .project-card:hover .project-img img { transform: scale(1.07); }
   
   /* "Coming soon" placeholder overlay for cards without images */
   .project-img-placeholder {
     position: absolute; inset: 0;
     display: flex; flex-direction: column;
     align-items: center; justify-content: center;
     gap: 10px;
     background: linear-gradient(135deg, var(--cream-dark), var(--cream));
   }
   .project-img-placeholder svg { width: 36px; height: 36px; fill: rgba(26,79,160,0.25); }
   .project-img-placeholder span { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); opacity: 0.6; }
   
   .project-img-overlay {
     position: absolute; inset: 0;
     background: linear-gradient(to top, rgba(12,45,107,0.5) 0%, transparent 55%);
     opacity: 0; transition: opacity 0.35s;
   }
   .project-card:hover .project-img-overlay { opacity: 1; }
   
   .project-body { padding: 24px 22px; flex: 1; display: flex; flex-direction: column; }
   .project-meta {
     display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
     margin-bottom: 12px;
   }
   .project-tag {
     display: inline-block; padding: 4px 11px; border-radius: 30px;
     font-size: 10px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase;
   }
   .tag-health  { background: rgba(26,79,160,0.09); color: var(--blue); }
   .tag-peace   { background: rgba(201,168,76,0.14); color: #8a6a00; }
   .tag-women   { background: rgba(192,57,43,0.09); color: var(--red); }
   .tag-youth   { background: rgba(39,174,96,0.1); color: #1a7a4a; }
   .tag-skills  { background: rgba(88,28,135,0.1); color: #6b21a8; }
   
   .project-date { font-size: 11px; color: var(--text-muted); }
   .project-body h3 {
     font-size: 16px; font-weight: 700; color: var(--blue-dark);
     line-height: 1.35; margin-bottom: 10px;
   }
   .project-body p { font-size: 13px; color: var(--text-muted); line-height: 1.65; flex: 1; }
   
   .project-foot {
     display: flex; align-items: center; justify-content: space-between;
     margin-top: 18px; padding-top: 14px;
     border-top: 1px solid var(--border);
   }
   .project-donor { font-size: 11px; color: var(--text-muted); }
   .project-donor strong { color: var(--text-mid); font-weight: 600; display: block; margin-bottom: 1px; }
   .project-beneficiaries {
     font-family: 'Cormorant Garamond', serif;
     font-size: 20px; color: var(--blue); font-weight: 700;
     line-height: 1; text-align: right;
   }
   .project-beneficiaries span { display: block; font-family: 'Outfit', sans-serif; font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); font-weight: 400; }
   
   /* ================================================================
      CONTACT
      ================================================================ */
   .contact {
     background: var(--blue-dark);
     padding: var(--pad-y) var(--pad-x);
   }
   .contact-inner {
     max-width: 1240px; margin: 0 auto;
     display: grid; grid-template-columns: 1fr 1fr;
     gap: clamp(48px,7vw,108px); align-items: start;
   }
   
   .contact-left .section-label { color: var(--gold); }
   .contact-left .section-label::before { background: var(--gold); }
   .contact-left .section-title { color: var(--white); }
   .contact-left .section-sub { color: rgba(255,255,255,0.58); max-width: none; }
   
   .contact-details { margin-top: 42px; display: flex; flex-direction: column; gap: 26px; }
   .contact-item { display: flex; gap: 16px; align-items: flex-start; }
   .c-icon {
     width: 46px; height: 46px; min-width: 46px; border-radius: 10px;
     background: rgba(255,255,255,0.07);
     display: flex; align-items: center; justify-content: center;
     transition: background 0.28s;
   }
   .contact-item:hover .c-icon { background: var(--red); }
   .c-icon svg { width: 20px; height: 20px; fill: var(--gold); }
   .c-text h5 { color: var(--white); font-size: 14px; font-weight: 600; margin-bottom: 4px; }
   .c-text p  { color: rgba(255,255,255,0.5); font-size: 13px; line-height: 1.55; }
   
   /* Form */
   .contact-form {
     background: rgba(255,255,255,0.05);
     border: 1px solid rgba(255,255,255,0.1);
     border-radius: 14px; padding: clamp(28px,4vw,46px);
   }
   .contact-form h3 {
     font-family: 'Cormorant Garamond', serif;
     font-size: 26px; color: var(--white); margin-bottom: 30px;
   }
   .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
   .form-group { margin-bottom: 18px; }
   .form-group label {
     display: block; font-size: 10.5px; letter-spacing: 1.5px;
     text-transform: uppercase; color: rgba(255,255,255,0.52);
     margin-bottom: 8px; font-weight: 500;
   }
   .form-group input,
   .form-group select,
   .form-group textarea {
     width: 100%; padding: 12px 15px;
     background: rgba(255,255,255,0.07);
     border: 1px solid rgba(255,255,255,0.12);
     border-radius: 6px;
     color: var(--white);
     font-family: 'Outfit', sans-serif; font-size: 14px;
     outline: none;
     transition: border-color 0.25s, background 0.25s;
   }
   .form-group select option { background: var(--blue-dark); color: var(--white); }
   .form-group input::placeholder,
   .form-group textarea::placeholder { color: rgba(255,255,255,0.28); }
   .form-group input:focus,
   .form-group select:focus,
   .form-group textarea:focus { border-color: var(--gold); background: rgba(255,255,255,0.1); }
   .form-group textarea { resize: vertical; min-height: 110px; }
   
   .btn-form {
     width: 100%; padding: 14px;
     background: var(--red); color: var(--white);
     border: none; border-radius: 6px;
     font-family: 'Outfit', sans-serif;
     font-size: 12px; font-weight: 600;
     letter-spacing: 1.5px; text-transform: uppercase;
     cursor: pointer;
     transition: background 0.25s, transform 0.2s;
   }
   .btn-form:hover { background: var(--red-light); transform: translateY(-2px); }
   .btn-form:active { transform: translateY(0); }
   
   /* ================================================================
      FOOTER
      ================================================================ */
   footer {
     background: #060f2a;
     border-top: 1px solid rgba(201,168,76,0.14);
   }
   .footer-top {
     padding: clamp(48px,6vw,80px) var(--pad-x);
     max-width: 1240px; margin: 0 auto;
     display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
   }
   .footer-brand strong {
     font-family: 'Cormorant Garamond', serif;
     font-size: 20px; color: var(--white); display: block; margin-bottom: 12px;
   }
   .footer-brand p {
     font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 280px;
   }
   .footer-ntn {
     margin-top: 16px; font-size: 11px; letter-spacing: 1.5px;
     color: rgba(255,255,255,0.3); text-transform: uppercase;
   }
   
   .footer-col h5 {
     font-size: 10.5px; letter-spacing: 2.5px; text-transform: uppercase;
     color: var(--gold); font-weight: 600; margin-bottom: 18px;
   }
   .footer-col a {
     display: block; font-size: 13px; color: rgba(255,255,255,0.5);
     padding: 5px 0; transition: color 0.2s;
   }
   .footer-col a:hover { color: var(--white); }
   
   .footer-bottom {
     border-top: 1px solid rgba(255,255,255,0.06);
     padding: 20px var(--pad-x);
     display: flex; align-items: center; justify-content: space-between;
     flex-wrap: wrap; gap: 12px;
   }
   .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
   
   /* ================================================================
      BACK TO TOP
      ================================================================ */
   .back-top {
     position: fixed; bottom: 28px; right: 28px; z-index: 999;
     width: 46px; height: 46px; border-radius: 8px;
     background: var(--blue);
     border: 1px solid rgba(201,168,76,0.28);
     display: flex; align-items: center; justify-content: center;
     cursor: pointer;
     opacity: 0; pointer-events: none;
     transition: opacity 0.3s, background 0.25s, transform 0.28s;
   }
   .back-top.show { opacity: 1; pointer-events: all; }
   .back-top:hover { background: var(--red); transform: translateY(-4px); }
   .back-top svg { width: 20px; height: 20px; fill: var(--white); }
   
   /* ================================================================
      PAGE HEADER (for team.html)
      ================================================================ */
   .page-hero {
     min-height: 42vh;
     padding-top: var(--nav-h);
     background:
       linear-gradient(145deg, rgba(8,22,56,0.94) 0%, rgba(26,79,160,0.85) 100%),
       url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1400&q=80') center/cover no-repeat;
     display: flex; align-items: center;
     position: relative; overflow: hidden;
   }
   .page-hero::before {
     content: '';
     position: absolute; top: -30%; right: -10%;
     width: 500px; height: 500px;
     background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
     pointer-events: none;
   }
   .page-hero-inner {
     max-width: 1240px; margin: 0 auto; width: 100%;
     padding: 60px var(--pad-x);
     position: relative; z-index: 2;
   }
   .breadcrumb {
     display: flex; align-items: center; gap: 8px;
     margin-bottom: 18px;
     font-size: 12px; color: rgba(255,255,255,0.5);
   }
   .breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
   .breadcrumb a:hover { color: var(--gold); }
   .breadcrumb span { color: var(--gold); }
   .breadcrumb svg { width: 12px; height: 12px; fill: rgba(255,255,255,0.35); }
   .page-hero h1 {
     font-family: 'Cormorant Garamond', serif;
     font-size: clamp(38px,5vw,64px); color: var(--white);
     margin-bottom: 14px;
   }
   .page-hero h1 em { color: var(--gold); font-style: italic; }
   .page-hero p { color: rgba(255,255,255,0.6); font-size: 16px; max-width: 500px; line-height: 1.7; }
   
   /* ================================================================
      TEAM / LEADERSHIP (team.html)
      ================================================================ */
   .team-section {
     padding: var(--pad-y) var(--pad-x);
     background: var(--cream);
   }
   .team-inner { max-width: 1240px; margin: 0 auto; }
   
   .team-intro { text-align: center; margin-bottom: 64px; }
   .team-intro .section-label { justify-content: center; }
   .team-intro .section-sub { margin: 0 auto; text-align: center; }
   
   /* Governing body grid */
   .team-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 24px;
     margin-bottom: 72px;
   }
   
   .team-card {
     background: var(--white);
     border: 1px solid var(--border);
     border-radius: var(--radius);
     overflow: hidden;
     text-align: center;
     transition: transform 0.35s cubic-bezier(.34,1.36,.64,1), box-shadow 0.35s;
   }
   .team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
   
   .team-card-img {
     height: 200px; overflow: hidden; position: relative;
     background: var(--cream-dark);
   }
   .team-card-img img {
     width: 100%; height: 100%; object-fit: cover;
     transition: transform 0.55s;
   }
   .team-card:hover .team-card-img img { transform: scale(1.06); }
   
   /* Avatar fallback */
   .team-avatar {
     width: 100%; height: 100%;
     display: flex; align-items: center; justify-content: center;
   }
   .team-avatar-circle {
     width: 90px; height: 90px; border-radius: 50%;
     display: flex; align-items: center; justify-content: center;
     font-family: 'Cormorant Garamond', serif;
     font-size: 30px; color: var(--white); font-weight: 700;
     position: relative;
   }
   .team-avatar-circle::after {
     content: ''; position: absolute;
     inset: -3px; border-radius: 50%;
     border: 2px solid rgba(201,168,76,0.5);
   }
   
   .team-card-body { padding: 22px 18px 24px; }
   .team-card-body h3 { font-size: 16px; font-weight: 700; color: var(--blue-dark); margin-bottom: 4px; }
   .team-card-role {
     font-size: 10px; letter-spacing: 1.8px; text-transform: uppercase;
     color: var(--red); font-weight: 600; margin-bottom: 12px;
   }
   .team-card-body p { font-size: 12.5px; color: var(--text-muted); line-height: 1.6; }
   
   /* Governing table section */
   .gov-table-section { margin-top: 20px; }
   .gov-table-section h2 {
     font-family: 'Cormorant Garamond', serif;
     font-size: clamp(26px,3vw,38px); color: var(--blue-dark); margin-bottom: 28px;
   }
   .gov-table-section h2 em { color: var(--red); font-style: italic; }
   
   .gov-table {
     width: 100%; border-collapse: collapse;
     border-radius: var(--radius); overflow: hidden;
     box-shadow: var(--shadow-sm);
   }
   .gov-table thead tr { background: var(--blue-dark); }
   .gov-table thead th {
     padding: 15px 20px; text-align: left;
     font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
     color: var(--gold); font-weight: 600;
   }
   .gov-table tbody tr {
     border-bottom: 1px solid rgba(26,79,160,0.06);
     transition: background 0.2s;
   }
   .gov-table tbody tr:last-child { border-bottom: none; }
   .gov-table tbody tr:hover { background: rgba(26,79,160,0.03); }
   .gov-table tbody td {
     padding: 16px 20px; font-size: 13.5px; color: var(--text-muted);
     vertical-align: middle;
   }
   .gov-table tbody td:first-child { font-weight: 700; color: var(--blue-dark); width: 40px; }
   
   .desig-badge {
     display: inline-block; padding: 4px 12px; border-radius: 30px;
     font-size: 11px; font-weight: 600; background: rgba(26,79,160,0.1); color: var(--blue);
   }
   
   /* ================================================================
      RESPONSIVE BREAKPOINTS
      ================================================================ */
   
   /* ─── 1024px ─── */
   @media (max-width: 1024px) {
     .programs-grid  { grid-template-columns: repeat(2, 1fr); }
     .projects-grid  { grid-template-columns: repeat(2, 1fr); }
     .impact-grid    { grid-template-columns: repeat(3, 1fr); }
     .team-grid      { grid-template-columns: repeat(3, 1fr); }
     .footer-top     { grid-template-columns: 1fr 1fr; gap: 36px; }
   }
   
   /* ─── 900px ─── */
   @media (max-width: 900px) {
     .about-grid     { grid-template-columns: 1fr; }
     .about-float-card { right: 12px; bottom: -20px; }
     .mv-banner      { grid-template-columns: 1fr; }
     .mv-divider     { width: auto; height: 1px; }
     .contact-inner  { grid-template-columns: 1fr; }
     .hero-inner     { grid-template-columns: 1fr; }
     .hero-right     { display: none; }
     .nav-links,
     .hamburger ~ .nav-links { display: none !important; }
     .hamburger      { display: flex; }
   }
   
   /* ─── 700px ─── */
   @media (max-width: 700px) {
     .programs-grid  { grid-template-columns: 1fr; }
     .projects-grid  { grid-template-columns: 1fr; }
     .impact-grid    { grid-template-columns: repeat(2, 1fr); }
     .team-grid      { grid-template-columns: repeat(2, 1fr); }
     .about-features { grid-template-columns: 1fr; }
     .form-row       { grid-template-columns: 1fr; }
     .footer-top     { grid-template-columns: 1fr; }
     .hero-cards     { grid-template-columns: 1fr 1fr; }
     .gov-table thead { display: none; }
     .gov-table tbody tr { display: block; padding: 16px; }
     .gov-table tbody td { display: block; padding: 4px 0; font-size: 13px; }
   }
   
   /* ─── 480px ─── */
   @media (max-width: 480px) {
     .impact-grid    { grid-template-columns: 1fr 1fr; }
     .team-grid      { grid-template-columns: 1fr 1fr; }
     .hero-btns      { flex-direction: column; }
     .hero-btns .btn { text-align: center; justify-content: center; }
     .about-accent-box { display: none; }
     .hero-cards { display: none; }
   }

   /* ─── 360px ─── */
   @media (max-width: 360px) {
    .nav-brand-copy strong{ font-size: 14px;}
    .nav-brand-copy span{
     font-size: 7.5px;
    }
    .nav-brand{ gap: 6px;}
   }

   /* ================================================================
   LEGAL DOCUMENTS SECTION
================================================================ */
.docs-section {
  padding: var(--pad-y) var(--pad-x);
  background: var(--white);
}
.docs-inner {
  max-width: 1240px; margin: 0 auto;
}
.docs-head {
  text-align: center; margin-bottom: 52px;
}
.docs-head .section-label { justify-content: center; }
.docs-head .section-sub   { margin: 0 auto; text-align: center; }

.docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.doc-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(.34,1.36,.64,1), box-shadow 0.35s;
}
.doc-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}

/* Image area */
.doc-card-img {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: var(--cream-dark);
}
.doc-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(.4,0,.2,1);
  display: block;
}
.doc-card:hover .doc-card-img img { transform: scale(1.05); }

/* Hover overlay */
.doc-card-overlay {
  position: absolute; inset: 0;
  background: rgba(12,45,107,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.32s;
}
.doc-card:hover .doc-card-overlay { opacity: 1; }

.doc-zoom-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600;
  padding: 10px 20px; border-radius: 6px;
  transition: background 0.25s;
}
.doc-zoom-btn:hover { background: rgba(255,255,255,0.25); }
.doc-zoom-btn svg { width: 16px; height: 16px; fill: var(--white); }

/* Card footer */
.doc-card-body {
  padding: 18px 20px;
  display: flex; align-items: center; gap: 14px;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.doc-icon {
  width: 40px; height: 40px; border-radius: 9px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
}
.doc-icon svg { width: 18px; height: 18px; fill: var(--white); }
.doc-info { flex: 1; min-width: 0; }
.doc-info h4 {
  font-size: 13px; font-weight: 700; color: var(--blue-dark);
  margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.doc-info p { font-size: 11px; color: var(--text-muted); }

.doc-badge {
  font-size: 9.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
  background: rgba(26,79,160,0.1); color: var(--blue);
  white-space: nowrap; flex-shrink: 0;
}

/* ================================================================
   DOCUMENTS LIGHTBOX
================================================================ */
.doc-lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(4,10,28,0.97);
  backdrop-filter: blur(18px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s;
}
.doc-lightbox.open { opacity: 1; pointer-events: all; }

.doc-lb-inner {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  max-width: 92vw; max-height: 90vh;
}

.doc-lb-frame {
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(.34,1.36,.64,1);
  position: relative;
}
.doc-lightbox.open .doc-lb-frame { transform: scale(1); }

.doc-lb-frame img {
  display: block;
  max-width: 82vw; max-height: 78vh;
  object-fit: contain;
}

.doc-lb-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(8,22,56,0.95) 0%, transparent 100%);
  padding: 48px 28px 22px;
}
.doc-lb-caption h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; color: var(--white); margin-bottom: 6px;
}
.doc-lb-caption p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6; }

.doc-lb-close {
  position: fixed; top: 22px; right: 26px;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  z-index: 10;
}
.doc-lb-close:hover { background: var(--red); transform: rotate(90deg); }
.doc-lb-close svg { width: 20px; height: 20px; fill: var(--white); }

.doc-lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10;
  transition: background 0.28s;
}
.doc-lb-nav:hover { background: var(--blue); }
.doc-lb-nav svg { width: 24px; height: 24px; fill: var(--white); }
.doc-lb-prev { left: -68px; }
.doc-lb-next { right: -68px; }

.doc-lb-counter {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; color: rgba(255,255,255,0.4); letter-spacing: 3px;
}
.doc-lb-counter strong { color: var(--gold); }

/* Responsive */
@media (max-width: 768px) {
  .docs-grid { grid-template-columns: 1fr; }
  .doc-lb-prev { left: -10px; }
  .doc-lb-next { right: -10px; }
}
@media (max-width: 480px) {
  .doc-lb-prev, .doc-lb-next { display: none; }
  .doc-lb-frame img { max-width: 94vw; max-height: 82vh; }
}

/* ================================================================
   DONATE SECTION
   ================================================================ */
   .donate {
    padding: var(--pad-y) var(--pad-x);
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }
  .donate::before {
    content: '';
    position: absolute; top: -160px; right: -160px;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(26,79,160,0.06) 0%, transparent 70%);
    pointer-events: none;
  }
  .donate-inner {
    max-width: 1240px; margin: 0 auto; position: relative; z-index: 2;
  }
  .donate-head {
    text-align: center; margin-bottom: 60px;
  }
  .donate-head .section-label { justify-content: center; }
  .donate-head .section-sub   { margin: 0 auto; }
  
  .donate-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(48px, 6vw, 96px);
    align-items: start;
  }
  
  /* ── Why donate ── */
  .donate-why h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 2.5vw, 30px);
    color: var(--blue-dark); margin-bottom: 28px;
  }
  .donate-cause {
    display: flex; gap: 16px; align-items: flex-start;
    margin-bottom: 22px;
  }
  .donate-cause-icon {
    width: 48px; height: 48px; min-width: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.3s;
  }
  .donate-cause:hover .donate-cause-icon { transform: rotate(-6deg) scale(1.08); }
  .donate-cause-icon svg { width: 22px; height: 22px; fill: var(--white); }
  .donate-cause h4 { font-size: 15px; font-weight: 700; color: var(--blue-dark); margin-bottom: 5px; }
  .donate-cause p  { font-size: 13px; color: var(--text-muted); line-height: 1.65; }
  
  .donate-trust {
    margin-top: 36px; padding-top: 28px;
    border-top: 1px solid var(--border);
    display: flex; flex-direction: column; gap: 11px;
  }
  .donate-trust-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; color: var(--text-mid); font-weight: 500;
  }
  .donate-trust-item svg {
    width: 16px; height: 16px; fill: #1a6a4a; flex-shrink: 0;
  }
  
  /* ── Bank card ── */
  .donate-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
  }
  .donate-card-header {
    background: var(--blue-dark);
    padding: 28px 28px 24px;
    display: flex; align-items: center; gap: 16px;
  }
  .donate-card-icon {
    width: 52px; height: 52px; min-width: 52px;
    border-radius: 12px;
    background: rgba(201,168,76,0.2);
    border: 1px solid rgba(201,168,76,0.35);
    display: flex; align-items: center; justify-content: center;
  }
  .donate-card-icon svg { width: 24px; height: 24px; fill: var(--gold); }
  .donate-card-label {
    font-size: 9.5px; letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--gold); font-weight: 600; margin-bottom: 4px;
  }
  .donate-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; color: var(--white); font-weight: 700; line-height: 1.2;
  }
  
  .donate-fields {
    padding: 10px 0;
  }
  .donate-field {
    display: flex; align-items: center;
    padding: 14px 28px;
    border-bottom: 1px solid var(--border);
    gap: 12px;
    transition: background 0.2s;
  }
  .donate-field:last-child { border-bottom: none; }
  .donate-field:hover { background: var(--cream); }
  .donate-field-key {
    font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase;
    color: var(--text-muted); font-weight: 500; min-width: 110px; flex-shrink: 0;
  }
  .donate-field-val {
    font-size: 14px; color: var(--blue-dark); font-weight: 600; flex: 1;
  }
  .donate-mono {
    font-family: 'Courier New', monospace;
    font-size: 13.5px; letter-spacing: 1px;
  }
  
  /* Highlighted IBAN row */
  .donate-field-highlight {
    background: rgba(26,79,160,0.04);
    padding-top: 18px; padding-bottom: 18px;
  }
  .donate-field-highlight:hover { background: rgba(26,79,160,0.07); }
  .donate-iban {
    font-family: 'Courier New', monospace;
    font-size: 14px; letter-spacing: 1.5px;
    color: var(--blue-dark); font-weight: 700;
  }
  
  /* Copy button */
  .donate-copy-btn {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 6px 14px; border-radius: 5px;
    background: rgba(26,79,160,0.1);
    border: 1px solid rgba(26,79,160,0.2);
    color: var(--blue); cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 11px; font-weight: 600; letter-spacing: 0.8px;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
    flex-shrink: 0;
  }
  .donate-copy-btn:hover { background: var(--blue); color: var(--white); }
  .donate-copy-btn.copied { background: #1a6a4a; color: var(--white); border-color: #1a6a4a; }
  .donate-copy-btn svg { width: 13px; height: 13px; fill: currentColor; }
  
  .donate-card-footer {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 16px 28px;
    background: rgba(201,168,76,0.07);
    border-top: 1px solid rgba(201,168,76,0.18);
  }
  .donate-card-footer svg {
    width: 15px; height: 15px; fill: var(--gold); flex-shrink: 0; margin-top: 2px;
  }
  .donate-card-footer span {
    font-size: 12px; color: var(--text-muted); line-height: 1.6;
  }
  
  .btn-donate {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin: 20px 28px 24px;
    padding: 14px;
    background: var(--red); color: var(--white);
    border-radius: 7px;
    font-family: 'Outfit', sans-serif;
    font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
    transition: background 0.25s, transform 0.2s;
  }
  .btn-donate:hover { background: var(--red-light); transform: translateY(-2px); }
  .btn-donate:active { transform: translateY(0); }
  
  /* Responsive */
  @media (max-width: 900px) {
    .donate-layout { grid-template-columns: 1fr; }
  }
  @media (max-width: 480px) {
    .donate-field { flex-wrap: wrap; gap: 6px; }
    .donate-field-key { min-width: auto; width: 100%; }
    .donate-iban { font-size: 12px; letter-spacing: 0.8px; }
  }