/* Mobil-first • Aydınlık • Flat • İnce fontlar */
:root{
  --bg:#fafbfd;
  --card:#ffffff;
  --text:#1a202c;
  --muted:#6b7280;
  --border:#e5e7eb;
  --primary:#3b82f6;
  --primary-light:#eff6ff;
  --primary-soft:rgba(59,130,246,.08);
  --primary-hover:#2563eb;
  --primary-shadow:rgba(59,130,246,.30);
  --danger:#ef4444;
  --danger-light:#fef2f2;
  --success:#10b981;
  --success-light:#f0fdf4;
  --shadow:0 1px 3px rgba(0,0,0,.04), 0 1px 2px rgba(0,0,0,.03);
  --shadow-lg:0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -2px rgba(0,0,0,.04);
  --radius-sm:10px;
  --radius:14px;
  --radius-lg:18px;
  --radius-full:9999px;
}

/* Role theme overrides (admin panels) */
body.role-ministry{
  --primary:#2563eb;
  --primary-light:#eff6ff;
  --primary-soft:rgba(37,99,235,.10);
  --primary-hover:#1d4ed8;
  --primary-shadow:rgba(37,99,235,.30);
}
body.role-museum{
  --primary:#059669;
  --primary-light:#ecfdf5;
  --primary-soft:rgba(5,150,105,.10);
  --primary-hover:#047857;
  --primary-shadow:rgba(5,150,105,.28);
}
body.role-archaeologist{
  --primary:#d97706;
  --primary-light:#fffbeb;
  --primary-soft:rgba(217,119,6,.10);
  --primary-hover:#b45309;
  --primary-shadow:rgba(217,119,6,.28);
}

*{box-sizing:border-box}
html,body{height:100%;margin:0}

body{
  font-family:'Inter',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,sans-serif;
  font-weight:300;
  background:var(--bg);
  color:var(--text);
  line-height:1.7;
  font-size:16px;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* Public step flows (citizen report + damage report): match homepage cards */
body.page-public-flow{
  --bg:#f6f8fb;
  --shadow:0 1px 2px rgba(0,0,0,.03);
  --shadow-lg:0 12px 18px -10px rgba(15, 23, 42, .16);
}
body.page-public-flow .container{
  padding-top:18px;
}
body.page-public-flow .card{
  padding:24px;
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lg);
}
@media (min-width:720px){
  body.page-public-flow .card{padding:32px}
}
body.page-public-flow .card.card--soft{
  background:#fff;
  border-color:rgba(148,163,184,.28);
  box-shadow:var(--shadow);
}
body.page-public-flow .grid{gap:18px}
body.page-public-flow .row{gap:18px}
body.page-public-flow #map{height:360px}
@media (min-width:860px){
  body.page-public-flow #map{height:420px}
}

/* Step header like index cards */
.flow-head{
  display:flex;
  gap:16px;
  align-items:flex-start;
  margin-bottom:14px;
}
.flow-head .title{
  margin:0 0 6px;
}
.flow-head .muted{
  margin:0;
  max-width:720px;
}
.flow-head .icon-badge{
  width:52px;
  height:52px;
  font-size:20px;
  border-radius:16px;
}

/* Public flow: cleaner section + photo panels (avoid nested "card in card" look) */
body.page-public-flow .flow-card{
  padding:18px;
}
@media (min-width:720px){
  body.page-public-flow .flow-card{padding:22px}
}
.flow-card__head{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  margin-bottom:12px;
}
.flow-card__title{
  font-weight:900;
  display:flex;
  gap:10px;
  align-items:center;
  letter-spacing:-.01em;
}
.flow-card__title i{opacity:.9}

