﻿/*
Theme Name: Frostblack 3D
Theme URI: https://frostblack.com
Author: Frostblack Dijital Pazarlama Ltd. Şti.
Author URI: https://frostblack.com
Description: Frostblack 3D — 3D baskı ve tarama hizmetleri WordPress teması
Version: 1.0.0
License: Proprietary
Text Domain: frostblack-3d
*/

/* ================================================================
   Frostblack 3D — Ana Stil Dosyası
   ================================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #f5f5f5;
  --white:    #ffffff;
  --dark:     #212121;
  --accent:   #00b0ff;
  --accent-d: #0090d4;
  --muted:    #888888;
  --border:   #e8e8e8;
  --surface:  #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 68px;
  padding: 0 6%;
  background: rgba(245,245,245,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Nav logo */
.nav-logo { flex-shrink: 0; line-height: 0; }

/* ── NAV ORTA MENÜ (desktop) ── */
.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.nav-center .nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0; padding: 0;
}

.nav-center .nav-menu li { position: relative; }

.nav-center .nav-menu a {
  display: block;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  padding: 7px 13px;
  border-radius: 7px;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
}

.nav-center .nav-menu a:hover,
.nav-center .nav-menu li.current-menu-item > a,
.nav-center .nav-menu li.current_page_item > a,
.nav-center .nav-menu li.current-menu-ancestor > a {
  background: rgba(0,176,255,0.09);
  color: var(--accent);
}

/* Alt menü (dropdown) */
.nav-center .nav-menu .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  min-width: 180px;
  list-style: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s, transform 0.18s;
  transform: translateX(-50%) translateY(4px);
  z-index: 200;
}

.nav-center .nav-menu li:hover > .sub-menu,
.nav-center .nav-menu li:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-center .nav-menu .sub-menu a {
  font-size: 0.82rem;
  border-radius: 7px;
  padding: 8px 12px;
}

/* ── HAMBURGER BUTONU ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 5.5px;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.nav-toggle:hover { border-color: var(--accent); }

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.25s ease, width 0.25s ease;
  transform-origin: center;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBİL FULLSCREEN MENÜ ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 9999;
  overflow-y: auto;
  padding: 24px 28px 48px;
  box-sizing: border-box;
}
.mobile-menu.is-open { display: block; }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.mobile-menu-close {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  cursor: pointer;
  color: #212121;
}

.mobile-menu .mobile-nav-menu {
  list-style: none;
  margin: 0; padding: 0;
}
.mobile-menu .mobile-nav-menu li {
  border-bottom: 1px solid #e0e0e0;
}
.mobile-menu .mobile-nav-menu li:first-child {
  border-top: 1px solid #e0e0e0;
}
.mobile-menu .mobile-nav-menu > li > a {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  color: #212121;
  text-decoration: none;
  padding: 16px 0;
}
.mobile-menu .mobile-nav-menu li.current-menu-item > a,
.mobile-menu .mobile-nav-menu li.current_page_item > a { color: #00b0ff; }

.mobile-menu .mobile-nav-menu .sub-menu {
  list-style: none;
  padding: 0 0 8px 16px;
  margin: 0;
}
.mobile-menu .mobile-nav-menu .sub-menu li { border: none; }
.mobile-menu .mobile-nav-menu .sub-menu a {
  display: block;
  font-size: 0.95rem;
  color: #666;
  padding: 6px 0;
  text-decoration: none;
}

.mobile-menu-actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-menu-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #212121;
  text-decoration: none;
  padding: 14px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
}

.mobile-overlay { display: none; }

/* ── FOOTER MENÜ ── */
.footer-links .footer-nav-list {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0; padding: 0;
}
.footer-links .footer-nav-list a {
  font-size: 0.78rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links .footer-nav-list a:hover { color: var(--dark); }

.logo-svg { height: 28px; width: auto; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-phone {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-phone:hover { color: var(--dark); }

.nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--accent-d); transform: translateY(-1px); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 28px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  background: var(--white);
}
.footer-info { font-size: 0.78rem; color: var(--muted); line-height: 1.7; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 0.78rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--dark); }
.footer-copy { font-size: 0.72rem; color: var(--muted); margin-top: 8px; width: 100%; text-align: center; }

