/* ============================================
   TALENT APPLICATION - Premium Design
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.talent-application-wrapper {
    width: 100%;
    background: #f8f9fa;
}

/* HERO SECTION */
.talent-hero-section {
    width: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.talent-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><text x="10" y="50" font-size="40" fill="rgba(220,53,69,0.1)">♪</text></svg>');
    opacity: 0.3;
}

.talent-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.talent-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.talent-hero-content p {
    font-size: 18px;
    color: #e0e0e0;
    line-height: 1.6;
}

/* MAIN CONTAINER */
.talent-content-container {
    max-width: 1400px;
    margin: -40px auto 0;
    padding: 0 20px 80px;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* INFO SECTION - SOL TARAF */
.talent-info-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: sticky;
    top: 100px;
}

.talent-info-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.talent-info-icon {
    width: 60px;
    height: 60px;
    background: #dc3545;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.talent-info-icon i {
    font-size: 28px;
    color: #ffffff;
}

.talent-info-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.talent-info-list {
    list-style: none;
    padding: 0;
}

.talent-info-list li {
    padding: 10px 0;
    color: #555;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.talent-info-list li i {
    color: #dc3545;
    font-size: 16px;
}

/* PROCESS STEPS */
.talent-process {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #dc3545;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.process-step p {
    font-size: 15px;
    color: #555;
    margin: 0;
}

/* FORM SECTION - SAĞ TARAF */
.talent-form-section {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.talent-section-header {
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 3px solid #f0f0f0;
}

.talent-section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.talent-section-header p {
    font-size: 15px;
    color: #666;
}

/* FORM */
.talent-form {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.form-section {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #dc3545;
}

.form-section-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-section-title i {
    color: #dc3545;
    font-size: 22px;
}

.form-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.required {
    color: #dc3545;
}

.file-info {
    color: #999;
    font-size: 11px;
    font-weight: 400;
}

.form-input,
.form-input select {
    width: 100%;
    padding: 12px 18px;
    font-size: 15px;
    color: #333;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
}

/* FILE UPLOAD */
.file-upload-wrapper {
    position: relative;
}

.form-input-file {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 20px;
    background: #ffffff;
    border: 2px dashed #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    color: #666;
    font-weight: 500;
}

.file-upload-label:hover {
    border-color: #dc3545;
    color: #dc3545;
    background: #fff5f5;
}

.file-upload-label i {
    font-size: 20px;
}

.form-input-file:focus + .file-upload-label {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

/* CAPTCHA */
.captcha-section {
    background: #ffffff;
    border: 2px solid #e0e0e0;
}

.captcha-wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.captcha-image {
    border-radius: 8px;
    border: 2px solid #e0e0e0;
}

.captcha-input {
    max-width: 200px;
}

/* SUBMIT BUTTON */
.btn-submit {
    width: 100%;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    background: #dc3545;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
}

.btn-submit:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(220, 53, 69, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit i {
    font-size: 20px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
    .talent-content-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .talent-info-section {
        position: relative;
        top: 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .talent-hero-content h1 {
        font-size: 32px;
    }
    
    .talent-hero-content p {
        font-size: 16px;
    }
    
    .talent-form-section {
        padding: 30px 25px;
    }
    
    .form-section {
        padding: 20px;
    }
    
    .form-row-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .talent-info-section {
        grid-template-columns: 1fr;
    }
    
    .captcha-wrapper {
        flex-direction: column;
    }
    
    .captcha-input {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .talent-hero-section {
        padding: 60px 15px;
    }
    
    .talent-hero-content h1 {
        font-size: 26px;
    }
    
    .talent-content-container {
        padding: 0 15px 60px;
    }
    
    .talent-form-section {
        padding: 25px 20px;
    }
    
    .form-section {
        padding: 20px 15px;
    }
    
    .btn-submit {
        padding: 16px 30px;
        font-size: 16px;
    }
}
