/* ═══════════════════════════════════════════════════════════
   taşıtttır.com — Kurumsal Tasarım Sistemi
   Estetik: Lacivert · Turuncu · Güvenilir · Temiz · Profesyonel
   Font: Plus Jakarta Sans (body) + Bricolage Grotesque (display)
   Referans: armut.com tarzı hizmet pazaryeri
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&display=swap');

:root {
  /* ── Ana Renkler ── */
  --navy:      #1B2A4A;
  --navy2:     #243559;
  --navy3:     #2E4070;
  --navy-light:#EEF2FA;
  --navy-mid:  #C8D4EE;

  --orange:    #F5620F;
  --orange2:   #FF7A2F;
  --orange3:   #FFAA70;
  --orange-l:  #FEF0E7;
  --orange-xl: #FFF8F3;

  --white:     #FFFFFF;
  --bg:        #F4F6FB;
  --bg2:       #EEF1F8;
  --surface:   #FFFFFF;

  --ink:       #0F1923;
  --ink2:      #2C3E50;
  --muted:     #6B7A8D;
  --light:     #9CAABB;
  --border:    #DDE3EE;
  --border2:   #C8D0E0;

  --green:     #059669;
  --green-l:   #ECFDF5;
  --red:       #DC2626;
  --red-l:     #FEF2F2;
  --yellow:    #D97706;
  --yellow-l:  #FFFBEB;

  /* ── Yazı Tipleri ── */
  --font-display: 'Bricolage Grotesque', 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  /* ── Köşe Yarıçapları ── */
  --r-sm:  6px;
  --r:     10px;
  --r-lg:  14px;
  --r-xl:  20px;
  --r-2xl: 28px;

  /* ── Gölgeler ── */
  --sh-xs:  0 1px 3px rgba(27,42,74,.06), 0 1px 2px rgba(27,42,74,.04);
  --sh-sm:  0 2px 8px rgba(27,42,74,.08), 0 1px 3px rgba(27,42,74,.05);
  --sh:     0 4px 16px rgba(27,42,74,.10), 0 2px 6px rgba(27,42,74,.06);
  --sh-lg:  0 10px 32px rgba(27,42,74,.13), 0 4px 12px rgba(27,42,74,.07);
  --sh-xl:  0 20px 60px rgba(27,42,74,.16), 0 8px 20px rgba(27,42,74,.08);
  --sh-orange: 0 4px 16px rgba(245,98,15,.28);
  --sh-navy:   0 4px 16px rgba(27,42,74,.25);
}

/* ── RESET ── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }
img { max-width: 100%; display: block; }

/* ── DÜĞMELER ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  padding: .62rem 1.4rem; border-radius: var(--r); font-size: .875rem;
  font-weight: 600; border: none; transition: all .2s cubic-bezier(.4,0,.2,1);
  cursor: pointer; font-family: var(--font-body); white-space: nowrap; letter-spacing: -.01em;
}
.btn-primary {
  background: var(--orange); color: #fff;
  box-shadow: var(--sh-orange);
}
.btn-primary:hover { background: var(--orange2); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245,98,15,.35); }
.btn-primary:active { transform: translateY(0); }

.btn-navy {
  background: var(--navy); color: #fff;
  box-shadow: var(--sh-navy);
}
.btn-navy:hover { background: var(--navy2); transform: translateY(-1px); }

.btn-outline {
  background: transparent; border: 1.5px solid var(--border2);
  color: var(--ink2);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-xl); }

.btn-ghost {
  background: transparent; color: var(--ink2);
}
.btn-ghost:hover { background: var(--bg2); color: var(--ink); }

.btn-light {
  background: var(--navy-light); color: var(--navy);
  border: 1.5px solid var(--navy-mid);
}
.btn-light:hover { background: var(--navy-mid); }

.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: #047857; transform: translateY(-1px); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: #b91c1c; }

.btn-sm   { padding: .4rem .9rem; font-size: .81rem; border-radius: var(--r-sm); }
.btn-lg   { padding: .78rem 2rem; font-size: .95rem; border-radius: var(--r-lg); }
.btn-xl   { padding: .92rem 2.4rem; font-size: 1rem; border-radius: var(--r-lg); font-weight: 700; }
.btn-full { width: 100%; }
.btn-icon { padding: .5rem; width: 36px; height: 36px; border-radius: var(--r); }

/* ── FORMLAR ── */
.field { margin-bottom: .9rem; }
.field label {
  display: block; font-size: .78rem; font-weight: 700;
  color: var(--ink2); margin-bottom: .38rem; letter-spacing: -.01em;
}
.field input, .field select, .field textarea {
  width: 100%; padding: .7rem 1rem;
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--r); font-size: .9rem; color: var(--ink);
  transition: all .2s; font-family: var(--font-body); appearance: none;
}
.field input::placeholder, .field textarea::placeholder { color: var(--light); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,42,74,.1);
}
.field input.err-field, .field select.err-field { border-color: var(--red); }
.field .hint { font-size: .75rem; color: var(--muted); margin-top: .28rem; }
.field select option { background: #fff; color: var(--ink); }
.field textarea { min-height: 88px; resize: vertical; line-height: 1.6; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: .8rem; }

/* ── KARTLAR ── */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-xs);
}
.card-hd {
  padding: 1rem 1.4rem; border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  background: var(--surface);
}
.card-title {
  font-family: var(--font-display); font-size: .92rem;
  font-weight: 700; color: var(--ink);
}
.card-bd { padding: 1.2rem 1.4rem; }

