﻿*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy: #104478;
    --gold: #ffaf00;
    --white: #ffffff;
    --light: #f9fafb;
    --text-muted: #6a7282;
    --text-dark: #1e2939;
    --border: #e5e7eb;
    --radius-pill: 9999px;
    --radius-card: 16px;
    --radius-input: 12px;
    --shadow-card: 0 20px 40px rgba(0,0,0,0.08);
    --shadow-btn: 0 4px 15px rgba(16,68,120,0.39);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

/* ─── HEADER ──────────────────────────────────────────────── */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
a {
    color: #104478;
    text-decoration: none;
}
a:hover {
    color: #104478;
    text-decoration: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--navy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .logo-icon span {
        font-family: 'Montserrat', sans-serif;
        font-weight: 800;
        color: var(--gold);
        font-size: 16px;
    }

.logo-text {
    display: flex;
    flex-direction: column;
}

    .logo-text .brand {
        font-family: 'Montserrat', sans-serif;
        font-weight: 800;
        font-size: 18px;
        line-height: 1;
    }

        .logo-text .brand span:first-child {
            color: var(--gold);
        }

        .logo-text .brand span:last-child {
            color: var(--navy);
        }

    .logo-text .tagline {
        font-size: 10px;
        color: var(--text-muted);
        font-style: italic;
        margin-top: 2px;
    }

nav {
    display: flex;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    padding: 6px;
    gap: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

    nav a {
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        color: var(--navy);
        padding: 8px 18px;
        border-radius: var(--radius-pill);
        transition: background 0.2s, color 0.2s;
    }

        nav a:hover, nav a.active {
            background: var(--navy);
            color: var(--white);
        }

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .header-actions a {
        text-decoration: none;
    }

.btn-ghost {
    background: transparent;
    border: none;
    font-weight: 700;
    font-size: 14px;
    color: var(--gold);
    cursor: pointer;
    padding: 8px 16px;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 14px;
    border: none;
    border-radius: var(--radius-pill);
    padding: 12px 24px;
    cursor: pointer;
    box-shadow: var(--shadow-btn);
    transition: transform 0.15s, box-shadow 0.15s;
}

    .btn-primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 20px rgba(16,68,120,0.45);
    }

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
    position: relative;
    background: var(--navy);
    overflow: hidden;
    min-height: 680px;
    display: flex;
    align-items: center;
}

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url('https://images.unsplash.com/photo-1532629345422-7515f3d16bb6?w=1600&q=80') center/cover no-repeat;
        opacity: 0.2;
    }

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-left {
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(36px, 4vw, 52px);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 32px;
}

    .hero-title .accent {
        color: var(--gold);
    }

    .hero-title::after {
        content: '';
        display: block;
        width: 80px;
        height: 4px;
        background: var(--gold);
        margin-top: 16px;
        border-radius: 2px;
    }

/* Donation Widget */
.donate-widget {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 28px;
}

.donate-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.donate-tab {
    flex: 1;
    padding: 12px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    text-align: center;
}

    .donate-tab.active {
        background: var(--gold);
        color: var(--navy);
    }

    .donate-tab:not(.active) {
        background: var(--white);
        color: var(--navy);
    }

    .donate-tab:hover:not(.active) {
        background: #f0f8ff;
    }

.amount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 12px;
}

.amount-btn {
    padding: 13px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 16px;
    color: var(--navy);
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    text-align: center;
}

    .amount-btn.active {
        background: var(--gold);
    }

    .amount-btn:not(.active) {
        background: var(--white);
    }

    .amount-btn:hover:not(.active) {
        background: #e8f4ff;
    }

.custom-amount {
    background: var(--white);
    border: none;
    border-radius: var(--radius-pill);
    padding: 13px 20px;
    font-size: 16px;
    font-weight: 600;
    color: rgba(16,68,120,0.4);
    width: 55%;
    outline: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.hint-text {
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    margin: 8px 0 16px;
}

    .hint-text strong {
        color: var(--gold);
    }

.donate-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.select-styled {
    flex: 1;
    background: var(--white);
    border: none;
    border-radius: var(--radius-pill);
    padding: 13px 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    appearance: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    outline: none;
}

.btn-donate {
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 16px;
    border: none;
    border-radius: var(--radius-pill);
    padding: 13px 28px;
    cursor: pointer;
    box-shadow: var(--shadow-btn);
    transition: transform 0.15s;
}

    .btn-donate:hover {
        transform: translateY(-2px);
    }

/* phone mockup side */
.hero-phone {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1a5a9c, var(--navy));
    border-radius: 40px;
    border: 8px solid rgba(255,255,255,0.15);
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
}

    .phone-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.85;
    }

