
/* Professional Donation Page CSS */
:root {
    --primary-color: #001f3f;   /* Navy */
    --primary-dark: #00162e;    /* Dark navy */
    --secondary-color: #0d4d4d; /* Green */
    --accent-color: #1a5f5f;    /* Green light */
    --text-dark: #00162e;
    --text-light: #5a5a5a;
    --bg-light: #faf8f5;        /* Cream */
    --bg-page: #f0ede8;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body.donation-page {
    background-color: var(--bg-page);
    font-family: var(--font-body);
}

/* Hero Section with Glassmorphism */
.donation-hero {
    background: #0b1f3a;
    color: white;
    padding: 7rem 0 7rem;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(253, 248, 243, 0.12);
}

.donation-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 55%);
}

.donation-hero .pro-hero__title {
    font-family: var(--font-heading);
    font-weight: 900;
    letter-spacing: -0.5px;
    font-size: clamp(2.2rem, 3.8vw, 3.25rem);
}

.donation-hero .pro-hero__subtitle {
    font-size: 1.1rem;
    opacity: 0.92;
    max-width: 68ch;
    line-height: 1.65;
}

/* Trust Indicators - Floating Cards */
.trust-badges {
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.trust-badge {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.28);
    padding: 0.75rem 1.1rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: background 0.2s ease;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.08);
}

.trust-badge i {
    color: #fdf8f3;
}

/* Donation hero CTAs */
.btn-donate-primary {
    background: #0ea5e9;
    color: #ffffff !important;
    border: none;
    box-shadow: 0 10px 26px rgba(14,165,233,0.22);
}

.btn-donate-primary:hover {
    filter: brightness(0.98);
}

.btn-donate-secondary {
    background: transparent;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.55);
}

.btn-donate-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* Donation Wrapper - Overlapping the Hero */
.donation-wrapper {
    margin-top: -2.6rem;
    position: relative;
    z-index: 10;
    padding-bottom: 6rem;
}

/* Compliance / Trust strip (Gov-style) */
.donation-compliance {
    margin-top: -3.4rem;
    position: relative;
    z-index: 9;
    padding-bottom: 1.2rem;
}

.compliance-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 18px;
    padding: 1.35rem 1.35rem;
    box-shadow: 0 14px 40px rgba(2, 6, 23, 0.08);
}

.compliance-title {
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: -0.2px;
}

.compliance-sub {
    font-size: 0.95rem;
    line-height: 1.55;
}

.compliance-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.compliance-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 31, 63, 0.12);
    background: rgba(0, 31, 63, 0.02);
}

.compliance-badge .k {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #64748b;
    font-weight: 900;
}

.compliance-badge .v {
    font-weight: 900;
    color: var(--primary-color);
    font-size: 0.92rem;
}

.btn-receipt-preview {
    border-radius: 999px;
    padding: 0.75rem 1.1rem;
    font-weight: 900;
    border: 2px solid rgba(0, 31, 63, 0.18);
    background: rgba(0, 31, 63, 0.06);
    color: var(--primary-color);
}

.btn-receipt-preview:hover {
    background: rgba(0, 31, 63, 0.10);
    transform: translateY(-1px);
}

.compliance-footer {
    border-top: 1px dashed rgba(0, 31, 63, 0.16);
    padding-top: 0.85rem;
    display: grid;
    gap: 0.5rem;
}

.compliance-footer-item {
    color: #475569;
    font-size: 0.92rem;
}

/* Sidebar FAQ card */
.faq-card {
    padding: 1.5rem;
}

.faq-card .accordion-button {
    font-weight: 800;
    color: var(--primary-color);
}

.faq-card .accordion-button:not(.collapsed) {
    background: rgba(0, 31, 63, 0.04);
}

.faq-card .accordion-item {
    border: 1px solid rgba(0, 31, 63, 0.10);
}

/* Hero secure payment card */
.donation-hero-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 31, 63, 0.14);
    border-radius: 18px;
    padding: 1.35rem 1.35rem;
    box-shadow: 0 18px 60px rgba(2, 6, 23, 0.18);
}

.donation-hero-card-title {
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--primary-color);
}

.donation-hero-card-sub {
    color: #64748b;
    font-size: 0.92rem;
}

