/* =============================================
   FORM STYLES - & VOLUNTEER FORM
   ============================================= */

/* Volunteer Form Section */
.volunteer-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Form Wrapper */
.form-wrapper {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    margin-top: 30px;
}

/* Form Groups */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.required {
    color: #d73835;
    margin-left: 3px;
}

/* Text Inputs, Selects, Textareas - Excluding checkboxes/radios */
.form-group input:not([type="checkbox"]):not([type="radio"]),
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    background: #ffffff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:not([type="checkbox"]):not([type="radio"]):focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1A685B;
    box-shadow: 0 0 0 4px rgba(26, 104, 91, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Checkbox Groups - Layout only, no input styling */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 5px;
}

.checkbox-group label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
    cursor: pointer;
    background: #f8f9fa;
    padding: 8px 16px;
    border-radius: 40px;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.checkbox-group label:hover {
    background: #e8f5e9;
}

.checkbox-group input {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    accent-color: #1A685B;
}

/* Radio Groups - Layout only, no input styling */
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 5px;
}

.radio-group label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
    cursor: pointer;
    margin-bottom: 0;
}

.radio-group input {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    accent-color: #1A685B;
}

/* Conditional Fields */
.conditional-field {
    margin-top: 15px;
    display: none;
}

.conditional-field.show,
.conditional-field.active {
    display: block;
}

.conditional-field input,
.conditional-field textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    background: #fafafa;
    box-sizing: border-box;
}

.conditional-field input:focus,
.conditional-field textarea:focus {
    outline: none;
    border-color: #1A685B;
    background: #ffffff;
}

/* File Upload */
.file-upload-area {
    border: 2px dashed #d0d0d0;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    background: #fafafa;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-area:hover {
    border-color: #1A685B;
    background: #f0fdfa;
}

.file-upload-area input {
    display: none;
}

.upload-label {
    color: #1A685B;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
}

.upload-label::before {
    content: "📄 ";
    font-size: 20px;
}

.file-name {
    font-size: 13px;
    color: #888;
    margin-top: 12px;
    display: block;
}

/* Consent Box */
.consent-box {
    background: #f8f9fa;
    padding: 25px 30px;
    border-radius: 20px;
    margin: 30px 0;
    border-left: 4px solid #1A685B;
}

.consent-box label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 0;
}

.consent-box input {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    accent-color: #1A685B;
}

.consent-note {
    font-size: 12px;
    color: #888;
    margin-top: 12px;
    margin-left: 32px;
    line-height: 1.5;
}

/* Submit Button */
.submit-btn {
    background: #1A685B;
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 280px;
    box-shadow: 0 4px 15px rgba(26, 104, 91, 0.3);
}

.submit-btn:hover {
    background: #0e4d43;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 104, 91, 0.4);
}

/* Error Messages */
.error-message {
    color: #d73835;
    font-size: 12px;
    margin-top: 6px;
    display: block;
    font-weight: 500;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #d73835;
    background: #fff5f5;
}

/* Section Title (if not already defined globally) */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title .sub-title {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #d73835;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1A685B;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .volunteer-form-section {
        padding: 60px 0;
    }
    
    .form-wrapper {
        padding: 35px;
    }
    
    .section-title h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .volunteer-form-section {
        padding: 50px 0;
    }
    
    .form-wrapper {
        padding: 25px;
    }
    
    .checkbox-group {
        gap: 12px;
    }
    
    .checkbox-group label {
        padding: 6px 14px;
        font-size: 13px;
    }
    
    .radio-group {
        gap: 20px;
    }
    
    .submit-btn {
        max-width: 100%;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
    
    .consent-box {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .volunteer-form-section {
        padding: 40px 0;
    }
    
    .form-wrapper {
        padding: 20px;
    }
    
    .checkbox-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .checkbox-group label {
        display: flex;
        padding: 8px 12px;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .section-title h2 {
        font-size: 26px;
    }
    
    .section-title p {
        font-size: 14px;
    }
}
























/* =============================================
   PARTNERSHIP FORM STYLES
   ============================================= */

.partnership-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Category Selection */
.partner-category-section {
    margin-bottom: 40px;
}

.category-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.category-btn-partner {
    flex: 1;
    max-width: 300px;
    padding: 25px 20px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.category-btn-partner:hover {
    border-color: #1A685B;
    transform: translateY(-5px);
}

.category-btn-partner.active {
    border-color: #1A685B;
    background: #f0fdfa;
}

.category-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 10px;
}

.category-name {
    font-size: 20px;
    font-weight: 700;
    color: #1A685B;
    display: block;
    margin-bottom: 5px;
}

.category-desc {
    font-size: 12px;
    color: #666;
}

/* Progress Tracker */
.progress-tracker {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.progress-step {
    text-align: center;
    flex: 1;
    cursor: pointer;
}

.step-number {
    width: 35px;
    height: 35px;
    background: #e0e0e0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #666;
    font-size: 14px;
}

.progress-step.active .step-number {
    background: #1A685B;
    color: white;
}

.progress-step.completed .step-number {
    background: #1A685B;
    color: white;
}

.step-label {
    font-size: 11px;
    color: #666;
    margin-top: 5px;
}

.progress-step.active .step-label {
    color: #1A685B;
    font-weight: 600;
}

.progress-bar {
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #1A685B;
    width: 0%;
    transition: width 0.3s;
}

/* Form Sections */
.form-section-partner {
    display: none;
}

.form-section-partner.active {
    display: block;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Navigation Buttons */
.nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.nav-btn {
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 14px;
}

.nav-btn.prev {
    background: #f0f0f0;
    color: #666;
}

.nav-btn.prev:hover {
    background: #e0e0e0;
}

.nav-btn.next {
    background: #1A685B;
    color: white;
}

.nav-btn.next:hover {
    background: #145a4f;
}

.nav-btn.submit {
    background: #1A685B;
    color: white;
}

.nav-btn.submit:hover {
    background: #145a4f;
}

/* Responsive */
@media (max-width: 768px) {
    .category-buttons {
        gap: 15px;
    }
    
    .category-btn-partner {
        max-width: 100%;
        padding: 15px;
    }
    
    .category-icon {
        font-size: 36px;
    }
    
    .category-name {
        font-size: 16px;
    }
    
    .progress-steps {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .progress-step {
        flex: 0 0 auto;
    }
    
    .step-label {
        font-size: 10px;
    }
    
    .nav-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .nav-btn {
        width: 100%;
        text-align: center;
    }
}

























