/* ═══════════════════════════════════════════════════════════════════
   İş Ekstra - Bileşen Stilleri
   Tüm yeniden kullanılabilir UI bileşenlerinin stilleri
   ═══════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────
   İŞ KARTI (.job-card)
   Camlaşma efekti, hover kaldırma animasyonu, 3D eğilme
   ───────────────────────────────────────────────────────────────── */
.job-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    cursor: pointer;
}

/* Kategori renk şeridi (üst kenar) */
.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    transition: height var(--transition-fast);
}

/* Parıltı efekti */
.job-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-card-shine);
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
    border-radius: var(--radius-lg);
}

.job-card:hover {
    transform: translateY(-8px) rotateX(2deg);
    border-color: var(--glass-border-active);
    box-shadow: var(--shadow-card-hover);
    background: var(--glass-bg-heavy);
}

.job-card:hover::before {
    height: 4px;
}

.job-card:hover::after {
    opacity: 1;
}

/* Kategori renk varyasyonları */
.job-card[data-category="temizlik"]::before { background: var(--cat-temizlik); }
.job-card[data-category="tamirat"]::before { background: var(--cat-tamirat); }
.job-card[data-category="tasima"]::before { background: var(--cat-tasima); }
.job-card[data-category="bahce"]::before { background: var(--cat-bahce); }
.job-card[data-category="boya"]::before { background: var(--cat-boya); }
.job-card[data-category="insaat"]::before { background: var(--cat-insaat); }
.job-card[data-category="elektrik"]::before { background: var(--cat-elektrik); }
.job-card[data-category="tesisat"]::before { background: var(--cat-tesisat); }

.job-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-4);
}

.job-card__title {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-1);
    line-height: var(--leading-tight);
}

.job-card__company {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.job-card__save-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: var(--space-2);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.job-card__save-btn:hover,
.job-card__save-btn.saved {
    color: var(--accent-danger);
}

.job-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.job-card__meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.job-card__meta-item i {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
}

.job-card__wage {
    font-size: var(--text-xl);
    font-weight: 800;
    color: var(--accent-success);
    margin-bottom: var(--space-3);
}

.job-card__wage small {
    font-size: var(--text-sm);
    font-weight: 400;
    color: var(--text-muted);
}

.job-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.job-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-4);
    border-top: 1px solid var(--bg-surface-border);
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.job-card__views {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

/* Aciliyet rozeti */
.job-card__urgency {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
}

.badge-urgent {
    background: var(--accent-danger-light);
    color: var(--accent-danger);
    font-size: var(--text-xs);
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-full);
    animation: urgentPulse 2s infinite;
}

@keyframes urgentPulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--accent-danger-light); }
    50% { box-shadow: 0 0 0 6px transparent; }
}

.badge-job-type {
    background: var(--accent-primary-light);
    color: var(--accent-primary);
    font-size: var(--text-xs);
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-full);
}

/* ─────────────────────────────────────────────────────────────────
   İŞÇİ KARTI (.worker-card)
   Avatar, güven puanı rozeti, meslek etiketleri
   ───────────────────────────────────────────────────────────────── */
.worker-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    transition: all var(--transition-normal);
    text-align: center;
    position: relative;
    transform-style: preserve-3d;
}

.worker-card:hover {
    transform: translateY(-8px);
    border-color: var(--glass-border-active);
    box-shadow: var(--shadow-card-hover);
}

.worker-card__avatar-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: var(--space-4);
}

.worker-card__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bg-surface-border);
    transition: border-color var(--transition-fast);
}

.worker-card:hover .worker-card__avatar {
    border-color: var(--accent-primary);
}

/* Müsaitlik göstergesi (yeşil nokta) */
.worker-card__availability-dot {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 3px solid var(--bg-card);
    background: var(--accent-success);
}

.worker-card__availability-dot.offline {
    background: var(--text-muted);
}

.worker-card__name {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-1);
}

.worker-card__location {
    font-size: var(--text-sm);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-1);
    margin-bottom: var(--space-3);
}

.worker-card__professions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.worker-card__stats {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    margin-bottom: var(--space-4);
    padding: var(--space-3) 0;
    border-top: 1px solid var(--bg-surface-border);
    border-bottom: 1px solid var(--bg-surface-border);
}

.worker-card__stat {
    text-align: center;
}

