/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #07070f;
  color: #e2e2f0;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ===== VARIABLES ===== */
:root {
  --accent: #7c6ef0;
  --accent2: #c084fc;
  --green: #22c55e;
  --surface: #0e0e1a;
  --surface2: #161628;
  --border: rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.12);
  --muted: #7878a0;
  --radius: 16px;
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 32px;
  background: rgba(7,7,15,0.8);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.nav-container {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 0.8rem; color: #fff; letter-spacing: -0.5px;
  flex-shrink: 0;
}
.logo-mark.small { width: 30px; height: 30px; font-size: 0.72rem; }
.logo-text { font-weight: 700; font-size: 1.05rem; letter-spacing: -0.5px; color: #fff; }
.logo-text span { color: var(--accent2); }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  padding: 8px 14px; border-radius: 8px;
  font-size: 0.88rem; font-weight: 500; color: var(--muted);
  transition: all 0.2s;
}
.nav-links a:hover { color: #fff; background: var(--surface2); }
.nav-cta {
  background: var(--accent) !important; color: #fff !important;
  font-weight: 600 !important; margin-left: 6px;
}
.nav-cta:hover { background: #6b5ee0 !important; transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0; z-index: 999;
  background: rgba(7,7,15,0.98); padding: 16px;
  flex-direction: column; gap: 4px;
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 20px; border-radius: 10px;
  font-weight: 500; color: var(--muted); transition: all 0.2s;
}
.mobile-menu a:hover { background: var(--surface2); color: #fff; }

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 100px 32px 80px;
  position: relative; overflow: hidden;
}
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px; top: -200px; left: -100px;
  background: radial-gradient(circle, rgba(124,110,240,0.18) 0%, transparent 70%);
}
.hero-orb-2 {
  width: 400px; height: 400px; top: 20%; right: -50px;
  background: radial-gradient(circle, rgba(192,132,252,0.14) 0%, transparent 70%);
}
.hero-orb-3 {
  width: 300px; height: 300px; bottom: 10%; left: 30%;
  background: radial-gradient(circle, rgba(124,110,240,0.1) 0%, transparent 70%);
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; position: relative;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 16px; border-radius: 100px;
  background: rgba(124,110,240,0.1);
  border: 1px solid rgba(124,110,240,0.25);
  font-size: 0.8rem; font-weight: 600; color: var(--accent2);
  letter-spacing: 0.3px; margin-bottom: 24px;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(34,197,94,0.6);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.4} }
