/* ===================================
   DONATION PAGE STYLES
   =================================== */

/* Hero Section */
/* Hero Section */
/* Donation Section (Now Hero) */
.donation-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF9F5 100%);
    padding-top: 140px;
    /* Clear fixed navbar */
    padding-bottom: 80px;
    min-height: 100vh;
}

/* Header Grouping */
.donate-header-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.donate-mascot-hero {
    width: 200px;
    /* Reduced from 250px as per user feedback */
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
    animation: float 5s ease-in-out infinite;
    flex-shrink: 0;
}

.donate-header-text {
    text-align: left;
    max-width: 500px;
}

.donate-main-title {
    font-family: 'Luckiest Guy', cursive;
    font-size: 3.2rem;
    line-height: 1.1;
    color: #F58600;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.05);
}

.donate-subtext {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    font-weight: 500;
}

@media (max-width: 768px) {
    .donate-header-group {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .donate-header-text {
        text-align: center;
    }

    .donate-main-title {
        font-size: 2.5rem;
    }

    .donate-mascot-hero {
        width: 150px;
    }
}

/* Tab Navigation */
/* --- Folder Style Tabs --- */
.donation-tabs {
    display: flex;
    gap: 10px;
    /* Slight gap between tabs */
    margin-bottom: 0;
    /* No margin bottom to connect with content */
    padding-left: 20px;
    /* Tabs indented slightly */
    position: relative;
    z-index: 10;
    /* Above the content box border */
    top: 2px;
    /* Slight overlap to hide bottom border of active tab */
    justify-content: flex-start;
    /* Align left for folder look */
}

.tab-btn {
    background: #f5f5f5;
    /* Inactive tab color - lighter */
    border: 2px solid #FFB74D;
    /* Soft Orange Border */
    border-bottom: none;
    /* Connect to content */
    padding: 12px 25px;
    font-family: 'Baloo 2', cursive;
    font-size: 1.2rem;
    font-weight: 700;
    color: #888;
    cursor: pointer;
    border-radius: 15px 15px 0 0;
    /* Soft rounded top corners */
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    top: 2px;
    /* Push down to meet border */
    box-shadow: none;
}

.tab-btn:hover {
    background: #d4d4d4;
    color: #333;
    transform: none;
    box-shadow: none;
}

.tab-btn.active {
    background: #fff;
    /* Active tab matches content background */
    color: #E65100;
    /* Darker Orange Text */
    border-color: #FFB74D;
    z-index: 11;
    padding-bottom: 15px;
    /* Extend slightly to cover border */
    margin-bottom: -2px;
    /* Overlap border */
    box-shadow: none;
    transform: none;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    /* Cover the border line */
    left: 0;
    width: 100%;
    height: 5px;
    background: #fff;
    z-index: 12;
}

/* Tab Content */
/* --- Tab Content Wrapper --- */
.tab-content-wrapper {
    background: #fff;
    border: 2px solid #FFB74D;
    /* Soft Orange Border */
    border-radius: 20px;
    /* All edges rounded soft */
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Subtle shadow */
    position: relative;
    z-index: 5;
    min-height: 400px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease-out;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Payment Grid */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

/* Payment Cards */
.payment-card {
    background: white;
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.payment-card h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-card h3 i {
    color: var(--primary);
}

/* QR Code Card */
.qr-card {
    text-align: center;
}

.qr-code-wrapper {
    background: white;
    padding: 20px;
    border-radius: 12px;
    display: inline-block;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.qr-code {
    width: 250px;
    height: 250px;
    display: block;
}

.qr-instruction {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.qr-instruction span {
    font-size: 0.9rem;
    color: #999;
}

/* Payment Options */
.payment-option {
    margin-bottom: 25px;
}

.payment-option label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.copy-field {
    display: flex;
    gap: 10px;
}

.copy-field input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    background: #F9F9F9;
}

.copy-btn {
    padding: 12px 20px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
}

.copy-btn:hover {
    background: #e68a00;
    transform: scale(1.05);
}

.copy-btn.copied {
    background: #4CAF50;
}

.copy-btn.copied i::before {
    content: '\f00c';
}

/* Payment Method Buttons */
.payment-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.payment-method-btn {
    padding: 15px 25px;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    background: white;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
}

.payment-method-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.payment-method-btn.gpay {
    border-color: #4285F4;
    color: #4285F4;
}

.payment-method-btn.gpay:hover {
    background: #4285F4;
    color: white;
}

.payment-method-btn.phonepe {
    border-color: #5F259F;
    color: #5F259F;
}

.payment-method-btn.phonepe:hover {
    background: #5F259F;
    color: white;
}

.payment-method-btn.paytm {
    border-color: #00BAF2;
    color: #00BAF2;
}

.payment-method-btn.paytm:hover {
    background: #00BAF2;
    color: white;
}

/* Bank Details */
/* Bank Details */
/* Bank Details Grid Placement (if needed) */

/* Compact Bank Info */
.bank-info-compact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bank-row-compact {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 4px;
}

.bank-row-compact:last-child {
    border-bottom: none;
}

.bank-row-compact .label {
    font-weight: 600;
    color: #555;
}

.bank-row-compact .value {
    color: #333;
    font-family: 'Courier New', monospace;
    font-weight: 600;
    text-align: right;
}

/* Overseas Layout */
.overseas-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
}

@media (max-width: 900px) {
    .overseas-grid {
        grid-template-columns: 1fr;
    }
}

.wire-transfer-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.paypal-card-large {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    border: 1px solid #e1eaff;
}

.paypal-card-large h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.paypal-card-large .paypal-btn {
    font-size: 1.4rem;
    padding: 20px 50px;
}

.wire-card-compact {
    padding: 20px;
}

.wire-card-compact h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* PayPal Card */
.paypal-card {
    text-align: center;
}

.paypal-wrapper {
    margin-top: 20px;
}

.paypal-btn {
    background: #0070BA;
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.paypal-btn:hover {
    background: #005A94;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 112, 186, 0.4);
}

.payment-note {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.payment-note span {
    font-size: 0.85rem;
    color: #999;
}

/* Info Box */
/* Info Box */
.info-box {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    /* Soft Orange Background */
    padding: 15px 20px;
    /* Reduced padding */
    border-radius: 12px;
    /* Slightly less rounded for compact feel */
    border-left: 4px solid #FF9800;
    /* Reduced border width */
    display: flex;
    gap: 15px;
    /* Reduced gap */
    margin: 20px 0 20px 0;
    /* Aligned left */
    align-items: flex-start;
    max-width: 100%;
    /* Full width */
    font-size: 0.95rem;
    /* Slightly smaller text */
    text-align: left;
    /* Force left text alignment */
}

.info-box i {
    font-size: 1.5rem;
    /* Smaller icon */
    color: #F57C00;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-box strong {
    display: block;
    margin-bottom: 5px;
    /* Reduced margin */
    font-size: 1rem;
    /* Standard size */
}

.info-box ul {
    margin: 5px 0 10px;
    /* Compact margins */
    padding-left: 20px;
    text-align: left;
    /* Ensure left alignment */
}

.info-box li {
    margin: 3px 0;
    /* Tighter list */
}

.info-box a {
    color: #E65100;
    /* Orange Link */
    text-decoration: underline;
    font-weight: 600;
}

/* Trust Elements */
.trust-elements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.trust-item {
    background: linear-gradient(135deg, #FFF9F5 0%, #FFE4CC 100%);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-3px);
}

.trust-item i {
    font-size: 1.8rem;
    color: var(--primary);
    flex-shrink: 0;
}

.trust-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.trust-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Impact Breakdown Section */
.impact-breakdown-section {
    background: white;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-top: -30px;
    margin-bottom: 50px;
}

/* Breakdown Grid */
.breakdown-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.breakdown-card {
    background: white;
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.breakdown-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--card-color) 0%, var(--card-color) 100%);
}

.breakdown-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.breakdown-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--card-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.breakdown-percentage {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Baloo 2', cursive;
    color: var(--card-color);
    line-height: 1;
    margin-bottom: 15px;
}

.breakdown-category {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.breakdown-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Impact Tiers */
.impact-tiers {
    margin-top: 60px;
}

.tiers-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.tier-card {
    background: linear-gradient(135deg, #FFF9F5 0%, #FFE8F0 100%);
    padding: 30px 25px;
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tier-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 153, 51, 0.2);
}

.tier-card.featured {
    background: linear-gradient(135deg, var(--primary) 0%, #FF6B95 100%);
    color: white;
    position: relative;
}

.tier-badge {
    background: rgba(255, 255, 255, 0.3);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.tier-amount {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: 'Baloo 2', cursive;
    margin-bottom: 15px;
    color: var(--primary);
}

.tier-card.featured .tier-amount {
    color: white;
}

.tier-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

.tier-card.featured p {
    color: white;
}

/* Transparency Section */
.transparency-section {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
}

.transparency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.transparency-card {
    background: white;
    padding: 35px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.transparency-card:hover {
    transform: translateY(-5px);
}

.transparency-card i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.transparency-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.transparency-card p {
    color: #666;
    line-height: 1.6;
}

.transparency-card a {
    color: #4CAF50;
    text-decoration: underline;
}

/* =========================================
   MOBILE DONATION WIDGET FIXES
   ========================================= */

@media (max-width: 768px) {

    /* Donation Header */
    .donate-header-group {
        flex-direction: column;
        text-align: center;
    }

    .donate-mascot-hero {
        width: 140px;
        margin: 0 auto;
    }

    .donate-main-title {
        font-size: 2rem;
    }

    /* Tabs - Folder Style Fix */
    .donation-tabs {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 0;
        margin-bottom: 0;
        -webkit-overflow-scrolling: touch;
        /* Smooth scroll on iOS */
        justify-content: flex-start;
        /* Ensure start alignment for scrolling */
    }

    .tab-btn {
        font-size: 1rem;
        padding: 10px 15px;
        flex-shrink: 0;
        /* Prevent squishing */
    }

    .tab-content-wrapper {
        padding: 20px;
        border-radius: 10px;
        /* Slightly less rounded on small screens to save space */
    }

    /* Payment Buttons */
    .payment-buttons {
        width: 100%;
    }

    .payment-method-btn {
        font-size: 0.95rem;
        padding: 12px;
    }

    /* Copy Field */
    .copy-field {
        flex-direction: column;
        gap: 10px;
    }

    .copy-btn {
        width: 100%;
        justify-content: center;
    }

    .copy-field input {
        width: 100%;
    }

    /* Overseas Grid */
    .overseas-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* QR Code */
    .qr-code {
        width: 100%;
        max-width: 200px;
        height: auto;
    }

    /* Trust Elements */
    .trust-elements {
        grid-template-columns: 1fr;
    }

    /* Tier Cards */
    .tiers-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.faq-donate-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF9F5 100%);
}

.faq-search {
    max-width: 600px;
    margin: 0 auto 50px;
    position: relative;
}

.faq-search i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1.2rem;
}

.faq-search input {
    width: 100%;
    padding: 18px 20px 18px 55px;
    border: 2px solid #E0E0E0;
    border-radius: 50px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.faq-search input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.2);
}

.faq-categories {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 50px;
}

.category-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--primary);
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary);
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.faq-item.hidden {
    display: none;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-dark);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #FFF9F5;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* FAQ Contact Card */
.faq-contact-card {
    background: linear-gradient(135deg, #FFE8F0 0%, #FFCCE0 100%);
    padding: 40px;
    border-radius: var(--radius);
    text-align: center;
    margin-top: 50px;
}

.faq-contact-card h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.faq-contact-card p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
}

.contact-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.contact-btn {
    padding: 15px 30px;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 153, 51, 0.4);
}

.contact-btn.whatsapp {
    background: #25D366;
}

.contact-btn.whatsapp:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.response-time {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

/* Trust Badges Section */
.trust-badges-section {
    background: white;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.badge-item {
    text-align: center;
    padding: 25px;
    background: #F9F9F9;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.badge-item:hover {
    transform: translateY(-5px);
}

.badge-item img {
    max-height: 60px;
    margin-bottom: 15px;
}

.badge-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.text-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.text-badge i {
    font-size: 2.5rem;
    color: var(--primary);
}

.text-badge strong {
    font-size: 1rem;
    color: var(--text-dark);
}

.text-badge span {
    font-size: 0.85rem;
    color: #999;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, #FF9966 0%, #FF8E72 25%, #FF7EB3 60%, #FF6B95 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-family: 'Luckiest Guy', cursive;
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
}

.cta-message {
    font-size: 1.3rem;
    margin-bottom: 15px;
    opacity: 0.95;
}

.cta-vision {
    font-size: 1.5rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.final-cta-section .btn {
    background: white;
    color: var(--primary);
    font-size: 1.3rem;
    padding: 18px 45px;
}

.final-cta-section .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
}

/* Footer Adjustments */
.footer-tagline {
    margin-top: 15px;
    font-size: 1rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .donate-hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .donation-tabs {
        flex-direction: column;
        gap: 15px;
    }

    .tab-btn {
        width: 100%;
        justify-content: center;
    }

    .payment-grid {
        grid-template-columns: 1fr;
    }

    .qr-code {
        width: 200px;
        height: 200px;
    }

    .breakdown-grid {
        grid-template-columns: 1fr;
    }

    .breakdown-percentage {
        font-size: 2.5rem;
    }

    .tiers-grid {
        grid-template-columns: 1fr;
    }

    .contact-options {
        flex-direction: column;
    }

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

    .cta-message {
        font-size: 1.1rem;
    }

    .cta-vision {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .donate-hero {
        padding: 80px 0 60px;
    }

    .payment-card {
        padding: 25px;
    }

    .bank-info-grid {
        grid-template-columns: 1fr;
    }

    .breakdown-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .tier-amount {
        font-size: 1.8rem;
    }
}
/* ===================================
   DONATION WIZARD
   =================================== */

.donation-wizard {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    padding: 40px;
    scroll-margin-top: 120px;
}

/* Step indicator */
.wizard-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 35px;
}

.wizard-step-dot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #bbb;
}

.wizard-step-dot span {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Baloo 2', cursive;
    transition: all 0.3s ease;
}

.wizard-step-dot small {
    font-size: 0.75rem;
    font-weight: 600;
}

.wizard-step-dot.active span {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(255, 153, 51, 0.4);
}

.wizard-step-dot.active {
    color: var(--primary);
}

.wizard-step-dot.done span {
    background: var(--secondary);
    color: #7a5c00;
}

.wizard-step-line {
    flex: 0 1 60px;
    height: 3px;
    border-radius: 2px;
    background: #f1f1f1;
    margin-bottom: 18px;
}

/* Panels */
.wizard-panel {
    display: none;
}

.wizard-panel.active {
    display: block;
    animation: wizardFadeIn 0.35s ease;
}

@keyframes wizardFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wizard-title {
    font-family: 'Baloo 2', cursive;
    color: var(--accent);
    margin-bottom: 25px;
    text-align: center;
}

/* Form */
.wizard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 24px;
}

.wizard-field-full {
    grid-column: 1 / -1;
}

.wizard-field label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: #444;
}

.wizard-field input,
.wizard-field select,
.wizard-field textarea,
.wizard-resume-box input,
#proof-message textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.2s ease;
    background: #fff;
}