.worker-card__stat-value {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--text-primary);
}

.worker-card__stat-label {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.worker-card__actions {
    display: flex;
    gap: var(--space-2);
    justify-content: center;
}

/* ─────────────────────────────────────────────────────────────────
   FİLTRE PANELİ (.filter-panel)
   Katlanabilir kenar çubuğu filtreleri
   ───────────────────────────────────────────────────────────────── */
.filter-panel {
    background: var(--bg-card);
    border: 1px solid var(--bg-surface-border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    position: sticky;
    top: calc(var(--navbar-height) + var(--space-8));
}

.filter-panel__title {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-6);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter-panel__group {
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-6);
    border-bottom: 1px solid var(--bg-surface-border);
}

.filter-panel__group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-panel__group-title {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--space-3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color var(--transition-fast);
}

.filter-panel__group-title:hover {
    color: var(--text-primary);
}

.filter-panel__group-content {
    max-height: 300px;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.filter-panel__group-content.collapsed {
    max-height: 0;
}

.filter-panel__actions {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-6);
}

/* Fiyat aralığı kaydırıcısı */
.filter-range-slider {
    position: relative;
    height: 6px;
    background: var(--bg-surface-border);
    border-radius: var(--radius-full);
    margin: var(--space-6) 0;
}

.filter-range-slider__fill {
    position: absolute;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.filter-range-slider input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: transparent;
    position: absolute;
    top: 0;
    pointer-events: none;
}

.filter-range-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-primary);
    border: 3px solid var(--bg-card);
    cursor: pointer;
    pointer-events: all;
    box-shadow: var(--shadow-glow-sm);
    transition: transform var(--transition-fast);
}

.filter-range-slider input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

/* ─────────────────────────────────────────────────────────────────
   DEĞERLENDİRME YILDIZLARI (.rating-stars)
   Altın yıldızlar, dolgu animasyonu
   ───────────────────────────────────────────────────────────────── */
.rating-stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.rating-stars__star {
    color: var(--bg-surface-border);
    font-size: 1.25rem;
    transition: all var(--transition-fast);
    cursor: default;
    position: relative;
}

.rating-stars__star.filled {
    color: var(--accent-gold);
    animation: starFill 0.3s ease-out;
}

.rating-stars__star.half-filled {
    position: relative;
    color: var(--bg-surface-border);
}

.rating-stars__star.half-filled::before {
    content: '★';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-gold);
    overflow: hidden;
    width: 50%;
}

@keyframes starFill {
    0% { transform: scale(0.5); opacity: 0; }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); opacity: 1; }
}

/* Etkileşimli mod (tıklanabilir) */
.rating-stars--interactive .rating-stars__star {
    cursor: pointer;
}

.rating-stars--interactive .rating-stars__star:hover {
    color: var(--accent-gold);
    transform: scale(1.2);
}

.rating-stars--interactive .rating-stars__star:hover ~ .rating-stars__star {
    color: var(--bg-surface-border);
}

.rating-stars__count {
    margin-left: var(--space-2);
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.rating-stars__average {
    margin-left: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--accent-gold);
}

/* ─────────────────────────────────────────────────────────────────
   ÖDEME DURUMU (.payment-status)
   Renkli rozetler
   ───────────────────────────────────────────────────────────────── */
.payment-status {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 600;
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
}

.payment-status i {
    width: 14px;
    height: 14px;
}

.payment-status--pending {
    background: var(--accent-warning-light);
    color: var(--accent-warning);
}

.payment-status--escrow {
    background: var(--accent-info-light);
    color: var(--accent-info);
}

.payment-status--transferred {
    background: var(--accent-success-light);
    color: var(--accent-success);
}

.payment-status--refunded {
    background: var(--accent-danger-light);
    color: var(--accent-danger);
}

.payment-status--cancelled {
    background: rgba(90, 92, 114, 0.15);
    color: var(--text-muted);
}

/* ─────────────────────────────────────────────────────────────────
   MESLEK ETİKETİ (.profession-tag)
   Hap şekilli etiketler, kategori renkleri
   ───────────────────────────────────────────────────────────────── */
.profession-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    font-size: var(--text-xs);
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    background: var(--accent-primary-light);
    color: var(--accent-primary);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.profession-tag:hover {
    background: var(--accent-primary);
    color: #fff;
}