.section-head{
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.section-head__icon{
  width:40px;
  height:40px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:rgba(59,130,246,.10);
  color:var(--primary);
  font-size:16px;
  flex:0 0 auto;
}
.section-head__icon.is-danger{
  background:rgba(239,68,68,.10);
  color:var(--danger);
}
.section-head__title{
  font-weight:950;
  letter-spacing:-.02em;
  line-height:1.15;
  margin-top:1px;
}
.section-head__sub{
  margin-top:4px;
  font-size:13px;
  color:var(--muted);
  line-height:1.45;
}
.mini-head{
  display:flex;
  gap:10px;
  align-items:center;
  font-weight:900;
  margin:12px 0 10px;
}
.mini-head i{opacity:.85}

.tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  border:1px solid rgba(148,163,184,.28);
  background:rgba(148,163,184,.14);
  color:var(--muted);
  letter-spacing:0;
  text-transform:none;
}
.tag--required{
  border-color:rgba(239,68,68,.25);
  background:rgba(239,68,68,.10);
  color:var(--danger);
}
.tag--active{
  border-color:rgba(59,130,246,.22);
  background:rgba(59,130,246,.10);
  color:var(--primary);
  font-weight:900;
}

.card-action{
  appearance:none;
  border:0;
  background:transparent;
  padding:0;
  width:100%;
  text-align:left;
  font:inherit;
  color:inherit;
}
.card-action:focus-visible{
  outline:none;
}
.card-action:focus-visible .report-card{
  outline:2px solid rgba(59,130,246,.35);
  outline-offset:2px;
}

.card--sub{
  padding:18px;
  box-shadow:none;
  background:#fff;
  border-color:rgba(148,163,184,.28);
}
@media (min-width:720px){
  .card--sub{padding:20px}
}

.pick-grid{
  display:grid;
  gap:14px;
}
@media (min-width:860px){
  .pick-grid{grid-template-columns:1fr 1fr}
}

.btn--sm{
  padding:12px 14px;
  font-size:14px;
  border-radius:14px;
}
.btn--xs{
  padding:10px 12px;
  font-size:13px;
  border-radius:12px;
  gap:8px;
}

.subpanel{
  padding:16px;
  border-radius:16px;
  background:rgba(148,163,184,.085);
  border:1px solid rgba(148,163,184,.22);
}
.subpanel--danger{
  background:rgba(239,68,68,.06);
  border:1px dashed rgba(239,68,68,.28);
}
.subpanel__head{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  margin-bottom:10px;
}
.subpanel__head-left{
  display:flex;
  gap:10px;
  align-items:center;
  min-width:220px;
}
.subpanel__icon{
  width:34px;
  height:34px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:rgba(15,23,42,.04);
  border:1px solid rgba(148,163,184,.25);
  color:rgba(15,23,42,.82);
  flex:0 0 auto;
}
.subpanel--danger .subpanel__icon{
  background:rgba(239,68,68,.08);
  border-color:rgba(239,68,68,.22);
  color:var(--danger);
}
.subpanel__title{
  font-weight:950;
  letter-spacing:-.02em;
  line-height:1.15;
}
.subpanel__subtitle{
  font-size:13px;
  color:var(--muted);
  margin-top:3px;
}
.subpanel__actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-bottom:12px;
}
@media (max-width:380px){
  .subpanel__actions{grid-template-columns:1fr}
}

.btn-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
@media (max-width:380px){
  .btn-row{grid-template-columns:1fr}
}

.upload-hint{
  font-size:13px;
  color:var(--muted);
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:10px;
}
.upload-hint i{opacity:.85}

.stack{
  display:grid;
  gap:16px;
}

a{color:inherit;text-decoration:none}

/* Container */
.container{
  max-width:1140px;
  margin:0 auto;
  padding:24px 20px;
}
@media (min-width:720px){
  .container{padding:32px 28px}
}