.donation-hero-qr {
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(0, 31, 63, 0.10);
    padding: 0.75rem;
    display: flex;
    justify-content: center;
}

.donation-hero-qr img {
    width: 100%;
    max-width: 260px;
    border-radius: 12px;
    display: block;
}

.donation-hero-upi {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px dashed rgba(0, 31, 63, 0.20);
    border-radius: 14px;
    padding: 0.75rem 0.85rem;
    background: rgba(0, 31, 63, 0.02);
}

.donation-hero-upi-value {
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: 0.2px;
    flex: 1;
    word-break: break-all;
}

/* Card Styling - Premium Feel */
.donation-card, .bank-details-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1), 0 10px 20px -5px rgba(0, 0, 0, 0.04);
    padding: 3rem;
    border: 1px solid rgba(0, 31, 63, 0.10);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.donation-card::before, .bank-details-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    pointer-events: none;
    border: 1px solid rgba(13, 77, 77, 0.08);
}

.donation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.form-section-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.2px;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-section-title i {
    color: var(--secondary-color);
}

/* Payment proof box */
.proof-box {
    background: rgba(0, 31, 63, 0.03) !important;
    border: 1px solid rgba(0, 31, 63, 0.10);
}

.proof-box h6 {
    color: var(--primary-color);
}

.proof-box .form-select,
.proof-box .form-control {
    background: #fff;
}

/* Amount Grid - Premium Toggles */
.amount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.amount-radio {
    display: none;
}

.amount-label {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    background: white;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.amount-label:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.amount-radio:checked + .amount-label {
    border-color: var(--secondary-color);
    background: rgba(13, 77, 77, 0.06);
    color: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(13, 77, 77, 0.18);
}

.amount-radio:checked + .amount-label::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 0.7rem;
    color: var(--secondary-color);
}

/* Custom Amount Input */
.custom-amount-group {
    position: relative;
}

.currency-symbol {
    position: absolute;
    left: 20px;
    top: 38px;
    font-weight: 600;
    color: var(--text-light);
    font-size: 1.25rem;
}

.custom-amount-input {
    padding-left: 45px !important;
    height: 55px;
    border-radius: 12px;
    border: 2px solid #E2E8F0;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
    background: #F8FAFC;
    transition: all 0.3s ease;
}