.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 12px 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
}

    .floating-card.donated {
        top: 80px;
        left: -60px;
    }

    .floating-card.donors {
        bottom: 160px;
        right: -50px;
    }

.fc-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #dcfce7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16a34a;
    font-size: 14px;
}

.fc-label {
    font-size: 11px;
    color: var(--text-muted);
}

.fc-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
}

.donor-avatars {
    display: flex;
}

.donor-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-left: -8px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: var(--white);
}

    .donor-avatar:first-child {
        margin-left: 0;
        background: #e5e7eb;
    }

    .donor-avatar:nth-child(2) {
        background: #d1d5dc;
    }

    .donor-avatar:nth-child(3) {
        background: rgba(16,68,120,0.2);
        color: var(--navy);
    }

/* ─── SEARCH SECTION ──────────────────────────────────────── */
.search-section {
    padding: 60px 24px;
    text-align: center;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 3.5vw, 42px);
    color: var(--navy);
    margin-bottom: 15px;
}

    .section-title .accent {
        color: var(--gold);
    }
    .section-title h2 {
        font-size: 14px;
        font-weight: 500;
        padding: 0;
        line-height: 1px;
        margin: 0 0 5px 0;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #aaaaaa;
        font-family: "Poppins", sans-serif;
    }
    .section-title p {
        margin: 0;
        margin: 0;
        font-size: 28px;
        font-weight: 600;
        text-transform: capitalize;
        font-family: "Montserrat", "Poppins", sans-serif;
        color: #104478;
    }
.search-bar {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--white);
    border: 2px solid var(--navy);
    border-radius: var(--radius-card);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-card);
}

.search-field {
    flex: 1;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: var(--radius-input);
    padding: 10px 20px;
    font-size: 15px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    outline: none;
    color: var(--text-dark);
    transition: border-color 0.2s;
}

    .search-field:focus {
        border-color: var(--navy);
    }

    .search-field::placeholder {
        color: #9ca3af;
    }

.field-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align:left;
}

.field-wrap {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.btn-search {
    background: var(--navy);
    color: var(--white);
    font-weight: 400;
    font-size: 16px;
    border: none;
    border-radius: 16px;
    padding: 6px 60px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
    margin-top: 16px;
}

    .btn-search:hover {
        background: #0d3a67;
        transform: translateY(-1px);
    }
/*section {
    padding: 60px 0 0 0;
    overflow: hidden;
}*/
/* ─── FEATURED CAMPAIGNS ──────────────────────────────────── */
.campaigns-section {
    padding: 60px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-badge {
    display: inline-block;
    background: rgba(255,175,0,0.1);
    color: var(--gold);
    font-weight: 700;
    font-size: 13px;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 16px;
    margin-top: 10px;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-tab {
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--text-dark);
    transition: all 0.2s;
}

    .filter-tab.active, .filter-tab:hover {
        background: var(--navy);
        color: var(--white);
        border-color: var(--navy);
    }

.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.campaign-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
    transition: transform 0.25s, box-shadow 0.25s;
}

    .campaign-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    }

.card-img {
    position: relative;
    height: 210px;
    overflow: hidden;
    background: #e5e7eb;
}

    .card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s;
    }

.campaign-card:hover .card-img img {
    transform: scale(1.05);
}

.verified-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(16,68,120,0.85);
    backdrop-filter: blur(8px);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    gap: 5px;
}

    .verified-badge::before {
        content: '✓';
        color: var(--gold);
    }

.bookmark-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.card-meta-bottom {
    position: absolute;
    bottom: 12px;
    left: 14px;
    display: flex;
    gap: 10px;
}

.meta-pill {
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-body {
    padding: 20px;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.card-org {
    font-weight: 700;
    font-size: 13px;
    color: var(--navy);
}

.tag-urgent {
    background: #fef3c7;
    color: #92400e;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
}

.tag-water {
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
}

.tag-edu {
    background: #dcfce7;
    color: #15803d;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
}

.tag-medical {
    background: #fce7f3;
    color: #9d174d;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
}

.tag-zakat {
    /*background: #f3e8ff;*/
    color: #6EA76A;
    font-size: 12px;
    font-weight: 500;
    padding: 3px 10px;
   /* border-radius: var(--radius-pill);*/
}
.tag-category {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: #eef6ff;
    color: #104478;
}
.card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 14px;
    line-height: 1.35;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 6px;
}

.raised-label {
    color: var(--text-muted);
    font-weight: 600;
}

.raised-amount {
    font-weight: 700;
    color: var(--navy);
    font-size: 20px;
}

.goal-label {
    color: var(--text-muted);
    font-size: 13px;
}

.progress-bar {
    background: var(--border);
    border-radius: 4px;
    height: 8px;
    overflow: hidden;
    margin-bottom: 16px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--navy), #1a6fc4);
    border-radius: 4px;
    transition: width 0.6s ease;
}