/* Topbar */
.topbar{
  position:sticky;
  top:0;
  background:rgba(255,255,255,.92);
  backdrop-filter:saturate(140%) blur(12px);
  border-bottom:1px solid var(--border);
  z-index:100;
  box-shadow:0 1px 2px rgba(0,0,0,.02);
}
.topbar__inner{
  max-width:1140px;
  margin:0 auto;
  padding:16px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
@media (min-width:720px){
  .topbar__inner{padding:18px 28px}
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand__mark{
  width:48px;
  height:48px;
  border-radius:var(--radius);
  display:grid;
  place-items:center;
  background:linear-gradient(135deg, var(--primary-light) 0%, rgba(59,130,246,.12) 100%);
  font-size:22px;
  color:var(--primary);
}
.brand__text{
  font-weight:600;
  letter-spacing:-.02em;
  font-size:18px;
  color:var(--text);
}
@media (max-width:520px){
  .brand__text{display:none}
}

.topbar__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
  align-items:center;
}
@media (max-width:768px){
  .topbar__actions .btn{
    padding:10px 14px;
    font-size:0;
  }
  .topbar__actions .btn i{
    font-size:18px;
  }
  .topbar__actions .pill{
    font-size:0;
    padding:10px 12px;
  }
  .topbar__actions .pill i{
    font-size:16px;
  }
  /* Admin panel header buttons */
  .card > div:first-child > div:last-child .btn{
    padding:10px 14px;
    font-size:0;
  }
  .card > div:first-child > div:last-child .btn i{
    font-size:18px;
  }
}

/* Hero */
.hero{
  padding:32px 0 40px;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;
  inset:50px -40px auto -40px;
  height:340px;
  background-image:url("../gobeklitepe.svg");
  background-repeat:no-repeat;
  background-position:80% 20%;
  background-size:620px auto;
  opacity:.10;
  filter:grayscale(1) contrast(1.05);
  pointer-events:none;
  z-index:0;
}
.hero > *{
  position:relative;
  z-index:1;
}
@media (max-width:768px){
  .hero::before{
    height:260px;
    background-position:90% 18%;
    background-size:460px auto;
    opacity:.09;
  }
}
@media (max-width:420px){
  .hero::before{
    height:220px;
    background-position:95% 12%;
    background-size:380px auto;
    opacity:.08;
  }
}
.hero h1{
  font-size:32px;
  font-weight:600;
  letter-spacing:-.03em;
  margin:0 0 12px;
  color:var(--text);
}
@media (min-width:720px){
  .hero h1{font-size:42px}
}
.hero .lead{
  font-size:17px;
  color:var(--muted);
  max-width:640px;
  margin:0 auto 28px;
  line-height:1.7;
}

/* Card */
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:28px;
  box-shadow:var(--shadow);
  margin-bottom:20px;
}
@media (min-width:720px){
  .card{padding:36px}
}
.card--soft{
  box-shadow:none;
  background:var(--bg);
}

/* Typography */
.title{
  font-size:24px;
  font-weight:600;
  letter-spacing:-.02em;
  margin:0 0 8px;
  color:var(--text);
}
.kicker{
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--muted);
}
.title-lg{
  font-size:28px;
  font-weight:950;
  letter-spacing:-.03em;
  line-height:1.12;
  margin:4px 0 6px;
}
@media (min-width:720px){
  .title-lg{font-size:34px}
}
.lead{
  color:var(--muted);
  line-height:1.7;
  margin:0;
  font-size:15px;
}
.muted{
  color:var(--muted);
  font-size:15px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 22px;
  border-radius:var(--radius);
  border:1px solid var(--border);
  font-weight:500;
  font-size:15px;
  cursor:pointer;
  transition:all 180ms ease;
  background:#fff;
  color:var(--text);
  text-align:center;
}
.btn:hover{
  box-shadow:0 4px 6px -1px rgba(0,0,0,.08);
  transform:translateY(-1px);
}
.btn:active{transform:translateY(0)}

.btn--primary{
  background:var(--primary);
  border-color:var(--primary);
  color:#fff;
}
.btn--primary:hover{
  background:var(--primary-hover);
  box-shadow:0 6px 12px -2px var(--primary-shadow);
}

.btn--ghost{
  background:transparent;
  border-color:var(--border);
}
.btn--ghost:hover{
  background:rgba(0,0,0,.02);
}

.btn--danger{
  background:var(--danger-light);
  border-color:#fecaca;
  color:var(--danger);
}
.btn--danger:hover{
  background:var(--danger);
  color:#fff;
}

