/* ══════════════════════════════════════════════════════════
   TesisatBul — Ana Stil Dosyası
   ══════════════════════════════════════════════════════════ */

/* ── Değişkenler ─────────────────────────────────────────── */
:root {
  --primary:       #1e40af;
  --primary-dark:  #1e3a8a;
  --primary-light: #3b82f6;
  --accent:        #f97316;
  --accent-dark:   #ea580c;
  --teal:          #0d9488;
  --success:       #16a34a;
  --danger:        #dc2626;
  --text:          #111827;
  --text-muted:    #6b7280;
  --border:        #e5e7eb;
  --bg-light:      #f8fafc;
  --bg-alt:        #f1f5f9;
  --white:         #ffffff;
  --radius:        12px;
  --radius-lg:     20px;
  --shadow-sm:     0 1px 3px rgba(0,0,0,.08);
  --shadow:        0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:     0 12px 40px rgba(0,0,0,.14);
  --container:     1200px;
  --transition:    .25s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }

/* ── Container ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Animasyonlar ────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes pulse-ring {
  0%   { transform: scale(.8); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}
@keyframes blob-move {
  0%,100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  50%      { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}
@keyframes typing-blink { 50% { opacity: 0; } }
@keyframes countUp { from { opacity: 0; } to { opacity: 1; } }

.animate-fadeup {
  animation: fadeUp .7s ease forwards;
  opacity: 0;
}

/* ── Butonlar ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary   { background: var(--primary); color: #fff; }
.btn--primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(30,64,175,.3); color: #fff; }
.btn--accent    { background: #c2410c; color: #fff; }
.btn--accent:hover  { background: #9a3412; transform: translateY(-1px); color: #fff; }
.btn--ghost     { background: transparent; border: 2px solid var(--border); color: var(--text); }
.btn--ghost:hover   { border-color: var(--primary); color: var(--primary); }
.btn--ghost-white { background: transparent; border: 2px solid rgba(255,255,255,.5); color: #fff; }
.btn--ghost-white:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }
.btn--white     { background: #fff; color: var(--primary); }
.btn--white:hover   { background: #f0f9ff; color: var(--primary-dark); }
.btn--secondary { background: var(--bg-alt); color: var(--text); border: 1px solid var(--border); }
.btn--secondary:hover { background: var(--border); }
.btn--sm  { padding: 7px 16px; font-size: .82rem; }
.btn--lg  { padding: 14px 32px; font-size: 1rem; border-radius: 10px; }
.btn--xs  { padding: 5px 12px; font-size: .78rem; }

/* ══════════════════════ HEADER ══════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow); }

.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}
.logo__icon { font-size: 1.6rem; }
.logo__text span { color: var(--primary); }
.logo--white .logo__text { color: #fff; }
.logo--white .logo__text span { color: rgba(255,255,255,.7); }

.nav { flex: 1; display: flex; }
.nav__list {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav__item { position: relative; }
.nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}
.nav__link:hover { background: var(--bg-light); color: var(--primary); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 340px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 100;
}
.nav__item--dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.dropdown__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: .88rem;
  color: var(--text);
  transition: background var(--transition);
}
.dropdown__item:hover { background: var(--bg-light); color: var(--primary); }

.header__actions { display: flex; gap: 8px; margin-left: auto; flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  background: none;
  padding: 6px 8px;
  margin-left: 8px;
  border: none;
  cursor: pointer;
}
.hamburger__lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hamburger__lines span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger__label {
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--text);
  line-height: 1;
  transition: opacity var(--transition);
}

/* ══════════════════════ HERO ════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 40%, #1d4ed8 70%, #0369a1 100%);
  overflow: hidden;
  padding: 100px 0 60px;
}

.hero__bg { position: absolute; inset: 0; }
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .25;
  animation: blob-move 8s ease-in-out infinite;
}
.hero__blob--1 { width: 500px; height: 500px; background: #3b82f6; top: -100px; right: 100px; animation-delay: 0s; }
.hero__blob--2 { width: 350px; height: 350px; background: #f97316; bottom: -50px; left: 150px; animation-delay: -3s; }
.hero__blob--3 { width: 280px; height: 280px; background: #0d9488; top: 50%; left: 50%; animation-delay: -5s; }
.hero__pipes { position: absolute; inset: 0; overflow: hidden; }
.pipe { position: absolute; width: 100%; bottom: 0; }

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 20px;
  padding: 6px 18px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.hero__title-accent {
  color: #fed7aa;
  border-right: 3px solid #fed7aa;
  animation: typing-blink 1s step-end infinite;
}

.hero__subtitle {
  font-size: 1.1rem;
  opacity: .9;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero__subtitle strong { color: #fed7aa; }

/* Search Card */
.search-card {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 40px;
}
.search-form {
  display: flex;
  gap: 12px;
  align-items: flex-end;
}
.search-form__field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.search-form__field label {
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,.3);
  letter-spacing: .01em;
}
.search-form__field select {
  width: 100%;
  padding: 12px 36px 12px 14px;
  border-radius: 10px;
  border: 2px solid transparent;
  background: #fff;
  color: var(--text);
  font-size: .95rem;
  font-family: inherit;
  outline: none;
  transition: all var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231e40af'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  font-weight: 500;
}
.search-form__field select option { background: #fff; color: var(--text); }
.search-form__field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(249,115,22,.25), 0 2px 8px rgba(0,0,0,.15);
}
.search-form__btn { flex-shrink: 0; padding: 13px 28px; }