.wizard-field input:focus,
.wizard-field select:focus,
.wizard-field textarea:focus,
#proof-message textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.wizard-amount-row {
    display: flex;
    gap: 10px;
}

.wizard-amount-row select {
    width: 110px;
    flex-shrink: 0;
}

.wizard-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: #555;
    cursor: pointer;
}

.wizard-check input {
    width: auto;
    margin-top: 3px;
}

/* Errors */
.wizard-error {
    background: #fff3f0;
    border: 1px solid #ffc9bc;
    color: #c0392b;
    border-radius: 12px;
    padding: 12px 16px;
    margin-top: 18px;
    font-size: 0.9rem;
}

/* Nav row */
.wizard-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    gap: 15px;
}

.wizard-back-btn {
    background: none;
    border: none;
    color: #888;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    padding: 10px;
}

.wizard-back-btn:hover {
    color: var(--accent);
}

.wizard-resume-link {
    text-align: center;
    margin-top: 20px;
    font-size: 0.85rem;
    color: #888;
}

.wizard-resume-link a {
    color: var(--accent);
    font-weight: 600;
}

.wizard-resume-box {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

/* Reference banner (step 2) */
.wizard-ref-banner {
    background: linear-gradient(135deg, #FFF8E1, #FFF3E0);
    border: 2px dashed var(--primary);
    border-radius: 16px;
    padding: 20px 24px;
    text-align: center;
    margin-bottom: 25px;
}

.wizard-ref-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #a97b2f;
    font-weight: 700;
}

.wizard-ref-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 6px 0;
}

