/* Sosta — Servis Takip (müşteri) */
.stk-page { --stk-primary: #001b3d; --stk-accent: #004ccb; --stk-surface: #f4f7fc; }

.stk-hero {
  background: linear-gradient(135deg, #001b3d 0%, #0f2744 60%, #1e3a5f 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stk-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(0,76,203,.3), transparent 45%);
}
.stk-hero > div { position: relative; z-index: 1; }
.stk-hero--compact .stk-hero__title { font-size: clamp(1.5rem, 3vw, 2.25rem); }
.stk-hero__row { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; flex-wrap: wrap; margin-bottom: .75rem; }

.stk-breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: .5rem;
  font-size: .8125rem; opacity: .85; margin-bottom: 1.25rem;
}
.stk-breadcrumb a { color: inherit; text-decoration: none; }
.stk-breadcrumb a:hover { text-decoration: underline; }

.stk-hero__badge {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .35rem .85rem; border-radius: 999px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: .75rem;
}
.stk-hero__badge .material-symbols-outlined { font-size: 16px; }

.stk-hero__title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 800; line-height: 1.15; margin-bottom: .75rem;
}
.stk-hero__title span { color: #6eb6ff; }
.stk-hero__lead { font-size: 1.05rem; opacity: .9; max-width: 42rem; line-height: 1.6; }

.stk-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 992px) {
  .stk-layout { grid-template-columns: 1.1fr .9fr; align-items: start; }
}

.stk-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 8px 32px rgba(0, 27, 61, 0.08);
  position: relative;
  overflow: hidden;
}
.stk-card--form {
  padding: 0;
  border: 1px solid #dbe4f0;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 12px 40px rgba(0, 76, 203, 0.08);
}
.stk-card--form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #004ccb, #3b82f6, #6eb6ff);
}
.stk-card--full { grid-column: 1 / -1; }
.stk-card__title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--stk-primary);
  margin-bottom: 0.35rem;
  line-height: 1.25;
}
.stk-card__desc {
  color: #64748b;
  margin-bottom: 0;
  line-height: 1.6;
  font-size: 0.9375rem;
}

.stk-form-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.75rem 1.75rem 1.25rem;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  border-bottom: 1px solid #eef2f7;
}
.stk-form-head__icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, #004ccb 0%, #2563eb 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 76, 203, 0.28);
}
.stk-form-head__icon .material-symbols-outlined {
  font-size: 1.75rem;
}
.stk-form-head__copy {
  flex: 1;
  min-width: 0;
  padding-top: 0.15rem;
}

.stk-form-example {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 0 1.75rem 0.25rem;
  padding: 0.85rem 1.1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #f1f5f9 0%, #f8fafc 100%);
  border: 1px dashed #cbd5e1;
}
.stk-form-example__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
}
.stk-form-example__code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.875rem;
  font-weight: 700;
  color: #004ccb;
  background: #fff;
  padding: 0.25rem 0.65rem;
  border-radius: 0.45rem;
  border: 1px solid #dbeafe;
}

.stk-form {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  padding: 1.5rem 1.75rem 1.75rem;
}
.stk-field label {
  display: block;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: #1e293b;
  letter-spacing: 0.01em;
}
.stk-input-wrap {
  display: flex;
  align-items: stretch;
  min-height: 3.25rem;
  border: 1.5px solid #dbe4f0;
  border-radius: 1rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.stk-input-wrap:hover {
  border-color: #b8c9e3;
  background: #fff;
}
.stk-input-wrap:focus-within {
  border-color: var(--stk-accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 76, 203, 0.1);
}
.stk-input-wrap__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3.25rem;
  color: #64748b;
  background: rgba(0, 76, 203, 0.06);
  border-right: 1px solid #e8eef5;
  transition: color 0.2s ease, background 0.2s ease;
}
.stk-input-wrap__icon .material-symbols-outlined {
  font-size: 1.35rem;
  line-height: 1;
}
.stk-input-wrap:focus-within .stk-input-wrap__icon {
  color: var(--stk-accent);
  background: rgba(0, 76, 203, 0.1);
}
.stk-input {
  flex: 1;
  min-width: 0;
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: none;
  border-radius: 0;
  font-size: 1rem;
  background: transparent;
  color: #0f172a;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
}
.stk-input::placeholder {
  color: #94a3b8;
}
.stk-input:focus {
  outline: none;
  box-shadow: none;
}
.stk-input:hover,
.stk-input:focus {
  background: transparent;
}

/* Tailwind forms eklentisi çakışmalarını önle */
.stk-form .stk-input-wrap .stk-input {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  --tw-ring-shadow: 0 0 #0000 !important;
  --tw-ring-offset-shadow: 0 0 #0000 !important;
}
.stk-form .stk-input-wrap .stk-input:focus {
  outline: none !important;
}
.stk-hint {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #475569;
  margin-top: 0.65rem;
  line-height: 1.55;
  padding: 0.75rem 1rem;
  border-radius: 0.875rem;
  background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
  border: 1px solid #dbeafe;
}
.stk-hint .material-symbols-outlined {
  font-size: 1rem;
  color: #3b82f6;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.stk-form-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.stk-form-trust__item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #334155;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
}
.stk-form-trust__item .material-symbols-outlined {
  font-size: 1rem;
  color: #004ccb;
}

.stk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  border-radius: 0.75rem;
  border: none;
  background: var(--stk-accent);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}