/* ── ORTAK BÖLÜM YAPISI ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 6%;
}

.section { padding: 96px 0; }

.stag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  margin-bottom: 10px;
}

.sh {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.1;
  color: var(--dark);
}

/* ── ORTAK BUTONLAR ── */
.btn-main {
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
  position: relative;
  box-shadow: 0 0 0 0 rgba(0,176,255,0.4);
  animation: pulse-ring 2.5s ease-out infinite 2s;
}
.btn-main:hover { background: var(--accent-d); transform: translateY(-2px); animation: none; }

@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(0,176,255,0.4); }
  70%  { box-shadow: 0 0 0 12px rgba(0,176,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,176,255,0); }
}

.btn-wa {
  background: transparent;
  color: #25D366;
  padding: 14px 22px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid rgba(37,211,102,0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, border-color 0.2s;
}
.btn-wa:hover { background: rgba(37,211,102,0.07); border-color: #25D366; }

.btn-white {
  background: #fff;
  color: var(--accent);
  padding: 14px 26px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.btn-white:hover { opacity: 0.9; }

.btn-outline-w {
  background: transparent;
  color: #fff;
  padding: 14px 22px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.4);
  display: inline-flex;
  align-items: center;
  transition: border-color 0.2s;
  white-space: nowrap;
}
.btn-outline-w:hover { border-color: #fff; }

.btn-dark {
  background: var(--dark);
  color: #fff;
  padding: 13px 24px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-dark:hover { background: #000; transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--muted);
  padding: 13px 22px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--border);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--dark); color: var(--dark); }

/* ── PAGE HEADER (archive, single, page şablonları) ── */
.page-header {
  margin-top: 68px;
  padding: 64px 6% 52px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -80px; right: -60px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,176,255,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.page-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--dark);
}

.page-header p {
  margin-top: 12px;
  font-size: 1rem;
  color: var(--muted);
  max-width: 540px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--accent); }

/* ── BOTTOM CTA ── */
.bcta {
  background: var(--accent);
  border-radius: 20px;
  margin: 0 6% 80px;
  padding: 64px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.bcta h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.2;
  max-width: 480px;
}

.bcta-proof {
  display: flex;
  gap: 20px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.bcta-proof span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.bcta-btns { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

/* ── ARCHIVE ── */
.archive-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 6% 80px;
}

.archive-meta {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 32px;
}

.cat-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.cat-btn {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.18s;
}
.cat-btn:hover,
.cat-btn.active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0,176,255,0.06);
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.post-card {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s ease, transform 0.45s ease, box-shadow 0.2s, border-color 0.2s;
}
.post-card.revealed { opacity: 1; transform: translateY(0); }
.post-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.07);
  transform: translateY(-3px) !important;
}

.post-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  flex-direction: unset;
}
.post-card.featured:hover { transform: translateY(-3px) !important; }
.post-card.featured .card-thumb { height: 100%; min-height: 280px; border-radius: 0; }
.post-card.featured .card-body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.post-card.featured .card-title { font-size: 1.5rem; letter-spacing: -0.8px; }

.card-thumb {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-thumb-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-thumb-inner svg { opacity: 0.18; }

.thumb-1 { background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%); }
.thumb-2 { background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%); }
.thumb-3 { background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%); }
.thumb-4 { background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%); }
.thumb-5 { background: linear-gradient(135deg, #ede7f6 0%, #d1c4e9 100%); }
.thumb-6 { background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%); }
.thumb-7 { background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%); }

.card-cat-badge {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--accent);
  color: #fff;
}

.card-body {
  padding: 22px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.74rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.card-meta-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}

.card-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: 10px;
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}
.card-title:hover { color: var(--accent); }