.search-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
  font-size: .83rem;
  color: rgba(255,255,255,.7);
}
.search-tags a {
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  padding: 3px 12px;
  transition: all var(--transition);
}
.search-tags a:hover { background: rgba(255,255,255,.25); color: #fff; }

/* Hero Stats */
.hero__stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  overflow: hidden;
}
.hero__stat {
  flex: 1;
  padding: 16px 20px;
  text-align: center;
  font-size: .9rem;
  line-height: 1.3;
}
.hero__stat span:first-child { font-size: 1.6rem; font-weight: 800; display: block; }
.hero__stat-sep { width: 1px; height: 40px; background: rgba(255,255,255,.2); }

.counter { font-size: 1.6rem; font-weight: 800; }

.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero__scroll-indicator {
  width: 28px;
  height: 46px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.hero__scroll-indicator span {
  display: block;
  width: 4px;
  height: 10px;
  background: rgba(255,255,255,.6);
  border-radius: 2px;
  animation: float 1.5s ease-in-out infinite;
}

/* ══════════════════════ ACİL BAND ═══════════════════════ */
.acil-band {
  background: linear-gradient(90deg, #dc2626, #b91c1c);
  color: #fff;
  padding: 12px 0;
  font-size: .9rem;
}
.acil-band__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.acil-band__icon { font-size: 1.2rem; animation: pulse-ring .8s ease-out infinite; }
.acil-band__btn {
  background: #fff;
  color: #dc2626;
  border-radius: 6px;
  padding: 5px 16px;
  font-weight: 700;
  font-size: .85rem;
  transition: all var(--transition);
}
.acil-band__btn:hover { background: #fef2f2; transform: scale(1.03); }
.acil-band__sep { opacity: .4; }
.acil-band__tel { color: #fca5a5; font-weight: 700; }
.acil-band__tel:hover { color: #fff; }

/* ══════════════════════ SECTION ═════════════════════════ */
.section { padding: 80px 0; }
.section--alt { background: var(--bg-light); }

.section__head {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}
.section__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 10px;
}
.section__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
}
.section__link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
  font-size: .9rem;
}

/* ══════════════════════ KATEGORİLER ════════════════════ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 20px;
  border-radius: var(--radius);
  text-align: center;
  color: #fff;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); color: #fff; }
.cat-card:hover::before { background: rgba(255,255,255,.06); }

.cat-card--blue   { background: linear-gradient(135deg, #1e40af, #3b82f6); }
.cat-card--orange { background: linear-gradient(135deg, #c2410c, #f97316); }
.cat-card--red    { background: linear-gradient(135deg, #991b1b, #dc2626); }
.cat-card--teal   { background: linear-gradient(135deg, #0f766e, #14b8a6); }
.cat-card--purple { background: linear-gradient(135deg, #6b21a8, #a855f7); }
.cat-card--green  { background: linear-gradient(135deg, #14532d, #22c55e); }
.cat-card--indigo { background: linear-gradient(135deg, #312e81, #6366f1); }
.cat-card--yellow { background: linear-gradient(135deg, #92400e, #f59e0b); }

.cat-card__icon  { font-size: 2.4rem; margin-bottom: 12px; animation: float 3s ease-in-out infinite; }
.cat-card__name  { font-size: .95rem; font-weight: 700; margin-bottom: 4px; }
.cat-card__desc  { font-size: .75rem; opacity: .85; margin-bottom: 6px; line-height: 1.4; }
.cat-card__count { font-size: .72rem; opacity: .7; margin-top: auto; }

/* ══════════════════════ ADIMLAR ════════════════════════ */
.steps {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.step {
  flex: 1;
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.step__num {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(30,64,175,.4);
}
.step__icon { font-size: 2.8rem; margin-bottom: 16px; }
.step__title { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.step__desc { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }

.step__arrow { font-size: 2rem; color: var(--border); flex-shrink: 0; }

.steps__cta { text-align: center; }

/* ══════════════════════ USTA KARTI ════════════════════ */
.usta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.usta-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: all var(--transition);
}
.usta-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.usta-card--acil { border-color: #fca5a5; }
.usta-card--acil:hover { border-color: var(--danger); }

.usta-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  z-index: 1;
}
.usta-card__badge--gold   { background: #fef9c3; color: #92400e; }
.usta-card__badge--silver { background: #f1f5f9; color: #475569; }
.usta-card__badge--bronze { background: #fff7ed; color: #9a3412; }
.usta-card__badge--red    { background: #fef2f2; color: #dc2626; }
.usta-card__badge--garanti { background: #dcfce7; color: #15803d; }

.usta-card__avatar {
  height: 160px;
  background: linear-gradient(135deg, var(--bg-light), var(--bg-alt));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  overflow: hidden;
}
.usta-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.usta-card__body { padding: 16px; }
.usta-card__name { font-size: .95rem; font-weight: 700; margin-bottom: 8px; }

.usta-card__rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
  font-size: .82rem;
}
.stars { color: #f59e0b; font-size: .9rem; }
.rating-val { font-weight: 700; color: var(--text); }
.rating-count { color: var(--text-muted); }

.usta-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 10px;
}
.usta-card__tags span {
  font-size: .72rem;
  background: var(--bg-light);
  color: var(--text-muted);
  border-radius: 4px;
  padding: 2px 8px;
}

.usta-card__meta {
  display: flex;
  justify-content: space-between;
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.acil-badge {
  background: #fef2f2;
  color: var(--danger);
  border-radius: 4px;
  padding: 1px 7px;
  font-weight: 600;
}

.usta-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.usta-card__price { font-size: .82rem; font-weight: 600; color: var(--success); }

/* ══════════════════════ NEDEN BİZ ══════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--primary); }
.why-card__icon { font-size: 2.4rem; margin-bottom: 16px; }
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.why-card p  { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }

/* ══════════════════════ USTA OL ════════════════════════ */
.section--usta-ol {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 60%, #0369a1 100%);
  color: #fff;
  padding: 80px 0;
}
.usta-ol__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.usta-ol__badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.usta-ol__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}
.usta-ol__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  font-size: .95rem;
  opacity: .9;
}
.usta-ol__list li { display: flex; gap: 8px; }
.usta-ol__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Dashboard preview */
.dashboard-preview {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  animation: float 4s ease-in-out infinite;
}
.dashboard-preview__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,.15);
  font-size: .88rem;
  font-weight: 600;
}
.online-dot { color: #4ade80; font-size: .8rem; }
.dashboard-preview__stats {
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.dp-stat {
  flex: 1;
  padding: 14px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
}
.dp-stat:last-child { border-right: none; }
.dp-stat__val { font-size: 1.2rem; font-weight: 800; }
.dp-stat__lbl { font-size: .72rem; opacity: .7; margin-top: 2px; }

.dashboard-preview__requests { padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.dp-req {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: .82rem;
}
.dp-req--new { border-color: rgba(74,222,128,.4); background: rgba(74,222,128,.05); }
.dp-req strong { display: block; margin-bottom: 2px; }
.dp-req small { opacity: .7; }
.dp-req > div { flex: 1; }

/* ══════════════════════ YORUMLAR ═══════════════════════ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.testimonial:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.testimonial__stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 14px; }
.testimonial p { font-size: .92rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial__author { display: flex; align-items: center; gap: 10px; }
.testimonial__avatar { font-size: 2rem; }
.testimonial__author strong { font-size: .9rem; display: block; }
.testimonial__author small { color: var(--text-muted); font-size: .8rem; }

/* ══════════════════════ İL GRID ════════════════════════ */
.il-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.il-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 30px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}
.il-chip em { font-style: normal; font-size: .75rem; color: var(--text-muted); }
.il-chip:hover { border-color: var(--primary); color: var(--primary); box-shadow: 0 4px 12px rgba(30,64,175,.15); transform: translateY(-2px); }

/* ══════════════════════ FOOTER ═════════════════════════ */
.footer {
  background: #0f172a;
  color: rgba(255,255,255,.75);
  padding-top: 60px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand p { font-size: .9rem; line-height: 1.7; margin: 14px 0 20px; color: rgba(255,255,255,.55); }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: background var(--transition);
}
.footer__social a:hover { background: var(--primary); }

.footer__col h4 {
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.footer__col a { color: rgba(255,255,255,.6); font-size: .88rem; transition: color var(--transition); }
.footer__col a:hover { color: #fff; }
.footer__col li { font-size: .88rem; }

.footer__bottom {
  padding: 18px 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 8px;
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #c2410c;
  color: #fff;
  border-radius: 30px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: .9rem;
  box-shadow: 0 8px 24px rgba(249,115,22,.4);
  z-index: 999;
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.floating-cta.visible { opacity: 1; transform: translateY(0); }
.floating-cta:hover { background: #9a3412; transform: translateY(-2px) scale(1.02); color: #fff; box-shadow: 0 12px 30px rgba(194,65,12,.5); }

/* ── Güven şeridi ─────────────────────────────────────────── */
.guven-seridi {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.guven-seridi__ic {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.guven-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .83rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}
.guven-item span { font-size: 1.1rem; }

/* ── Acil Servis CTA ──────────────────────────────────────── */
.acil-cta {
  background: linear-gradient(135deg, #b91c1c 0%, #dc2626 50%, #ef4444 100%);
  color: #fff;
  padding: 56px 0;
}
.acil-cta__ic {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}
.acil-cta__rozet {
  display: inline-block;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 20px;
  padding: 4px 16px;
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.acil-cta__baslik {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 12px;
}
.acil-cta__alt {
  font-size: .95rem;
  opacity: .9;
  max-width: 460px;
}
.acil-cta__alt strong { color: #fef08a; }
.acil-cta__butonlar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}
.acil-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.acil-cta__btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,.3); }
.acil-cta__btn--tel { background: #fff; color: #dc2626; }
.acil-cta__btn--wa  { background: #25d366; color: #fff; }
@media (max-width: 767px) {
  .acil-cta__ic { flex-direction: column; text-align: center; }
  .acil-cta__alt { max-width: 100%; }
  .acil-cta__butonlar { width: 100%; }
  .acil-cta__btn { justify-content: center; }
  .guven-seridi__ic { gap: 16px; }
  .guven-item { font-size: .78rem; }
}
@media (max-width: 480px) {
  .guven-item { font-size: .75rem; gap: 5px; }
}

/* WhatsApp butonu */
.btn--whatsapp { background: #25d366; color: #fff; }
.btn--whatsapp:hover { background: #1db954; color: #fff; }

/* Garantili rozet */
.usta-card__badge--garanti { background: #ede9fe; color: #5b21b6; top: 12px; left: auto; right: 12px; bottom: auto; }

/* Floating Acil butonları */
.floating-acil { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; opacity: 0; transform: translateY(20px); transition: opacity .35s, transform .35s; pointer-events: none; }
.floating-acil.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.floating-acil__btn { display: inline-flex; align-items: center; gap: 7px; padding: 12px 20px; border-radius: 50px; font-weight: 700; font-size: .85rem; box-shadow: 0 6px 20px rgba(0,0,0,.2); transition: transform .2s, box-shadow .2s; text-decoration: none; }
.floating-acil__btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,.25); }
.floating-acil__btn--wa { background: #25d366; color: #fff; }
.floating-acil__btn--wa:hover { background: #1db954; color: #fff; }
.floating-acil__btn--tel { background: #c2410c; color: #fff; }
.floating-acil__btn--tel:hover { background: #9a3412; color: #fff; }
@media (max-width: 600px) { .floating-acil { bottom: 16px; right: 14px; } .floating-acil__btn { padding: 10px 16px; font-size: .8rem; } }

/* ══════════════════════ RESPONSİVE ════════════════════ */
@media (max-width: 1024px) {
  .cat-grid  { grid-template-columns: repeat(4, 1fr); }
  .usta-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .cat-grid   { grid-template-columns: repeat(2, 1fr); }
  .why-grid   { grid-template-columns: repeat(2, 1fr); }
  .steps      { flex-direction: column; }
  .step__arrow { transform: rotate(90deg); }
  .usta-ol__grid { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .search-form { flex-direction: column; align-items: stretch; }
  .search-form__btn { width: 100%; justify-content: center; }
}

@media (max-width: 768px) {
  .nav         { display: none; }
  .header__actions { display: none; }
  .hamburger   { display: flex; }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  .nav__list   { flex-direction: column; gap: 4px; }
  .dropdown    { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 8px 0 0 12px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .usta-grid   { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: column; gap: 0; }
  .hero__stat-sep { width: 60%; height: 1px; margin: 0 auto; }
  .cat-grid    { grid-template-columns: repeat(2, 1fr); }
  .il-grid     { gap: 8px; }
}

@media (max-width: 480px) {
  .cat-grid   { grid-template-columns: repeat(2, 1fr); }
  .why-grid   { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .acil-band__inner { flex-direction: column; text-align: center; gap: 8px; }
  .acil-band__sep  { display: none; }
  .hero__title { font-size: 1.85rem; line-height: 1.2; }
  .hero__subtitle  { font-size: .93rem; margin-bottom: 24px; }
  .search-card     { padding: 16px; }
  .search-form__field select { -webkit-appearance: none; }
  .hero__stat      { padding: 12px 16px; }
}


/* ── WordPress tema uyumluluk ─────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.site-footer {
  background: #0f172a;
  color: rgba(255,255,255,.75);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 60px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand { }
.footer__desc { font-size: .9rem; line-height: 1.7; margin: 14px 0 20px; color: rgba(255,255,255,.55); }
.footer__social { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: background var(--transition);
  color: rgba(255,255,255,.7);
}
.social-link:hover { background: var(--primary); color: #fff; }
.footer__col h4 { font-size: .9rem; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.footer__col a { color: rgba(255,255,255,.6); font-size: .88rem; transition: color var(--transition); }
.footer__col a:hover { color: #fff; }
.footer__bottom { padding: 18px 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; font-size: .82rem; color: rgba(255,255,255,.4); flex-wrap: wrap; gap: 8px; }
.logo__accent { color: var(--primary); }
.logo--footer .logo__text { color: rgba(255,255,255,.9); }
.logo--footer .logo__accent { color: rgba(255,255,255,.5); }

/* Skip link erişilebilirlik */
.skip-link {
  position: absolute;
  top: -100%;
  left: 12px;
  background: var(--primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: .9rem;
  font-weight: 600;
  z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 8px; color: #fff; }

/* WordPress admin bar offset */
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }

/* Menü açık durumu */
.nav.acik {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 70px; left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 20px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
}
.hamburger.aktif .hamburger__lines span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.aktif .hamburger__lines span:nth-child(2) { opacity: 0; }
.hamburger.aktif .hamburger__lines span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.hamburger.aktif .hamburger__label { opacity: 0; }

/* btn--outline */
.btn--outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn--outline:hover { background: var(--primary); color: #fff; }

/* Form sonuç mesajı */
.form-sonuc { padding: 12px 16px; border-radius: 8px; font-size: .9rem; font-weight: 500; margin-top: 12px; display: none; }
.form-sonuc:not(:empty) { display: block; }
.form-sonuc--basarili { background: #dcfce7; color: #166534; }
.form-sonuc--hata     { background: #fef2f2; color: #991b1b; }

@media (max-width: 768px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer__top { grid-template-columns: 1fr; }
}

/* ── Yorum kartı ─────────────────────────────────────────── */
.yorum-kart { padding: 16px 0; border-bottom: 1px solid var(--border); }
.yorum-kart:last-child { border-bottom: none; }
.yorum-kart__ust { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 8px; }
.yorum-kart__avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 700; flex-shrink: 0;
}
.yorum-kart__ad { font-size: .88rem; font-weight: 700; display: block; }
.yorum-kart__tarih { margin-left: auto; font-size: .75rem; color: var(--text-muted); white-space: nowrap; }
.yorum-kart__icerik { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }

/* ── Usta kart online dot ────────────────────────────────── */
.usta-card { position: relative; }
.usta-card__avatar { position: relative; }
.usta-card__online-dot {
  position: absolute; bottom: 6px; right: 6px;
  width: 14px; height: 14px;
  background: #22c55e; border: 2px solid #fff; border-radius: 50%;
}

/* ── Yıldızlar ───────────────────────────────────────────── */
.yildizlar { display: inline-flex; gap: 1px; font-size: .9rem; }
.yildiz--dolu  { color: #f59e0b; }
.yildiz--yari  { color: #f59e0b; opacity: .6; }
.yildiz--bos   { color: #cbd5e1; }

/* ── Pagination ──────────────────────────────────────────── */
.nav-links { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.nav-links a, .nav-links span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
  font-size: .88rem; font-weight: 600; border: 1px solid var(--border);
  transition: all var(--transition);
}
.nav-links a { color: var(--text); }
.nav-links a:hover { border-color: var(--primary); color: var(--primary); }
.nav-links .current { background: var(--primary); color: #fff; border-color: var(--primary); }
.nav-links .prev, .nav-links .next { width: auto; padding: 0 14px; }

/* ── btn--outline ────────────────────────────────────────── */
.btn--outline { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
.btn--outline:hover { background: var(--primary); color: #fff; }

/* ── Responsive ustalar arşiv ────────────────────────────── */
@media (max-width: 900px) {
  .usta-grid { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 600px) {
  .usta-grid { grid-template-columns: 1fr !important; }
}

/* ══════════════════════ BLOG GRID ═══════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-kart {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-kart:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary); }

.blog-kart__gorsel {
  display: block;
  position: relative;
  overflow: hidden;
  height: 200px;
  background: var(--bg-alt);
}
.blog-kart__gorsel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.blog-kart:hover .blog-kart__gorsel img { transform: scale(1.05); }

.blog-kart__gorsel-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, #eff6ff, #e0f2fe);
}
.blog-kart__kategori {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}
.blog-kart__ic { padding: 20px; }
.blog-kart__meta {
  display: flex;
  gap: 12px;
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.blog-kart__baslik {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
}
.blog-kart__baslik a { color: var(--text); }
.blog-kart__baslik a:hover { color: var(--primary); }
.blog-kart__ozet {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.blog-kart__devam {
  font-size: .85rem;
  font-weight: 600;
  color: var(--primary);
}
.blog-kart__devam:hover { color: var(--primary-dark); }

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   SEO / Lighthouse — Font boyutu, tap target, CLS
   ════════════════════════════════════════════════════════════ */

/* Minimum font boyutu (Lighthouse: <12px flag) */
@media (max-width: 768px) {
  .blog-kart__kategori,
  .usta-card__badge,
  .rating-count,
  .usta-card__tags span,
  .yorum-kart__tarih {
    font-size: .75rem;    /* 12px base → 12px */
  }
  .usta-card__meta,
  .usta-card__body,
  .blog-kart__meta {
    font-size: .82rem;    /* ≥ 13px */
  }
}

/* Tap targets — minimum 48px dokunma alanı */
.btn {
  min-height: 44px;
  min-width: 44px;
}
.btn--xs { min-height: 36px; }
.btn--sm { min-height: 40px; }
.nav__list a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.hamburger {
  min-height: 44px;
  min-width: 44px;
  justify-content: center;
}

/* CLS önleme — görseller için boyut rezervasyonu */
img { height: auto; }
.usta-card__avatar { contain: layout; }
.blog-kart__gorsel { contain: layout; }

/* Prefers-reduced-motion erişilebilirlik */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ── Focus-visible erişilebilirlik (klavye navigasyonu) ──────── */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}
a:focus-visible { border-radius: 3px; }
.btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(30,64,175,.2);
}
.nav__link:focus-visible { background: var(--bg-light); }
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 0;
}
