/* Volunteer Page - Modern, Full-Width Design */

/* Volunteer Wrapper - Full Width */
.volunteer-wrapper {
    width: 100%;
    background: #f8f9fa;
    overflow-x: hidden;
}

/* Hero Section */
.volunteer-hero {
    background: linear-gradient(135deg, #00b590 0%, #006905 100%);
    color: white;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 60vh;
    position: relative;
    overflow: hidden;
}

.volunteer-hero-content {
    text-align: left;
}

.volunteer-hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.volunteer-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.volunteer-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.volunteer-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.volunteer-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.volunteer-hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* Main Content */
.volunteer-main-content {
    width: 100%;
    padding: 0;
    max-width: none;
    box-sizing: border-box;
}

/* Volunteer Sections */
.volunteer-section {
    padding: 4rem 2rem;
    background: white;
    margin-bottom: 0;
}

.volunteer-section:nth-child(even) {
    background: #f8fafc;
}

.volunteer-section-form {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.volunteer-section-info {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.volunteer-section-cta {
    background: linear-gradient(135deg, #00b590 0%, #006905 100%);
    color: white;
}

/* Section Content */
.volunteer-section-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.volunteer-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.volunteer-section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.volunteer-section-header h2 i {
    color: #00b590;
}

.volunteer-section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.volunteer-section-cta .volunteer-section-header h2,
.volunteer-section-cta .volunteer-section-subtitle {
    color: white;
}

.volunteer-section-cta .volunteer-section-header h2 i {
    color: white;
}

/* Benefits Grid */
.volunteer-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.volunteer-benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.volunteer-benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.volunteer-benefit-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #00b590, #006905);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
}

.volunteer-benefit-content h4 {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.volunteer-benefit-content p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Application Form Card */
.volunteer-application-form-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
    padding: 2rem;
    border: 1px solid rgba(0,0,0,0.05);
}

/* Form Sections */
.volunteer-form-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.volunteer-form-section:last-child {
    margin-bottom: 2rem;
}

.volunteer-form-section-header {
    margin-bottom: 2rem;
    text-align: center;
}

.volunteer-form-section-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.volunteer-form-section-header h3 i {
    color: #00b590;
}

.volunteer-form-section-header p {
    color: #6c757d;
    margin: 0;
    font-size: 1rem;
}

/* Form Grid */
.volunteer-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.volunteer-form-group {
    display: flex;
    flex-direction: column;
}

.volunteer-form-group-full {
    grid-column: 1 / -1;
}

.volunteer-form-group label {
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.volunteer-form-group input,
.volunteer-form-group textarea,
.volunteer-form-group select {
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

.volunteer-form-group input:focus,
.volunteer-form-group textarea:focus,
.volunteer-form-group select:focus {
    outline: none;
    border-color: #00b590;
    box-shadow: 0 0 0 3px rgba(0, 181, 144, 0.1);
}

.volunteer-form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.volunteer-form-error {
    color: #e53e3e;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.volunteer-form-help {
    color: #6c757d;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    font-style: italic;
}

.volunteer-form-actions {
    text-align: center;
    margin-top: 2rem;
}

.volunteer-reference-group {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.volunteer-reference-title {
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}



/* Info Grid */
.volunteer-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.volunteer-info-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.volunteer-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.volunteer-info-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #00b590, #006905);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
}

.volunteer-info-content h4 {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.volunteer-info-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.volunteer-info-btn {
    background: linear-gradient(135deg, #00b590, #006905);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.volunteer-info-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 181, 144, 0.4);
    color: white;
}

/* CTA Actions */
.volunteer-cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.volunteer-btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    min-width: 220px;
}

/* Buttons */
.volunteer-btn {
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    text-align: center;
    min-width: 160px;
}

.volunteer-btn-primary {
    background: linear-gradient(135deg, #00b590, #006905);
    color: white;
}

.volunteer-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 181, 144, 0.4);
    color: white;
}

.volunteer-btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.volunteer-btn-outline:hover {
    background: white;
    color: #00b590;
    transform: translateY(-2px);
}

/* Responsive Design */
            @media (max-width: 1200px) {
                .volunteer-hero {
                    grid-template-columns: 1fr;
                    text-align: center;
                    gap: 2rem;
                }
                
                .volunteer-benefits-grid {
                    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                }
                
                .volunteer-info-grid {
                    grid-template-columns: repeat(2, 1fr);
                    gap: 1.5rem;
                }
            }

@media (max-width: 768px) {
    .volunteer-wrapper {
        padding: 0;
    }
    
    .volunteer-hero {
        padding: 3rem 1rem;
        min-height: 50vh;
    }
    
    .volunteer-hero-title {
        font-size: 2.5rem;
    }
    
    .volunteer-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .volunteer-section {
        padding: 3rem 1rem;
    }
    
    .volunteer-section-header h2 {
        font-size: 2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
                    .volunteer-info-grid {
                    grid-template-columns: 1fr;
                    gap: 1.5rem;
                }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .volunteer-hero-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .volunteer-hero {
        padding: 2rem 0.5rem;
    }
    
    .volunteer-hero-title {
        font-size: 2rem;
    }
    
    .volunteer-section {
        padding: 2rem 0.5rem;
    }
    
    .volunteer-section-header h2 {
        font-size: 1.75rem;
    }
    
    .form-section {
        padding: 1.5rem;
    }
    
    .application-form-card {
        padding: 1.5rem;
    }
}