.card-excerpt {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.card-author { display: flex; align-items: center; gap: 8px; }

.author-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.author-name { font-size: 0.74rem; font-weight: 600; color: var(--dark); }

.card-read-more {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.card-read-more:hover { gap: 8px; }

/* ── SAYFALAMA ── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.page-btn {
  min-width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--border);
  color: var(--muted);
  background: var(--white);
  transition: all 0.18s;
  padding: 0 10px;
}
.page-btn:hover { border-color: var(--accent); color: var(--accent); }
.page-btn.current { background: var(--accent); color: #fff; border-color: var(--accent); }
.page-btn.dots { border-color: transparent; background: transparent; pointer-events: none; }

/* WordPress pagination */
.wp-pagenavi { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.wp-pagenavi a,
.wp-pagenavi span { min-width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: 8px; font-size: 0.84rem; font-weight: 600; text-decoration: none; border: 1.5px solid var(--border); color: var(--muted); background: var(--white); transition: all 0.18s; padding: 0 10px; }
.wp-pagenavi a:hover { border-color: var(--accent); color: var(--accent); }
.wp-pagenavi span.current { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ── SINGLE'A ÖZEL STİLLER ── */

.single-header {
  margin-top: 68px;
  padding: 56px 6% 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.single-header-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.single-cat-badge {
  display: inline-block;
  background: rgba(0,176,255,0.1);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
  text-decoration: none;
  transition: background 0.2s;
}
.single-cat-badge:hover { background: rgba(0,176,255,0.18); }

.single-header h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 24px;
  max-width: 780px;
}

.single-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 32px;
}

.single-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.single-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.single-author-name {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--dark);
}

.single-author-role {
  font-size: 0.72rem;
  color: var(--muted);
}

.single-meta-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
  flex-shrink: 0;
}

.single-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--muted);
}

.single-thumb {
  width: 100%;
  height: 320px;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  margin-top: 32px;
  overflow: hidden;
  position: relative;
}

.single-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-thumb svg { opacity: 0.15; }

.single-thumb-label {
  position: absolute;
  bottom: 20px;
  left: 24px;
  font-size: 0.72rem;
  color: var(--muted);
  background: rgba(255,255,255,0.85);
  padding: 4px 10px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}

.single-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 6% 80px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
}

.single-content { min-width: 0; }

/* ── MAKALE TİPOGRAFİSİ ── */
.prose h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: var(--dark);
  margin: 48px 0 16px;
  line-height: 1.2;
}

.prose h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 32px 0 12px;
}

.prose p {
  font-size: 1rem;
  color: #444;
  line-height: 1.85;
  margin-bottom: 20px;
}

.prose ul, .prose ol {
  padding-left: 22px;
  margin-bottom: 20px;
}

.prose li {
  font-size: 1rem;
  color: #444;
  line-height: 1.75;
  margin-bottom: 8px;
}

.prose strong { color: var(--dark); font-weight: 600; }

.prose a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose blockquote {
  border-left: 3px solid var(--accent);
  padding: 16px 24px;
  margin: 32px 0;
  background: rgba(0,176,255,0.04);
  border-radius: 0 10px 10px 0;
}

