/* ╔══════════════════════════════════════════╗
   ║    BIZLIKO — index.css  FULL v5          ║
   ╚══════════════════════════════════════════╝ */

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

:root {
  --blue:         #0099E5;
  --blue-dark:    #007CC7;
  --blue-deeper:  #005FA3;
  --blue-deep:    #003D6B;
  --blue-light:   #EBF6FF;
  --blue-mid:     #CCE9F9;

  --orange:       #FF8C00;
  --orange-dark:  #E07A00;
  --orange-light: #FFF3E0;
  --orange-mid:   #FFD8A0;

  --navy:         #0B1628;
  --navy-2:       #0E2040;

  --ink:          #0D1B2A;
  --ink-2:        #1E3448;
  --ink-3:        #4A6580;
  --muted:        #8FA8C0;

  --border:       rgba(0,153,229,0.10);
  --border-2:     rgba(0,0,0,0.06);
  --bg:           #F4F8FC;
  --white:        #FFFFFF;
  --card-bg:      #FFFFFF;

  --r-xs:   8px;
  --r-sm:   14px;
  --r-md:   20px;
  --r-lg:   28px;
  --r-xl:   40px;
  --r-full: 9999px;

  --sh-xs:     0 2px 6px  rgba(0,100,180,0.06);
  --sh-sm:     0 4px 16px rgba(0,100,180,0.09);
  --sh-md:     0 10px 30px rgba(0,100,180,0.12);
  --sh-lg:     0 20px 60px rgba(0,100,180,0.15);
  --sh-blue:   0 8px 28px rgba(0,153,229,0.30);
  --sh-orange: 0 8px 28px rgba(255,140,0,0.30);

  --font-body:    'Poppins', sans-serif;
  --font-display: 'Poppins', sans-serif;

  --nav-h:  72px;
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-t: env(safe-area-inset-top,    0px);
  --max-w:  1220px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a   { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ════════════════════════════════════════════
   UTILITIES
════════════════════════════════════════════ */
.container-biz {
  width: 100%; max-width: var(--max-w);
  margin: 0 auto; padding: 0 20px;
}
@media(min-width:992px){ .container-biz { padding: 0 40px; } }

.container-biz-inner { padding: 0 20px; }
@media(min-width:992px){
  .container-biz-inner { padding: 0 48px; max-width: var(--max-w); margin: 0 auto; }
}

.section    { padding: 40px 0 0; }
.section-lg { padding: 56px 0 0; }

.sec-head {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 22px;
}
.sec-eyebrow {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--blue); margin-bottom: 4px;
}
.sec-title {
  font-size: clamp(20px,5vw,28px); font-weight: 800;
  color: var(--ink); letter-spacing: -0.5px; line-height: 1.15;
}
.sec-title em { font-style: normal; color: var(--orange); }
.sec-link {
  font-size: 13px; font-weight: 800; color: var(--blue);
  white-space: nowrap; display: flex; align-items: center; gap: 3px;
  transition: gap 0.2s;
}
.sec-link:hover { gap: 6px; color: var(--blue-dark); }

/* Yatay scroll */
.hscroll {
  display: flex; gap: 14px;
  padding: 6px 20px 12px;
  overflow-x: auto; scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.hscroll::-webkit-scrollbar { display: none; }
@media(min-width:992px){
  .hscroll { padding: 6px 48px 12px; max-width: var(--max-w); margin: 0 auto; }
}

/* Page-wrap bottom padding (mobil bottom-nav için) */
.page-wrap { padding-bottom: calc(var(--nav-h) + 16px); background: var(--bg); }
@media(min-width:992px){ .page-wrap { padding-bottom: 0; } }

/* ════════════════════════════════════════════
   DESKTOP HEADER — Şeffaf / Sticky
════════════════════════════════════════════ */
.d-header {
  position: absolute;
  top: 0; left: 0; right: 0; z-index: 300;
  height: var(--nav-h);
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: none;
  align-items: center;
  transition: background 0.35s, backdrop-filter 0.35s, box-shadow 0.35s;
}
.d-header.stuck {
  position: fixed;
  background: rgba(11,22,40,0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.20);
  border-bottom-color: rgba(255,255,255,0.06);
}
@media(min-width:992px){ .d-header { display: flex; } }

.d-header-inner {
  width: 100%; max-width: var(--max-w); margin: 0 auto;
  padding: 0 48px;
  display: flex; align-items: center;
}

/* Logo */
.d-logo {
  display: flex; align-items: center;
  text-decoration: none; flex-shrink: 0;
}
.d-logo-img {
  height: 70px;
}
.d-header.stuck .d-logo-img { filter: none; }

/* Nav */
.d-nav {
  display: flex; gap: 34px;
  margin-left: auto; margin-right: 32px;
}
.d-nav a {
  font-size: 13.5px; font-weight: 600;
  color: rgba(255,255,255,0.72);
  text-decoration: none; position: relative; padding-bottom: 3px;
  transition: color 0.2s;
}
.d-nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--orange); border-radius: 2px;
  transition: width 0.25s;
}
.d-nav a:hover { color: #fff; }
.d-nav a:hover::after { width: 100%; }
.d-header.stuck .d-nav a { color: rgba(255,255,255,0.72); }

/* Action butonları */
.d-actions { display: flex; gap: 10px; align-items: center; }

.btn-ghost {
  height: 40px; padding: 0 22px; border-radius: var(--r-full);
  border: 1.5px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  font-family: var(--font-body); font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,0.82); cursor: pointer;
  display: inline-flex; align-items: center;
  text-decoration: none; transition: all 0.22s;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.50);
  background: rgba(255,255,255,0.14);
  color: #fff;
}

