/* ============================================================
   KARİYER SAYFASI — Kurumsal Tasarım
   ============================================================ */

/* ── İstatistik Bandı ── */
.kr-stats-band {
    background: #0f172a;
    padding: 0;
    margin-top: -1px;
}

.kr-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.kr-stat {
    flex: 1;
    text-align: center;
    padding: 36px 20px;
}

.kr-stat-num {
    display: block;
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.kr-stat-num small {
    font-size: 24px;
    color: #e63946;
    font-weight: 700;
}

.kr-stat-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.kr-stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

/* ── Neden Biz (Sol-Sağ Layout) ── */
.kr-why-section {
    padding: 100px 0 90px;
    background: #fff;
}

.kr-why-left h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin: 10px 0 16px;
    line-height: 1.2;
}

.kr-why-left p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

.kr-perks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.kr-perk {
    background: #f8fafc;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    padding: 28px 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kr-perk:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.06);
}

.kr-perk-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e63946 0%, #ff6b6b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kr-perk-icon i {
    font-size: 20px;
    color: #fff;
}

.kr-perk-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 6px;
}

.kr-perk-text p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}

/* ── Açık Pozisyonlar ── */
.kr-positions-section {
    padding: 80px 0 90px;
    background: #f8fafc;
}

.kr-positions-header {
    text-align: center;
    margin-bottom: 48px;
}

.kr-positions-header h2 {
    font-size: 34px;
    font-weight: 800;
    color: #0f172a;
    margin: 10px 0 0;
}

.kr-positions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}

.kr-position-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px 28px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.kr-position-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.06);
}

.kr-pos-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kr-pos-icon i {
    font-size: 22px;
    color: #e63946;
}

.kr-pos-body {
    flex: 1;
    min-width: 0;
}

.kr-pos-body h4 {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px;
}

.kr-pos-body p {
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
    margin: 0 0 8px;
}

.kr-pos-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.kr-pos-tag {
    font-size: 11px;
    font-weight: 600;
    color: #475569;
    background: #f1f5f9;
    padding: 3px 10px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.kr-pos-tag i { font-size: 10px; color: #94a3b8; }

.kr-pos-apply {
    font-size: 12px;
    font-weight: 700;
    color: #e63946;
    text-decoration: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
    flex-shrink: 0;
}

.kr-pos-apply:hover { gap: 8px; color: #c8102e; }

/* ── Başvuru Formu (Sol bilgi + Sağ form) ── */
.kr-form-section {
    padding: 90px 0 110px;
    background: #fff;
}

.kr-form-info h2 {
    font-size: 34px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 14px;
}

.kr-form-info > p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin: 0 0 36px;
}

.kr-form-info-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kr-form-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.kr-form-info-item i {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #fef2f2;
    color: #e63946;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.kr-form-info-item div strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
}

.kr-form-info-item div span {
    font-size: 13px;
    color: #64748b;
}

/* Form */
.kr-form-wrapper {
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 40px 44px;
}

.kr-form-header {
    margin-bottom: 28px;
}

.kr-form-header h3 {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.kr-form-header h3 i { color: #e63946; }

.kr-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 20px;
}

.kr-field-full { grid-column: 1 / -1; }

.kr-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.kr-field label span { color: #e63946; }

.kr-field input[type="text"],
.kr-field input[type="email"],
.kr-field input[type="tel"],
.kr-field select,
.kr-field textarea {
    width: 100%;
    padding: 11px 14px;
    font-size: 14px;
    color: #1e293b;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
}

.kr-field input:focus,
.kr-field select:focus,
.kr-field textarea:focus {
    border-color: #e63946;
    box-shadow: 0 0 0 3px rgba(230,57,70,0.10);
}

.kr-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8.4L1.2 3.6h9.6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.kr-field textarea { resize: vertical; min-height: 80px; }

/* File upload */
.kr-file-upload { position: relative; }

.kr-file-upload input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.kr-file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 22px 16px;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    text-align: center;
    transition: border-color 0.2s, background 0.2s;
}

.kr-file-label i { font-size: 28px; color: #94a3b8; }
.kr-file-label span { font-size: 13px; font-weight: 600; color: #475569; }
.kr-file-label small { font-size: 11px; color: #94a3b8; }

.kr-file-upload:hover .kr-file-label,
.kr-file-label.kr-file-selected {
    border-color: #e63946;
    background: #fef2f2;
}

.kr-file-label.kr-file-selected i { color: #e63946; }

.kr-form-footer {
    margin-top: 26px;
    text-align: right;
}

/* Alert */
.kr-alert {
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.kr-alert-success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.kr-alert-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
    .kr-perks-grid { grid-template-columns: 1fr; }
    .kr-positions-grid { grid-template-columns: 1fr; }
    .kr-why-left { margin-bottom: 40px; text-align: center; }
    .kr-why-left h2 { font-size: 28px; }
    .kr-form-info { margin-bottom: 40px; text-align: center; }
    .kr-form-info-items { align-items: center; }
    .kr-form-wrapper { padding: 32px 28px; }
    .kr-stats-row { flex-wrap: wrap; }
    .kr-stat { flex: 0 0 50%; }
    .kr-stat-divider { display: none; }
}

@media (max-width: 575.98px) {
    .kr-form-grid { grid-template-columns: 1fr; }
    .kr-stat { flex: 0 0 100%; padding: 20px; }
    .kr-position-card { flex-direction: column; text-align: center; }
    .kr-pos-apply { justify-content: center; }
    .kr-pos-tags { justify-content: center; }
}