/**
 * WorkLei Public Styles
 */

/* Form Styles */
.worklei-is-talebi-form,
.worklei-teklif-form,
.worklei-register-form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.worklei-is-talebi-form h3,
.worklei-teklif-form h3,
.worklei-register-form h3 {
    margin-top: 0;
    color: #333;
    border-bottom: 2px solid #1C75BC;
    padding-bottom: 10px;
}

.form-section {
    margin-bottom: 30px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 4px;
}

.form-section h4 {
    margin-top: 0;
    color: #555;
}

.form-row {
    margin-bottom: 15px;
}

.form-row-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-row.half {
    margin-bottom: 0;
}

.form-row label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row input[type="number"],
.form-row input[type="password"],
.form-row textarea,
.form-row select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.form-row textarea {
    resize: vertical;
    min-height: 80px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    font-weight: normal !important;
}

.checkbox-label input[type="checkbox"] {
    width: auto !important;
    margin-right: 8px;
}

/* Button Styles */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #1C75BC;
    color: #fff;
}

.btn-primary:hover {
    background: #155A94;
    color: #fff;
}

.btn-secondary {
    background: #f0f0f0;
    color: #333;
    border: 1px solid #ddd;
}

.btn-secondary:hover {
    background: #e0e0e0;
    color: #333;
}

.btn-primary:disabled,
.btn-secondary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Message Styles */
.success-message,
.error-message {
    padding: 12px 15px;
    margin: 15px 0;
    border-radius: 4px;
    font-weight: 500;
}

.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* İş Listesi */
.worklei-is-listesi {
    margin: 20px 0;
}

.worklei-is-listesi h3 {
    color: #333;
    border-bottom: 2px solid #1C75BC;
    padding-bottom: 10px;
}

.is-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.is-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

.is-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.is-card h4 {
    margin-top: 0;
    margin-bottom: 10px;
}

.is-card h4 a {
    color: #1C75BC;
    text-decoration: none;
}

.is-card h4 a:hover {
    text-decoration: underline;
}

.is-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 12px;
    color: #666;
}

.is-excerpt {
    margin-bottom: 15px;
    line-height: 1.5;
    color: #555;
}

.is-actions {
    display: flex;
    gap: 10px;
}

.is-actions .btn-primary,
.is-actions .btn-secondary {
    flex: 1;
    text-align: center;
    padding: 8px 12px;
    font-size: 12px;
}

/* Teklif Bilgisi */
.is-bilgisi {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.is-bilgisi h4 {
    margin-top: 0;
    color: #1C75BC;
}

.is-ozet {
    color: #555;
    line-height: 1.5;
}

/* Profil */
.worklei-profil {
    max-width: 800px;
    margin: 20px auto;
}

.profil-bilgileri,
.hizmet-saglayici-bilgileri,
.tekliflerim {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.profil-bilgileri h4,
.hizmet-saglayici-bilgileri h4,
.tekliflerim h4 {
    margin-top: 0;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.teklif-listesi {
    list-style: none;
    padding: 0;
}

.teklif-listesi li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.teklif-listesi li:last-child {
    border-bottom: none;
}

.profil-actions {
    text-align: center;
    margin-top: 20px;
}

.profil-actions .btn-primary,
.profil-actions .btn-secondary {
    margin: 0 10px;
}

/* Status Styles */
.status-onaylandi {
    color: #28a745;
    font-weight: bold;
}

.status-reddedildi {
    color: #dc3545;
    font-weight: bold;
}

.status-beklemede {
    color: #ffc107;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .worklei-is-talebi-form,
    .worklei-teklif-form,
    .worklei-register-form {
        margin: 10px;
        padding: 15px;
        border-radius: 8px;
    }
    
    .form-row-group {
        grid-template-columns: 1fr;
    }
}

/* Tablet responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .worklei-modern-job-form,
    .worklei-provider-form {
        margin: 20px;
        max-width: calc(100% - 40px);
    }
}
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .is-grid {
        grid-template-columns: 1fr;
    }
    
    .is-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .is-actions {
        flex-direction: column;
    }
    
    .profil-actions .btn-primary,
    .profil-actions .btn-secondary {
        display: block;
        width: 100%;
        margin: 5px 0;
    }

/* File Upload Preview */
#dokuman_preview,
#belge_preview {
    margin-top: 10px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 4px;
    min-height: 40px;
}

#dokuman_preview p,
#belge_preview p {
    margin: 5px 0;
}

#dokuman_preview a,
#belge_preview a {
    color: #1C75BC;
    text-decoration: none;
}