.btn-cta {
  height: 40px; padding: 0 22px; border-radius: var(--r-full); border: none;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  font-family: var(--font-body); font-size: 13px; font-weight: 800;
  color: #fff; cursor: pointer;
  box-shadow: 0 4px 18px rgba(255,140,0,0.38);
  display: inline-flex; align-items: center; gap: 7px;
  text-decoration: none; transition: all 0.22s;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,140,0,0.50); color: #fff; }
.btn-cta i { font-size: 16px; }

/* ════════════════════════════════════════════
   MOBİL TOPBAR
════════════════════════════════════════════ */
.m-topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 400;
  padding: calc(var(--safe-t) + 14px) 20px 14px;
  display: flex; align-items: center; justify-content: space-between;
  background: transparent;
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}
.m-topbar.scrolled {
  background: rgba(11,22,40,0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
@media(min-width:992px){ .m-topbar { display: none; } }

.m-logo-wrap { display: flex; align-items: center; }
.m-logo-img  {
  height: 28px;
  filter: brightness(10);
  transition: filter 0.3s;
}
.m-topbar.scrolled .m-logo-img { filter: none; }

.m-topbar-btns { display: flex; gap: 8px; }

.m-user-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.85); font-size: 19px;
  text-decoration: none; transition: all 0.2s;
}
.m-user-btn:hover { border-color: var(--orange); color: var(--orange); }

/* ════════════════════════════════════════════
   HERO — SPLIT SCREEN
════════════════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100svh;
  overflow: hidden;
  position: relative;
}
@media(min-width:992px){
  .hero { grid-template-columns: 1fr 1fr; min-height: 100vh; }
}

/* ── SOL PANEL ── */
.hero-left {
  position: relative; z-index: 2;
  background: linear-gradient(160deg, #0B1628 0%, #0E2040 55%, #162D50 100%);
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 56px) 28px 60px;
  overflow: hidden;
}
@media(min-width:576px)  { .hero-left { padding-left: 36px; padding-right: 36px; } }
@media(min-width:992px)  { .hero-left { padding: calc(var(--nav-h) + 72px) 64px 80px 64px; } }
@media(min-width:1200px) { .hero-left { padding-left: 80px; } }

/* Dekoratif katmanlar */
.hero-noise {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.6;
}
.hero-glow-1 {
  position: absolute; width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,140,0,0.13) 0%, transparent 70%);
  top: -160px; right: -140px; pointer-events: none;
  animation: glowDrift 9s ease-in-out infinite;
}
.hero-glow-2 {
  position: absolute; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,153,229,0.09) 0%, transparent 70%);
  bottom: -80px; left: -60px; pointer-events: none;
  animation: glowDrift 11s ease-in-out infinite reverse;
}
.hero-gridlines {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(ellipse at 65% 40%, black 25%, transparent 75%);
  mask-image: radial-gradient(ellipse at 65% 40%, black 25%, transparent 75%);
}
@keyframes glowDrift {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(18px,-14px) scale(1.04); }
  66%      { transform: translate(-10px,18px) scale(0.97); }
}