.prose blockquote p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--dark);
  margin: 0;
  line-height: 1.7;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 0.88rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.compare-table th {
  background: var(--dark);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.compare-table th:first-child { background: #333; }

.compare-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  color: #444;
  vertical-align: top;
}

.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: #fafafa; }
.compare-table td:first-child { font-weight: 600; color: var(--dark); }

.tag-good {
  display: inline-block;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
}

.tag-bad {
  display: inline-block;
  background: #fce4ec;
  color: #c62828;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
}

.tag-mid {
  display: inline-block;
  background: #fff8e1;
  color: #e65100;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
}

.info-box {
  background: rgba(0,176,255,0.05);
  border: 1px solid rgba(0,176,255,0.2);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 32px 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-box-icon {
  width: 32px; height: 32px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-box p { margin: 0; font-size: 0.9rem; color: var(--dark); line-height: 1.7; }

.post-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.post-tag {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 12px;
  text-decoration: none;
  transition: all 0.18s;
}
.post-tag:hover { border-color: var(--accent); color: var(--accent); }

/* ── SIDEBAR ── */
.single-sidebar {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-cta {
  background: var(--dark);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}

.sidebar-cta::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(0,176,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.sidebar-cta-tag {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 10px;
}

.sidebar-cta h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.4px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.sidebar-cta p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 20px;
}

.sidebar-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 13px 20px;
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
  width: 100%;
}
.sidebar-cta-btn:hover { background: var(--accent-d); }

.sidebar-cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 10px;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.sidebar-cta-phone:hover { color: rgba(255,255,255,0.7); }

.sidebar-related {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 20px;
}

.sidebar-related-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.2px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.related-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: opacity 0.18s;
}
.related-item:last-child { border-bottom: none; padding-bottom: 0; }
.related-item:hover { opacity: 0.75; }

.related-thumb {
  width: 52px; height: 52px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.related-thumb img { width: 100%; height: 100%; object-fit: cover; }
.related-thumb svg { opacity: 0.2; }

.related-info { flex: 1; min-width: 0; }

.related-cat {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--accent);
  margin-bottom: 4px;
}

.related-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sidebar-toc {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 20px;
}

.sidebar-toc-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.toc-list a {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  text-decoration: none;
  padding: 5px 8px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  line-height: 1.4;
}
.toc-list a:hover,
.toc-list a.active { background: rgba(0,176,255,0.07); color: var(--accent); }

/* ── PAGE ŞABLONUNA ÖZEL STİLLER ── */

.page-content-wrap {
  max-width: 1200px !important;
  margin: 0 auto;
  padding: 64px 6% 96px;
}

.page-prose { max-width: 100%; }

.page-prose h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: var(--dark);
  margin: 52px 0 16px;
  line-height: 1.2;
}

.page-prose h2:first-child { margin-top: 0; }

.page-prose p {
  font-size: 1rem;
  color: #444;
  line-height: 1.85;
  margin-bottom: 20px;
}

.page-prose ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.page-prose li {
  font-size: 1rem;
  color: #444;
  line-height: 1.75;
  margin-bottom: 8px;
}

.page-prose strong { color: var(--dark); font-weight: 600; }

/* Gutenberg blok çıktısı — wp-block-* elementleri */
.page-prose > * + * { margin-top: 1.25rem; }
.page-prose > p,
.page-prose > .wp-block-paragraph { margin-bottom: 20px; margin-top: 0; }
.page-prose > h2,
.page-prose > .wp-block-heading { margin: 52px 0 16px; }
.page-prose > h2:first-child,
.page-prose > .wp-block-heading:first-child { margin-top: 0; }
.page-prose > ul,
.page-prose > ol,
.page-prose > .wp-block-list { padding-left: 20px; margin-bottom: 20px; }
.page-prose > .wp-block-image { margin: 32px 0; }
.page-prose > .wp-block-image img { border-radius: 12px; max-width: 100%; height: auto; }
.page-prose > .wp-block-quote,
.page-prose > blockquote { border-left: 3px solid var(--accent); padding-left: 20px; margin: 32px 0; color: #555; font-style: italic; }
.page-prose > .wp-block-buttons { margin: 32px 0; }

.page-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin: 56px 0;
  align-items: center;
}

.page-split-visual {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-radius: 20px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-split-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,176,255,0.08) 1px, transparent 1px);
  background-size: 22px 22px;
}

.page-split-visual svg { position: relative; z-index: 1; opacity: 0.2; }

.page-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin: 56px 0;
}

.pstat {
  background: var(--white);
  padding: 32px 28px;
  text-align: center;
}

.pstat-num {
  font-family: 'Inter', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 8px;
}

.pstat-num span { color: var(--accent); }

.pstat-label {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}

.page-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 56px 0;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.value-card:hover {
  border-color: rgba(0,176,255,0.3);
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}

