  /* ═══════════════════════════════════════════
       BRAND TOKENS — Islamic Relief Kenya
    ═══════════════════════════════════════════ */
    :root {
      --irk-blue:        #0778d4;
      --irk-blue-dark:   #0562ae;
      --irk-blue-deeper: #03407a;
      --irk-blue-light:  #deeefb;
      --irk-blue-pale:   #eef6fd;
      --irk-gold:        #c8960c;
      --irk-gold-light:  #fdf4d8;
      --irk-black:       #0a0f1a;
      --irk-white:       #ffffff;
      --irk-gray-soft:   #f5f7fa;
      --irk-text:        #1a2238;
      --irk-text-muted:  #5a6a80;
      --irk-radius:      10px;
      --irk-radius-lg:   16px;
      --irk-shadow:      0 4px 24px rgba(5,98,174,.10);
      --irk-shadow-sm:   0 2px 10px rgba(5,98,174,.08);
      --transition:      all .22s cubic-bezier(.4,0,.2,1);
    }

    /* ═══ BASE ═══ */
    *, *::before, *::after { box-sizing: border-box; }
    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      color: var(--irk-text);
      background: var(--irk-white);
      -webkit-font-smoothing: antialiased;
    }

    /* ═══ TOPBAR ═══ */
    .topbar {
      background: var(--irk-blue-deeper);
      color: rgba(255,255,255,.88);
      font-size: .78rem;
      font-weight: 500;
      letter-spacing: .03em;
      padding: .5rem 0;
    }
    .topbar .topbar-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
    }
    .topbar-item {
      display: flex;
      align-items: center;
      gap: .42rem;
      text-decoration: none;
      color: rgba(255,255,255,.85);
      transition: var(--transition);
    }
    .topbar-item:hover { color: #fff; }
    .topbar-item i {
      font-size: .82rem;
      color: var(--irk-gold);
    }
    .topbar-divider {
      width: 1px;
      height: 14px;
      background: rgba(255,255,255,.2);
    }

    /* ═══ NAVBAR ═══ */
    #mainNavbar {
      background: var(--irk-white);
      border-bottom: none;
      box-shadow: var(--irk-shadow);
      padding: .7rem 0;
      transition: var(--transition);
    }
    #mainNavbar.scrolled {
      padding: .45rem 0;
      box-shadow: 0 6px 32px rgba(5,98,174,.13);
    }
    /* Blue accent bar under navbar */
    #mainNavbar::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--irk-blue-deeper) 0%, var(--irk-blue) 50%, var(--irk-gold) 100%);
    }

    /* Logo */
    .navbar-brand {
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: .75rem;
    }
    .logo-img {
      height: 48px;
      width: auto;
      display: block;
      border-radius: 6px;
    }
    .brand-wordmark {
      display: flex;
      flex-direction: column;
      gap: 1px;
    }
    .brand-wordmark .line1 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      color: var(--irk-black);
      line-height: 1;
      letter-spacing: -.01em;
    }
    .brand-wordmark .line1 span { color: var(--irk-blue); }
    .brand-wordmark .line2 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 500;
      font-size: .7rem;
      color: var(--irk-text-muted);
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    /* Nav links */
    .navbar-nav .nav-link {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 500;
      font-size: .875rem;
      color: var(--irk-text) !important;
      padding: .5rem .9rem !important;
      border-radius: var(--irk-radius);
      position: relative;
      transition: var(--transition);
    }
    .navbar-nav .nav-link::after {
      content: '';
      position: absolute;
      bottom: 4px; left: 50%; right: 50%;
      height: 2px;
      background: var(--irk-blue);
      border-radius: 2px;
      transition: left .22s ease, right .22s ease;
    }
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: var(--irk-blue) !important;
      background: var(--irk-blue-pale);
    }
    .navbar-nav .nav-link.active::after,
    .navbar-nav .nav-link:hover::after {
      left: 14px; right: 14px;
    }

    /* Cart button */
    .cart-nav-btn {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      padding: .45rem 1rem;
      border: 1.5px solid var(--irk-blue);
      border-radius: var(--irk-radius);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 600;
      font-size: .84rem;
      color: var(--irk-blue);
      text-decoration: none;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }
    .cart-nav-btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--irk-blue);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .22s ease;
      z-index: 0;
    }
    .cart-nav-btn:hover::before { transform: scaleX(1); }
    .cart-nav-btn:hover { color: #fff; }
    .cart-nav-btn i, .cart-nav-btn span { position: relative; z-index: 1; }
    .cart-pill {
      background: var(--irk-blue);
      color: #fff;
      border-radius: 999px;
      font-size: .7rem;
      font-weight: 700;
      padding: 1px 7px;
      position: relative;
      z-index: 1;
      transition: var(--transition);
    }
    .cart-nav-btn:hover .cart-pill {
      background: rgba(255,255,255,.25);
    }

    /* Mobile cart */
    .cart-btn-mobile {
      color: var(--irk-blue);
      text-decoration: none;
      position: relative;
    }
    .cart-badge {
      position: absolute;
      top: -7px; right: -8px;
      background: var(--irk-gold);
      color: #fff;
      border-radius: 999px;
      font-size: .62rem;
      padding: 1px 5px;
      font-weight: 700;
    }

    /* Donate CTA */
    .btn-donate {
      background: linear-gradient(135deg, var(--irk-blue) 0%, var(--irk-blue-dark) 100%);
      color: #fff !important;
      border: none;
      border-radius: var(--irk-radius);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: .84rem;
      letter-spacing: .03em;
      padding: .52rem 1.3rem;
      box-shadow: 0 3px 14px rgba(7,120,212,.35);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }
    .btn-donate::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--irk-blue-dark) 0%, var(--irk-blue-deeper) 100%);
      opacity: 0;
      transition: opacity .22s;
    }
    .btn-donate:hover::before { opacity: 1; }
    .btn-donate:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(7,120,212,.4);
    }
    .btn-donate i, .btn-donate span { position: relative; z-index: 1; }
    .btn-donate i { color: #ffd580; font-size: .8rem; }

    /* Navbar toggler */
    .navbar-toggler {
      border: 1.5px solid rgba(7,120,212,.25);
      border-radius: var(--irk-radius);
      padding: .35rem .55rem;
    }
    .navbar-toggler:focus { box-shadow: none; outline: none; }

    /* ═══ MESSAGES ═══ */
    .alert {
      border-radius: var(--irk-radius-lg) !important;
      font-size: .88rem;
      font-weight: 500;
    }

    /* ═══ FOOTER ═══ */
    .site-footer {
      background: var(--irk-black);
      color: rgba(255,255,255,.7);
    }
    .footer-top {
      padding: 4rem 0 2.5rem;
      border-bottom: 1px solid rgba(255,255,255,.07);
    }
    .footer-brand-block {
      display: flex;
      align-items: center;
      gap: .75rem;
      margin-bottom: 1.1rem;
    }
    .footer-logo {
      height: 46px;
      width: auto;
      border-radius: 6px;
    }
    .footer-brand-text .f-line1 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 1.05rem;
      color: #fff;
      line-height: 1;
    }
    .footer-brand-text .f-line1 span { color: var(--irk-gold); }
    .footer-brand-text .f-line2 {
      font-size: .7rem;
      color: rgba(255,255,255,.45);
      letter-spacing: .1em;
      text-transform: uppercase;
      margin-top: 3px;
    }
    .footer-desc {
      font-size: .86rem;
      line-height: 1.7;
      color: rgba(255,255,255,.55);
      max-width: 320px;
    }
    .footer-divider {
      width: 36px;
      height: 3px;
      background: linear-gradient(90deg, var(--irk-blue), var(--irk-gold));
      border-radius: 2px;
      margin: 1rem 0;
    }
    .footer-heading {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: .72rem;
      text-transform: uppercase;
      letter-spacing: .14em;
      color: rgba(255,255,255,.4);
      margin-bottom: 1.2rem;
    }
    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-links li { margin-bottom: .6rem; }
    .footer-links a {
      color: rgba(255,255,255,.62);
      text-decoration: none;
      font-size: .88rem;
      transition: var(--transition);
      display: inline-flex;
      align-items: center;
      gap: .4rem;
    }
    .footer-links a::before {
      content: '';
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--irk-blue);
      opacity: 0;
      transition: var(--transition);
      flex-shrink: 0;
    }
    .footer-links a:hover {
      color: #fff;
      padding-left: 6px;
    }
    .footer-links a:hover::before { opacity: 1; }
    .footer-contact {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-contact li {
      display: flex;
      align-items: flex-start;
      gap: .75rem;
      color: rgba(255,255,255,.62);
      font-size: .86rem;
      margin-bottom: .8rem;
      line-height: 1.5;
    }
    .footer-contact .fc-icon {
      width: 28px;
      height: 28px;
      border-radius: 7px;
      background: rgba(7,120,212,.18);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .footer-contact .fc-icon i {
      color: var(--irk-blue);
      font-size: .8rem;
    }

    /* Social links */
    .social-links {
      display: flex;
      gap: .5rem;
      margin-top: 1.2rem;
    }
    .social-links a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      border-radius: 8px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      color: rgba(255,255,255,.6);
      font-size: .9rem;
      text-decoration: none;
      transition: var(--transition);
    }
    .social-links a:hover {
      background: var(--irk-blue);
      border-color: var(--irk-blue);
      color: #fff;
      transform: translateY(-2px);
    }

    /* Footer bottom */
    .footer-bottom {
      padding: 1.4rem 0;
      background: rgba(0,0,0,.25);
    }
    .footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); margin: 0; }
    .footer-bottom .heart { color: var(--irk-gold); }

    /* Newsletter strip */
    .footer-newsletter {
      background: linear-gradient(135deg, var(--irk-blue-deeper) 0%, var(--irk-blue-dark) 100%);
      padding: 2.5rem 0;
      position: relative;
      overflow: hidden;
    }
    .footer-newsletter::before {
      content: '';
      position: absolute;
      right: -60px; top: -60px;
      width: 280px; height: 280px;
      border-radius: 50%;
      border: 40px solid rgba(255,255,255,.05);
    }
    .footer-newsletter::after {
      content: '';
      position: absolute;
      left: -40px; bottom: -50px;
      width: 200px; height: 200px;
      border-radius: 50%;
      border: 30px solid rgba(255,255,255,.04);
    }
    .newsletter-title {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      font-size: 1.55rem;
      color: #fff;
      line-height: 1.25;
    }
    .newsletter-sub {
      font-size: .84rem;
      color: rgba(255,255,255,.65);
      margin-top: .35rem;
    }
    .newsletter-form {
      display: flex;
      gap: .5rem;
      max-width: 440px;
    }
    .newsletter-form input {
      flex: 1;
      border: none;
      border-radius: var(--irk-radius);
      padding: .65rem 1.1rem;
      font-size: .88rem;
      font-family: 'Plus Jakarta Sans', sans-serif;
      background: rgba(255,255,255,.12);
      color: #fff;
      border: 1px solid rgba(255,255,255,.2);
      outline: none;
      transition: var(--transition);
    }
    .newsletter-form input::placeholder { color: rgba(255,255,255,.45); }
    .newsletter-form input:focus {
      background: rgba(255,255,255,.18);
      border-color: rgba(255,255,255,.4);
    }
    .newsletter-form button {
      background: var(--irk-gold);
      color: var(--irk-black);
      border: none;
      border-radius: var(--irk-radius);
      padding: .65rem 1.3rem;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: .84rem;
      cursor: pointer;
      transition: var(--transition);
      white-space: nowrap;
    }
    .newsletter-form button:hover {
      background: #e0a80f;
      transform: translateY(-1px);
    }

    /* ═══ TOAST ═══ */
    #cartToast {
      background: var(--irk-blue-deeper) !important;
      border-radius: var(--irk-radius-lg) !important;
      border: none !important;
      box-shadow: 0 8px 32px rgba(5,98,174,.3) !important;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: .88rem;
    }

    /* ═══ SCROLL BEHAVIOUR ═══ */
    html { scroll-behavior: smooth; }

    /* ═══ MISC UTILITY ═══ */
    .badge-irk {
      background: var(--irk-blue-light);
      color: var(--irk-blue-dark);
      font-size: .72rem;
      font-weight: 700;
      padding: 3px 9px;
      border-radius: 999px;
      letter-spacing: .03em;
    }
     /* ═══════════════════════════════════════
     ABOUT PAGE — Islamic Relief Kenya
  ═══════════════════════════════════════ */

  /* ── PAGE HEADER — compact strip ── */
  .page-header {
    background: #07111f;
    border-bottom: 1px solid rgba(7,120,212,.2);
    padding: 1.4rem 0;
    position: relative;
  }
  .page-header::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(180deg, var(--irk-blue, #0778d4), var(--irk-gold, #c8960c));
  }

  .page-header-inner { position: relative; z-index: 1; }

  /* Breadcrumb row */
  .page-breadcrumb {
    display: flex; align-items: center; gap: .45rem;
    font-size: .74rem; font-weight: 600;
    color: rgba(255,255,255,.38);
    text-transform: uppercase; letter-spacing: .08em;
    margin-bottom: .65rem;
  }
  .page-breadcrumb a { color: rgba(255,255,255,.45); text-decoration: none; transition: color .18s; }
  .page-breadcrumb a:hover { color: #fff; }
  .page-breadcrumb .sep { font-size: .55rem; color: var(--irk-gold, #c8960c); }

  /* Title + actions row */
  .page-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .page-header-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: clamp(1.4rem, 2.8vw, 1.85rem);
    color: #fff;
    line-height: 1.1;
    margin: 0 0 .25rem;
  }
  .page-header-title em { font-style: normal; color: var(--irk-gold, #c8960c); }
  .page-header-sub {
    font-size: .82rem;
    color: rgba(255,255,255,.48);
    margin: 0; line-height: 1.5;
  }

  /* Action buttons */
  .page-header-actions { display: flex; align-items: center; gap: .65rem; flex-shrink: 0; }
  .btn-header-primary {
    background: var(--irk-blue, #0778d4);
    color: #fff !important; border: none; border-radius: 8px;
    font-weight: 700; font-size: .82rem;
    padding: .55rem 1.3rem;
    display: inline-flex; align-items: center; gap: .45rem;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(7,120,212,.35);
    transition: all .22s ease;
  }
  .btn-header-primary i { color: #ffd580; font-size: .78rem; }
  .btn-header-primary:hover { background: #0562ae; transform: translateY(-1px); color: #fff !important; }
  .btn-header-ghost {
    background: transparent;
    color: rgba(255,255,255,.7) !important;
    border: 1px solid rgba(255,255,255,.2); border-radius: 8px;
    font-weight: 600; font-size: .82rem;
    padding: .55rem 1.3rem;
    display: inline-flex; align-items: center; gap: .45rem;
    text-decoration: none; transition: all .22s ease;
  }
  .btn-header-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.38); color: #fff !important; }

  /* ── WHO WE ARE SECTION ── */
  .about-section { background: #fff; padding: 4.5rem 0 3rem; }

  .section-badge {
    display: inline-block;
    background: var(--irk-blue-light, #deeefb);
    color: var(--irk-blue-dark, #0562ae);
    font-size: .72rem; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    padding: .38rem 1.1rem; border-radius: 999px;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: clamp(1.85rem, 3.5vw, 2.65rem);
    color: #0a0f1a; line-height: 1.15;
  }
  .text-gradient {
    background: linear-gradient(90deg, var(--irk-blue, #0778d4) 0%, var(--irk-gold, #c8960c) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  }

  .about-body {
    font-size: .97rem;
    color: #5a6a80;
    line-height: 1.82;
    margin-bottom: 1.1rem;
  }

  .btn-donate {
    background: var(--irk-blue, #0778d4);
    color: #fff !important; border: none; border-radius: 10px;
    font-weight: 700; font-size: .9rem;
    padding: .75rem 1.75rem;
    display: inline-flex; align-items: center; gap: .5rem;
    text-decoration: none; transition: all .22s ease;
  }
  .btn-donate i { color: #ffd580; }
  .btn-donate:hover {
    background: var(--irk-blue-dark, #0562ae);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(7,120,212,.32);
  }

  /* ── VALUE CARDS ── */
  .value-card {
    background: #f5f8fc;
    border-radius: 18px;
    border: 1px solid rgba(7,120,212,.08);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all .28s ease;
    height: 100%;
  }
  .value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(7,120,212,.12);
    border-color: rgba(7,120,212,.2);
    background: #fff;
  }
  .value-icon {
    width: 60px; height: 60px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.45rem;
    margin: 0 auto 1.1rem;
    transition: all .28s ease;
  }
  .value-card:hover .value-icon { transform: scale(1.1) rotate(-5deg); }

  .value-icon.teal    { background: #e0f7f1; color: #0d9e75; }
  .value-icon.blue    { background: #deeefb; color: #0778d4; }
  .value-icon.gold    { background: #fdf4d8; color: #c8960c; }
  .value-icon.red     { background: #fde8e8; color: #d63c3c; }

  .value-title {
    font-weight: 700; font-size: .97rem;
    color: #0a0f1a; margin-bottom: .4rem;
  }
  .value-desc { font-size: .82rem; color: #5a6a80; line-height: 1.6; margin: 0; }

  /* ── MISSION BAND ── */
  .mission-band {
    background: #07111f;
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
  }
  .mission-band::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(7,120,212,.1) 1px, transparent 1px);
    background-size: 24px 24px; pointer-events: none;
  }
  .mission-band::after {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--irk-blue, #0778d4) 0%, var(--irk-gold, #c8960c) 100%);
    border-radius: 24px 24px 0 0;
  }
  .mission-band .container-xl { position: relative; z-index: 2; }
  .mission-quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem; line-height: .6;
    color: rgba(7,120,212,.3);
    display: block; margin-bottom: .5rem;
  }
  .mission-label {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(7,120,212,.18);
    border: 1px solid rgba(7,120,212,.3);
    color: #82c8f4;
    font-size: .72rem; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    padding: .35rem 1rem; border-radius: 999px;
    margin-bottom: 1.5rem;
  }
  .mission-label i { color: var(--irk-gold, #c8960c); }
  .mission-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.35rem, 2.8vw, 2rem);
    font-weight: 500;
    color: rgba(255,255,255,.9);
    line-height: 1.55;
    max-width: 780px;
    margin: 0 auto;
    font-style: italic;
  }
  .mission-text em { font-style: normal; color: var(--irk-gold, #c8960c); }

  /* ── CTA ── */
  .about-cta {
    background: linear-gradient(135deg, #03407a 0%, #0778d4 55%, #0a8ee0 100%);
    padding: 6rem 0; position: relative; overflow: hidden;
  }
  .about-cta::before {
    content: ''; position: absolute; right: -80px; top: -80px;
    width: 380px; height: 380px; border-radius: 50%;
    border: 65px solid rgba(255,255,255,.06);
  }
  .about-cta::after {
    content: ''; position: absolute; left: -50px; bottom: -50px;
    width: 240px; height: 240px; border-radius: 50%;
    border: 42px solid rgba(200,150,12,.1);
  }
  .about-cta .container-xl { position: relative; z-index: 2; }
  .about-cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700; font-size: clamp(2rem, 4vw, 3rem);
    color: #fff; line-height: 1.15; margin-bottom: 1rem;
  }
  .about-cta-sub { color: rgba(255,255,255,.65); font-size: 1rem; line-height: 1.7; margin-bottom: 2rem; }
  .btn-cta-white {
    background: #fff; color: #0562ae !important;
    border: none; border-radius: 12px;
    font-weight: 800; font-size: 1rem;
    padding: .95rem 2.4rem;
    display: inline-flex; align-items: center; gap: .6rem;
    text-decoration: none;
    box-shadow: 0 10px 32px rgba(0,0,0,.2);
    transition: all .24s ease;
  }
  .btn-cta-white i { color: var(--irk-gold, #c8960c); }
  .btn-cta-white:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(0,0,0,.28); color: #03407a !important; }

  .btn-cta-ghost {
    background: transparent; color: rgba(255,255,255,.8) !important;
    border: 1.5px solid rgba(255,255,255,.3); border-radius: 12px;
    font-weight: 600; font-size: 1rem;
    padding: .95rem 2.4rem;
    display: inline-flex; align-items: center; gap: .6rem;
    text-decoration: none; transition: all .24s ease;
  }
  .btn-cta-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5); color: #fff !important; }
   /* ═══════════════════════════════════════
     CART PAGE — Islamic Relief Kenya
  ═══════════════════════════════════════ */

  /* ── PAGE HEADER (compact strip) ── */
  .page-header {
    background: #07111f;
    border-bottom: 1px solid rgba(7,120,212,.2);
    padding: 1.4rem 0;
    position: relative;
  }
  .page-header::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(180deg, #0778d4, #c8960c);
  }
  .page-breadcrumb {
    display: flex; align-items: center; gap: .45rem;
    font-size: .74rem; font-weight: 600;
    color: rgba(255,255,255,.38);
    text-transform: uppercase; letter-spacing: .08em;
    margin-bottom: .6rem; list-style: none; padding: 0;
  }
  .page-breadcrumb a { color: rgba(255,255,255,.45); text-decoration: none; transition: color .18s; }
  .page-breadcrumb a:hover { color: #fff; }
  .page-breadcrumb .sep { font-size: .55rem; color: #c8960c; }
  .page-header-content {
    display: flex; align-items: center;
    justify-content: space-between; flex-wrap: wrap; gap: .75rem;
  }
  .page-header-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: clamp(1.4rem, 2.8vw, 1.85rem);
    color: #fff; line-height: 1.1; margin: 0 0 .2rem;
  }
  .page-header-sub { font-size: .82rem; color: rgba(255,255,255,.46); margin: 0; }

  /* ── MAIN SECTION ── */
  .cart-section { background: #f2f7fc; padding: 3rem 0 5rem; }

  /* ── EMPTY STATE ── */
  .empty-cart-wrapper {
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(7,120,212,.09);
    padding: 5rem 2rem;
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
  }
  .empty-cart-icon {
    width: 90px; height: 90px; border-radius: 50%;
    background: #deeefb; color: #0778d4;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.4rem; margin: 0 auto 1.5rem;
  }
  .empty-cart-wrapper h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700; font-size: 1.75rem;
    color: #0a0f1a; margin-bottom: .5rem;
  }
  .empty-cart-wrapper p { font-size: .92rem; color: #5a6a80; line-height: 1.7; }

  /* ── CART CARD ── */
  .cart-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(7,120,212,.08);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(7,120,212,.06);
  }
  .cart-card-header {
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,.06);
    padding: 1.1rem 1.5rem;
    display: flex; align-items: center; justify-content: space-between;
  }
  .cart-card-header h6 {
    font-weight: 700; font-size: .92rem; color: #0a0f1a; margin: 0;
  }
  .cart-card-header h6 i { color: #0778d4; }
  .btn-clear-cart {
    background: transparent;
    color: #d63c3c;
    border: 1px solid rgba(214,60,60,.25);
    border-radius: 999px;
    font-size: .78rem; font-weight: 600;
    padding: .32rem .85rem;
    display: inline-flex; align-items: center; gap: .35rem;
    cursor: pointer; transition: all .2s ease;
    text-decoration: none;
  }
  .btn-clear-cart:hover { background: #d63c3c; color: #fff; border-color: #d63c3c; }

  /* ── CART ITEM ── */
  .cart-item {
    display: flex; align-items: center; gap: 1rem;
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,.05);
    transition: background .18s ease;
  }
  .cart-item:last-child { border-bottom: none; }
  .cart-item:hover { background: #fafcff; }
  .cart-item-icon {
    width: 46px; height: 46px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; flex-shrink: 0;
  }
  .cart-item-name {
    font-weight: 700; font-size: .9rem; color: #0a0f1a; line-height: 1.3;
  }
  .cart-item-msg {
    font-size: .78rem; color: #5a6a80;
    font-style: italic; margin-top: 2px;
  }
  .cart-amount-wrap .input-group { width: 150px; }
  .cart-amount-wrap .input-group-text {
    background: #f2f7fc;
    border-color: rgba(7,120,212,.2);
    color: #0562ae; font-weight: 700; font-size: .82rem;
    border-radius: 8px 0 0 8px;
  }
  .cart-amount-wrap .form-control {
    border-color: rgba(7,120,212,.2);
    font-weight: 700; font-size: .88rem; color: #0a0f1a;
    text-align: right;
    border-radius: 0 8px 8px 0;
  }
  .cart-amount-wrap .form-control:focus {
    border-color: #0778d4;
    box-shadow: 0 0 0 3px rgba(7,120,212,.12);
  }
  .btn-remove {
    background: transparent; border: none;
    color: rgba(0,0,0,.25); font-size: 1rem;
    padding: .3rem .4rem; border-radius: 8px;
    cursor: pointer; transition: all .18s ease;
    flex-shrink: 0;
  }
  .btn-remove:hover { background: #fde8e8; color: #d63c3c; }

  /* ── ADD MORE ── */
  .btn-add-more {
    display: inline-flex; align-items: center; gap: .45rem;
    background: transparent;
    border: 1.5px dashed rgba(7,120,212,.35);
    border-radius: 10px; color: #0778d4;
    font-weight: 600; font-size: .85rem;
    padding: .6rem 1.3rem; text-decoration: none;
    transition: all .22s ease;
  }
  .btn-add-more:hover {
    background: #deeefb; border-color: #0778d4; color: #0562ae;
  }

  /* ── ORDER SUMMARY CARD ── */
  .summary-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(7,120,212,.08);
    padding: 1.75rem;
    box-shadow: 0 4px 24px rgba(7,120,212,.07);
    position: sticky; top: 90px;
  }
  .summary-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700; font-size: 1.3rem;
    color: #0a0f1a; margin-bottom: 1.25rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid rgba(0,0,0,.06);
  }
  .summary-row {
    display: flex; justify-content: space-between;
    align-items: center; margin-bottom: .6rem;
  }
  .summary-row-label { font-size: .84rem; color: #5a6a80; }
  .summary-row-amount { font-size: .84rem; font-weight: 700; color: #0a0f1a; }

  .summary-divider {
    border: none; border-top: 1px solid rgba(0,0,0,.07);
    margin: 1rem 0;
  }
  .summary-total-row {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 1.5rem;
  }
  .summary-total-label { font-weight: 700; font-size: 1rem; color: #0a0f1a; }
  .summary-total-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 700;
    color: #0778d4; line-height: 1;
  }

  /* Checkout button */
  .btn-checkout {
    width: 100%;
    background: linear-gradient(135deg, #0562ae 0%, #0778d4 100%);
    color: #fff !important; border: none; border-radius: 12px;
    font-weight: 700; font-size: .95rem;
    padding: .95rem 1.5rem;
    display: flex; align-items: center; justify-content: center; gap: .55rem;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(7,120,212,.32);
    transition: all .24s ease;
  }
  .btn-checkout i { color: #ffd580; }
  .btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(7,120,212,.42);
    color: #fff !important;
  }

  /* Secure badge */
  .secure-badge {
    display: flex; align-items: center; justify-content: center; gap: .4rem;
    font-size: .76rem; color: #5a6a80; margin-top: .85rem;
    padding: .6rem;
    background: #f5f8fc; border-radius: 8px;
    border: 1px solid rgba(0,0,0,.05);
  }
  .secure-badge i { color: #0d9e75; }

  /* Donate button (empty state) */
  .btn-donate {
    background: #0778d4; color: #fff !important;
    border: none; border-radius: 10px;
    font-weight: 700; font-size: .9rem;
    padding: .8rem 2rem;
    display: inline-flex; align-items: center; gap: .5rem;
    text-decoration: none; transition: all .22s ease;
  }
  .btn-donate i { color: #ffd580; }
  .btn-donate:hover { background: #0562ae; transform: translateY(-2px); }
  /* ═══════════════════════════════════════
     CAUSES PAGE — Islamic Relief Kenya
  ═══════════════════════════════════════ */

  /* ── PAGE HEADER (compact strip) ── */
  .page-header {
    background: #07111f;
    border-bottom: 1px solid rgba(7,120,212,.2);
    padding: 1.4rem 0;
    position: relative;
  }
  .page-header::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(180deg, #0778d4, #c8960c);
  }
  .page-breadcrumb {
    display: flex; align-items: center; gap: .45rem;
    font-size: .74rem; font-weight: 600;
    color: rgba(255,255,255,.38);
    text-transform: uppercase; letter-spacing: .08em;
    margin-bottom: .6rem;
  }
  .page-breadcrumb a { color: rgba(255,255,255,.45); text-decoration: none; transition: color .18s; }
  .page-breadcrumb a:hover { color: #fff; }
  .page-breadcrumb .sep { font-size: .55rem; color: #c8960c; }
  .page-header-content {
    display: flex; align-items: center;
    justify-content: space-between; flex-wrap: wrap; gap: .75rem;
  }
  .page-header-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: clamp(1.4rem, 2.8vw, 1.85rem);
    color: #fff; line-height: 1.1; margin: 0 0 .2rem;
  }
  .page-header-sub { font-size: .82rem; color: rgba(255,255,255,.46); margin: 0; }

  /* Count badge */
  .causes-count-badge {
    display: inline-flex; align-items: center; gap: .45rem;
    background: rgba(7,120,212,.18);
    border: 1px solid rgba(7,120,212,.3);
    color: #82c8f4;
    font-size: .75rem; font-weight: 700;
    padding: .38rem .9rem; border-radius: 999px;
    letter-spacing: .05em;
    white-space: nowrap;
  }
  .causes-count-badge i { color: #c8960c; }

  /* ── MAIN SECTION ── */
  .causes-section { background: #f2f7fc; padding: 3.5rem 0 5rem; }

  /* ── CATEGORY CARDS ── */
  .category-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,.07);
    overflow: hidden;
    transition: all .3s ease;
    height: 100%;
    display: flex; flex-direction: column;
  }
  .category-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 64px rgba(7,120,212,.13);
    border-color: rgba(7,120,212,.22);
  }
  .category-card-header {
    background: linear-gradient(
      135deg,
      var(--cat-color, #0778d4) 0%,
      color-mix(in srgb, var(--cat-color, #0778d4) 65%, #000) 100%
    );
    padding: 1.85rem;
    display: flex; align-items: flex-start; justify-content: space-between;
    min-height: 110px;
  }
  .category-icon-wrap {
    width: 58px; height: 58px; border-radius: 15px;
    background: rgba(255,255,255,.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.65rem; color: #fff;
    transition: transform .28s ease;
  }
  .category-card:hover .category-icon-wrap { transform: scale(1.08) rotate(-4deg); }
  .category-progress-pill {
    background: rgba(255,255,255,.2); color: #fff;
    font-size: .7rem; font-weight: 700;
    padding: .3rem .75rem; border-radius: 999px;
    border: 1px solid rgba(255,255,255,.28);
    white-space: nowrap;
  }
  .category-card-body {
    padding: 1.6rem; flex: 1;
    display: flex; flex-direction: column;
  }
  .category-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700; font-size: 1.05rem;
    color: #0a0f1a; margin-bottom: .5rem;
  }
  .category-desc {
    font-size: .875rem; line-height: 1.65;
    color: #5a6a80; flex: 1; margin-bottom: 1rem;
  }
  .progress-sm { height: 5px; border-radius: 3px; background: #eef2f7; margin-bottom: 1rem; }
  .progress-sm .progress-bar { border-radius: 3px; transition: width .5s ease; }

  /* Card buttons */
  .btn-learn {
    background: transparent;
    border: 1.5px solid rgba(0,0,0,.12);
    border-radius: 8px; color: #5a6a80;
    font-size: .82rem; font-weight: 600;
    padding: .48rem .9rem;
    white-space: nowrap;
    transition: all .2s ease;
    text-decoration: none;
    display: inline-flex; align-items: center;
  }
  .btn-learn:hover { border-color: #0778d4; color: #0778d4; background: #f0f8ff; }

  .btn-donate-card {
    background: #0778d4; color: #fff !important;
    border: none; border-radius: 8px;
    font-weight: 700; font-size: .84rem;
    padding: .48rem 1rem;
    flex: 1;
    display: inline-flex; align-items: center; justify-content: center; gap: .35rem;
    cursor: pointer; transition: all .22s ease;
  }
  .btn-donate-card i { color: #ffd580; font-size: .8rem; }
  .btn-donate-card:hover { background: #0562ae; transform: translateY(-1px); }

  /* ── EMPTY STATE ── */
  .empty-causes {
    background: #fff; border-radius: 24px;
    border: 1px solid rgba(7,120,212,.09);
    padding: 5rem 2rem; text-align: center;
    max-width: 480px; margin: 0 auto;
  }
  .empty-causes-icon {
    width: 80px; height: 80px; border-radius: 50%;
    background: #deeefb; color: #0778d4;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; margin: 0 auto 1.25rem;
  }
  .empty-causes h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700; font-size: 1.6rem;
    color: #0a0f1a; margin-bottom: .5rem;
  }
  .empty-causes p { font-size: .9rem; color: #5a6a80; line-height: 1.7; }
  .btn-donate {
    background: #0778d4; color: #fff !important;
    border: none; border-radius: 10px;
    font-weight: 700; font-size: .9rem;
    padding: .75rem 1.75rem;
    display: inline-flex; align-items: center; gap: .5rem;
    text-decoration: none; transition: all .22s ease;
  }
  .btn-donate i { color: #ffd580; }
  .btn-donate:hover { background: #0562ae; transform: translateY(-2px); }

  /* ── MODAL ── */
  .modal-content { border-radius: 20px !important; overflow: hidden; }
  .modal-header { border-bottom: none !important; padding: 1.6rem 1.6rem .5rem !important; }
  .modal-title { font-weight: 700; color: #0a0f1a; font-size: 1.15rem; }
  .amount-pill {
    padding: .42rem 1.1rem;
    border: 1.5px solid rgba(7,120,212,.25); border-radius: 8px;
    color: #0562ae; font-weight: 600; font-size: .84rem;
    cursor: pointer; background: #eef6fd; transition: all .18s ease;
  }
  .amount-pill:hover, .amount-pill.active { background: #0778d4; border-color: #0778d4; color: #fff; }
  .input-group-text {
    background: #eef6fd; border-color: rgba(7,120,212,.25);
    color: #0562ae; font-weight: 700;
  }
  /* ═══════════════════════════════════════
     CATEGORY DETAIL — Islamic Relief Kenya
  ═══════════════════════════════════════ */

  /* ── PAGE HEADER (compact strip) ── */
  .page-header {
    background: #07111f;
    border-bottom: 1px solid rgba(7,120,212,.2);
    padding: 1.4rem 0;
    position: relative;
  }
  .page-header::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(180deg, #0778d4, #c8960c);
  }
  .page-breadcrumb {
    display: flex; align-items: center; gap: .45rem;
    font-size: .74rem; font-weight: 600;
    color: rgba(255,255,255,.38);
    text-transform: uppercase; letter-spacing: .08em;
    margin-bottom: .65rem;
  }
  .page-breadcrumb a { color: rgba(255,255,255,.45); text-decoration: none; transition: color .18s; }
  .page-breadcrumb a:hover { color: #fff; }
  .page-breadcrumb .sep { font-size: .55rem; color: #c8960c; }
  .page-header-row {
    display: flex; align-items: center;
    justify-content: space-between; flex-wrap: wrap; gap: .75rem;
  }
  .cat-header-left { display: flex; align-items: center; gap: 1rem; }
  .cat-header-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.35rem; color: #fff; flex-shrink: 0;
  }
  .page-header-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: clamp(1.4rem, 2.8vw, 1.85rem);
    color: #fff; line-height: 1.1; margin: 0 0 .2rem;
  }
  .page-header-sub { font-size: .82rem; color: rgba(255,255,255,.46); margin: 0; }
  .funded-pill {
    display: inline-flex; align-items: center; gap: .4rem;
    background: rgba(255,255,255,.12); color: #fff;
    border: 1px solid rgba(255,255,255,.2);
    font-size: .74rem; font-weight: 700;
    padding: .35rem .85rem; border-radius: 999px;
    white-space: nowrap;
  }
  .funded-pill i { color: #c8960c; }

  /* ── MAIN SECTION ── */
  .detail-section { background: #f2f7fc; padding: 3.5rem 0 5rem; }

  /* ── CATEGORY IMAGE ── */
  .cat-image {
    width: 100%; border-radius: 18px;
    object-fit: cover; max-height: 360px;
    display: block; margin-bottom: 2rem;
    box-shadow: 0 8px 40px rgba(7,120,212,.1);
  }

  /* ── ABOUT CAUSE ── */
  .about-cause-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700; font-size: 1.6rem;
    color: #0a0f1a; margin-bottom: 1rem;
  }
  .about-cause-title span {
    background: linear-gradient(90deg, #0778d4, #c8960c);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  }
  .category-full-desc {
    font-size: .95rem; color: #5a6a80; line-height: 1.85;
  }
  .category-full-desc p { margin-bottom: 1rem; }

  /* ── RECENT DONORS ── */
  .donors-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700; font-size: 1.35rem;
    color: #0a0f1a; margin: 2.5rem 0 1rem;
  }
  .donors-card {
    background: #fff; border-radius: 16px;
    border: 1px solid rgba(7,120,212,.09);
    overflow: hidden;
  }
  .donor-row {
    display: flex; align-items: center; gap: 1rem;
    padding: .9rem 1.25rem;
    border-bottom: 1px solid rgba(0,0,0,.05);
    transition: background .18s;
  }
  .donor-row:last-child { border-bottom: none; }
  .donor-row:hover { background: #f8fbff; }
  .donor-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: #0778d4; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: .9rem; flex-shrink: 0;
  }
  .donor-name { font-weight: 700; font-size: .88rem; color: #0a0f1a; }
  .donor-msg { font-size: .76rem; color: #5a6a80; font-style: italic; margin-top: 1px; }
  .donor-amount { font-weight: 700; font-size: .9rem; color: #0d9e75; white-space: nowrap; }
  .donor-time { font-size: .72rem; color: #5a6a80; margin-top: 1px; }

  /* ── DONATE WIDGET ── */
  .donate-widget { position: sticky; top: 90px; }

  /* Progress bar */
  .progress-widget {
    background: #fff; border-radius: 16px;
    border: 1px solid rgba(7,120,212,.09);
    padding: 1.5rem; margin-bottom: 1.25rem;
    box-shadow: 0 4px 20px rgba(7,120,212,.06);
  }
  .progress-meta {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 1rem;
  }
  .progress-raised {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem; font-weight: 700;
    color: #0d9e75; line-height: 1;
  }
  .progress-raised-label { font-size: .78rem; color: #5a6a80; margin-top: 2px; }
  .progress-pct {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem; font-weight: 700;
    color: #0778d4; line-height: 1; text-align: right;
  }
  .progress-pct-label { font-size: .78rem; color: #5a6a80; margin-top: 2px; text-align: right; }
  .progress-bar-track {
    height: 10px; border-radius: 10px;
    background: #eef2f7; overflow: hidden;
  }
  .progress-bar-fill {
    height: 100%; border-radius: 10px;
    transition: width .6s ease;
  }

  /* Donation form card */
  .donate-form-card {
    background: #fff; border-radius: 20px;
    border: 1px solid rgba(7,120,212,.09);
    padding: 1.75rem;
    box-shadow: 0 4px 24px rgba(7,120,212,.07);
    margin-bottom: 1rem;
  }
  .donate-form-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700; font-size: 1.3rem;
    color: #0a0f1a; margin-bottom: .25rem;
  }
  .donate-form-sub { font-size: .8rem; color: #5a6a80; margin-bottom: 1.4rem; }

  /* Amount pills */
  .amount-pills { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem; }
  .amount-pill {
    padding: .42rem 1rem;
    border: 1.5px solid rgba(7,120,212,.25); border-radius: 8px;
    color: #0562ae; font-weight: 600; font-size: .84rem;
    cursor: pointer; background: #eef6fd;
    transition: all .18s ease; white-space: nowrap;
  }
  .amount-pill:hover, .amount-pill.active {
    background: #0778d4; border-color: #0778d4; color: #fff;
  }

  /* Input */
  .donate-input-group .input-group-text {
    background: #eef6fd; border-color: rgba(7,120,212,.25);
    color: #0562ae; font-weight: 700; border-radius: 8px 0 0 8px;
  }
  .donate-input-group .form-control {
    border-color: rgba(7,120,212,.25); border-radius: 0 8px 8px 0;
    font-weight: 600; font-size: .95rem;
  }
  .donate-input-group .form-control:focus {
    border-color: #0778d4; box-shadow: 0 0 0 3px rgba(7,120,212,.12);
  }

  /* Message textarea */
  .donate-message {
    border-color: rgba(7,120,212,.2) !important;
    border-radius: 10px !important; resize: none;
    font-size: .88rem;
  }
  .donate-message:focus {
    border-color: #0778d4 !important; box-shadow: 0 0 0 3px rgba(7,120,212,.12) !important;
  }

  /* Add to cart button */
  .btn-add-cart {
    width: 100%;
    background: linear-gradient(135deg, #0562ae 0%, #0778d4 100%);
    color: #fff !important; border: none; border-radius: 12px;
    font-weight: 700; font-size: .95rem;
    padding: .95rem;
    display: flex; align-items: center; justify-content: center; gap: .55rem;
    cursor: pointer; transition: all .24s ease;
    box-shadow: 0 6px 24px rgba(7,120,212,.3);
  }
  .btn-add-cart i { color: #ffd580; }
  .btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(7,120,212,.42);
  }

  /* View cart link */
  .view-cart-link {
    display: flex; align-items: center; justify-content: center; gap: .4rem;
    font-size: .8rem; color: #5a6a80; text-decoration: none;
    margin-top: .85rem; transition: color .18s;
  }
  .view-cart-link:hover { color: #0778d4; }
  .view-cart-link i { color: #0778d4; }

  /* Share card */
  .share-card {
    background: #fff; border-radius: 16px;
    border: 1px solid rgba(7,120,212,.08);
    padding: 1.25rem 1.5rem;
    text-align: center;
  }
  .share-label { font-size: .78rem; font-weight: 600; color: #5a6a80; margin-bottom: .75rem; text-transform: uppercase; letter-spacing: .08em; }
  .share-btns { display: flex; justify-content: center; gap: .6rem; flex-wrap: wrap; }
  .btn-share {
    display: inline-flex; align-items: center; gap: .4rem;
    font-size: .8rem; font-weight: 700;
    padding: .45rem 1.1rem; border-radius: 999px;
    text-decoration: none; transition: all .2s ease;
    border: 1.5px solid;
  }
  .btn-share-wa { color: #25d366; border-color: rgba(37,211,102,.3); background: rgba(37,211,102,.06); }
  .btn-share-wa:hover { background: #25d366; color: #fff; border-color: #25d366; }
  .btn-share-tw { color: #0a0f1a; border-color: rgba(0,0,0,.15); background: rgba(0,0,0,.04); }
  .btn-share-tw:hover { background: #0a0f1a; color: #fff; border-color: #0a0f1a; }
  /* ═══════════════════════════════════════
     CHECKOUT PAGE — Islamic Relief Kenya
  ═══════════════════════════════════════ */

  /* ── PAGE HEADER (compact strip) ── */
  .page-header {
    background: #07111f;
    border-bottom: 1px solid rgba(7,120,212,.2);
    padding: 1.4rem 0;
    position: relative;
  }
  .page-header::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(180deg, #0778d4, #c8960c);
  }
  .page-breadcrumb {
    display: flex; align-items: center; gap: .45rem;
    font-size: .74rem; font-weight: 600;
    color: rgba(255,255,255,.38);
    text-transform: uppercase; letter-spacing: .08em;
    margin-bottom: .6rem;
  }
  .page-breadcrumb a { color: rgba(255,255,255,.45); text-decoration: none; transition: color .18s; }
  .page-breadcrumb a:hover { color: #fff; }
  .page-breadcrumb .sep { font-size: .55rem; color: #c8960c; }
  .page-header-content {
    display: flex; align-items: center;
    justify-content: space-between; flex-wrap: wrap; gap: .75rem;
  }
  .page-header-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: clamp(1.4rem, 2.8vw, 1.85rem);
    color: #fff; line-height: 1.1; margin: 0 0 .2rem;
  }
  .page-header-sub { font-size: .82rem; color: rgba(255,255,255,.46); margin: 0; }
  .header-secure-badge {
    display: inline-flex; align-items: center; gap: .45rem;
    background: rgba(13,158,117,.15);
    border: 1px solid rgba(13,158,117,.3);
    color: #4fd1a0;
    font-size: .74rem; font-weight: 700;
    padding: .35rem .9rem; border-radius: 999px;
    white-space: nowrap;
  }
  .header-secure-badge i { font-size: .8rem; }

  /* ── MAIN SECTION ── */
  .checkout-section-wrap { background: #f2f7fc; padding: 3rem 0 5rem; }

  /* ── STEPS ── */
  .checkout-steps {
    display: flex; align-items: center; justify-content: center;
    gap: 0; margin-bottom: 2.5rem;
  }
  .step-item {
    display: flex; flex-direction: column; align-items: center; gap: .4rem;
    position: relative;
  }
  .step-circle {
    width: 36px; height: 36px; border-radius: 50%;
    background: #e2eaf4; color: #5a6a80;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: .85rem;
    border: 2px solid #e2eaf4;
    transition: all .25s ease;
    z-index: 1;
  }
  .step-item.done .step-circle {
    background: #0d9e75; border-color: #0d9e75; color: #fff;
  }
  .step-item.active .step-circle {
    background: #0778d4; border-color: #0778d4; color: #fff;
    box-shadow: 0 0 0 5px rgba(7,120,212,.15);
  }
  .step-label {
    font-size: .74rem; font-weight: 600;
    color: #5a6a80; letter-spacing: .04em;
    text-transform: uppercase; white-space: nowrap;
  }
  .step-item.active .step-label { color: #0778d4; }
  .step-item.done .step-label { color: #0d9e75; }
  .step-line {
    width: 80px; height: 2px;
    background: #e2eaf4; margin: 0 .5rem;
    margin-bottom: 1.4rem;
    flex-shrink: 0;
  }
  .step-line.done { background: #0d9e75; }

  /* ── FORM SECTIONS ── */
  .form-card {
    background: #fff; border-radius: 20px;
    border: 1px solid rgba(7,120,212,.08);
    padding: 1.75rem;
    box-shadow: 0 4px 24px rgba(7,120,212,.06);
    margin-bottom: 1.25rem;
  }
  .form-card-title {
    display: flex; align-items: center; gap: .75rem;
    margin-bottom: 1.5rem;
  }
  .section-num {
    width: 30px; height: 30px; border-radius: 50%;
    background: #0778d4; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: .82rem; flex-shrink: 0;
  }
  .form-card-title h5 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700; font-size: 1.25rem;
    color: #0a0f1a; margin: 0;
  }

  /* Form controls */
  .form-label {
    font-size: .82rem; font-weight: 700;
    color: #0a0f1a; margin-bottom: .4rem;
  }
  .form-control, .form-select {
    border-color: rgba(7,120,212,.2) !important;
    border-radius: 10px !important;
    font-size: .9rem; padding: .6rem .9rem;
    transition: all .2s ease;
  }
  .form-control:focus {
    border-color: #0778d4 !important;
    box-shadow: 0 0 0 3px rgba(7,120,212,.12) !important;
  }
  .input-group-text {
    border-color: rgba(7,120,212,.2) !important;
    background: #eef6fd !important;
    color: #0562ae !important; font-weight: 700;
  }
  .form-text { font-size: .76rem; color: #5a6a80; }
  .form-check-input:checked {
    background-color: #0778d4; border-color: #0778d4;
  }

  /* ── PAYMENT TILES ── */
  .payment-tile {
    display: block;
    border: 2px solid rgba(0,0,0,.09);
    border-radius: 16px; cursor: pointer;
    transition: all .22s ease; background: #fff;
    position: relative; user-select: none;
  }
  .payment-tile:hover {
    border-color: #0778d4;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(7,120,212,.12);
  }
  .payment-tile.active {
    border-color: #0778d4;
    background: #f0f8ff;
    box-shadow: 0 4px 18px rgba(7,120,212,.14);
  }
  .pt-tile-body { padding: 1.25rem 1rem; }
  .pt-check {
    position: absolute; top: 10px; right: 10px;
    color: #0778d4; font-size: 1.1rem;
    opacity: 0; transform: scale(.7);
    transition: all .2s;
  }
  .payment-tile.active .pt-check { opacity: 1; transform: scale(1); }
  .pt-sub { font-size: .74rem; color: #5a6a80; margin-top: .2rem; }

  /* M-Pesa logo */
  .mpesa-logo-pill {
    display: inline-block;
    background: #00a859; color: #fff;
    font-family: 'Arial Black', Arial, sans-serif;
    font-weight: 900; font-size: .75rem;
    letter-spacing: 1.5px; border-radius: 7px;
    padding: .4rem .8rem;
  }
  /* Visa */
  .visa-pill {
    background: #1a1f71; color: #fff;
    font-weight: 900; font-size: .78rem;
    font-style: italic; letter-spacing: 1px;
    border-radius: 5px; padding: .35rem .65rem;
  }
  /* Mastercard */
  .mc-pill { width: 42px; height: 28px; position: relative; }
  .mc-c1, .mc-c2 {
    position: absolute; width: 22px; height: 22px;
    border-radius: 50%; top: 50%; transform: translateY(-50%);
  }
  .mc-c1 { background: #eb001b; left: 0; }
  .mc-c2 { background: #f79e1b; right: 0; opacity: .9; }

  /* ── M-PESA PANEL ── */
  .mpesa-header-bar {
    background: #e8f8f0; border: 1.5px solid #b7e4c7;
    border-radius: 12px; padding: .9rem 1rem;
    display: flex; align-items: center; gap: .75rem;
    margin-bottom: 1.1rem;
  }
  .mpesa-pulse-dot {
    width: 12px; height: 12px; background: #00a859;
    border-radius: 50%; flex-shrink: 0;
    animation: pulse-green 2s ease-in-out infinite;
  }
  @keyframes pulse-green {
    0%,100% { box-shadow: 0 0 0 3px rgba(0,168,89,.25); }
    50%      { box-shadow: 0 0 0 7px rgba(0,168,89,.07); }
  }
  .mpesa-steps-box {
    background: #f6fdf8; border: 1.5px solid #c3e6cb;
    border-radius: 12px; padding: .9rem 1rem; margin-bottom: 1rem;
  }
  .mpesa-step-row {
    display: flex; align-items: flex-start; gap: .6rem;
    margin-bottom: .6rem;
  }
  .mpesa-step-row:last-child { margin-bottom: 0; }
  .mpesa-num {
    width: 20px; height: 20px; background: #1a6b3c; color: #fff;
    border-radius: 50%; font-size: .68rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 1px;
  }

  /* ── CARD PANEL ── */
  .card-header-bar {
    background: #eff6ff; border: 1.5px solid #bfdbfe;
    border-radius: 12px; padding: .9rem 1rem;
    display: flex; align-items: center; gap: .75rem;
    margin-bottom: 1.1rem;
  }

  /* ── INTEGRATION NOTICE ── */
  .integration-notice {
    background: #fffbeb; border: 1.5px dashed #f59e0b;
    border-radius: 10px; padding: .85rem 1rem;
    display: flex; gap: .75rem; align-items: flex-start;
    margin-top: .85rem;
  }
  .integration-notice i { color: #d97706; flex-shrink: 0; margin-top: 2px; }

  /* Panel animation */
  .pay-panel { animation: panelIn .22s ease; }
  @keyframes panelIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ── SECURITY NOTICE ── */
  .security-notice {
    background: #f0fdf6; border: 1px solid rgba(13,158,117,.2);
    border-radius: 12px; padding: .9rem 1.1rem;
    display: flex; align-items: center; gap: .85rem;
    margin-bottom: 1.25rem;
  }
  .security-notice i { color: #0d9e75; font-size: 1.2rem; flex-shrink: 0; }
  .security-notice span { font-size: .82rem; color: #5a6a80; line-height: 1.55; }

  /* ── ORDER SUMMARY ── */
  .summary-card {
    background: #fff; border-radius: 20px;
    border: 1px solid rgba(7,120,212,.08);
    padding: 1.75rem;
    box-shadow: 0 4px 24px rgba(7,120,212,.07);
    position: sticky; top: 90px;
  }
  .summary-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700; font-size: 1.3rem;
    color: #0a0f1a; margin-bottom: 1.25rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid rgba(0,0,0,.06);
  }
  .summary-item {
    display: flex; align-items: center; gap: .85rem;
    margin-bottom: .9rem;
  }
  .summary-item-icon {
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.05rem; flex-shrink: 0;
  }
  .summary-item-name { font-weight: 700; font-size: .86rem; color: #0a0f1a; line-height: 1.3; }
  .summary-item-msg { font-size: .74rem; color: #5a6a80; font-style: italic; }
  .summary-item-amt { font-weight: 700; font-size: .88rem; color: #0a0f1a; white-space: nowrap; margin-left: auto; }
  .summary-divider { border: none; border-top: 1px solid rgba(0,0,0,.07); margin: 1rem 0; }
  .summary-row {
    display: flex; justify-content: space-between; align-items: center;
    font-size: .84rem; margin-bottom: .5rem;
  }
  .summary-row-label { color: #5a6a80; }
  .summary-total-row {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 1.5rem;
  }
  .summary-total-label { font-weight: 700; font-size: .95rem; color: #0a0f1a; }
  .summary-total-amt {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem; font-weight: 700; color: #0778d4; line-height: 1;
  }

  /* Submit button */
  .btn-complete {
    width: 100%;
    background: linear-gradient(135deg, #0562ae 0%, #0778d4 100%);
    color: #fff !important; border: none; border-radius: 12px;
    font-weight: 700; font-size: .95rem; padding: 1rem;
    display: flex; align-items: center; justify-content: center; gap: .55rem;
    cursor: pointer; transition: all .24s ease;
    box-shadow: 0 6px 24px rgba(7,120,212,.3);
  }
  .btn-complete i { color: #ffd580; }
  .btn-complete:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(7,120,212,.42); }

  /* Pay method indicator */
  .pay-method-indicator {
    text-align: center; margin-top: .85rem;
    font-size: .8rem; color: #5a6a80;
  }
  .pay-method-indicator strong { color: #0a0f1a; }

  /* SSL row */
  .ssl-row {
    text-align: center; margin-top: .5rem;
    font-size: .72rem; color: #5a6a80;
    display: flex; align-items: center; justify-content: center; gap: .5rem;
  }
  .ssl-row i { color: #0d9e75; }

  /* Footer brand logos */
  .brand-logos {
    display: flex; justify-content: center; align-items: center; gap: .75rem;
    padding-top: .85rem; margin-top: .85rem;
    border-top: 1px solid rgba(0,0,0,.06);
  }
  .brand-logo-pill {
    height: 22px; border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
  }
  .bl-mpesa { background: #00a859; color: #fff; font-family: 'Arial Black',Arial; font-weight: 900; font-size: .65rem; letter-spacing: 1px; padding: 0 7px; }
  .bl-visa  { background: #1a1f71; color: #fff; font-weight: 900; font-size: .75rem; font-style: italic; padding: 0 7px; }
  .bl-mc    { width: 34px; position: relative; }
  .bl-mc-l, .bl-mc-r { position: absolute; width: 16px; height: 16px; border-radius: 50%; top: 50%; transform: translateY(-50%); }
  .bl-mc-l { background: #eb001b; left: 1px; }
  .bl-mc-r { background: #f79e1b; right: 1px; opacity: .9; }
   /* ═══════════════════════════════════════
     CONTACT PAGE — Islamic Relief Kenya
  ═══════════════════════════════════════ */

  /* ── PAGE HEADER (compact strip) ── */
  .page-header {
    background: #07111f;
    border-bottom: 1px solid rgba(7,120,212,.2);
    padding: 1.4rem 0;
    position: relative;
  }
  .page-header::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(180deg, #0778d4, #c8960c);
  }
  .page-breadcrumb {
    display: flex; align-items: center; gap: .45rem;
    font-size: .74rem; font-weight: 600;
    color: rgba(255,255,255,.38);
    text-transform: uppercase; letter-spacing: .08em;
    margin-bottom: .6rem;
  }
  .page-breadcrumb a { color: rgba(255,255,255,.45); text-decoration: none; transition: color .18s; }
  .page-breadcrumb a:hover { color: #fff; }
  .page-breadcrumb .sep { font-size: .55rem; color: #c8960c; }
  .page-header-content {
    display: flex; align-items: center;
    justify-content: space-between; flex-wrap: wrap; gap: .75rem;
  }
  .page-header-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700; font-size: clamp(1.4rem, 2.8vw, 1.85rem);
    color: #fff; line-height: 1.1; margin: 0 0 .2rem;
  }
  .page-header-sub { font-size: .82rem; color: rgba(255,255,255,.46); margin: 0; }

  /* ── MAIN ── */
  .contact-section { background: #f2f7fc; padding: 3.5rem 0 5rem; }

  /* ── INFO SIDE ── */
  .contact-info-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700; font-size: 1.65rem;
    color: #0a0f1a; margin-bottom: .4rem;
  }
  .contact-info-title span {
    background: linear-gradient(90deg, #0778d4, #c8960c);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  }
  .contact-intro {
    font-size: .9rem; color: #5a6a80; line-height: 1.75;
    margin-bottom: 2rem;
  }

  .contact-item {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1.4rem 1.4rem;
    background: #fff; border-radius: 16px;
    border: 1px solid rgba(7,120,212,.09);
    transition: all .25s ease;
  }
  .contact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(7,120,212,.11);
    border-color: rgba(7,120,212,.2);
  }
  .contact-icon {
    width: 46px; height: 46px; border-radius: 12px;
    background: #deeefb; color: #0778d4;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
    transition: all .25s ease;
  }
  .contact-item:hover .contact-icon {
    background: #0778d4; color: #fff;
    transform: scale(1.08);
  }
  .contact-item-title {
    font-weight: 700; font-size: .9rem;
    color: #0a0f1a; margin-bottom: .2rem;
  }
  .contact-item-text {
    font-size: .84rem; color: #5a6a80;
    line-height: 1.65; margin: 0;
  }
  .contact-item-text a {
    color: #0778d4; text-decoration: none;
    transition: color .18s;
  }
  .contact-item-text a:hover { color: #0562ae; }

  /* Hours badge */
  .hours-badge {
    display: inline-flex; align-items: center; gap: .4rem;
    background: rgba(13,158,117,.1);
    border: 1px solid rgba(13,158,117,.25);
    color: #0d9e75;
    font-size: .72rem; font-weight: 700;
    padding: .28rem .75rem; border-radius: 999px;
    margin-top: .4rem;
  }
  .hours-badge i { font-size: .7rem; }

  /* Social links */
  .contact-socials {
    display: flex; gap: .5rem; margin-top: 1.5rem;
  }
  .social-link {
    width: 40px; height: 40px; border-radius: 10px;
    background: #fff; border: 1px solid rgba(7,120,212,.12);
    display: flex; align-items: center; justify-content: center;
    color: #5a6a80; font-size: 1rem; text-decoration: none;
    transition: all .22s ease;
  }
  .social-link:hover {
    background: #0778d4; border-color: #0778d4; color: #fff;
    transform: translateY(-2px);
  }
/* ═══════════════════════════════════════
     IMPACT PAGE — Islamic Relief Kenya
  ═══════════════════════════════════════ */

  /* ── PAGE HEADER (compact strip) ── */
  .page-header {
    background: #07111f;
    border-bottom: 1px solid rgba(7,120,212,.2);
    padding: 1.4rem 0;
    position: relative;
  }
  .page-header::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(180deg, #0778d4, #c8960c);
  }
  .page-breadcrumb {
    display: flex; align-items: center; gap: .45rem;
    font-size: .74rem; font-weight: 600;
    color: rgba(255,255,255,.38);
    text-transform: uppercase; letter-spacing: .08em;
    margin-bottom: .6rem;
  }
  .page-breadcrumb a { color: rgba(255,255,255,.45); text-decoration: none; transition: color .18s; }
  .page-breadcrumb a:hover { color: #fff; }
  .page-breadcrumb .sep { font-size: .55rem; color: #c8960c; }
  .page-header-content {
    display: flex; align-items: center;
    justify-content: space-between; flex-wrap: wrap; gap: .75rem;
  }
  .page-header-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700; font-size: clamp(1.4rem, 2.8vw, 1.85rem);
    color: #fff; line-height: 1.1; margin: 0 0 .2rem;
  }
  .page-header-sub { font-size: .82rem; color: rgba(255,255,255,.46); margin: 0; }
  .live-badge {
    display: inline-flex; align-items: center; gap: .45rem;
    background: rgba(13,158,117,.15);
    border: 1px solid rgba(13,158,117,.3);
    color: #4fd1a0;
    font-size: .74rem; font-weight: 700;
    padding: .35rem .9rem; border-radius: 999px;
    white-space: nowrap;
  }
  .live-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #0d9e75;
    animation: pulse-green 2s ease-in-out infinite;
  }
  @keyframes pulse-green {
    0%,100% { box-shadow: 0 0 0 2px rgba(13,158,117,.25); }
    50%      { box-shadow: 0 0 0 5px rgba(13,158,117,.07); }
  }

  /* ── MAIN ── */
  .impact-section { background: #f2f7fc; padding: 3.5rem 0 5rem; }

  /* ── IMPACT CARDS ── */
  .impact-card {
    background: #fff; border-radius: 20px;
    border: 1px solid rgba(7,120,212,.08);
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(7,120,212,.05);
    height: 100%;
    display: flex; flex-direction: column;
    transition: all .28s ease;
  }
  .impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(7,120,212,.12);
    border-color: rgba(7,120,212,.18);
  }

  /* Top bar accent on hover */
  .impact-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(90deg, #0778d4, #c8960c);
    transform: scaleX(0); transform-origin: left;
    transition: transform .32s ease;
  }
  .impact-card { position: relative; overflow: hidden; }
  .impact-card:hover::before { transform: scaleX(1); }

  /* Avatar */
  .impact-avatar {
    width: 46px; height: 46px; border-radius: 50%;
    background: linear-gradient(135deg, #0562ae, #0778d4);
    color: #fff; font-weight: 700; font-size: .95rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; letter-spacing: -.5px;
  }
  .impact-avatar i { font-size: 1.1rem; }

  .impact-donor-name {
    font-weight: 700; font-size: .9rem; color: #0a0f1a; line-height: 1.3;
  }
  .impact-time {
    font-size: .74rem; color: #5a6a80; margin-top: 1px;
    display: flex; align-items: center; gap: .3rem;
  }
  .impact-time i { color: rgba(7,120,212,.4); font-size: .68rem; }
  .impact-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 700;
    color: #0d9e75; line-height: 1; white-space: nowrap;
  }

  /* Cause tags */
  .impact-causes { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .85rem; }
  .cause-tag {
    display: inline-flex; align-items: center; gap: .35rem;
    background: #deeefb; color: #0562ae;
    font-size: .74rem; font-weight: 700;
    padding: .28rem .7rem; border-radius: 999px;
    border: 1px solid rgba(7,120,212,.15);
  }
  .cause-tag i { color: #c8960c; font-size: .65rem; }

  /* Message */
  .impact-message {
    background: #f8fbff; border-radius: 10px;
    border: 1px solid rgba(7,120,212,.1);
    padding: .7rem .9rem; margin-top: auto; margin-top: 1rem;
    display: flex; align-items: flex-start; gap: .5rem;
  }
  .impact-message i { color: rgba(7,120,212,.35); font-size: .9rem; flex-shrink: 0; margin-top: 1px; }
  .impact-message span { font-size: .8rem; color: #5a6a80; font-style: italic; line-height: 1.55; }

  /* ── EMPTY STATE ── */
  .empty-impact {
    background: #fff; border-radius: 24px;
    border: 1px solid rgba(7,120,212,.09);
    padding: 5rem 2rem; text-align: center;
    max-width: 480px; margin: 0 auto;
  }
  .empty-impact-icon {
    width: 80px; height: 80px; border-radius: 50%;
    background: #deeefb; color: #0778d4;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; margin: 0 auto 1.25rem;
  }
  .empty-impact h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700; font-size: 1.6rem;
    color: #0a0f1a; margin-bottom: .5rem;
  }
  .empty-impact p { font-size: .9rem; color: #5a6a80; line-height: 1.7; }

  /* ── CTA BUTTON ── */
  .btn-donate {
    background: linear-gradient(135deg, #0562ae 0%, #0778d4 100%);
    color: #fff !important; border: none; border-radius: 12px;
    font-weight: 700; font-size: .95rem;
    padding: .85rem 2.2rem;
    display: inline-flex; align-items: center; gap: .55rem;
    text-decoration: none; transition: all .24s ease;
    box-shadow: 0 6px 24px rgba(7,120,212,.28);
  }
  .btn-donate i { color: #ffd580; }
  .btn-donate:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(7,120,212,.38);
    color: #fff !important;
  }
  /* ═══════════════════════════════════════════
     LANDING PAGE — Islamic Relief Kenya
  ═══════════════════════════════════════════ */

  /* ── HERO ── */
  .hero-section {
    background: #07111f;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
  .hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(7,120,212,.12) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
  }
  .hero-geo-bar {
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(180deg, var(--irk-blue) 0%, var(--irk-gold) 100%);
    z-index: 3;
  }
  .hero-glow {
    position: absolute;
    top: -10%; right: -8%;
    width: 55%; height: 120%;
    background: radial-gradient(ellipse at 70% 50%, rgba(7,120,212,.2) 0%, transparent 68%);
    pointer-events: none;
    z-index: 1;
  }
  .hero-section .container-xl { position: relative; z-index: 2; }
  .hero-text-col { position: relative; z-index: 3; }

  /* Text side */
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(7,120,212,.15);
    border: 1px solid rgba(7,120,212,.3);
    color: #82c8f4;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .38rem 1rem;
    border-radius: 999px;
    margin-bottom: 1.6rem;
  }
  .hero-eyebrow i { color: var(--irk-gold); }

  .hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    color: #fff;
    line-height: 1.08;
    margin-bottom: 1.6rem;
  }
  .hero-headline em { font-style: normal; color: var(--irk-gold); }
  .hero-headline .underline-accent {
    position: relative;
    display: inline-block;
    color: #fff;
  }
  .hero-headline .underline-accent::after {
    content: '';
    position: absolute;
    left: 0; bottom: 2px;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--irk-blue), var(--irk-gold));
    border-radius: 2px;
  }
  .hero-body {
    font-size: 1.05rem;
    color: rgba(255,255,255,.62);
    line-height: 1.8;
    max-width: 460px;
    margin-bottom: 2.4rem;
  }
  .hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }

  .btn-hero-primary {
    background: var(--irk-blue);
    color: #fff !important;
    border: none; border-radius: 10px;
    font-weight: 700; font-size: .95rem;
    padding: .88rem 2.1rem;
    display: inline-flex; align-items: center; gap: .6rem;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(7,120,212,.42);
    transition: all .24s ease;
    position: relative; overflow: hidden;
  }
  .btn-hero-primary::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--irk-blue-dark), var(--irk-blue-deeper));
    opacity: 0; transition: opacity .24s;
  }
  .btn-hero-primary:hover::before { opacity: 1; }
  .btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(7,120,212,.5); }
  .btn-hero-primary i, .btn-hero-primary span { position: relative; z-index: 1; }
  .btn-hero-primary i { color: #ffd580; }

  .btn-hero-ghost {
    background: transparent;
    color: rgba(255,255,255,.75) !important;
    border: 1.5px solid rgba(255,255,255,.22); border-radius: 10px;
    font-weight: 600; font-size: .95rem;
    padding: .88rem 2.1rem;
    display: inline-flex; align-items: center; gap: .6rem;
    text-decoration: none; transition: all .24s ease;
  }
  .btn-hero-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.4); color: #fff !important; }

  .hero-trust {
    display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem;
    margin-top: 2.8rem;
  }
  .trust-badge {
    display: flex; align-items: center; gap: .45rem;
    font-size: .78rem; font-weight: 600;
    color: rgba(255,255,255,.45); letter-spacing: .03em;
  }
  .trust-badge i { color: var(--irk-gold); font-size: .9rem; }
  .trust-sep { width: 1px; height: 16px; background: rgba(255,255,255,.12); }

  /* Image side — full height absolute panel on the right */
  .hero-image-col { position: static; }

  /* Absolutely fill the entire right half of the hero */
  .hero-image-wrap {
    position: absolute;
    top: 0; right: 0;
    width: 55%;
    height: 100%;
    z-index: 1;
  }

  .hero-image-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .hero-image-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }
  /* Left fade — strong dissolve into hero dark bg */
  .hero-image-inner::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(
      to right,
      #07111f 0%,
      rgba(7,17,31,.85) 12%,
      rgba(7,17,31,.45) 32%,
      rgba(7,17,31,.1) 55%,
      transparent 72%
    );
    z-index: 2; pointer-events: none;
  }
  /* Bottom fade — blend into wave */
  .hero-image-inner::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 35%;
    background: linear-gradient(to top, #07111f 0%, transparent 100%);
    z-index: 2; pointer-events: none;
  }
  /* Floating tag */
  .hero-img-tag {
    position: absolute; bottom: 60px; right: 40px; z-index: 10;
    background: rgba(7,17,31,.85);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px; padding: .85rem 1.25rem;
    display: flex; align-items: center; gap: .85rem;
  }
  .hero-tag-icon {
    width: 42px; height: 42px; border-radius: 10px;
    background: var(--irk-blue);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .hero-tag-icon i { color: #fff; font-size: 1rem; }
  .hero-tag-t1 { font-size: .88rem; font-weight: 700; color: #fff; line-height: 1.2; }
  .hero-tag-t2 { font-size: .72rem; color: rgba(255,255,255,.5); margin-top: 2px; }

  @media (max-width: 991px) {
    .hero-image-wrap { display: none; }
  }

  .hero-wave { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; z-index: 3; }
  .hero-wave svg { display: block; }

  /* ══════ STATS ══════ */
  .stats-section {
    background: #f2f7fc;
    padding: 6rem 0;
    position: relative; overflow: hidden;
  }
  .stats-section::after {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(7,120,212,.06) 0%, transparent 70%);
    pointer-events: none;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3.5rem;
  }
  .stat-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(7,120,212,.09);
    padding: 2.4rem 1.75rem 2rem;
    text-align: center;
    position: relative; overflow: hidden;
    transition: all .3s ease;
    cursor: default;
  }
  .stat-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(90deg, var(--irk-blue) 0%, var(--irk-gold) 100%);
    transform: scaleX(0); transform-origin: left;
    transition: transform .38s ease;
  }
  .stat-card:hover { transform: translateY(-7px); box-shadow: 0 24px 64px rgba(5,98,174,.14); border-color: rgba(7,120,212,.18); }
  .stat-card:hover::before { transform: scaleX(1); }
  .stat-card-bg {
    position: absolute; bottom: -18px; right: -4px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 6.5rem; font-weight: 700;
    color: rgba(7,120,212,.04); line-height: 1;
    pointer-events: none; transition: color .3s;
    white-space: nowrap;
  }
  .stat-card:hover .stat-card-bg { color: rgba(7,120,212,.08); }
  .stat-icon-wrap {
    width: 62px; height: 62px; border-radius: 18px;
    background: var(--irk-blue-light);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.3rem;
    font-size: 1.55rem; color: var(--irk-blue);
    transition: all .3s ease;
  }
  .stat-card:hover .stat-icon-wrap {
    background: var(--irk-blue); color: #fff;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(7,120,212,.3);
  }
  .stat-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem; font-weight: 700;
    color: #03407a; line-height: 1;
    margin-bottom: .35rem; letter-spacing: -.02em;
  }
  .stat-value span { color: var(--irk-gold); }
  .stat-label { font-size: .78rem; font-weight: 700; color: var(--irk-text-muted); letter-spacing: .06em; text-transform: uppercase; }
  .stat-sub { font-size: .74rem; color: rgba(7,120,212,.55); margin-top: .4rem; font-weight: 500; }

  /* ══════ SECTION SHARED ══════ */
  .section-badge {
    display: inline-block;
    background: var(--irk-blue-light); color: var(--irk-blue-dark);
    font-size: .72rem; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    padding: .38rem 1.1rem; border-radius: 999px; margin-bottom: 1rem;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700; font-size: clamp(1.9rem, 3.8vw, 2.8rem);
    color: var(--irk-black); line-height: 1.15; margin-bottom: .75rem;
  }
  .text-gradient {
    background: linear-gradient(90deg, var(--irk-blue) 0%, var(--irk-gold) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  }
  .section-subtitle { color: var(--irk-text-muted); font-size: 1rem; max-width: 520px; margin: 0 auto; line-height: 1.7; }

  /* ══════ CATEGORIES ══════ */
  .categories-section { background: #fff; padding: 6rem 0; }
  .category-card {
    background: #fff; border-radius: 20px;
    border: 1px solid rgba(0,0,0,.07);
    overflow: hidden; transition: all .3s ease;
    height: 100%; display: flex; flex-direction: column;
  }
  .category-card:hover { transform: translateY(-7px); box-shadow: 0 24px 64px rgba(5,98,174,.14); border-color: rgba(7,120,212,.22); }
  .category-card-header {
    background: linear-gradient(135deg, var(--cat-color, var(--irk-blue)) 0%, color-mix(in srgb, var(--cat-color, var(--irk-blue)) 65%, #000) 100%);
    padding: 1.85rem;
    display: flex; align-items: flex-start; justify-content: space-between;
    min-height: 110px;
  }
  .category-icon-wrap {
    width: 58px; height: 58px; border-radius: 15px;
    background: rgba(255,255,255,.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.65rem; color: #fff;
  }
  .category-progress-pill {
    background: rgba(255,255,255,.2); color: #fff;
    font-size: .7rem; font-weight: 700;
    padding: .3rem .75rem; border-radius: 999px;
    border: 1px solid rgba(255,255,255,.28);
  }
  .category-card-body { padding: 1.6rem; flex: 1; display: flex; flex-direction: column; }
  .category-name { font-weight: 700; font-size: 1.05rem; color: var(--irk-black); margin-bottom: .5rem; }
  .category-desc { font-size: .875rem; line-height: 1.65; color: var(--irk-text-muted); flex: 1; margin-bottom: 1rem; }
  .progress-sm { height: 5px; border-radius: 3px; background: #eef2f7; margin-bottom: 1rem; }
  .progress-sm .progress-bar { border-radius: 3px; }
  .btn-donate {
    background: var(--irk-blue); color: #fff !important;
    border: none; border-radius: 8px;
    font-weight: 700; font-size: .84rem; padding: .55rem 1.1rem;
    transition: all .22s ease; cursor: pointer;
  }
  .btn-donate:hover { background: var(--irk-blue-dark); transform: translateY(-1px); }

  /* ══════ HOW IT WORKS ══════ */
  .how-section {
    background: #07111f; padding: 7rem 0;
    position: relative; overflow: hidden;
  }
  .how-section::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(7,120,212,.09) 1px, transparent 1px);
    background-size: 28px 28px; pointer-events: none;
  }
  .how-section .section-badge { background: rgba(7,120,212,.2); color: #82c8f4; }
  .how-section .section-title { color: #fff; }
  .how-section .section-subtitle { color: rgba(255,255,255,.48); }
  .how-section .container-xl { position: relative; z-index: 1; }

  .how-steps-row { position: relative; margin-top: 3rem; }
  /* Dashed connecting line */
  .how-steps-row::before {
    content: ''; position: absolute;
    top: 40px; left: 16%; right: 16%; height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(7,120,212,.35) 15%, rgba(200,150,12,.4) 50%, rgba(7,120,212,.35) 85%, transparent 100%);
    z-index: 0;
  }
  @media (max-width: 767px) { .how-steps-row::before { display: none; } }

  .how-step { position: relative; z-index: 1; padding: 0 .75rem; text-align: center; }
  .step-circle {
    width: 80px; height: 80px; border-radius: 50%;
    margin: 0 auto 1.75rem;
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  .step-circle-inner {
    width: 100%; height: 100%; border-radius: 50%;
    background: rgba(7,120,212,.12);
    border: 1.5px solid rgba(7,120,212,.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--irk-blue); font-size: 1.55rem;
    transition: all .32s ease;
  }
  .how-step:hover .step-circle-inner {
    background: var(--irk-blue); border-color: var(--irk-blue); color: #fff;
    box-shadow: 0 0 0 10px rgba(7,120,212,.14);
  }
  .step-num {
    position: absolute; top: -4px; right: -4px;
    width: 26px; height: 26px; border-radius: 50%;
    background: var(--irk-gold); color: #07111f;
    font-size: .68rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    border: 2.5px solid #07111f;
  }
  /* 2nd step gold variant */
  .how-step:nth-child(2) .step-circle-inner { border-color: rgba(200,150,12,.35); color: var(--irk-gold); background: rgba(200,150,12,.1); }
  .how-step:nth-child(2):hover .step-circle-inner { background: var(--irk-gold); border-color: var(--irk-gold); color: #07111f; box-shadow: 0 0 0 10px rgba(200,150,12,.12); }

  .step-title { font-weight: 700; font-size: .98rem; color: #fff; margin-bottom: .5rem; }
  .step-desc { font-size: .83rem; color: rgba(255,255,255,.46); line-height: 1.75; max-width: 190px; margin: 0 auto; }

  /* ══════ CTA BAND ══════ */
  .cta-band {
    background: linear-gradient(135deg, var(--irk-blue-deeper) 0%, var(--irk-blue) 55%, #0a8ee0 100%);
    padding: 7rem 0; position: relative; overflow: hidden;
  }
  .cta-band::before {
    content: ''; position: absolute; right: -80px; top: -80px;
    width: 420px; height: 420px; border-radius: 50%;
    border: 70px solid rgba(255,255,255,.06);
  }
  .cta-band::after {
    content: ''; position: absolute; left: -50px; bottom: -50px;
    width: 280px; height: 280px; border-radius: 50%;
    border: 50px solid rgba(200,150,12,.1);
  }
  .cta-band .container-xl { position: relative; z-index: 2; }
  .cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700; font-size: clamp(2rem, 4.5vw, 3.2rem);
    color: #fff; line-height: 1.15;
  }
  .cta-subtitle { color: rgba(255,255,255,.65); font-size: 1.05rem; line-height: 1.7; }
  .btn-cta-white {
    background: #fff; color: var(--irk-blue-dark) !important;
    border: none; border-radius: 12px;
    font-weight: 800; font-size: 1rem;
    padding: 1rem 2.6rem;
    display: inline-flex; align-items: center; gap: .65rem;
    text-decoration: none;
    box-shadow: 0 10px 36px rgba(0,0,0,.22);
    transition: all .24s ease;
  }
  .btn-cta-white i { color: var(--irk-gold); }
  .btn-cta-white:hover { transform: translateY(-3px); box-shadow: 0 18px 48px rgba(0,0,0,.3); color: var(--irk-blue-deeper) !important; }

  /* ── MODAL ── */
  .modal-content { border-radius: 20px !important; overflow: hidden; }
  .modal-header { border-bottom: none !important; padding: 1.6rem 1.6rem .5rem !important; }
  .modal-title { font-weight: 700; color: var(--irk-black); font-size: 1.15rem; }
  .amount-pill {
    padding: .42rem 1.1rem; border: 1.5px solid rgba(7,120,212,.25);
    border-radius: 8px; color: var(--irk-blue-dark);
    font-weight: 600; font-size: .84rem; cursor: pointer;
    background: var(--irk-blue-pale); transition: all .18s ease;
  }
  .amount-pill:hover, .amount-pill.active { background: var(--irk-blue); border-color: var(--irk-blue); color: #fff; }
  .input-group-text { background: var(--irk-blue-pale); border-color: rgba(7,120,212,.25); color: var(--irk-blue-dark); font-weight: 700; }
   /* ═══════════════════════════════════════
     THANK YOU PAGE — Islamic Relief Kenya
  ═══════════════════════════════════════ */

  .thankyou-section {
    background: #f2f7fc;
    padding: 4rem 0 6rem;
  }

  /* ── CARD ── */
  .thankyou-card {
    background: #fff;
    border-radius: 24px !important;
    border: 1px solid rgba(7,120,212,.1);
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(7,120,212,.13) !important;
  }

  /* ── HEADER BAND ── */
  .thankyou-header {
    background: linear-gradient(135deg, #03407a 0%, #0562ae 45%, #0778d4 100%);
    padding: 3rem 2.5rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .thankyou-header::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
  }
  .thankyou-header::after {
    content: '';
    position: absolute; right: -60px; top: -60px;
    width: 220px; height: 220px; border-radius: 50%;
    border: 40px solid rgba(255,255,255,.06);
  }
  .thankyou-header > * { position: relative; z-index: 1; }

  /* Checkmark circle */
  .checkmark-circle {
    width: 82px; height: 82px; border-radius: 50%;
    background: rgba(255,255,255,.18);
    border: 2px solid rgba(255,255,255,.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 2.4rem; color: #fff;
    margin: 0 auto 1.5rem;
    animation: popIn .55s cubic-bezier(.175,.885,.32,1.275) both;
  }
  @keyframes popIn {
    0%   { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
  }
  .thankyou-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.4rem);
    color: #fff; line-height: 1.15; margin-bottom: .6rem;
  }
  .thankyou-title em { font-style: normal; color: #ffd580; }
  .thankyou-subtitle {
    font-size: .96rem; color: rgba(255,255,255,.72);
    line-height: 1.65; max-width: 420px; margin: 0 auto;
  }

  /* ── CARD BODY ── */
  .thankyou-body { padding: 2.5rem; }

  /* Reference badge */
  .ref-badge {
    background: #f2f7fc;
    border: 1px solid rgba(7,120,212,.12);
    border-radius: 14px; padding: 1.1rem 1.5rem;
    text-align: center; margin-bottom: 2rem;
  }
  .ref-label {
    font-size: .72rem; font-weight: 700;
    color: #5a6a80; letter-spacing: .1em;
    text-transform: uppercase; margin-bottom: .3rem;
  }
  .ref-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.65rem; font-weight: 700;
    color: #0778d4; letter-spacing: .05em; line-height: 1;
  }

  /* Donation receipt */
  .receipt-title {
    font-weight: 700; font-size: .88rem; color: #0a0f1a;
    margin-bottom: .85rem;
    display: flex; align-items: center; gap: .5rem;
  }
  .receipt-title i { color: #0778d4; }
  .receipt-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: .7rem 0; border-bottom: 1px solid rgba(0,0,0,.06);
  }
  .receipt-row:last-of-type { border-bottom: none; }
  .receipt-item-name { font-weight: 700; font-size: .88rem; color: #0a0f1a; }
  .receipt-item-msg { font-size: .74rem; color: #5a6a80; font-style: italic; margin-top: 1px; }
  .receipt-item-amt { font-weight: 700; font-size: .9rem; color: #0d9e75; white-space: nowrap; }
  .receipt-total-row {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: .85rem;
  }
  .receipt-total-label { font-weight: 700; font-size: .95rem; color: #0a0f1a; }
  .receipt-total-amt {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem; font-weight: 700; color: #0d9e75; line-height: 1;
  }

  .receipt-block {
    background: #f8fbff;
    border: 1px solid rgba(7,120,212,.09);
    border-radius: 16px; padding: 1.25rem; margin-bottom: 1.5rem;
  }

  /* Notification cards */
  .notif-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: 1.5rem; }
  .notif-card {
    border-radius: 14px; padding: 1.1rem;
    text-align: center; border: 1px solid rgba(0,0,0,.07);
    transition: transform .2s ease;
  }
  .notif-card:hover { transform: translateY(-2px); }
  .notif-card.sent { background: #f0fdf6; border-color: rgba(13,158,117,.2); }
  .notif-card.unsent { background: #f5f8fc; border-color: rgba(0,0,0,.07); }
  .notif-icon { font-size: 1.6rem; margin-bottom: .4rem; }
  .notif-card.sent .notif-icon { color: #0d9e75; }
  .notif-card.unsent .notif-icon { color: #b0bec5; }
  .notif-label { font-weight: 700; font-size: .84rem; color: #0a0f1a; margin-bottom: .2rem; }
  .notif-detail { font-size: .74rem; color: #5a6a80; line-height: 1.45; }
  .notif-card.sent .notif-detail { color: #0d9e75; }

  /* Divider */
  .section-divider { border: none; border-top: 1px solid rgba(0,0,0,.07); margin: 1.5rem 0; }

  /* Share section */
  .share-label {
    font-size: .8rem; font-weight: 700; color: #5a6a80;
    text-align: center; margin-bottom: .85rem;
    text-transform: uppercase; letter-spacing: .08em;
  }
  .share-btns { display: flex; justify-content: center; gap: .6rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
  .btn-share {
    display: inline-flex; align-items: center; gap: .4rem;
    font-size: .82rem; font-weight: 700;
    padding: .5rem 1.2rem; border-radius: 999px;
    text-decoration: none; transition: all .2s ease;
    border: 1.5px solid;
  }
  .btn-share-wa  { color: #25d366; border-color: rgba(37,211,102,.3); background: rgba(37,211,102,.06); }
  .btn-share-wa:hover  { background: #25d366; color: #fff; border-color: #25d366; }
  .btn-share-tw  { color: #0a0f1a; border-color: rgba(0,0,0,.15); background: rgba(0,0,0,.04); }
  .btn-share-tw:hover  { background: #0a0f1a; color: #fff; border-color: #0a0f1a; }
  .btn-share-fb  { color: #1877f2; border-color: rgba(24,119,242,.25); background: rgba(24,119,242,.05); }
  .btn-share-fb:hover  { background: #1877f2; color: #fff; border-color: #1877f2; }

  /* Action buttons */
  .btn-donate-again {
    background: linear-gradient(135deg, #0562ae, #0778d4);
    color: #fff !important; border: none; border-radius: 10px;
    font-weight: 700; font-size: .9rem; padding: .75rem 1.75rem;
    display: inline-flex; align-items: center; gap: .5rem;
    text-decoration: none; transition: all .22s ease;
    box-shadow: 0 6px 20px rgba(7,120,212,.28);
  }
  .btn-donate-again i { color: #ffd580; }
  .btn-donate-again:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(7,120,212,.38); color: #fff !important; }

  .btn-home {
    background: transparent; color: #5a6a80 !important;
    border: 1.5px solid rgba(0,0,0,.14); border-radius: 10px;
    font-weight: 600; font-size: .9rem; padding: .75rem 1.75rem;
    display: inline-flex; align-items: center; gap: .5rem;
    text-decoration: none; transition: all .22s ease;
  }
  .btn-home:hover { border-color: #0778d4; color: #0778d4 !important; background: #eef6fd; }
  /* ═══════════════════════════════════════
     FAQ PAGE — Islamic Relief Kenya
  ═══════════════════════════════════════ */

  /* ── PAGE HEADER (compact strip) ── */
  .page-header {
    background: #07111f;
    border-bottom: 1px solid rgba(7,120,212,.2);
    padding: 1.4rem 0; position: relative;
  }
  .page-header::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(180deg, #0778d4, #c8960c);
  }
  .page-breadcrumb {
    display: flex; align-items: center; gap: .45rem;
    font-size: .74rem; font-weight: 600;
    color: rgba(255,255,255,.38);
    text-transform: uppercase; letter-spacing: .08em; margin-bottom: .6rem;
  }
  .page-breadcrumb a { color: rgba(255,255,255,.45); text-decoration: none; transition: color .18s; }
  .page-breadcrumb a:hover { color: #fff; }
  .page-breadcrumb .sep { font-size: .55rem; color: #c8960c; }
  .page-header-content {
    display: flex; align-items: center;
    justify-content: space-between; flex-wrap: wrap; gap: .75rem;
  }
  .page-header-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700; font-size: clamp(1.4rem, 2.8vw, 1.85rem);
    color: #fff; line-height: 1.1; margin: 0 0 .2rem;
  }
  .page-header-sub { font-size: .82rem; color: rgba(255,255,255,.46); margin: 0; }

  /* ── MAIN ── */
  .faq-section { background: #f2f7fc; padding: 3.5rem 0 5rem; }

  /* ── SEARCH BAR ── */
  .faq-search-wrap {
    max-width: 560px; margin: 0 auto 3rem;
  }
  .faq-search {
    display: flex; align-items: center;
    background: #fff; border: 1.5px solid rgba(7,120,212,.2);
    border-radius: 14px; padding: .55rem .55rem .55rem 1.1rem;
    box-shadow: 0 4px 20px rgba(7,120,212,.08);
    transition: border-color .2s, box-shadow .2s;
  }
  .faq-search:focus-within {
    border-color: #0778d4;
    box-shadow: 0 4px 24px rgba(7,120,212,.16);
  }
  .faq-search i { color: #5a6a80; font-size: 1rem; flex-shrink: 0; margin-right: .6rem; }
  .faq-search input {
    border: none; outline: none; flex: 1;
    font-size: .9rem; color: #0a0f1a; background: transparent;
    font-family: 'Plus Jakarta Sans', sans-serif;
  }
  .faq-search input::placeholder { color: #5a6a80; }
  .faq-search-btn {
    background: #0778d4; color: #fff;
    border: none; border-radius: 10px;
    font-weight: 700; font-size: .82rem;
    padding: .55rem 1.1rem; cursor: pointer;
    transition: background .2s; white-space: nowrap;
  }
  .faq-search-btn:hover { background: #0562ae; }

  /* ── CATEGORY TABS ── */
  .faq-tabs {
    display: flex; flex-wrap: wrap; gap: .5rem;
    justify-content: center; margin-bottom: 2.5rem;
  }
  .faq-tab {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .42rem 1.1rem; border-radius: 999px;
    border: 1.5px solid rgba(7,120,212,.2);
    background: #fff; color: #5a6a80;
    font-size: .82rem; font-weight: 600;
    cursor: pointer; transition: all .2s ease;
  }
  .faq-tab i { font-size: .78rem; }
  .faq-tab:hover { border-color: #0778d4; color: #0778d4; background: #eef6fd; }
  .faq-tab.active {
    background: #0778d4; border-color: #0778d4; color: #fff;
    box-shadow: 0 4px 14px rgba(7,120,212,.28);
  }
  .faq-tab.active i { color: #ffd580; }

  /* ── FAQ GROUP ── */
  .faq-group { margin-bottom: 2.5rem; display: none; }
  .faq-group.visible { display: block; }

  .faq-group-title {
    display: flex; align-items: center; gap: .7rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700; font-size: 1.4rem;
    color: #0a0f1a; margin-bottom: 1rem;
  }
  .faq-group-icon {
    width: 38px; height: 38px; border-radius: 10px;
    background: #deeefb; color: #0778d4;
    display: flex; align-items: center; justify-content: center;
    font-size: .95rem; flex-shrink: 0;
  }

  /* ── ACCORDION ── */
  .faq-accordion { display: flex; flex-direction: column; gap: .6rem; }

  .faq-item {
    background: #fff; border-radius: 14px;
    border: 1px solid rgba(7,120,212,.09);
    overflow: hidden; transition: box-shadow .25s, border-color .25s;
  }
  .faq-item.open {
    box-shadow: 0 8px 32px rgba(7,120,212,.1);
    border-color: rgba(7,120,212,.22);
  }

  .faq-question {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.1rem 1.4rem; cursor: pointer;
    gap: 1rem; user-select: none;
  }
  .faq-question-text {
    font-weight: 700; font-size: .92rem; color: #0a0f1a;
    line-height: 1.4; flex: 1;
  }
  .faq-item.open .faq-question-text { color: #0778d4; }

  .faq-chevron {
    width: 28px; height: 28px; border-radius: 8px;
    background: #f2f7fc; color: #5a6a80;
    display: flex; align-items: center; justify-content: center;
    font-size: .8rem; flex-shrink: 0;
    transition: all .25s ease;
  }
  .faq-item.open .faq-chevron {
    background: #0778d4; color: #fff; transform: rotate(180deg);
  }

  .faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height .32s ease, padding .32s ease;
    padding: 0 1.4rem;
  }
  .faq-item.open .faq-answer {
    max-height: 600px;
    padding: 0 1.4rem 1.25rem;
  }
  .faq-answer-inner {
    font-size: .88rem; color: #5a6a80; line-height: 1.8;
    border-top: 1px solid rgba(7,120,212,.08);
    padding-top: .85rem;
  }
  .faq-answer-inner a { color: #0778d4; text-decoration: none; font-weight: 600; }
  .faq-answer-inner a:hover { text-decoration: underline; }
  .faq-answer-inner strong { color: #0a0f1a; }

  /* No results */
  .faq-no-results {
    text-align: center; padding: 3rem 1rem; display: none;
  }
  .faq-no-results i { font-size: 2.5rem; color: rgba(7,120,212,.2); margin-bottom: 1rem; display: block; }
  .faq-no-results p { color: #5a6a80; font-size: .92rem; }

  /* ── CTA BAND ── */
  .faq-cta {
    background: linear-gradient(135deg, #03407a 0%, #0778d4 55%, #0a8ee0 100%);
    border-radius: 20px; padding: 3rem 2rem; text-align: center;
    position: relative; overflow: hidden; margin-top: 3rem;
  }
  .faq-cta::before {
    content: ''; position: absolute; right: -60px; top: -60px;
    width: 240px; height: 240px; border-radius: 50%;
    border: 50px solid rgba(255,255,255,.07);
  }
  .faq-cta::after {
    content: ''; position: absolute; left: -40px; bottom: -40px;
    width: 180px; height: 180px; border-radius: 50%;
    border: 35px solid rgba(200,150,12,.1);
  }
  .faq-cta .container-xl { position: relative; z-index: 1; }
  .faq-cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700; font-size: clamp(1.5rem, 3vw, 2rem);
    color: #fff; margin-bottom: .5rem;
  }
  .faq-cta-sub { font-size: .9rem; color: rgba(255,255,255,.65); margin-bottom: 1.5rem; }
  .faq-cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; }
  .btn-cta-white {
    background: #fff; color: #0562ae !important;
    border: none; border-radius: 10px; font-weight: 700; font-size: .9rem;
    padding: .75rem 1.8rem; display: inline-flex; align-items: center; gap: .5rem;
    text-decoration: none; transition: all .22s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,.18);
  }
  .btn-cta-white i { color: #c8960c; }
  .btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,.24); }
  .btn-cta-ghost {
    background: transparent; color: rgba(255,255,255,.8) !important;
    border: 1.5px solid rgba(255,255,255,.28); border-radius: 10px;
    font-weight: 600; font-size: .9rem;
    padding: .75rem 1.8rem; display: inline-flex; align-items: center; gap: .5rem;
    text-decoration: none; transition: all .22s ease;
  }
  .btn-cta-ghost:hover { background: rgba(255,255,255,.1); color: #fff !important; }
  /* ═══════════════════════════════════════
     REFUND POLICY — Islamic Relief Kenya
  ═══════════════════════════════════════ */

  .page-header {
    background: #07111f;
    border-bottom: 1px solid rgba(7,120,212,.2);
    padding: 1.4rem 0; position: relative;
  }
  .page-header::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(180deg, #0778d4, #c8960c);
  }
  .page-breadcrumb {
    display: flex; align-items: center; gap: .45rem;
    font-size: .74rem; font-weight: 600;
    color: rgba(255,255,255,.38);
    text-transform: uppercase; letter-spacing: .08em; margin-bottom: .6rem;
  }
  .page-breadcrumb a { color: rgba(255,255,255,.45); text-decoration: none; transition: color .18s; }
  .page-breadcrumb a:hover { color: #fff; }
  .page-breadcrumb .sep { font-size: .55rem; color: #c8960c; }
  .page-header-content {
    display: flex; align-items: center;
    justify-content: space-between; flex-wrap: wrap; gap: .75rem;
  }
  .page-header-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700; font-size: clamp(1.4rem, 2.8vw, 1.85rem);
    color: #fff; line-height: 1.1; margin: 0 0 .2rem;
  }
  .page-header-sub { font-size: .82rem; color: rgba(255,255,255,.46); margin: 0; }
  .updated-badge {
    display: inline-flex; align-items: center; gap: .4rem;
    background: rgba(7,120,212,.18); border: 1px solid rgba(7,120,212,.3);
    color: #82c8f4; font-size: .74rem; font-weight: 700;
    padding: .35rem .9rem; border-radius: 999px; white-space: nowrap;
  }
  .updated-badge i { color: #c8960c; }

  /* ── MAIN ── */
  .policy-section { background: #f2f7fc; padding: 3.5rem 0 5rem; }

  /* ── SIDEBAR TOC ── */
  .policy-toc {
    position: sticky; top: 90px;
    background: #fff; border-radius: 16px;
    border: 1px solid rgba(7,120,212,.09);
    padding: 1.4rem; box-shadow: 0 4px 20px rgba(7,120,212,.06);
  }
  .policy-toc-title {
    font-weight: 700; font-size: .8rem; color: #0a0f1a;
    text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem;
    padding-bottom: .6rem; border-bottom: 1px solid rgba(0,0,0,.07);
    display: flex; align-items: center; gap: .45rem;
  }
  .policy-toc-title i { color: #0778d4; }
  .toc-list { list-style: none; padding: 0; margin: 0; }
  .toc-list li { margin-bottom: .2rem; }
  .toc-list a {
    display: flex; align-items: center; gap: .5rem;
    font-size: .8rem; font-weight: 600; color: #5a6a80;
    text-decoration: none; padding: .35rem .6rem;
    border-radius: 8px; transition: all .18s ease;
  }
  .toc-list a:hover { background: #eef6fd; color: #0778d4; }
  .toc-list a.active { background: #deeefb; color: #0562ae; }
  .toc-list a i { font-size: .65rem; color: #c8960c; flex-shrink: 0; }

  /* ── CONTENT ── */
  .policy-section-anchor { scroll-margin-top: 110px; }

  /* Intro card */
  .policy-intro-card {
    background: linear-gradient(135deg, #03407a 0%, #0562ae 50%, #0778d4 100%);
    border-radius: 20px; padding: 2rem 2.5rem;
    display: flex; align-items: flex-start; gap: 1.25rem;
    margin-bottom: 1.5rem; position: relative; overflow: hidden;
  }
  .policy-intro-card::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
    background-size: 22px 22px; pointer-events: none;
  }
  .policy-intro-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: #ffd580; flex-shrink: 0; position: relative; z-index: 1;
  }
  .policy-intro-text { position: relative; z-index: 1; }
  .policy-intro-text p { font-size: .9rem; color: rgba(255,255,255,.8); line-height: 1.75; margin: 0; }
  .policy-intro-text strong { color: #fff; }

  /* Section cards */
  .policy-card {
    background: #fff; border-radius: 20px;
    border: 1px solid rgba(7,120,212,.08);
    padding: 2rem 2.5rem; box-shadow: 0 4px 24px rgba(7,120,212,.06);
    margin-bottom: 1.25rem;
  }
  .policy-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700; font-size: 1.4rem; color: #0a0f1a;
    margin-bottom: 1rem; display: flex; align-items: center; gap: .75rem;
    padding-bottom: .75rem; border-bottom: 2px solid #deeefb;
  }
  .policy-section-icon {
    width: 36px; height: 36px; border-radius: 10px;
    background: #deeefb; color: #0778d4;
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem; flex-shrink: 0;
  }
  .policy-body {
    font-size: .9rem; color: #5a6a80; line-height: 1.85;
  }
  .policy-body p { margin-bottom: .9rem; }
  .policy-body p:last-child { margin-bottom: 0; }
  .policy-body strong { color: #0a0f1a; font-weight: 700; }
  .policy-body a { color: #0778d4; text-decoration: none; font-weight: 600; }
  .policy-body a:hover { text-decoration: underline; }

  /* Lists */
  .policy-list { list-style: none; padding: 0; margin: .75rem 0; }
  .policy-list li {
    display: flex; align-items: flex-start; gap: .65rem;
    font-size: .88rem; color: #5a6a80;
    padding: .45rem 0; border-bottom: 1px solid rgba(0,0,0,.05); line-height: 1.6;
  }
  .policy-list li:last-child { border-bottom: none; }
  .policy-list li i { color: #0778d4; font-size: .75rem; margin-top: 3px; flex-shrink: 0; }
  .policy-list li strong { color: #0a0f1a; }

  /* Callout boxes */
  .policy-info-box {
    background: #f0f8ff; border: 1px solid rgba(7,120,212,.18);
    border-radius: 12px; padding: 1rem 1.25rem;
    display: flex; gap: .75rem; align-items: flex-start; margin: 1rem 0;
  }
  .policy-info-box i { color: #0778d4; flex-shrink: 0; margin-top: 2px; }
  .policy-info-box p { font-size: .85rem; color: #0562ae; margin: 0; line-height: 1.65; }
  .policy-info-box strong { color: #03407a; }

  .policy-warn-box {
    background: #fffbeb; border: 1px solid rgba(200,150,12,.25);
    border-radius: 12px; padding: 1rem 1.25rem;
    display: flex; gap: .75rem; align-items: flex-start; margin: 1rem 0;
  }
  .policy-warn-box i { color: #c8960c; flex-shrink: 0; margin-top: 2px; }
  .policy-warn-box p { font-size: .85rem; color: #7a5c08; margin: 0; line-height: 1.65; }

  .policy-success-box {
    background: #f0fdf6; border: 1px solid rgba(13,158,117,.2);
    border-radius: 12px; padding: 1rem 1.25rem;
    display: flex; gap: .75rem; align-items: flex-start; margin: 1rem 0;
  }
  .policy-success-box i { color: #0d9e75; flex-shrink: 0; margin-top: 2px; }
  .policy-success-box p { font-size: .85rem; color: #0a6b4a; margin: 0; line-height: 1.65; }
  .policy-success-box strong { color: #064d35; }

  /* Process steps */
  .refund-steps { display: flex; flex-direction: column; gap: .75rem; margin: 1rem 0; }
  .refund-step {
    display: flex; align-items: flex-start; gap: 1rem;
    background: #f8fbff; border-radius: 14px;
    border: 1px solid rgba(7,120,212,.1); padding: 1rem 1.25rem;
    transition: all .22s ease;
  }
  .refund-step:hover { border-color: rgba(7,120,212,.22); box-shadow: 0 4px 16px rgba(7,120,212,.08); }
  .refund-step-num {
    width: 32px; height: 32px; border-radius: 50%;
    background: #0778d4; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: .8rem; flex-shrink: 0;
  }
  .refund-step-title { font-weight: 700; font-size: .88rem; color: #0a0f1a; margin-bottom: .2rem; }
  .refund-step-desc { font-size: .82rem; color: #5a6a80; line-height: 1.55; }

  /* Timeline for processing times */
  .timeline { display: flex; flex-direction: column; gap: 0; margin: 1rem 0; }
  .timeline-item {
    display: flex; align-items: flex-start; gap: 1rem; position: relative; padding-bottom: 1rem;
  }
  .timeline-item:last-child { padding-bottom: 0; }
  .timeline-item::before {
    content: ''; position: absolute;
    left: 15px; top: 32px; bottom: 0; width: 2px;
    background: rgba(7,120,212,.15);
  }
  .timeline-item:last-child::before { display: none; }
  .timeline-dot {
    width: 32px; height: 32px; border-radius: 50%;
    background: #deeefb; border: 2px solid #0778d4;
    display: flex; align-items: center; justify-content: center;
    color: #0778d4; font-size: .8rem; flex-shrink: 0; z-index: 1;
  }
  .timeline-content { padding-top: 4px; }
  .timeline-label { font-weight: 700; font-size: .88rem; color: #0a0f1a; }
  .timeline-desc { font-size: .82rem; color: #5a6a80; line-height: 1.55; margin-top: 1px; }

  /* Contact card */
  .policy-contact-card {
    background: #f2f7fc; border-radius: 14px;
    border: 1px solid rgba(7,120,212,.1); padding: 1.25rem 1.5rem; margin-top: 1rem;
  }
  .contact-row {
    display: flex; align-items: center; gap: .65rem;
    font-size: .86rem; color: #5a6a80; margin-bottom: .5rem;
  }
  .contact-row:last-child { margin-bottom: 0; }
  .contact-row i { color: #0778d4; font-size: .85rem; flex-shrink: 0; }
  .contact-row a { color: #0778d4; text-decoration: none; font-weight: 600; }
  .contact-row a:hover { text-decoration: underline; }

  /* Footer */
  .policy-footer {
    text-align: center; padding: 1.5rem;
    background: #fff; border-radius: 16px;
    border: 1px solid rgba(7,120,212,.08);
    font-size: .8rem; color: #5a6a80;
  }
  .policy-footer strong { color: #0a0f1a; }
  /* ═══════════════════════════════════════
     PRIVACY POLICY — Islamic Relief Kenya
  ═══════════════════════════════════════ */

  /* ── PAGE HEADER ── */
  .page-header {
    background: #07111f;
    border-bottom: 1px solid rgba(7,120,212,.2);
    padding: 1.4rem 0; position: relative;
  }
  .page-header::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(180deg, #0778d4, #c8960c);
  }
  .page-breadcrumb {
    display: flex; align-items: center; gap: .45rem;
    font-size: .74rem; font-weight: 600;
    color: rgba(255,255,255,.38);
    text-transform: uppercase; letter-spacing: .08em; margin-bottom: .6rem;
  }
  .page-breadcrumb a { color: rgba(255,255,255,.45); text-decoration: none; transition: color .18s; }
  .page-breadcrumb a:hover { color: #fff; }
  .page-breadcrumb .sep { font-size: .55rem; color: #c8960c; }
  .page-header-content {
    display: flex; align-items: center;
    justify-content: space-between; flex-wrap: wrap; gap: .75rem;
  }
  .page-header-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700; font-size: clamp(1.4rem, 2.8vw, 1.85rem);
    color: #fff; line-height: 1.1; margin: 0 0 .2rem;
  }
  .page-header-sub { font-size: .82rem; color: rgba(255,255,255,.46); margin: 0; }
  .updated-badge {
    display: inline-flex; align-items: center; gap: .4rem;
    background: rgba(7,120,212,.18); border: 1px solid rgba(7,120,212,.3);
    color: #82c8f4; font-size: .74rem; font-weight: 700;
    padding: .35rem .9rem; border-radius: 999px; white-space: nowrap;
  }
  .updated-badge i { color: #c8960c; }

  /* ── MAIN ── */
  .policy-section { background: #f2f7fc; padding: 3.5rem 0 5rem; }

  /* ── LAYOUT ── */
  /* Sticky sidebar TOC */
  .policy-toc {
    position: sticky; top: 90px;
    background: #fff; border-radius: 16px;
    border: 1px solid rgba(7,120,212,.09);
    padding: 1.4rem; box-shadow: 0 4px 20px rgba(7,120,212,.06);
  }
  .policy-toc-title {
    font-weight: 700; font-size: .8rem; color: #0a0f1a;
    text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem;
    padding-bottom: .6rem; border-bottom: 1px solid rgba(0,0,0,.07);
    display: flex; align-items: center; gap: .45rem;
  }
  .policy-toc-title i { color: #0778d4; }
  .toc-list { list-style: none; padding: 0; margin: 0; }
  .toc-list li { margin-bottom: .2rem; }
  .toc-list a {
    display: flex; align-items: center; gap: .5rem;
    font-size: .8rem; font-weight: 600; color: #5a6a80;
    text-decoration: none; padding: .35rem .6rem;
    border-radius: 8px; transition: all .18s ease;
  }
  .toc-list a:hover { background: #eef6fd; color: #0778d4; }
  .toc-list a.active { background: #deeefb; color: #0562ae; }
  .toc-list a i { font-size: .65rem; color: #c8960c; flex-shrink: 0; }

  /* ── POLICY CONTENT ── */
  .policy-card {
    background: #fff; border-radius: 20px;
    border: 1px solid rgba(7,120,212,.08);
    padding: 2.5rem; box-shadow: 0 4px 24px rgba(7,120,212,.06);
    margin-bottom: 1.25rem;
  }

  /* Intro card */
  .policy-intro-card {
    background: linear-gradient(135deg, #03407a 0%, #0562ae 50%, #0778d4 100%);
    border-radius: 20px; padding: 2rem 2.5rem;
    display: flex; align-items: flex-start; gap: 1.25rem;
    margin-bottom: 1.5rem; position: relative; overflow: hidden;
  }
  .policy-intro-card::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
    background-size: 22px 22px; pointer-events: none;
  }
  .policy-intro-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: #ffd580; flex-shrink: 0;
    position: relative; z-index: 1;
  }
  .policy-intro-text { position: relative; z-index: 1; }
  .policy-intro-text p {
    font-size: .9rem; color: rgba(255,255,255,.8);
    line-height: 1.75; margin: 0;
  }
  .policy-intro-text strong { color: #fff; }

  /* Section anchors */
  .policy-section-anchor { scroll-margin-top: 110px; }

  /* Section title */
  .policy-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700; font-size: 1.4rem;
    color: #0a0f1a; margin-bottom: 1rem;
    display: flex; align-items: center; gap: .75rem;
    padding-bottom: .75rem; border-bottom: 2px solid #deeefb;
  }
  .policy-section-icon {
    width: 36px; height: 36px; border-radius: 10px;
    background: #deeefb; color: #0778d4;
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem; flex-shrink: 0;
  }

  /* Body text */
  .policy-body {
    font-size: .9rem; color: #5a6a80; line-height: 1.85;
  }
  .policy-body p { margin-bottom: .9rem; }
  .policy-body p:last-child { margin-bottom: 0; }
  .policy-body strong { color: #0a0f1a; font-weight: 700; }
  .policy-body a { color: #0778d4; text-decoration: none; font-weight: 600; }
  .policy-body a:hover { text-decoration: underline; }

  /* Highlight list */
  .policy-list {
    list-style: none; padding: 0; margin: .75rem 0;
  }
  .policy-list li {
    display: flex; align-items: flex-start; gap: .65rem;
    font-size: .88rem; color: #5a6a80;
    padding: .45rem 0; border-bottom: 1px solid rgba(0,0,0,.05);
    line-height: 1.6;
  }
  .policy-list li:last-child { border-bottom: none; }
  .policy-list li i { color: #0778d4; font-size: .75rem; margin-top: 3px; flex-shrink: 0; }
  .policy-list li strong { color: #0a0f1a; }

  /* Info box */
  .policy-info-box {
    background: #f0f8ff; border: 1px solid rgba(7,120,212,.18);
    border-radius: 12px; padding: 1rem 1.25rem;
    display: flex; gap: .75rem; align-items: flex-start; margin: 1rem 0;
  }
  .policy-info-box i { color: #0778d4; flex-shrink: 0; margin-top: 2px; }
  .policy-info-box p { font-size: .85rem; color: #0562ae; margin: 0; line-height: 1.65; }
  .policy-info-box strong { color: #03407a; }

  /* Warning box */
  .policy-warn-box {
    background: #fffbeb; border: 1px solid rgba(200,150,12,.25);
    border-radius: 12px; padding: 1rem 1.25rem;
    display: flex; gap: .75rem; align-items: flex-start; margin: 1rem 0;
  }
  .policy-warn-box i { color: #c8960c; flex-shrink: 0; margin-top: 2px; }
  .policy-warn-box p { font-size: .85rem; color: #7a5c08; margin: 0; line-height: 1.65; }

  /* Contact card */
  .policy-contact-card {
    background: #f2f7fc; border-radius: 14px;
    border: 1px solid rgba(7,120,212,.1);
    padding: 1.25rem 1.5rem; margin-top: 1rem;
  }
  .policy-contact-card .contact-row {
    display: flex; align-items: center; gap: .65rem;
    font-size: .86rem; color: #5a6a80; margin-bottom: .5rem;
  }
  .policy-contact-card .contact-row:last-child { margin-bottom: 0; }
  .policy-contact-card .contact-row i { color: #0778d4; font-size: .85rem; flex-shrink: 0; }
  .policy-contact-card .contact-row a { color: #0778d4; text-decoration: none; font-weight: 600; }
  .policy-contact-card .contact-row a:hover { text-decoration: underline; }

  /* Last updated footer */
  .policy-footer {
    text-align: center; padding: 1.5rem;
    background: #fff; border-radius: 16px;
    border: 1px solid rgba(7,120,212,.08);
    font-size: .8rem; color: #5a6a80;
  }
  .policy-footer strong { color: #0a0f1a; }