/* ========== CAREER SAYFASI - ÖZEL STILLER ========== */
/* Header, footer ve genel stiller style.css'den gelir */

/* HERO - ÇOK FARKLI VE GÜZEL */
.career-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
}

.career-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(52,211,153,0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(56,189,248,0.12) 0%, transparent 50%),
        repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 2px, transparent 2px, transparent 8px);
    pointer-events: none;
}

.career-hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: #34d399;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: #38bdf8;
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: #a855f7;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
    opacity: 0.2;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.career-hero-content {
    position: relative;
    max-width: 800px;
    padding: 80px 24px;
    z-index: 10;
}

.career-hero-icon {
    font-size: 4rem;
    background: linear-gradient(135deg, #34d399, #38bdf8);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 30px;
    animation: pulse 2s infinite;
    box-shadow: 0 0 30px rgba(52,211,153,0.3);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(52,211,153,0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 60px rgba(52,211,153,0.6);
        transform: scale(1.05);
    }
}

.career-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease;
}

.career-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.1s backwards;
}

.career-hero-date {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.career-hero-date span {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 0.85rem;
    color: #cbd5e1;
}

.career-hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: white;
    font-size: 0.8rem;
    opacity: 0.7;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
}

.career-hero-scroll span:first-child {
    font-size: 1.2rem;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* NEDEN PYRONPRIME BÖLÜMÜ */
.career-why {
    padding: 70px 0;
    background: #ffffff;
    text-align: center;
}

body.dark-mode .career-why {
    background: #0a0f2a;
}

.career-why h2 {
    font-size: 2.2rem;
    color: #1e3a8a;
    margin-bottom: 16px;
}

body.dark-mode .career-why h2 {
    color: #60a5fa;
}

.section-subtitle {
    color: #64748b;
    margin-bottom: 50px;
}

body.dark-mode .section-subtitle {
    color: #cbd5e1;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.why-card {
    background: #f8fafc;
    padding: 30px 20px;
    border-radius: 20px;
    transition: transform 0.3s;
}

body.dark-mode .why-card {
    background: #11173b;
}

.why-card:hover {
    transform: translateY(-5px);
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.why-card h3 {
    font-size: 1.2rem;
    color: #1e3a8a;
    margin-bottom: 12px;
}

body.dark-mode .why-card h3 {
    color: #60a5fa;
}

.why-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

body.dark-mode .why-card p {
    color: #cbd5e1;
}

/* AÇIK POZİSYONLAR */
.career-positions {
    padding: 70px 0;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    text-align: center;
}

body.dark-mode .career-positions {
    background: linear-gradient(135deg, #0f142e, #11173b);
}

.career-positions h2 {
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 16px;
}

body.dark-mode .career-positions h2 {
    color: #60a5fa;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.position-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

body.dark-mode .position-card {
    background: #11173b;
    border-color: #1e2a5e;
}

.position-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px -8px rgba(0,0,0,0.15);
}

.position-card.featured {
    border: 2px solid #f59e0b;
    background: linear-gradient(135deg, #ffffff, #fffbeb);
}

body.dark-mode .position-card.featured {
    background: linear-gradient(135deg, #11173b, #1a1f3e);
    border-color: #f59e0b;
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.position-header h3 {
    font-size: 1.2rem;
    color: #1e3a8a;
}

body.dark-mode .position-header h3 {
    color: #60a5fa;
}

.position-type {
    background: #e0e7ff;
    color: #1e3a8a;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
}

body.dark-mode .position-type {
    background: #1e2a5e;
    color: #93c5fd;
}

.position-location {
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

body.dark-mode .position-location {
    color: #cbd5e1;
}

.position-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

body.dark-mode .position-card p {
    color: #cbd5e1;
}

.position-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.position-tags span {
    background: #f1f5f9;
    color: #475569;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
}

body.dark-mode .position-tags span {
    background: #1e2a5e;
    color: #cbd5e1;
}

.apply-btn {
    display: inline-block;
    background: #1e3a8a;
    color: white;
    padding: 10px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.apply-btn:hover {
    background: #1e40af;
    transform: translateX(5px);
}

/* STAJ BÖLÜMÜ */
.career-intern {
    padding: 60px 0;
    background: #ffffff;
}

body.dark-mode .career-intern {
    background: #0a0f2a;
}

.intern-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #e0e7ff, #d1d5db);
    padding: 50px;
    border-radius: 30px;
}

body.dark-mode .intern-box {
    background: linear-gradient(135deg, #1e2a5e, #11173b);
}

.intern-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.intern-box h3 {
    font-size: 1.5rem;
    color: #1e3a8a;
    margin-bottom: 12px;
}

body.dark-mode .intern-box h3 {
    color: #60a5fa;
}

.intern-box p {
    color: #475569;
    margin-bottom: 24px;
}

body.dark-mode .intern-box p {
    color: #cbd5e1;
}

.intern-apply {
    display: inline-block;
    background: #1e3a8a;
    color: white;
    padding: 12px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.intern-apply:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

/* MODAL STILLERI */
.application-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    max-width: 500px;
    width: 90%;
    border-radius: 24px;
    padding: 30px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

body.dark-mode .modal-content {
    background: #11173b;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #64748b;
}

.modal-close:hover {
    color: #1e3a8a;
}

.modal-header h3 {
    font-size: 1.5rem;
    color: #1e3a8a;
    margin-bottom: 8px;
}

body.dark-mode .modal-header h3 {
    color: #60a5fa;
}

.modal-header p {
    color: #64748b;
    margin-bottom: 20px;
}

.application-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.application-form .form-group input,
.application-form .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.9rem;
    background: white;
}

body.dark-mode .application-form .form-group input,
body.dark-mode .application-form .form-group textarea {
    background: #0a0f2a;
    border-color: #1e2a5e;
    color: white;
}

.file-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.file-label input {
    display: none;
}

.file-label span {
    display: inline-block;
    background: #f1f5f9;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    cursor: pointer;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-checkbox label {
    font-size: 0.8rem;
    color: #64748b;
}

.form-checkbox a {
    color: #1e3a8a;
    text-decoration: none;
}

.submit-btn {
    background: #1e3a8a;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #1e40af;
}

/* MOBİL UYUM */
@media (max-width: 768px) {
    .career-hero {
        min-height: 450px;
    }
    
    .career-hero-title {
        font-size: 2rem;
    }
    
    .career-hero-subtitle {
        font-size: 0.95rem;
    }
    
    .career-hero-date {
        gap: 15px;
    }
    
    .career-hero-date span {
        font-size: 0.7rem;
        padding: 5px 12px;
    }
    
    .career-hero-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .positions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .position-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .intern-box {
        padding: 30px 20px;
    }
    
    .career-hero-scroll {
        display: none;
    }
}

@media (max-width: 480px) {
    .career-hero-title {
        font-size: 1.6rem;
    }
    
    .career-hero-icon {
        width: 55px;
        height: 55px;
        font-size: 2rem;
    }
    
    .career-why h2,
    .career-positions h2 {
        font-size: 1.6rem;
    }
    
    .position-card {
        padding: 20px;
    }
    
    .modal-content {
        padding: 20px;
    }
}