/* Eyebrow chip */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,140,0,0.12);
  border: 1px solid rgba(255,140,0,0.28);
  border-radius: var(--r-full); padding: 7px 16px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.08em;
  color: var(--orange); text-transform: uppercase;
  margin-bottom: 26px; width: fit-content;
  animation: heroFadeUp 0.7s 0.1s both;
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { transform: scale(1);   box-shadow: 0 0 0 0 rgba(255,140,0,0.4); }
  50%      { transform: scale(1.3); box-shadow: 0 0 0 5px rgba(255,140,0,0); }
}

/* Başlık */
.hero-title {
  font-size: clamp(30px,4.5vw,56px); font-weight: 900;
  color: #fff; line-height: 1.08; letter-spacing: -1.5px;
  margin-bottom: 20px;
  animation: heroFadeUp 0.7s 0.2s both;
}
.title-accent {
  color: var(--orange); position: relative; display: inline-block;
}
.title-accent::after {
  content: '';
  position: absolute; left: 0; bottom: -3px;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--orange), rgba(255,140,0,0.15));
  border-radius: 2px;
}

/* Alt metin */
.hero-sub {
  font-size: clamp(14px,1.8vw,17px);
  color: rgba(255,255,255,0.50); line-height: 1.85;
  margin-bottom: 36px; max-width: 460px;
  animation: heroFadeUp 0.7s 0.3s both;
}
.hero-sub strong { color: rgba(255,255,255,0.78); font-weight: 700; }

/* ── ARAMA KUTUSU ── */
.hero-search {
  width: 100%; max-width: 560px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 18px; padding: 8px 8px 8px 18px;
  display: flex; align-items: center; gap: 10px;
  backdrop-filter: blur(16px);
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  animation: heroFadeUp 0.7s 0.4s both;
  position: relative; z-index: 10;
}
.hero-search:focus-within {
  border-color: rgba(255,140,0,0.55);
  box-shadow: 0 0 0 4px rgba(255,140,0,0.10), 0 20px 60px rgba(0,0,0,0.28);
  background: rgba(255,255,255,0.10);
}
.hero-search-icon { color: var(--orange); font-size: 22px; flex-shrink: 0; }

.hero-search-wrap { flex: 1; min-width: 0; position: relative; }
.hero-search input {
  width: 100%; background: none; border: none; outline: none;
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  color: #fff; padding: 8px 0;
}
.hero-search input::placeholder { color: rgba(255,255,255,0.30); font-weight: 500; }

.search-btn {
  flex-shrink: 0; height: 50px; padding: 0 24px; border: none;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff; font-family: var(--font-body); font-size: 14px; font-weight: 800;
  cursor: pointer; box-shadow: 0 4px 18px rgba(255,140,0,0.38);
  display: flex; align-items: center; gap: 7px;
  transition: all 0.22s; white-space: nowrap;
}
.search-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,140,0,0.50); }
.search-btn i { font-size: 17px; }

/* Hızlı etiketler */
.hero-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 18px;
  animation: heroFadeUp 0.7s 0.5s both;
}
.h-tag {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 7px 14px; border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.58);
  text-decoration: none; white-space: nowrap; transition: all 0.22s;
}
.h-tag i { font-size: 13px; color: var(--orange); }
.h-tag:hover {
  border-color: var(--orange); background: rgba(255,140,0,0.12);
  color: #fff; transform: translateY(-2px);
}