.value-icon {
  width: 40px; height: 40px;
  background: rgba(0,176,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}

.value-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
}

.page-contact {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 14px;
}

.contact-info p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-detail-icon {
  width: 36px; height: 36px;
  background: var(--bg);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail-text {
  font-size: 0.84rem;
  color: var(--dark);
  line-height: 1.6;
}

.contact-detail-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 3px;
}

.contact-detail-text a {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-detail-text a:hover { color: var(--accent); }

.contact-form-title {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -0.2px;
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* ── FORM ── */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.07);
  position: relative;
  overflow: hidden;
}

.form-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
}

.form-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 6px;
}

.form-card h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--dark);
  margin-bottom: 4px;
}

.form-card > p {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.fgroup { margin-bottom: 12px; }
.fgroup label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 5px;
}

.fgroup input,
.fgroup select,
.fgroup textarea {
  width: 100%;
  padding: 11px 14px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.88rem;
  font-family: inherit;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.fgroup input::placeholder,
.fgroup textarea::placeholder { color: #bbb; }
.fgroup input:focus,
.fgroup select:focus,
.fgroup textarea:focus {
  border-color: var(--accent);
  background: #fff;
}
.fgroup textarea { resize: none; height: 78px; }

.fsubmit {
  width: 100%;
  background: var(--dark);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  margin-top: 6px;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: -0.2px;
}
.fsubmit:hover { background: #000; transform: translateY(-1px); }

.fnote {
  text-align: center;
  font-size: 0.72rem;
  color: #bbb;
  margin-top: 10px;
}

/* ── 404 ── */
.notfound-wrap {
  min-height: calc(100vh - 68px);
  margin-top: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 6%;
  position: relative;
  overflow: hidden;
}

.notfound-wrap::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,176,255,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.notfound-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

.notfound-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 560px;
}

.notfound-num {
  font-family: 'Inter', sans-serif;
  font-size: clamp(7rem, 18vw, 13rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -6px;
  color: var(--dark);
  margin-bottom: 0;
  position: relative;
  display: inline-block;
}

.notfound-num .n-accent { color: var(--accent); }

.notfound-num::after {
  content: '';
  position: absolute;
  bottom: 10px; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 40px;
  background: radial-gradient(ellipse, rgba(0,176,255,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.notfound-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  margin: 16px 0 28px;
}

.notfound-tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 6px rgba(245,158,11,0.5);
}

.notfound-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.notfound-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

.notfound-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.notfound-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.notfound-links-label {
  font-size: 0.75rem;
  color: var(--muted);
  margin-right: 6px;
}

.notfound-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 6px;
  transition: border-color 0.18s, color 0.18s;
}
.notfound-link:hover { border-color: var(--accent); color: var(--accent); }

/* ── AUTHOR ── */
.author-header {
  margin-top: 68px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 56px 6% 48px;
  position: relative;
  overflow: hidden;
}

.author-header::before {
  content: '';
  position: absolute;
  top: -80px; right: -60px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,176,255,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.author-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 36px;
}

.author-avatar-lg {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  position: relative;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--border);
  overflow: hidden;
}

.author-avatar-lg img { width: 100%; height: 100%; object-fit: cover; }

.author-avatar-lg::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(0,176,255,0.3);
}

.author-info { flex: 1; min-width: 0; }

.author-role-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 8px;
}

.author-name {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 10px;
}

.author-bio {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 20px;
}

.author-stats { display: flex; gap: 28px; flex-wrap: wrap; }

.author-stat { display: flex; flex-direction: column; gap: 2px; }

.author-stat-num {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
  line-height: 1;
}

.author-stat-label { font-size: 0.72rem; color: var(--muted); }

.author-stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
  align-self: center;
}

.author-posts-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 52px 6% 80px;
}

.author-posts-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}

.author-posts-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.3px;
}

.author-posts-count { font-size: 0.8rem; color: var(--muted); }

/* ── ARAMA ── */
.search-bar-wrap {
  max-width: 600px;
  margin: 28px 0 0;
}

