/* ===== GET INVOLVED ENHANCED STYLES ===== */

/* Fix Top White Space for Get Involved Page */
body.get-involved-page {
    padding-top: 80px;
    /* Default for desktop */
}

/* Page Header Styles */
.get-involved-header {
    background: linear-gradient(135deg, var(--primary-wine) 0%, var(--primary-purple) 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    color: white !important;
    position: relative;
    overflow: hidden;
}

.get-involved-header h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-family: var(--font-display);
    margin-bottom: 1.5rem;
    color: white !important;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.get-involved-header p {
    font-size: clamp(1rem, 2vw, 1.4rem);
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.95) !important;
    line-height: 1.6;
}

/* Section Spacing & Text */
.section {
    padding: 6rem 0;
}

.section-header h2 {
    color: var(--primary-wine) !important;
    margin-bottom: 1.5rem;
}

.section-header p,
.section-subtitle {
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

/* Quick Link Cards */
.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.quick-link-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.quick-link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.quick-link-card h3 {
    color: var(--primary-wine) !important;
    margin-bottom: 1rem;
}

.quick-link-card p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Membership Tiers */
.membership-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.membership-card {
    background: white;
    border-radius: 25px;
    padding: 3.5rem 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.membership-card.featured {
    border: 3px solid var(--primary-wine);
    transform: scale(1.05);
    z-index: 2;
}

.membership-card h3 {
    color: var(--primary-wine) !important;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.membership-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 2rem;
}

.membership-benefits {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.membership-benefits li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #4b5563;
}

.membership-benefits i {
    color: var(--primary-gold);
}

.membership-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(114, 47, 55, 0.15);
}

.membership-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

/* Volunteer Form Premium UI */
.volunteer-form-section {
    background: var(--background-light);
    position: relative;
}

.volunteer-form-container {
    max-width: 1100px;
    margin: 0 auto;
}

.premium-form {
    background: white;
    padding: 4rem;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-light);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.form-column h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-wine) !important;
}

.form-column h3 i {
    font-size: 1.2rem;
    opacity: 0.8;
}

.form-row-compact {
    display: flex;
    gap: 1.5rem;
}

.flex-1 {
    flex: 1;
}

.premium-form .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
    align-items: stretch;
}

.premium-form label {
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.premium-form input,
.premium-form select,
.premium-form textarea {
    padding: 1rem 1.25rem;
    border: 2px solid #eef2f6;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
    background: white;
    border-color: var(--primary-wine);
    box-shadow: 0 0 0 4px rgba(114, 47, 55, 0.08);
    outline: none;
}

/* Interest Grid Chips */
.interest-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.interest-chip {
    cursor: pointer;
    position: relative;
}

.interest-chip input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.chip-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: #f8fafc;
    border: 2px solid #eef2f6;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--text-secondary);
}

.interest-chip:hover .chip-content {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.interest-chip input:checked+.chip-content {
    background: rgba(114, 47, 55, 0.05);
    border-color: var(--primary-wine);
    color: var(--primary-wine);
}

.interest-chip input:checked+.chip-content i {
    color: var(--primary-wine);
}

/* Form Footer */
.form-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eef2f6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-disclaimer {
    font-size: 0.85rem;
    color: var(--text-light);
    max-width: 400px;
    margin: 0 !important;
    text-align: left !important;
}

.volunteer-submit-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 15px;
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(114, 47, 55, 0.2);
}

.volunteer-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(114, 47, 55, 0.3);
}

@media (max-width: 992px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Forms Branding */
.donation-form,
.volunteer-application-form {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.donation-form h3,
.volunteer-application-form h3,
.volunteer-application-form h4 {
    color: var(--primary-wine) !important;
    margin-bottom: 1.5rem;
}

.form-group label {
    color: #374151;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    body.get-involved-page {
        padding-top: 60px !important;
    }

    .get-involved-header {
        padding: 4rem 1.5rem 3rem;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .membership-card.featured {
        transform: scale(1);
    }

    .donation-form,
    .volunteer-application-form {
        padding: 2rem 1.5rem;
    }

    .mission-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 3rem;
    }
}

/* iPhone SE Specific (Small Screens) */
@media (max-width: 400px) {
    body.get-involved-page {
        padding-top: 45px !important;
    }

    .get-involved-header {
        padding: 3.5rem 1rem 2.5rem;
    }

    .get-involved-header h1 {
        font-size: 2rem;
    }

    .get-involved-header p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem !important;
    }

    .quick-link-card,
    .membership-card {
        padding: 2rem 1.5rem;
    }

    .quick-link-card p,
    .membership-benefits li {
        font-size: 0.95rem;
        text-align: justify;
    }

    .btn-large {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}