/* Volunteer Page Specific Styles - Blue Theme */

/* Hero Section */
.volunteer-hero-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #4a90e2 100%);
    color: white;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.volunteer-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.volunteer-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

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

.volunteer-hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.volunteer-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.volunteer-hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.volunteer-stat-item {
    text-align: center;
}

.volunteer-stat-number {
    display: block;
    font-size: 2.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.volunteer-stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Form Section */
.volunteer-form-section {
    background: #f8faff;
    padding: 80px 0;
    min-height: 100vh;
}

.volunteer-form-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.volunteer-form-header {
    text-align: center;
    margin-bottom: 60px;
}

.volunteer-form-title {
    font-size: 2.8rem;
    color: #1e3c72;
    margin-bottom: 20px;
    position: relative;
}

.volunteer-form-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2a5298, #4a90e2);
    border-radius: 2px;
}

.volunteer-form-description {
    font-size: 1.1rem;
    color: #5a6c7d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Form Grid */
.volunteer-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.volunteer-form-section-card {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.08);
    border: 1px solid rgba(74, 144, 226, 0.1);
    transition: all 0.3s ease;
}

.volunteer-form-section-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(30, 60, 114, 0.12);
}

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

.volunteer-section-title {
    font-size: 1.4rem;
    color: #1e3c72;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.volunteer-section-title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #2a5298, #4a90e2);
    border-radius: 2px;
}

/* Form Elements */
.volunteer-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.volunteer-input-group {
    margin-bottom: 20px;
}

.volunteer-label {
    display: block;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.volunteer-input,
.volunteer-select,
.volunteer-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e1e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    font-family: inherit;
}

.volunteer-input:focus,
.volunteer-select:focus,
.volunteer-textarea:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
    transform: translateY(-1px);
}

.volunteer-textarea {
    resize: vertical;
    min-height: 100px;
}

.volunteer-select {
    cursor: pointer;
}

/* Checkbox Grid */
.volunteer-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.volunteer-checkbox-item {
    position: relative;
}

.volunteer-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.volunteer-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #f8faff;
    border: 2px solid #e1e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #2c3e50;
}

.volunteer-checkbox-label:hover {
    background: #eef4ff;
    border-color: #4a90e2;
    transform: translateY(-1px);
}

.volunteer-checkbox:checked + .volunteer-checkbox-label {
    background: linear-gradient(135deg, #4a90e2, #2a5298);
    color: white;
    border-color: #2a5298;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.volunteer-checkbox-icon {
    font-size: 1.2rem;
    min-width: 24px;
}

.volunteer-terms {
    margin-top: 25px;
    grid-column: 1 / -1;
}

.volunteer-terms-label {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Form Actions */
.volunteer-form-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.volunteer-btn {
    padding: 16px 40px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 160px;
}

.volunteer-btn-primary {
    background: linear-gradient(135deg, #4a90e2, #2a5298);
    color: white;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.volunteer-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
}

.volunteer-btn-secondary {
    background: #ffffff;
    color: #2a5298;
    border: 2px solid #2a5298;
}

.volunteer-btn-secondary:hover {
    background: #2a5298;
    color: white;
    transform: translateY(-2px);
}

/* Contact Section */
.volunteer-contact-section {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 60px 0;
}

.volunteer-contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.volunteer-contact-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.volunteer-contact-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.volunteer-contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.volunteer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.volunteer-contact-icon {
    font-size: 1.3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .volunteer-hero-title {
        font-size: 2.5rem;
    }
    
    .volunteer-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .volunteer-hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .volunteer-form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .volunteer-form-section-card {
        padding: 25px;
    }
    
    .volunteer-form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .volunteer-checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .volunteer-form-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .volunteer-contact-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .volunteer-form-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .volunteer-hero-section {
        padding: 60px 0 40px;
    }
    
    .volunteer-hero-title {
        font-size: 2rem;
    }
    
    .volunteer-form-section {
        padding: 60px 0;
    }
    
    .volunteer-form-container {
        padding: 0 15px;
    }
    
    .volunteer-form-section-card {
        padding: 20px;
    }
    
    .volunteer-btn {
        padding: 14px 30px;
        font-size: 1rem;
        min-width: 140px;
    }
}