.search-bar {
  display: flex;
  align-items: center;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.search-bar:focus-within { border-color: var(--accent); }

.search-bar input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 13px 16px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--dark);
  outline: none;
}
.search-bar input::placeholder { color: #bbb; }

.search-bar button {
  background: var(--accent);
  border: none;
  padding: 0 20px;
  height: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s;
  min-height: 48px;
}
.search-bar button:hover { background: var(--accent-d); }

.search-result-meta {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 32px;
}

.search-result-meta strong { color: var(--dark); }

.no-results {
  text-align: center;
  padding: 80px 20px;
}

.no-results-icon {
  width: 64px; height: 64px;
  background: var(--bg);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--muted);
}

.no-results h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.4px;
  margin-bottom: 10px;
}

.no-results p {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 380px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.no-results-suggestions {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.suggestion-chip {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
  text-decoration: none;
  transition: border-color 0.18s, color 0.18s;
}
.suggestion-chip:hover { border-color: var(--accent); color: var(--accent); }

/* Arama highlight */
mark {
  background: rgba(0,176,255,0.15);
  color: var(--dark);
  border-radius: 2px;
  padding: 0 2px;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .single-wrap { grid-template-columns: 1fr; gap: 40px; }
  .single-sidebar { position: static; }
  .single-thumb { height: 220px; }
  .page-split { grid-template-columns: 1fr; gap: 40px; }
  .page-split-visual { height: 240px; }
  .page-stats { grid-template-columns: repeat(2, 1fr); }
  .page-values { grid-template-columns: repeat(2, 1fr); }
  .page-contact { grid-template-columns: 1fr; gap: 40px; padding: 32px; }
  .bcta { flex-direction: column; padding: 48px 36px; }
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .post-card.featured { grid-template-columns: 1fr; }
  .post-card.featured .card-thumb { min-height: 220px; }
  .post-card.featured .card-body { padding: 28px; }
  .author-header-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (max-width: 640px) {
  .post-grid { grid-template-columns: 1fr; }
  .page-header { padding: 40px 6% 32px; }
  .single-header { padding: 40px 6% 0; }
  .single-meta-divider { display: none; }
  .page-stats { grid-template-columns: repeat(2, 1fr); }
  .page-values { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; }
  .page-contact { padding: 24px; }
}

/* ── MOBİL NAV BREAKPOINT ── */
@media (max-width: 900px) {
  .nav-center { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }  /* mobilde nav CTA gizle */
}

@media (max-width: 560px) {
  .bcta { margin: 0 4% 60px; padding: 36px 24px; }
  .nav-phone { display: none; }
  .mobile-menu { width: 100%; border-left: none; }
}

/* WP admin bar logoyu kapatmasın */
body.admin-bar #site-nav { top: 32px; }
@media (max-width: 782px) { body.admin-bar #site-nav { top: 46px; } }

/* ================================================================
   FRONT PAGE (landing) — hero, marquee, hizmetler, accordion,
   Google reviews ve animasyonlar
   ================================================================ */

/* ── HERO ── */
@keyframes fadeUp {
  from { opacity:0; transform: translateY(18px); }
  to   { opacity:1; transform: translateY(0); }
}

@keyframes blink {
  0%,100% { opacity:1; }
  50% { opacity:0.3; }
}

@keyframes live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  70%  { box-shadow: 0 0 0 7px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.hero-section {
  position: relative;
  background: var(--bg);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,176,255,0.10) 0%, transparent 65%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 30%, rgba(0,0,0,0.4) 70%, transparent 100%);
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 68px 6% 0;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 14px 5px 8px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.1s;
}

.tag-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent);
  animation: blink 2s infinite;
}

/* h1 hero-a özel — global h1 boyutunu ezmez */
.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--dark);
  margin-bottom: 24px;
}