.profession-tag--removable {
    padding-right: 0.375rem;
}

.profession-tag__remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 10px;
    margin-left: var(--space-1);
}

/* Kategori renk varyasyonları */
.profession-tag--temizlik { background: rgba(0,184,148,0.15); color: var(--cat-temizlik); }
.profession-tag--tamirat { background: rgba(225,112,85,0.15); color: var(--cat-tamirat); }
.profession-tag--tasima { background: rgba(108,92,231,0.15); color: var(--cat-tasima); }
.profession-tag--bahce { background: rgba(0,210,211,0.15); color: var(--cat-bahce); }
.profession-tag--boya { background: rgba(253,203,110,0.15); color: var(--cat-boya); }
.profession-tag--insaat { background: rgba(116,185,255,0.15); color: var(--cat-insaat); }
.profession-tag--elektrik { background: rgba(249,202,36,0.15); color: var(--cat-elektrik); }
.profession-tag--tesisat { background: rgba(168,85,247,0.15); color: var(--cat-tesisat); }

/* ─────────────────────────────────────────────────────────────────
   GÜVEN PUANI ROZETİ (.trust-score-badge)
   Dairesel ilerleme göstergesi (SVG)
   ───────────────────────────────────────────────────────────────── */
.trust-score-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
}

.trust-score-badge--sm {
    width: 44px;
    height: 44px;
}

.trust-score-badge--lg {
    width: 96px;
    height: 96px;
}

.trust-score-badge__circle {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.trust-score-badge__bg {
    fill: none;
    stroke: var(--bg-surface-border);
    stroke-width: 4;
}

.trust-score-badge__fill {
    fill: none;
    stroke-width: 4;
    stroke-linecap: round;
    transition: stroke-dashoffset 1s ease-out;
}

/* Renk aralıkları: kırmızı<30, sarı<60, yeşil<80, mavi>=80 */
.trust-score-badge--low .trust-score-badge__fill { stroke: var(--accent-danger); }
.trust-score-badge--medium .trust-score-badge__fill { stroke: var(--accent-warning); }
.trust-score-badge--high .trust-score-badge__fill { stroke: var(--accent-success); }
.trust-score-badge--excellent .trust-score-badge__fill { stroke: var(--accent-info); }

.trust-score-badge__value {
    position: absolute;
    font-size: var(--text-sm);
    font-weight: 800;
    color: var(--text-primary);
}

.trust-score-badge--sm .trust-score-badge__value {
    font-size: var(--text-xs);
}

.trust-score-badge--lg .trust-score-badge__value {
    font-size: var(--text-2xl);
}

/* ─────────────────────────────────────────────────────────────────
   MÜSAİTLİK TAKVİMİ (.availability-calendar)
   Grid takvim, müsait/meşgul gün stilleri
   ───────────────────────────────────────────────────────────────── */
.availability-calendar {
    background: var(--bg-card);
    border: 1px solid var(--bg-surface-border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
}

.availability-calendar__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-4);
}

.availability-calendar__month {
    font-size: var(--text-lg);
    font-weight: 700;
}

.availability-calendar__nav {
    display: flex;
    gap: var(--space-2);
}

.availability-calendar__nav-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--bg-surface-border);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.availability-calendar__nav-btn:hover {
    background: var(--accent-primary-light);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.availability-calendar__weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: var(--space-2);
}

.availability-calendar__weekday {
    text-align: center;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--text-muted);
    padding: var(--space-2);
    text-transform: uppercase;
}

.availability-calendar__days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.availability-calendar__day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 1px solid transparent;
    color: var(--text-primary);
}

.availability-calendar__day:hover {
    background: var(--bg-card-hover);
    border-color: var(--bg-surface-border);
}

.availability-calendar__day--available {
    background: var(--accent-success-light);
    color: var(--accent-success);
    border-color: rgba(0,184,148,0.3);
}

.availability-calendar__day--unavailable {
    background: var(--accent-danger-light);
    color: var(--accent-danger);
    border-color: rgba(225,112,85,0.3);
}

.availability-calendar__day--past {
    color: var(--text-disabled);
    cursor: default;
    opacity: 0.4;
}

.availability-calendar__day--today {
    border-color: var(--accent-primary);
    font-weight: 700;
}

