/* ============================================================
   Randevu Sistemi v2 — mobil öncelikli arayüz katmanı
   Bootstrap 5 üzerine ince bir kabuk
   ============================================================ */

:root {
  --ink:        #16222e;
  --ink-soft:   #5f7183;
  --line:       #dde4ec;
  --line-soft:  #eef2f7;
  --paper:      #f1f4f8;
  --card:       #ffffff;
  --brand:      #14567a;
  --brand-dark: #0e3f5a;
  --brand-tint: #e6f0f7;
  --ok:         #17795e;
  --ok-tint:    #e2f4ee;
  --wait:       #a3660f;
  --wait-tint:  #fbf1de;
  --off:        #a33a3a;
  --off-tint:   #fbe9e9;
  --radius:     12px;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  -webkit-text-size-adjust: 100%;
  padding-bottom: env(safe-area-inset-bottom);
}

h1, h2, h3, h4, h5, .brand-mark, .stat-value {
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* ---------- Üst bar ---------- */
.topbar { background: var(--card); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 1020; }
.brand-mark { font-size: 1rem; text-decoration: none; color: var(--ink); display: inline-flex; align-items: center; gap: .5rem; }
.brand-dot { width: 10px; height: 10px; border-radius: 3px; background: var(--brand); display: inline-block; }
.topbar .nav-link { color: var(--ink-soft); font-size: .92rem; padding: .5rem .8rem; border-radius: 8px; }
.topbar .nav-link:hover { color: var(--brand); background: var(--brand-tint); }
.topbar .nav-link.active { color: var(--brand-dark); background: var(--brand-tint); font-weight: 600; }
.offcanvas .nav-link { padding: .7rem .8rem; font-size: 1rem; }

/* ---------- Kart ---------- */
.card { border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 1px 2px rgba(22,34,46,.04); }
.card-header {
  background: var(--card); border-bottom: 1px solid var(--line);
  font-weight: 600; padding: .85rem 1rem; border-radius: var(--radius) var(--radius) 0 0;
}
.card-body { padding: 1rem; }
@media (min-width: 768px) { .card-body, .card-header { padding: 1.15rem; } }

/* ---------- Adım başlığı ---------- */
.step-head { display: flex; align-items: center; gap: .6rem; }
.step-num {
  width: 26px; height: 26px; flex: 0 0 26px;
  border-radius: 8px; background: var(--brand-tint); color: var(--brand-dark);
  display: grid; place-items: center; font-size: .82rem; font-weight: 700;
}
.step-done .step-num { background: var(--ok-tint); color: var(--ok); }

/* ---------- Seçim kartları (tercih / öğretmen) ---------- */
.pick-card {
  display: block; width: 100%; text-align: right;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--card); padding: .9rem 1rem; margin-bottom: .6rem;
  text-decoration: none; color: inherit; text-align: left;
  transition: border-color .12s ease, background .12s ease;
}
.pick-card:hover, .pick-card:focus-visible { border-color: var(--brand); background: var(--brand-tint); color: inherit; }
.pick-card.is-selected { border-color: var(--brand); background: var(--brand-tint); }
.pick-card .pick-title { font-weight: 600; font-family: "Plus Jakarta Sans", sans-serif; }
.pick-card .pick-sub { font-size: .84rem; color: var(--ink-soft); }
.pick-card .pick-meta { font-size: .84rem; font-weight: 600; color: var(--brand-dark); white-space: nowrap; }

/* ---------- Açıklama / IBAN kutusu ---------- */
.notice {
  background: #fbfdff; border: 1px dashed var(--line);
  border-left: 3px solid var(--brand); border-radius: 8px;
  padding: .85rem 1rem; font-size: .9rem; line-height: 1.6;
}
.notice-title { font-size: .76rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-soft); margin-bottom: .35rem; }

/* ---------- Saat seçimi ---------- */
.day-block + .day-block { margin-top: 1rem; }
.day-label { font-size: .84rem; font-weight: 600; color: var(--ink-soft); margin-bottom: .5rem; }
.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(104px, 1fr)); gap: .5rem; }
.slot-pick input { position: absolute; opacity: 0; width: 0; height: 0; }
.slot-pick label {
  display: block; border: 1px solid var(--line); border-radius: 10px;
  padding: .55rem .5rem; cursor: pointer; background: var(--card);
  font-size: .92rem; font-weight: 600; text-align: center; transition: .12s ease;
}
.slot-pick label small { display: block; font-weight: 400; color: var(--ink-soft); font-size: .72rem; margin-top: .1rem; }
.slot-pick input:checked + label { border-color: var(--brand); background: var(--brand-tint); color: var(--brand-dark); }
.slot-pick input:focus-visible + label { outline: 2px solid var(--brand); outline-offset: 2px; }

/* ---------- Özet kutuları ---------- */
.stat {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: .85rem .95rem; height: 100%;
}
.stat-label { font-size: .74rem; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-soft); }
.stat-value { font-size: 1.35rem; font-weight: 650; line-height: 1.25; margin-top: .2rem; }
.stat-sub { font-size: .78rem; color: var(--ink-soft); margin-top: .15rem; }
.stat-money .stat-value { color: var(--ok); }
.stat-wait .stat-value  { color: var(--wait); }
.stat-off .stat-value   { color: var(--off); }
@media (min-width: 768px) { .stat { padding: 1rem 1.15rem; } .stat-value { font-size: 1.6rem; } }

/* ---------- Mini çubuk grafik ---------- */
.bars { display: flex; align-items: flex-end; gap: .35rem; height: 92px; }
.bars .bar { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; }
.bars .bar span { display: block; background: var(--brand-tint); border-radius: 5px 5px 0 0; min-height: 3px; }
.bars .bar.is-today span { background: var(--brand); }
.bar-labels { display: flex; gap: .35rem; margin-top: .35rem; }
.bar-labels div { flex: 1; text-align: center; font-size: .68rem; color: var(--ink-soft); }

.meter { height: 6px; background: var(--line-soft); border-radius: 99px; overflow: hidden; }
.meter i { display: block; height: 100%; background: var(--brand); border-radius: 99px; }

