/* CAREER HEADER */
/* --- CAREER HEADER - THE VISIONARY ENTRANCE --- */
.career-header {
    padding: 2% 0 10%;
    background: radial-gradient(circle at top right, rgba(16, 59, 123, 0.03), transparent),
                linear-gradient(to bottom, #ffffff, #fcfcfc);
    text-align: center;
    position: relative;
    overflow: hidden;
}


.career-header .container {
    position: relative;
    z-index: 1;
}

/* Alt Başlık (Orange Tag) */
.career-header .sub-title {
    display: inline-block;
    color: #ff6b00;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 25px;
    padding: 8px 20px;
    background: rgba(255, 107, 0, 0.05); /* Çok hafif turuncu bir kutu içinde */
    border-radius: 50px;
}

/* Ana Başlık */
.career-header h1 {
    font-size: 4rem;
    color: #103b7b;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.career-header h1 .orange-text {
    color: #ff6b00;
    position: relative;
    display: inline-block;
}

/* Orange text'in altına şık bir vurgu çizgisi */
.career-header h1 .orange-text::after {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(255, 107, 0, 0.1);
    z-index: -1;
}

/* Intro Text (Açıklama) */
.career-header .header-intro {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
}

.career-header .header-intro p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #555;
    font-weight: 400;
}

.career-header .header-intro strong {
    color: #103b7b;
    font-weight: 700;
    border-bottom: 2px solid rgba(255, 107, 0, 0.3); /* Vurgulu kelimelerin altı hafif turuncu */
}
/* ============================================================
   CAREER HEADER - RESPONSIVE & ADAPTIVE SYSTEM
   ============================================================ */

/* --- 1. ULTRA WIDE & LARGE DESKTOPS (1600px+) --- */
@media (min-width: 1600px) {
    .career-header {
        padding: 6% 0 8%; /* Geniş ekranda daha ferah bir üst boşluk */
    }
    .career-header h1 {
        font-size: 5rem; /* Dev ekranlarda başlık daha da heybetli */
    }
    .career-header .header-intro {
        max-width: 1000px; /* Metin çok fazla daralmasın */
    }
}

/* --- 2. NORMAL DESKTOP & LAPTOPS (1025px - 1440px) --- */
/* Burası senin gönderdiğin ana ayarların hüküm sürdüğü yer */
@media (max-width: 1440px) {
    .career-header {
        padding: 5% 0 10%;
    }
    .career-header h1 {
        font-size: 3.8rem;
    }
}

/* --- 3. TABLETS & SMALL LAPTOPS (768px - 1024px) --- */
@media (max-width: 1024px) {
    .career-header {
        padding: 8% 0 12%;
    }
    .career-header h1 {
        font-size: 3.2rem;
        line-height: 1.2;
    }
    .career-header .header-intro {
        max-width: 90%; /* Kenarlardan biraz pay bırak */
    }
    .career-header .header-intro p {
        font-size: 1.2rem;
    }
}

