/* ========================================
   SUPPORT PAGE SPECIFIC STYLES
======================================== */

/* ========================================
   SUPPORT PAGE HEADER
======================================== */
.support-header {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-black) 100%);
}

.support-header p {
    font-size: 1.3rem;
    margin-top: 10px;
}

/* ========================================
   WHY SUPPORT SECTION
======================================== */
.why-support-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.impact-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.impact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: transform 0.3s ease;
}

.impact-card:hover .impact-icon {
    transform: scale(1.1) rotate(10deg);
}

.impact-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.impact-card h3 {
    font-size: 1.5rem;
    color: var(--primary-black);
    margin-bottom: 15px;
}

.impact-card > p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 25px;
}

.impact-stat {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.impact-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 5px;
}

.impact-stat .stat-label {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
}

/* ========================================
   DONATION SECTION
======================================== */
.donation-section {
    padding: 80px 0;
    background-color: var(--white);
}

.donation-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.donation-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.donation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.donation-header {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
    color: var(--white);
    padding: 30px;
    text-align: center;
}

.donation-header i {
    font-size: 3.5rem;
    margin-bottom: 15px;
    display: block;
}

.donation-header h3 {
    font-size: 1.8rem;
    margin: 0;
}

.donation-body {
    padding: 40px;
}

.donation-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

.account-details {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.account-detail-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 2px solid var(--border-color);
}

.account-detail-item:last-child {
    border-bottom: none;
}

.account-detail-item label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.account-detail-item label i {
    color: var(--primary-red);
}

.account-detail-item span {
    font-size: 1.05rem;
    color: var(--primary-black);
    font-weight: 600;
}

.account-number {
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
}

.btn-copy {
    background-color: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-copy:hover {
    background-color: var(--primary-black);
    transform: scale(1.05);
}

/* Mobile Money Styles */
.momo-details {
    margin-bottom: 20px;
}

.momo-card {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 15px;
}

.momo-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.momo-icon i {
    font-size: 2rem;
    color: var(--white);
}

.momo-info {
    flex: 1;
}

.momo-info label {
    display: block;
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.momo-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.momo-divider {
    text-align: center;
    position: relative;
    margin: 20px 0;
}

.momo-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--border-color);
}

.momo-divider span {
    position: relative;
    background-color: var(--white);
    padding: 0 15px;
    color: var(--text-light);
    font-weight: 600;
}

.donation-note {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.05), rgba(0, 128, 255, 0.05));
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-red);
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.donation-note i {
    color: var(--primary-red);
    font-size: 1.5rem;
    margin-top: 3px;
}

.donation-note p {
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   OTHER SUPPORT OPTIONS
======================================== */
.other-support-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.support-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.support-option-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.support-option-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.option-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.option-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.support-option-card h3 {
    font-size: 1.4rem;
    color: var(--primary-black);
    margin-bottom: 15px;
}

.support-option-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 25px;
}

.social-share {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px) scale(1.1);
}

.share-btn.facebook {
    background-color: #1877F2;
}

.share-btn.twitter {
    background-color: #1DA1F2;
}

.share-btn.linkedin {
    background-color: #0A66C2;
}

.share-btn.whatsapp {
    background-color: #25D366;
}

/* ========================================
   SPONSORSHIP SECTION
======================================== */
.sponsorship-section {
    padding: 80px 0;
    background-color: var(--white);
}

.sponsorship-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.sponsorship-card {
    background-color: var(--white);
    border: 3px solid var(--border-color);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.sponsorship-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.sponsorship-badge {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.sponsorship-badge.featured {
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-red));
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.sponsorship-badge i {
    font-size: 2.8rem;
    color: var(--white);
}

.featured-label {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-red));
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.sponsorship-card h3 {
    font-size: 1.6rem;
    color: var(--primary-black);
    margin-bottom: 15px;
}

.sponsorship-card > p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.sponsorship-benefits {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.sponsorship-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 1rem;
    color: var(--text-dark);
}

.sponsorship-benefits i {
    color: var(--primary-red);
    font-size: 1.1rem;
}

.custom-sponsorship {
    margin-top: 60px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
}

.custom-sponsorship-content i {
    font-size: 4rem;
    color: var(--primary-yellow);
    margin-bottom: 20px;
    display: block;
}