/* Sosyal kanıt */
.hero-proof {
  display: flex; align-items: center; gap: 14px;
  margin-top: 36px;
  animation: heroFadeUp 0.7s 0.6s both;
}
.proof-avatars { display: flex; flex-shrink: 0; }
.proof-avatars span {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid #0B1628;
  background: linear-gradient(135deg, #1E3A5F, #2A5080);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0; margin-left: -8px;
}
.proof-avatars span:first-child { margin-left: 0; }
.proof-more {
  background: rgba(255,140,0,0.15) !important;
  color: var(--orange) !important;
  font-size: 11px !important; font-weight: 800 !important;
  border: 2px solid rgba(255,140,0,0.3) !important;
}
.proof-stars { color: #FBBF24; font-size: 12px; letter-spacing: 1px; margin-bottom: 2px; }
.proof-text  { font-size: 12.5px; color: rgba(255,255,255,0.48); line-height: 1.5; }
.proof-text strong { color: rgba(255,255,255,0.82); font-weight: 700; }

/* ── SAĞ PANEL: Fotoğraf ── */
.hero-right {
  position: relative; overflow: hidden; min-height: 300px;
}
@media(min-width:992px){ .hero-right { min-height: unset; } }

.hero-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top; display: block;
}
.hero-photo-fade {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to right, #0B1628 0%, rgba(11,22,40,0.5) 28%, transparent 58%);
}
@media(max-width:991.98px){
  .hero-photo-fade {
    background: linear-gradient(to bottom, #0B1628 0%, rgba(11,22,40,0.4) 40%, transparent 70%);
  }
}

/* Floating stat kartları */
.float-card {
  position: absolute; z-index: 3;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-radius: 16px; padding: 12px 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
  display: flex; align-items: center; gap: 11px;
}
.float-top    { top: 110px; right: 28px; animation: floatBob 6s ease-in-out infinite; }
.float-bottom { bottom: 40px; left: -14px; animation: floatBob 7s ease-in-out infinite 2s; }
@media(max-width:991.98px){ .float-card { display: none; } }

.fc-icon {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.fc-orange { background: var(--orange-light); color: var(--orange); }
.fc-green  { background: #E8FFF5; color: #10B981; }
.fc-num { font-size: 18px; font-weight: 900; color: var(--ink); line-height: 1; }
.fc-lbl { font-size: 10px; font-weight: 700; color: var(--muted); margin-top: 1px; }

@keyframes floatBob {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* ════════════════════════════════════════════
   STATS BAR
════════════════════════════════════════════ */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid rgba(0,153,229,0.09);
  box-shadow: 0 4px 24px rgba(0,100,180,0.07);
  overflow-x: auto; scrollbar-width: none;
}
.stats-bar::-webkit-scrollbar { display: none; }
.stats-inner {
  display: flex; align-items: stretch; min-width: max-content;
  max-width: var(--max-w); margin: 0 auto; padding: 0 48px;
}
@media(max-width:991.98px){ .stats-inner { padding: 0 20px; } }

.stat-item {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 40px; flex-shrink: 0;
  border-right: 1px solid rgba(0,153,229,0.08);
  position: relative; cursor: default; transition: background 0.2s;
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child  { border-right: none; }
.stat-item:hover       { background: #F7FBFF; }
.stat-item::after {
  content: '';
  position: absolute; bottom: 0; left: 40px; right: 40px; height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(255,140,0,0));
  border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.stat-item:first-child::after { left: 0; }
.stat-item:hover::after       { transform: scaleX(1); }
.stat-icon {
  width: 46px; height: 46px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.si-blue   { background: var(--blue-light);   color: var(--blue);   }
.si-orange { background: var(--orange-light); color: var(--orange); }
.stat-num { font-size: 24px; font-weight: 900; color: var(--ink); letter-spacing: -0.5px; line-height: 1; }
.stat-lbl { font-size: 11px; color: var(--muted); font-weight: 600; margin-top: 2px; }

/* ════════════════════════════════════════════
   AUTOCOMPLETE
════════════════════════════════════════════ */
.autocomplete-box {
  display: none;
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: #fff; border-radius: 18px;
  box-shadow: 0 24px 64px rgba(0,100,180,0.18), 0 4px 16px rgba(0,0,0,0.07);
  border: 1px solid rgba(0,153,229,0.14);
  overflow: hidden; z-index: 9999;
  font-family: var(--font-body);
  animation: acSlideIn 0.2s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes acSlideIn {
  from { opacity:0; transform: translateY(-8px) scale(0.97); }
  to   { opacity:1; transform: translateY(0) scale(1); }
}
.ac-group-header {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px 5px;
  font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted); background: #F8FBFF;
  border-bottom: 1px solid rgba(0,153,229,0.07);
}
.autocomplete-item {
  display: flex; align-items: center; gap: 11px; padding: 10px 14px;
  cursor: pointer; transition: background 0.14s;
  border-bottom: 1px solid rgba(0,153,229,0.05);
}
.autocomplete-item:hover, .autocomplete-item.ac-active { background: #EBF6FF; }
.ac-icon {
  width: 36px; height: 36px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
}
.ac-icon-kat { background: var(--blue-light); color: var(--blue); }
.ac-icon-srv { background: var(--orange-light); color: var(--orange); }
.ac-text { flex: 1; min-width: 0; }
.ac-label {
  font-size: 13px; font-weight: 600; color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block;
}
.ac-label mark { background: none; color: var(--blue); font-weight: 800; font-style: normal; }
.ac-type {
  display: inline-flex; align-items: center; gap: 3px;
  padding: 2px 9px; border-radius: var(--r-full);
  font-size: 10px; font-weight: 700; flex-shrink: 0; white-space: nowrap;
}
.ac-type-kat { background: var(--blue-light);   color: var(--blue);   }
.ac-type-srv { background: var(--orange-light); color: var(--orange); }
.ac-empty {
  padding: 22px 14px; text-align: center;
  font-size: 13px; color: var(--muted); font-weight: 500;
}
.ac-empty i { display: block; font-size: 30px; margin-bottom: 6px; color: var(--blue-mid); }
.ac-empty strong { color: var(--ink); }
.ac-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 14px; background: #F8FBFF;
  border-top: 1px solid rgba(0,153,229,0.10);
  font-size: 11px; font-weight: 600; color: var(--muted);
}
.ac-footer-link {
  display: flex; align-items: center; gap: 4px;
  color: var(--blue); font-weight: 700; font-size: 11px;
  cursor: pointer; background: none; border: none;
  font-family: var(--font-body); padding: 0; transition: opacity 0.2s;
}
.ac-footer-link:hover { opacity: 0.7; }
.ac-loading { padding: 14px; display: flex; flex-direction: column; gap: 8px; }
.ac-skel {
  height: 38px; border-radius: 10px;
  background: linear-gradient(90deg, #f0f7fc 25%, #e0f0fb 50%, #f0f7fc 75%);
  background-size: 200% 100%;
  animation: acShimmer 1.2s infinite;
}
@keyframes acShimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}

/* ════════════════════════════════════════════
   KATEGORİ PİLLERI
════════════════════════════════════════════ */
.cat-pill {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; text-decoration: none; flex-shrink: 0; width: 110px;
}
.cat-icon-box {
  width: 96px; height: 96px; border-radius: 28px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 42px; transition: all 0.3s; box-shadow: var(--sh-sm);
}
.cat-pill:hover .cat-icon-box { transform: translateY(-5px) scale(1.08); box-shadow: var(--sh-md); }
.cat-label { font-size: 13px; font-weight: 700; color: var(--ink-3); text-align: center; transition: color 0.2s; }
.cat-pill:hover .cat-label { color: var(--blue); }

.cib-blue   { background: var(--blue-light);   color: var(--blue);   }
.cib-orange { background: var(--orange-light); color: var(--orange); }
.cib-green  { background: #E5FFF5; color: #10B981; }
.cib-purple { background: #F0EEFF; color: #7C3AED; }
.cib-rose   { background: #FFF0F3; color: #F43F5E; }
.cib-teal   { background: #E6FAFA; color: #0D9488; }
.cib-amber  { background: #FFFBEA; color: #D97706; }
.cib-indigo { background: #EEF2FF; color: #4F46E5; }

/* ════════════════════════════════════════════
   TREND KARTLARI
════════════════════════════════════════════ */
.trend-card {
  flex-shrink: 0; width: 190px; border-radius: var(--r-md);
  overflow: hidden; position: relative; text-decoration: none;
  box-shadow: var(--sh-sm); transition: transform 0.3s, box-shadow 0.3s;
}
.trend-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--sh-md); }
.trend-thumb { width: 100%; height: 138px; object-fit: cover; display: block; background: var(--blue-mid); }
.trend-thumb-ph {
  width: 100%; height: 138px;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-mid));
  display: flex; align-items: center; justify-content: center; font-size: 44px;
}
.trend-gradient {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,40,90,0.9) 0%, transparent 100%);
  padding: 34px 14px 14px;
}
.trend-name  { font-size: 13px; font-weight: 800; color: #fff; display: block; }
.trend-count { font-size: 10px; color: rgba(255,255,255,0.65); margin-top: 2px; display: block; }
.trend-fire {
  position: absolute; top: 8px; right: 8px;
  background: var(--orange); color: #fff; border-radius: var(--r-full);
  font-size: 9px; font-weight: 800; padding: 3px 9px; letter-spacing: 0.05em;
}

/* ════════════════════════════════════════════
   HİZMET KARTLARI
════════════════════════════════════════════ */
.srv-card {
  background: var(--card-bg); border-radius: var(--r-md);
  border: 1.5px solid var(--border-2); overflow: hidden;
  box-shadow: var(--sh-xs); text-decoration: none; color: var(--ink);
  display: flex; flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.srv-card:hover {
  transform: translateY(-6px); box-shadow: var(--sh-md); border-color: var(--blue);
}
.srv-card-scroll { flex-shrink: 0; width: 228px; }

.srv-thumb {
  width: 100%; height: 158px; object-fit: cover; display: block;
}
.srv-thumb-ph {
  width: 100%; height: 158px;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-mid));
  display: flex; align-items: center; justify-content: center; font-size: 50px;
}
.srv-body  { padding: 14px 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.srv-cat {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--blue); background: var(--blue-light);
  padding: 3px 10px; border-radius: var(--r-full); width: fit-content;
}
.srv-name { font-size: 14px; font-weight: 800; color: var(--ink); line-height: 1.35; }
.srv-meta { display: flex; gap: 12px; }
.srv-meta-item {
  font-size: 11px; font-weight: 600; color: var(--muted);
  display: flex; align-items: center; gap: 3px;
}
.srv-meta-item i { font-size: 13px; }
.srv-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px 14px; border-top: 1px solid var(--border);
}
.srv-price-lbl { font-size: 9px; color: var(--muted); font-weight: 600; display: block; }
.srv-price { font-size: 18px; font-weight: 800; color: var(--ink); }
.srv-cta {
  height: 34px; padding: 0 14px; border-radius: var(--r-sm);
  background: var(--blue); color: #fff;
  font-family: var(--font-body); font-size: 12px; font-weight: 800;
  display: inline-flex; align-items: center; gap: 4px;
  text-decoration: none; transition: all 0.2s;
}
.srv-cta:hover { background: var(--blue-dark); color: #fff; transform: scale(1.04); }

/* Mobil yatay / masaüstü grid toggle */
.srv-desktop-grid {
  display: none;
  grid-template-columns: repeat(3,1fr); gap: 20px;
  padding: 0 48px; max-width: var(--max-w); margin: 0 auto;
}
@media(min-width:992px){
  .srv-desktop-grid  { display: grid; }
  .srv-mobile-scroll { display: none !important; }
}

/* ════════════════════════════════════════════
   POPÜLER HİZMETLER GRID
════════════════════════════════════════════ */
.pop-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 20px;
}
@media(min-width:576px){ .pop-grid { grid-template-columns: repeat(3,1fr); } }
@media(min-width:992px){ .pop-grid { grid-template-columns: repeat(4,1fr); gap: 12px; padding: 0 48px; max-width: var(--max-w); margin: 0 auto; } }

.pop-item {
  display: flex; align-items: center; gap: 10px; padding: 12px 14px;
  background: var(--white); border: 1.5px solid var(--border-2);
  border-radius: var(--r-sm); text-decoration: none; color: var(--ink-3);
  font-size: 12px; font-weight: 700; line-height: 1.3; transition: all 0.2s;
}
.pop-item i { font-size: 18px; color: var(--blue); flex-shrink: 0; transition: transform 0.25s; }
.pop-item:hover {
  border-color: var(--blue); background: var(--blue-light);
  color: var(--blue); transform: translateY(-2px); box-shadow: var(--sh-sm);
}
.pop-item:hover i { transform: scale(1.2) rotate(8deg); }

/* ════════════════════════════════════════════
   UZMAN KARTLARI
════════════════════════════════════════════ */
.exp-card {
  flex-shrink: 0; width: 158px;
  background: var(--white); border-radius: var(--r-md); padding: 20px 14px;
  text-align: center; border: 1.5px solid var(--border-2);
  box-shadow: var(--sh-xs); text-decoration: none; color: var(--ink);
  transition: all 0.3s;
}
.exp-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: var(--blue); }
.exp-avatar-ring {
  width: 70px; height: 70px; border-radius: 50%;
  border: 3px solid var(--blue); padding: 2px;
  margin: 0 auto 12px; position: relative; display: inline-block;
}
.exp-avatar-ph {
  width: 100%; height: 100%; border-radius: 50%;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center; font-size: 28px;
}
.exp-badge {
  position: absolute; bottom: -2px; right: -2px;
  width: 22px; height: 22px; border-radius: 50%;
  background: #10B981; border: 2px solid #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: #fff;
}
.exp-name   { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.exp-branch {
  font-size: 10px; font-weight: 700; color: var(--blue);
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 9px;
}
.exp-stars {
  display: inline-flex; align-items: center; gap: 3px;
  background: var(--orange-light); border-radius: var(--r-full);
  padding: 4px 10px; font-size: 11px; font-weight: 800; color: var(--orange);
}

/* ════════════════════════════════════════════
   YORUMLAR
════════════════════════════════════════════ */
.rev-card {
  flex-shrink: 0; width: 280px;
  background: var(--white); border-radius: var(--r-md); padding: 20px;
  border: 1px solid var(--border-2); box-shadow: var(--sh-xs);
}
.rev-quote  { font-size: 28px; color: var(--blue-mid); line-height: 1; margin-bottom: 10px; font-family: Georgia, serif; }
.rev-stars  { color: var(--orange); font-size: 13px; letter-spacing: 2px; margin-bottom: 10px; }
.rev-text   { font-size: 13px; color: var(--ink-3); line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.rev-author { display: flex; align-items: center; gap: 10px; }
.rev-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--blue-light); border: 2px solid var(--blue-mid);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.rev-name    { font-size: 13px; font-weight: 700; color: var(--ink); }
.rev-service { font-size: 11px; color: var(--muted); }

/* ════════════════════════════════════════════
   APP BANNER
════════════════════════════════════════════ */
.app-banner {
  margin: 40px 20px 0;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-deeper) 50%, var(--blue) 100%);
  border-radius: var(--r-lg); padding: 32px 28px;
  position: relative; overflow: hidden;
}
.app-banner::before {
  content: ''; position: absolute;
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(255,140,0,0.14); top: -90px; right: -70px; pointer-events: none;
}
.app-banner::after {
  content: ''; position: absolute;
  width: 160px; height: 160px; border-radius: 50%;
  background: rgba(255,255,255,0.04); bottom: -50px; left: 30px; pointer-events: none;
}
@media(min-width:992px){
  .app-banner { display: flex; align-items: center; justify-content: space-between; margin: 48px auto 0; max-width: 1124px; }
}
.app-banner-left { position: relative; z-index: 1; }
.app-title {
  font-size: 22px; font-weight: 800; color: #fff; line-height: 1.25; margin-bottom: 6px;
}
.app-title em { color: var(--orange); font-style: normal; }
.app-subtitle { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.app-buttons  { display: flex; gap: 10px; flex-wrap: wrap; }
.app-btn {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px; padding: 10px 18px; text-decoration: none; color: #fff;
  backdrop-filter: blur(10px); transition: all 0.25s;
}
.app-btn:hover { background: var(--orange); border-color: var(--orange); color: #fff; transform: translateY(-2px); }
.app-btn i { font-size: 26px; }
.app-btn-lbl  { font-size: 9px; color: rgba(255,255,255,0.6); display: block; text-transform: uppercase; letter-spacing: 0.06em; }
.app-btn-name { font-size: 15px; font-weight: 700; display: block; }

/* ════════════════════════════════════════════
   CTA KUTUSU
════════════════════════════════════════════ */
.cta-box {
  margin: 28px 20px 0;
  background: linear-gradient(135deg, var(--orange), #FF6B00);
  border-radius: var(--r-lg); padding: 32px 28px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(255,255,255,0.08); top: -80px; right: -50px;
}
@media(min-width:992px){
  .cta-box { margin: 32px auto 0; max-width: 1124px; }
}
.cta-title {
  font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 7px;
  position: relative; z-index: 1;
}
.cta-sub {
  font-size: 14px; color: rgba(255,255,255,0.75); margin-bottom: 20px;
  position: relative; z-index: 1;
}
.cta-action {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: #fff; text-decoration: none;
  padding: 14px 28px; border-radius: 14px;
  font-size: 15px; font-weight: 700;
  box-shadow: 0 8px 28px rgba(0,0,0,0.25); transition: all 0.25s;
  position: relative; z-index: 1;
}
.cta-action:hover { transform: translateY(-3px); color: #fff; box-shadow: 0 14px 40px rgba(0,0,0,0.35); }

/* ════════════════════════════════════════════
   .btn-outline (geri dön butonları vs.)
════════════════════════════════════════════ */
.btn-outline {
  height: 40px; padding: 0 20px; border-radius: var(--r-full);
  border: 1.5px solid var(--border-2); background: none;
  font-family: var(--font-body); font-size: 14px; font-weight: 700;
  color: var(--ink); cursor: pointer; display: inline-flex; align-items: center;
  transition: all 0.2s; text-decoration: none;
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

/* ════════════════════════════════════════════
   SHARED KEYFRAMES
════════════════════════════════════════════ */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════
   HERO — MERKEZİ TASARIM v5 EXTENSION
════════════════════════════════════════════ */
.hero-center {
    position: relative;
    z-index: 1;
    background: linear-gradient(160deg, #0B1628 0%, #0E2040 55%, #162D50 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--nav-h) + 60px) 0 80px;
    overflow: hidden;
}

.hero-main-content {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

/* Başlık ve Metin Genişlik Ayarı */
.hero-title {
    margin-left: auto;
    margin-right: auto;
}

.hero-sub {
    margin-left: auto;
    margin-right: auto;
    max-width: 580px;
}

/* Arama Kutusu Yerleşimi */
.hero-search-wrapper {
    margin-top: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-search {
    width: 100%;
    max-width: 720px; /* Merkezi formda biraz daha geniş durması şık olur */
}

/* Hızlı Etiketler — Merkezleme */
.hero-tags {
    justify-content: center;
    margin-top: 24px;
}

.tags-label {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    font-weight: 700;
    margin-right: 8px;
    display: flex;
    align-items: center;
}

/* Sosyal Kanıt — Alt Bölüm */
.hero-proof-center {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    animation: heroFadeUp 0.7s 0.6s both;
}

@media(min-width: 768px) {
    .hero-proof-center {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
}

.proof-content {
    text-align: left;
}

/* Mobilde Başlık Küçültme */
@media(max-width: 767px) {
    .hero-center { min-height: 70vh; }
    .hero-title { font-size: 32px; }
    .hero-search { padding: 6px 6px 6px 16px; }
    .search-btn span { display: none; } /* Mobilde sadece ikon kalsın */
    .search-btn { width: 50px; padding: 0; justify-content: center; }
}
/* ════════════════════════════════════════════
   HERO — ÖZEL DESENLİ ARKA PLAN (FULL)
════════════════════════════════════════════ */
.hero-center {
    position: relative;
    width: 100%;
    min-height: 85vh; /* Ekranın %85'ini kaplar */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--nav-h) + 60px) 0 80px;
    overflow: hidden;
    
    /* ANA ZEMİN: v5 Navy Renk Tonu */
    background-color: #0B1628; 
    
    /* ARKA PLAN GÖRSELİ: bg-pattern.png tam kaplama */
    background-image: 
        linear-gradient(180deg, rgba(11, 22, 40, 0.85) 0%, rgba(14, 32, 64, 0.70) 100%), 
        url('../../assets/img/bg-pattern.png'); /* PHP base_url yapısına göre yol */
    
    background-size: cover; /* Deseni alanı kaplayacak şekilde yayar */
    background-position: center center; /* Deseni her zaman ortalar */
    background-repeat: no-repeat;
    background-attachment: fixed; /* Desktop'ta o havalı parallax etkisi */
}

/* Mobilde parallax yormasın diye sabitleyelim */
@media (max-width: 991px) {
    .hero-center {
        background-attachment: scroll;
        min-height: 70vh;
    }
}

/* İçeriklerin desenin üzerinde okunaklı kalması için */
.hero-main-content {
    position: relative;
    z-index: 10;
}
/* Logo */
.m-logo-wrap {
  display: flex;
  align-items: center;
  gap: 3px;
  text-decoration: none;
}
.logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: #FFFFFF;
  letter-spacing: -0.5px;
  line-height: 1;
}

/* Radar animasyonları */
@keyframes radar-sweep {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes radar-blip {
  0%,100% { opacity:0; transform:scale(0); }
  40%,60% { opacity:1; transform:scale(1); }
}
.radar-sweep {
  animation: radar-sweep 3s linear infinite;
}
.radar-blip {
  animation: radar-blip 2.4s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}
 
 