.btn--success{
  background:var(--success);
  border-color:var(--success);
  color:#fff;
}
.btn--success:hover{
  filter:brightness(.95);
  box-shadow:0 6px 12px -2px rgba(16,185,129,.30);
}

.btn--danger-solid{
  background:var(--danger);
  border-color:var(--danger);
  color:#fff;
}
.btn--danger-solid:hover{
  filter:brightness(.95);
  box-shadow:0 6px 12px -2px rgba(239,68,68,.30);
}

.btn--icon{
  padding:10px 12px;
  width:44px;
  height:44px;
}

.decision-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.decision-actions--3{
  grid-template-columns:1fr 1fr 1fr;
}
@media (max-width:640px){
  .decision-actions--3{
    grid-template-columns:1fr;
  }
}

.btn--block{width:100%}

/* Icon badge (şeffaf arka plan icon) */
.icon-badge{
  width:44px;
  height:44px;
  border-radius:var(--radius);
  display:inline-grid;
  place-items:center;
  background:var(--primary-soft);
  color:var(--primary);
  font-size:18px;
}
.icon-badge--success{
  background:rgba(16,185,129,.08);
  color:var(--success);
}
.icon-badge--danger{
  background:rgba(239,68,68,.08);
  color:var(--danger);
}

/* Grid */
.grid{
  display:grid;
  gap:16px;
}
.grid--2{
  grid-template-columns:1fr;
}
@media (min-width:860px){
  .grid--2{grid-template-columns:1fr 1fr}
}

/* Steps */
.steps{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:10px 0 0;
}
.step{
  padding:10px 16px;
  border-radius:var(--radius-full);
  border:1px solid var(--border);
  color:var(--muted);
  font-weight:500;
  font-size:14px;
  background:#fff;
}
.step.is-active{
  color:var(--primary);
  border-color:var(--primary);
  background:var(--primary-light);
  font-weight:600;
}
.step.is-done{
  color:var(--text);
  border-color:var(--success);
  background:var(--success-light);
}

/* Forms */
label{
  display:block;
  font-size:14px;
  font-weight:500;
  color:var(--text);
  margin:16px 0 8px;
}
input,select,textarea{
  width:100%;
  padding:14px 16px;
  border-radius:var(--radius);
  border:1px solid var(--border);
  background:#fff;
  color:var(--text);
  outline:none;
  font-family:inherit;
  font-size:15px;
  transition:border-color 150ms ease, box-shadow 150ms ease;
}
/* Don't apply text-input sizing to checkbox/radio */
input[type="checkbox"],
input[type="radio"]{
  width:auto;
  padding:0;
  border-radius:6px;
  box-shadow:none;
}
select{
  padding:14px 16px;
  appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 14px center;
  padding-right:40px;
}
input:focus,select:focus,textarea:focus{
  border-color:var(--primary);
  box-shadow:0 0 0 3px rgba(59,130,246,.1);
}
textarea{
  min-height:110px;
  resize:vertical;
  line-height:1.6;
}
input::placeholder,textarea::placeholder{
  color:#9ca3af;
}

.row{
  display:grid;
  gap:16px;
}
@media (min-width:760px){
  .row--2{grid-template-columns:1fr 1fr}
}

/* Alerts */
.alert{
  padding:16px 20px;
  border-radius:var(--radius);
  border:1px solid var(--border);
  background:#fafbfd;
  font-size:15px;
  line-height:1.6;
}
.alert--ok{
  border-color:#a7f3d0;
  background:var(--success-light);
  color:#065f46;
}
.alert--err{
  border-color:#fecaca;
  background:var(--danger-light);
  color:#991b1b;
}
.alert--warn{
  border-color:rgba(245,158,11,.40);
  background:rgba(245,158,11,.10);
  color:#92400e;
}
.alert--success{
  border-color:#a7f3d0;
  background:var(--success-light);
  color:#065f46;
}

