/* ============================================================
   HİZMET SAYFASI STİLİ
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0f0e0d;
  --surface:   #161513;
  --surface-2: #1d1b18;
  --text:      #f0ede8;
  --text-dim:  rgba(240, 237, 232, 0.55);
  --accent:    #b8922a;
  --border:    rgba(255, 255, 255, 0.08);
  --radius:    8px;
  --transition: 200ms ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

/* ── Topbar ── */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  background: rgba(15, 14, 13, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.topbar-logo {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
}

.topbar-back {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-dim);
  text-decoration: none;
  transition: color var(--transition);
}

.topbar-back:hover { color: var(--text); }

.topbar-back svg {
  width: 14px;
  height: 14px;
}

/* ── İçerik ── */
.page-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

/* ── Breadcrumb ── */
.breadcrumb-nav {
  margin-bottom: 20px;
}

.breadcrumb-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-dim);
}

.breadcrumb-list li + li::before {
  content: "/";
  margin-right: 4px;
  color: rgba(240, 237, 232, 0.25);
}

.breadcrumb-list a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color var(--transition);
}

.breadcrumb-list a:hover { color: var(--accent); }

.breadcrumb-list [aria-current="page"] { color: var(--text); }

/* ── Kategori etiketi ── */
.cat-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

h1 {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-dim);
  margin-bottom: 40px;
}

.meta-duration::before {
  content: "⏱ ";
}

hr {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 40px;
}

.desc p {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(240, 237, 232, 0.75);
  line-height: 1.9;
  margin-bottom: 18px;
}

/* ── Galeri ── */
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 48px 0;
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--surface-2);
  display: block;
}

/* ── CTA ── */
.cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 48px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-top: 48px;
}

.cta-block p {
  font-size: 0.88rem;
  color: var(--text-dim);
}

.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--accent);
  color: #0f0e0d;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  transition: opacity var(--transition);
}

.btn-primary:hover { opacity: 0.85; }

/* ── Footer ── */
.page-footer {
  margin-top: 80px;
  padding: 32px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-dim);
}

.page-footer a {
  color: var(--accent);
  text-decoration: none;
}

@media (max-width: 480px) {
  .topbar { padding: 14px 20px; }
  .gallery { grid-template-columns: 1fr; }
}