#dokuman_preview a:hover,
#belge_preview a:hover {
    text-decoration: underline;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #1C75BC;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Modern Job Form Styles */
.worklei-modern-job-form {
    max-width: 1100px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-top: 20px;
}

/* Form Header */
.form-header {
    background: linear-gradient(135deg, #1C75BC 0%, #144B96 100%);
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.form-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.form-subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
    line-height: 1.4;
}

/* Progress Bar */
.form-progress {
    padding: 24px;
    background: #f8f9fa;
}

.progress-bar {
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 16px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1C75BC, #144B96);
    width: 25%;
    transition: width 0.3s ease;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.step {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.step:hover {
    background: rgba(28, 117, 188, 0.1);
    color: #1C75BC;
    transform: translateY(-1px);
}

.step.active {
    color: #1C75BC;
    font-weight: 600;
    background: rgba(28, 117, 188, 0.15);
}

.step.active:hover {
    background: rgba(28, 117, 188, 0.2);
    transform: none;
}

.step.completed {
    color: #28a745;
    background: rgba(40, 167, 69, 0.1);
}

.step.completed:hover {
    background: rgba(40, 167, 69, 0.15);
    color: #1e7e34;
}

/* Form Steps */
.worklei-modern-job-form .form-step {
    display: none !important;
    padding: 32px;
}

.worklei-modern-job-form .form-step.active {
    display: block !important;
}

.worklei-modern-job-form .step-header {
    text-align: center;
    margin-bottom: 32px !important;
    margin-top: 0 !important;
    padding: 0 !important;
}

.step-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #343a40;
    margin: 0 0 8px 0;
}

.step-header p {
    font-size: 16px;
    color: #6c757d;
    margin: 0;
}

/* Form Grid */
.worklei-modern-job-form .form-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
}

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

/* Upload Areas */
.worklei-modern-job-form .upload-area {
    border: 2px dashed #e9ecef !important;
    border-radius: 12px !important;
    padding: 32px !important;
    text-align: center !important;
    background: #f8f9fa !important;
    transition: all 0.3s ease !important;
    margin-bottom: 24px !important;
}

.worklei-modern-job-form .upload-area:hover {
    border-color: #1C75BC !important;
    background: rgba(28, 117, 188, 0.05) !important;
}

/* Form Groups */
.worklei-modern-job-form .form-group {
    margin-bottom: 24px !important;
    padding: 0 !important;
}

.worklei-modern-job-form .form-group label {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px !important;
    font-weight: 600;
    color: #343a40;
}

.worklei-modern-job-form .form-group input:not(.input-wrapper input),
.worklei-modern-job-form .form-group textarea:not(.input-wrapper textarea),
.worklei-modern-job-form .form-group select {
    width: 100% !important;
    padding: 12px 16px !important;
    border: 2px solid #e9ecef !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    background: #fff !important;
    margin-bottom: 0 !important;
    box-sizing: border-box !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.worklei-modern-job-form .form-group input:not(.input-wrapper input):focus,
.worklei-modern-job-form .form-group textarea:not(.input-wrapper textarea):focus,
.worklei-modern-job-form .form-group select:focus {
    outline: none !important;
    border-color: #1C75BC !important;
    box-shadow: 0 0 0 3px rgba(28, 117, 188, 0.1) !important;
}

.worklei-modern-job-form .form-group textarea {
    min-height: 120px !important;
    resize: vertical !important;
    font-family: inherit !important;
}

.label-text {
    font-size: 15px;
}

.required {
    color: #dc3545;
    font-weight: 700;
}

/* Input Wrappers */
.worklei-modern-job-form .input-wrapper {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
}

.worklei-modern-job-form .input-icon {
    position: absolute !important;
    left: 16px !important;
    font-size: 16px !important;
    z-index: 2 !important;
    color: #6c757d !important;
    pointer-events: none !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.worklei-modern-job-form .input-wrapper input,
.worklei-modern-job-form .input-wrapper textarea {
    width: 100% !important;
    padding: 12px 16px 12px 48px !important;
    border: 1px solid #d3d3d3 !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    transition: all 0.3s ease !important;
    background: #fff !important;
    box-sizing: border-box !important;
    margin: 0 !important;
}

.worklei-modern-job-form .input-wrapper input:focus,
.worklei-modern-job-form .input-wrapper textarea:focus {
    outline: none !important;
    border-color: #1C75BC !important;
    box-shadow: 0 0 0 3px rgba(28, 117, 188, 0.1) !important;
}

/* Select Wrapper */
.select-wrapper {
    position: relative;
}

.select-wrapper select {
    width: 100%;
    padding: 16px 40px 16px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 15px;
    background: #fff;
    cursor: pointer;
    appearance: none;
    transition: all 0.3s ease;
}

.select-wrapper select:focus {
    outline: none;
    border-color: #1C75BC;
    box-shadow: 0 0 0 3px rgba(28, 117, 188, 0.1);
}

.select-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 14px;
}

/* Upload Sections */
.image-upload-section,
.document-upload-section {
    margin-top: 24px;
}

.upload-dropzone {
    border: 3px dashed #dee2e6;
    border-radius: 12px;
    padding: 48px 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.upload-dropzone:hover,
.upload-dropzone.dragover {
    border-color: #1C75BC;
    background: rgba(28, 117, 188, 0.05);
}

.upload-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
}

.dropzone-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #343a40;
    margin: 0 0 8px 0;
}

.dropzone-content p {
    font-size: 16px;
    color: #6c757d;
    margin: 0 0 8px 0;
}

.browse-btn,
.browse-docs-btn {
    background: none;
    border: none;
    color: #1C75BC;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

.dropzone-content small {
    font-size: 13px;
    color: #868e96;
}

/* Uploaded Files */
.uploaded-images,
.uploaded-documents {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
}

.upload-item {
    position: relative;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.upload-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.upload-item-info {
    padding: 12px;
    background: #f8f9fa;
}

.upload-item-name {
    font-size: 13px;
    font-weight: 600;
    color: #343a40;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.upload-item-size {
    font-size: 12px;
    color: #6c757d;
}

.remove-upload {
    position: absolute!important;
    top: 6px !important;
    right: 6px !important;
    /*width: 28px !important;
    height: 28px !important;*/
    background: rgba(255, 255, 255, 0.5)!important;
    color: #dc3545;
    border: 2px solid #dc3545!important ;
    border-radius: 50%!important;
    cursor: pointer!important;
    font-size: 14px!important;
    display: flex!important;
    align-items: center!important;
    justify-content: center!important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15)!important;
    transition: all 0.2s ease;
    font-weight: 600!important;
    z-index: 10!important;
    backdrop-filter: blur(4px) !important;
}

.remove-upload:hover {
    background: #dc3545!important;
    color: white!important;
    transform: scale(1.05)!important;
    box-shadow: 0 3px 10px rgba(220, 53, 69, 0.3)!important;
}

.remove-upload:active {
    transform: scale(0.98);
}

/* Navigation */
.worklei-modern-job-form .form-navigation {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 24px 32px !important;
    background: #f8f9fa !important;
    border-top: 1px solid #e9ecef !important;
    margin-top: 32px !important;
    margin-bottom: 0 !important;
}

.nav-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.prev-btn {
    background: #6c757d;
    color: white;
}

.next-btn {
    background: #1C75BC;
    color: white;
}

/* Bu submit-btn tanımı artık provider form için ayrılmış submit-btn ile değiştirildi */

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.nav-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Messages */
.form-messages {
    margin: 24px 32px;
}

.success-message {
    padding: 16px;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
}

.error-message {
    padding: 16px;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
}

/* Responsive for modern form */
@media (max-width: 768px) {
    .worklei-modern-job-form {
        margin: 16px;
        border-radius: 8px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    }
    
    .form-header {
        padding: 32px 20px;
    }
    
    .form-title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .form-subtitle {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .worklei-modern-job-form .form-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .form-step {
        padding: 24px 20px;
    }
    
    .progress-steps {
        font-size: 12px;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .step {
        flex: 1;
        min-width: calc(50% - 4px);
        text-align: center;
        padding: 6px 8px;
        font-size: 12px;
    }
    
    .step:hover {
        transform: none; /* Mobilde transform kaldır */
    }
    
    .worklei-modern-job-form .form-navigation {
        padding: 20px !important;
        gap: 12px !important;
        margin-top: 24px !important;
    }
    
    .nav-btn {
        padding: 12px 16px;
        font-size: 14px;
        flex: 1;
        min-width: 120px;
    }
    
    .upload-area {
        padding: 24px 16px;
    }
    
    .upload-text {
        font-size: 14px;
    }
    
    .worklei-modern-job-form .input-wrapper input,
    .worklei-modern-job-form .input-wrapper textarea {
        padding: 12px 16px 12px 44px !important;
        font-size: 16px !important; /* iOS zoom engelleyici */
    }
    
    .worklei-modern-job-form .input-icon {
        left: 14px !important;
        font-size: 14px !important;
    }
}

/* Provider Form Styles */
.worklei-provider-form {
    max-width: 1100px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-top: -10px !important;
   
}

/* Form Sections */
.form-section {
    margin-bottom: 30px;
    padding: 25px;
    border-bottom: 1px solid #e9ecef;
}

.form-section:last-child {
    border-bottom: none;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #1C75BC;
}

.section-icon {
    font-size: 24px;
}

.section-description {
    color: #6c757d;
    font-size: 14px;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

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

.form-row {
    margin-bottom: 20px;
}

.form-row.half {
    margin-bottom: 0;
}

.form-row label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 14px;
}

.required {
    color: #dc3545;
    margin-left: 3px;
}

.form-row input,
.form-row textarea,
.form-row select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #1C75BC;
    box-shadow: 0 0 0 3px rgba(28, 117, 188, 0.1);
}

.form-row input.error {
    border-color: #dc3545;
}

.error-message {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
}

.field-help {
    display: block;
    color: #6c757d;
    font-size: 12px;
    margin-top: 5px;
    line-height: 1.4;
}

/* Document Upload Styles */
.document-category {
    margin-bottom: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #1C75BC;
}

.document-category-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 10px 0;
}

.category-icon {
    font-size: 20px;
}

.category-description {
    color: #6c757d;
    font-size: 14px;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.document-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.document-upload-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.document-upload-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.document-label {
    display: block;
    padding: 15px;
    background: linear-gradient(135deg, #1C75BC 0%, #2980b9 100%);
    color: white;
    text-align: center;
    cursor: pointer;
}

.document-icon {
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
}

.document-name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
    display: block;
}

.document-desc {
    font-size: 12px;
    opacity: 0.9;
    display: block;
}

.document-drop-zone {
    border: 2px dashed #dee2e6;
    border-radius: 0 0 8px 8px;
    padding: 20px;
    text-align: center;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.document-drop-zone:hover {
    border-color: #1C75BC;
    background: #e3f2fd;
}

.document-drop-zone.drag-over {
    border-color: #1C75BC;
    background: #e3f2fd;
    transform: scale(1.02);
}

.document-drop-zone.has-file {
    border-color: #28a745;
    background: #d4edda;
}

.drop-zone-content {
    width: 100%;
}

.upload-icon {
    font-size: 32px;
    color: #6c757d;
    margin-bottom: 10px;
    display: block;
}

.drop-text {
    color: #6c757d;
    font-size: 14px;
    margin: 0 0 10px 0;
}

.file-select-btn {
    background: #1C75BC;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.file-select-btn:hover {
    background: #155a8a;
}

.file-info {
    color: #6c757d;
    font-size: 11px;
    margin: 8px 0 0 0;
    line-height: 1.3;
}

/* Upload Preview Styles */
.upload-preview {
    margin-top: 15px;
}

.upload-item {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.3s ease;
}

.upload-item:hover {
    background: #f8f9fa;
}

.upload-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.file-icon {
    font-size: 24px;
}

.file-details {
    flex: 1;
}

.upload-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 13px;
    margin-bottom: 2px;
    word-break: break-word;
}

.upload-size {
    color: #6c757d;
    font-size: 11px;
    margin-bottom: 2px;
}

.upload-type {
    background: #1C75BC;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 600;
    display: inline-block;
}

.remove-upload {
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.remove-upload:hover {
    background: #c82333;
}

/* Multiple Files Upload */
.multiple-uploads {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 15px;
}

.uploads-header {
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.file-count {
    font-weight: 600;
    color: #1C75BC;
    font-size: 14px;
}

.multiple-item {
    background: #fff;
    margin-bottom: 8px;
}

.multiple-item:last-child {
    margin-bottom: 0;
}

/* File Format Info */
.file-format-info {
    background: #e9ecef;
    border-radius: 6px;
    padding: 15px;
    margin-top: 20px;
}

.file-format-info h5 {
    margin: 0 0 10px 0;
    color: #2c3e50;
    font-size: 14px;
    font-weight: 600;
}

.file-format-info ul {
    margin: 0 0 10px 0;
    padding-left: 20px;
}

.file-format-info li {
    color: #495057;
    font-size: 13px;
    margin-bottom: 4px;
}

.format-note {
    color: #6c757d;
    font-size: 12px;
    margin: 0;
    font-style: italic;
}

/* Individual Document Upload Styles */
.individual-document-upload {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.individual-label {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    padding: 20px;
}

.individual-drop-zone {
    min-height: 150px;
    border-radius: 0;
}

.document-examples {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
}

.document-examples h5 {
    margin: 0 0 15px 0;
    color: #2c3e50;
    font-size: 16px;
    font-weight: 600;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.example-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    transition: background 0.3s ease;
}

.example-item:hover {
    background: #e3f2fd;
}

.example-icon {
    font-size: 18px;
}

.example-text {
    font-size: 13px;
    color: #495057;
    font-weight: 500;
}

/* Responsive Design for Document Upload */
@media (max-width: 768px) {
    .document-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .document-upload-item {
        margin-bottom: 15px;
    }
    
    .document-label {
        padding: 12px;
    }
    
    .document-icon {
        font-size: 20px;
        margin-bottom: 6px;
    }
    
    .document-name {
        font-size: 13px;
    }
    
    .document-desc {
        font-size: 11px;
    }
    
    .document-drop-zone {
        padding: 15px;
        min-height: 100px;
    }
    
    .upload-icon {
        font-size: 28px;
    }
    
    .drop-text {
        font-size: 13px;
    }
    
    .file-select-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .upload-item {
        padding: 10px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .upload-info {
        width: 100%;
        margin-bottom: 8px;
    }
    
    .remove-upload {
        align-self: flex-end;
    }
    
    .file-format-info {
        padding: 12px;
    }
    
    .file-format-info h5 {
        font-size: 13px;
    }
    
    .file-format-info li {
        font-size: 12px;
    }
    
    /* Individual Documents Mobile */
    .individual-label {
        padding: 15px;
    }
    
    .individual-drop-zone {
        min-height: 120px;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .example-item {
        padding: 8px;
    }
    
    .example-icon {
        font-size: 16px;
    }
    
    .example-text {
        font-size: 12px;
    }
}

/* Service Type Selection */
.service-type-selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.service-type-card {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

.service-type-card:hover {
    border-color: #1C75BC;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(28, 117, 188, 0.15);
}

.service-type-card.selected {
    border-color: #1C75BC;
    background: linear-gradient(135deg, rgba(28, 117, 188, 0.1) 0%, rgba(20, 75, 150, 0.1) 100%);
    box-shadow: 0 8px 25px rgba(28, 117, 188, 0.2);
}

.service-type-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.service-type-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #2c3e50;
}

.service-type-card p {
    font-size: 13px;
    color: #6c757d;
    margin: 0;
    line-height: 1.4;
}

/* Conditional Sections */
.conditional-section {
    margin-top: 20px;
}

/* Categories Container */
.categories-container {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    background: #f8f9fa;
    padding: 20px;
    margin-bottom: 25px;
}

.category-group {
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
    overflow: hidden;
}

.category-group:last-child {
    margin-bottom: 0;
}

.main-category {
    display: block;
    padding: 15px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    cursor: pointer;
    font-weight: 600;
    color: #2c3e50;
    transition: background-color 0.3s ease;
}

.main-category:hover {
    background: #e9ecef;
}

.main-category-input:checked + .category-name {
    color: #1C75BC;
}

.sub-categories {
    padding: 10px 20px 20px 40px;
    background: white;
}

.sub-category {
    display: block;
    padding: 8px 0;
    cursor: pointer;
    color: #495057;
    font-size: 14px;
    transition: color 0.3s ease;
}

.sub-category:hover {
    color: #1C75BC;
}

.sub-category-input:checked + .category-name {
    color: #1C75BC;
    font-weight: 600;
}

.main-category input[type="checkbox"],
.sub-category input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.1);
}

.category-name {
    transition: color 0.3s ease;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.category-card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

.category-card:hover {
    border-color: #1C75BC;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(28, 117, 188, 0.15);
}

.category-card input[type="checkbox"]:checked + .category-content {
    opacity: 1;
}

.category-card input[type="checkbox"]:checked ~ .category-check {
    opacity: 1;
    transform: scale(1);
}

.category-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.category-content {
    transition: opacity 0.3s ease;
}

.category-icon {
    font-size: 24px;
    margin-bottom: 10px;
}

.category-name {
    font-weight: 600;
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 5px;
}

.category-desc {
    font-size: 12px;
    color: #6c757d;
    line-height: 1.4;
}

.category-check {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.3s ease;
}

/* Custom Services */
.custom-services-section {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.custom-service-input {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.custom-service-input input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
}

.add-btn {
    background: #28a745;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.add-btn:hover {
    background: #218838;
    transform: translateY(-1px);
}

.custom-services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.custom-service-tag {
    background: #1C75BC;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.remove-service {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
}

/* Summary Card */
.summary-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.summary-card h4 {
    margin: 0 0 15px 0;
    color: #2c3e50;
    font-weight: 600;
}

.summary-item {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item strong {
    color: #495057;
    margin-right: 10px;
}

/* Checkbox Wrapper */
.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    margin: 15px 0;
    padding: 15px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.checkbox-wrapper:hover {
    background: rgba(28, 117, 188, 0.05);
}

.checkbox-wrapper input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark {
    background: #1C75BC;
    border-color: #1C75BC;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.terms-text {
    font-size: 14px;
    line-height: 1.5;
    color: #495057;
}

.terms-text a {
    color: #1C75BC;
    text-decoration: none;
    font-weight: 600;
}

.terms-text a:hover {
    text-decoration: underline;
}

/* Section Titles */
.section-subtitle h4 {
    color: #2c3e50;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.section-subtitle p {
    color: #6c757d;
    font-size: 14px;
    margin: 0 0 20px 0;
}

.experience-section h4 {
    color: #2c3e50;
    font-weight: 600;
    margin: 30px 0 15px 0;
}

/* Upload Section */
.upload-section {
    margin-top: 20px;
}

.upload-label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

/* Submit Section */
.submit-section {
    text-align: center;
    margin-top: 30px;
}

.submit-btn {
    background: #1C75BC;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 240px;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(28, 117, 188, 0.2);
    text-transform: none;
    letter-spacing: normal;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(28, 117, 188, 0.3);
    background: #155A94;
}

.submit-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(28, 117, 188, 0.2), 0 4px 12px rgba(28, 117, 188, 0.2);
}

.submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(28, 117, 188, 0.3);
}

/* Shine effect removed for cleaner appearance */

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.submit-icon {
    font-size: 18px;
    opacity: 0.9;
}

.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Provider Form Responsive Design */
@media (max-width: 768px) {
    .worklei-provider-form {
        margin: 16px;
        border-radius: 8px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    }
    
    .form-section {
        padding: 20px 15px;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .service-type-selection {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-row-group {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-row.half {
        margin-bottom: 20px;
    }
    
    .categories-container {
        padding: 15px;
    }
    
    .main-category {
        padding: 12px 15px;
    }
    
    .sub-categories {
        padding: 10px 15px 15px 30px;
    }
    
    .custom-service-input {
        flex-direction: column;
        gap: 10px;
    }
    
    .submit-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
        min-width: auto;
        gap: 6px;
    }
    
    /* iOS zoom engelleyici */
    textarea {
        font-size: 16px;
    }
    
    input[type="text"],
    input[type="email"],
    input[type="tel"] {
        font-size: 16px;
    }
    
    .section-description {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .service-type-card {
        padding: 20px 16px;
    }
    
    .categories-container {
        border-radius: 8px;
    }
    
    .main-category {
        font-size: 15px;
    }
    
    .sub-category {
        font-size: 14px;
        padding: 8px 0;
    }
}