/* MAIN CONTAINER */
.vvoa-donate-membership-hero-section {
    min-height: 100vh;
    padding: 140px 0 100px;
    background: linear-gradient(135deg, 
        #FFF3E0 0%, 
        #FFECB3 25%, 
        #E8F5E8 50%, 
        #F3E5F5 75%, 
        #E3F2FD 100%);
    position: relative;
    max-width: 100vw;
    box-sizing: border-box;
}

/* BACKGROUND PATTERNS */
.vvoa-donation-wave-pattern-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(30deg, 
            rgba(255, 152, 0, 0.06) 0px, 
            rgba(255, 152, 0, 0.06) 3px, 
            transparent 3px, 
            transparent 25px),
        repeating-linear-gradient(-30deg, 
            rgba(76, 175, 80, 0.08) 0px, 
            rgba(76, 175, 80, 0.08) 2px, 
            transparent 2px, 
            transparent 35px),
        radial-gradient(circle at 25% 25%, rgba(233, 30, 99, 0.12) 0%, transparent 35%),
        radial-gradient(circle at 75% 75%, rgba(25, 118, 210, 0.10) 0%, transparent 35%);
    animation: vvoa-wave-pattern-flow 45s ease-in-out infinite;
    pointer-events: none;
}

/* FLOATING PARTICLES */
.vvoa-floating-support-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.vvoa-support-diamond-particle {
    position: absolute;
    width: 12px;
    height: 12px;
    background: linear-gradient(45deg, #FF9800, #FFB74D);
    transform: rotate(45deg);
    animation: vvoa-diamond-gentle-float 12s ease-in-out infinite;
}

.vvoa-support-diamond-particle:nth-child(odd) {
    background: linear-gradient(45deg, #4CAF50, #81C784);
    animation-duration: 15s;
}

.vvoa-support-diamond-particle:nth-child(3n) {
    background: linear-gradient(45deg, #E91E63, #F48FB1);
    animation-duration: 18s;
}

.vvoa-support-diamond-particle:nth-child(1) { left: 12%; top: 20%; animation-delay: 0s; }
.vvoa-support-diamond-particle:nth-child(2) { right: 18%; top: 15%; animation-delay: 2s; }
.vvoa-support-diamond-particle:nth-child(3) { left: 25%; top: 60%; animation-delay: 4s; }
.vvoa-support-diamond-particle:nth-child(4) { right: 30%; top: 70%; animation-delay: 6s; }
.vvoa-support-diamond-particle:nth-child(5) { left: 8%; bottom: 25%; animation-delay: 1s; }
.vvoa-support-diamond-particle:nth-child(6) { right: 15%; bottom: 30%; animation-delay: 3s; }

/* MAIN CONTENT WRAPPER */
.vvoa-donate-membership-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 10;
}

/* SECTION LAYOUTS */
.vvoa-donate-section, .vvoa-membership-section {
    display: flex;
    align-items: flex-start;
    gap: 100px;
    margin-bottom: 120px;
    min-height: 100vh;
}

.vvoa-membership-section {
    flex-direction: row-reverse;
    margin-bottom: 0;
}

.vvoa-donate-text-area, .vvoa-membership-content-area {
    flex: 1;
    position: relative;
}

/* STICKY IMAGE AREAS */
.vvoa-donate-image-area, .vvoa-membership-image-area {
    flex: 1;
    position: sticky;
    top: 130px;
    height: calc(100vh - 180px);
    align-self: flex-start;
    z-index: 5;
}

.vvoa-donate-image-showcase, .vvoa-membership-image-showcase {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 152, 0, 0.1));
    backdrop-filter: blur(15px);
    border: 3px solid rgba(255, 152, 0, 0.3);
    box-shadow: 0 25px 60px rgba(255, 152, 0, 0.2);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.vvoa-membership-image-showcase {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(76, 175, 80, 0.1));
    border-color: rgba(76, 175, 80, 0.3);
    box-shadow: 0 25px 60px rgba(76, 175, 80, 0.2);
}

.vvoa-donate-image-showcase:hover, .vvoa-membership-image-showcase:hover {
    transform: scale(1.02) rotate(1deg);
    box-shadow: 0 30px 80px rgba(255, 152, 0, 0.3);
}

.vvoa-membership-image-showcase:hover {
    box-shadow: 0 30px 80px rgba(76, 175, 80, 0.3);
}

.vvoa-donate-main-image, .vvoa-membership-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(1.1) contrast(1.05);
}

.vvoa-donate-image-showcase:hover .vvoa-donate-main-image,
.vvoa-membership-image-showcase:hover .vvoa-membership-main-image {
    transform: scale(1.05);
}

/* HEADINGS */
.vvoa-donate-main-heading, .vvoa-membership-main-heading {
    font-size: clamp(3.5rem, 8vw, 5rem);
    line-height: 1;
    margin-bottom: 20px;
}