.custom-sponsorship-content h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 15px;
}

.custom-sponsorship-content p {
    font-size: 1.1rem;
    color: var(--white);
    opacity: 0.95;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   IMPACT STORIES
======================================== */
.impact-stories-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.story-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.story-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.1);
}

.story-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-overlay i {
    font-size: 1.8rem;
    color: var(--white);
}

.story-content {
    padding: 30px;
}

.story-content h4 {
    font-size: 1.4rem;
    color: var(--primary-black);
    margin-bottom: 15px;
}

.story-content > p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
}

.story-author {
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

.story-author strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-black);
    margin-bottom: 5px;
}

.story-author span {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ========================================
   TRANSPARENCY SECTION
======================================== */
.transparency-section {
    padding: 80px 0;
    background-color: var(--white);
}

.transparency-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.transparency-text h2 {
    font-size: 2.2rem;
    color: var(--primary-black);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.transparency-text h2 i {
    color: var(--primary-red);
}

.transparency-text > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.transparency-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.transparency-point {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.transparency-point i {
    font-size: 2.5rem;
    color: var(--primary-red);
    flex-shrink: 0;
}

.transparency-point h4 {
    font-size: 1.2rem;
    color: var(--primary-black);
    margin-bottom: 8px;
}

.transparency-point p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.fund-allocation {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.fund-allocation h3 {
    font-size: 1.8rem;
    color: var(--primary-black);
    margin-bottom: 30px;
    text-align: center;
}

.allocation-chart {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.allocation-item {
    position: relative;
}

.allocation-bar {
    height: 40px;
    border-radius: 8px;
    transition: width 0.5s ease;
}

.allocation-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    font-size: 1rem;
}

.allocation-label span {
    color: var(--text-dark);
}

.allocation-label strong {
    color: var(--primary-black);
    font-size: 1.2rem;
}

/* ========================================
   THANK YOU SECTION
======================================== */
.thank-you-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
    color: var(--white);
    text-align: center;
}

.thank-you-content i.fa-heart {
    font-size: 5rem;
    color: var(--primary-yellow);
    margin-bottom: 25px;
    display: block;
    animation: heartBeat 1.5s ease-in-out infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
}

.thank-you-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.thank-you-content > p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 40px;
}

.thank-you-quote {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    max-width: 700px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.thank-you-quote i.fa-quote-left {
    font-size: 3rem;
    opacity: 0.5;
    margin-bottom: 20px;
    display: block;
}

.thank-you-quote p {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 15px;
}

.thank-you-quote span {
    font-size: 1.1rem;
    font-weight: 600;
}

/* ========================================
   RESPONSIVE DESIGN - SUPPORT PAGE
======================================== */
@media (max-width: 992px) {
    .donation-methods {
        grid-template-columns: 1fr;
    }

    .transparency-content {
        grid-template-columns: 1fr;
    }

    .sponsorship-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .impact-grid {
        grid-template-columns: 1fr;
    }

    .donation-body {
        padding: 30px 20px;
    }

    .account-detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .momo-card {
        flex-direction: column;
        text-align: center;
    }

    .support-options-grid {
        grid-template-columns: 1fr;
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .transparency-text h2 {
        font-size: 1.8rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .transparency-point {
        flex-direction: column;
    }

    .custom-sponsorship {
        padding: 40px 30px;
    }

    .custom-sponsorship-content h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .impact-icon {
        width: 70px;
        height: 70px;
    }

    .impact-icon i {
        font-size: 2rem;
    }

    .donation-header {
        padding: 25px 20px;
    }

    .donation-header i {
        font-size: 2.5rem;
    }

    .donation-header h3 {
        font-size: 1.5rem;
    }

    .momo-number {
        font-size: 1.2rem;
    }

    .option-icon {
        width: 70px;
        height: 70px;
    }

    .option-icon i {
        font-size: 2rem;
    }

    .sponsorship-badge {
        width: 70px;
        height: 70px;
    }

    .sponsorship-badge i {
        font-size: 2rem;
    }

    .thank-you-content h2 {
        font-size: 2rem;
    }

    .thank-you-quote {
        padding: 30px 20px;
    }
}