/* ===========================
       CSS VARIABLES & RESET
    =========================== */
    :root {
      --deep-blue:    #0a1f44;
      --mid-blue:     #1a3a6e;
      --light-blue:   #2a5298;
      --gold:         #c9a227;
      --gold-light:   #e8c55a;
      --gold-dark:    #a07c1a;
      --white:        #ffffff;
      --off-white:    #f8f9fc;
      --light-gray:   #eef1f7;
      --text-dark:    #1a1a2e;
      --text-mid:     #3d4a6b;
      --text-light:   #6b7a99;
      --shadow-sm:    0 2px 12px rgba(10,31,68,.08);
      --shadow-md:    0 8px 32px rgba(10,31,68,.12);
      --shadow-lg:    0 20px 60px rgba(10,31,68,.18);
      --radius:       14px;
      --transition:   0.35s cubic-bezier(.4,0,.2,1);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: 'Poppins', sans-serif;
      color: var(--text-dark);
      background: var(--white);
      overflow-x: hidden;
      line-height: 1.7;
    }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    /* ===========================
       UTILITY
    =========================== */
    .container { width: 90%; max-width: 1240px; margin: 0 auto; }
    .section { padding: 96px 0; }
    .section-alt { background: var(--off-white); }
    .section-dark { background: var(--deep-blue); color: var(--white); }
    .tag {
      display: inline-block;
      font-size: .7rem;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--gold);
      background: rgba(201,162,39,.12);
      border: 1px solid rgba(201,162,39,.3);
      padding: 4px 14px;
      border-radius: 100px;
      margin-bottom: 16px;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      line-height: 1.2;
      color: var(--deep-blue);
      margin-bottom: 18px;
    }
    .section-dark .section-title { color: var(--white); }
    .white-title { color: var(--white); }
    .section-subtitle {
      font-size: 1.05rem;
      color: var(--text-light);
      max-width: 640px;
      margin-bottom: 56px;
    }
    .section-dark .section-subtitle { color: rgba(255,255,255,.7); }
    .text-center { text-align: center; }
    .text-center .section-subtitle { margin-left: auto; margin-right: auto; }
    .gold { color: var(--gold); }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 32px;
      border-radius: 50px;
      font-family: 'Poppins', sans-serif;
      font-size: .92rem;
      font-weight: 600;
      cursor: pointer;
      border: none;
      transition: var(--transition);
    }
    .btn-primary {
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      color: var(--white);
      box-shadow: 0 4px 20px rgba(201,162,39,.4);
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,162,39,.55); }
    .btn-outline {
      background: transparent;
      border: 2px solid rgba(255,255,255,.7);
      color: var(--white);
    }
    .btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
    .btn-blue {
      background: var(--deep-blue);
      color: var(--white);
      box-shadow: 0 4px 20px rgba(10,31,68,.25);
    }
    .btn-blue:hover { background: var(--mid-blue); transform: translateY(-2px); }

    .btn-mt { margin-top: 12px; }
    .about-actions {
      margin-top: 32px;
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }
    .stats-section {
      background: var(--off-white);
      padding: 0 0 80px;
    }
    .section-icon {
      color: var(--gold);
      margin-right: 10px;
    }
    .org-card-header.cedis { background: linear-gradient(135deg, #0d2456, #1a4080); }
    .media-icon.red { background: linear-gradient(135deg,#c0392b,#e74c3c); }
    .media-icon.navy { background: linear-gradient(135deg,#1a3a6e,#2a5298); }
    .media-icon.blue { background: linear-gradient(135deg,#1877f2,#4092ff); }
    .media-icon.linkedin { background: linear-gradient(135deg,#0a66c2,#0f85c9); }
    .donate-text {
      font-size: 1rem;
      color: rgba(255,255,255,.8);
      line-height: 1.85;
      margin-bottom: 24px;
    }
    .donate-note {
      font-size: .9rem;
      color: rgba(255,255,255,.65);
      line-height: 1.8;
      margin-bottom: 32px;
    }
    .donate-trust {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      margin-top: 32px;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: .85rem;
      color: rgba(255,255,255,.65);
    }
    .trust-item i { color: var(--gold); }
    .form-highlight-icon {
      color: var(--gold);
      margin-right: 8px;
    }
    .section-label-small {
      font-size: .8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--text-light);
      margin-bottom: 14px;
    }
    .textarea-resizable { resize: vertical; }
    .social-link--small { width: 36px; height: 36px; }
    #toast {
      position: fixed;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%) translateY(20px);
      background: var(--deep-blue);
      color: var(--white);
      padding: 14px 28px;
      border-radius: 50px;
      font-size: .9rem;
      font-weight: 600;
      box-shadow: var(--shadow-lg);
      border-left: 4px solid var(--gold);
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s, transform .3s;
      z-index: 99990;
      display: flex;
      align-items: center;
      gap: 10px;
      white-space: nowrap;
    }

    /* Reveal on scroll */
    .reveal {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity .65s ease, transform .65s ease;
    }
    .reveal.visible { opacity: 1; transform: none; }
    .reveal-left { opacity: 0; transform: translateX(-36px); transition: opacity .65s ease, transform .65s ease; }
    .reveal-left.visible { opacity: 1; transform: none; }
    .reveal-right { opacity: 0; transform: translateX(36px); transition: opacity .65s ease, transform .65s ease; }
    .reveal-right.visible { opacity: 1; transform: none; }

    /* Stagger children */
    .stagger > * { opacity: 0; transform: translateY(28px); transition: opacity .55s ease, transform .55s ease; }
    .stagger.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay:.05s; }
    .stagger.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay:.15s; }
    .stagger.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay:.25s; }
    .stagger.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay:.35s; }
    .stagger.visible > *:nth-child(5) { opacity:1; transform:none; transition-delay:.45s; }
    .stagger.visible > *:nth-child(6) { opacity:1; transform:none; transition-delay:.55s; }
    .stagger.visible > *:nth-child(7) { opacity:1; transform:none; transition-delay:.65s; }

    /* ===========================
       NAVBAR
    =========================== */
    #navbar {
      position: fixed;
      top: 0; left: 0; width: 100%;
      z-index: 9999;
      background: #e8c55a;
      transition: padding .35s, background .4s;
      padding: 18px 0;
    }
    #navbar.scrolled {
      background: var(--deep-blue);
      padding: 12px 0;
      box-shadow: 0 4px 20px rgba(0,0,0,.35);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav-logo {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }
    .nav-logo .logo-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--deep-blue);
      transition: color .4s;
    }
    .nav-logo .logo-tag {
      font-size: .72rem;
      font-weight: 500;
      color: rgba(10,31,68,.7);
      letter-spacing: .06em;
      transition: color .4s;
    }
    #navbar.scrolled .nav-logo .logo-name { color: var(--white); }
    #navbar.scrolled .nav-logo .logo-tag { color: var(--gold-light); }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .nav-links a {
      color: var(--deep-blue);
      font-size: .88rem;
      font-weight: 500;
      padding: 10px 16px;
      border-radius: 8px;
      transition: var(--transition);
      position: relative;
    }
    .nav-links a:hover {
      color: rgba(10,31,68,.8);
      background: rgba(10,31,68,.08);
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 4px;
      left: 50%;
      transform: translateX(-50%) scale(0);
      width: 20px;
      height: 2px;
      background: var(--deep-blue);
      border-radius: 2px;
      transition: transform .3s ease;
    }
    .nav-links a:hover::after {
      transform: translateX(-50%) scale(1);
    }
    #navbar.scrolled .nav-links a {
      color: rgba(255,255,255,.9);
    }
    #navbar.scrolled .nav-links a:hover {
      color: var(--gold-light);
      background: rgba(201,162,39,.12);
    }
    #navbar.scrolled .nav-links a::after {
      background: var(--gold);
    }
    .nav-donate {
      background: linear-gradient(135deg, var(--deep-blue), var(--mid-blue));
      color: var(--gold-light) !important;
      padding: 10px 22px !important;
      border-radius: 50px !important;
      font-weight: 600 !important;
      box-shadow: 0 4px 16px rgba(10,31,68,.25);
    }
    .nav-donate:hover {
      box-shadow: 0 6px 24px rgba(10,31,68,.4);
      transform: translateY(-2px);
    }
    .nav-donate::after {
      display: none;
    }
    #navbar.scrolled .nav-donate {
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      color: var(--white) !important;
      box-shadow: 0 4px 16px rgba(201,162,39,.3);
    }
    #navbar.scrolled .nav-donate:hover {
      box-shadow: 0 6px 24px rgba(201,162,39,.5);
    }
    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 6px;
      cursor: pointer;
      padding: 8px;
      border-radius: 8px;
      transition: var(--transition);
    }
    .nav-toggle:hover {
      background: rgba(10,31,68,.08);
    }
    .nav-toggle span {
      display: block;
      width: 28px;
      height: 2.5px;
      background: var(--deep-blue);
      border-radius: 2px;
      transition: var(--transition);
    }
    #navbar.scrolled .nav-toggle span {
      background: var(--white);
    }
    #navbar.scrolled .nav-toggle:hover {
      background: rgba(255,255,255,.08);
    }

    /* ===========================
       HERO
    =========================== */
    #hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--deep-blue);
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(135deg, rgba(10, 31, 68, 0.516) 0%, rgba(26, 58, 110, 0.33) 50%, rgba(10, 31, 68, 0.412) 100%),
        url('Dr sec profile.jfif');
      background-size: cover;
      background-position: center;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(10,31,68,.25) 0%, transparent 35%, rgba(10,31,68,.65) 100%);
    }
    .hero-vignette {
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 60% 45%, transparent 30%, rgba(10,31,68,.55) 100%);
      pointer-events: none;
    }
    .hero-cross {
      position: absolute;
      right: 4%;
      top: 50%;
      transform: translateY(-50%);
      opacity: .03;
      font-size: 22rem;
      color: var(--gold);
      pointer-events: none;
      line-height: 1;
    }
    .hero-accent-bar {
      position: absolute;
      left: 0;
      top: 15%;
      height: 70%;
      width: 4px;
      background: linear-gradient(to bottom, transparent, var(--gold-light), transparent);
      opacity: .85;
      border-radius: 0 4px 4px 0;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 0 5%;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--deep-blue);
      background: var(--gold);
      padding: 10px 22px 10px 18px;
      border-radius: 100px;
      margin-bottom: 32px;
      box-shadow: 0 8px 28px rgba(201,162,39,.45);
      animation: fadeSlideUp .8s ease both;
      border: 2px solid rgba(255,255,255,.35);
    }
    .hero-badge i {
      font-size: .85rem;
      background: rgba(10,31,68,.15);
      width: 26px;
      height: 26px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
    }
    .hero-headline {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.6rem, 6.5vw, 5.4rem);
      font-weight: 900;
      line-height: 1.05;
      color: var(--white);
      margin-bottom: 28px;
      text-shadow: 0 3px 24px rgba(0,0,0,.45);
      animation: fadeSlideUp .9s .1s ease both;
      letter-spacing: -.02em;
    }
    .hero-headline em {
      font-style: italic;
      color: var(--gold-light);
      position: relative;
      display: inline-block;
    }
    .hero-headline em::after {
      content: '';
      position: absolute;
      bottom: 2px;
      left: 0;
      width: 100%;
      height: 3px;
      background: var(--gold-light);
      opacity: .5;
      border-radius: 3px;
    }
    .hero-sub {
      font-size: clamp(1.05rem, 1.8vw, 1.2rem);
      color: rgba(255,255,255,.92);
      max-width: 620px;
      margin-bottom: 44px;
      line-height: 1.75;
      text-shadow: 0 2px 14px rgba(0,0,0,.4);
      animation: fadeSlideUp 1s .2s ease both;
      font-weight: 400;
    }
    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      animation: fadeSlideUp 1s .3s ease both;
    }
    .hero-scroll {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,.5);
      font-size: .7rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      animation: bounce 2s infinite;
    }
    .hero-scroll i { font-size: .9rem; }
    .hero-stats {
      position: absolute;
      bottom: 80px;
      right: 5%;
      z-index: 2;
      display: flex;
      gap: 32px;
      animation: fadeSlideUp 1s .5s ease both;
    }
    .hero-stat {
      text-align: center;
      border-left: 2px solid rgba(201,162,39,.4);
      padding-left: 20px;
    }
    .hero-stat .num {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--gold-light);
      line-height: 1;
    }
    .hero-stat .label {
      font-size: .68rem;
      color: rgba(255,255,255,.6);
      text-transform: uppercase;
      letter-spacing: .08em;
      margin-top: 4px;
    }

    @keyframes fadeSlideUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:none; } }
    @keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

    /* ===========================
       ABOUT
    =========================== */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 80px;
      align-items: center;
    }
    .about-img-wrap {
      position: relative;
    }
    .about-img-frame {
      border-radius: 20px;
      overflow: hidden;
      aspect-ratio: 3/4;
      background: linear-gradient(135deg, var(--deep-blue), var(--mid-blue));
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-lg);
    }
    .about-img-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .about-img-placeholder {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      color: rgba(255,255,255,.5);
      height: 100%;
      padding: 40px;
      text-align: center;
    }
    .about-img-placeholder i { font-size: 5rem; color: var(--gold); opacity: .6; }
    .about-img-placeholder p { font-size: .85rem; line-height: 1.5; }
    .about-badge {
      position: absolute;
      bottom: -24px;
      left: -24px;
      background: var(--gold);
      color: var(--deep-blue);
      border-radius: 14px;
      padding: 18px 24px;
      box-shadow: var(--shadow-md);
    }
    .about-badge .years {
      font-family: 'Playfair Display', serif;
      font-size: 2.8rem;
      font-weight: 900;
      line-height: 1;
    }
    .about-badge .years-label {
      font-size: .75rem;
      font-weight: 600;
      margin-top: 4px;
      text-transform: uppercase;
      letter-spacing: .06em;
    }
    .about-decor {
      position: absolute;
      top: -20px;
      right: -20px;
      width: 120px;
      height: 120px;
      border: 3px solid var(--gold);
      border-radius: 14px;
      opacity: .2;
    }
    .about-name {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      font-weight: 700;
      color: var(--deep-blue);
      margin-bottom: 6px;
    }
    .about-title-line {
      font-size: .95rem;
      font-weight: 600;
      color: var(--gold-dark);
      margin-bottom: 20px;
    }
    .about-quals {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 24px;
    }
    .qual-tag {
      background: var(--deep-blue);
      color: var(--white);
      font-size: .7rem;
      font-weight: 600;
      padding: 4px 12px;
      border-radius: 6px;
      letter-spacing: .05em;
    }
    .about-text {
      font-size: .97rem;
      color: var(--text-mid);
      margin-bottom: 16px;
      line-height: 1.8;
    }
    .about-faith {
      display: flex;
      align-items: center;
      gap: 12px;
      background: linear-gradient(135deg, rgba(10,31,68,.05), rgba(201,162,39,.07));
      border-left: 4px solid var(--gold);
      border-radius: 0 10px 10px 0;
      padding: 16px 20px;
      margin-top: 24px;
      font-style: italic;
      color: var(--text-mid);
      font-size: .9rem;
    }
    .about-faith i { color: var(--gold); font-size: 1.4rem; flex-shrink: 0; }

    /* ===========================
       MISSION
    =========================== */
    .mission-verse {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.1rem, 2vw, 1.4rem);
      font-style: italic;
      color: rgba(255,255,255,.75);
      text-align: center;
      max-width: 720px;
      margin: 0 auto 60px;
      line-height: 1.7;
    }
    .mission-body {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
      margin-bottom: 64px;
    }
    .mission-text {
      font-size: 1rem;
      color: rgba(255,255,255,.8);
      line-height: 1.85;
    }
    .mission-text p { margin-bottom: 16px; }
    .mission-highlight {
      background: rgba(201,162,39,.12);
      border: 1px solid rgba(201,162,39,.3);
      border-radius: var(--radius);
      padding: 28px;
    }
    .mission-highlight h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      color: var(--gold-light);
      margin-bottom: 16px;
    }
    .mission-highlight ul { display: flex; flex-direction: column; gap: 10px; }
    .mission-highlight li {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: .9rem;
      color: rgba(255,255,255,.8);
    }
    .mission-highlight li i { color: var(--gold); width: 18px; }
    .mission-cards {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
    }
    .mission-card {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: var(--radius);
      padding: 28px 20px;
      text-align: center;
      transition: var(--transition);
      cursor: default;
    }
    .mission-card:hover {
      background: rgba(201,162,39,.12);
      border-color: rgba(201,162,39,.35);
      transform: translateY(-4px);
    }
    .mission-card .icon {
      width: 60px; height: 60px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
      font-size: 1.4rem;
      color: var(--white);
      box-shadow: 0 4px 16px rgba(201,162,39,.35);
    }
    .mission-card h4 {
      font-size: .88rem;
      font-weight: 600;
      color: var(--white);
    }

    /* ===========================
       ACHIEVEMENTS
    =========================== */
    .achievements-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
    }
    .achievement-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 32px 28px;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--light-gray);
      transition: var(--transition);
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }
    .achievement-card:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-4px);
      border-color: rgba(201,162,39,.3);
    }
    .ach-icon {
      width: 56px; height: 56px; flex-shrink: 0;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--deep-blue), var(--mid-blue));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      color: var(--gold-light);
    }
    .ach-body h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--deep-blue);
      margin-bottom: 6px;
    }
    .ach-body p {
      font-size: .84rem;
      color: var(--text-light);
      line-height: 1.6;
    }

    /* ===========================
       ORGANIZATIONS
    =========================== */
    .orgs-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 36px;
    }
    .org-card {
      background: var(--white);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow-md);
      transition: var(--transition);
    }
    .org-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
    .org-card-header {
      background: linear-gradient(135deg, var(--deep-blue), var(--mid-blue));
      padding: 36px 32px;
      position: relative;
      overflow: hidden;
    }
    .org-card-header::after {
      content: '';
      position: absolute;
      right: -30px; bottom: -30px;
      width: 140px; height: 140px;
      border-radius: 50%;
      background: rgba(255,255,255,.04);
    }
    .org-abbr {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      font-weight: 900;
      color: var(--gold-light);
      line-height: 1;
    }
    .org-full {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--white);
      margin-top: 6px;
    }
    .org-card-body {
      padding: 28px 32px;
    }
    .org-card-body p {
      font-size: .92rem;
      color: var(--text-mid);
      line-height: 1.75;
      margin-bottom: 20px;
    }
    .org-tags { display: flex; flex-wrap: wrap; gap: 8px; }
    .org-tag {
      font-size: .72rem;
      font-weight: 600;
      padding: 4px 12px;
      border-radius: 50px;
      background: var(--light-gray);
      color: var(--text-mid);
    }

    /* ===========================
       GALLERY
    =========================== */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-auto-rows: 220px;
      gap: 16px;
    }
    .gallery-item {
      border-radius: 12px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      background: var(--light-gray);
    }
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(5) { grid-column: span 2; grid-row: span 1; }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .5s ease;
    }
    .gallery-item:hover img { transform: scale(1.06); }
    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10,31,68,.8) 0%, transparent 60%);
      opacity: 0;
      transition: var(--transition);
      display: flex;
      align-items: flex-end;
      padding: 16px;
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-overlay span {
      font-size: .82rem;
      font-weight: 600;
      color: var(--white);
    }
    .gallery-placeholder {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100%;
      gap: 10px;
      color: var(--text-light);
      background: linear-gradient(135deg, var(--light-gray), var(--off-white));
    }
    .gallery-placeholder i { font-size: 2rem; color: var(--gold); opacity: .5; }
    .gallery-placeholder span { font-size: .78rem; font-weight: 500; text-align: center; padding: 0 16px; }

    /* Lightbox */
    #lightbox {
      position: fixed;
      inset: 0;
      z-index: 99999;
      background: rgba(0,0,0,.92);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s;
    }
    #lightbox.active { opacity: 1; pointer-events: all; }
    #lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 10px; }
    #lightbox-close {
      position: absolute;
      top: 24px; right: 28px;
      font-size: 2rem;
      color: var(--white);
      cursor: pointer;
      opacity: .7;
      transition: opacity .2s;
    }
    #lightbox-close:hover { opacity: 1; }
    #lightbox-caption {
      position: absolute;
      bottom: 30px;
      text-align: center;
      color: rgba(255,255,255,.75);
      font-size: .88rem;
    }

    /* ===========================
       MEDIA
    =========================== */
    .media-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 24px;
    }
    .media-card {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--light-gray);
      transition: var(--transition);
      text-align: center;
      padding: 36px 24px 28px;
    }
    .media-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(201,162,39,.3); }
    .media-icon {
      width: 72px; height: 72px;
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      color: var(--white);
      margin: 0 auto 20px;
    }
    .media-card h4 { font-weight: 700; margin-bottom: 8px; color: var(--deep-blue); }
    .media-card p { font-size: .84rem; color: var(--text-light); margin-bottom: 20px; line-height: 1.6; }
    .media-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: .8rem;
      font-weight: 600;
      color: var(--deep-blue);
      border: 1.5px solid var(--light-gray);
      padding: 8px 18px;
      border-radius: 50px;
      transition: var(--transition);
    }
    .media-btn:hover { border-color: var(--gold); color: var(--gold-dark); }

    /* ===========================
       DONATION
    =========================== */
    #donate {
      background: linear-gradient(135deg, var(--deep-blue) 0%, #0d2456 40%, #122e68 100%);
      position: relative;
      overflow: hidden;
    }
    #donate::before {
      content: '';
      position: absolute;
      top: -60%; right: -10%;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201,162,39,.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .donate-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .donate-amounts {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin: 24px 0;
    }
    .amount-btn {
      padding: 10px 22px;
      border-radius: 50px;
      font-size: .9rem;
      font-weight: 600;
      border: 2px solid rgba(255,255,255,.25);
      color: var(--white);
      background: transparent;
      cursor: pointer;
      transition: var(--transition);
    }
    .amount-btn:hover, .amount-btn.active {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--deep-blue);
    }
    .donate-form {
      background: var(--white);
      border-radius: 20px;
      padding: 40px;
      box-shadow: var(--shadow-lg);
    }
    .donate-form h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      color: var(--deep-blue);
      margin-bottom: 24px;
    }
    .form-group { margin-bottom: 18px; }
    .form-group label {
      display: block;
      font-size: .82rem;
      font-weight: 600;
      color: var(--text-mid);
      margin-bottom: 6px;
      text-transform: uppercase;
      letter-spacing: .05em;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 12px 16px;
      border: 1.5px solid var(--light-gray);
      border-radius: 10px;
      font-family: 'Poppins', sans-serif;
      font-size: .9rem;
      color: var(--text-dark);
      outline: none;
      transition: border-color .25s;
      background: var(--off-white);
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-color: var(--gold); background: var(--white); }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-submit {
      width: 100%;
      padding: 16px;
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      color: var(--white);
      font-family: 'Poppins', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      transition: var(--transition);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      box-shadow: 0 4px 20px rgba(201,162,39,.4);
    }
    .form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,162,39,.5); }
    .secure-note {
      text-align: center;
      font-size: .75rem;
      color: var(--text-light);
      margin-top: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }
    .secure-note i { color: var(--gold); }

    /* ===========================
       TESTIMONIALS
    =========================== */
    .testimonials-track { overflow: hidden; }
    .testimonials-inner {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .testimonial-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 32px 28px;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--light-gray);
      transition: var(--transition);
      position: relative;
    }
    .testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
    .testimonial-card::before {
      content: '\201C';
      font-family: 'Playfair Display', serif;
      font-size: 6rem;
      color: var(--gold);
      opacity: .12;
      position: absolute;
      top: -10px; left: 20px;
      line-height: 1;
    }
    .testimonial-stars {
      color: var(--gold);
      font-size: .9rem;
      margin-bottom: 14px;
      letter-spacing: 2px;
    }
    .testimonial-text {
      font-size: .9rem;
      color: var(--text-mid);
      line-height: 1.8;
      font-style: italic;
      margin-bottom: 24px;
    }
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .author-avatar {
      width: 48px; height: 48px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--deep-blue), var(--mid-blue));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--gold-light);
      flex-shrink: 0;
    }
    .author-name {
      font-weight: 600;
      font-size: .9rem;
      color: var(--deep-blue);
    }
    .author-role {
      font-size: .75rem;
      color: var(--text-light);
    }

    /* ===========================
       CONTACT
    =========================== */
    .contact-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 56px;
    }
    .contact-info h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      color: var(--deep-blue);
      margin-bottom: 24px;
    }
    .contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }
    .contact-item .ci-icon {
      width: 48px; height: 48px; flex-shrink: 0;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--deep-blue), var(--mid-blue));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      color: var(--gold-light);
    }
    .contact-item .ci-body h5 {
      font-size: .8rem;
      font-weight: 600;
      color: var(--text-light);
      text-transform: uppercase;
      letter-spacing: .06em;
      margin-bottom: 4px;
    }
    .contact-item .ci-body a,
    .contact-item .ci-body p {
      font-size: .92rem;
      color: var(--text-dark);
      line-height: 1.6;
    }
    .contact-item .ci-body a:hover { color: var(--gold-dark); }
    .social-links { display: flex; gap: 12px; flex-wrap: wrap; }
    .social-link {
      width: 44px; height: 44px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      color: var(--white);
      transition: var(--transition);
    }
    .social-link:hover { transform: translateY(-3px) scale(1.06); }
    .sl-fb { background: #1877f2; }
    .sl-li { background: #0a66c2; }
    .sl-wa { background: #25d366; }
    .contact-form-wrap {
      background: var(--white);
      border-radius: 20px;
      padding: 36px;
      box-shadow: var(--shadow-md);
      border: 1px solid var(--light-gray);
    }
    .contact-form-wrap h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      color: var(--deep-blue);
      margin-bottom: 24px;
    }
    .map-placeholder {
      width: 100%;
      height: 280px;
      border-radius: 16px;
      overflow: hidden;
      background: var(--light-gray);
      margin-top: 40px;
      position: relative;
    }
    .static-map {
      width: 100%;
      height: 100%;
      position: relative;
      background: #e8efe6;
    }
    .map-bg {
      width: 100%;
      height: 100%;
      position: relative;
      background:
        linear-gradient(90deg, #f5f5f5 1px, transparent 1px),
        linear-gradient(#f5f5f5 1px, transparent 1px),
        #e8efe6;
      background-size: 40px 40px, 40px 40px;
    }
    .map-road {
      position: absolute;
      background: #ffffff;
      border: 1px solid #d4d4d4;
    }
    .map-road-1 {
      top: 30%;
      left: 10%;
      width: 80%;
      height: 18px;
      transform: rotate(-5deg);
      border-radius: 2px;
    }
    .map-road-2 {
      top: 60%;
      left: 5%;
      width: 55%;
      height: 14px;
      transform: rotate(3deg);
      border-radius: 2px;
    }
    .map-road-3 {
      top: 15%;
      left: 50%;
      width: 14px;
      height: 70%;
      transform: rotate(8deg);
      border-radius: 2px;
    }
    .map-block {
      position: absolute;
      background: #dde8d8;
      border: 1px solid #c5d5be;
      border-radius: 3px;
    }
    .map-block-1 { top: 8%; left: 8%; width: 60px; height: 50px; }
    .map-block-2 { top: 45%; left: 65%; width: 70px; height: 55px; }
    .map-block-3 { top: 68%; left: 15%; width: 55px; height: 45px; }
    .map-block-4 { top: 12%; left: 65%; width: 50px; height: 40px; }
    .map-block-5 { top: 72%; left: 60%; width: 60px; height: 35px; }
    .map-pin {
      position: absolute;
      top: 40%;
      left: 45%;
      transform: translate(-50%, -50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      z-index: 2;
    }
    .map-pin i {
      font-size: 2.4rem;
      color: #e74c3c;
      filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
      animation: pinBounce 1.5s ease-in-out infinite;
    }
    .map-pin span {
      background: var(--deep-blue);
      color: var(--white);
      font-size: 0.65rem;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: 20px;
      white-space: nowrap;
      letter-spacing: 0.05em;
    }
    @keyframes pinBounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }
    .map-placeholder iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    /* ===========================
       FOOTER
    =========================== */
    footer {
      background: #050e22;
      color: rgba(255,255,255,.75);
      padding: 80px 0 0;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
      gap: 48px;
      padding-bottom: 60px;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .footer-brand .logo-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 4px;
    }
    .footer-brand .logo-domain {
      font-size: .8rem;
      color: var(--gold);
      margin-bottom: 16px;
    }
    .footer-brand p {
      font-size: .86rem;
      line-height: 1.75;
      color: rgba(255,255,255,.55);
      margin-bottom: 24px;
    }
    .footer-col h4 {
      font-size: .85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--gold-light);
      margin-bottom: 20px;
    }
    .footer-links { display: flex; flex-direction: column; gap: 10px; }
    .footer-links a {
      font-size: .86rem;
      color: rgba(255,255,255,.55);
      transition: color .25s;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .footer-links a::before { content: '→'; font-size: .7rem; color: var(--gold); }
    .footer-links a:hover { color: var(--white); }
    .footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
    .footer-contact-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: .85rem;
      color: rgba(255,255,255,.55);
      line-height: 1.5;
    }
    .footer-contact-list i { color: var(--gold); width: 16px; margin-top: 3px; flex-shrink: 0; }
    .footer-contact-list a { color: rgba(255,255,255,.55); }
    .footer-contact-list a:hover { color: var(--gold-light); }
    .footer-bottom {
      padding: 24px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-bottom p {
      font-size: .82rem;
      color: rgba(255,255,255,.4);
    }
    .footer-bottom a { color: var(--gold); }
    .footer-bottom-links {
      display: flex;
      gap: 24px;
    }
    .footer-bottom-links a {
      font-size: .8rem;
      color: rgba(255,255,255,.4);
      transition: color .25s;
    }
    .footer-bottom-links a:hover { color: var(--gold-light); }

    /* Gold divider */
    .gold-divider {
      width: 60px; height: 4px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      border-radius: 2px;
      margin: 16px 0 28px;
    }
    .gold-divider.center { margin: 16px auto 28px; }

    /* Notice bar */
    .notice-bar {
      background: linear-gradient(90deg, var(--gold-dark), var(--gold));
      color: var(--white);
      text-align: center;
      padding: 10px 20px;
      font-size: .82rem;
      font-weight: 600;
      letter-spacing: .03em;
    }
    .notice-bar a { color: var(--deep-blue); text-decoration: underline; }

    /* Stats row */
    .stats-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--light-gray);
      border-radius: var(--radius);
      overflow: hidden;
      margin-bottom: 80px;
    }
    .stat-item {
      background: var(--white);
      padding: 36px 24px;
      text-align: center;
    }
    .stat-item .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.6rem;
      font-weight: 900;
      color: var(--deep-blue);
      line-height: 1;
    }
    .stat-item .stat-num span { color: var(--gold); }
    .stat-item .stat-label {
      font-size: .8rem;
      font-weight: 600;
      color: var(--text-light);
      text-transform: uppercase;
      letter-spacing: .08em;
      margin-top: 8px;
    }

    /* ===========================
       BACK TO TOP
    =========================== */
    #back-to-top {
      position: fixed;
      bottom: 28px; right: 28px;
      width: 48px; height: 48px;
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .9rem;
      cursor: pointer;
      z-index: 9000;
      opacity: 0;
      transform: translateY(12px);
      transition: opacity .3s, transform .3s;
      box-shadow: 0 4px 20px rgba(201,162,39,.45);
      border: none;
    }
    #back-to-top.visible { opacity: 1; transform: none; }
    #back-to-top:hover { transform: translateY(-3px); }

    /* ===========================
       RESPONSIVE
    =========================== */
    @media (max-width: 1100px) {
      .mission-cards { grid-template-columns: repeat(3, 1fr); }
      .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 900px) {
      .about-grid { grid-template-columns: 1fr; gap: 48px; }
      .about-img-wrap { max-width: 420px; margin: 0 auto; }
      .mission-body { grid-template-columns: 1fr; }
      .donate-grid { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .stats-row { grid-template-columns: repeat(2, 1fr); }
      .orgs-grid { grid-template-columns: 1fr; }
      .testimonials-inner { grid-template-columns: 1fr; }
      .hero-stats { display: none; }
    }
    @media (max-width: 700px) {
      .section { padding: 72px 0; }
      .nav-links { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(10,31,68,.97); flex-direction: column; align-items: center; justify-content: center; gap: 20px; }
      .nav-links a { font-size: 1.1rem; padding: 10px 24px; }
      .nav-links.open { display: flex; }
      .nav-toggle { display: flex; }
      .mission-cards { grid-template-columns: repeat(2, 1fr); }
      .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
      .gallery-item:nth-child(1),
      .gallery-item:nth-child(5) { grid-column: span 2; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .form-row { grid-template-columns: 1fr; }
      .achievements-grid { grid-template-columns: 1fr; }
      .stats-row { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 480px) {
      .mission-cards { grid-template-columns: 1fr 1fr; }
      .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; }
    }