:root{
    --brand-green: #378842;
    --brand-orange: #F6A725;
    --brand-white: #ffffff;
    --brand-grey: #7F7F7F;
    --nav-height: 72px;
    --mobile-break: 991px;
    --sidebar-width: 320px;
  }

  *, *::before, *::after { box-sizing: border-box; }
  html,body{ height:100%; margin:0; font-family: "Open Sans", system-ui; background: #f5f8fb; color: #102126; }
  a { color: inherit; text-decoration: none; }
  ul { list-style: none; margin:0; padding:0; }

  /* ======= Main Header ======= */
  header.main-header {
    position: sticky; top: 0; z-index: 1200;
    background: var(--brand-green);
    height: var(--nav-height);
    display: flex; align-items: center;
    box-shadow: 0 6px 24px rgba(8,39,25,0.12);
    border-bottom: 2px solid rgba(255,255,255,0.04);
  }
  .header-wrap {
    max-width: 1400;
    padding: 0 59px;
    margin: 0 auto; width: 100%;
    display: flex; align-items: center; justify-content: space-between;
  }

  .site-logo a {
    display: flex; align-items: center; gap: 12px;
  }
  .site-logo img { height: 50px; width: auto; }

  nav.primary { display:flex; align-items:center; gap:30px; flex:1; margin-left:28px; padding:10px 40px; }

  /* Desktop Menu */
  ul.primary-menu {
    display: flex; gap: clamp(16px, 2.2vw, 24px); align-items: center; margin: 0; padding: 0;
  }
  ul.primary-menu > li { position: relative; }
  ul.primary-menu > li > a {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 14px; color: var(--brand-white); font-weight: 600; font-size: 15px; border-radius: 8px;
    transition: background .18s ease, color .18s ease, transform .12s ease;
  }
  ul.primary-menu > li > a .caret { font-size: 0.7rem; color: rgba(255,255,255,0.9); }
  ul.primary-menu > li > a:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-1px);
  }

  /* ORIGINAL DESKTOP DROPDOWN (exactly as you had) */
  .dropdown-menu {
    position: absolute; top: 100%; left: 0; min-width: 220px;
    background: var(--brand-green); border-radius: 0 0 12px 12px;
    padding: 8px 0; display: none; flex-direction: column;
    opacity: 0; transform: translateY(8px); transition: all 0.25s ease;
    z-index: 1300; box-shadow: 0 12px 32px rgba(0,0,0,0.15);
  }
  .dropdown-menu::before {
    content: ""; position: absolute; top: 0; left: 2%; transform: translateX(-2%);
    width: 60px; height: 2px; background: var(--brand-orange); border-radius: 2px;
  }
  .dropdown:hover > .dropdown-menu,
  .dropdown.open > .dropdown-menu {
    display: flex; opacity: 1; transform: translateY(0);
  }
  .dropdown-menu li a {
    display: block; padding: 10px 18px; color: #ffffff; font-weight: 600; font-size: 0.95rem;
    position: relative; transition: all 0.25s ease;
  }
  .dropdown-menu li a::after {
    content: ""; position: absolute; left: 18px; bottom: 4px;
    width: 0; height: 2px; background: var(--brand-orange); border-radius: 2px;
    transition: width 0.25s ease;
  }
  .dropdown-menu li a:hover::after { width: 25px; }
  .dropdown-menu li a:hover {
    color: var(--brand-orange); transform: translateX(3px);
  }
  .dropdown-menu li { overflow: hidden; }

  /* Donate Button */
  .btn-donate--brand {
    background: var(--brand-white); color: var(--brand-green);
    border: 2px solid rgba(255,255,255,0.12);
    padding: 10px 16px; border-radius: 40px; font-weight:700; font-size:0.95rem;
    display: inline-flex; align-items: center; gap: 10px;
    transition: all .18s ease; box-shadow: 0 8px 26px rgba(12,40,20,0.16);
  }
  .btn-donate--brand:hover {
    background: var(--brand-orange); color: #02210a;
    transform: translateY(-2px); box-shadow: 0 10px 30px rgba(246,167,37,0.12);
  }
  .btn-donate--brand .fa-heart {
    width: 30px; height: 30px; border-radius: 50%;
    background: rgba(255,255,255,0.18); color: var(--brand-white);
    display: flex; align-items: center; justify-content: center; font-size: 14px;
  }

  /* Hamburger */
  .hamburger {
    display: none; background: none; border: none; color: white;
    font-size: 24px; cursor: pointer; padding: 8px;
  }

  /* ======= MOBILE SIDEBAR ======= */
  .mobile-nav-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(8px);
    z-index: 1999; opacity: 0; visibility: hidden;
    transition: all 0.35s ease;
  }
  .mobile-nav-overlay.open { opacity: 1; visibility: visible; }

  .mobile-sidebar {
    position: fixed; top: 0; left: 0; width: var(--sidebar-width); max-width: 90%;
    height: 100%; background: var(--brand-green); z-index: 2000;
    padding: 20px 0; transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 8px 0 40px rgba(0,0,0,0.3); overflow-y: auto;
  }
  .mobile-sidebar.open { transform: translateX(0); }

  .sidebar-header {
    padding: 0 24px 20px; border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex; justify-content: space-between; align-items: center;
  }
  .sidebar-header .site-logo img { height: 44px; }
  .close-sidebar { background: none; border: none; color: white; font-size: 28px; cursor: pointer; }

  .sidebar-menu > li { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .sidebar-menu > li > a {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 24px; color: white; font-weight: 600; font-size: 16px;
  }
  .sidebar-menu > li > a:hover { background: rgba(255,255,255,0.1); color: var(--brand-orange); }
  .sidebar-menu > li > a .caret { transition: transform 0.3s ease; }
  .sidebar-menu > li.open > a .caret { transform: rotate(180deg); }

  .sidebar-submenu {
    background: rgba(0,0,0,0.15); max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
  }
  .sidebar-submenu.open { max-height: 600px; padding: 12px 0; }
  .sidebar-submenu a {
    display: block; padding: 12px 40px; color: rgba(255,255,255,0.9); font-size: 15px;
  }
  .sidebar-submenu a:hover {
    color: var(--brand-orange); padding-left: 48px; background: rgba(255,255,255,0.08);
  }

  .sidebar-donate {
    padding: 20px 24px; margin-top: 10px;
    background: rgba(255,255,255,0.1); border-top: 1px solid rgba(255,255,255,0.15);
  }

  /* Mobile Adjustments */
 /* Mobile View */
  @media (max-width: 991px) {
    .hamburger { display: inline;position: absolute ;
        top:10px;right:10px;
    }
    nav.primary ul.primary-menu { display: none; }
    .btn-donate--brand { display: none; }
    
     .site-logo img { 
           height: 50px;
    width: auto;
    position: absolute;
    left: 10px;}
  }

  a:focus-visible, button:focus-visible {
    outline: 3px solid rgba(255,255,255,0.3); outline-offset: 4px; border-radius: 8px;
  }

  a:focus-visible, button:focus-visible {
    outline: 3px solid rgba(255,255,255,0.3); outline-offset: 4px; border-radius: 8px;
  }
  
 .sidebar-contact {
    padding: 20px 24px; background: rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .sidebar-contact a {
    display: flex; align-items: center; gap: 12px;
    color: white; font-size: 15px; padding: 10px 0;
    transition: all 0.3s ease;
  }
  .sidebar-contact a:hover { color: var(--brand-orange); transform: translateX(4px); }
  .sidebar-contact i { 
    width: 36px; height: 36px; background: rgba(255,255,255,0.15);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 16px;
  }

  /* Social Icons */
  .sidebar-social {
    padding: 20px 24px; display: flex; gap: 12px; flex-wrap: wrap;
  }
  .sidebar-social a {
    width: 44px; height: 44px; background: rgba(255,255,255,0.15);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: white; font-size: 18px; transition: all 0.4s ease;
    backdrop-filter: blur(10px);
  }
  .sidebar-social a:hover {
    background: var(--brand-orange); color: #02210a;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(246,167,37,0.3);
     }
    
  