/* Pills */
.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 16px;
  border:1px solid var(--border);
  border-radius:var(--radius-full);
  color:var(--muted);
  font-weight:500;
  font-size:14px;
  cursor:pointer;
  transition:all 150ms ease;
  background:#fff;
}
.pill:hover{
  border-color:var(--primary);
  color:var(--primary);
  background:var(--primary-light);
}
.pill.is-on{
  border-color:var(--primary);
  background:var(--primary-light);
  color:var(--primary);
  font-weight:600;
}

/* Photos */
.photos{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}
@media (min-width:600px){
  .photos{grid-template-columns:repeat(3,1fr)}
}
@media (min-width:860px){
  .photos{grid-template-columns:repeat(4,1fr)}
}
.photo{
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  background:#fff;
  position:relative;
  aspect-ratio:1;
}
.photo img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}
.photo__del{
  position:absolute;
  top:10px;
  right:10px;
  background:rgba(0,0,0,.65);
  backdrop-filter:blur(6px);
  border:1px solid rgba(255,255,255,.25);
  color:#fff;
  border-radius:var(--radius-sm);
  padding:8px 10px;
  font-size:14px;
  cursor:pointer;
  transition:all 150ms ease;
}
.photo__del:hover{
  background:rgba(239,68,68,.85);
}
.photos--uploading{
  margin-top:14px;
}
.photo--uploading{
  border-style:dashed;
  border-color:rgba(59,130,246,.24);
  background:linear-gradient(180deg,#f8fbff 0%, #eef4ff 100%);
}
.photo__overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px;
  text-align:center;
  color:#fff;
  background:rgba(15,23,42,.48);
  backdrop-filter:blur(4px);
}
.photo__spinner{
  width:28px;
  height:28px;
  border-radius:999px;
  border:3px solid rgba(255,255,255,.28);
  border-top-color:#fff;
  animation:spin 900ms linear infinite;
}
.photo__label{
  font-size:13px;
  font-weight:800;
  letter-spacing:-.01em;
}
.photo__meta{
  font-size:12px;
  opacity:.92;
}
.upload-progress{
  margin-top:14px;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid rgba(59,130,246,.18);
  background:#f8fbff;
}
.upload-progress__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  font-size:13px;
  color:#1e3a8a;
}
.upload-progress__bar{
  margin-top:10px;
  height:8px;
  border-radius:999px;
  background:rgba(59,130,246,.12);
  overflow:hidden;
}
.upload-progress__bar span{
  display:block;
  height:100%;
  width:0%;
  border-radius:inherit;
  background:linear-gradient(90deg,#3b82f6 0%,#60a5fa 100%);
  transition:width 180ms ease;
}
@keyframes spin{
  from{transform:rotate(0deg)}
  to{transform:rotate(360deg)}
}

/* Footer */
.footer{
  border-top:1px solid var(--border);
  margin-top:48px;
  padding:24px 20px;
  text-align:center;
  color:var(--muted);
  font-size:14px;
}

/* Map */
#map{
  width:100%;
  height:360px;
  border-radius:var(--radius-lg);
  border:1px solid var(--border);
  overflow:hidden;
  box-shadow:var(--shadow);
}
@media (min-width:720px){
  #map{height:440px}
}

.map-frame{
  height:360px;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
  background:#f8fafc;
}
@media (min-width:720px){
  .map-frame{height:420px}
}

/* Simple lightbox for previews */
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(15,23,42,.72);
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
  z-index:9999;
}
.lightbox.is-open{display:flex}
.lightbox__inner{
  width:min(920px, 100%);
  border-radius:18px;
  overflow:hidden;
  background:#0b1020;
  border:1px solid rgba(148,163,184,.25);
  box-shadow:0 18px 40px rgba(0,0,0,.35);
}
.lightbox__inner img{
  width:100%;
  height:auto;
  display:block;
}
.zoomable{
  cursor:zoom-in;
}

/* Offline banner */
.offline-bar{
  position:sticky;
  top:0;
  z-index:120;
  display:none;
  background:rgba(15,23,42,.92);
  color:#fff;
  border-bottom:1px solid rgba(148,163,184,.18);
  backdrop-filter:saturate(140%) blur(10px);
}
.offline-bar.is-on{display:block}
.offline-bar__inner{
  max-width:1140px;
  margin:0 auto;
  padding:10px 20px;
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
}
.offline-bar__inner b{font-weight:900}
.offline-bar__inner .muted{color:rgba(226,232,240,.82)}

