/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,sans-serif;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: Arial, sans-serif;
}

/* ================= NAVBAR ================= */

.wf-navbar{
    background:#f4f4f4;
    position:relative;
}

/* TOP BAR */

.wf-container{
    max-width:1200px;
    margin:auto;

    height:90px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 20px;
}

/* LOGO */

.wf-logo{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.wf-logo img{
    width:55px;
}

.wf-text{
    font-size:44px;
    font-weight:700;
    color:#111;
}

/* RIGHT SIDE */

.wf-right{
    display:flex;
    align-items:center;
    gap:10px;
}

/* SOCIAL */

.wf-social{
    display:flex;
}

.wf-social a{
    width:45px;
    height:45px;
    background:#000;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;
}

/* DONATE */

.wf-donate{
    height:45px;
    padding:0 22px;

    display:flex;
    align-items:center;

    background:#22b7c4;
    color:#fff;

    font-weight:700;
    text-decoration:none;
}

/* HAMBURGER */

.wf-menu-btn{
    width:45px;
    height:45px;
    border:none;

    background:#c79b31;
    color:#fff;

    font-size:22px;

    cursor:pointer;

    display:none; /* hidden on desktop */
}

/* ================= NAV LINKS (DESKTOP + MOBILE BASE) ================= */

.wf-nav-links{
    width:100%;
    background:#000;

    /* IMPORTANT FIX: hidden properly */
    display:none;
    flex-direction:column;
}

/* OPEN STATE */
.wf-nav-links.active{
    display:flex;
}

/* LINKS (main nav buttons) */

.wf-nav-links a,
.wf-dropdown-toggle{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 18px;
    margin: 0 10px;

    color: #fff;
    text-decoration: none;

    border-radius: 12px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.12);

    cursor: pointer;
    letter-spacing: 1px;
    font-size: 13px;
    text-transform: uppercase;
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.wf-nav-links a:hover,
.wf-dropdown-toggle:hover{
    background: #f39c12;
    border-color: #f39c12;
    transform: translateY(-2px);
}

/* keep submenu buttons from being boxed */
.wf-submenu a{
    display: block;
    margin: 0;
    padding: 12px 16px;
    border-radius: 0;
    border: none;
    background: transparent;
    color: #fff;
    text-transform: none;
    letter-spacing: 0;
    font-size: 13px;
    transition: background 180ms ease, color 180ms ease;
}

.wf-submenu{
    background: #fff;
    display: none;
    flex-direction: column;
}

.wf-submenu a{
    color: #333;
}

.wf-submenu a:hover{
    background: #f5f5f5;
    color: #000;
}


/* SUBMENU */

.wf-submenu{
    display:none;
    flex-direction:column;
}

.wf-submenu.active{
    display:flex;
}

.wf-submenu a{
    padding-left:0;
    color:#333;
}


/* PLUS */

.wf-plus{
    transition:0.3s;
}

.wf-plus.rotate{
    transform:rotate(45deg);
}

/* ================= DESKTOP NAV LINKS (IMPORTANT FIX) ================= */

@media(min-width:769px){

    /* desktop shows header normally */
    .wf-nav-links{
        display:none !important;
    }
}

/* ================= MOBILE ================= */

@media(max-width:768px){

    .wf-text{
        display:none;
    }

    .wf-social{
        display:none;
    }

    .wf-menu-btn{
        display:block;
    }

    .wf-container{
        height:75px;
        padding:0 15px;
    }

    .wf-logo img{
        width:42px;
    }

    .wf-donate{
        height:40px;
        padding:0 14px;
        font-size:12px;
    }
}
/* HERO */

.hero{
    position:relative;

    min-height:700px;

    background:
    linear-gradient(
        rgba(0,0,0,.25),
        rgba(0,0,0,.25)
    ),
    url("Kirsten4.jpg");

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
}

.hero-content{
    width:100%;
    max-width:1200px;

    margin:auto;
    padding:0 60px;

    color:#fff;
}

.hero-tag{
    font-size:24px;
    font-family:Georgia,serif;
}

.hero h1{
    margin-top:25px;

    font-size:72px;
    line-height:.95;

    font-weight:800;

    max-width:700px;
}

.hero p{
    margin-top:30px;
    font-size:18px;
}

.hero-btn{
    margin-top:35px;

    display:inline-block;

    border:2px solid #fff;

    color:#fff;
    text-decoration:none;

    padding:14px 35px;
}

.hero-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);

    width:42px;
    height:60px;

    border:none;

    background:rgba(0,0,0,.45);

    color:#f0b23b;

    font-size:38px;
    cursor:pointer;
}