.stk-btn--submit {
  width: 100%;
  padding: 1rem 1.5rem;
  margin-top: 0.25rem;
  background: linear-gradient(135deg, #004ccb 0%, #2563eb 55%, #3b82f6 100%);
  box-shadow: 0 10px 24px rgba(0, 76, 203, 0.28);
}
.stk-btn--submit:hover {
  background: linear-gradient(135deg, #003da8 0%, #1d4ed8 55%, #2563eb 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 76, 203, 0.34);
}
.stk-btn--submit:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(0, 76, 203, 0.22);
}
.stk-btn:hover { background: #003da8; color: #fff; transform: translateY(-1px); }
.stk-btn--ghost { background: transparent; color: var(--stk-primary); border: 1px solid #cbd5e1; }
.stk-btn--ghost:hover { background: #f8fafc; color: var(--stk-primary); }
.stk-btn--outline { background: transparent; color: var(--stk-accent); border: 2px solid var(--stk-accent); }
.stk-btn--outline:hover { background: rgba(0,76,203,.06); color: var(--stk-accent); }

.stk-info { display: flex; flex-direction: column; gap: 1rem; }
.stk-info__item {
  display: flex; gap: 1rem; padding: 1.25rem 1.35rem;
  background: #fff; border-radius: 1rem; border: 1px solid #e2e8f0;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.stk-info__item:hover {
  border-color: #bfdbfe;
  box-shadow: 0 6px 20px rgba(0, 76, 203, 0.08);
}
.stk-info__item .material-symbols-outlined {
  font-size: 28px; color: var(--stk-accent); flex-shrink: 0;
}
.stk-info__item strong { display: block; color: var(--stk-primary); margin-bottom: .2rem; }
.stk-info__item p { margin: 0; font-size: .9rem; color: #64748b; line-height: 1.5; }
.stk-info__cta {
  padding: 1.25rem; border-radius: .85rem;
  background: linear-gradient(135deg, #001b3d, #0f2744); color: #fff;
}
.stk-info__cta p { margin: 0 0 .35rem; opacity: .85; }
.stk-info__cta a { color: #6eb6ff; font-weight: 700; text-decoration: none; }
.stk-info__cta a:hover { text-decoration: underline; }

.stk-status-pill {
  padding: .5rem 1rem; border-radius: 999px; font-weight: 700; font-size: .875rem;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
}
.stk-status-pill--ready { background: rgba(34,197,94,.2); border-color: rgba(34,197,94,.4); }
.stk-status-pill--in_repair, .stk-status-pill--diagnosing { background: rgba(59,130,246,.2); }
.stk-status-pill--waiting_approval, .stk-status-pill--waiting_parts { background: rgba(234,179,8,.2); }
.stk-status-pill--cancelled { background: rgba(239,68,68,.2); }

.stk-progress-bar {
  display: flex; gap: .25rem; margin-bottom: 2rem; overflow-x: auto; padding-bottom: .5rem;
}
.stk-progress-bar__step {
  flex: 1; min-width: 88px; text-align: center; font-size: .7rem; color: #94a3b8; font-weight: 600;
}
.stk-progress-bar__dot {
  width: 14px; height: 14px; border-radius: 50%; background: #e2e8f0;
  margin: 0 auto .4rem; transition: all .2s;
}
.stk-progress-bar__step--done .stk-progress-bar__dot { background: #22c55e; }
.stk-progress-bar__step--current .stk-progress-bar__dot {
  background: var(--stk-accent); box-shadow: 0 0 0 4px rgba(0,76,203,.2);
}
.stk-progress-bar__step--current { color: var(--stk-primary); }

.stk-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .stk-detail-grid { grid-template-columns: repeat(2, 1fr); }
}

.stk-dl { margin: 0; }
.stk-dl > div {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .65rem 0; border-bottom: 1px solid #f1f5f9;
}
.stk-dl > div:last-child { border-bottom: none; }
.stk-dl dt { color: #64748b; font-size: .875rem; }
.stk-dl dd { margin: 0; font-weight: 600; color: var(--stk-primary); text-align: right; }
.stk-price { color: var(--stk-accent) !important; font-size: 1.1rem; }

.stk-block { margin-bottom: 1rem; }
.stk-block:last-child { margin-bottom: 0; }
.stk-block h3 { font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: #94a3b8; margin-bottom: .35rem; }
.stk-block p { margin: 0; color: #334155; line-height: 1.6; }

.stk-parts { display: flex; flex-direction: column; gap: .75rem; }
.stk-part {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: .85rem 1rem; background: var(--stk-surface); border-radius: .65rem;
}
.stk-tag {
  display: inline-block; margin-left: .35rem; padding: .1rem .45rem;
  font-size: .65rem; font-weight: 700; text-transform: uppercase;
  background: #dcfce7; color: #166534; border-radius: 4px;
}

.stk-timeline { position: relative; padding-left: 1.5rem; }
.stk-timeline::before {
  content: ''; position: absolute; left: 5px; top: 8px; bottom: 8px;
  width: 2px; background: #e2e8f0;
}
.stk-timeline__item { position: relative; padding-bottom: 1.25rem; }
.stk-timeline__item:last-child { padding-bottom: 0; }
.stk-timeline__dot {
  position: absolute; left: -1.5rem; top: .35rem;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--stk-accent); border: 2px solid #fff;
  box-shadow: 0 0 0 2px #e2e8f0;
}
.stk-timeline__head {
  display: flex; justify-content: space-between; gap: .5rem; flex-wrap: wrap;
  margin-bottom: .25rem;
}
.stk-timeline__head time { font-size: .8rem; color: #94a3b8; }
.stk-timeline__content p { margin: 0; font-size: .9rem; color: #475569; line-height: 1.55; }

.stk-footer-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem;
  padding-top: 1.5rem; border-top: 1px solid #e2e8f0;
}