.hero h1 .line1 { display: block; opacity:0; animation: fadeUp 0.6s ease forwards 0.25s; }
.hero h1 .line2 { display: block; opacity:0; animation: fadeUp 0.6s ease forwards 0.4s; }
.hero h1 .line3 { display: block; opacity:0; animation: fadeUp 0.6s ease forwards 0.55s; }
.hero h1 .accent { color: var(--accent); }
.hero h1 .outline { -webkit-text-stroke: 1.5px #c0c0c0; color: transparent; }

.hero-desc {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 36px;
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.7s;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.85s;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 1s;
}

.hstat-num {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -1px;
  line-height: 1;
}
.hstat-num span { color: var(--accent); }
.hstat-label { font-size: 0.75rem; color: var(--muted); margin-top: 4px; }

.hero-live {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  color: var(--muted);
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 1.1s;
}

.hero-live .ldot {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.4);
  animation: live-pulse 2s ease-out infinite;
  flex-shrink: 0;
}

/* ── MARQUEE ── */
@keyframes scrollLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes scrollRight {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.marquee-outer {
  overflow: hidden;
  margin: 0;
  padding: 32px 0;
  position: relative;
  transform: skewY(-3deg);
  background: var(--dark);
}

.marquee-wrap { padding: 0; user-select: none; }

.marquee-row {
  display: flex;
  overflow: hidden;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee-row:last-child { border-bottom: none; }

.marquee-track {
  display: inline-flex;
  flex-shrink: 0;
  animation: scrollLeft 28s linear infinite;
  white-space: nowrap;
}
.marquee-track.reverse { animation: scrollRight 32s linear infinite; }
.marquee-row:hover .marquee-track { animation-play-state: paused; }

.mitem {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 24px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.mitem:hover { color: rgba(255,255,255,0.85); }
.mitem svg { color: var(--accent); flex-shrink: 0; }

.msep {
  display: inline-flex;
  align-items: center;
  padding: 0 4px;
  color: rgba(255,255,255,0.12);
  font-size: 0.6rem;
}

/* ── HİZMETLER ── */
.svc-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  gap: 24px;
}
.svc-header p {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 240px;
  text-align: right;
  line-height: 1.65;
}

.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 16px;
}

@keyframes glow-move {
  from { transform: translate(0, 0); }
  to   { transform: translate(-30px, 30px); }
}

.scard-featured {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  background: var(--dark);
  border-radius: 16px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 340px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.scard-featured:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,0.18); }

.scard-featured::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(0,176,255,0.18) 0%, transparent 70%);
  animation: glow-move 5s ease-in-out infinite alternate;
  pointer-events: none;
}

.scard-featured .sico-feat {
  width: 52px; height: 52px;
  background: rgba(0,176,255,0.12);
  border: 1px solid rgba(0,176,255,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 28px;
  transition: background 0.3s;
}
.scard-featured:hover .sico-feat { background: var(--accent); color: #fff; }

.scard-featured h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.8px;
  margin-bottom: 14px;
  line-height: 1.1;
}
.scard-featured p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 28px;
}
.scard-featured .stags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; }

.feat-tag {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.3px;
}

.scard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.scard:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); border-color: rgba(0,176,255,0.3); }
.scard:hover .sico { background: var(--accent); color: #fff; }

.sico {
  width: 40px; height: 40px;
  background: var(--bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.25s, color 0.25s;
  color: var(--muted);
}

.scard h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--dark);
}

.scard-tag {
  display: inline-block;
  background: rgba(0,176,255,0.08);
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.scard p { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }

/* ── NASIL ÇALIŞIR (ACCORDION) ── */
.process-bg {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.acc-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.acc-item {
  border-bottom: 1px solid var(--border);
  background: var(--white);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease, background 0.25s;
}
.acc-item:last-child { border-bottom: none; }
.acc-item.revealed { opacity: 1; transform: translateY(0); }
.acc-item.open { background: var(--bg); }

.acc-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  cursor: pointer;
  user-select: none;
}

.acc-num {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
  line-height: 1;
  min-width: 44px;
}

.acc-title-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.acc-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.3px;
}