.card-actions {
    display: flex;
    gap: 10px;
}

.btn-donate-card {
    flex: 1;
    background: var(--navy);
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    border: none;
    border-radius: var(--radius-pill);
    padding: 12px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    text-align:center;
}

    .btn-donate-card:hover {
        background: #0d3a67;
        transform: translateY(-1px);
    color:#fff;
        }

.btn-share {
    background: var(--light);
    border: 1.5px solid var(--border);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: border-color 0.2s;
    flex-shrink: 0;
}

    .btn-share:hover {
        border-color: var(--navy);
    }

.view-all-wrap {
    text-align: center;
    margin-top: 40px;
}

.btn-view-all {
    background: transparent;
    border: 2px solid var(--navy);
    color: var(--navy);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 36px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration:none;
}

    .btn-view-all:hover {
        background: var(--navy);
        color: var(--white);
    }

/* ─── CATEGORIES ──────────────────────────────────────────── */
.categories-section {
    background: #f0f6ff;
    padding: 70px 24px;
}

.categories-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.cat-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

    .cat-header h2 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 800;
        font-size: clamp(28px, 3vw, 42px);
        color: var(--navy);
        max-width: 460px;
    }

    .cat-header p {
        color: var(--text-muted);
        font-size: 15px;
        max-width: 320px;
        line-height: 1.6;
    }

.cat-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.cat-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.25s;
    cursor: pointer;
}

    .cat-card:hover {
        border-color: var(--navy);
        transform: translateY(-4px);
        box-shadow: var(--shadow-card);
    }

.cat-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--navy), #1a6fc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 12px;
}

.cat-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--navy);
    margin-bottom: 4px;
}

.cat-count {
    font-size: 12px;
    color: var(--text-muted);
}

/* ─── ABOUT ───────────────────────────────────────────────── */
.about-section {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-left h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 3vw, 40px);
    color: var(--navy);
    margin-bottom: 20px;
}

.about-left p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 28px;
}

.btn-learn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 2px;
}

.about-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.trust-item {
    text-align: center;
}

.trust-icon-wrap {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--navy), #1a6fc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 12px;
}

.trust-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--navy);
}

/* ─── APP SECTION ─────────────────────────────────────────── */
.app-section {
    background: var(--navy);
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}

    .app-section::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 400px;
        height: 400px;
        background: rgba(255,175,0,0.08);
        border-radius: 50%;
    }

.app-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    align-items: center;
    position: relative;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,175,0,0.15);
    color: var(--gold);
    font-weight: 700;
    font-size: 13px;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 16px;
}

.app-left h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 3vw, 44px);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

    .app-left h2 .accent {
        color: var(--gold);
    }

.app-left p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 36px;
}

.app-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.app-feat {
    display: flex;
    gap: 12px;
}

.feat-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.feat-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--white);
}

.feat-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-top: 2px;
}

.app-phone {
    width: 240px;
    height: 440px;
    background: rgba(255,255,255,0.08);
    border-radius: 36px;
    border: 6px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    margin: 0 auto;
    box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}

/* ─── PARTNERS ────────────────────────────────────────────── */
.partners-section {
    padding: 60px 24px;
    background: var(--light);
}

.partners-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.partners-label {
    font-weight: 700;
    font-size: 15px;
    color: var(--navy);
    white-space: nowrap;
    max-width: 160px;
    line-height: 1.4;
}

.partners-logos {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.partner-logo {
    font-weight: 800;
    font-size: 16px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s;
}

    .partner-logo:hover {
        color: var(--navy);
    }

/* ─── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-section {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testi-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    transition: box-shadow 0.25s;
}

    .testi-card:hover {
        box-shadow: var(--shadow-card);
    }

.stars {
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 16px;
}

.quote-icon {
    position: absolute;
    top: 24px;
    right: 28px;
    font-size: 44px;
    color: rgba(16,68,120,0.07);
    font-family: Georgia, serif;
    line-height: 1;
}

.testi-text {
    font-size: 15px;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 24px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), #1a6fc4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--white);
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--text-dark);
}

.author-role {
    font-size: 13px;
    color: var(--text-muted);
}

/* ─── NEWS ────────────────────────────────────────────────── */
.news-section {
    padding: 80px 24px;
    background: #f8fafc;
}

.news-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

    .news-header h2 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 800;
        font-size: clamp(26px, 3vw, 38px);
        color: var(--navy);
    }