.availability-calendar__day--empty {
    visibility: hidden;
}

/* ─────────────────────────────────────────────────────────────────
   ROZET GÖSTERİMİ (.badge-display)
   Rozet kartı, parıltı animasyonu
   ───────────────────────────────────────────────────────────────── */
.badge-display {
    background: var(--bg-card);
    border: 1px solid var(--bg-surface-border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.badge-display:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* Parıltı (shimmer) animasyonu */
.badge-display::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255,255,255,0.05) 50%,
        transparent 60%
    );
    animation: badge-shimmer 3s infinite;
    pointer-events: none;
}

@keyframes badge-shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.badge-display__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: var(--radius-lg);
}

.badge-display__name {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-1);
}

.badge-display__description {
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin-bottom: var(--space-3);
}

.badge-display__date {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

/* Seviye renkleri */
.badge-display--bronze { border-color: #CD7F32; }
.badge-display--bronze .badge-display__icon { background: rgba(205,127,50,0.15); color: #CD7F32; }
.badge-display--silver { border-color: #C0C0C0; }
.badge-display--silver .badge-display__icon { background: rgba(192,192,192,0.15); color: #C0C0C0; }
.badge-display--gold { border-color: var(--accent-gold); }
.badge-display--gold .badge-display__icon { background: var(--accent-gold-light); color: var(--accent-gold); }
.badge-display--platinum { border-color: var(--accent-info); }
.badge-display--platinum .badge-display__icon { background: var(--accent-info-light); color: var(--accent-info); }

/* Kilitli rozet */
.badge-display--locked {
    opacity: 0.4;
    filter: grayscale(100%);
}

/* ─────────────────────────────────────────────────────────────────
   İSTATİSTİK WİDGETİ (.stats-widget)
   İkon, sayaç animasyonu, trend oku
   ───────────────────────────────────────────────────────────────── */
.stats-widget {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.stats-widget:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--glass-border-active);
}

.stats-widget__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-4);
}

.stats-widget__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 1.25rem;
}

.stats-widget__icon--primary { background: var(--accent-primary-light); color: var(--accent-primary); }
.stats-widget__icon--success { background: var(--accent-success-light); color: var(--accent-success); }
.stats-widget__icon--warning { background: var(--accent-warning-light); color: var(--accent-warning); }
.stats-widget__icon--danger { background: var(--accent-danger-light); color: var(--accent-danger); }
.stats-widget__icon--info { background: var(--accent-info-light); color: var(--accent-info); }
.stats-widget__icon--gold { background: var(--accent-gold-light); color: var(--accent-gold); }

.stats-widget__trend {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    font-size: var(--text-xs);
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-full);
}

.stats-widget__trend--up {
    color: var(--accent-success);
    background: var(--accent-success-light);
}

.stats-widget__trend--down {
    color: var(--accent-danger);
    background: var(--accent-danger-light);
}

.stats-widget__value {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-1);
    font-variant-numeric: tabular-nums;
}

.stats-widget__label {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* ─────────────────────────────────────────────────────────────────
   NAVBAR (.navbar-custom)
   Camlaşma navbar, backdrop-blur
   ───────────────────────────────────────────────────────────────── */
.navbar-custom {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--navbar-height);
    z-index: var(--z-fixed);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur-sm);
    -webkit-backdrop-filter: var(--glass-blur-sm);
    border-bottom: 1px solid var(--glass-border);
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    padding: 0 var(--space-6);
}

/* Scroll'da yoğunlaşan camlaşma */
.navbar-custom.scrolled {
    background: var(--glass-bg-heavy);
    backdrop-filter: var(--glass-blur);
    box-shadow: var(--shadow-md);
}

.navbar-custom.with-sidebar {
    left: var(--sidebar-width);
}

.navbar-custom.sidebar-collapsed {
    left: var(--sidebar-collapsed-width);
}

.navbar-custom__brand {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-xl);
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
}

.navbar-custom__brand:hover {
    color: var(--text-primary);
}

.navbar-custom__brand-logo {
    width: 36px;
    height: 36px;
}

.navbar-custom__actions {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-left: auto;
}

/* Bildirim zili */
.navbar-custom__notification-btn {
    position: relative;
}

.navbar-custom__notification-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: var(--accent-danger);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-primary);
    animation: notificationPop 0.3s ease-out;
}