.wizard-ref-row strong {
    font-family: 'Baloo 2', cursive;
    font-size: 1.8rem;
    color: var(--accent);
    letter-spacing: 2px;
}

.wizard-ref-banner p {
    font-size: 0.85rem;
    color: #7a6a4f;
    margin: 0;
}

.wizard-understand-check {
    margin-top: 25px;
    background: #f9f9f9;
    border-radius: 12px;
    padding: 14px 16px;
}

.wizard-ref-reminder {
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.wizard-ref-reminder strong {
    color: var(--accent);
}

/* Hide unusable wire-transfer placeholders inside the wizard only
   (details are still XXXX — see docs/donation-system-design.md §9) */
.donation-wizard .wire-transfer-stack {
    display: none;
}

.donation-wizard .overseas-grid {
    grid-template-columns: 1fr;
}

/* Proof (step 3) */
.proof-toggle {
    display: flex;
    gap: 12px;
    margin: 20px 0;
}

.proof-toggle-btn {
    flex: 1;
    padding: 14px;
    border: 2px solid #eee;
    border-radius: 12px;
    background: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #777;
    cursor: pointer;
    transition: all 0.2s ease;
}

.proof-toggle-btn.active {
    border-color: var(--primary);
    color: var(--primary);
    background: #FFF8E1;
}

.wizard-dropzone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border: 2px dashed #ccc;
    border-radius: 16px;
    padding: 35px 20px;
    cursor: pointer;
    color: #888;
    transition: all 0.2s ease;
    text-align: center;
}