.vvoa-donate-text, .vvoa-membership-text {
    color: #E91E63;
    background: linear-gradient(135deg, #E91E63, #FF6B9D, #E91E63);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.vvoa-donate-text {
    animation: vvoa-donate-text-flow 6s ease-in-out infinite;
}

.vvoa-membership-text {
    animation: vvoa-membership-text-flow 7s ease-in-out infinite;
}

.vvoa-donate-subheading, .vvoa-membership-subheading {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #4CAF50;
    font-weight: 600;
    margin-bottom: 30px;
}

.vvoa-donate-description, .vvoa-membership-description {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    max-width: 600px;
}

/* THANK YOU SECTION */
.vvoa-thank-you-section {
    margin-top: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    border: 2px solid rgba(255, 152, 0, 0.2);
}

.vvoa-thank-you-heading {
    font-size: 24px;
    font-weight: 700;
    color: #FF9800;
    margin-bottom: 15px;
}

.vvoa-thank-you-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.vvoa-thank-you-banner {
    font-size: 28px;
    font-weight: 800;
    color: #E91E63;
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1), rgba(255, 152, 0, 0.1));
    border-radius: 15px;
}

/* MEMBERSHIP PLANS */
.vvoa-membership-plans-container {
    margin-bottom: 40px;
}

.vvoa-plans-heading {
    font-size: 20px;
    font-weight: 700;
    color: #2E7D32;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vvoa-plans-grid {
    display: flex;
    gap: 20px;
}

.vvoa-membership-plan-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    border: 2px solid rgba(76, 175, 80, 0.2);
    transition: all 0.4s ease;
    position: relative;
    flex: 1;
}

.vvoa-featured-plan {
    border-color: rgba(233, 30, 99, 0.4);
    transform: scale(1.05);
}

.vvoa-popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #E91E63;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
}

.vvoa-membership-plan-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.2);
}

.vvoa-featured-plan:hover {
    transform: translateY(-5px) scale(1.07);
}

.vvoa-plan-title {
    font-size: 20px;
    font-weight: 700;
    color: #2E7D32;
    margin-bottom: 10px;
}

.vvoa-plan-price {
    font-size: 36px;
    font-weight: 800;
    color: #E91E63;
    margin-bottom: 5px;
}

.vvoa-plan-period {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* BENEFITS SECTION */
.vvoa-membership-benefits-container {
    margin-bottom: 40px;
}

.vvoa-benefits-heading {
    font-size: 24px;
    font-weight: 700;
    color: #2E7D32;
    margin-bottom: 20px;
}

.vvoa-benefits-intro {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
}

.vvoa-benefits-category {
    margin-bottom: 50px;
}

.vvoa-benefits-category-title {
    font-size: 20px;
    font-weight: 700;
    color: #2E7D32;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 3px solid rgba(76, 175, 80, 0.3);
}

.vvoa-benefits-category-title i {
    font-size: 24px;
    color: #4CAF50;
}

.vvoa-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.vvoa-benefit-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    border: 2px solid rgba(76, 175, 80, 0.2);
    transition: all 0.4s ease;
}

.vvoa-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.2);
    border-color: rgba(76, 175, 80, 0.4);
}

.vvoa-benefit-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.vvoa-benefit-card:hover .vvoa-benefit-card-icon {
    transform: scale(1.1) rotate(10deg);
}

.vvoa-benefit-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #2E7D32;
    margin-bottom: 12px;
}

.vvoa-benefit-card-text {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.vvoa-partner-benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.vvoa-partner-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 2px solid rgba(76, 175, 80, 0.1);
    transition: all 0.3s ease;
}

.vvoa-partner-benefit-item:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(76, 175, 80, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.15);
}

.vvoa-partner-icon {
    font-size: 32px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.vvoa-partner-details {
    flex: 1;
}

.vvoa-partner-name {
    font-size: 16px;
    font-weight: 700;
    color: #2E7D32;
    margin-bottom: 5px;
}

.vvoa-partner-address {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    font-style: italic;
}

.vvoa-partner-offer {
    font-size: 14px;
    color: #E91E63;
    font-weight: 600;
    line-height: 1.4;
}

.vvoa-membership-closing {
    font-size: 16px;
    color: #555;
    font-weight: 600;
    text-align: center;
    padding: 20px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(76, 175, 80, 0.2);
}

/* IMAGE BADGES */
.vvoa-impact-badge, .vvoa-community-support-badge, .vvoa-members-badge, .vvoa-established-badge {
    position: absolute;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.vvoa-impact-badge {
    top: 20px;
    left: 20px;
    background: rgba(255, 152, 0, 0.9);
    color: white;
}

.vvoa-community-support-badge, .vvoa-established-badge {
    bottom: 20px;
    right: 20px;
    background: rgba(233, 30, 99, 0.9);
    color: white;
}

.vvoa-members-badge {
    top: 20px;
    left: 20px;
    background: rgba(76, 175, 80, 0.9);
    color: white;
}

/* CTA BUTTONS */
.vvoa-donate-cta-container, .vvoa-membership-cta-container {
    position: relative;
    display: inline-block;
}

.vvoa-donate-button, .vvoa-membership-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #673AB7, #9C27B0, #8E24AA);
    background-size: 200% 100%;
    color: white;
    padding: 22px 45px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 40px rgba(103, 58, 183, 0.4);
    animation: vvoa-cta-energy-pulse 4s ease-in-out infinite;
}

.vvoa-donate-button:hover, .vvoa-membership-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 25px 60px rgba(103, 58, 183, 0.7);
    animation-duration: 2s;
}

