/* ==========================================
   GET INVOLVED PAGE
   ========================================== */

/* Hero Section */
.get-involved-hero {
    background: #FFF9E9;
    padding: 60px 20px 0;
    text-align: center;
}

.get-involved-hero h1 {
    font-family: 'Over the Rainbow', cursive;
    color: #e8642f;
    font-size: 52px;
    margin-bottom: 25px;
}

.get-involved-hero > p {
    max-width: 850px;
    margin: 0 auto;
    color: #e8642f;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.involvement-options {
    margin-bottom: 50px;
}

.involvement-options > p {
    color: #e8642f;
    font-size: 15px;
    margin-bottom: 25px;
}

.option-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.illustration-row {
    margin-top: 0;
}

.people-illustration {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.section-divider {
    width: 100%;
    display: block;
    margin: 0;
}

/* Volunteer + Partner */
.support-options-section {
    padding: 80px 20px;
    background: #FFF9E9;
}

.support-options-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
}

.support-option-card {
    background: #FFF4DD;
    border: 2px solid rgba(232, 100, 47, 0.18);
    border-radius: 28px;
    padding: 34px 30px;
    box-shadow: 0 10px 30px rgba(206, 70, 16, 0.08);
    display: flex;
    flex-direction: column;
}

.support-option-card-pink {
    background: #FFF4DD;
    border-color: rgba(189, 0, 47, 0.12);
}

.info-kicker {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #874FFF;
    margin-bottom: 14px;
}

.support-option-card h2 {
    font-family: 'Over the Rainbow', cursive;
    color: #e8642f;
    font-size: 44px;
    margin-bottom: 20px;
}

.support-option-card > p {
    color: #e8642f;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.info-list {
    display: grid;
    gap: 18px;
}

.info-list-item {
    background: rgba(255,255,255,0.7);
    border: 2px solid rgba(232, 100, 47, 0.12);
    border-radius: 22px;
    padding: 24px 24px 20px;
}

.info-list-item h3 {
    color: #e8642f;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.info-list-item p {
    color: #e8642f;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

.support-option-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.support-option-actions .btn {
    text-decoration: none;
}

/* Budget Section */
.budget-section {
    padding: 80px 20px;
    background: #FFF9E9;
    position: relative;
}

.pink-line-decoration {
    position: absolute;
    width: 100%;
    height: auto;
    left: 50%;
    top: -50px;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
}

.budget-section h2 {
    font-family: 'Over the Rainbow', cursive;
    color: #FF8CB7;
    font-size: 44px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.budget-accordion-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 18px;
    position: relative;
    z-index: 2;
}

.budget-accordion-item {
    width: 120px;
    height: 250px;
    background: #AFAB24;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    flex-shrink: 0;
    overflow: hidden;
}

.budget-accordion-item:hover {
    background: #445F08;
}

.budget-accordion-item.active {
    width: 500px;
    background: #445F08;
    align-items: flex-start;
    padding: 25px;
}

.budget-year-label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 22px;
    font-weight: 600;
    color: white;
    transition: all 0.4s;
}

.budget-accordion-item.active .budget-year-label {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 24px;
    margin-bottom: 15px;
}

.budget-expand-arrow {
    position: absolute;
    top: 80%;
    bottom: 18px;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: transparent;
    border: 2px solid white;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    pointer-events: none;
}

.budget-accordion-item.active .budget-expand-arrow {
    top: 25px;
    right: 25px;
    transform: none;
}

.budget-breakdown {
    display: none;
    font-size: 15px;
    line-height: 2;
    color: white;
    max-height: 180px;
    overflow-y: auto;
    width: 100%;
}

.budget-accordion-item.active .budget-breakdown {
    display: block;
}

.budget-breakdown p {
    margin-bottom: 8px;
}

.budget-breakdown::-webkit-scrollbar {
    width: 5px;
}

.budget-breakdown::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.4);
    border-radius: 5px;
}