/* Tabs */
.tabs{
  display:flex;
  gap:6px;
  flex-wrap:nowrap;
  border-bottom:2px solid var(--border);
  margin-bottom:24px;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
}
.tabs::-webkit-scrollbar{
  height:4px;
}
.tabs::-webkit-scrollbar-thumb{
  background:var(--border);
  border-radius:2px;
}
.tab{
  padding:12px 20px;
  border-radius:var(--radius) var(--radius) 0 0;
  color:var(--muted);
  font-weight:500;
  font-size:14px;
  cursor:pointer;
  transition:all 150ms ease;
  border:1px solid transparent;
  border-bottom:none;
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:8px;
  white-space:nowrap;
  flex-shrink:0;
}
.tab:hover{
  color:var(--text);
  background:rgba(59,130,246,.04);
}
.tab.is-active{
  color:var(--primary);
  background:#fff;
  border-color:var(--border);
  border-bottom:2px solid #fff;
  margin-bottom:-2px;
  font-weight:600;
}
.tab .badge{
  background:var(--primary-light);
  color:var(--primary);
  padding:3px 8px;
  border-radius:var(--radius-full);
  font-size:12px;
  font-weight:600;
  min-width:24px;
  text-align:center;
}
.tab.is-active .badge{
  background:var(--primary);
  color:#fff;
}

/* Report card (list item) */
.report-card{
  display:block;
  padding:20px;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:#fff;
  transition:all 180ms ease;
  cursor:pointer;
}
.report-card--thumb{
  display:flex;
  gap:14px;
  align-items:stretch;
}
.report-card--action{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  cursor:default;
}
.report-card__main{
  flex:1;
  min-width:0;
  display:block;
}
.report-card__side{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  justify-content:flex-end;
}
@media (max-width:760px){
  .report-card--action{
    flex-direction:column;
    align-items:stretch;
  }
  .report-card__side{
    justify-content:stretch;
  }
  .report-card__side .btn{
    width:100%;
  }
}
.report-card__thumb{
  width:76px;
  height:76px;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(148,163,184,.28);
  background:rgba(148,163,184,.10);
  flex:0 0 auto;
}
.report-card__thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.report-card__thumb .thumb-empty{
  width:100%;
  height:100%;
  display:grid;
  place-items:center;
  color:rgba(100,116,139,.85);
  font-size:20px;
}
.report-card__body{
  flex:1;
  min-width:0;
}
.report-card:hover{
  border-color:var(--primary);
  box-shadow:0 4px 12px rgba(59,130,246,.12);
  transform:translateY(-2px);
}
.report-card__header{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
  margin-bottom:12px;
}
.report-card__id{
  font-weight:600;
  font-size:17px;
  letter-spacing:-.01em;
  color:var(--text);
}
.report-card__date{
  color:var(--muted);
  font-size:13px;
}
.report-card__meta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  font-size:14px;
  color:var(--muted);
}
.report-card__meta span{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 12px;
  border-radius:var(--radius-full);
  background:rgba(0,0,0,.03);
  font-weight:500;
}
.report-card__meta .meta-city{
  background:rgba(16,185,129,.08);
  color:#059669;
}
.report-card__meta .meta-citizen{
  background:rgba(59,130,246,.08);
  color:#2563eb;
}
.report-card__meta .meta-museum{
  background:rgba(139,92,246,.08);
  color:#7c3aed;
}
.report-card__meta .meta-archaeologist{
  background:rgba(251,191,36,.08);
  color:#d97706;
}
.report-card__meta .meta-status{
  background:rgba(100,116,139,.08);
  color:#475569;
}