.vvoa-donate-icon, .vvoa-membership-icon {
    margin-left: 12px;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.vvoa-donate-button:hover .vvoa-donate-icon,
.vvoa-membership-button:hover .vvoa-membership-icon {
    transform: translateX(5px) scale(1.2);
}

/* ANIMATIONS */
@keyframes vvoa-wave-pattern-flow {
    0%, 100% { 
        transform: translateX(0px) translateY(0px) rotate(0deg); 
        opacity: 0.7; 
    }
    25% { 
        transform: translateX(15px) translateY(-10px) rotate(2deg); 
        opacity: 0.9; 
    }
    50% { 
        transform: translateX(-10px) translateY(20px) rotate(-1deg); 
        opacity: 1; 
    }
    75% { 
        transform: translateX(8px) translateY(-5px) rotate(1deg); 
        opacity: 0.8; 
    }
}

@keyframes vvoa-diamond-gentle-float {
    0%, 100% { 
        transform: rotate(45deg) translateY(0px) scale(1); 
        opacity: 0.6; 
    }
    25% { 
        transform: rotate(90deg) translateY(-15px) scale(1.2); 
        opacity: 0.8; 
    }
    50% { 
        transform: rotate(135deg) translateY(-8px) scale(1.1); 
        opacity: 1; 
    }
    75% { 
        transform: rotate(180deg) translateY(-12px) scale(1.3); 
        opacity: 0.9; 
    }
}

@keyframes vvoa-donate-text-flow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes vvoa-membership-text-flow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes vvoa-cta-energy-pulse {
    0%, 100% { 
        background-position: 0% 50%; 
        box-shadow: 0 15px 40px rgba(103, 58, 183, 0.4);
    }
    50% { 
        background-position: 100% 50%; 
        box-shadow: 0 18px 50px rgba(103, 58, 183, 0.6);
    }
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
    .vvoa-donate-section, .vvoa-membership-section {
        gap: 80px;
    }
}

@media (max-width: 1024px) {
    .vvoa-donate-section, .vvoa-membership-section {
        flex-direction: column;
        gap: 60px;
        text-align: center;
        min-height: auto;
    }

    .vvoa-membership-section {
        flex-direction: column;
    }

    .vvoa-floating-support-elements {
        display: none;
    }

    .vvoa-plans-grid {
        justify-content: center;
        flex-wrap: wrap;
    }

    .vvoa-donate-image-area, .vvoa-membership-image-area {
        position: relative;
        top: auto;
        height: 400px;
        align-self: stretch;
    }
}

@media (max-width: 768px) {
    .vvoa-donate-membership-hero-section {
        padding: 120px 0 80px;
    }

    .vvoa-donate-membership-content-wrapper {
        padding: 0 4%;
    }

    .vvoa-donate-section, .vvoa-membership-section {
        gap: 50px;
        margin-bottom: 80px;
    }

    .vvoa-donate-image-area, .vvoa-membership-image-area {
        height: 350px;
    }

    .vvoa-plans-grid {
        flex-direction: column;
        gap: 15px;
    }

    .vvoa-featured-plan {
        transform: none;
    }

    .vvoa-featured-plan:hover {
        transform: translateY(-5px) scale(1.02);
    }

    .vvoa-benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .vvoa-partner-benefits-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .vvoa-partner-benefit-item {
        padding: 15px;
    }

    .vvoa-benefit-card {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .vvoa-donate-main-heading, .vvoa-membership-main-heading {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }

    .vvoa-donate-image-area, .vvoa-membership-image-area {
        height: 280px;
    }

    .vvoa-donate-image-showcase, .vvoa-membership-image-showcase {
        border-radius: 20px;
    }

    .vvoa-membership-plan-card {
        padding: 25px 20px;
    }

    .vvoa-donate-button, .vvoa-membership-button {
        padding: 18px 35px;
        font-size: 16px;
    }

    .vvoa-partner-benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .vvoa-partner-icon {
        align-self: center;
    }
}