/* ---------- Tablolar: masaüstünde tablo, mobilde kart ---------- */
.table { --bs-table-bg: var(--card); margin-bottom: 0; font-size: .9rem; }
.table > thead th {
  font-size: .74rem; text-transform: uppercase; letter-spacing: .05em;
  color: var(--ink-soft); font-weight: 600; border-bottom: 1px solid var(--line);
  white-space: nowrap; padding: .7rem .85rem;
}
.table > tbody td { padding: .8rem .85rem; vertical-align: middle; border-color: var(--line-soft); }
.table tbody tr.row-late td { background: #fdf5f2; }

@media (max-width: 767.98px) {
  .table-stack thead { display: none; }
  .table-stack, .table-stack tbody, .table-stack tr, .table-stack td { display: block; width: 100%; }
  .table-stack tbody tr {
    border: 1px solid var(--line); border-radius: var(--radius);
    margin: .75rem; padding: .25rem 0; background: var(--card);
  }
  .table-stack tbody tr.row-late { border-color: #edc9be; background: #fdf5f2; }
  .table-stack tbody td {
    border: 0; padding: .45rem .9rem;
    display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  }
  .table-stack tbody td::before {
    content: attr(data-label);
    font-size: .74rem; text-transform: uppercase; letter-spacing: .04em;
    color: var(--ink-soft); font-weight: 600; flex: 0 0 auto;
  }
  .table-stack tbody td.cell-block { display: block; }
  .table-stack tbody td.cell-block::before { display: block; margin-bottom: .3rem; }
  .table-stack tbody td .text-end { text-align: left !important; }
  .table-stack tbody td.cell-actions { border-top: 1px solid var(--line-soft); margin-top: .35rem; padding-top: .6rem; }
  .table-stack tbody td.cell-actions::before { display: none; }
  .table-stack tbody td.cell-actions .btn { flex: 1 1 auto; }
  .table-stack .empty-row { border: 0 !important; margin: 0 !important; }
}

.cell-actions { display: flex; flex-wrap: wrap; gap: .35rem; justify-content: flex-end; }

/* ---------- Form / buton ---------- */
.form-label { font-size: .84rem; font-weight: 600; color: var(--ink-soft); margin-bottom: .3rem; }
.form-control, .form-select {
  border-color: var(--line); border-radius: 9px; padding: .55rem .75rem;
  font-size: 16px; /* iOS'ta odaklanınca sayfayı büyütmesin */
}
@media (min-width: 768px) { .form-control, .form-select { font-size: .95rem; } }
.form-control:focus, .form-select:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(20,86,122,.12); }
.form-check-input:checked { background-color: var(--brand); border-color: var(--brand); }
.btn { border-radius: 9px; font-weight: 600; font-size: .9rem; padding: .5rem .9rem; }
.btn-sm { padding: .35rem .6rem; font-size: .82rem; }
.btn-brand { background: var(--brand); color: #fff; }
.btn-brand:hover, .btn-brand:focus { background: var(--brand-dark); color: #fff; }
.btn-quiet { background: var(--line-soft); color: var(--ink); border: 1px solid transparent; }
.btn-quiet:hover { background: #e3e9f0; color: var(--ink); }

/* ---------- Rozet ---------- */
.badge { font-weight: 600; padding: .38em .6em; border-radius: 7px; font-size: .74rem; }
.bg-status-ok   { background: var(--ok-tint);   color: var(--ok); }
.bg-status-wait { background: var(--wait-tint); color: var(--wait); }
.bg-status-off  { background: var(--off-tint);  color: var(--off); }
.bg-soft        { background: var(--brand-tint); color: var(--brand-dark); }

/* ---------- Giriş ---------- */
.login-wrap { min-height: 100dvh; display: grid; place-items: center; padding: 1.25rem; }
.login-card { width: 100%; max-width: 380px; }

/* ---------- Ufak detaylar ---------- */
.muted { color: var(--ink-soft); }
.hint { font-size: .8rem; color: var(--ink-soft); }
.empty { text-align: center; padding: 2.25rem 1rem; color: var(--ink-soft); }
a { color: var(--brand); }
.sticky-submit {
  position: sticky; bottom: 0; z-index: 5;
  background: linear-gradient(to top, var(--paper) 65%, rgba(241,244,248,0));
  padding: .85rem 0 1rem;
}

@media (prefers-reduced-motion: reduce) { * { transition: none !important; animation: none !important; } }

#eusKapsayici, #eusOzetEk, #veliModalGorusme {
        --kritik: #ef4444; --kritik-bg: #fef2f2; --kritik-border: #fca5a5;
        --riskli: #f59e0b; --riskli-bg: #fffbeb; --riskli-border: #fcd34d;
        --izlenmeli: #0ea5e9; --izlenmeli-bg: #f0f9ff; --izlenmeli-border: #bae6fd;
        --normal: #10b981; --normal-bg: #ecfdf5; --normal-border: #6ee7b7;       
        --metin: #0f172a; --metin-soluk: #64748b; 
        --kenar: #e2e8f0; --kutu-bg: #ffffff; --sayfa-bg: #f8fafc;
        color: var(--metin);
    }
    #eusKapsayici *, #eusOzetEk *, #veliModalGorusme * { box-sizing: border-box; }
    .eus-modal-ust { 
        display: flex; align-items: center; gap: 20px; padding: 24px 32px 20px; 
    }
    .eus-avatar { 
        width: 64px; height: 64px; min-width: 64px; border-radius: 50%; 
        display: flex; align-items: center; justify-content: center; 
        color: #ffffff; font-weight: 800; font-size: 26px; 
        box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    }
    .eus-flex-buyu { flex: 1; min-width: 0; }
    .eus-modal-isim { font-weight: 800; font-size: 22px; color: #0f172a; letter-spacing: -0.02em; margin-bottom: 4px; }
    .eus-modal-alt { font-size: 13.5px; color: #64748b; font-weight: 500; }
    .eus-modal-rozet { 
        font-size: 12.5px; font-weight: 700; padding: 8px 18px; 
        border-radius: 9999px; white-space: nowrap; letter-spacing: 0.02em; 
    }
    .eus-modal-puan { 
        font-size: 22px; font-weight: 800; width: 60px; height: 60px; min-width: 60px; 
        border-radius: 50%; border: 3px solid; display: flex; align-items: center; justify-content: center; 
        background: #ffffff; box-shadow: 0 4px 8px -2px rgba(0,0,0,0.08);
    }
    
    /* Modern Pill Tabs */

    /* Body Area */
    .eus-modal-govde { padding: 24px 32px 40px; background: var(--sayfa-bg); }
    .eus-mini-baslik { font-weight: 700; font-size: 14.5px; color: #1e293b; margin: 28px 0 14px; display: flex; align-items: center; gap: 8px; letter-spacing: -0.01em; }
    
    /* Grids & Interactive Cards */
    .eus-kart-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 20px; align-items: stretch; }
    .eus-kart { 
        background: var(--kutu-bg); border: 1px solid var(--kenar); border-radius: 16px; 
        padding: 20px 24px; display: flex; flex-direction: column; gap: 8px; 
        box-shadow: 0 2px 4px rgba(0,0,0,0.02); transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .eus-kart:hover { transform: translateY(-4px); box-shadow: 0 12px 24px -8px rgba(0,0,0,0.1); border-color: #cbd5e1; }
    .eus-kart-vurgu { background: #eff6ff; border-color: #bfdbfe; }
    .eus-kart-vurgu .eus-kart-deger { color: #2563eb; }
    .eus-kart-label { font-size: 12.5px; color: #64748b; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
    .eus-kart-deger { font-size: 32px; font-weight: 800; color: #0f172a; line-height: 1.1; letter-spacing: -0.02em; }
    .eus-kart-altyazi { font-size: 12.5px; color: #94a3b8; font-weight: 500; margin-top: 2px;}

    /* Summary Overview Cards */
    .eus-ozet-kart-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 20px; align-items: stretch; }
    .eus-ozet-kart-grid > *, .eus-kart-grid > * { height: 100%; min-width: 0; }
    .eus-ozet-kart {
        background: var(--kutu-bg); border: 1px solid var(--kenar); border-left: 4px solid var(--eus-vurgu, #cbd5e1); border-radius: 16px;
        padding: 16px 20px; cursor: pointer; transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1); display: flex; flex-direction: column;
        box-shadow: 0 2px 4px rgba(0,0,0,0.02); position: relative; overflow: hidden;
    }
    .eus-ozet-kart::after { content:""; position:absolute; top:-34px; right:-34px; width:92px; height:92px; border-radius:50%; background:var(--eus-vurgu-bg, #f8fafc); opacity:0.7; z-index:0; pointer-events:none; }
    .eus-ozet-kart > * { position: relative; z-index: 1; }
    .eus-ozet-kart:hover { box-shadow: 0 16px 28px -8px rgba(59,130,246,0.15); transform: translateY(-4px); }
    .eus-ozet-kart-ust { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
    .eus-ozet-kart-ikon { width: 32px; height: 32px; min-width: 32px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 16px; background: var(--eus-vurgu-bg, #f1f5f9); }
    .eus-ozet-kart-baslik { font-size: 14px; font-weight: 700; color: #334155; flex: 1; }
    .eus-ozet-kart-rozet { font-size: 10.5px; font-weight: 700; padding: 4px 10px; border-radius: 9999px; white-space: nowrap; text-transform: uppercase; letter-spacing: 0.02em;}
    .eus-ozet-kart-deger { font-size: 26px; font-weight: 800; color: var(--eus-vurgu, #0f172a); margin-bottom: 6px; letter-spacing: -0.01em; text-align: right; }
    .eus-ozet-kart-not { font-size: 13px; color: #64748b; line-height: 1.55; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
    .eus-ozet-kart-git { font-size: 11.5px; color: #94a3b8; margin-top: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; transition: color 0.2s; }
    .eus-ozet-kart:hover .eus-ozet-kart-git { color: var(--eus-vurgu, #3b82f6); }
    
    .eus-ozet-genel-baslik { font-size: 18px; font-weight: 800; margin-bottom: 6px; display: flex; align-items: center; color: #0f172a; }
    .eus-ozet-genel-alt { font-size: 13.5px; color: #64748b; margin-bottom: 24px; line-height: 1.5; }

    /* Progress Bars */
    .eus-bar-grid { display: flex; flex-direction: column; gap: 14px; }
    .eus-bar-item { font-size: 13.5px; }
    .eus-bar-ust { display: flex; justify-content: space-between; margin-bottom: 8px; font-weight: 600; color: #334155; }
    .eus-bar-disi { background: #e2e8f0; border-radius: 999px; height: 10px; overflow: hidden; }
    .eus-bar-ic { height: 100%; border-radius: 999px; transition: width 0.5s ease-out; }
    .eus-genis-bar-disi { background: #e2e8f0; border-radius: 999px; height: 14px; overflow: hidden; margin-bottom: 12px; }
    .eus-genis-bar-ic { height: 100%; border-radius: 999px; transition: width 0.5s ease-out; }

    /* Lists & Metrics */
    .eus-sinyal-liste { margin: 12px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .eus-sinyal-liste li { 
        font-size: 13.5px; color: #334155; padding: 12px 16px 12px 36px; position: relative; 
        background: #ffffff; border: 1px solid var(--kenar); border-radius: 12px; line-height: 1.5; font-weight: 500;
    }
    .eus-sinyal-liste li::before { content: "→"; position: absolute; left: 14px; font-weight: 700; color: #94a3b8; font-size: 16px; }
    
    .eus-aksiyon { background: #eff6ff; border: 1px solid #bfdbfe; border-radius: 14px; padding: 16px 20px; margin-top: 24px; font-size: 14.5px; color: #1e40af; line-height: 1.6; }
    .eus-aksiyon b { color: #1e3a8a; }
    .eus-baskin { background: #fffbeb; color: #b45309; border: 1px solid #fde68a; border-radius: 14px; padding: 14px 20px; font-size: 14.5px; font-weight: 600; margin: 16px 0; }
    .eus-zayif-ders { font-size: 14.5px; color: #be123c; background: #fff1f2; border: 1px solid #fecdd3; border-radius: 14px; padding: 14px 20px; margin-top: 16px; font-weight: 600; }
    
    .eus-oncelik { font-size: 11px; font-weight: 700; background: #fef2f2; color: #ef4444; padding: 4px 10px; border-radius: 999px; margin-left: 8px; vertical-align: middle; }
    .eus-metrik-satir { display: flex; gap: 24px; font-size: 13.5px; color: #64748b; margin-top: 16px; flex-wrap: wrap; align-items: center; }
    .eus-metrik-satir b { color: #0f172a; font-weight: 700; font-size: 14.5px; }
    
    .eus-aciklama { background: #ffffff; border-left: 4px solid #cbd5e1; border-radius: 10px; padding: 16px 20px; font-size: 13.5px; color: #475569; line-height: 1.6; margin: 20px 0; box-shadow: 0 1px 2px rgba(0,0,0,0.02); }
    .eus-rozet-buyuk { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 700; padding: 10px 20px; border-radius: 999px; margin-bottom: 20px; }
    .eus-durum-kutu { border-radius: 14px; padding: 14px 20px; font-size: 14.5px; font-weight: 600; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
    .eus-uyari { background: #fffbeb; border: 1px solid #fde68a; border-radius: 14px; padding: 16px 20px; font-size: 13.5px; color: #b45309; line-height: 1.6; margin-bottom: 24px; font-weight: 500; }

    /* Mentor Notes */
    .eus-mentor-ozet { background: #eff6ff; border: 1px solid #bfdbfe; border-left: 5px solid #3b82f6; border-radius: 14px; padding: 16px 20px; font-size: 14.5px; color: #1e40af; line-height: 1.6; margin-bottom: 24px; font-weight: 500; }
    .eus-mentor-detay { background: #ffffff; border: 1px solid #e2e8f0; border-left: 5px solid #0ea5e9; border-radius: 14px; padding: 20px 28px; margin-top: 28px; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02); }
    .eus-mentor-detay-baslik { font-weight: 800; font-size: 14.5px; color: #0284c7; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
    .eus-mentor-detay-metin { font-size: 14.5px; color: #334155; line-height: 1.7; }

    /* Mentor Görüşme Rehberi (Açılır Bölüm) */
    .eus-acilir { background: #ffffff; border: 1px solid var(--kenar); border-radius: 16px; margin-top: 24px; box-shadow: 0 2px 4px rgba(0,0,0,0.02); overflow: hidden; }
    .eus-acilir summary { list-style: none; cursor: pointer; padding: 18px 24px; display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 15px; color: #0f172a; user-select: none; transition: background 0.2s; }
    .eus-acilir summary::-webkit-details-marker { display: none; }
    .eus-acilir summary:hover { background: #f8fafc; }
    .eus-acilir-ok { margin-left: auto; font-size: 13px; color: #94a3b8; transition: transform 0.25s; }
    .eus-acilir[open] .eus-acilir-ok { transform: rotate(180deg); }
    .eus-acilir-icerik { padding: 0 24px 24px; }
    .eus-gorusme-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .eus-gorusme-panel { border: 1.5px solid; border-radius: 16px; padding: 20px 22px; background: #ffffff; }
    .eus-gorusme-ogr { border-color: #bfdbfe; background: linear-gradient(to bottom, #eff6ff, #ffffff); }
    .eus-gorusme-veli { border-color: #ddd6fe; background: linear-gradient(to bottom, #f5f3ff, #ffffff); }
    .eus-gorusme-baslik { font-weight: 800; font-size: 14.5px; margin-bottom: 4px; display: flex; align-items: center; gap: 8px; }
    .eus-gorusme-ogr .eus-gorusme-baslik { color: #1d4ed8; }
    .eus-gorusme-veli .eus-gorusme-baslik { color: #6d28d9; }
    .eus-gorusme-alt { font-size: 12px; color: #64748b; font-weight: 600; margin-bottom: 14px; }
    .eus-gorusme-liste { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .eus-gorusme-liste li { font-size: 13.5px; color: #334155; line-height: 1.6; padding: 10px 14px 10px 36px; position: relative; background: rgba(255,255,255,0.85); border: 1px solid #e2e8f0; border-radius: 12px; font-weight: 500; }
    .eus-gorusme-liste li::before { content: "💬"; position: absolute; left: 11px; top: 10px; font-size: 13px; }
    .eus-gorusme-liste li.eus-tavsiye::before { content: "✅"; }
    .eus-gorusme-liste li.eus-acilis { background: #fffbeb; border-color: #fde68a; }
    .eus-gorusme-liste li.eus-acilis::before { content: "🎬"; }
    .eus-gorusme-ton { margin-top: 14px; font-size: 12.5px; color: #475569; background: #f8fafc; border: 1px dashed #cbd5e1; border-radius: 10px; padding: 10px 14px; line-height: 1.6; }
    @media (max-width: 768px) { .eus-gorusme-grid { grid-template-columns: 1fr; } }

    /* Tables */
    .eus-tablo-wrap { overflow-x: auto; margin: 16px 0; border: 1px solid var(--kenar); border-radius: 16px; background: #ffffff; box-shadow: 0 2px 4px rgba(0,0,0,0.02); }
    table.eus-tablo { width: 100%; border-collapse: collapse; font-size: 13.5px; }
    table.eus-tablo th { background: #f8fafc; color: #475569; font-weight: 700; font-size: 12.5px; padding: 14px 20px; text-align: center; border-bottom: 2px solid #e2e8f0; white-space: nowrap; letter-spacing: 0.02em; }
    table.eus-tablo td { padding: 14px 20px; text-align: center; border-bottom: 1px solid #f1f5f9; color: #334155; font-weight: 500;}
    table.eus-tablo td.sol { text-align: left; }
    table.eus-tablo tr:last-child td { border-bottom: none; }
    table.eus-tablo tr:hover td { background: #f8fafc; }
    .eus-poz { color: #10b981; font-weight: 700; }
    .eus-neg { color: #ef4444; font-weight: 700; }
    .eus-notr { color: #94a3b8; font-weight: 600; }
    .eus-son-satir td { background: #eff6ff; font-weight: 700; color: #1e40af; }
    .eus-son-satir:hover td { background: #e0f2fe; }
    .eus-dahil { color: #10b981; font-size: 12px; font-weight: 700; background: #ecfdf5; padding: 6px 12px; border-radius: 999px; }
    .eus-haric { color: #64748b; font-size: 12px; font-weight: 600; background: #f1f5f9; padding: 6px 12px; border-radius: 999px; }

    /* SWOT & Custom Components */
    .eus-swot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 28px; }
    .eus-swot-kutu { border-radius: 16px; padding: 24px; border: 1.5px solid; transition: transform 0.2s, box-shadow 0.2s; background: #ffffff;}
    .eus-swot-kutu:hover { transform: translateY(-3px); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05); }
    .eus-swot-baslik { font-weight: 800; font-size: 15px; margin-bottom: 6px; letter-spacing: -0.01em; display: flex; align-items: center; gap: 8px;}
    .eus-swot-alt { font-size: 12.5px; color: #64748b; margin-bottom: 16px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;}
    .eus-swot-liste { margin: 0; padding-left: 24px; font-size: 13.5px; color: #334155; line-height: 1.7; font-weight: 500; }
    .eus-swot-bos { font-size: 13px; color: #94a3b8; font-style: italic; background: rgba(255,255,255,0.5); padding: 12px; border-radius: 8px; text-align: center; }
    .eus-swot-guclu { border-color: #a7f3d0; background: linear-gradient(to bottom, #ecfdf5, #ffffff); } .eus-swot-guclu .eus-swot-baslik { color: #047857; }
    .eus-swot-zayif { border-color: #fecaca; background: linear-gradient(to bottom, #fef2f2, #ffffff); } .eus-swot-zayif .eus-swot-baslik { color: #be123c; }
    .eus-swot-firsat { border-color: #bfdbfe; background: linear-gradient(to bottom, #eff6ff, #ffffff); } .eus-swot-firsat .eus-swot-baslik { color: #1d4ed8; }
    .eus-swot-tehdit { border-color: #fde68a; background: linear-gradient(to bottom, #fffbeb, #ffffff); } .eus-swot-tehdit .eus-swot-baslik { color: #b45309; }
    
    .eus-simulasyon-grid { display: flex; align-items: center; justify-content: center; gap: 28px; margin: 20px 0; }
    .eus-simulasyon-kart { background: #ffffff; border: 1px solid var(--kenar); border-radius: 16px; padding: 24px 36px; text-align: center; min-width: 180px; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02); }
    .eus-simulasyon-kart-vurgu { background: #ecfdf5; border-color: #10b981; border-width: 2px; }
    .eus-simulasyon-label { display: block; font-size: 13px; color: #64748b; font-weight: 700; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
    .eus-simulasyon-deger { display: block; font-size: 36px; font-weight: 800; color: #0f172a; line-height: 1; }
    .eus-simulasyon-ok { font-size: 32px; color: #cbd5e1; font-weight: 800; }

    .eus-senaryo-grid { display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 20px; margin-bottom: 28px; }
    .eus-senaryo-kart { border: 2px solid; border-radius: 16px; padding: 24px 20px; text-align: center; background: #ffffff; box-shadow: 0 2px 4px rgba(0,0,0,0.02); }
    .eus-senaryo-kart-merkez { transform: scale(1.05); box-shadow: 0 16px 32px -8px rgba(0,0,0,0.1); z-index: 2; }
    .eus-senaryo-label { display: block; font-size: 13.5px; font-weight: 700; color: #475569; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.05em; }
    .eus-senaryo-deger { display: block; font-size: 32px; font-weight: 800; line-height: 1; }

    .eus-yuzdelik-disi { position: relative; height: 36px; margin: 20px 0 12px; }
    .eus-yuzdelik-grad { position: absolute; top: 12px; left: 0; right: 0; height: 12px; border-radius: 999px; background: linear-gradient(90deg, #ef4444, #f59e0b, #10b981); box-shadow: inset 0 2px 4px rgba(0,0,0,0.1); }
    .eus-yuzdelik-isaret { position: absolute; top: -8px; transform: translateX(-50%); font-size: 24px; color: #0f172a; font-weight: 800; text-shadow: 0 2px 8px rgba(255,255,255,0.9); }

    .eus-matris-disi { position: relative; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; height: 260px; border: 2px solid var(--kenar); border-radius: 20px; overflow: hidden; margin-bottom: 20px; background: #ffffff; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02); }
    .eus-matris-kare { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; font-size: 15px; font-weight: 700; color: #334155; padding: 20px; line-height: 1.5; }
    .eus-matris-kare span { display: block; font-size: 12.5px; font-weight: 500; color: #64748b; margin-top: 6px; }
    .eus-matris-su { background: linear-gradient(135deg, #fffbeb, #ffffff); border-right: 1px solid var(--kenar); border-bottom: 1px solid var(--kenar); }
    .eus-matris-sagu { background: linear-gradient(135deg, #ecfdf5, #ffffff); border-bottom: 1px solid var(--kenar); }
    .eus-matris-sa { background: linear-gradient(135deg, #fef2f2, #ffffff); border-right: 1px solid var(--kenar); }
    .eus-matris-saga { background: linear-gradient(135deg, #fef2f2, #ffffff); }
    .eus-matris-isaret { position: absolute; transform: translate(-50%, 50%); font-size: 26px; color: #2563eb; text-shadow: 0 0 10px rgba(255,255,255,0.9); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
    .eus-matris-isaret span { position: absolute; top: -26px; left: 50%; transform: translateX(-50%); font-size: 11.5px; font-weight: 800; color: #1e40af; background: #ffffff; padding: 4px 10px; border-radius: 6px; border: 1px solid #bfdbfe; white-space: nowrap; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }

    .eus-sekme-bos { text-align: center; padding: 80px 20px; color: var(--metin-soluk); font-size: 15px; font-weight: 500; background: #ffffff; border-radius: 20px; border: 2px dashed #cbd5e1; margin-top: 24px; }

    @media (max-width: 1024px) {
        .eus-ozet-grid, .eus-ozet-kart-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
        .eus-kart-grid { grid-template-columns: 1fr 1fr; }
        .eus-swot-grid { grid-template-columns: 1fr; }
        .eus-senaryo-grid { grid-template-columns: 1fr; gap: 12px; }
        .eus-senaryo-kart-merkez { transform: scale(1); }
        .eus-simulasyon-grid { flex-direction: column; gap: 12px; }
        .eus-simulasyon-ok { transform: rotate(90deg); }
        .eus-modal-ust { flex-direction: column; text-align: center; padding: 20px 20px 12px; gap: 12px;}
        .eus-modal-govde { padding: 20px; }
    }
    @media (max-width: 560px) {
        .eus-ozet-grid, .eus-ozet-kart-grid, .eus-kart-grid { grid-template-columns: 1fr; }
        .eus-modal-govde { padding: 14px; }
        .eus-detay-ust-bar { padding: 12px 14px; }
    }
    @media (max-width: 480px) {
        .eus-kart-grid, .eus-ozet-kart-grid { grid-template-columns: 1fr; }
        .eus-matris-disi { height: 200px; }
    }
        .eus-modal-govde { border-radius: 0 0 20px 20px; }
        .eus-detay-ust-bar {
            display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
            padding: 14px 20px; background: #ffffff; border: 1px solid #e2e8f0; border-bottom: 1px solid #eef2f7;
            border-radius: 20px 20px 0 0;
        }
        .eus-detay-ust-baslik { margin: 0; font-size: 15.5px; font-weight: 700; color: #0f172a; display: flex; align-items: center; gap: 9px; }
        .eus-detay-ust-kapsam { font-size: 11.5px; font-weight: 600; color: #4338ca; background: #eef2ff; border: 1px solid #e0e7ff; padding: 4px 10px; border-radius: 20px; }
        .eus-geri-btn { border: 1px solid #cbd5e1; background: #f8fafc; color: #334155; font-size: 12.5px; font-weight: 600; padding: 8px 15px; border-radius: 9px; cursor: pointer; transition: all 0.2s; }
        .eus-geri-btn:hover { background: #eef2ff; color: #3730a3; border-color: #c7d2fe; }
        @media (max-width: 768px) { .eus-detay-ust-bar { padding: 12px 14px; } }
        /*üst taraf*/

.g-dashboard { font-family: 'Google Sans', Arial, sans-serif;color: #202124;}

/* --- Bootstrap 3.3.7 uyum katmanı (BS4 yardımcı sınıflarının karşılıkları) --- */
.g-dashboard .mx-0 { margin-left: 0; margin-right: 0; }
.g-dashboard .px-0 { padding-left: 0; padding-right: 0; }
.g-dashboard .px-2 { padding-left: 8px; padding-right: 8px; }
.g-dashboard .px-3 { padding-left: 15px; padding-right: 15px; }
.g-dashboard .mb-3 { margin-bottom: 16px; }
.g-dashboard .mt-3 { margin-top: 16px; }
.g-dashboard .d-flex { display: flex; }
.g-dashboard .justify-content-end { justify-content: flex-end; }
/* Satırları flex yaparak BS3 float'larının yol açtığı üst üste binmeyi
   ve satır yüksekliği farklarını kökten çözüyoruz. */
.g-dashboard .row { display: flex; flex-wrap: wrap; align-items: stretch; }
.g-dashboard .row::before, .g-dashboard .row::after { display: none; }
.g-dashboard [class*="col-"] { min-width: 0; float: none; }
.g-card-wrapper { display: flex; flex-direction: column; height: auto; align-self: stretch; min-width: 0; margin-bottom: 24px; }
.g-card { 
    background: #ffffff; border-radius: 28px; border: none; 
    box-shadow: 0 8px 24px rgba(149, 157, 165, 0.08); 
    padding: 24px; display: flex; flex-direction: column; flex-grow: 1; 
    height: 100%; min-width: 0; overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}
.g-card > * { min-width: 0; }
.g-card .apexcharts-canvas, .g-card canvas, .g-card svg { max-width: 100% !important; }
.g-text-secondary, .g-card-title { overflow-wrap: anywhere; word-break: break-word; }
.g-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(149, 157, 165, 0.12); }
.g-card-content { flex-grow: 1; display: flex; flex-direction: column; justify-content: center; margin-bottom: 16px; }
.g-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.g-card-title { font-size: 17px; font-weight: 600; color: #3c4043; margin: 0; display: flex; align-items: center; gap: 14px; }
.g-text-secondary { color: #5f6368; font-size: 14px; font-weight: 500; margin-bottom: 4px; }
.g-text-primary { color: #1f2937; font-size: 32px; font-weight: 700; font-family: 'Nunito', sans-serif; line-height: 1.1; }
.g-color-blue { color: #4285f4; } .g-bg-blue { background-color: #e8f0fe; color: #4285f4; }
.g-color-green { color: #34a853; } .g-bg-green { background-color: #e6f4ea; color: #34a853; }
.g-color-red { color: #ea4335; } .g-bg-red { background-color: #fce8e6; color: #ea4335; }
.g-color-yellow { color: #fbbc04; } .g-bg-yellow { background-color: #fef7e0; color: #f9ab00; }
.g-color-purple { color: #a142f4; } .g-bg-purple { background-color: #f3e8fd; color: #a142f4; }
.g-avatar { width: 56px; height: 56px; border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.g-stat-flex { display: flex; align-items: center; gap: 18px; margin-bottom: 16px; }
.g-btn { font-family: 'Google Sans', sans-serif; font-weight: 600; font-size: 14px; border-radius: 100px; padding: 10px 24px; border: none; background: #e8f0fe; color: #4285f4; display: inline-flex; align-items: center; justify-content: center; transition: all 0.2s ease; cursor: pointer; text-decoration: none; width: 100%; }
.g-btn:hover { background: #d2e3fc; transform: scale(1.02); }
.g-chip { display: inline-flex; align-items: center; padding: 6px 12px; border-radius: 100px; background: #f1f3f4; font-size: 12px; font-weight: 600; color: #3c4043; margin-right: 4px; margin-bottom: 8px; border: none; }
.g-list-item { border-radius: 20px; padding: 16px; margin-bottom: 12px; background: #f8fafd; transition: background 0.2s; cursor: pointer; }
.g-list-item:hover { background-color: #f0f4f9; }
.g-progress-track { height: 10px; background-color: #e9ecef; border-radius: 10px; overflow: hidden; margin: 12px 0; width: 100%; }
.g-progress-fill { height: 100%; border-radius: 10px; transition: width 0.8s ease-in-out; }

.g-empty-state { text-align:center; color:#5f6368; padding:60px 20px; font-weight:600; font-size:14px; }

.g-badge-up   { background:#e6f4ea; color:#188038; padding:6px 7px; border-radius:100px; font-weight:700; font-size:13px; }
.g-badge-down { background:#fce8e6; color:#d93025; padding:6px 7px; border-radius:100px; font-weight:700; font-size:13px; }
.g-badge-flat { background:#f1f3f4; color:#5f6368; padding:6px 7px; border-radius:100px; font-weight:700; font-size:13px; }

.g-mini-stat { display:flex; justify-content:space-between; align-items:center; padding:10px 4px; border-bottom:1px solid #f1f3f4; font-size:13px; font-weight:600; color:#5f6368; }
.g-mini-stat:last-child { border-bottom:none; }
.g-mini-stat b { color:#202124; font-family:'Nunito',sans-serif; font-size:15px; }

/* ---------- Üst Bar ---------- */
.K14_TOPBAR { 
  background: #ffffff; 
  padding: 16px 24px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  position: sticky; 
  top: 0; 
  z-index: 100; 
  box-shadow: 0 1px 3px rgba(0,0,0,0.05); 
}

.K14_LOGO { 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  text-decoration: none; 
  font-size: 1.35rem; 
  font-weight: 800; 
  color: var(--ink); 
  letter-spacing: -0.5px; 
}

.K14_LOGO img {
  max-height: 70px;
  width: auto;
  display: block;
}

/* ---------- Karşılama (Hero) Alanı ---------- */
.K14_HERO { 
  background: linear-gradient(135deg, #1e40af 0%, var(--brand-dark) 50%, var(--brand) 100%); 
  padding: 50px 20px 80px; 
  text-align: center; 
  position: relative; 
  overflow: hidden; 
}

.K14_HERO::before { 
  content: ''; 
  position: absolute; 
  top: -50%; 
  left: -10%; 
  width: 50%; 
  height: 200%; 
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%); 
  transform: rotate(30deg); 
  pointer-events: none; 
}

.K14_HERO h1 { 
  font-size: 2.1rem; 
  font-weight: 800; 
  color: #ffffff !important; 
  margin: 0 0 8px 0; 
  letter-spacing: -0.5px; 
  text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.K14_HERO p { 
  font-size: 1.05rem; 
  color: #f1f5f9 !important; 
  max-width: 540px; 
  margin: 0 auto; 
  line-height: 1.5; 
  opacity: 0.95;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* ---------- Ana İçerik Kapsayıcısı ---------- */
.K14_RND_SAYFA { 
  min-height: 100vh; 
  padding: 0 0 120px; /* Sabit alt bar boşluğu */
  position: relative; 
  z-index: 10; 
  margin-top: -35px; 
}

.K14_RND_KAPSAYICI { 
  max-width: 820px; 
  margin: 0 auto; 
  padding: 0 16px; 
}

/* ---------- Bölüm Kutuları ---------- */
.K14_RND_BOLUM { 
  background: var(--card); 
  border: 1px solid var(--line); 
  border-radius: 20px; 
  padding: 24px; 
  margin-bottom: 20px; 
  box-shadow: var(--card-shadow); 
  scroll-margin-top: 90px; 
  transition: transform 0.2s ease, box-shadow 0.2s ease; 
}

.K14_RND_BOLUM_BAS { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  margin-bottom: 20px; 
  border-bottom: 1px solid var(--line-soft); 
  padding-bottom: 16px; 
}

.K14_RND_ADIM_NO { 
  width: 32px; 
  height: 32px; 
  border-radius: 50%; 
  background: var(--brand-tint); 
  color: var(--brand); 
  border: 2px solid #bfdbfe; 
  font-size: 0.95rem; 
  font-weight: 800; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  flex-shrink: 0; 
}

.K14_RND_BOLUM_BAS h2 { 
  font-size: 1.15rem; 
  font-weight: 700; 
  margin: 0; 
  color: var(--ink); 
}

.K14_RND_BOLUM_BAS small { 
  margin-left: auto; 
  font-size: 0.8rem; 
  color: var(--ink-soft); 
}

.K14_DEGISTIR_BTN { 
  color: var(--brand); 
  background: var(--brand-tint); 
  text-decoration: none; 
  font-weight: 700; 
  padding: 6px 14px; 
  border-radius: 8px; 
  font-size: 0.8rem; 
  transition: all 0.2s; 
  border: 1px solid #bfdbfe; 
  display: inline-block;
}

.K14_DEGISTIR_BTN:hover { 
  background: #dbeafe; 
  border-color: #93c5fd;
}

.K14_SECIM {
  display: block;
  cursor: pointer;
  margin: 0;
}

.K14_RND_RADIO { 
  position: absolute; 
  opacity: 0; 
  pointer-events: none; 
}

/* =========================================================
   ASIL HİZMET SEÇİMİ (CAFCAFLI İKONLU KARTLAR)
   ========================================================= */

.K14_TERCIH_GRID {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}

.K14_TERCIH_KART_CAFCAF {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: #ffffff;
  border: 2px solid var(--line);
  border-radius: 18px;
  cursor: pointer;
  position: relative;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
  overflow: hidden;
}

.K14_KART_IKON {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid #bfdbfe;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
  transition: all 0.25s ease;
}

.K14_TERCIH_KART_CAFCAF:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -6px rgba(37, 99, 235, 0.18);
}

.K14_TERCIH_KART_CAFCAF:hover .K14_KART_IKON {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #1d4ed8 100%);
  color: #ffffff;
  border-color: #1d4ed8;
  transform: scale(1.05) rotate(-3deg);
}

.K14_KART_ICERIK {
  flex: 1;
  min-width: 0;
}

.K14_TERCIH_BASLIK {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 4px;
}

.K14_TERCIH_ALT {
  font-size: 0.83rem;
  color: var(--ink-soft);
  line-height: 1.4;
  margin-bottom: 12px;
}

.K14_KART_ALT_BILGI {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px dashed var(--line-soft);
}

.K14_FIYAT_ROZET {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--ink);
  background: var(--paper);
  padding: 4px 7px;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.K14_SECS_BTN {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-dark);
  transition: transform 0.2s;
}

.K14_TERCIH_KART_CAFCAF:hover .K14_SECS_BTN {
  transform: translateX(4px);
}

/* Seçilmiş Hizmet Kartı (Seçim Sonrası) */
.K14_SECILI_PANEL {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 18px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #ffffff;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.25);
  position: relative;
  overflow: hidden;
}

.K14_SECILI_PANEL::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.15));
  pointer-events: none;
}

.K14_PANEL_SOL {
  display: flex;
  align-items: center;
  gap: 16px;
}

.K14_PANEL_IKON {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--ok);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
}

.K14_PANEL_ROZET {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #34d399;
  background: rgba(52, 211, 153, 0.12);
  padding: 2px 8px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 4px;
}

.K14_PANEL_BASLIK {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.K14_PANEL_ALT {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-top: 2px;
}

.K14_PANEL_FIYAT {
  text-align: right;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 18px;
  border-radius: 14px;
  flex-shrink: 0;
}

.K14_PANEL_FIYAT small {
  display: block;
  font-size: 0.7rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.K14_PANEL_FIYAT strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: #60a5fa;
  margin-top: 2px;
}

/* ---------- Öğretmen Seçim Kartları ---------- */
.K14_RND_OGRETMENLER { 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); 
  gap: 12px; 
}

.K14_PASIF {
  opacity: 0.6;
  cursor: not-allowed;
}

.K14_RND_OGRT { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  cursor: pointer; 
  background: var(--paper); 
  border: 2px solid var(--line); 
  border-radius: 16px; 
  padding: 12px 14px; 
  transition: all 0.2s; 
  margin: 0; 
  min-height: 72px; 
  box-sizing: border-box;
}

.K14_RND_OGRT:hover { 
  background: #fff; 
  border-color: #cbd5e1; 
  box-shadow: 0 4px 12px rgba(0,0,0,0.03); 
}

.K14_RND_RADIO:checked + .K14_RND_OGRT,
.K14_RND_OGRT.K14_SECILI { 
  background: #fff; 
  border-color: var(--brand); 
  box-shadow: 0 4px 15px rgba(59,130,246,0.12); 
}

.K14_RND_AVATAR { 
  width: 48px; 
  height: 48px; 
  border-radius: 12px; 
  background: #fff; 
  color: var(--brand); 
  font-weight: 800; 
  font-size: 1.2rem; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  flex-shrink: 0; 
  border: 2px solid var(--line); 
  box-shadow: 0 2px 6px rgba(0,0,0,.02); 
}

.K14_RND_OGRT_GOVDE { 
  flex: 1; 
  min-width: 0; 
}

.K14_RND_OGRT_AD { 
  font-size: 0.95rem; 
  font-weight: 800; 
  color: var(--ink); 
  line-height: 1.2; 
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.K14_RND_OGRT_BRANS { 
  font-size: 0.78rem; 
  color: var(--ink-soft); 
  margin-top: 2px; 
}

.K14_RND_FIYAT {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--brand);
  white-space: nowrap;
}

.K14_RND_YAKIN { 
  display: inline-flex; 
  align-items: center; 
  margin-top: 4px; 
  font-size: 0.72rem; 
  font-weight: 700; 
  color: #0f766e; 
  background: #f0fdfa; 
  border: 1px solid #99f6e4; 
  border-radius: 999px; 
  padding: 2px 8px; 
}

.K14_RND_YAKIN.uzak { 
  color: #b45309; 
  background: #fffbeb; 
  border-color: #fde68a; 
}

.K14_RND_ISARET { 
  width: 22px; 
  height: 22px; 
  border-radius: 50%; 
  border: 2px solid #cbd5e1; 
  flex-shrink: 0; 
  position: relative; 
  transition: all .15s; 
}

.K14_RND_RADIO:checked + .K14_RND_OGRT .K14_RND_ISARET { 
  background: var(--brand); 
  border-color: var(--brand); 
}

.K14_RND_RADIO:checked + .K14_RND_OGRT .K14_RND_ISARET::after { 
  content: "✓"; 
  position: absolute; 
  inset: 0; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  color: #fff; 
  font-size: 0.75rem; 
  font-weight: 800; 
}

.K14_ETIKET {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand);
  background: #dbeafe;
  padding: 2px 8px;
  border-radius: 6px;
  margin-left: 6px;
  vertical-align: middle;
}

/* ---------- Tarih ve Saat Seçimi ---------- */
.K14_RND_GUNLER { 
  display: flex; 
  gap: 10px; 
  overflow-x: auto; 
  padding: 4px 2px 10px; 
  -webkit-overflow-scrolling: touch; 
  scrollbar-width: thin; 
}

.K14_RND_GUNLER::-webkit-scrollbar { 
  height: 6px; 
}

.K14_RND_GUNLER::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

.K14_RND_GUN { 
  cursor: pointer; 
  text-align: center; 
  min-width: 78px; 
  flex-shrink: 0; 
  padding: 10px 8px; 
  border-radius: 14px; 
  background: var(--paper); 
  border: 2px solid var(--line); 
  transition: all .2s; 
  margin: 0; 
  box-sizing: border-box;
}

.K14_RND_GUN:hover { 
  background: #f1f5f9; 
  transform: translateY(-2px); 
}

.K14_RND_GUN .g1 { 
  display: block; 
  font-size: 0.7rem; 
  font-weight: 700; 
  text-transform: uppercase; 
  letter-spacing: .05em; 
  color: var(--ink-soft); 
}

.K14_RND_GUN .g2 { 
  display: block; 
  font-size: 1.25rem; 
  font-weight: 800; 
  color: var(--ink); 
  margin-top: 2px; 
}

.K14_RND_GUN .g3 { 
  display: block; 
  font-size: 0.68rem; 
  font-weight: 700; 
  color: var(--ok); 
  margin-top: 2px; 
}

.K14_RND_RADIO:checked + .K14_RND_GUN { 
  background: var(--brand); 
  border-color: var(--brand); 
  box-shadow: 0 4px 12px rgba(59,130,246,0.25); 
}

.K14_RND_RADIO:checked + .K14_RND_GUN .g1, 
.K14_RND_RADIO:checked + .K14_RND_GUN .g2, 
.K14_RND_RADIO:checked + .K14_RND_GUN .g3 { 
  color: #fff; 
}

.K14_RND_SAATLER { 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); 
  gap: 10px; 
  margin-top: 16px; 
}

.K14_RND_SAAT { 
  cursor: pointer; 
  text-align: center; 
  padding: 12px; 
  border-radius: 12px; 
  background: var(--paper); 
  border: 2px solid var(--line); 
  font-size: 0.9rem; 
  font-weight: 800; 
  color: var(--ink); 
  transition: all .15s; 
  margin: 0; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  box-sizing: border-box;
}

.K14_RND_SAAT:hover { 
  background: #fff; 
  border-color: #cbd5e1; 
  transform: translateY(-1px); 
}

.K14_RND_RADIO:checked + .K14_RND_SAAT { 
  background: var(--brand-dark); 
  border-color: var(--brand-dark); 
  color: #fff; 
  box-shadow: 0 4px 12px rgba(37,99,235,0.25); 
}

/* ---------- Bilgi ve Form Elemanları ---------- */
.K14_FORM_GRID {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.K14_ARA { 
  width: 100%; 
  border: 1px solid #cbd5e1; 
  border-radius: 12px; 
  background: #fff; 
  color: var(--ink); 
  font-size: 0.9rem; 
  padding: 12px 14px; 
  transition: all .2s; 
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.02); 
  box-sizing: border-box;
}

.K14_ARA:focus { 
  outline: none; 
  border-color: var(--brand); 
  box-shadow: 0 0 0 3px rgba(59,130,246,0.15); 
}

.K14_ARA::placeholder { 
  color: #94a3b8; 
}

/* Telefon Kutusu Hizalaması */
.K14_TEL_KUTU {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}

.K14_TEL_ONEK {
  position: absolute;
  left: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink-soft);
  pointer-events: none;
}

.K14_TEL_INPUT {
  padding-left: 52px !important;
}

/* Ödeme Bilgisi & Uyarı Kutuları */
.K14_RND_IPUCU { 
  font-size: 0.85rem; 
  color: var(--ink-soft); 
  background: #f0f7ff; 
  border: 1px dashed #bfdbfe; 
  border-radius: 12px; 
  padding: 12px 16px; 
  margin-top: 16px; 
  line-height: 1.5; 
}

.K14_RND_IPUCU strong {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
}

.K14_ODEME_KUTU { 
  display: flex; 
  align-items: flex-start; 
  gap: 12px; 
  cursor: pointer; 
  margin-top: 16px; 
  padding: 12px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.K14_ODEME_KUTU input { 
  margin-top: 3px; 
  width: 18px;
  height: 18px;
  accent-color: var(--brand);
  cursor: pointer;
}

.K14_ODEME_KUTU span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
}

.K14_BOS {
  text-align: center;
  color: var(--ink-soft);
  padding: 20px;
  background: var(--paper);
  border-radius: 12px;
  font-size: 0.9rem;
  margin: 0;
}

/* ---------- Sabit Alt Gönderim Çubuğu ---------- */
.K14_RND_BAR { 
  position: fixed; 
  left: 0; 
  right: 0; 
  bottom: 0; 
  background: rgba(255, 255, 255, 0.96); 
  backdrop-filter: blur(10px); 
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line); 
  box-shadow: 0 -8px 25px rgba(15, 23, 42, 0.08); 
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom)); 
  z-index: 50; 
}

.K14_RND_BAR_IC { 
  max-width: 820px; 
  margin: 0 auto; 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  gap: 16px; 
}

.K14_RND_BAR_OZET { 
  flex: 1; 
  min-width: 0; 
  font-size: 0.8rem; 
  color: var(--ink-soft); 
  line-height: 1.3; 
}

.K14_RND_BAR_OZET b { 
  display: block; 
  font-size: 1.15rem; 
  color: var(--ink); 
  font-weight: 800; 
  white-space: nowrap; 
}

.K14_RND_GONDER { 
  background: linear-gradient(135deg, var(--brand), var(--brand-dark)); 
  color: #fff; 
  border: none; 
  font-size: 0.95rem; 
  font-weight: 800; 
  border-radius: 12px; 
  padding: 12px 28px; 
  cursor: pointer; 
  transition: all .2s; 
  box-shadow: 0 4px 12px rgba(59,130,246,0.3); 
  white-space: nowrap;
}

.K14_RND_GONDER:hover:not(:disabled) { 
  transform: translateY(-2px); 
  box-shadow: 0 6px 16px rgba(59,130,246,0.4); 
}

.K14_RND_GONDER:disabled { 
  background: #cbd5e1; 
  box-shadow: none; 
  cursor: not-allowed; 
  transform: none; 
  opacity: 0.8;
}

/* ---------- Mobil Kırılma Noktaları (Responsive) ---------- */
@media(max-width: 600px) {
  .K14_TERCIH_GRID,
  .K14_FORM_GRID,
  .K14_RND_OGRETMENLER {
    grid-template-columns: 1fr;
  }

  .K14_SECILI_PANEL {
    flex-direction: column;
    align-items: flex-start;
  }

  .K14_PANEL_FIYAT {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
  }

  .K14_PANEL_FIYAT small {
    margin-bottom: 0;
  }
}
/* ---------- Randevu son tarihi uyarısı ---------- */
.son-tarih {
  display: flex; flex-direction: column; gap: .15rem;
  background: #fff7ed; border: 1px solid #fed7aa; border-left: 4px solid #f97316;
  color: #7c2d12; border-radius: var(--radius); padding: .8rem 1rem; margin-bottom: 1rem;
  font-size: .95rem; line-height: 1.45;
}
.son-tarih span { font-size: .85rem; opacity: .85; }
.son-tarih-bitti {
  background: #fef2f2; border-color: #fecaca; border-left-color: #dc2626; color: #7f1d1d;
}