.wizard-dropzone:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: #FFFDF7;
}

.wizard-dropzone i {
    font-size: 2rem;
}

#wizard-file-preview {
    display: block;
    max-width: 240px;
    max-height: 320px;
    margin: 15px auto 0;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.turnstile-slot {
    margin-top: 15px;
    display: flex;
    justify-content: center;
}

/* Result (step 4) */
.wizard-result {
    text-align: center;
    padding: 30px 10px;
}

.wizard-result i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.wizard-result.success i {
    color: var(--accent-pink);
}

.wizard-result.notice i {
    color: var(--accent);
}

.wizard-result h2 {
    font-family: 'Baloo 2', cursive;
    color: var(--accent);
    margin-bottom: 10px;
}

.wizard-result p {
    color: #666;
    max-width: 480px;
    margin: 0 auto 10px;
}

.wizard-result-ref strong {
    color: var(--accent);
}

.wizard-share {
    margin-top: 25px;
}

/* Mobile */
@media (max-width: 640px) {
    .donation-wizard {
        padding: 24px 18px;
        border-radius: 18px;
    }

    .wizard-grid {
        grid-template-columns: 1fr;
    }

    .wizard-step-line {
        flex-basis: 24px;
    }

    .wizard-step-dot small {
        display: none;
    }

    .wizard-nav {
        flex-direction: column-reverse;
    }

    .wizard-nav .btn {
        width: 100%;
    }

    .proof-toggle {
        flex-direction: column;
    }
}