.custom-amount-input:focus {
    border-color: var(--secondary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(13, 77, 77, 0.14);
}

/* Form Inputs */
.form-floating > .form-control {
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    background: #F8FAFC;
}

.form-floating > .form-control:focus {
    background: white;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(13, 77, 77, 0.12);
}

/* Payment panels (right side) */
.pay-panel {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.pay-card-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.copy-btn {
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
    border-radius: 12px;
    padding: 8px 12px;
    font-weight: 700;
    font-size: 0.85rem;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.16);
}

.form-floating > label {
    color: var(--text-light);
}

/* Info Sidebar Styles */
.bank-details-card {
    background: #0F172A;
    color: white;
    border: none;
}

.bank-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bank-label {
    color: #94A3B8;
    font-size: 0.9rem;
}

.bank-value {
    font-family: 'Roboto Mono', monospace;
    font-weight: 500;
    color: #F8FAFC;
}

/* Impact Showcase */
.impact-showcase {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 12px;
    background: #F8FAFC;
    transition: transform 0.3s ease;
}

.impact-item:hover {
    background: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transform: translateX(5px);
}

.impact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(14, 165, 233, 0.12);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* Responsive */
@media (max-width: 768px) {
    .donation-hero h1 {
        font-size: 2.5rem;
    }
    .amount-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .donation-wrapper {
        margin-top: -3rem;
    }
}

/* Donation Form Container */
.donation-wrapper {
    margin-top: -5rem;
    position: relative;
    z-index: 10;
    padding-bottom: 5rem;
}

.donation-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 3rem;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.form-section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-section-title i {
    color: var(--primary-color);
}

/* Amount Grid */
.amount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.amount-radio {
    display: none;
}

.amount-label {
    display: block;
    text-align: center;
    padding: 1rem;
    background: #F1F5F9;
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.amount-label:hover {
    background: #E2E8F0;
}

.amount-radio:checked + .amount-label {
    background: #FFF1F2;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.custom-amount-group {
    position: relative;
}

.currency-symbol {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 600;
    color: var(--text-light);
}

.custom-amount-input {
    padding-left: 2.5rem !important;
}

/* Impact Items */
.impact-showcase {
    background: #FFF1F2;
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.impact-item:last-child {
    margin-bottom: 0;
}

.impact-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

/* Bank Details Table */
.bank-details-card {
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    color: white;
    border-radius: 24px;
    padding: 2.5rem;
    height: 100%;
}

.bank-detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bank-detail-row:last-child {
    border-bottom: none;
}

.bank-label {
    color: #94A3B8;
    font-size: 0.9rem;
}

.bank-value {
    font-weight: 600;
    font-family: monospace;
    font-size: 1.1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .donation-hero {
        padding: 6rem 0 4rem;
        clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    }

    .donation-hero h1 {
        font-size: 2.5rem;
    }

    .amount-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .donation-card {
        padding: 1.5rem;
    }
}

/* ===== Payment Sidebar (QR + Bank) - Professional UI ===== */
.donation-sidebar {
    position: sticky;
    top: 92px;
    align-self: flex-start;
}

@media (max-width: 991.98px) {
    .donation-sidebar {
        position: static;
        top: auto;
    }
}

.payment-card {
    overflow: visible;
}

.payment-title {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.2px;
}

.payment-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 2px;
}

.payment-merged-card {
    padding: 2.25rem;
}

.payment-section {
    margin-top: 14px;
}

.payment-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.pay-section-title {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.payment-divider {
    margin: 18px 0;
    opacity: 0.08;
}

.qr-wrap {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 18px;
    padding: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 14px 0 12px;
}

.upi-qr-img {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(2, 132, 199, 0.10);
}

.upi-id-row {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 10px;
    align-items: center;
    background: #F8FAFC;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 14px;
    padding: 12px 12px;
}

.upi-id-label {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.upi-id-value {
    font-weight: 800;
    color: var(--text-dark);
    overflow-wrap: anywhere;
}

.btn-copy {
    border-radius: 12px;
    font-weight: 800;
}

.btn-copy:disabled {
    opacity: 0.6;
}

.bank-empty {
    background: #F8FAFC;
    border: 1px dashed rgba(15, 23, 42, 0.18);
    border-radius: 16px;
    padding: 14px;
}

.bank-kv {
    margin-top: 10px;
}

.bank-kv-row {
    display: grid;
    grid-template-columns: 110px 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 12px 12px;
    background: #F8FAFC;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 14px;
    margin-bottom: 10px;
}

.bank-kv-row-last {
    margin-bottom: 0;
}

.bank-kv-label {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.bank-kv-value {
    color: var(--text-dark);
    font-weight: 800;
    overflow-wrap: anywhere;
}

@media (max-width: 768px) {
    .payment-merged-card {
        padding: 1.5rem;
    }

    .upi-qr-img {
        max-width: 280px;
    }

    .upi-id-row {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: left;
    }
    .bank-kv-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .bank-kv-row .btn {
        width: 100%;
    }
}

/* ==============================
   2026 MNC / Corporate Overhaul
   (Overrides for cleaner, formal UI)
   ============================== */

body.donation-page{
    background: #f6f8fc;
    color: #0f172a;
}

/* Reduce motion for a formal feel (and accessibility) */
body.donation-page .animate__animated{
    animation: none !important;
}

/* Hero: calmer, less "glassy" */
.donation-hero{
    background: radial-gradient(900px 420px at 16% 18%, rgba(14,165,233,0.18) 0%, rgba(14,165,233,0) 55%),
                radial-gradient(860px 420px at 78% 10%, rgba(37,99,235,0.18) 0%, rgba(37,99,235,0) 60%),
                linear-gradient(180deg, #0b1220 0%, #0f172a 100%);
    padding: 5.5rem 0 3.25rem;
}

.donation-hero .pro-hero__kicker{
    opacity: 0.95;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 12px;
}

.donation-hero .pro-hero__title{
    letter-spacing: -0.6px;
}

.donation-hero .pro-hero__subtitle{
    font-size: 1.05rem;
    opacity: 0.92;
}

/* Trust badges: simpler */
.trust-badge{
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.16);
    font-weight: 700;
}

/* CTA buttons: formal, consistent */
.btn-donate-primary{
    background: #2563eb;
    box-shadow: 0 12px 24px rgba(37,99,235,0.22);
}

.btn-donate-primary:hover{
    filter: none;
    background: #1d4ed8;
}

.btn-donate-secondary{
    border-width: 1px;
    border-color: rgba(255,255,255,0.28);
    background: rgba(255,255,255,0.04);
}

.btn-donate-secondary:hover{
    background: rgba(255,255,255,0.10);
}

/* Remove overlap look: make sections cleanly stacked */
.donation-compliance{
    margin-top: 0;
    padding: 1.5rem 0 0.25rem;
}

.donation-wrapper{
    margin-top: 0;
    padding-top: 2.25rem;
    padding-bottom: 4.5rem;
}

/* Section header */
.donation-section-head{
    margin: 0 0 18px;
}

.donation-section-kicker{
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #64748b;
}

.donation-section-title{
    font-family: var(--font-heading);
    font-weight: 900;
    letter-spacing: -0.4px;
    margin: 6px 0 6px;
    color: #0f172a;
}

.donation-section-sub{
    color: #475569;
    max-width: 80ch;
    line-height: 1.6;
}

/* Compact info tiles */
.info-tile{
    background: #ffffff;
    border: 1px solid rgba(2,6,23,0.10);
    border-radius: 16px;
    padding: 16px 16px;
    box-shadow: 0 10px 22px rgba(2,6,23,0.05);
    height: 100%;
}

.info-tile-icon{
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(2,6,23,0.04);
    margin-bottom: 10px;
}

.info-tile-icon i{
    font-size: 18px;
}

.info-tile-title{
    font-weight: 900;
    letter-spacing: -0.2px;
    margin-bottom: 6px;
    color: #0f172a;
}

.info-tile-sub{
    font-size: 0.95rem;
    line-height: 1.55;
}

/* Compliance card: more official */
.compliance-card{
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(2,6,23,0.06);
}

.compliance-title{
    font-size: 1.05rem;
}

.btn-receipt-preview{
    background: #ffffff;
    border-color: rgba(2,6,23,0.14);
}

.btn-receipt-preview:hover{
    transform: none;
}

/* Donation card: more structured, less "floating" */
.donation-card, .bank-details-card{
    border-radius: 16px;
    padding: 2.1rem;
    box-shadow: 0 10px 26px rgba(2,6,23,0.06);
}

.donation-card:hover{
    transform: none;
    box-shadow: 0 10px 26px rgba(2,6,23,0.06);
}

.form-section-title{
    font-weight: 900;
    letter-spacing: -0.1px;
}

/* Why donate cards: tone down hover */
.hover-lift{
    transition: box-shadow .18s ease, border-color .18s ease;
}

.hover-lift:hover{
    transform: none !important;
    box-shadow: 0 10px 26px rgba(2,6,23,0.06) !important;
}

/* Amount selector: no jumpy hover */
.amount-label:hover{
    transform: none;
}

.amount-label{
    border-radius: 14px;
    font-weight: 800;
}

.amount-radio:checked + .amount-label{
    box-shadow: 0 8px 18px rgba(13,77,77,0.16);
}

/* Inputs: consistent focus ring */
.form-floating > .form-control,
.proof-box .form-select,
.proof-box .form-control{
    border-radius: 12px;
}

.form-floating > .form-control:focus,
.proof-box .form-select:focus,
.proof-box .form-control:focus,
.custom-amount-input:focus{
    box-shadow: 0 0 0 4px rgba(37,99,235,0.14);
    border-color: rgba(37,99,235,0.55);
}

/* Proof box: more formal */
.proof-box{
    background: #f8fafc !important;
    border-color: rgba(2,6,23,0.10);
}

/* Sidebar: keep sticky but make spacing consistent if used */
.donation-sidebar{
    gap: 18px !important;
}

/* Impact section: keep MNC / clean tone (avoid accidental theme clashes) */
.impact-showcase{
    background: #ffffff;
    border: 1px solid rgba(2,6,23,0.10);
    border-radius: 16px;
    box-shadow: 0 10px 26px rgba(2,6,23,0.06);
}

.impact-item{
    background: #f8fafc;
    border: 1px solid rgba(2,6,23,0.06);
}

.impact-item:hover{
    transform: none;
}

.impact-icon{
    background: rgba(2,6,23,0.04);
    color: #2563eb;
}