/* Info card (modern bilgi kartı) */
.info-card{
  display:flex;
  align-items:flex-start;
  gap:16px;
  padding:20px;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:#fff;
  margin-bottom:16px;
}
.info-card__icon{
  width:48px;
  height:48px;
  border-radius:var(--radius);
  display:grid;
  place-items:center;
  background:rgba(59,130,246,.08);
  color:var(--primary);
  font-size:20px;
  flex-shrink:0;
}
.info-card__content{flex:1}
.info-card__label{
  font-weight:600;
  font-size:13px;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.05em;
  margin-bottom:6px;
}
.info-card__value{
  font-size:16px;
  color:var(--text);
  line-height:1.5;
}

/* Info lines (icon + label + value) */
.info-lines{
  display:grid;
  gap:10px;
}
.info-line{
  display:grid;
  grid-template-columns:22px 120px 1fr;
  gap:10px;
  align-items:flex-start;
}
@media (max-width:520px){
  .info-line{
    grid-template-columns:22px 1fr;
  }
}
.info-line__icon{
  width:22px;
  height:22px;
  display:grid;
  place-items:center;
  border-radius:6px;
  background:rgba(59,130,246,.08);
  color:var(--primary);
  font-size:12px;
  margin-top:2px;
}
.info-line__label{
  font-weight:700;
  color:var(--text);
  font-size:14px;
}
.info-line__value{
  color:var(--muted);
  font-size:15px;
  line-height:1.6;
  word-break:break-word;
}
@media (max-width:520px){
  .info-line__label{
    grid-column:2;
  }
  .info-line__value{
    grid-column:2;
  }
}

/* Timeline (status history) */
.timeline{
  position:relative;
  display:grid;
  gap:12px;
  padding-left:26px;
}
.timeline::before{
  content:"";
  position:absolute;
  left:11px;
  top:6px;
  bottom:6px;
  width:2px;
  background:rgba(100,116,139,.20);
  border-radius:2px;
}
.timeline-item{
  position:relative;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:14px 14px;
}
.timeline-item::before{
  content:"";
  position:absolute;
  left:calc(-28px + 11px - 6px); /* align with .timeline line at x=11px */
  top:22px;
  transform:translateY(-50%);
  width:12px;
  height:12px;
  border-radius:999px;
  background:#fff;
  border:2px solid rgba(100,116,139,.45);
  box-shadow:0 2px 8px rgba(0,0,0,.06);
}
.timeline-title{
  font-weight:700;
  color:var(--text);
  margin-bottom:4px;
}
.timeline-meta{
  font-size:13px;
  color:var(--muted);
}
.timeline-note{
  margin-top:8px;
  color:var(--text);
  line-height:1.6;
  white-space:pre-wrap;
}

/* Accordion */
.accordion{
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  margin-bottom:16px;
  background:#fff;
}
.accordion-item{
  border-bottom:1px solid var(--border);
}
.accordion-item:last-child{border-bottom:none}
.accordion-header{
  padding:18px 20px;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  background:#fff;
  transition:background 150ms ease;
}
.accordion-header:hover{
  background:rgba(59,130,246,.03);
}
.accordion-header__title{
  font-weight:600;
  font-size:16px;
  color:var(--text);
  display:flex;
  align-items:center;
  gap:10px;
}
.accordion-header__icon{
  width:36px;
  height:36px;
  border-radius:var(--radius-sm);
  display:grid;
  place-items:center;
  background:rgba(59,130,246,.08);
  color:var(--primary);
}
.accordion-header__arrow{
  color:var(--muted);
  transition:transform 200ms ease;
}
.accordion-header.is-open .accordion-header__arrow{
  transform:rotate(180deg);
}
.accordion-body{
  max-height:0;
  overflow:hidden;
  transition:max-height 300ms ease;
}
.accordion-body.is-open{
  max-height:2000px;
}
.accordion-body__content{
  padding:20px;
  border-top:1px solid var(--border);
}

/* Utility */
.text-center{text-align:center}
.text-right{text-align:right}
.mt-2{margin-top:8px}
.mt-3{margin-top:16px}
.mt-4{margin-top:24px}
.mb-2{margin-bottom:8px}
.mb-3{margin-bottom:16px}
.mb-4{margin-bottom:24px}