.left{
    left:50px;
}

.right{
    right:50px;
}

/* MOBILE */

@media (max-width: 991px) {
    .desktop-nav {
        display: none;
    }

    .socials {
        display: flex;
        gap: 10px;
    }

    .donate-btn {
        padding: 0 20px;
        font-size: 13px;
        min-height: 46px;
        height: 46px;
        letter-spacing: 0.5px;
    }

    .nav-top {
        height: 70px;
        padding: 0 20px;
    }

    .menu-btn {
        display: flex;
        width: 48px;
        height: 48px;
        padding: 0;
        background: #d8ab37;
        color: #fff;
        border: none;
        border-radius: 8px;
        font-size: 20px;
        justify-content: center;
        align-items: center;
        font-weight: 700;
        cursor: pointer;
        transition: background 0.2s ease;
    }

    .menu-btn:hover {
        background: #c49520;
    }

    .hero{
        min-height:350px;
    }

    .hero-content{
        padding:0 30px;
    }

    .hero h1{
        font-size:50px;
    }

    .hero-tag{
        font-size:18px;
    }

    .hero p{
        font-size:16px;
    }

    .left{
        left:20px;
    }

    .right{
        right:20px;
    }

    body {
        font-size: 15px;
    }
}

@media (max-width:768px){

    .hero h1{
        font-size:38px;
    }

    .hero-btn{
        padding:12px 24px;
        font-size:14px;
    }
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 998;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.donation-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 10000;
    backdrop-filter: blur(8px);
}

.donation-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.modal-open {
    overflow: hidden;
}

.donation-modal {
    width: min(540px, 100%);
    background: #fff;
    border-radius: 28px;
    padding: 28px 26px;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
    position: relative;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
}

.donation-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(15, 61, 46, 0.08);
    color: #0f3d2e;
    font-size: 22px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.donation-close:hover {
    background: rgba(15, 61, 46, 0.16);
}

.donation-modal h2 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #0f3d2e;
}

.donation-modal p {
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 22px;
}

.donation-step {
    display: none;
}

.donation-step.active {
    display: block;
}

.donation-modal label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: #0f3d2e;
}

.donation-modal input,
.donation-modal select,
.donation-modal textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid #dcdcdc;
    margin-bottom: 18px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.donation-modal input:focus,
.donation-modal textarea:focus,
.donation-modal select:focus {
    border-color: #2db7b7;
    box-shadow: 0 0 0 4px rgba(45, 183, 183, 0.12);
}

.donation-actions {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    margin-top: 12px;
}