/* --- 4. MOBILE DEVICES & LARGE PHONES (481px - 767px) --- */
@media (max-width: 767px) {
    .career-header {
        padding: 80px 20px 60px; /* Mobilde sabit pixel daha güvenlidir */
        text-align: center;
    }
    .career-header h1 {
        font-size: 2.4rem; /* Okunabilir, güçlü ama taşmayan boyut */
        letter-spacing: 0;
        margin-bottom: 20px;
    }
    /* Mobilde turuncu alt çizgiyi biraz inceltiyoruz */
    .career-header h1 .orange-text::after {
        height: 8px;
        bottom: 5px;
    }
    .career-header .header-intro p {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    .career-header .sub-title {
        font-size: 0.75rem;
        letter-spacing: 2px;
        padding: 6px 15px;
    }
}

/* --- 5. SMALL PHONES (480px and below) --- */
@media (max-width: 480px) {
    .career-header {
        padding: 60px 15px 40px;
    }
    .career-header h1 {
        font-size: 2rem;
    }
    .career-header .header-intro p {
        font-size: 1rem;
    }
    .career-header h1 br {
        display: none; /* Küçük telefonlarda zoraki satır başını iptal et, akışa bırak */
    }
}

/* JOB CARDS */


/* --- POSITIONS SECTION WRAPPER --- */
.positions-grid-section {
    padding: 100px 0;
    background: #fdfdfd;
}

/* Sayfa kenarlarına değmemesi için %90 genişlik ve padding */
.career-wrap {
    width: 90%;
    max-width: 1600px; /* Dev ekranlarda çok yayılmasın diye limit */
    margin: 0 auto;
    padding: 0 2%;
}

.section-main-title {
    text-align: center;
    font-size: 2.8rem;
    color: #103b7b;
    margin-bottom: 60px;
    font-weight: 800;
}

.section-main-title .accent { color: #ff6b00; }

/* FLEXBOX - Yüzdeli ve Aralıklı */
.category-flex-dynamic {
    display: flex;
    flex-direction: row; /* Yan yana gelmeye zorla */
    flex-wrap: wrap;     /* Sadece mobilde alt alta düşsün */
    justify-content: space-between;
    gap: 30px;           /* Sabit boşluk daha güvenlidir */
    width: 100%;
}

/* --- KART AYARI (BOX-SIZING KRİTİK) --- */
.job-card-premium-v2 {
    /* Box-sizing ekleyerek padding ve border'ın genişliği şişirmesini engelliyoruz */
    box-sizing: border-box; 
    
    /* 100% içinden gap ve kenar paylarını çıkarıyoruz (calc hayat kurtarır) */
    flex: 0 0 calc(50% - 15px); 
    
    background: #ffffff;
    border-radius: 30px;
    padding: 40px; 
    box-shadow: 0 20px 60px rgba(16, 59, 123, 0.05);
    border: 1px solid rgba(16, 59, 123, 0.08);
    display: flex;
    flex-direction: column;
    min-width: 300px; /* Çok daralmasını engelle */
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.job-card-premium-v2:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 40px 100px rgba(16, 59, 123, 0.12);
    border-color: #103b7b;
}

.job-card-premium-v2.orange-variant:hover {
    border-color: #ff6b00;
}

/* Header & Icons */
.card-header-v2 {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.icon-box-v2 {
    width: 70px;
    height: 70px;
    background: rgba(16, 59, 123, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #103b7b;
    transition: 0.4s;
}

.orange-variant .icon-box-v2 {
    background: rgba(255, 107, 0, 0.05);
    color: #ff6b00;
}

.job-card-premium-v2:hover .icon-box-v2 {
    background: #103b7b;
    color: #fff;
    transform: rotateY(180deg);
}

.orange-variant:hover .icon-box-v2 {
    background: #ff6b00;
}

/* Typography */
.header-text h3 {
    font-size: 1.6rem;
    color: #103b7b;
    line-height: 1.2;
}

.cat-label-v2 {
    font-size: 0.8rem;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cat-desc {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 30px;
}

/* Job List */
.job-tags-v2 {
    list-style: none;
    padding: 0;
    flex-grow: 1; /* İçerik az olsa da butonu aşağı iter */
}

.job-tags-v2 li {
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #444;
}

.job-tags-v2 i {
    margin-right: 15px;
    font-size: 0.8rem;
    color: #ff6b00;
}

/* --- BUTTON BEWERBEN --- */
.card-footer-v2 {
    margin-top: 40px;
}

.btn-apply-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 18px;
    background: #103b7b;
    color: #fff;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.orange-variant .btn-apply-v2 {
    background: #ff6b00;
}

.btn-apply-v2:hover {
    letter-spacing: 2px;
    box-shadow: 0 10px 20px rgba(16, 59, 123, 0.3);
}

.btn-apply-v2 i {
    transition: transform 0.4s ease;
}

.btn-apply-v2:hover i {
    transform: translateX(5px) translateY(-5px); /* Uçak kalkış efekti */
}
/* --- 1. SAĞA KAYAN OK EFEKTİ (Management Bölümü) --- */
.job-card-premium-v2:hover .fa-arrow-right {
    animation: arrowSlide 0.6s infinite alternate cubic-bezier(0.45, 0.05, 0.55, 0.95);
    color: #103b7b; /* Oklar maviye dönsün */
    filter: drop-shadow(0 0 5px rgba(16, 59, 123, 0.3));
}
.job-tags-v2 li:hover {
    padding-left: 10px; /* Üstüne gelinen satır hafif sağa kaysın */
    color: #000;
    transition: 0.3s;
}