/* ── TABLO ── */
table { width: 100%; border-collapse: collapse; }
th {
  text-align: left; font-size: .71rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; color: var(--muted);
  padding: .65rem 1.1rem; background: var(--bg); border-bottom: 1px solid var(--border);
}
td {
  padding: .9rem 1.1rem; font-size: .875rem;
  border-bottom: 1px solid var(--border); color: var(--ink2);
  vertical-align: middle;
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: #fafbfd; }

/* ── ETIKETLER ── */
.pill {
  display: inline-flex; align-items: center; gap: .25rem;
  padding: .2rem .65rem; border-radius: 999px;
  font-size: .72rem; font-weight: 700; white-space: nowrap;
}
.pill-green  { background: var(--green-l); color: var(--green); border: 1px solid rgba(5,150,105,.15); }
.pill-red    { background: var(--red-l); color: var(--red); border: 1px solid rgba(220,38,38,.15); }
.pill-orange { background: var(--orange-l); color: var(--orange); border: 1px solid rgba(245,98,15,.15); }
.pill-navy   { background: var(--navy-light); color: var(--navy); border: 1px solid var(--navy-mid); }
.pill-gray   { background: var(--bg2); color: var(--muted); border: 1px solid var(--border); }
.pill-yellow { background: var(--yellow-l); color: var(--yellow); border: 1px solid rgba(217,119,6,.15); }

/* ── MODAL ── */
.overlay {
  position: fixed; inset: 0;
  background: rgba(15,25,35,.55); backdrop-filter: blur(8px);
  z-index: 1000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .28s;
}
.overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: #fff; border-radius: var(--r-2xl); padding: 2rem;
  max-width: 480px; width: calc(100% - 2rem);
  max-height: 90vh; overflow-y: auto;
  transform: translateY(14px) scale(.98);
  transition: all .28s cubic-bezier(.34,1.56,.64,1);
  box-shadow: var(--sh-xl);
}
.overlay.open .modal { transform: translateY(0) scale(1); }
.modal-hd {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.5rem;
}
.modal-hd h2 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 800; color: var(--ink); }
.modal-x {
  width: 30px; height: 30px; border-radius: var(--r-sm);
  background: var(--bg); border: 1px solid var(--border);
  font-size: .85rem; color: var(--muted);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: all .18s;
}
.modal-x:hover { background: var(--bg2); color: var(--ink); }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9999;
  background: var(--ink); color: #fff;
  padding: .9rem 1.3rem; border-radius: var(--r-lg);
  font-size: .85rem; font-weight: 500;
  transform: translateY(60px); opacity: 0;
  transition: all .3s cubic-bezier(.34,1.56,.64,1);
  box-shadow: var(--sh-xl); max-width: 320px; pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.ok   { background: var(--green); }
.toast.err  { background: var(--red); }
.toast.warn { background: var(--yellow); color: #fff; }

/* ── TABS ── */
.tab-bar {
  display: flex; gap: .2rem;
  background: var(--bg2); border-radius: var(--r-lg);
  padding: .28rem; border: 1px solid var(--border);
  width: fit-content;
}
.tab {
  padding: .42rem 1.1rem; border-radius: var(--r);
  font-size: .82rem; font-weight: 600; border: none;
  background: transparent; color: var(--muted);
  transition: all .18s; cursor: pointer; font-family: var(--font-body);
}
.tab.active {
  background: #fff; color: var(--navy); box-shadow: var(--sh-xs);
}

/* ── BÖLÜM ETİKETİ ── */
.tag {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; color: var(--orange);
  margin-bottom: .9rem;
}
.tag::before {
  content: ''; display: block; width: 3px; height: 14px;
  background: var(--orange); border-radius: 999px;
}

/* ── AYRAÇ ── */
.divider {
  display: flex; align-items: center; gap: .8rem;
  font-size: .75rem; color: var(--light); margin: .5rem 0;
}
.divider::before, .divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}

/* ── YÜKLEME ── */
.spinner {
  width: 20px; height: 20px;
  border: 2px solid var(--border);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin .7s linear infinite; display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

.skeleton {
  background: linear-gradient(90deg, var(--bg2) 25%, #e8edf6 50%, var(--bg2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite; border-radius: var(--r);
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ── ANİMASYONLAR ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: translateX(0); }
}
.fade   { animation: fadeUp .45s ease both; }
.fade-1 { animation: fadeUp .45s .08s ease both; }
.fade-2 { animation: fadeUp .45s .16s ease both; }
.fade-3 { animation: fadeUp .45s .24s ease both; }
.hidden { display: none !important; }

/* ── GÜVENLİK NOTU ── */
.priv-note {
  background: var(--navy-light); border: 1px solid var(--navy-mid);
  border-radius: var(--r); padding: .75rem 1rem;
  font-size: .8rem; color: var(--navy2);
  display: flex; gap: .5rem; line-height: 1.5; align-items: flex-start;
}

/* ── YILDIZ PUANI ── */
.stars { color: #F59E0B; letter-spacing: .06em; }

/* ── KAYDIRMA ÇUBUĞU ── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--navy-mid); }

/* ── YARDIMCI ── */
.text-orange { color: var(--orange); }
.text-navy   { color: var(--navy); }
.text-muted  { color: var(--muted); }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