/* Wishlist Section */
.wishlist-section {
    padding: 130px 80px 20px;
}

.wishlist-section h2 {
    font-family: 'Over the Rainbow', cursive;
    color: #874FFF;
    font-size: 44px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: #874FFF;
    font-size: 16px;
    margin-bottom: 50px;
    margin-top: 0;
}

.carousel-controls {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 25px;
}

.carousel-nav-btn {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s;
}

.carousel-nav-btn:hover {
    transform: scale(1.1);
}

.carousel-nav-btn img {
    width: 100%;
    height: 100%;
}

.wishlist-carousel-track {
    display: flex;
    gap: 20px;
    overflow: hidden;
    flex: 1;
}

.wishlist-item {
    background: #DAC9FF;
    border-radius: 20px;
    padding: 30px 20px;
    min-width: calc((100% - 80px) / 5);
    flex-shrink: 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(135, 79, 255, 0.12);
    transition: transform 0.3s, box-shadow 0.3s;
}

.wishlist-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(135, 79, 255, 0.2);
}

.wishlist-item h3 {
    color: #874FFF;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 9px;
}

.wishlist-item p {
    color: #874FFF;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.wishlist-item-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 15px;
}

/* Donation Section */
.donation-section {
    padding: 90px 20px;
    background: #FFF9E9;
}

.donation-section h2 {
    font-family: 'Over the Rainbow', cursive;
    color: #e8642f;
    font-size: 44px;
    text-align: center;
    margin-bottom: 10px;
}

.donation-section .section-subtitle {
    color: #e8642f;
}

.donation-subtitle {
    margin-bottom: 55px;
}

.donation-layout {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    gap: 28px;
    align-items: start;
}

.donation-layout-single {
    grid-template-columns: 1fr;
}

.donation-main-card {
    background: #FFF4DD;
    border: 2px solid rgba(232, 100, 47, 0.16);
    border-radius: 28px;
    box-shadow: 0 8px 24px rgba(206, 70, 16, 0.08);
    padding: 32px;
}

.donation-card-header {
    margin-bottom: 28px;
}

.donation-kicker {
    display: inline-block;
    color: #874FFF;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}

.donation-card-header h3,
.donation-help-inline h3 {
    color: #e8642f;
    font-size: 30px;
    margin-bottom: 10px;
}

.donation-card-header p {
    color: #e8642f;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

.bank-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.bank-detail {
    background: #fff;
    border: 2px solid rgba(232, 100, 47, 0.12);
    border-radius: 20px;
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bank-label {
    color: #874FFF;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.bank-value {
    color: #2B241D;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
    word-break: break-word;
}

.donation-help-inline {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 2px solid rgba(232, 100, 47, 0.12);
}

.donation-help-list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.donation-help-list li {
    background: rgba(255,255,255,0.65);
    color: #2B241D;
    border-radius: 16px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 500;
}

.footer-line-decoration {
    margin-bottom: -20px;
    width: 100%;
}

/* Responsive */
@media (max-width: 1200px) {
    .budget-accordion-item.active {
        width: 400px;
    }

    .bank-details-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .support-options-grid {
        grid-template-columns: 1fr;
    }

    .wishlist-item {
        min-width: calc((100% - 60px) / 4);
    }
}

@media (max-width: 768px) {
    .option-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .option-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .support-option-card h2,
    .budget-section h2,
    .wishlist-section h2,
    .donation-section h2 {
        font-size: 36px;
    }

    .support-option-card,
    .donation-main-card {
        padding: 24px;
    }

    .budget-accordion-container {
        overflow-x: auto;
        justify-content: flex-start;
    }

    .wishlist-item {
        min-width: 200px;
    }
}

@media (max-width: 560px) {
    .support-option-actions {
        flex-direction: column;
    }

    .support-option-actions .btn {
        width: 100%;
        justify-content: center;
    }
}