/* ============================================
   Donation status page (status.html)
   ============================================ */

.status-result {
    margin-top: 30px;
}

.status-card {
    background: #FFF8E1;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
}

.status-greeting {
    font-size: 1.05rem;
    margin-bottom: 14px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1.05rem;
}

.status-badge.confirmed {
    background: #e8f5e9;
    color: #2e7d32;
}

.status-badge.verifying {
    background: #fff3cd;
    color: #9a6a00;
}

.status-badge.under_review {
    background: #e3f2fd;
    color: var(--accent);
}

.status-badge.awaiting_proof {
    background: #fff3e0;
    color: #e65100;
}

.status-badge.attention {
    background: #fce4ec;
    color: #c2185b;
}

.status-note {
    margin: 16px auto 0;
    max-width: 480px;
    color: #666;
}

.status-details {
    margin: 22px auto 0;
    max-width: 420px;
    background: #fff;
    border-radius: 12px;
    padding: 8px 18px;
    text-align: left;
}

.status-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 9px 0;
    border-bottom: 1px dashed #eee;
    font-size: 0.92rem;
}

.status-detail-row:last-child {
    border-bottom: none;
}

.status-detail-row span {
    color: #888;
}

.status-detail-row strong {
    text-align: right;
}

.status-action {
    margin-top: 22px;
}

@media (max-width: 640px) {
    .status-detail-row {
        flex-direction: column;
        gap: 2px;
    }

    .status-detail-row strong {
        text-align: left;
    }
}
