@import '_content/Blazored.Toast/Blazored.Toast.bundle.scp.css';

/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-90up7i054g] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.top-header[b-90up7i054g] {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

main[b-90up7i054g] {
    flex: 1;
}

.content[b-90up7i054g] {
    padding: 0;
    margin: 0;
}

/* CTA Section */
.cta-section[b-90up7i054g] {
    padding: 4rem 0;
    background: var(--navy-gradient);
    color: var(--bg-white);
    text-align: center;
}

.cta-section h2[b-90up7i054g] {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.cta-section p[b-90up7i054g] {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--bg-white);
}
.cta-buttons[b-90up7i054g] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    color: var(--bg-white);
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar[b-wkxo2x31fu] {
    background-color: var(--bg-white);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
}

.container-fluid[b-wkxo2x31fu] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.navbar-brand-section[b-wkxo2x31fu] {
    display: flex;
    align-items: center;
}

.logo-placeholder[b-wkxo2x31fu] {
    display: flex;
    align-items: center;
    height: 60px;
    padding: 0.5rem 1rem;
    background: var(--teal-gradient);
    border-radius: var(--border-radius-small);
    box-shadow: 0 2px 8px var(--shadow-light);
}

.logo-link[b-wkxo2x31fu] {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.logo-link:hover[b-wkxo2x31fu] {
    text-decoration: none;
    transform: scale(1.05);
}

.logo-link:focus[b-wkxo2x31fu] {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.logo-text[b-wkxo2x31fu] {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--bg-white);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.navbar-toggler[b-wkxo2x31fu] {
    display: none;
    background: none;
    border: 2px solid var(--text-dark);
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
}

.navbar-toggler-icon[b-wkxo2x31fu] {
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.navbar-nav-section[b-wkxo2x31fu] {
    display: flex;
}

.navbar-nav[b-wkxo2x31fu] {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-item[b-wkxo2x31fu] {
    margin: 0;
}

.nav-item[b-wkxo2x31fu]  a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: var(--transition);
    position: relative;
}

.nav-item[b-wkxo2x31fu]  a:hover {
    color: var(--primary-teal);
    background-color: rgba(78, 205, 196, 0.1);
}

.nav-item[b-wkxo2x31fu]  a.active {
    color: var(--primary-teal);
    background-color: rgba(78, 205, 196, 0.15);
    font-weight: 600;
}

.nav-item[b-wkxo2x31fu]  a.active::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: var(--teal-gradient);
    border-radius: 2px;
}

/* Desktop - Always show navigation */
@media (min-width: 769px) {
    .navbar-toggler[b-wkxo2x31fu] {
        display: none;
    }

    .navbar-nav-section[b-wkxo2x31fu] {
        display: flex !important;
        position: static !important;
        background-color: transparent !important;
        border-top: none !important;
        box-shadow: none !important;
    }

    .navbar-nav-section.collapse[b-wkxo2x31fu] {
        display: flex !important;
    }

    .navbar-nav[b-wkxo2x31fu] {
        display: flex !important;
        flex-direction: row !important;
        gap: 2rem !important;
        padding: 0 !important;
    }

    .nav-item[b-wkxo2x31fu]  a {
        display: inline-block !important;
        padding: 0.5rem 1rem !important;
        border-bottom: none !important;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .navbar-toggler[b-wkxo2x31fu] {
        display: block;
    }

    .navbar-nav-section[b-wkxo2x31fu] {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        border-top: 1px solid #e0e0e0;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .navbar-nav-section.collapse[b-wkxo2x31fu] {
        display: none;
    }

    .navbar-nav[b-wkxo2x31fu] {
        flex-direction: column;
        gap: 0;
        padding: 1rem;
    }

    .nav-item[b-wkxo2x31fu]  a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-item:last-child[b-wkxo2x31fu]  a {
        border-bottom: none;
    }

    .logo-text[b-wkxo2x31fu] {
        font-size: 1.2rem;
    }

    .logo-placeholder[b-wkxo2x31fu] {
        height: 50px;
        padding: 0.25rem 0.75rem;
    }
}
/* /Pages/About.razor.rz.scp.css */
/* About Page Specific Styles */

.story-section[b-u3sydloft6] {
    padding: 4rem 0;
    background: white;
}

.story-content[b-u3sydloft6] {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2[b-u3sydloft6] {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

.story-text p[b-u3sydloft6] {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

.founder-placeholder[b-u3sydloft6] {
    text-align: center;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.founder-avatar[b-u3sydloft6] {
    width: 5em;
    height: 5em;
    background: var(--teal-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1rem;
}

.founder-placeholder h3[b-u3sydloft6] {
    margin-bottom: 0.5rem;
    color: #333;
}

.founder-placeholder p[b-u3sydloft6] {
    color: #666;
    font-style: italic;
}

.mission-section[b-u3sydloft6] {
    padding: 4rem 0;
    background: #f8f9fa;
}

.mission-section h2[b-u3sydloft6] {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.mission-grid[b-u3sydloft6] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mission-card[b-u3sydloft6] {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mission-card:hover[b-u3sydloft6] {
    transform: translateY(-5px);
}

.mission-icon[b-u3sydloft6] {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.mission-card h3[b-u3sydloft6] {
    margin-bottom: 1rem;
    color: #333;
}

.mission-card p[b-u3sydloft6] {
    color: #666;
    line-height: 1.6;
}

.team-section[b-u3sydloft6] {
    padding: 4rem 0;
    background: white;
}

.team-section h2[b-u3sydloft6] {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.team-grid[b-u3sydloft6] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member[b-u3sydloft6] {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: #f8f9fa;
}

.member-avatar[b-u3sydloft6] {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2E8B87, #4A90A4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.team-member h3[b-u3sydloft6] {
    margin-bottom: 0.5rem;
    color: #333;
}

.role[b-u3sydloft6] {
    color: var(--primary-teal);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p:not(.role)[b-u3sydloft6] {
    color: #666;
    font-size: 0.9rem;
}

.stats-section[b-u3sydloft6] {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1E3A8A, #2E8B87);
    color: white;
}

.stats-section h2[b-u3sydloft6] {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.stats-grid[b-u3sydloft6] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card[b-u3sydloft6] {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-number[b-u3sydloft6] {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label[b-u3sydloft6] {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-description[b-u3sydloft6] {
    font-size: 0.9rem;
    opacity: 0.8;
}

.contact-section[b-u3sydloft6] {
    padding: 4rem 0;
    background: white;
}

.contact-section h2[b-u3sydloft6] {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.contact-grid[b-u3sydloft6] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3[b-u3sydloft6], .visit-info h3[b-u3sydloft6] {
    margin-bottom: 2rem;
    color: #333;
}

.contact-item[b-u3sydloft6] {
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
}

.contact-item strong[b-u3sydloft6] {
    color: #333;
}

.visit-info p[b-u3sydloft6] {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .page-header h1[b-u3sydloft6] {
        font-size: 2rem;
    }
    
    .story-content[b-u3sydloft6] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-grid[b-u3sydloft6] {
        grid-template-columns: 1fr;
    }
    
    .team-grid[b-u3sydloft6] {
        grid-template-columns: 1fr;
    }
    
    .stats-grid[b-u3sydloft6] {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid[b-u3sydloft6] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
/* /Pages/Adopt.razor.rz.scp.css */
/* Adopt Page Specific Styles */

.header-actions[b-ud9dtmfbc4] {
    margin-top: 2rem;
    text-align: center;
}

.header-actions .btn-large[b-ud9dtmfbc4] {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
    transition: var(--transition);
}

.header-actions .btn-large:hover[b-ud9dtmfbc4] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
}

.adopt-section[b-ud9dtmfbc4] {
    padding: 4rem 0;
    background: var(--bg-light);
}

.cats-grid[b-ud9dtmfbc4] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.cat-card[b-ud9dtmfbc4] {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: var(--transition);
    position: relative;
}

.cat-card:hover[b-ud9dtmfbc4] {
    transform: translateY(-5px);
}

.cat-card.featured[b-ud9dtmfbc4] {
    border: 3px solid var(--primary-teal);
    box-shadow: 0 6px 25px rgba(78, 205, 196, 0.2);
}

.featured-badge[b-ud9dtmfbc4] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-teal);
    color: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.cat-image[b-ud9dtmfbc4] {
    height: 200px;
    background: var(--teal-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-image .cat-emoji[b-ud9dtmfbc4] {
    font-size: 4rem;
}

.cat-info[b-ud9dtmfbc4] {
    padding: 1.5rem;
}

.cat-info h3[b-ud9dtmfbc4] {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.cat-details[b-ud9dtmfbc4] {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.cat-description[b-ud9dtmfbc4] {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.cat-personality[b-ud9dtmfbc4] {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.cat-personality strong[b-ud9dtmfbc4] {
    color: var(--text-dark);
}

.cat-traits[b-ud9dtmfbc4] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.trait[b-ud9dtmfbc4] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.trait.good[b-ud9dtmfbc4] {
    background: rgba(78, 205, 196, 0.1);
    color: var(--primary-teal);
    border: 1px solid rgba(78, 205, 196, 0.3);
}

.special-needs[b-ud9dtmfbc4] {
    background: var(--bg-light);
    padding: 0.75rem;
    border-radius: var(--border-radius-small);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.special-needs strong[b-ud9dtmfbc4] {
    color: var(--text-dark);
}

.adoption-fee[b-ud9dtmfbc4] {
    background: var(--primary-teal);
    color: var(--bg-white);
    padding: 0.75rem;
    border-radius: var(--border-radius-small);
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.cat-actions[b-ud9dtmfbc4] {
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
}

.cat-actions .btn[b-ud9dtmfbc4] {
    text-align: center;
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
}

.adoption-process[b-ud9dtmfbc4] {
    padding: 4rem 0;
    background: var(--bg-white);
}

.process-steps[b-ud9dtmfbc4] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.step[b-ud9dtmfbc4] {
    text-align: center;
    padding: 2rem;
}

.step-number[b-ud9dtmfbc4] {
    width: 60px;
    height: 60px;
    background: var(--teal-gradient);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h3[b-ud9dtmfbc4] {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step p[b-ud9dtmfbc4] {
    color: var(--text-medium);
}

@media (max-width: 768px) {
    .page-header h1[b-ud9dtmfbc4] {
        font-size: 2rem;
    }
    
    .cats-grid[b-ud9dtmfbc4] {
        grid-template-columns: 1fr;
    }
    
    .process-steps[b-ud9dtmfbc4] {
        grid-template-columns: 1fr;
    }
}
/* /Pages/Application.razor.rz.scp.css */
/* Application Form Styles */

.application-section[b-pb9djcfzs1] {
    padding: 2rem 0 4rem;
    background: var(--bg-light);
    min-height: 80vh;
}

.form-section[b-pb9djcfzs1] {
    background: var(--bg-white);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px var(--shadow-light);
}

.form-section h2[b-pb9djcfzs1] {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-teal);
    font-size: 1.5rem;
}

.form-section h3[b-pb9djcfzs1] {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.form-section h4[b-pb9djcfzs1] {
    color: var(--text-medium);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Form Layout */
.form-row[b-pb9djcfzs1] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group[b-pb9djcfzs1] {
    margin-bottom: 1rem;
}

.form-group label[b-pb9djcfzs1] {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Form Controls */
.form-control[b-pb9djcfzs1] {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius-small);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-white);
}

.form-control:focus[b-pb9djcfzs1] {
    outline: none;
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
}

.form-control:invalid[b-pb9djcfzs1] {
    border-color: #dc3545;
}

.form-control:valid[b-pb9djcfzs1] {
    border-color: var(--primary-teal);
}

/* Textarea */
textarea.form-control[b-pb9djcfzs1] {
    resize: vertical;
    min-height: 100px;
}

/* Select */
select.form-control[b-pb9djcfzs1] {
    cursor: pointer;
}

/* Checkbox Groups */
.checkbox-group[b-pb9djcfzs1] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group label[b-pb9djcfzs1] {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
    line-height: 1.4;
}

.checkbox-group input[type="checkbox"][b-pb9djcfzs1] {
    margin-top: 0.2rem;
    width: 1.2rem;
    height: 1.2rem;
    accent-color: var(--primary-teal);
}

/* Pet and Reference Entries */
.pet-entry[b-pb9djcfzs1], .reference-entry[b-pb9djcfzs1] {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius-small);
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary-teal);
}

.current-pets-section[b-pb9djcfzs1] {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

/* Care Questions */
.care-questions[b-pb9djcfzs1] {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius-small);
    margin: 1rem 0;
}

.care-questions h3[b-pb9djcfzs1] {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.care-questions .checkbox-group[b-pb9djcfzs1] {
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

/* Buttons */
.btn-small[b-pb9djcfzs1] {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-large[b-pb9djcfzs1] {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Form Actions */
.form-actions[b-pb9djcfzs1] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.submit-section[b-pb9djcfzs1] {
    text-align: center;
    background: var(--bg-white);
    border: 2px solid var(--primary-teal);
}

/* Form Disclaimer */
.form-disclaimer[b-pb9djcfzs1] {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius-small);
    border-left: 4px solid var(--secondary-blue);
}

.form-disclaimer p[b-pb9djcfzs1] {
    margin: 0;
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Validation Messages */
.validation-message[b-pb9djcfzs1] {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

/* Validation Summary */
.validation-summary[b-pb9djcfzs1] {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 1rem;
    border-radius: var(--border-radius-small);
    margin-bottom: 2rem;
}

.validation-summary ul[b-pb9djcfzs1] {
    margin: 0;
    padding-left: 1.5rem;
}

.validation-summary li[b-pb9djcfzs1] {
    margin-bottom: 0.5rem;
}

/* Form Helper Text */
.form-text[b-pb9djcfzs1] {
    color: var(--text-medium);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
    font-style: italic;
}

/* Thank You Message */
.thank-you-message[b-pb9djcfzs1] {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(107, 182, 255, 0.1));
    border: 2px solid var(--primary-teal);
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    margin: 1rem 0;
    text-align: center;
    animation: fadeIn-b-pb9djcfzs1 0.5s ease-in-out;
}

.thank-you-message p[b-pb9djcfzs1] {
    margin: 0;
    color: var(--primary-teal-dark);
    font-size: 1rem;
    line-height: 1.5;
}

.thank-you-message strong[b-pb9djcfzs1] {
    color: var(--primary-teal);
    font-size: 1.1rem;
}

@keyframes fadeIn-b-pb9djcfzs1 {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Alert Messages */
.alert[b-pb9djcfzs1] {
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    font-size: 1rem;
    line-height: 1.5;
    box-shadow: 0 2px 8px var(--shadow-light);
}

.alert-success[b-pb9djcfzs1] {
    background: rgba(78, 205, 196, 0.1);
    border: 2px solid var(--primary-teal);
    color: var(--primary-teal-dark);
}

.alert-error[b-pb9djcfzs1] {
    background: rgba(220, 53, 69, 0.1);
    border: 2px solid #dc3545;
    color: #dc3545;
}

/* Loading State */
button:disabled[b-pb9djcfzs1] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 768px) {
    .application-section[b-pb9djcfzs1] {
        padding: 1rem 0 2rem;
    }
    
    .form-section[b-pb9djcfzs1] {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .form-row[b-pb9djcfzs1] {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .form-actions[b-pb9djcfzs1] {
        flex-direction: column;
        align-items: center;
    }
    
    .form-actions .btn[b-pb9djcfzs1] {
        width: 100%;
        max-width: 300px;
    }
    
    .pet-entry[b-pb9djcfzs1], .reference-entry[b-pb9djcfzs1] {
        padding: 1rem;
    }
    
    .care-questions[b-pb9djcfzs1] {
        padding: 1rem;
    }
    
    .form-disclaimer[b-pb9djcfzs1] {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .form-section[b-pb9djcfzs1] {
        padding: 1rem;
    }
    
    .form-section h2[b-pb9djcfzs1] {
        font-size: 1.3rem;
    }
    
    .checkbox-group[b-pb9djcfzs1] {
        align-items: flex-start;
    }
    
    .checkbox-group label[b-pb9djcfzs1] {
        font-size: 0.9rem;
    }
}
/* /Pages/Donate.razor.rz.scp.css */
/* Donate Page Specific Styles */

.donation-section[b-p0gb2pfov3] {
    padding: 4rem 0;
    background: var(--bg-light);
}

.donation-content[b-p0gb2pfov3] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.donation-options[b-p0gb2pfov3] {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.donation-options h2[b-p0gb2pfov3] {
    margin-bottom: 2rem;
    color: #333;
}

.amount-buttons[b-p0gb2pfov3] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.amount-btn[b-p0gb2pfov3] {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-btn:hover[b-p0gb2pfov3], .amount-btn.active[b-p0gb2pfov3] {
    border-color: var(--primary-teal);
    background: var(--primary-teal);
    color: var(--bg-white);
}

.custom-amount[b-p0gb2pfov3] {
    margin-bottom: 2rem;
}

.amount-input[b-p0gb2pfov3] {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
}

.donation-types[b-p0gb2pfov3] {
    margin-bottom: 2rem;
}

.donation-type[b-p0gb2pfov3] {
    display: block;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.donation-type input[b-p0gb2pfov3] {
    margin-right: 0.5rem;
}

.btn-large[b-p0gb2pfov3] {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.2rem;
}

.secure-note[b-p0gb2pfov3] {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.impact-info[b-p0gb2pfov3] {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.impact-info h3[b-p0gb2pfov3] {
    margin-bottom: 2rem;
    color: #333;
}

.impact-item[b-p0gb2pfov3] {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.impact-icon[b-p0gb2pfov3] {
    font-size: 2rem;
    margin-right: 1rem;
    width: 60px;
    text-align: center;
}

.impact-text[b-p0gb2pfov3] {
    color: #666;
}

.impact-text strong[b-p0gb2pfov3] {
    color: var(--primary-teal);
}

.other-ways[b-p0gb2pfov3] {
    padding: 4rem 0;
    background: white;
}

.other-ways h2[b-p0gb2pfov3] {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.help-options[b-p0gb2pfov3] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.help-card[b-p0gb2pfov3] {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.help-card:hover[b-p0gb2pfov3] {
    border-color: #2E8B87;
    transform: translateY(-5px);
}

.help-icon[b-p0gb2pfov3] {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.help-card h3[b-p0gb2pfov3] {
    margin-bottom: 1rem;
    color: #333;
}

.help-card p[b-p0gb2pfov3] {
    color: #666;
    margin-bottom: 1.5rem;
}

.transparency-section[b-p0gb2pfov3] {
    padding: 4rem 0;
    background: #f8f9fa;
    text-align: center;
}

.transparency-section h2[b-p0gb2pfov3] {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.transparency-grid[b-p0gb2pfov3] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.transparency-item[b-p0gb2pfov3] {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.percentage[b-p0gb2pfov3] {
    font-size: 3rem;
    font-weight: bold;
    color: #2E8B87;
    margin-bottom: 0.5rem;
}

.label[b-p0gb2pfov3] {
    color: #666;
    font-weight: 500;
}

.transparency-note[b-p0gb2pfov3] {
    max-width: 600px;
    margin: 0 auto;
    color: #666;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .page-header h1[b-p0gb2pfov3] {
        font-size: 2rem;
    }
    
    .donation-content[b-p0gb2pfov3] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .amount-buttons[b-p0gb2pfov3] {
        grid-template-columns: 1fr;
    }
    
    .help-options[b-p0gb2pfov3] {
        grid-template-columns: 1fr;
    }
    
    .transparency-grid[b-p0gb2pfov3] {
        grid-template-columns: 1fr;
    }
}

.cta-section[b-p0gb2pfov3] {
    padding: 4rem 0;
    background: var(--navy-gradient);
    color: var(--bg-white);
    text-align: center;
}

.cta-section h2[b-p0gb2pfov3] {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.cta-section p[b-p0gb2pfov3] {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--bg-white);
}
.cta-buttons[b-p0gb2pfov3] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    color: var(--bg-white);
}
/* /Pages/Fostering.razor.rz.scp.css */
/* Fostering Page Specific Styles */

.foster-hero[b-mbzarx5if2] {
    padding: 4rem 0;
    background: var(--bg-white);
}

.foster-content[b-mbzarx5if2] {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.foster-text h2[b-mbzarx5if2] {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.foster-text p[b-mbzarx5if2] {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.foster-benefits[b-mbzarx5if2] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item[b-mbzarx5if2] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius-small);
}

.benefit-icon[b-mbzarx5if2] {
    font-size: 1.5rem;
    min-width: 2rem;
}

.foster-image[b-mbzarx5if2] {
    display: flex;
    justify-content: center;
    align-items: center;
}

.foster-placeholder[b-mbzarx5if2] {
    text-align: center;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.foster-cat[b-mbzarx5if2] {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 25px var(--shadow-light);
}

.foster-emoji[b-mbzarx5if2] {
    font-size: 3rem;
}

.foster-caption[b-mbzarx5if2] {
    color: var(--text-medium);
    font-style: italic;
    margin: 0;
}

.foster-types[b-mbzarx5if2] {
    padding: 4rem 0;
    background: var(--bg-light);
}

.types-grid[b-mbzarx5if2] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.type-card[b-mbzarx5if2] {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: var(--transition);
}

.type-card:hover[b-mbzarx5if2] {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.type-icon[b-mbzarx5if2] {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.type-card h3[b-mbzarx5if2] {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.type-card p[b-mbzarx5if2] {
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.type-card p strong[b-mbzarx5if2] {
    color: var(--primary-teal);
}

.type-card ul[b-mbzarx5if2] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.type-card li[b-mbzarx5if2] {
    color: var(--text-medium);
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.type-card li[b-mbzarx5if2]::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-teal);
    font-weight: bold;
}

.foster-process[b-mbzarx5if2] {
    padding: 4rem 0;
    background: var(--bg-white);
}

.process-timeline[b-mbzarx5if2] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-step[b-mbzarx5if2] {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
}

.timeline-step:nth-child(even)[b-mbzarx5if2] {
    grid-template-columns: 1fr auto;
}

.timeline-step:nth-child(even) .step-content[b-mbzarx5if2] {
    text-align: right;
}

.step-number[b-mbzarx5if2] {
    width: 60px;
    height: 60px;
    background: var(--teal-gradient);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 15px var(--shadow-light);
}

.step-content h3[b-mbzarx5if2] {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.step-content p[b-mbzarx5if2] {
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

.foster-support[b-mbzarx5if2] {
    padding: 4rem 0;
    background: var(--bg-light);
}

.support-grid[b-mbzarx5if2] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.support-card[b-mbzarx5if2] {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: var(--transition);
}

.support-card:hover[b-mbzarx5if2] {
    transform: translateY(-5px);
}

.support-icon[b-mbzarx5if2] {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.support-card h3[b-mbzarx5if2] {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.support-card p[b-mbzarx5if2] {
    color: var(--text-medium);
    line-height: 1.6;
}

.foster-faq[b-mbzarx5if2] {
    padding: 4rem 0;
    background: var(--bg-white);
}

.faq-grid[b-mbzarx5if2] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item[b-mbzarx5if2] {
    padding: 2rem;
    border-left: 4px solid var(--primary-teal);
    background: var(--bg-light);
    border-radius: 0 var(--border-radius-small) var(--border-radius-small) 0;
}

.faq-item h3[b-mbzarx5if2] {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p[b-mbzarx5if2] {
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

/*
.foster-cta {
    padding: 4rem 0;
    background: var(--navy-gradient);
    color: var(--bg-white);
    text-align: center;
}

.foster-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.foster-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
*/

.cta-section[b-mbzarx5if2] {
    padding: 4rem 0;
    background: var(--navy-gradient);
    color: var(--bg-white);
    text-align: center;
}

.cta-section h2[b-mbzarx5if2] {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.cta-section p[b-mbzarx5if2] {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--bg-white);
}
.cta-buttons[b-mbzarx5if2] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    color: var(--bg-white);
}

/* Responsive Design */
@media (max-width: 768px) {
    .foster-content[b-mbzarx5if2] {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .types-grid[b-mbzarx5if2] {
        grid-template-columns: 1fr;
    }
    
    .timeline-step[b-mbzarx5if2],
    .timeline-step:nth-child(even)[b-mbzarx5if2] {
        grid-template-columns: auto 1fr;
        text-align: left;
    }
    
    .timeline-step:nth-child(even) .step-content[b-mbzarx5if2] {
        text-align: left;
    }
    
    .support-grid[b-mbzarx5if2] {
        grid-template-columns: 1fr;
    }
    
    .faq-grid[b-mbzarx5if2] {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons[b-mbzarx5if2] {
        flex-direction: column;
        align-items: center;
    }
}
/* /Pages/Fundraising.razor.rz.scp.css */
/* Fundraising Page Specific Styles */

.fundraising-hero[b-ofea5eehkr] {
    padding: 3rem 0;
    background: var(--bg-light);
}

.hero-stats[b-ofea5eehkr] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card[b-ofea5eehkr] {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: var(--transition);
}

.stat-card:hover[b-ofea5eehkr] {
    transform: translateY(-5px);
}

.stat-card .stat-number[b-ofea5eehkr] {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
}

.stat-card .stat-label[b-ofea5eehkr] {
    color: var(--text-medium);
    font-weight: 500;
}

.upcoming-events[b-ofea5eehkr] {
    padding: 4rem 0;
    background: var(--bg-white);
}

.events-grid[b-ofea5eehkr] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.event-card[b-ofea5eehkr] {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

.event-card:hover[b-ofea5eehkr] {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.event-card.featured[b-ofea5eehkr] {
    border: 3px solid var(--primary-teal);
}

.event-badge[b-ofea5eehkr] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-teal);
    color: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.event-image[b-ofea5eehkr] {
    height: 120px;
    background: var(--teal-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-emoji[b-ofea5eehkr] {
    font-size: 3rem;
}

.event-info[b-ofea5eehkr] {
    padding: 2rem;
}

.event-info h3[b-ofea5eehkr] {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.event-date[b-ofea5eehkr],
.event-time[b-ofea5eehkr],
.event-location[b-ofea5eehkr] {
    color: var(--text-medium);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.event-info p[b-ofea5eehkr] {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.event-goal[b-ofea5eehkr] {
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius-small);
}

.goal-text[b-ofea5eehkr] {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.progress-bar[b-ofea5eehkr] {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill[b-ofea5eehkr] {
    height: 100%;
    background: var(--teal-gradient);
    transition: width 0.3s ease;
}

.goal-progress[b-ofea5eehkr] {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.event-price[b-ofea5eehkr] {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.fundraising-campaigns[b-ofea5eehkr] {
    padding: 4rem 0;
    background: var(--bg-light);
}

.campaigns-grid[b-ofea5eehkr] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.campaign-card[b-ofea5eehkr] {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: var(--transition);
}

.campaign-card:hover[b-ofea5eehkr] {
    transform: translateY(-5px);
}

.campaign-icon[b-ofea5eehkr] {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.campaign-card h3[b-ofea5eehkr] {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.campaign-card p[b-ofea5eehkr] {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.campaign-progress[b-ofea5eehkr] {
    margin-bottom: 1.5rem;
}

.progress-info[b-ofea5eehkr] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.fundraising-ideas[b-ofea5eehkr] {
    padding: 4rem 0;
    background: var(--bg-white);
}

.ideas-content[b-ofea5eehkr] {
    text-align: center;
}

.ideas-text[b-ofea5eehkr] {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.ideas-text p[b-ofea5eehkr] {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.ideas-grid[b-ofea5eehkr] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.idea-card[b-ofea5eehkr] {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.idea-card:hover[b-ofea5eehkr] {
    background: var(--bg-white);
    box-shadow: 0 4px 20px var(--shadow-light);
    transform: translateY(-3px);
}

.idea-icon[b-ofea5eehkr] {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.idea-card h3[b-ofea5eehkr] {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.idea-card p[b-ofea5eehkr] {
    color: var(--text-medium);
    line-height: 1.6;
}

.corporate-partnerships[b-ofea5eehkr] {
    padding: 4rem 0;
    background: var(--bg-light);
}

.partnership-content[b-ofea5eehkr] {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.partnership-text h3[b-ofea5eehkr] {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.partnership-text p[b-ofea5eehkr] {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.1rem;
}

.partnership-options[b-ofea5eehkr] {
    display: grid;
    gap: 2rem;
}

.option-card[b-ofea5eehkr] {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px var(--shadow-light);
}

.option-card h4[b-ofea5eehkr] {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.option-card p[b-ofea5eehkr] {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.option-card ul[b-ofea5eehkr] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.option-card li[b-ofea5eehkr] {
    color: var(--text-medium);
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.option-card li[b-ofea5eehkr]::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-teal);
    font-weight: bold;
}

/*
.fundraising-cta {
    padding: 4rem 0;
    background: var(--navy-gradient);
    color: var(--bg-white);
    text-align: center;
}

.fundraising-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.fundraising-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
*/

.cta-section[b-ofea5eehkr] {
    padding: 4rem 0;
    background: var(--navy-gradient);
    color: var(--bg-white);
    text-align: center;
}

.cta-section h2[b-ofea5eehkr] {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.cta-section p[b-ofea5eehkr] {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--bg-white);
}
.cta-buttons[b-ofea5eehkr] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    color: var(--bg-white);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-stats[b-ofea5eehkr] {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .events-grid[b-ofea5eehkr] {
        grid-template-columns: 1fr;
    }
    
    .campaigns-grid[b-ofea5eehkr] {
        grid-template-columns: 1fr;
    }
    
    .ideas-grid[b-ofea5eehkr] {
        grid-template-columns: 1fr;
    }
    
    .partnership-content[b-ofea5eehkr] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons[b-ofea5eehkr] {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-card .stat-number[b-ofea5eehkr] {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-stats[b-ofea5eehkr] {
        grid-template-columns: 1fr;
    }
}
/* /Pages/Home.razor.rz.scp.css */
/* Home Page Specific Styles */

/* Main Banner */
.main-banner[b-vlzy7ifkp8] {
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.banner-image[b-vlzy7ifkp8] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Hero Section */
.hero-section[b-vlzy7ifkp8] {
    background: var(--bg-white);
    padding: 4rem 0;
}

.hero-title[b-vlzy7ifkp8] {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--text-dark);
}

.hero-subtitle[b-vlzy7ifkp8] {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    color: var(--text-medium);
}

.hero-buttons[b-vlzy7ifkp8] {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-buttons .btn[b-vlzy7ifkp8] {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.hero-image[b-vlzy7ifkp8] {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cat-placeholder[b-vlzy7ifkp8] {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cat-pic[b-vlzy7ifkp8] {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    margin: 0 auto 1rem;
    box-shadow: 0 12px 35px rgba(78, 205, 196, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.8);
    filter: blur(0.5px);
    transition: var(--transition);
}

.cat-pic:hover[b-vlzy7ifkp8] {
    filter: blur(0px);
    transform: scale(1.05);
    box-shadow: 0 15px 45px rgba(78, 205, 196, 0.4);
}

.image-caption[b-vlzy7ifkp8] {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin: 0;
}

.stat-item[b-vlzy7ifkp8] {
    text-align: center;
}

.stat-number[b-vlzy7ifkp8] {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label[b-vlzy7ifkp8] {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1024px) {
    /* Tablet landscape and small desktop */
    .banner-image[b-vlzy7ifkp8] {
        object-fit: contain;
        object-position: center top;
    }
}

@media (max-width: 768px) {
    /* Banner Mobile Styles */
    .main-banner[b-vlzy7ifkp8] {
        height: auto;
        min-height: 250px;
        max-height: 60vh;
    }
    
    .banner-image[b-vlzy7ifkp8] {
        object-fit: contain;
        object-position: center top;
        height: auto;
        max-height: 60vh;
    }
    
    /* Hero Section Mobile */
    .hero-content[b-vlzy7ifkp8] {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title[b-vlzy7ifkp8] {
        font-size: 2.5rem;
    }
    
    .hero-subtitle[b-vlzy7ifkp8] {
        font-size: 1.1rem;
    }
    
    .hero-buttons[b-vlzy7ifkp8] {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn[b-vlzy7ifkp8] {
        width: 100%;
        max-width: 280px;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .cat-pic[b-vlzy7ifkp8] {
        width: 200px;
        height: 200px;
    }
    
    .cat-emoji[b-vlzy7ifkp8] {
        font-size: 3rem;
    }
    
    .section-title[b-vlzy7ifkp8] {
        font-size: 2rem;
    }
    
    .features-grid[b-vlzy7ifkp8] {
        grid-template-columns: 1fr;
    }
    
    .stats-grid[b-vlzy7ifkp8] {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number[b-vlzy7ifkp8] {
        font-size: 2rem;
    }
    
    .cta-section h2[b-vlzy7ifkp8] {
        font-size: 2rem;
    }
    
    .cta-buttons[b-vlzy7ifkp8] {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .main-banner[b-vlzy7ifkp8] {
        height: auto;
        min-height: 200px;
        max-height: 50vh;
    }
    
    .banner-image[b-vlzy7ifkp8] {
        object-fit: contain;
        object-position: center top;
        height: auto;
        max-height: 50vh;
    }
    
    .hero-title[b-vlzy7ifkp8] {
        font-size: 2rem;
    }
    
    .hero-subtitle[b-vlzy7ifkp8] {
        font-size: 1rem;
    }
}