.donation-actions button {
    flex: 0 0 auto;
    min-width: 110px;
    padding: 10px 18px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.donation-actions .donation-prev {
    background: #f2f2f2;
    color: #333;
}

.donation-actions .donation-next,
.donation-actions .donation-submit {
    background: #e67e22;
    color: #fff;
}

.donation-actions button:hover {
    transform: translateY(-1px);
}

.donation-summary {
    background: #f8fbf9;
    border-left: 4px solid #2db7b7;
    padding: 18px 20px;
    border-radius: 16px;
    margin-bottom: 20px;
}

.donation-step-indicator {
    display: flex;
    gap: 10px;
    margin-bottom: 22px;
}

.donation-step-indicator span {
    flex: 1;
    height: 8px;
    border-radius: 999px;
    background: #e6e6e6;
}

.donation-step-indicator span.active {
    background: #2db7b7;
}

@media (max-width: 640px) {
    .donation-modal {
        padding: 20px;
    }

    .donation-close {
        top: 14px;
        right: 14px;
    }

    .donation-actions {
        flex-direction: column;
    }
}


.desktop-nav.mobile-active {
    display: flex;
    position: fixed;
    inset: 80px 0 0 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    background: #1a1a1a;
    padding: 40px 20px 20px;
    gap: 2px;
    overflow-y: auto;
    height: calc(100vh - 80px);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.desktop-nav.mobile-active::before {
        content: "Menu";
        display: block;
        margin-bottom: 20px;
        font-size: 14px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #d8ab37;
        font-weight: 700;
    }

    .desktop-nav.mobile-active a {
        display: block;
        width: 100%;
        padding: 16px 20px;
        color: #fff;
        background: transparent;
        border: none;
        border-radius: 0;
        transition: background 0.2s ease, color 0.2s ease;
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-align: left;
        text-transform: uppercase;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .desktop-nav.mobile-active a:hover {
        background: rgba(255,255,255,0.08);
        color: #d8ab37;
    }

    .desktop-nav.mobile-active a:last-child {
        border-bottom: none;
    }

    .desktop-nav.mobile-active .dropdown {
        position: relative;
    }

    .desktop-nav.mobile-active .dropdown-toggle::after {
        content: " ▼";
        font-size: 12px;
        margin-left: 8px;
    }

    .desktop-nav.mobile-active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        position: static;
        box-shadow: none;
        background: rgba(0,0,0,0.4);
        padding: 0;
        margin-top: 0;
        max-height: none;
    }

    .desktop-nav.mobile-active .dropdown-menu a {
        padding: 14px 20px 14px 40px;
        background: transparent;
        border: none;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        border-radius: 0;
        margin-top: 0;
        font-size: 14px;
        letter-spacing: 0.3px;
    }

    .desktop-nav.mobile-active .dropdown-menu a:hover {
        background: rgba(255,255,255,0.05);
        color: #d8ab37;
    }

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    z-index: 1000;
    border-radius: 8px;
    overflow: hidden;
}

.dropdown-menu a {
    display: block;
    padding: 14px 20px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: none;
    border-bottom: 1px solid #eee;
    transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: #f2f2f2;
    color: #d8ab37;
}

@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.logo {
    display: inline-flex;
    gap: 20px;
}

.logo h2 {
    margin-top: 10px;
}

.multi-hero-h1 {
    font-size: 40px !important;
}

.hero-content {
    margin-left: 40px;
}

/* ==================================
   CAUSES SECTION
================================== */

.causes-section{
    padding:60px 15px;
    background:#f6f6f6;
}

.section-header{
    text-align:center;
    margin-bottom:35px;
}

.section-header h2{
    font-size:1.5rem;
    font-weight:800;
    color:#222;
    margin-bottom:5px;
}

.section-header p{
    font-size:.7rem;
    color:#555;
}

.section-line{
    display:block;
    width:35px;
    height:2px;
    background:#d9ac45;
    margin:15px auto 0;
}

/* ==================================
   GRID
================================== */

.causes-grid{
    max-width:1030px;
    max-height: 1000px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:70px;
}

/* ==================================
   CARD
================================== */

.cause-card{
    background:#fff;
    box-shadow:0 4px 12px rgba(0,0,0,.08);
    transition:.3s;
    height: 300px;
}

.cause-card:hover{
    transform:translateY(-4px);
}

.cause-card img{
    width:100%;
    height:170px;
    object-fit:cover;
    display:block;
}

/* ==================================
   STATUS BAR
================================== */

.progress-bar{
    display:flex;
}

.status{
    flex:1;
    background:#2e2926;
    color:#fff;
    padding:6px 12px;
    font-size:.7rem;
}

.percentage{
    flex:1;
    background:#ef6400;
    color:#fff;
    text-align:center;
    padding:6px 12px;
    font-size:.7rem;
}

/* ==================================
   CONTENT
================================== */

.card-content{
    padding:18px 15px;
    text-align:center;
}

.card-content h3{
    font-size:1rem;
    line-height:1.2;
    color:#111;
    margin-bottom:12px;
}

.donation-info{
    color:#666;
    font-size:.7rem;
    margin-bottom:12px;
}

.card-content button{
    background:#d9ac45;
    color:#fff;
    border:none;
    padding:8px 16px;
    font-size:.7rem;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.card-content button:hover{
    transform:translateY(-2px);
}

/* ==================================
   TABLET
================================== */

@media (max-width:768px){

    .causes-grid{
        grid-template-columns:1fr;
        max-width:300px;
    }

}

/* ==================================
   MOBILE
================================== */

@media (max-width:479px){

    /* Hide images completely */

    .cause-card img{
        display:none;
    }

    .causes-grid{
        max-width:280px;
    }

    .card-content{
        padding:15px;
    }

    .card-content h3{
        font-size:.9rem;
    }

    .status,
    .percentage{
        font-size:.65rem;
        padding:6px 8px;
    }

    .donation-info{
        font-size:.65rem;
    }

    .card-content button{
        width:100%;
        font-size:.65rem;
    }

}

/* ====================================
   SUPPORT SECTION
==================================== */

.support-section{
    max-width:950px;
    margin:120px auto;
    padding:0 25px;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:90px;

    align-items:stretch;
}

/* ====================================
   LEFT COLUMN
==================================== */

.support-content{
    height:100%;

    display:flex;
    flex-direction:column;
    justify-content:center;
}

.support-content h2{
    font-size:2.6rem;
    line-height:1.05;
    font-weight:700;

    color:#2f2f2f;

    margin-bottom:30px;
}

.intro{
    font-size:1rem;
    line-height:1.7;

    color:#333;

    margin-bottom:25px;
}

.description{
    font-size:.9rem;
    line-height:1.9;

    color:#444;

    margin-bottom:50px;
}

.description a{
    color:#46a6b7;
    text-decoration:none;
}

.description a:hover{
    text-decoration:underline;
}

/* ====================================
   MISSION / GOALS
==================================== */

.info-boxes{
    display:flex;
    gap:40px;
}

.info-box{
    flex:1;
}

.icon{
    font-size:1.4rem;
    color:#d8a73b;

    margin-bottom:12px;
}

.info-box h3{
    font-size:1.4rem;
    color:#2f2f2f;

    margin-bottom:15px;
}

.info-box p{
    font-size:.85rem;
    line-height:1.8;
    color:#444;
}

/* ====================================
   RIGHT COLUMN
==================================== */

.support-images{
    height:80%;
    max-width: 600px;

    display:flex;
    flex-direction:column;

    gap:25px;

    margin-top: 50px;
}

.cause-image-card{
    position:relative;

    flex:1;

    overflow:hidden;

    border-radius:1px;

    min-height:220px;

}

.cause-image-card img{
    width:100%;
    height:100%;

    object-fit:cover;
    object-position:center;

    display:block;

    transition:.4s;

}

.cause-image-card:hover img{
    transform:scale(1.05);
}

/* ====================================
   IMAGE OVERLAYS
==================================== */

.image-overlay{
    position:absolute;
    inset:0;

    padding:35px;

    display:flex;
    flex-direction:column;
    justify-content:center;

    background:rgba(0,0,0,.35);

    color:#fff;
}

.image-overlay.dark{
    background:rgba(255,255,255,.45);
    color:#000;
}

.image-overlay h3{
    font-size:2rem;
    font-weight:700;

    margin-bottom:15px;
}

.image-overlay p{
    max-width:260px;

    font-size:.9rem;
    line-height:1.6;

    margin-bottom:25px;
}

.image-overlay a{
    display:inline-block;
    width:max-content;

    background:#e5b648;

    color:#fff;

    text-decoration:none;

    padding:12px 22px;

    font-size:.8rem;
    font-weight:600;

    transition:.3s;
}

.image-overlay a:hover{
    transform:translateY(-2px);
}

/* ====================================
   TABLET
==================================== */

@media (max-width:991px){

    .support-section{
        max-width:700px;

        grid-template-columns:1fr;

        gap:50px;
    }

    .support-images{
        height:auto;
    }

    .cause-image-card{
        min-height:240px;
    }

}

/* ====================================
   MOBILE
==================================== */

@media (max-width:767px){

    .support-section{
        margin:80px auto;
        padding:0 20px;
    }

    .support-content h2{
        font-size:2rem;
    }

    .info-boxes{
        flex-direction:column;
        gap:30px;
    }

    .cause-image-card{
        min-height:200px;
    }

    .image-overlay{
        padding:25px;
    }

    .image-overlay h3{
        font-size:1.5rem;
    }
}

/* ====================================
   SMALL PHONES
==================================== */

@media (max-width:479px){

    .support-section{
        gap:35px;
    }

    .support-content h2{
        font-size:1.7rem;
    }

    .intro{
        font-size:.9rem;
    }

    .description{
        font-size:.8rem;
    }

    .cause-image-card{
        min-height:170px;
    }

    .image-overlay h3{
        font-size:1.25rem;
    }

    .image-overlay p{
        font-size:.75rem;
        margin-bottom:15px;
    }

    .image-overlay a{
        padding:10px 18px;
        font-size:.7rem;
    }
}

.impact-section{
    max-width:1300px;
    margin:120px auto;

    background:#f8f8f8;

    position:relative;
    overflow:hidden;
}

.impact-wrapper{
    display:grid;

    grid-template-columns:60% 40%;

    align-items:end;

    min-height:420px;
}

/* LEFT SIDE */

.impact-content{
    padding:60px 0 60px 120px;

    display:flex;
    flex-direction:column;
    gap:25px;

    z-index:2;
}

.impact-item{
    display:flex;
    gap:20px;
}

.impact-icon{
    width:60px;
    height:60px;

    background:#e4b548;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;
}

.impact-icon i{
    color:white;
    font-size:1.5rem;
}

.impact-text h3{
    margin:0 0 10px;
}

.impact-text p{
    margin:0;
    line-height:1.8;
}

/* RIGHT SIDE */

.impact-image{
    height:100%;

    display:flex;
    align-items:flex-end;
    justify-content:center;
}

.impact-image img{
    max-height:430px;
    width:auto;

    display:block;
}

/* ===================================
   IMPACT SECTION
=================================== */

.impact-section{
    max-width:1300px;
    margin:120px auto;

    position:relative;
    overflow:hidden;

    background:
    linear-gradient(
        rgba(255,255,255,.80),
        rgba(255,255,255,.80)
    ),
    url("Kirsten9.jpg");

    background-size:cover;
    background-position:center;

    min-height:420px;
}

/* ===================================
   LAYOUT
=================================== */

.impact-wrapper{
    display:grid;
    grid-template-columns:55% 45%;

    min-height:420px;

    position:relative;
    z-index:2;
}

/* ===================================
   LEFT CONTENT
=================================== */

.impact-content{
    padding:85px 30px 70px 95px;

    display:flex;
    flex-direction:column;
    justify-content:center;

    gap:24px;
}

.impact-item{
    display:flex;
    align-items:flex-start;

    gap:18px;
}

/* ===================================
   ICONS
=================================== */

.impact-icon{
    width:60px;
    height:60px;

    flex-shrink:0;

    background:#e4b548;

    display:flex;
    align-items:center;
    justify-content:center;
}

.impact-icon i{
    color:#fff;
    font-size:1.45rem;
}

/* ===================================
   TEXT
=================================== */

.impact-text h3{
    margin:0 0 8px;

    color:#222;

    font-size:1.05rem;
    font-weight:700;
}

.impact-text p{
    margin:0;

    color:#333;

    font-size:.92rem;
    line-height:1.8;

    max-width:520px;
}

/* ===================================
   RIGHT IMAGE
=================================== */

.impact-image{
    position:relative;

    display:flex;
    justify-content:center;
    align-items:flex-end;

    overflow:visible;
}

.impact-image img{
    height:125%;
    width:auto;

    object-fit:contain;

    display:block;

    transform:translateY(15px);
}

/* ===================================
   TABLET
=================================== */

@media (max-width:991px){

    .impact-wrapper{
        grid-template-columns:1fr;
    }

    .impact-content{
        padding:60px 40px;
    }

    .impact-image{
        display:none;
    }

}

/* ===================================
   MOBILE
=================================== */

@media (max-width:479px){

    .impact-section{
        margin:80px auto;
    }

    .impact-content{
        padding:40px 20px;
        gap:20px;
    }

    .impact-item{
        gap:14px;
    }

    .impact-icon{
        width:50px;
        height:50px;
    }

    .impact-icon i{
        font-size:1.2rem;
    }

    .impact-text h3{
        font-size:.9rem;
    }

    .impact-text p{
        font-size:.8rem;
        line-height:1.6;
    }

}

/* ==========================
   HELP SECTION
========================== */

.help-section{
    background:#1f1f1f;

    padding:90px 40px 100px;

    text-align:center;

    height: 550px;
}

/* ==========================
   HEADER
========================== */

.help-header h2{
    color:#fff;

    font-size:3.5rem;
    font-weight:700;

    margin:0;
}

.help-header p{
    color:#fff;

    font-size:1.2rem;

    margin:12px 0 35px;
}

.divider{
    display:block;

    width:90px;
    height:3px;

    background:#e6b644;

    margin:0 auto 70px;
}

/* ==========================
   GRID
========================== */

.help-grid{
    max-width:1200px;

    margin:0 auto;

    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:50px;
}

/* ==========================
   CARD
========================== */

.help-card{
    display:flex;
    flex-direction:column;
    align-items:center;
}

/* ==========================
   ICON
========================== */

.help-icon{
    width:70px;
    height:70px;

    border-radius:50%;

    background:#e6b644;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:25px;
}

.help-icon i{
    color:#fff;
    font-size:2rem;
}

/* ==========================
   TITLE
========================== */

.help-card h3{
    color:#fff;

    font-size:1.9rem;
    font-weight:700;

    margin:0 0 18px;
}

/* ==========================
   TEXT
========================== */

.help-card p{
    color:#fff;

    font-size:1rem;
    line-height:1.9;

    max-width:260px;

    margin:0;
}

/* ==========================
   SOCIAL
========================== */

.follow-text{
    margin-bottom:18px !important;
}

.social-icons{
    display:flex;
    gap:8px;
}

.social-icons a{
    width:40px;
    height:40px;

    background:#22b8c7;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;
}

.social-icons i{
    color:#fff;
    font-size:1.1rem;
}

/* ==========================
   TABLET
========================== */

@media (max-width:991px){

    .help-grid{
        grid-template-columns:repeat(2,1fr);
        gap:60px 40px;
    }

    .help-header h2{
        font-size:2.8rem;
    }

    .help-section {
height: 1000px;
    }

   

}

/* ==========================
   MOBILE
========================== */

@media (max-width:479px){

    .help-section{
        padding:70px 20px;
        
    }

    .help-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .help-header h2{
        font-size:2rem;
    }

    .help-header p{
        font-size:1rem;
    }

    .divider{
        margin-bottom:50px;
    }

    .help-card h3{
        font-size:1.5rem;
    }

}

/* =====================================
   FOOTER
===================================== */

.footer{
    width:100%;
    max-width:100%;
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* =====================================
   TOP FOOTER
===================================== */

.footer-top{
    background:#e4b548;

    width:100%;
    max-width:1300px;
    margin:0 auto;

    padding:65px 90px;

    display:grid;
    grid-template-columns:250px 250px 1fr;

    gap:70px;

    align-items:start;
}

/* =====================================
   COLUMNS
===================================== */

.footer-column{
    display:flex;
    flex-direction:column;
    min-width:0;
}

.footer-column h3{
    color:#fff;

    font-size:1.9rem;
    font-weight:700;

    margin:0 0 18px;

    text-transform:uppercase;
}

.footer-column p{
    color:#111;

    font-size:.9rem;
    line-height:1.8;

    margin:0 0 18px;
}

/* =====================================
   SOCIAL
===================================== */

.social-box{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    background:#000;
    width:max-content;
}

.social-box a{
    width:40px;
    height:40px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#8a8a8a;

    text-decoration:none;

    transition:.3s;
}

.social-box a:hover{
    color:#fff;
}

/* =====================================
   CONTACT
===================================== */

.contact-item{
    display:flex;
    align-items:flex-start;

    gap:14px;

    margin-bottom:15px;
}

.contact-item i{
    width:18px;

    margin-top:4px;

    color:#000;
}

.contact-item span,
.contact-item a{
    color:#000;

    font-size:.9rem;
    line-height:1.8;

    text-decoration:none;
}

/* =====================================
   NEWSLETTER
===================================== */

.newsletter{
    max-width:520px;
}

.newsletter-form{
    display:flex;
    gap:8px;

    margin-top:20px;
}

.newsletter-form input{
    width:120px;
    flex:0 0 120px;
    min-width:120px;

    height:46px;

    border:none;
    outline:none;

    background:#fff;

    padding:0 16px;

    font-size:.9rem;
}

.newsletter-form button{
    width:120px;
    height:46px;

    border:none;

    background:#000;
    color:#fff;

    font-size:.85rem;
    font-weight:600;

    cursor:pointer;

    transition:.3s;
}

.newsletter-form button:hover{
    opacity:.9;
}

/* =====================================
   BOTTOM FOOTER
===================================== */

.footer-bottom{
    background:#000;
}

.footer-bottom-inner{
    max-width:1300px;

    margin:0 auto;

    padding:28px 90px;
}

.footer-bottom p{
    margin:0;

    color:#777;

    font-size:.85rem;
}

  .footer {
        margin-top: 50px;
    }


/* =====================================
   TABLET
===================================== */

@media (max-width:991px){

    .footer-top{
        grid-template-columns:1fr;
        gap:40px;

        padding:50px 40px;
    }

    .footer {
        margin-top: 50px;
    }


    .newsletter{
        max-width:100%;
    }

    .newsletter-form{
        flex-direction:column;
    }

    .newsletter-form button{
        width:100%;
    }

    .footer-bottom-inner{
        padding:25px 40px;
    }
}

/* =====================================
   MOBILE
===================================== */

@media (max-width:479px){

    .footer {
        margin-top: 50px;
    }

    .footer-top{
        padding:32px 18px;
        gap:28px;
    }

    .footer-column h3{
        font-size:1.5rem;
    }

    .footer-column p,
    .contact-item span,
    .contact-item a{
        font-size:.85rem;
    }

    .social-box{
        justify-content:flex-start;
        width:auto;
    }

    .social-box a{
        width:36px;
        height:36px;
    }

    .newsletter-form{
        flex-direction:column;
        gap:14px;
    }

    .newsletter-form input,
    .newsletter-form button{
        width:100%;
        height:44px;
    }

    .footer-bottom-inner{
        padding:18px 18px;
    }

    .footer-bottom p{
        font-size:.75rem;
        line-height:1.6;
    }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #ffffff;
}

.donation-stats {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.container {
  max-width: 700px;
  text-align: left;
}

.title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1d1d1d;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.amount {
  font-size: 64px;
  font-weight: 800;
  color: #f29d4a; /* orange highlight */
  margin-bottom: 20px;
}

.description {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 30px;
  max-width: 600px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

.btn:hover {
  background: #333;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ad5b1d;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d8d8d8;
  border-radius: 14px;
  font-size: 15px;
  color: #1f2a24;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #e67e22;
  box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.12);
}

.contact-form button {
  width: fit-content;
  padding: 12px 26px;
  border-radius: 12px;
  background: #000;
  color: #fff;
  border: none;
}

.contact-form button:hover {
  background: #333;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .amount {
    font-size: 48px;
  }

}

  .title {
    font-size: 18px;
  }

  .description {
    font-size: 14px;
  }


/* ================= DONATION MODAL ================= */

.donation-overlay{
    position:fixed;
    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.7);

    display:none;
    justify-content:center;
    align-items:center;

    z-index:9999;
}

/* OPEN STATE */
.donation-overlay.active{
    display:flex;
}

/* MODAL BOX */

.donation-modal{
    background:#fff;

    width:90%;
    max-width:450px;

    padding:30px;

    position:relative;

    border-radius:6px;

    animation:pop .3s ease;
}

/* CLOSE BUTTON */

.close-modal{
    position:absolute;
    top:10px;
    right:15px;

    font-size:28px;
    cursor:pointer;
}

/* FORM */

.donation-modal h2{
    margin-bottom:10px;
}

.donation-modal p{
    margin-bottom:20px;
    color:#666;
}

.donation-modal form{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.donation-modal input,
.donation-modal select{
    padding:12px;
    border:1px solid #ddd;
    outline:none;
}

.donation-modal button{
    padding:12px;
    border:none;

    background:#21b7c4;
    color:#fff;

    font-weight:700;
    cursor:pointer;
}

/* ANIMATION */

@keyframes pop{
    from{
        transform:scale(0.8);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}


.mobile-menu {
    background: #f39c12; /* We Care orange */
    padding: 18px 0;
    font-family: Arial, Helvetica, sans-serif;
}

/* center the whole menu */
.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 45px;
}

/* main links */
.mobile-menu a,
.wf-dropdown-toggle {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    padding: 10px 5px;
}

/* hover effect (slight transparency like We Care) */
.mobile-menu a:hover,
.wf-dropdown-toggle:hover {
    opacity: 0.85;
}

/* dropdown container */
.dropdown {
    position: relative;
}

/* submenu */
.wf-submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    min-width: 220px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    display: none;
    flex-direction: column;
    z-index: 999;
}

/* submenu links */
.wf-submenu a {
    color: #333;
    padding: 12px 16px;
    font-size: 13px;
    text-transform: none;
    font-weight: 500;
    display: block;
}

/* hover on submenu items */
.wf-submenu a:hover {
    background: #f5f5f5;
}

/* show dropdown */
.dropdown:hover .wf-submenu {
    display: flex;
}

/* small plus icon like template */
.wf-plus {
    margin-left: 6px;
    color: #fff;
    font-weight: bold;
}