@keyframes notificationPop {
    0% { transform: scale(0); }
    70% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Kullanıcı dropdown */
.navbar-custom__user-dropdown {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    cursor: pointer;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-md);
    transition: background var(--transition-fast);
}

.dropdown-menu {
    z-index: var(--z-dropdown);
}

.navbar-custom__user-dropdown:hover {
    background: var(--glass-bg-light);
}

.navbar-custom__user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--bg-surface-border);
}

.navbar-custom__user-name {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-primary);
}

.navbar-custom__user-role {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

/* ─────────────────────────────────────────────────────────────────
   SIDEBAR (.sidebar)
   Koyu yüzey arka plan, aktif öğe vurgusu
   ───────────────────────────────────────────────────────────────── */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: var(--bg-surface);
    border-right: 1px solid var(--bg-surface-border);
    z-index: var(--z-sticky);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
}

.sidebar.collapsed {
    width: var(--sidebar-collapsed-width);
}

.sidebar__header {
    padding: var(--space-6);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    border-bottom: 1px solid var(--bg-surface-border);
    min-height: var(--navbar-height);
}

.sidebar__user-mini {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-6);
    margin-bottom: var(--space-2);
}

.sidebar__user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--bg-surface-border);
    flex-shrink: 0;
}

.sidebar__user-info {
    overflow: hidden;
}

.sidebar__user-name {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar__user-role {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.sidebar__nav {
    flex: 1;
    padding: var(--space-4) var(--space-3);
}

.sidebar__nav-group {
    margin-bottom: var(--space-6);
}

.sidebar__nav-group-title {
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    padding: 0 var(--space-3);
    margin-bottom: var(--space-2);
}

.sidebar__nav-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: 0.625rem var(--space-3);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--text-sm);
    font-weight: 500;
    transition: all var(--transition-fast);
    margin-bottom: 2px;
    position: relative;
}

.sidebar__nav-item:hover {
    background: var(--bg-card);
    color: var(--text-primary);
}

.sidebar__nav-item.active {
    background: var(--accent-primary-light);
    color: var(--accent-primary);
    font-weight: 600;
}

.sidebar__nav-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: var(--accent-primary);
    border-radius: 0 3px 3px 0;
}

.sidebar__nav-item i {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.sidebar__nav-item-badge {
    margin-left: auto;
    background: var(--accent-danger);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 0.1rem 0.4rem;
    border-radius: var(--radius-full);
    min-width: 18px;
    text-align: center;
}

.sidebar__footer {
    padding: var(--space-4) var(--space-6);
    border-top: 1px solid var(--bg-surface-border);
}

/* ─────────────────────────────────────────────────────────────────
   MODAL (.modal-custom)
   Camlaşma backdrop, giriş animasyonu
   ───────────────────────────────────────────────────────────────── */
.modal-custom .modal-content {
    background: var(--bg-card);
    border: 1px solid var(--bg-surface-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    animation: modalSlideUp 0.3s ease-out;
}

.modal-custom .modal-header {
    border-bottom: 1px solid var(--bg-surface-border);
    padding: var(--space-6);
}

.modal-custom .modal-title {
    font-weight: 700;
    color: var(--text-primary);
}

.modal-custom .modal-body {
    padding: var(--space-6);
}

.modal-custom .modal-footer {
    border-top: 1px solid var(--bg-surface-border);
    padding: var(--space-4) var(--space-6);
}

.modal-custom .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.modal-backdrop.show {
    backdrop-filter: var(--glass-blur-sm);
}

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

/* ─────────────────────────────────────────────────────────────────
   ALERT (.alert-custom)
   Kayma animasyonu, tip ikonları
   ───────────────────────────────────────────────────────────────── */
.alert-custom {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-5);
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    animation: alertSlideIn 0.4s ease-out;
    position: relative;
}

.alert-custom__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.alert-custom__content {
    flex: 1;
}

.alert-custom__title {
    font-weight: 600;
    margin-bottom: var(--space-1);
}

.alert-custom__message {
    font-size: var(--text-sm);
    opacity: 0.9;
}

.alert-custom--success {
    background: var(--accent-success-light);
    border-color: rgba(0,184,148,0.3);
    color: var(--accent-success);
}

.alert-custom--warning {
    background: #fef5e7;
    border-color: #f5c6a0;
    color: #8a5a2b;
}

.alert-custom--danger {
    background: var(--accent-danger-light);
    border-color: rgba(225,112,85,0.3);
    color: var(--accent-danger);
}

.alert-custom--info {
    background: var(--accent-info-light);
    border-color: rgba(116,185,255,0.3);
    color: var(--accent-info);
}

@keyframes alertSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ─────────────────────────────────────────────────────────────────
   SAYFALAMA (.pagination-custom)
   Koyu tema sayfalama
   ───────────────────────────────────────────────────────────────── */
.pagination-custom {
    display: flex;
    gap: var(--space-1);
}

.pagination-custom .page-item .page-link {
    background: var(--bg-card);
    border: 1px solid var(--bg-surface-border);
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    padding: 0.5rem 0.875rem;
    font-size: var(--text-sm);
    font-weight: 500;
    transition: all var(--transition-fast);
    min-width: 40px;
    text-align: center;
}

.pagination-custom .page-item .page-link:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
    border-color: var(--accent-primary);
}