.hero-title {
  font-family: 'Syne', 'Inter', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -2px; margin-bottom: 22px; color: #fff;
}
.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-desc {
  font-size: 1rem; color: var(--muted);
  line-height: 1.75; margin-bottom: 36px; max-width: 440px;
}
.hero-actions { display: flex; gap: 12px; margin-bottom: 52px; flex-wrap: wrap; align-items: center; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 10px;
  background: var(--accent); color: #fff;
  font-weight: 700; font-size: 0.92rem;
  transition: all 0.2s; border: none; cursor: pointer;
}
.btn-primary:hover { background: #6b5ee0; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(124,110,240,0.4); }
.btn-ghost {
  font-size: 0.92rem; font-weight: 600; color: var(--muted);
  transition: color 0.2s; padding: 13px 4px;
}
.btn-ghost:hover { color: #fff; }
.hero-stats { display: flex; align-items: center; gap: 28px; }
.hero-stat-num {
  font-family: 'Syne', 'Inter', sans-serif;
  font-size: 2rem; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 4px;
}
.hero-stat-label { font-size: 0.72rem; color: var(--muted); font-weight: 500; line-height: 1.4; }
.hero-stat-sep { width: 1px; height: 40px; background: var(--border2); }

/* ===== HERO MOCKUP ===== */
.hero-right { display: flex; justify-content: center; align-items: center; }
.hero-mockup-wrap { position: relative; width: 100%; max-width: 480px; }
.browser-mockup {
  background: var(--surface2); border-radius: 14px;
  border: 1px solid var(--border2); overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
}
.browser-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 11px 16px; background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28c940; }
.browser-url {
  flex: 1; text-align: center; font-size: 0.74rem; color: var(--muted);
  background: rgba(255,255,255,0.04); border-radius: 6px; padding: 4px 12px;
}
.browser-body { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.mock-nav { height: 14px; border-radius: 4px; background: rgba(124,110,240,0.2); }
.mock-hero-block {
  height: 100px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(124,110,240,0.25) 0%, rgba(192,132,252,0.15) 100%);
  padding: 16px; display: flex; flex-direction: column; gap: 8px; justify-content: center;
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer { 0%,100%{opacity:0.7} 50%{opacity:1} }
.mock-h1 { height: 10px; width: 70%; border-radius: 3px; background: rgba(255,255,255,0.4); }
.mock-h2 { height: 8px; width: 50%; border-radius: 3px; background: rgba(255,255,255,0.2); }
.mock-btn { height: 8px; width: 26%; border-radius: 20px; background: var(--accent); opacity: 0.7; margin-top: 4px; }
.mock-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.mock-card { height: 56px; border-radius: 8px; animation: shimmer 3s ease-in-out infinite; }
.mock-card.c1 { background: rgba(124,110,240,0.15); animation-delay: 0.2s; }
.mock-card.c2 { background: rgba(192,132,252,0.12); animation-delay: 0.5s; }
.mock-card.c3 { background: rgba(124,110,240,0.1); animation-delay: 0.8s; }
.mock-row { display: flex; gap: 10px; align-items: center; }
.mock-img { width: 52px; height: 52px; border-radius: 8px; background: rgba(255,255,255,0.06); flex-shrink: 0; }
.mock-lines { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.mock-line { height: 7px; border-radius: 3px; background: rgba(255,255,255,0.08); }
.mock-line.w80 { width: 80%; }
.mock-line.w60 { width: 60%; }
.mock-line.w90 { width: 90%; }
.mock-line.w50 { width: 50%; }

/* Floating cards */
.float-card {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: rgba(14,14,26,0.92); border: 1px solid var(--border2);
  border-radius: 12px; padding: 10px 14px; z-index: 10;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.float-card-1 {
  top: -20px; right: -20px;
  animation: floatY 4s ease-in-out infinite;
}
.float-card-2 {
  bottom: 40px; left: -28px;
  animation: floatY 4s ease-in-out infinite 1.5s;
}
.float-card-3 {
  bottom: -18px; right: 30px;
  animation: floatY 4s ease-in-out infinite 0.8s;
  gap: 6px; padding: 8px 12px;
}
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.fc-icon { font-size: 1.2rem; }
.fc-title { font-size: 0.78rem; font-weight: 700; color: #fff; }
.fc-sub { font-size: 0.68rem; color: var(--muted); margin-top: 1px; }
.fc-star { flex-shrink: 0; }
.fc-rating { font-size: 0.8rem; font-weight: 700; color: #f59e0b; margin-left: 2px; }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 18px 32px; overflow: hidden;
}
.stats-bar-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap;
}
.sbar-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.83rem; font-weight: 600; color: var(--muted);
}
.sbar-item svg { color: var(--accent); }
.sbar-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--border2); }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.revealed { opacity: 1; transform: none; }

/* ===== SECTION HEADERS ===== */
.sec-tag {
  display: inline-block; padding: 4px 14px; border-radius: 100px;
  background: rgba(124,110,240,0.1); border: 1px solid rgba(124,110,240,0.2);
  font-size: 0.76rem; font-weight: 700; color: var(--accent2);
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px;
}
.sec-title {
  font-family: 'Syne', 'Inter', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -1.5px; margin-bottom: 16px; color: #fff;
}
.sec-title em { font-style: normal; color: var(--accent2); }
.sec-header { text-align: center; margin-bottom: 64px; }
.sec-desc { color: var(--muted); font-size: 1rem; margin-top: 8px; }

/* ===== ABOUT ===== */
#hakkimda { padding: 110px 32px; }
.about-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px; align-items: center;
}
.about-image-wrap { position: relative; }
.about-img-box {
  width: 100%; aspect-ratio: 4/5; border-radius: 24px; overflow: hidden;
  background: var(--surface2); border: 1px solid var(--border2);
}
.about-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: var(--muted); font-size: 0.88rem; text-align: center;
  border: 2px dashed rgba(124,110,240,0.2); border-radius: 22px;
}
.about-tag-float {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--accent); color: #fff;
  padding: 14px 20px; border-radius: 14px;
  font-weight: 700; font-size: 0.85rem;
  box-shadow: 0 12px 32px rgba(124,110,240,0.45);
  display: flex; align-items: center; gap: 12px;
}
.atf-icon { font-size: 1.4rem; }
.atf-num { font-family: 'Syne','Inter',sans-serif; font-size: 1.4rem; font-weight: 800; line-height: 1; }
.atf-label { font-size: 0.68rem; opacity: 0.85; margin-top: 2px; }
.about-tag-float-2 {
  position: absolute; top: 20px; right: -24px;
  background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.3);
  color: #22c55e; padding: 8px 14px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 700;
  display: flex; align-items: center; gap: 6px;
  backdrop-filter: blur(8px);
}
.about-text p {
  color: var(--muted); line-height: 1.8; margin-bottom: 16px; font-size: 0.97rem;
}
.about-text strong { color: #fff; }
.skill-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.skill-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 8px;
  background: var(--surface2); border: 1px solid var(--border2);
  font-size: 0.81rem; font-weight: 600; color: #ccc;
  transition: all 0.2s;
}
.skill-chip:hover { border-color: rgba(124,110,240,0.4); color: #fff; }
.skill-chip svg { color: var(--accent); }

/* ===== SERVICES ===== */
#hizmetler {
  padding: 110px 32px;
  background: var(--surface);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: var(--surface2); border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 32px 28px; transition: all 0.3s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(124,110,240,0.08), rgba(192,132,252,0.05));
  opacity: 0; transition: opacity 0.3s;
}
.service-card:hover { border-color: rgba(124,110,240,0.35); transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.35); }
.service-card:hover::before { opacity: 1; }
.svc-icon-wrap {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(124,110,240,0.12); border: 1px solid rgba(124,110,240,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); margin-bottom: 20px;
  transition: all 0.3s;
}
.service-card:hover .svc-icon-wrap { background: var(--accent); border-color: var(--accent); color: #fff; }
.service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: #fff; }
.service-card p { font-size: 0.86rem; color: var(--muted); line-height: 1.7; }

/* ===== REFERANSLAR ===== */
#referanslar { padding: 110px 32px; }
.ref-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.ref-card {
  background: var(--surface); border-radius: 20px;
  border: 1px solid var(--border); overflow: hidden;
  transition: all 0.35s;
}
.ref-card:hover {
  border-color: rgba(124,110,240,0.4);
  transform: translateY(-8px);
  box-shadow: 0 28px 64px rgba(0,0,0,0.5);
}
.ref-preview {
  height: 220px; overflow: hidden;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  padding: 16px; background: #0a0a0a;
}
.ref-browser {
  width: 100%; height: 100%; border-radius: 8px;
  overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  display: flex; flex-direction: column; border: 1px solid #333;
}
.ref-bar {
  display: flex; gap: 5px; align-items: center;
  padding: 7px 12px; background: #1a1a1a; flex-shrink: 0;
}
.ref-url {
  flex: 1; text-align: center; font-size: 0.62rem; color: #666;
  background: #111; border-radius: 4px; padding: 2px 8px; margin-left: 4px;
  font-family: monospace;
}
.ref-body { flex: 1; display: flex; flex-direction: column; gap: 8px; padding: 8px; overflow: hidden; background: #111; }
.ref-nav { height: 14px; border-radius: 3px; }
.ref-hero { border-radius: 5px; flex: 1; padding: 8px 12px; display: flex; flex-direction: column; justify-content: center; gap: 5px; }
.ref-h1 { height: 9px; width: 65%; border-radius: 3px; }
.ref-h2 { height: 7px; width: 45%; border-radius: 3px; }
.ref-btn { height: 7px; width: 22%; border-radius: 20px; margin-top: 4px; }
.ref-cards { display: flex; gap: 5px; flex-shrink: 0; }
.ref-scard { flex: 1; height: 30px; border-radius: 4px; }
.ref-info { padding: 24px 28px; }
.ref-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.ref-tags span {
  padding: 3px 10px; border-radius: 6px;
  background: var(--surface2); border: 1px solid var(--border2);
  font-size: 0.72rem; color: #888; font-weight: 500;
}
.ref-info h3 { font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.ref-info p { font-size: 0.86rem; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }
.ref-meta { display: flex; gap: 20px; margin-bottom: 20px; flex-wrap: wrap; }
.ref-meta-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 600; color: #aaa;
}
.ref-meta-item svg { color: var(--accent); }
.ref-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 10px;
  background: rgba(124,110,240,0.12); border: 1px solid rgba(124,110,240,0.3);
  color: var(--accent2); font-size: 0.86rem; font-weight: 700;
  transition: all 0.2s;
}
.ref-link:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
@media (max-width: 900px) { .ref-grid { grid-template-columns: 1fr; } }

/* ===== PORTFOLIO (artık kullanılmıyor, temiz tutmak için burada) ===== */
.portfolio-card {
  background: var(--surface); border-radius: 20px;
  border: 1px solid var(--border); overflow: hidden;
  cursor: pointer; transition: all 0.35s;
}
.portfolio-card:hover {
  border-color: rgba(124,110,240,0.4);
  transform: translateY(-8px);
  box-shadow: 0 28px 64px rgba(0,0,0,0.5);
}
.portfolio-preview {
  height: 210px; overflow: hidden;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  padding: 14px;
}
.preview-browser {
  width: 100%; height: 100%; background: #fff; border-radius: 8px;
  overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  display: flex; flex-direction: column;
}
.preview-topbar {
  display: flex; gap: 5px; align-items: center;
  padding: 6px 10px; background: #f0f0f0; flex-shrink: 0;
}
.pd { width: 7px; height: 7px; border-radius: 50%; }
.pd.red { background: #ff5f57; }
.pd.yellow { background: #ffbd2e; }
.pd.green { background: #28c940; }
.prev-url {
  flex: 1; text-align: center; font-size: 0.62rem; color: #999;
  background: #e8e8e8; border-radius: 4px; padding: 2px 8px; margin-left: 4px;
}
.preview-body { flex: 1; padding: 8px; display: flex; flex-direction: column; gap: 7px; overflow: hidden; }
.pb-nav { height: 14px; border-radius: 3px; }
.pb-hero { border-radius: 5px; display: flex; flex-direction: column; justify-content: center; padding: 6px 10px; gap: 5px; flex: 1; }
.pb-title { height: 8px; width: 55%; border-radius: 2px; }
.pb-title.light { background: rgba(255,255,255,0.6) !important; }
.pb-btn { height: 7px; width: 24%; border-radius: 20px; }
.pb-search-bar { height: 10px; width: 75%; border-radius: 3px; background: rgba(255,255,255,0.5); }
.pb-cards { display: flex; gap: 5px; flex-shrink: 0; }
.pb-scard { flex: 1; height: 32px; border-radius: 4px; }

/* Preview themes */
.berber-preview { background: linear-gradient(135deg, #1a0800, #3d1600); }
.berber-body .pb-nav { background: #c9a84c; }
.berber-body .pb-hero { background: #1a0800; }
.berber-body .pb-title { background: rgba(201,168,76,0.6); }
.berber-body .pb-btn { background: #c9a84c; }
.berber-body .pb-scard { background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.2); }
.berber-cat { color: #c9a84c !important; }

.avukat-preview { background: linear-gradient(135deg, #040414, #0d1030); }
.avukat-body .pb-nav { background: #1e2a5e; }
.avukat-body .pb-hero { background: linear-gradient(135deg, #0d1b3e, #162454); }
.avukat-body .pb-title { background: rgba(200,210,255,0.5); }
.avukat-body .pb-btn { background: #c9a84c; }
.avukat-body .pb-scard { background: #1a2440; border: 1px solid rgba(200,210,255,0.1); }
.avukat-cat { color: #8eaeff !important; }

.emlak-preview { background: linear-gradient(135deg, #001408, #002616); }
.emlak-body .pb-nav { background: #005230; }
.emlak-body .pb-hero { background: linear-gradient(135deg, #003d20, #006030); }
.emlak-body .pb-scard { background: rgba(0,140,70,0.18); border: 1px solid rgba(0,180,80,0.2); }
.emlak-cat { color: #4ade80 !important; }

.nakliyat-preview { background: linear-gradient(135deg, #0a0800, #1a1400); }
.nakliyat-body .pb-nav { background: #1a1400; }
.nakliyat-body .pb-hero { background: linear-gradient(135deg, #1a1400, #2e2200); }
.nakliyat-body .pb-title { background: rgba(255,255,255,0.4); }
.nakliyat-body .pb-btn { background: #f59e0b; }
.nakliyat-body .pb-scard { background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.18); }
.nakliyat-cat { color: #f59e0b !important; }

.portfolio-info { padding: 22px 26px; }
.portfolio-cat { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.portfolio-info h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: #fff; }
.portfolio-info p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.portfolio-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.portfolio-tags span {
  padding: 3px 10px; border-radius: 6px;
  background: var(--surface2); border: 1px solid var(--border);
  font-size: 0.73rem; color: #888;
}
.portfolio-link {
  font-size: 0.86rem; font-weight: 700; color: var(--accent);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s, color 0.2s;
}
.portfolio-card:hover .portfolio-link { gap: 10px; color: var(--accent2); }

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--accent) 0%, #a855f7 100%);
  padding: 60px 32px;
}
.cta-band-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cta-band h2 {
  font-family: 'Syne','Inter',sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; color: #fff;
  letter-spacing: -1px; margin-bottom: 6px;
}
.cta-band p { color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.cta-band-btns { display: flex; gap: 12px; align-items: center; flex-shrink: 0; }
.btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: 10px;
  background: #25D366; color: #fff; font-weight: 700; font-size: 0.9rem;
  transition: all 0.2s;
}
.btn-wa:hover { background: #1ebe5d; transform: translateY(-2px); }
.btn-call {
  padding: 13px 24px; border-radius: 10px;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
  color: #fff; font-weight: 700; font-size: 0.9rem; transition: all 0.2s;
}
.btn-call:hover { background: rgba(255,255,255,0.25); }

/* ===== CONTACT ===== */
#iletisim { padding: 110px 32px; }
.contact-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 80px; align-items: start;
}
.contact-left p { color: var(--muted); line-height: 1.75; margin-bottom: 32px; font-size: 0.96rem; }
.contact-items { display: flex; flex-direction: column; gap: 12px; }
.contact-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; border-radius: 12px;
  background: var(--surface2); border: 1px solid var(--border);
  transition: all 0.2s;
}
.contact-item:hover { border-color: rgba(124,110,240,0.35); transform: translateX(4px); }
.ci-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(124,110,240,0.1); border: 1px solid rgba(124,110,240,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); flex-shrink: 0; transition: all 0.2s;
}
.ci-icon.green { background: rgba(34,197,94,0.1); border-color: rgba(34,197,94,0.2); color: var(--green); }
.ci-icon.pink { background: rgba(236,72,153,0.1); border-color: rgba(236,72,153,0.2); color: #ec4899; }
.contact-item:hover .ci-icon { background: var(--accent); border-color: var(--accent); color: #fff; }
.ci-label { font-size: 0.72rem; color: var(--muted); font-weight: 500; margin-bottom: 2px; }
.ci-value { font-size: 0.9rem; font-weight: 700; color: #fff; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: #bbb; }
.form-group input, .form-group select, .form-group textarea {
  background: var(--surface2); border: 1px solid var(--border2);
  border-radius: 10px; padding: 12px 16px;
  color: #fff; font-family: inherit; font-size: 0.9rem;
  transition: border-color 0.2s; outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #444; }
.form-group select option { background: #1a1a28; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
.full-width { width: 100%; justify-content: center; font-size: 0.95rem; padding: 14px; margin-top: 4px; }

/* ===== FOOTER ===== */
footer {
  padding: 48px 32px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.footer-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.footer-logo { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo .logo-text { font-size: 1rem; }
footer p { color: var(--muted); font-size: 0.85rem; margin-bottom: 6px; }
.footer-links {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; flex-wrap: wrap; margin: 20px 0;
}
.footer-links a {
  padding: 6px 14px; border-radius: 8px; font-size: 0.83rem;
  color: var(--muted); transition: all 0.2s;
}
.footer-links a:hover { color: #fff; background: var(--surface2); }
.footer-copy { font-size: 0.76rem !important; margin-top: 4px; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  transition: all 0.25s;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 10px 32px rgba(37,211,102,0.55); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* ===== SUCCESS TOAST ===== */
.success-toast {
  position: fixed; bottom: 100px; right: 28px; z-index: 9999;
  background: #22c55e; color: #fff;
  padding: 14px 20px; border-radius: 12px;
  font-size: 0.88rem; font-weight: 600;
  box-shadow: 0 8px 24px rgba(34,197,94,0.4);
  animation: slideIn 0.3s ease;
}
@keyframes slideIn { from{transform:translateX(120%);opacity:0} to{transform:translateX(0);opacity:1} }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { gap: 48px; }
  .about-grid { gap: 48px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}
@media (max-width: 900px) {
  #hero { padding: 90px 20px 60px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero-right { display: none; }
  .hero-desc { max-width: 100%; margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-badge { display: inline-flex; }
  #hakkimda { padding: 80px 20px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrap { display: none; }
  #hizmetler { padding: 80px 20px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  #portfoy { padding: 80px 20px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  #fiyatlar { padding: 80px 20px; }
  #iletisim { padding: 80px 20px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row2 { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-btns { justify-content: center; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .stats-bar-inner { gap: 16px; }
  .sbar-dot { display: none; }
  .pricing-grid { max-width: 100%; }
}