.acc-meta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.acc-badge {
  background: rgba(0,176,255,0.08);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.acc-arrow {
  width: 28px; height: 28px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: transform 0.3s ease, border-color 0.25s, color 0.25s;
  flex-shrink: 0;
}
.acc-item.open .acc-arrow { transform: rotate(180deg); border-color: var(--accent); color: var(--accent); }

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 28px 0 92px;
}
.acc-item.open .acc-body { max-height: 200px; padding: 0 28px 24px 92px; }
.acc-body p { font-size: 0.9rem; color: var(--muted); line-height: 1.75; }

.acc-body .acc-detail-tags { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }

.acc-dtag {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--dark);
}

/* ── GOOGLE YORUMLAR ── */
.g-reviews-wrap { background: #f1f3f4; border-radius: 20px; padding: 32px; }

.g-summary {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-bottom: 28px;
  margin-bottom: 24px;
  border-bottom: 1px solid #dadce0;
  flex-wrap: wrap;
}

.g-score-big {
  font-size: 3.8rem;
  font-weight: 700;
  color: #202124;
  line-height: 1;
  font-family: 'Google Sans', 'Inter', sans-serif;
}

.g-stars-row { display: flex; gap: 2px; margin: 6px 0 4px; }
.g-star { width: 18px; height: 18px; fill: #fbbc04; }
.g-total { font-size: 0.8rem; color: #70757a; }
.g-bars { flex: 1; min-width: 180px; }

.g-bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.g-bar-label { font-size: 0.75rem; color: #70757a; width: 10px; text-align: right; flex-shrink: 0; }
.g-bar-track { flex: 1; height: 8px; background: #dadce0; border-radius: 4px; overflow: hidden; }
.g-bar-fill { height: 100%; background: #fbbc04; border-radius: 4px; }

.g-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }

.g-card {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  transition: box-shadow 0.2s;
}
.g-card:hover { box-shadow: 0 3px 10px rgba(0,0,0,0.12); }

.g-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }

.g-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
  font-family: 'Google Sans', 'Inter', sans-serif;
}

.g-card-name { font-size: 0.85rem; font-weight: 600; color: #202124; font-family: 'Google Sans', 'Inter', sans-serif; }
.g-card-meta { font-size: 0.72rem; color: #70757a; margin-top: 1px; }
.g-card-stars { display: flex; gap: 1px; margin-bottom: 8px; }
.g-card-star { width: 13px; height: 13px; fill: #fbbc04; }
.g-card-text { font-size: 0.82rem; color: #3c4043; line-height: 1.6; }

.g-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #dadce0;
  flex-wrap: wrap;
  gap: 12px;
}

.g-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #dadce0;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a73e8;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  font-family: 'Google Sans', 'Inter', sans-serif;
}
.g-all-btn:hover { background: #f8f9fa; box-shadow: 0 1px 4px rgba(0,0,0,0.1); }

.g-badge { display: flex; align-items: center; gap: 6px; font-size: 0.75rem; color: #70757a; }

/* ── FRONT PAGE RESPONSIVE ── */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; padding-top: 100px; padding-bottom: 60px; }
  .hero .form-card { max-width: 100%; width: 100%; box-sizing: border-box; }
  .svc-grid { grid-template-columns: 1fr !important; }
  .scard-featured { grid-column: 1 !important; grid-row: auto !important; min-height: auto; }
  .scard { grid-column: 1 !important; grid-row: auto !important; }
  .acc-body { padding: 0 20px 0 64px; }
  .acc-item.open .acc-body { padding: 0 20px 20px 64px; }
  .acc-header { padding: 18px 20px; gap: 14px; }
  .g-grid { grid-template-columns: 1fr 1fr; }
  .svc-header { flex-direction: column; align-items: flex-start; }
  .svc-header p { text-align: left; max-width: 100%; }
}

@media (max-width: 560px) {
  .hero-stats { gap: 24px; }
  .g-grid { grid-template-columns: 1fr; }
  .g-summary { gap: 16px; }
}