.pagination-custom .page-item.active .page-link {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #fff;
    box-shadow: var(--shadow-glow-sm);
}

.pagination-custom .page-item.disabled .page-link {
    background: var(--bg-surface);
    color: var(--text-disabled);
    border-color: var(--bg-surface-border);
}

/* ─────────────────────────────────────────────────────────────────
   İŞ GEÇMİŞİ KARTI (.work-history-card)
   Zaman çizelgesi kartı
   ───────────────────────────────────────────────────────────────── */
.work-history-card {
    display: flex;
    gap: var(--space-4);
    padding: var(--space-5);
    background: var(--bg-card);
    border: 1px solid var(--bg-surface-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    position: relative;
}

.work-history-card:hover {
    border-color: var(--glass-border-active);
    background: var(--bg-card-hover);
}

.work-history-card__timeline-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-primary);
    flex-shrink: 0;
    margin-top: 6px;
    position: relative;
}

.work-history-card__timeline-dot::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% + var(--space-4));
    background: var(--bg-surface-border);
}

.work-history-card:last-child .work-history-card__timeline-dot::after {
    display: none;
}

.work-history-card__content {
    flex: 1;
}

.work-history-card__title {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-1);
}

.work-history-card__employer {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-2);
}

.work-history-card__dates {
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin-bottom: var(--space-3);
}

/* ─────────────────────────────────────────────────────────────────
   BAŞVURU DURUMU ZAMAN ÇİZELGESİ (.application-timeline)
   ───────────────────────────────────────────────────────────────── */
.application-timeline {
    display: flex;
    align-items: center;
    gap: 0;
    padding: var(--space-4) 0;
}

.application-timeline__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

.application-timeline__step::before {
    content: '';
    position: absolute;
    top: 16px;
    left: -50%;
    right: 50%;
    height: 2px;
    background: var(--bg-surface-border);
}

.application-timeline__step:first-child::before {
    display: none;
}

.application-timeline__step.completed::before {
    background: var(--accent-success);
}

.application-timeline__step.active::before {
    background: var(--gradient-primary);
}

.application-timeline__dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-surface);
    border: 2px solid var(--bg-surface-border);
    color: var(--text-muted);
    font-size: var(--text-xs);
    z-index: 1;
    transition: all var(--transition-fast);
}

.application-timeline__step.completed .application-timeline__dot {
    background: var(--accent-success);
    border-color: var(--accent-success);
    color: #fff;
}

.application-timeline__step.active .application-timeline__dot {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #fff;
    box-shadow: var(--shadow-glow-sm);
    animation: glowPulse 2s infinite;
}

.application-timeline__label {
    margin-top: var(--space-2);
    font-size: var(--text-xs);
    color: var(--text-muted);
    text-align: center;
    white-space: nowrap;
}

.application-timeline__step.completed .application-timeline__label {
    color: var(--accent-success);
}

.application-timeline__step.active .application-timeline__label {
    color: var(--accent-primary);
    font-weight: 600;
}

/* ─────────────────────────────────────────────────────────────────
   FORM SİHİRBAZI (.form-wizard)
   Çok adımlı form, ilerleme çubuğu
   ───────────────────────────────────────────────────────────────── */
.form-wizard__progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-10);
    padding: 0 var(--space-8);
}