.link-arrow {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--navy);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 2px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.25s, box-shadow 0.25s;
}

    .news-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-card);
    }

.news-img {
    height: 200px;
    overflow: hidden;
    position: relative;
    background: #e5e7eb;
}

    .news-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s;
    }

.news-card:hover .news-img img {
    transform: scale(1.05);
}

.news-img-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--navy);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
}

.news-body {
    padding: 20px;
}

.news-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

    .news-meta span {
        display: flex;
        align-items: center;
        gap: 4px;
    }

.news-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.35;
}

.news-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    font-size: 13px;
    color: var(--navy);
    text-decoration: none;
}

/* ─── FOOTER ──────────────────────────────────────────────── */
footer {
    background: var(--navy);
    color: rgba(255,255,255,0.75);
    padding: 64px 24px 32px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo-text .brand span:first-child {
    color: var(--gold);
}

.footer-brand .logo-text .brand span:last-child {
    color: var(--white);
}

.footer-brand .logo-text .tagline {
    color: rgba(255,255,255,0.5);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 16px;
    color: rgba(255,255,255,0.6);
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.2s;
}

    .social-link:hover {
        background: var(--gold);
    }

.footer-col h4 {
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

    .footer-col a:hover {
        color: var(--gold);
    }

.newsletter-input-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-input {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-input);
    padding: 13px 16px;
    color: var(--white);
    font-size: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    outline: none;
    transition: border-color 0.2s;
}

    .newsletter-input::placeholder {
        color: rgba(255,255,255,0.4);
    }

    .newsletter-input:focus {
        border-color: var(--gold);
    }

.btn-subscribe {
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 15px;
    border: none;
    border-radius: var(--radius-input);
    padding: 14px;
    cursor: pointer;
    transition: opacity 0.2s;
}

    .btn-subscribe:hover {
        opacity: 0.9;
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

    .footer-bottom p {
        font-size: 13px;
        color: rgba(255,255,255,0.5);
    }

.footer-links {
    display: flex;
    gap: 24px;
}

    .footer-links a {
        color: rgba(255,255,255,0.5);
        text-decoration: none;
        font-size: 13px;
        transition: color 0.2s;
    }

        .footer-links a:hover {
            color: var(--gold);
        }

.footer-trust {
    display: flex;
    gap: 20px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

    .trust-badge .icon {
        color: var(--gold);
        font-size: 14px;
    }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@@media (max-width: 1024px) {
    .campaigns-grid, .testi-grid, .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cat-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-phone {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .about-section {
        grid-template-columns: 1fr;
    }
}

@@media (max-width: 768px) {
    .campaigns-grid, .testi-grid, .news-grid, .cat-grid {
        grid-template-columns: 1fr;
    }

    .app-inner {
        grid-template-columns: 1fr;
    }

    .app-features {
        grid-template-columns: 1fr;
    }

    .search-bar {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    nav {
        display: none;
    }

    .partners-inner {
        flex-direction: column;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

.site-topbar {
    font-size: 0.875rem;
}

    .site-topbar .form-select {
        min-width: 110px;
        height: 32px;
        padding-top: 0.15rem;
        padding-bottom: 0.15rem;
    }

    .site-topbar .topbar-left {
        white-space: nowrap;
    }

    .site-topbar .topbar-right {
        flex-wrap: wrap;
    }

.topbar-select {
    border: none;
    background: transparent;
    font-size: 14px;
    padding: 2px 18px 2px 6px;
    appearance: none;
    cursor: pointer;
}

    .topbar-select:focus {
        outline: none;
        box-shadow: none;
    }

.topbar-right > * {
    margin-left: 10px;
}
.search {
    border-radius: 100px;
    font-size: 16px;
    background-color: #FFAF00;
    border: 0;
    height: 44px;
    width: 100%;
}
.location input {
    font-size: 14px;
    height: 45px;
}
.cause-detail-img {
    width: 100%;
    max-height: 550px;
    object-fit: cover;
}
.about .video-box {
    background: url(../img/about-2.png) center center no-repeat;
    background-size: contain;
    min-height: 300px;
}
.about .icon-box:hover .icon {
    background: #104478;
    border-color: #104478;
}

.about .icon-box .icon {
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border: 2px solid #104478;
    border-radius: 50px;
    transition: 0.5s;
}
.about .icon-box .description {
    margin-left: 85px;
    line-height: 24px;
    font-size: 16px;
}