.form-wizard__step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 0 0 auto;
}

.form-wizard__step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-surface);
    border: 2px solid var(--bg-surface-border);
    color: var(--text-muted);
    font-weight: 700;
    font-size: var(--text-sm);
    transition: all var(--transition-normal);
    z-index: 1;
}

.form-wizard__step-indicator.active .form-wizard__step-number {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #fff;
    box-shadow: var(--shadow-glow);
}

.form-wizard__step-indicator.completed .form-wizard__step-number {
    background: var(--accent-success);
    border-color: var(--accent-success);
    color: #fff;
}

.form-wizard__step-label {
    margin-top: var(--space-2);
    font-size: var(--text-xs);
    color: var(--text-muted);
    white-space: nowrap;
}

.form-wizard__step-indicator.active .form-wizard__step-label {
    color: var(--accent-primary);
    font-weight: 600;
}

.form-wizard__step-connector {
    flex: 1;
    height: 2px;
    background: var(--bg-surface-border);
    margin: 0 var(--space-3);
    margin-bottom: 24px;
    transition: background var(--transition-normal);
}

.form-wizard__step-connector.completed {
    background: var(--accent-success);
}

.form-wizard__panel {
    display: none;
    animation: wizardFadeIn 0.4s ease-out;
}

.form-wizard__panel.active {
    display: block;
}

@keyframes wizardFadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ─────────────────────────────────────────────────────────────────
   MESLEK SEÇİCİ (.profession-selector)
   Kategori accordion, checkbox öğeleri, seçili etiketler
   ───────────────────────────────────────────────────────────────── */
.profession-selector {
    border: 1.5px solid #e0e0e0;
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    background: #fafafa;
}

/* Kategori grup başlığı */
.profession-category-group {
    margin-bottom: var(--space-2);
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.profession-category-group__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 14px;
    background: #fafafa;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    color: #2d3436;
    transition: background 0.2s;
    gap: 8px;
}

.profession-category-group__header:hover {
    background: #f0f0f0;
}

.profession-category-group__name {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.profession-category-group__count {
    font-size: 0.75rem;
    font-weight: 700;
    background: #e67e22;
    color: #fff;
    padding: 2px 8px;
    border-radius: 999px;
    min-width: 24px;
    text-align: center;
}

.profession-category-group__chevron {
    transition: transform 0.25s;
    color: #999;
}

.profession-category-group__header[aria-expanded="true"] .profession-category-group__chevron {
    transform: rotate(180deg);
}

/* Meslek öğeleri grid'i */
.profession-category-group__items {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 10px 14px;
    background: #fff;
}

/* Tek meslek öğesi */
.profession-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 0.8125rem;
    cursor: pointer;
    border: 1.5px solid #e0e0e0;
    background: #fff;
    color: #2d3436;
    transition: all 0.2s;
    user-select: none;
}

.profession-item:hover {
    border-color: #e67e22;
    background: #fef5e7;
}

.profession-item--selected {
    background: #e67e22;
    color: #fff;
    border-color: #e67e22;
    font-weight: 500;
}

.profession-item--selected:hover {
    background: #d35400;
    border-color: #d35400;
}

.profession-item__checkbox {
    width: 0;
    height: 0;
    opacity: 0;
    position: absolute;
    pointer-events: none;
}

.profession-item__name {
    line-height: 1.2;
}

.profession-item__check {
    color: #fff;
}

/* Seçili meslek etiketleri */
.profession-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 500;
    background: var(--accent-primary);
    color: #fff;
    margin: 2px;
}

.profession-tag--removable {
    padding-right: 6px;
}

.profession-tag__remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s;
}

.profession-tag__remove:hover {
    background: rgba(255, 255, 255, 0.45);
}

/* ─────────────────────────────────────────────────────────────────
   İŞ TİPİ RADİO TOGGLE (.job-type-toggle)
   ───────────────────────────────────────────────────────────────── */
.job-type-toggle input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.job-type-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    border: 1.5px solid var(--glass-border);
    background: var(--bg-surface);
    color: var(--text-primary);
    transition: all 0.25s;
    user-select: none;
}

.job-type-toggle:hover {
    border-color: var(--accent-primary);
    background: rgba(99, 102, 241, 0.06);
}

.job-type-toggle.active,
.job-type-toggle:has(input:checked) {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

