@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700&display=swap');
/* ============================================
   Light Theme
   ============================================ */
:root {
  --primary: #0ea5e9;
  --secondary: #38bdf8;
  --accent: #7dd3fc;
  --text: #334155;
  --text-bio: #6b7280;
  --button: #334155;
  --copyright-bottom: #e5e5e5;
  --copyright: #959595;
  --footer: rgb(255, 255, 255);
  --item: rgb(195 213 255 / 24%);
  --bg: #ffffff;
  --card-bg: rgba(255,255,255,0.9);
  --border: rgba(255,255,255,0.3);
  --navbar-bg: rgba(255,255,255,0.95);
  --project-card: #6e64f314;

  --theme-toggle: #334155;
  --theme-toggle-hover: #ffffff;
}
/* ============================================
   Dark Theme
   ============================================ */
[data-theme="dark"] {
  --primary: #38bdf8;
  --secondary: #0ea5e9;
  --accent: #7dd3fc;
  --text: #e2e8f0;
  --text-bio: #cbd5e1;
  --button: #ffffff;
  --footer: rgb(11 23 50 / 90%);
  --item: rgb(11 23 50 / 90%);
  --bg: #0f172a;
  --card-bg: rgb(14 26 52 / 90%);
  --border: rgba(255,255,255,0.1);
  --navbar-bg: rgba(15, 23, 42, 0.95);
  --project-card: #6e64f314;

  --theme-toggle: gold;
  --theme-toggle-hover: #ffd700;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  transition: background 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw; /* Ekran genişliğini aşmasın */
}
/* ============================================
   Titles
   ============================================ */
 .section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 700;
    color: var(--primary);
    }

.projects-subtitle {
  text-align: center;
  color: var(--text-bio);
  margin: 0 auto 2rem;
  max-width: 780px;
  line-height: 1.6;
  font-weight: 500;
}

.projects .section-title {
  margin-bottom: 0.6rem;
}

/* ============================================
   Neler Yapıyoruz (Home)
   ============================================ */
.hw-what-we-do__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.hw-what-we-do__title {
  margin-bottom: 0.6rem;
}

.hw-what-we-do__subtitle {
  text-align: center;
  color: var(--text-bio);
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 44rem;
  margin: 0 auto 2rem;
}

.hw-what-we-do__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .hw-what-we-do__grid {
    grid-template-columns: 1fr;
  }
}

.hw-wwd-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.65rem 1.45rem 1.55rem;
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.hw-wwd-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -44px;
  width: 122px;
  height: 118px;
  border-radius: 28px;
  transform: rotate(22deg);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.26), rgba(6, 182, 212, 0.16));
  opacity: 0.55;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.hw-wwd-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12);
  border-color: var(--border);
}

.hw-wwd-card:hover::after {
  opacity: 0.88;
  transform: rotate(22deg) translateY(-2px);
}

.hw-wwd-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.28rem;
  margin-bottom: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: hwWwdIconFloat 2.8s ease-in-out infinite;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.hw-wwd-card:nth-child(2n) .hw-wwd-card__icon {
  animation-delay: 0.22s;
}

.hw-wwd-card:nth-child(3n) .hw-wwd-card__icon {
  animation-delay: 0.44s;
}

.hw-wwd-card:hover .hw-wwd-card__icon {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.24);
}

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

@media (prefers-reduced-motion: reduce) {
  .hw-wwd-card__icon {
    animation: none;
  }
}

.hw-wwd-card__icon--cyan {
  background: rgba(14, 165, 233, 0.14);
  color: #0284c7;
}

.hw-wwd-card__icon--blue {
  background: rgba(56, 189, 248, 0.14);
  color: #0ea5e9;
}

.hw-wwd-card__icon--mint {
  background: rgba(34, 211, 238, 0.14);
  color: #0891b2;
}

[data-theme="dark"] .hw-wwd-card__icon--cyan,
[data-theme="dark"] .hw-wwd-card__icon--blue,
[data-theme="dark"] .hw-wwd-card__icon--mint {
  color: #7dd3fc;
}

.hw-wwd-card__title {
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 0.65rem 0;
  line-height: 1.3;
}

.hw-wwd-card__text {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--text-bio);
  letter-spacing: -0.01em;
}

.section-title-xsm {
    font-size: 14px;
    color: #00000069;
    text-align: center;
    display: block;
    max-width: 800px;
    margin: 5px auto 3rem auto;
    line-height: 1.6;
    word-wrap: break-word;
    padding: 0 1rem;
    font-weight: 600;
}

/* Dark mode için section-title-xsm */
[data-theme="dark"] .section-title-xsm {
    color: rgba(255, 255, 255, 0.6);
}

.section-title-sm {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--primary);
    font-weight: 700;
}

.section-title-bg {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #0000009c;
}

/* Dark mode için section-title-bg */
[data-theme="dark"] .section-title-bg {
    color: rgba(255, 255, 255, 0.7);
}

.section-title i {
    color: var(--primary);
    font-size: 1.8rem;
}
/* ============================================
   Contact Form
   ============================================ */
.contact-section {
  padding: 60px 20px;
  text-align: center;
  max-width: 1400px;
  margin: 4rem auto;
}

.header-bio {
  color: var(--text-bio);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 30px;
  font-weight: 500;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 2.5rem;
  background: var(--card-bg);
  border: 2px solid transparent;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(99, 102, 241, 0.3);
}

#contactForm .form-group {
  margin-bottom: 20px;
  text-align: left;
}

#contactForm label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

#contactForm input,
#contactForm textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgb(217 217 217 / 27%);
  background: var(--item);
  color: var(--text);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

#contactForm input:focus,
#contactForm textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--card-bg);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

#contactForm textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 12px 32px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.submit-btn i {
  font-size: 1.2rem; /* ikon boyutu */
  display: inline-block; /* ikon görünür olması için */
  transition: transform 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.submit-btn:hover i {
  transform: translateX(5px) rotate(15deg); /* hover animasyonu */
}

.submit-btn:active {
  transform: translateY(-1px);
}

/* Captcha Styles */
.captcha-group {
  margin-bottom: 1.5rem;
}

.captcha-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.captcha-question {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

#captchaQuestion {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 2px solid rgba(99, 102, 241, 0.2);
  min-width: 120px;
  text-align: center;
  font-family: 'Courier New', monospace;
  letter-spacing: 2px;
}

[data-theme="dark"] #captchaQuestion {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
  border-color: rgba(99, 102, 241, 0.3);
}

#contactForm #captcha {
    flex: 1;
    max-width: 120px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    padding: 0.5rem 0.75rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Courier New', monospace;
    -moz-appearance: textfield;
    appearance: textfield;
}

#contactForm #captcha::-webkit-outer-spin-button,
#contactForm #captcha::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

#contactForm #captcha:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

#contactForm #captcha.error {
  border-color: #ef4444;
  animation: shake 0.5s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

.captcha-refresh {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  padding: 0.625rem 0.875rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
  min-width: 44px;
  height: 44px;
}

.captcha-refresh:hover {
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.captcha-refresh:active {
  transform: scale(0.95);
}

.captcha-refresh i {
  transition: transform 0.3s ease;
  display: inline-block;
}

.captcha-refresh:hover i {
  transform: rotate(180deg);
}

.captcha-refresh:active i {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .captcha-container {
    flex-direction: column;
    align-items: stretch;
  }
  
  .captcha-question {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  #captchaQuestion {
    width: 100%;
    min-width: auto;
  }
  
  #contactForm #captcha {
    max-width: 100%;
    width: 100%;
  }
  
  .captcha-refresh {
    width: 100%;
    height: 44px;
  }
}



.form-message {
  margin-top: 15px;
  font-weight: 500;
  display: none;
}

.form-message.success {
  color: green;
  display: block;
}

.form-message.error {
  color: red;
  display: block;
}

.email-suggestions {
  position: absolute;
  list-style: none;
  background: var(--card-bg);
  border: 1px solid var(--border-color, #ddd);
  border-radius: 8px;
  margin-top: 5px;
  width: 100%;
  padding: 0;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: none;
  max-height: min(11rem, 30vh);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--primary) 72%, transparent) transparent;
}

.email-suggestions li {
  padding: 8px 12px;
  cursor: pointer;
  color: var(--text);
  transition: background 0.2s ease;
}

.email-suggestions li:hover {
  background: var(--primary);
  color: #fff;
}

.email-suggestions::-webkit-scrollbar {
  width: 9px;
}

.email-suggestions::-webkit-scrollbar-track {
  background: transparent;
}

.email-suggestions::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--primary) 72%, transparent);
  border: 2px solid transparent;
  border-radius: 999px;
  background-clip: padding-box;
}
/* ============================================
   NAVBAR - TAM ÇALIŞAN VERSİYON
   ============================================ */
:root {
  --top-banners-offset: 0px;
  --site-top-bar-height: 40px;
}

.top-banner-stack {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1200;
  display: flex;
  flex-direction: column;
}

.top-banner-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 34px;
  background: var(--tb-bg, #1d4ed8);
  color: var(--tb-fg, #ffffff);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.top-banner-link {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.2rem 0.6rem;
}

.top-banner-link-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
}

.top-banner-logo {
  width: 22px;
  height: 22px;
  object-fit: contain;
  border-radius: 4px;
  flex-shrink: 0;
}

.top-banner-logo-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1;
}

.top-banner-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.top-banner-close {
  width: 28px;
  height: 28px;
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.9;
  margin: 3px 14px 3px 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(3px);
  transition: opacity 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.top-banner-close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.16);
  transform: translateX(-2px);
}

.site-top-bar {
  position: fixed;
  top: var(--top-banners-offset);
  left: 0;
  width: 100%;
  height: var(--site-top-bar-height);
  z-index: 1100;
  background: color-mix(in srgb, var(--card-bg) 96%, #ffffff 4%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-top-bar-inner {
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem;
}

.site-top-bar-left {
  justify-self: start;
}

.site-top-bar-center {
  justify-self: center;
}

.site-top-bar-right {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.site-top-bar-link {
  color: var(--text);
  opacity: 0.9;
  font-size: 0.8rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.site-top-bar-promo {
  text-decoration: none;
}

.site-top-bar-promo__inner {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--primary) 35%, transparent);
  background: color-mix(in srgb, var(--primary) 14%, transparent);
  color: var(--text);
  font-size: 0.76rem;
  padding: 0.2rem 0.6rem;
  white-space: nowrap;
}

.site-top-bar-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  border-radius: 0;
  text-decoration: none;
  border: none;
  background: transparent;
  color: #22c55e;
  font-size: 0.78rem;
}

.site-top-bar-wa-num {
  color: var(--text);
  font-weight: 600;
  font-size: 0.74rem;
}

.top-bar-theme-btn {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--item);
  color: var(--text);
  cursor: pointer;
}

.navbar {
  position: fixed;
  top: calc(var(--top-banners-offset) + var(--site-top-bar-height));
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--navbar-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Yasal / bilgi sayfaları — navbar + ana sayfa ile aynı yatay çerçeve (About-Home: 1400px, 2rem) */
main.legal-page {
  max-width: 1400px;
  margin: 0 auto;
  padding: calc(var(--top-banners-offset) + var(--site-top-bar-height) + 60px + 2rem) 2rem 3rem;
  box-sizing: border-box;
  width: 100%;
  color: #e7ecf3;
}

main.legal-page > .legal-card {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(20, 24, 35, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
}

/* Banka hesapları: içerik doğrudan main üzerinde (legal-card yok), grid için daha geniş */
main.legal-page.bank-accounts-page {
  max-width: 1200px;
}

main.legal-page h1 {
  margin: 0 0 0.5rem;
  font-size: 1.9rem;
}

main.legal-page h2 {
  margin: 1.4rem 0 0.5rem;
  font-size: 1.2rem;
}

main.legal-page p,
main.legal-page li {
  line-height: 1.7;
  color: #c8d2df;
}

main.legal-page ul {
  padding-left: 1.2rem;
}

main.legal-page .legal-meta {
  color: #9fb0c7;
  margin-bottom: 1rem;
}

/* Yasal / sözleşme / banka — gündüz teması (main.legal-page) */
[data-theme="light"] main.legal-page {
  color: #0f172a;
}
[data-theme="light"] main.legal-page > .legal-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}
[data-theme="light"] main.legal-page h1 {
  color: #0f172a;
}
[data-theme="light"] main.legal-page h2 {
  color: #1e293b;
}
[data-theme="light"] main.legal-page h3,
[data-theme="light"] main.legal-page h4 {
  color: #1e293b;
}
[data-theme="light"] main.legal-page p,
[data-theme="light"] main.legal-page li {
  color: #475569;
}
[data-theme="light"] main.legal-page .legal-meta {
  color: #64748b;
}
[data-theme="light"] main.legal-page strong {
  color: #0f172a;
  font-weight: 700;
}
[data-theme="light"] main.legal-page a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
[data-theme="light"] main.legal-page a:hover {
  color: var(--secondary);
}

/* Gündüz: yasal/sözleşme sayfalarında gövde zemini (kart + footer geçişi) */
body#mainBody[data-theme="light"]:has(main.legal-page) {
  background-color: #f8fafc;
}

@media (max-width: 768px) {
  main.legal-page {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  main.legal-page {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Kısa sayfalarda footer viewport altına yapışır (ör. banka hesapları) */
body.hw-sticky-footer-layout {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
body.hw-sticky-footer-layout > nav.navbar {
  flex-shrink: 0;
}
body.hw-sticky-footer-layout > main {
  flex: 1 0 auto;
  width: 100%;
}
body.hw-sticky-footer-layout > footer.footer {
  flex-shrink: 0;
  margin-top: auto;
}

.nav-container {
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: none;
  -webkit-text-fill-color: initial;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease;
  z-index: 1001;
}

.nav-logo-img {
  width: 136px;
  height: auto;
  max-height: 34px;
  object-fit: contain;
  display: block;
}

.nav-logo-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-logo:hover {
  transform: scale(1.05);
}

/* Desktop Menü */
.desktop-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

/* Sağ Taraf */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Giriş Butonu */
.nav-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
  white-space: nowrap;
}

.nav-login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.nav-login-btn i {
  font-size: 1.1rem;
}

.hero-title--home {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  overflow: visible;
}

.hero-title-line {
  display: block;
  padding-bottom: 0.08em;
  overflow: visible;
}

.hero-title-line--lead {
  font-family: 'DM Serif Display', serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.hero-title-line--accent {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-tagline {
  max-width: 760px;
  margin: -0.25rem auto 1.2rem;
  color: var(--text-bio);
  line-height: 1.65;
  text-align: center;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.hero-secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.56rem;
  padding: 0.7rem 1.14rem;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--primary) 38%, transparent);
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 16%, #ffffff), color-mix(in srgb, var(--secondary) 11%, #ffffff));
  color: color-mix(in srgb, var(--text) 84%, var(--primary));
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  opacity: 1;
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.14);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.hero-secondary-cta:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--primary) 62%, transparent);
  box-shadow: 0 12px 28px rgba(14, 165, 233, 0.2);
}

.hero-secondary-cta i {
  font-size: 0.86em;
  transition: transform 0.24s ease;
}

.hero-secondary-cta:hover i {
  transform: translateX(2px) rotate(-12deg);
}

[data-theme="dark"] .hero-secondary-cta {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(6, 182, 212, 0.16));
  color: #e0f2fe;
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 10px 24px rgba(2, 132, 199, 0.24);
}

.hero-scroll-hint {
  margin: 3.1rem auto 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.72rem;
  color: var(--text-bio);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: uppercase;
}

.hero-scroll-hint__text {
  display: block;
  opacity: 0.9;
}

.hero-scroll-hint__icon {
  width: 30px;
  height: 50px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid color-mix(in srgb, var(--primary) 62%, transparent);
  background: color-mix(in srgb, var(--card-bg) 86%, transparent);
  position: relative;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, #ffffff 28%, transparent);
  animation: heroScrollFloat 1.8s ease-in-out infinite;
}

.hero-scroll-hint__icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 9px;
  transform: translateX(-50%);
  width: 4px;
  height: 9px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--primary) 86%, transparent);
  animation: heroScrollWheel 1.45s cubic-bezier(0.2, 0.8, 0.3, 1) infinite;
}

.hero-scroll-hint__icon::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 22px;
  border: 1px solid color-mix(in srgb, var(--primary) 24%, transparent);
  opacity: 0;
  animation: heroScrollPulse 1.8s ease-out infinite;
}

.hero-scroll-hint__icon i {
  display: none;
}

@keyframes heroScrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

@keyframes heroScrollWheel {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 15px);
  }
}

@keyframes heroScrollPulse {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  40% {
    opacity: 0.45;
  }
  100% {
    transform: scale(1.08);
    opacity: 0;
  }
}

@keyframes heroScrollFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(3px);
  }
}

.hero-title--home {
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  color: var(--text);
}

.hero-title--home .hero-title-line--lead {
  color: #0f172a;
  -webkit-text-fill-color: currentColor;
}

[data-theme="dark"] .hero-title--home .hero-title-line--lead {
  color: #ffffff;
  -webkit-text-fill-color: currentColor;
}

[data-theme="dark"] .hero-title--home {
  filter:
    drop-shadow(0 0 10px rgba(255, 255, 255, 0.28))
    drop-shadow(0 0 20px rgba(56, 189, 248, 0.5))
    drop-shadow(0 0 34px rgba(14, 165, 233, 0.42));
}

[data-theme="dark"] .hero-tagline {
  color: #ffffff;
}

/* Giriş seçim modalı – minimal, soft, responsive */
.login-choice-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.login-choice-modal.active {
  opacity: 1;
  visibility: visible;
}
.login-choice-backdrop {
  position: absolute;
  inset: 0;
  cursor: pointer;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.login-choice-box {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transform: scale(0.96);
  transition: transform 0.25s ease;
}
.login-choice-modal.active .login-choice-box {
  transform: scale(1);
}
.login-choice-header {
  padding: 1.5rem 1.5rem 0.75rem;
  text-align: center;
  position: relative;
}
.login-choice-title {
  margin: 0 0 0.25rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text, #1e293b);
}
.login-choice-desc {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-light, #64748b);
}
.login-choice-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: var(--text-light, #64748b);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
}
.login-choice-close:hover {
  background: rgba(0, 0, 0, 0.06);
  color: var(--text, #1e293b);
}
.login-choice-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1rem 1.5rem 1.5rem;
}
.login-choice-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  text-decoration: none;
  color: var(--text, #1e293b);
  transition: all 0.2s ease;
  min-height: 120px;
}
.login-choice-card:hover {
  background: rgba(99, 102, 241, 0.08);
  border-color: rgba(99, 102, 241, 0.35);
  color: var(--primary, #6366f1);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.12);
}
.login-choice-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--primary, #6366f1);
  margin-bottom: 0.75rem;
}
.login-choice-card-label {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.login-choice-card-hint {
  font-size: 0.75rem;
  color: var(--text-light, #64748b);
}
.login-choice-card:hover .login-choice-card-hint {
  color: inherit;
  opacity: 0.8;
}
@media (max-width: 480px) {
  .login-choice-cards {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  .login-choice-card {
    min-height: 100px;
    flex-direction: row;
    justify-content: flex-start;
    gap: 1rem;
    text-align: left;
  }
  .login-choice-card-icon {
    margin-bottom: 0;
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
  }
}
[data-theme="dark"] .login-choice-box {
  background: var(--bg-surface, #1e293b);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255,255,255,0.06);
}
[data-theme="dark"] .login-choice-card {
  background: var(--bg-tertiary, #334155);
  border-color: var(--border-color, #475569);
  color: var(--text-primary, #f1f5f9);
}
[data-theme="dark"] .login-choice-card:hover {
  background: rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.4);
}

/* Mobil Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.25rem;
  transition: transform 0.3s ease;
}

.mobile-toggle:hover {
  transform: scale(1.1);
}

.mobile-toggle:active {
  transform: scale(0.95);
}

/* Mobil Close - Desktop'ta gizli */
.mobile-close {
  display: none;
}

/* Mobil Menü Container - DESKTOP'TA GİZLİ */
.mobile-menu {
  display: none; /* Desktop'ta tamamen gizli */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 85vh;
  background: var(--navbar-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 999;
  padding: 0;
  overflow-y: auto;
  transform: translateY(-100%); /* Yukarıda gizli */
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  opacity: 0;
  pointer-events: none;
}

.mobile-menu.active {
  transform: translateY(0); /* Aşağı in */
  opacity: 1;
  pointer-events: auto;
}

/* Kapatma animasyonu için */
.mobile-menu.closing {
  transform: translateY(-100%); /* Yukarı çık */
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.6, 0, 0.8, 0.2), opacity 0.3s ease;
}

/* Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.nav-overlay.closing {
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Dark Mode — gövde / navbar paletiyle uyumlu */
[data-theme="dark"] .nav-login-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.25);
}

[data-theme="dark"] .nav-login-btn:hover {
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}

[data-theme="dark"] .mobile-close:hover {
  color: var(--primary);
}

[data-theme="dark"] .navbar {
  box-shadow: 0 1px 0 rgba(148, 163, 184, 0.08), 0 8px 24px rgba(0, 0, 0, 0.35);
}

[data-theme="dark"] .navbar.scrolled {
  box-shadow: 0 1px 0 rgba(148, 163, 184, 0.1), 0 12px 32px rgba(0, 0, 0, 0.45);
}

[data-theme="dark"] .site-top-bar {
  background: rgba(6, 11, 20, 0.95);
  border-bottom: 1px solid rgba(125, 211, 252, 0.28);
  box-shadow: none;
}

/* ============================================
   MOBİL RESPONSIVE (768px ve altı)
   ============================================ */
@media (max-width: 768px) {
  /* Desktop menüyü gizle */
  .desktop-menu {
    display: none;
  }

  .desktop-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 999px;
    min-width: 36px;
  }

  .desktop-login span {
    display: none;
  }

  .desktop-login i {
    margin: 0;
    font-size: 1.05rem;
  }

  /* Mobil toggle göster */
  .mobile-toggle {
    display: block;
  }

  /* Overlay göster */
  .nav-overlay {
    display: block;
  }

  /* Mobil Menü - FLEXİBLE YUKARIADAN AŞAĞI */
  .mobile-menu {
    display: block; /* Mobilde block yap */
    padding: 1.5rem 2rem 2rem;
  }

  .mobile-menu.active {
    transform: translateY(0); /* Aşağı in */
    opacity: 1;
    pointer-events: auto;
  }

  /* Mobil Header */
  .mobile-menu-header {
    display: none; /* Mobilde header'ı gizle (logo zaten navbar'da var) */
  }

  .mobile-logo {
    display: none; /* İkinci logoyu gizle */
  }

  .mobile-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 1.2rem;
    right: 2rem;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
    flex-shrink: 0;
    line-height: 1;
  }

  .mobile-close:hover {
    color: var(--primary);
    transform: rotate(90deg) scale(1.15);
  }

  .mobile-close:active {
    transform: scale(0.9);
  }

  /* Mobil Menü Linkleri */
  .mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 3rem 0 1.5rem 0; /* Üstten boşluk (close buton için) */
    border-bottom: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
  }

  .mobile-nav-links li {
    margin: 0;
  }

  .mobile-nav-links .nav-link {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid color-mix(in srgb, var(--primary) 18%, transparent);
  }

  .mobile-nav-links .nav-link::after {
    display: none;
  }

  .mobile-nav-links li:last-child .nav-link {
    border-bottom: none;
  }

  /* Mobil Giriş Butonu */
  .mobile-login {
    padding: 1.5rem 0;
    border-top: 1px solid color-mix(in srgb, var(--border) 65%, transparent);
    border-bottom: 1px solid color-mix(in srgb, var(--border) 65%, transparent);
  }

  .mobile-login .nav-login-btn {
    width: 100%;
    justify-content: center;
    padding: 0.72rem 1.15rem;
    font-size: 0.92rem;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.18);
  }

  /* Mobil Sosyal Medya */
  .mobile-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding-top: 1.25rem;
  }

  .mobile-social a {
    text-decoration: none;
    color: var(--text);
    font-size: 1.6rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-social a:hover {
    transform: translateY(-3px) scale(1.1);
    color: var(--primary);
  }

  .mobile-social a::after {
    display: none !important;
  }

  /* Nav container padding ayarı */
  .nav-container {
    padding: 1rem 1.5rem;
  }

  /* Mobilde tema butonu daha minimal */
  .theme-toggle-floating {
    width: 36px;
    height: 36px;
    right: 16px;
    bottom: 82px;
    border-width: 1px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.14);
  }

  .theme-toggle-floating i {
    font-size: 1.08rem;
  }
}

/* Küçük mobil cihazlar */
@media (max-width: 480px) {
  .nav-container {
    padding: 1rem;
  }

  .nav-logo,
  .mobile-logo {
    font-size: 1.3rem;
  }

  .mobile-nav-links .nav-link {
    font-size: 1rem;
  }

  .mobile-social a {
    font-size: 1.6rem;
  }

  .mobile-close {
    font-size: 1.8rem;
  }
}
/* ============================================
   Light / Dark Button
   ============================================ */
.theme-toggle-floating {
  position: fixed;
  bottom: 90px;
  right: 25px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 2px solid var(--primary);
  display: flex !important; /* Zorla görünür yap */
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 9999; /* Yüksek z-index */
  opacity: 1 !important; /* Görünür yap */
  pointer-events: auto !important;
}

/* Tema popup butonu: sadece mobilde görünsün */
.theme-toggle-mobile-only {
  display: none !important;
}

.theme-toggle-floating:hover {
  transform: scale(1.1) rotate(20deg);
  background: var(--primary);
}

.theme-toggle-floating i {
  font-size: 1.4rem;
}

/* Koyu Mod  */
[data-theme="dark"] .theme-toggle-floating {
  color: var(--theme-toggle);
}

[data-theme="light"] .theme-toggle-floating {
  color: var(--theme-toggle);
}

[data-theme="light"] .theme-toggle-floating:hover {
  color: var(--theme-toggle-hover);
}

@media (max-width: 768px) {
  .theme-toggle-mobile-only {
    display: flex !important;
  }
}
/* ============================================
   Scroll Up Button
   ============================================ */
.scroll-top-floating {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 2px solid var(--primary);
  color: var(--button);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  cursor: pointer;
  z-index: 2000;

  /* Başlangıçta görünmez yap */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease; /* Yavaşça kaybolma/görünme */
}

.scroll-top-floating.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top-floating:hover {
  transform: scale(1.1);
  background: var(--primary);
  color: #fff;
}

.scroll-top-floating i {
  font-size: 1.3rem;
}
/* ============================================
   Hero
   ============================================ */
.Hero {
  background: var(--card-bg);
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 2rem 100px;
  overflow: visible;
}

.code-float-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.code-float {
  position: absolute;
  font-family: 'Courier New', 'Consolas', monospace;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.25);
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  transform: rotate(0deg) skew(0deg, 0deg);
  pointer-events: none;
  user-select: none;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.5px;
  transition: opacity 2s ease, transform 6s ease;
}

[data-theme="dark"] .code-float {
  color: rgba(139, 92, 246, 0.2);
  text-shadow: 0 2px 8px rgba(139, 92, 246, 0.15);
}

.hero-section {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
  padding-bottom: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  justify-content: center;
}

#project-hero .hero-content {
  align-items: center;
  position: relative;
}

#project-hero .hero-content > * {
  align-self: center;
  width: 100%;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  border: 1px solid var(--primary);
  border-radius: 30px;
  animation: fadeInDown 1s ease;
}

/* Modern Hero Breadcrumb - Apple tarzı */
.hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.8125rem;
  font-weight: 500;
}

/* Detail breadcrumb pill background */
.hero-breadcrumb--detail {
  margin: 0 auto 1.25rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  justify-content: center;
  width: fit-content;
}

[data-theme="dark"] .hero-breadcrumb--detail {
  background: rgba(15, 23, 42, 0.55);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.breadcrumb-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

[data-theme="dark"] .breadcrumb-link {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-link:hover {
  color: rgba(0, 0, 0, 0.9);
  background: rgba(0, 0, 0, 0.04);
}

[data-theme="dark"] .breadcrumb-link:hover {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.08);
}

.breadcrumb-link i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.breadcrumb-link:hover i {
  transform: scale(1.15);
}

.breadcrumb-arrow {
  color: rgba(0, 0, 0, 0.3);
  font-size: 0.75rem;
  margin: 0 0.25rem;
}

[data-theme="dark"] .breadcrumb-arrow {
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-current {
  color: rgba(0, 0, 0, 0.9);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  white-space: nowrap;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
}

[data-theme="dark"] .breadcrumb-current {
  color: rgba(255, 255, 255, 0.95);
}

@keyframes shimmer {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

/* Modern Hero Badge - Apple tarzı */
.hero-badge-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 30px;
  margin-bottom: 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Badge + title spacing in detail hero */
#project-hero .hero-content {
  text-align: center;
  align-items: center;
}

#project-hero .hero-badge-modern {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.25rem;
}

#project-hero .hero-title {
  position: relative;
  margin-top: 0.2rem;
  margin-bottom: 1rem;
  line-height: 1.24;
  padding-bottom: 0.14em;
  overflow: visible;
}

#project-hero .hero-title::after {
  content: none;
}

/* Detail card section heading */
.project-details-modern-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
}

.project-details-modern-accent {
  width: 4px;
  height: 1.15rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--secondary) 0%, var(--primary) 100%);
  box-shadow: 0 0 0 1px rgba(14, 165, 233, 0.12);
  flex: 0 0 auto;
}

.project-details-modern-title {
  margin: 0;
  font-size: clamp(1.02rem, 2vw, 1.16rem);
  font-weight: 700;
  color: color-mix(in srgb, var(--text) 88%, var(--primary));
  line-height: 1.25;
  overflow-wrap: anywhere;
  word-break: break-word;
}

[data-theme="dark"] .project-details-modern-title {
  color: color-mix(in srgb, #e2e8f0 88%, var(--secondary));
}

.project-details-modern-callout {
  width: 100%;
  align-self: stretch;
}

/* Kapsam badges */
.detail-scope-badges {
  display: block;
  margin-top: 0.6rem;
  width: 100%;
}

.detail-scope-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.55rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(14, 165, 233, 0.2);
  background: rgba(14, 165, 233, 0.07);
  color: color-mix(in srgb, var(--text) 85%, var(--primary));
  font-weight: 600;
  font-size: 0.85rem;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

[data-theme="dark"] .detail-scope-badge {
  border-color: rgba(56, 189, 248, 0.22);
  background: rgba(56, 189, 248, 0.08);
  color: rgba(226, 232, 240, 0.92);
}

/* Suggested projects thumbs (detail sidebar) */
.detail-suggested-thumb {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

[data-theme="dark"] .detail-suggested-thumb {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.detail-suggested-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.detail-suggested-thumb--fallback {
  position: relative;
  background: #0f172a;
}

.detail-suggested-thumb-img--logo {
  position: absolute;
  inset: 0;
  margin: auto;
  object-fit: contain;
  width: 78%;
  height: 78%;
  padding: 0;
}

.detail-suggested-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.detail-suggested-item.popular-search-item {
  display: flex;
  align-items: center;
  background: color-mix(in srgb, var(--card-bg) 88%, var(--item));
  border-color: color-mix(in srgb, var(--border) 82%, var(--primary));
  position: relative;
  overflow: hidden;
}

.detail-suggested-item.popular-search-item::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -22px;
  width: 64px;
  height: 62px;
  border-radius: 16px;
  transform: rotate(22deg);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(6, 182, 212, 0.14));
  opacity: 0.5;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.detail-suggested-item.popular-search-item:hover::after {
  opacity: 0.82;
  transform: rotate(22deg) translateY(-1px);
}

.detail-suggested-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
  flex-wrap: nowrap;
}

.detail-suggested-title {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
  width: 100%;
  line-height: 1.2;
}

.detail-suggested-title-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  flex: 1 1 auto;
}

.detail-suggested-item--hot {
  border-color: rgba(251, 146, 60, 0.45) !important;
  box-shadow: 0 0 0 1px rgba(251, 146, 60, 0.2), 0 10px 24px rgba(251, 146, 60, 0.18);
}

.detail-suggested-hot-icon {
  color: #fb923c;
  font-size: 0.95rem;
  margin-left: auto;
  flex: 0 0 auto;
}

[data-theme="dark"] .detail-suggested-item--hot {
  border-color: rgba(251, 146, 60, 0.5) !important;
  box-shadow: 0 0 0 1px rgba(251, 146, 60, 0.25), 0 12px 28px rgba(251, 146, 60, 0.2);
}

[data-theme="dark"] .detail-suggested-item.popular-search-item {
  background: rgba(30, 41, 59, 0.58);
  border-color: rgba(56, 189, 248, 0.18);
}

.detail-suggested-company {
  white-space: nowrap;
  color: var(--text-bio);
  opacity: 0.9;
}

/* WP section light soft */
[data-theme="light"] .wp-section {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.16) 0%, rgba(18, 140, 126, 0.12) 100%);
  color: #0f172a;
}

[data-theme="light"] .wp-content h2,
[data-theme="light"] .wp-content p {
  color: #0f172a;
  text-shadow: none;
}

[data-theme="light"] .wp-button {
  color: #0f172a;
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.22);
}

[data-theme="dark"] .hero-badge-modern {
  background: rgba(15, 23, 42, 0.55);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.hero-badge-modern:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
}

[data-theme="dark"] .hero-badge-modern:hover {
  background: rgba(15, 23, 42, 0.62);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.42);
}

.hero-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] .hero-badge-icon {
  background: rgba(255, 255, 255, 0.1);
}

.hero-badge-modern:hover .hero-badge-icon {
  transform: scale(1.05);
  background: rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .hero-badge-modern:hover .hero-badge-icon {
  background: rgba(255, 255, 255, 0.15);
}

.hero-badge-icon i {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.7);
  transition: all 0.3s ease;
}

[data-theme="dark"] .hero-badge-icon i {
  color: rgba(255, 255, 255, 0.8);
}

.hero-badge-text {
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8);
  letter-spacing: -0.01em;
  transition: all 0.3s ease;
}

[data-theme="dark"] .hero-badge-text {
  color: rgba(255, 255, 255, 0.9);
}

[data-theme="dark"] .hero-breadcrumb {
  background: rgba(15, 23, 42, 0.4);
  border-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .hero-breadcrumb:hover {
  background: rgba(15, 23, 42, 0.6);
  border-color: rgba(99, 102, 241, 0.3);
}

[data-theme="dark"] .breadcrumb-link {
  color: var(--text-bio);
}

[data-theme="dark"] .breadcrumb-link:hover {
  background: rgba(99, 102, 241, 0.15);
}

[data-theme="dark"] .hero-badge-modern {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
  border-color: rgba(99, 102, 241, 0.25);
}

@media (max-width: 768px) {
  .hero-breadcrumb {
    padding: 0.4rem 0.875rem;
    gap: 0.375rem;
    font-size: 0.7rem;
  }
  
  .breadcrumb-link {
    padding: 0.3rem 0.625rem;
    font-size: 0.7rem;
  }
  
  .breadcrumb-link i {
    font-size: 0.75rem;
  }
  
  .breadcrumb-arrow {
    font-size: 0.7rem;
  }
  
  .breadcrumb-current {
    padding: 0.3rem 0.625rem;
    font-size: 0.7rem;
    max-width: 150px;
  }
  
  .hero-badge-modern {
    padding: 0.75rem 1.5rem;
  }
  
  .hero-badge-icon {
    width: 28px;
    height: 28px;
  }
  
  .hero-badge-icon i {
    font-size: 1rem;
  }
  
  .hero-badge-text {
    font-size: 0.875rem;
  }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 60%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
  line-height: 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  animation: fadeInUp 0.8s ease-out;
}

[data-theme="dark"] .hero-title {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 60%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Duyuru Banner (JaviKurye tarzı) */
.hero-announcement-banner {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(14, 165, 233, 0.22);
  border-radius: 50px;
  padding: 0.45rem 0.85rem;
  margin: 0 auto 2rem auto;
  max-width: 560px;
  width: min(90%, 560px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .hero-announcement-banner {
  background: rgba(30, 41, 59, 0.95);
  border-color: rgba(56, 189, 248, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.announcement-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.announcement-badge i {
  font-size: 1rem;
}

.announcement-text-container {
  flex: 1;
  min-width: 0; /* Flexbox overflow için */
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-description {
  min-height: auto;
  max-height: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 100%;
  overflow: hidden;
  text-align: left;
  margin: 0;
  padding: 0;
  width: 100%;
  color: var(--primary);
}


@media (max-width: 768px) {
  .site-top-bar {
    display: none;
  }

  /* Mobil navbar + hero offset — tek değer (açılır menü ile aynı) */
  :root {
    /* ~12+10 dış boşluk + nav-container (padding + satır) — hero / drawer ile aynı hiza */
    --mobile-navbar-height: calc(var(--top-banners-offset, 0px) + 78px + env(safe-area-inset-top, 0px));
  }

  /* Mobilde daktilo alanını göster */
  .hero-announcement-banner {
    display: inline-flex !important;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 1rem;
    padding: 0.26rem 0.44rem;
    border-radius: 14px;
    gap: 0.45rem;
    height: 34px;
    min-height: 34px;
    max-height: 34px;
    overflow: hidden;
  }
  
  /* Navbar'ı en üste taşı (banner yok) */
  .navbar {
    top: var(--top-banners-offset, 0px);
    background: var(--navbar-bg);
    height: auto;
    min-height: 0;
    /* Üstte fazla sıkışmayı gider: güvenli alan + hafif iç boşluk */
    padding-top: calc(env(safe-area-inset-top, 0px) + 12px);
    padding-bottom: 10px;
    box-sizing: border-box;
  }

  .navbar .nav-container {
    min-height: 44px;
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
    height: auto;
  }
  
  /* Dark mode — mainBody / :root --navbar-bg ile aynı ton */
  [data-theme="dark"] .navbar {
    background: var(--navbar-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(148, 163, 184, 0.08), 0 8px 24px rgba(0, 0, 0, 0.35);
  }

  /* Mobil: navbar + başlık / buton ile stat kartları arasında daha rahat boşluk */
  .Hero {
    min-height: auto;
    justify-content: flex-start;
    padding: calc(var(--mobile-navbar-height) + 60px) 1.25rem 3.5rem;
  }

  main.legal-page {
    padding-top: calc(var(--mobile-navbar-height) + 1.25rem);
  }

  .hero-section {
    min-height: auto;
    justify-content: flex-start;
    width: 100%;
  }

  .hero-content {
    flex: 0 1 auto;
    justify-content: flex-start;
    padding-top: 0;
    padding-bottom: 0.5rem;
  }
  
  .announcement-badge {
    width: 28px;
    height: 28px;
    padding: 0;
    font-size: 0.72rem;
    flex-shrink: 0;
    border-radius: 8px;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
  }
  
  .announcement-badge i {
    font-size: 0.875rem;
  }
  
  /* Mobilde typed yerine scroll efekti */
  .announcement-text-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 26px;
    max-height: 26px;
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    flex-wrap: nowrap;
    white-space: nowrap;
    padding-left: 0.3rem;
    mask-image: linear-gradient(to right, transparent, black 12px, black calc(100% - 12px), transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 12px, black calc(100% - 12px), transparent);
  }
  
  .announcement-text-container .hero-description {
    white-space: nowrap !important;
    overflow: hidden !important;
    width: 100% !important;
    height: 26px !important;
    max-height: 26px !important;
    min-height: 26px !important;
    display: inline-block !important;
    line-height: 26px !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-wrap: nowrap !important;
  }
  
  #typed {
    font-size: 0.58rem;
    display: block !important;
    width: 100% !important;
    white-space: nowrap !important;
    animation: none !important;
    transform: none !important;
    padding-right: 0;
    padding-left: 0.3rem !important;
    line-height: 26px !important;
    height: 26px !important;
    max-height: 26px !important;
    min-height: 26px !important;
    overflow: hidden !important;
    text-overflow: clip;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    color: inherit;
  }

  .hero-tagline {
    margin-top: 0.35rem;
  }
  
  /* Dark mode için metin rengi */
  [data-theme="dark"] #typed {
    color: rgba(125, 211, 252, 0.95);
  }
  
  /* br etiketlerini mobilde gizle */
  .announcement-text-container br,
  .hero-description br,
  #typed br {
    display: none !important;
    content: ' ' !important;
  }
  
  /* Tüm iç içe elementlerin tek satırda kalmasını sağla */
  .announcement-text-container * {
    white-space: nowrap !important;
    display: inline !important;
  }
  
  .announcement-text-container .hero-description {
    display: inline-block !important;
  }
  
  #typed {
    display: inline-block !important;
  }
  
  /* Typed cursor'ı mobilde gizle */
  .typed-cursor {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }
  
  /* Mobilde typed animasyonunu tamamen devre dışı bırak */
  #typed.typed-cursor {
    display: none !important;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes scrollTextMobile {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Mobilde scroll için hero-description genişliği */
@media (max-width: 768px) {
  .announcement-text-container .hero-description {
    width: max-content;
    min-width: 100%;
  }
}

.Hero-Button {
  display: flex;
  gap: 1rem;
  margin: 2.5rem auto;
  max-width: 400px;
  justify-content: center;
}

#typed {
  color: var(--primary);
  font-weight: 500;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  display: inline-block;
  line-height: 1.5;
  text-align: left;
  font-size: 1rem;
  white-space: normal;
}

.typed-cursor {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  margin-left: 2px;
  color: var(--primary);
  animation: blink 0.8s infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.hero-left,
.hero-right {
  width: 100%;
}

.Hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  z-index: 3;
  transform: translateY(0);
}

/* Detail Page Hero - Reduced Height */
#project-hero {
  min-height: 44vh;
  padding: 74px 2rem 1.05rem;
  background: linear-gradient(180deg, 
    rgba(255, 255, 255, 0.97) 0%, 
    rgba(241, 249, 255, 0.98) 30%,
    rgba(236, 253, 255, 0.95) 60%,
    rgba(255, 255, 255, 1) 100%);
  background-size: 100% 100%;
  position: relative;
  overflow: visible;
}

[data-theme="dark"] #project-hero {
  background: linear-gradient(180deg, 
    rgba(15, 23, 42, 0.98) 0%, 
    rgba(20, 30, 50, 0.95) 30%,
    rgba(25, 35, 55, 0.95) 60%,
    rgba(15, 23, 42, 1) 100%);
}

#project-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(90deg, rgba(255, 255, 255, 0.46) 0%, rgba(255, 255, 255, 0.1) 12%, transparent 24%),
    linear-gradient(270deg, rgba(255, 255, 255, 0.46) 0%, rgba(255, 255, 255, 0.1) 12%, transparent 24%),
    radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.045) 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.04) 0%, transparent 60%);
  pointer-events: none;
  opacity: 1;
  background-size: 230% 100%, 230% 100%, 100% 100%, 100% 100%;
  animation: heroGlassDrift 18s ease-in-out infinite;
}

[data-theme="dark"] #project-hero::before {
  background: 
    linear-gradient(90deg, rgba(148, 163, 184, 0.2) 0%, rgba(148, 163, 184, 0.05) 12%, transparent 24%),
    linear-gradient(270deg, rgba(148, 163, 184, 0.2) 0%, rgba(148, 163, 184, 0.05) 12%, transparent 24%),
    radial-gradient(circle at 20% 30%, rgba(56, 189, 248, 0.07) 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.07) 0%, transparent 60%);
  background-size: 230% 100%, 230% 100%, 100% 100%, 100% 100%;
  animation: heroGlassDrift 20s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes gradientPulse {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

#project-hero {
  position: relative;
  overflow: visible;
}

/* Project Images Slider Section (Üstte) */
.project-images-slider-section {
    width: 100%;
    margin-bottom: 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: var(--card-bg);
}

.project-images-swiper {
    width: 100%;
    height: 600px;
    position: relative;
}

.project-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    color: var(--text);
    font-size: 2rem;
}

.project-image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* Detail fallback slide (default image + title + logo) */
.swiper-slide--detail-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
}

.project-detail-placeholder-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.project-slider-fallback-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-slider-fallback-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 1rem;
  text-align: center;
}

.project-slider-fallback-brand-wrap {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.35rem;
}

.project-detail-placeholder-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  font-weight: 700;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
  line-height: 1.25;
}

.project-slider-fallback-brand {
  width: 88px;
  max-width: none;
  height: auto;
  max-height: 22px;
  object-fit: contain;
  display: block;
  opacity: 1;
  margin: 0 auto;
  image-rendering: auto;
  filter: none;
}

.project-image-placeholder p {
    font-size: 1.2rem;
    opacity: 0.7;
}

.project-images-swiper .swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.project-images-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-images-swiper .swiper-slide:hover img {
    transform: scale(1.05);
}

.project-images-swiper .swiper-pagination {
    bottom: 25px !important;
    z-index: 10;
    position: absolute;
    width: auto !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    left: 50%;
    transform: translateX(-50%);
}

/* Tek resim varsa pagination ve navigation butonlarını gizle */
.project-images-swiper:has(.swiper-slide:only-child) .swiper-pagination,
.project-images-swiper:has(.swiper-slide:only-child) .swiper-button-prev,
.project-images-swiper:has(.swiper-slide:only-child) .swiper-button-next {
    display: none !important;
}

.project-images-swiper .swiper-button-next,
.project-images-swiper .swiper-button-prev {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.95);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-images-swiper .swiper-button-next:hover,
.project-images-swiper .swiper-button-prev:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.project-images-swiper .swiper-button-next::after,
.project-images-swiper .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

.project-images-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.9);
    margin: 0 2px;
}

.project-images-swiper .swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.project-images-swiper .swiper-pagination-bullet-active {
    background: var(--primary);
    border-color: var(--primary);
    width: 10px;
    height: 10px;
    transform: scale(1.4);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.25);
}

[data-theme="dark"] .project-images-swiper .swiper-pagination {
    background: rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .project-images-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.6);
}

[data-theme="dark"] .project-images-swiper .swiper-pagination-bullet-active {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.3);
}

@media (max-width: 768px) {
    .project-images-swiper {
        height: 300px;
    }
    
    .project-images-swiper-container {
        margin-bottom: 1.5rem;
        border-radius: 15px;
    }
}

#project-hero .hero-section {
  min-height: 28vh;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Project list page: slightly more top breathing room */
#project-hero.project-page-hero {
  padding-top: 92px;
}


/* Breadcrumb sol üst köşede - Apple tarzı minimal */
#project-hero > .hero-breadcrumb {
  position: absolute !important;
  top: 100px !important;
  left: 30px !important;
  z-index: 999 !important;
  margin: 0 !important;
  padding: 0.625rem 1.25rem !important;
  background: rgba(255, 255, 255, 0.7) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  border-radius: 20px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 0.5rem !important;
  flex-wrap: wrap !important;
  font-size: 0.8125rem !important;
  font-weight: 500 !important;
}

[data-theme="dark"] #project-hero > .hero-breadcrumb {
  background: rgba(30, 41, 59, 0.7) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
}

#project-hero > .hero-breadcrumb:hover {
  background: rgba(255, 255, 255, 0.85) !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08) !important;
  transform: translateY(-2px) !important;
}

[data-theme="dark"] #project-hero > .hero-breadcrumb:hover {
  background: rgba(30, 41, 59, 0.85) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4) !important;
}

/* Dark Mode Gradient */
[data-theme="dark"] #project-hero {
  background: linear-gradient(135deg, 
    rgba(14, 165, 233, 0.14) 0%, 
    rgba(56, 189, 248, 0.2) 25%,
    rgba(6, 182, 212, 0.14) 50%,
    rgba(56, 189, 248, 0.2) 75%,
    rgba(14, 165, 233, 0.14) 100%);
}

[data-theme="dark"] #project-hero::before {
  background: 
    linear-gradient(90deg, rgba(148, 163, 184, 0.2) 0%, rgba(148, 163, 184, 0.05) 12%, transparent 24%),
    linear-gradient(270deg, rgba(148, 163, 184, 0.2) 0%, rgba(148, 163, 184, 0.05) 12%, transparent 24%),
    radial-gradient(circle at 20% 50%, rgba(56, 189, 248, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(14, 165, 233, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(6, 182, 212, 0.14) 0%, transparent 50%);
  background-size: 230% 100%, 230% 100%, 100% 100%, 100% 100%, 100% 100%;
  animation: heroGlassDrift 20s ease-in-out infinite;
}

@keyframes heroGlassDrift {
  0%, 100% { background-position: 0% 0%, 100% 0%, 0 0, 0 0, 0 0; }
  50% { background-position: 100% 0%, 0% 0%, 0 0, 0 0, 0 0; }
}

/* Hero bottom border - gradient like footer */
#project-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--primary), var(--secondary), transparent);
  opacity: 0.3;
}

/* Modern Hero Meta Info */
.hero-meta-container {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 160px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    animation: fadeInUp 0.6s ease-out both;
}

/* Hero Action Buttons */
.hero-action-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    animation: fadeInUp 0.8s ease-out both;
}

.hero-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.hero-action-btn i {
    font-size: 1rem;
}

.hero-action-btn.admin-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    animation-delay: 0.1s;
}

.hero-action-btn.admin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.hero-action-btn.demo-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    animation-delay: 0.2s;
}

.hero-action-btn.demo-btn:hover {
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.hero-action-btn.site-btn {
    background: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 100%);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
    animation-delay: 0.3s;
}

.hero-action-btn.site-btn:hover {
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

[data-theme="dark"] .hero-action-btn {
    color: white;
}

@media (max-width: 768px) {
    .hero-action-buttons {
        gap: 0.75rem;
        margin-top: 1.5rem;
    }
    
    .hero-action-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
}

[data-theme="dark"] .hero-meta-item {
  background: rgba(15, 23, 42, 0.55);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.hero-meta-item:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(50px) saturate(220%);
  -webkit-backdrop-filter: blur(50px) saturate(220%);
}

[data-theme="dark"] .hero-meta-item:hover {
  background: rgba(15, 23, 42, 0.62);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.42);
}

.hero-meta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .hero-meta-icon {
  background: rgba(14, 165, 233, 0.2);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 0 0 1px rgba(14, 165, 233, 0.2);
}

.hero-meta-item:hover .hero-meta-icon {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .hero-meta-item:hover .hero-meta-icon {
  background: rgba(14, 165, 233, 0.3);
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 0 0 1px rgba(14, 165, 233, 0.28), 0 4px 12px rgba(14, 165, 233, 0.2);
}

.hero-meta-icon i {
  font-size: 1.125rem;
  color: rgba(14, 165, 233, 0.92);
  transition: all 0.3s ease;
}

[data-theme="dark"] .hero-meta-icon i {
  color: rgba(125, 211, 252, 0.96);
}

.hero-meta-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.hero-meta-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

[data-theme="dark"] .hero-meta-label {
  color: rgba(255, 255, 255, 0.7);
}

.hero-meta-item:hover .hero-meta-label {
  color: rgba(0, 0, 0, 0.6);
}

[data-theme="dark"] .hero-meta-item:hover .hero-meta-label {
  color: rgba(255, 255, 255, 0.85);
}

.hero-meta-value {
  font-size: 0.9375rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.9);
  line-height: 1.2;
  letter-spacing: -0.01em;
  transition: all 0.3s ease;
}

[data-theme="dark"] .hero-meta-value {
  color: rgba(255, 255, 255, 0.95);
}

[data-theme="dark"] .hero-meta-item {
  background: rgba(15, 23, 42, 0.55);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

[data-theme="dark"] .hero-meta-item:hover {
  background: rgba(15, 23, 42, 0.62);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
}

@media (max-width: 768px) {
  #project-hero {
    min-height: 34vh;
    padding: 82px 1rem 1.35rem;
  }

  #project-hero.project-page-hero {
    padding-top: 96px;
  }

  
  #project-hero .hero-section {
    min-height: 36vh;
  }
  
  /* Breadcrumb mobilde sol üst köşede */
  #project-hero > .hero-breadcrumb {
    top: 90px !important;
    left: 20px !important;
    padding: 0.5rem 1rem !important;
    font-size: 0.75rem !important;
  }
  
  .hero-title {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
  }

  .hero-title--home {
    line-height: 1.22;
  }

  .hero-title-line {
    padding-bottom: 0.1em;
  }
  
  .hero-meta-container {
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .hero-meta-item {
    min-width: 100%;
    padding: 0.75rem 1rem;
    gap: 0.625rem;
  }
  
  .hero-meta-icon {
    width: 32px;
    height: 32px;
  }
  
  .hero-meta-icon i {
    font-size: 1rem;
  }
  
  .hero-meta-label {
    font-size: 0.625rem;
  }
  
  .hero-meta-value {
    font-size: 0.875rem;
  }
  
  .breadcrumb-link {
    padding: 0.2rem 0.4rem;
    font-size: 0.75rem;
  }
  
  .breadcrumb-link i {
    font-size: 0.75rem;
  }
  
  .breadcrumb-link span {
    display: none;
  }
  
  .breadcrumb-arrow {
    font-size: 0.7rem;
    margin: 0 0.2rem;
  }
  
  .breadcrumb-current {
    padding: 0.2rem 0.4rem;
    font-size: 0.75rem;
    max-width: 150px;
    display: block;
  }
  
  .breadcrumb-current::before {
    content: '';
    display: none;
  }
  
  .hero-badge-modern {
    padding: 0.625rem 1.25rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-badge-icon {
    width: 26px;
    height: 26px;
  }
  
  .hero-badge-icon i {
    font-size: 0.9375rem;
  }
  
  .hero-badge-text {
    font-size: 0.875rem;
  }
}
/* ============================================
   Langueage Dropdown
   ============================================ */
.Language-Custom-Select {
  position: relative;
  border-radius: 6px;
  cursor: pointer;
}

.Language-Custom-Select .selected {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  gap: 6px;
  cursor: pointer;
}

.Language-Custom-Select .selected img {
  width: 30px;
  margin-right: 5px;
}

.Language-Custom-Select .options {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border-radius: 5px;
  overflow: hidden;
  display: none;
  min-width: 100%;
  z-index: 999;
}

.Language-Custom-Select .option {
  display: flex;
  align-items: center;
  padding: 5px 10px;
}

.Language-Custom-Select .option img {
  width: 20px;
  margin-right: 5px;
}

.Language-Custom-Select.open .options {
  display: block;
}

.Language-Custom-Select .lang-code {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-color);
}


@media (max-width: 768px) {
  .hero-description {
    min-height: 80px; /* Mobilde daha fazla */
    padding: 0 10px; /* Yanlardan boşluk */
    font-size: 0.95rem; /* Küçük font */
  }
  .Language-Custom-Select {
    display: flex;
    align-items: center;
  }

  #mobileToggle {
    display: flex;
  }
}
/* ============================================
   About & Skill
   ============================================ */
.About-Home {
  max-width: 1400px;
  margin: 4rem auto;
  padding: 0 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: stretch;
  justify-content: center;
}

/* BIO SECTION - Genişletilmiş */
.bio-section {
  flex: 1 1 600px;
  min-width: 0;
  color: var(--text-bio);
  background: var(--card-bg);
  border-radius: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bio-section:hover {
  transform: translateY(-5px);
}

.bio-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bio-title i {
  color: var(--primary);
}

.bio-section p {
  margin-bottom: 1rem;
  line-height: 1.8;
  font-size: 1rem;
}

.Profil-Card {
  flex: 0 0 auto;
  width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 2rem;
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  background: var(--card-bg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.Profil-Card:hover {
  transform: translateY(-5px);
}

.profile-header {
  text-align: center;
  position: relative;
}

.avatar-wrapper {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  position: relative;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  padding: 4px;
  overflow: visible;
}

.avatar-wrapper img {
  width: 70%;
  height: 90%;
  border-radius: 50%;
  animation: avatarFloat 3s ease-in-out infinite;
  object-fit: cover;
  padding: 5px;
}

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

.avatar-badge {
  position: absolute;
  bottom: 5px;
  right: 8px;
  background: var(--primary);
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
  transition: transform 0.3s ease;
}

.avatar-wrapper:hover .avatar-badge {
  transform: scale(1.15) rotate(15deg);
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 15px var(--primary);
  animation: floatParticle 6s ease-in-out infinite;
}

.particle1 { width: 15px; height: 15px; top: -10px; left: -15px; animation-delay: 0s; }
.particle2 { width: 8px; height: 8px; bottom: -8px; right: -10px; animation-delay: 1.5s; }
.particle3 { width: 12px; height: 12px; bottom: -15px; left: 25px; animation-delay: 3s; }
.particle4 { width: 20px; height: 20px; top: -20px; right: 20px; animation-delay: 2s; }

@keyframes floatParticle {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
  50% { transform: translateY(-15px) scale(1.2); opacity: 1; }
}

.Profil-Card h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.Meslek {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
  font-size: 1.5rem;
}

.social-links a {
  color: var(--text);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  transform: translateY(-3px) scale(1.1);
  color: var(--primary);
}
/* ============================================
   Stats
   ============================================ */
.stat-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 1400px;
  width: 100%;
  padding: 1.1rem 2rem 1.35rem;
  margin-top: 0.15rem;
  grid-auto-rows: auto;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-width: 200px; /* Minimum genişlik */
  max-width: 100%; /* Maksimum genişlik - grid kolonunu aşmasın */
  width: 100%; /* Tam genişlik kullan */
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  animation: fadeInUp 0.6s ease-out both;
  text-align: left;
  flex-shrink: 0; /* Küçülmesin */
}

[data-theme="dark"] .stat-item {
  background: rgba(30, 41, 59, 0.4);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.stat-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border-color: rgba(14, 165, 233, 0.38);
}

[data-theme="dark"] .stat-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(56, 189, 248, 0.45);
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.16), rgba(56, 189, 248, 0.16));
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
  position: relative;
}

.stat-icon i {
  color: var(--primary) !important;
  opacity: 1 !important;
  display: block !important;
  font-size: 1.25rem !important;
  line-height: 1 !important;
  z-index: 1 !important;
  visibility: visible !important;
  position: relative !important;
}

.stat-item .stat-icon i.fa-projector,
.stat-item .stat-icon i.fa-user-heart,
.stat-item .stat-icon i.fa-calendar-check {
  color: var(--primary) !important;
  opacity: 1 !important;
  display: block !important;
  visibility: visible !important;
}

[data-theme="dark"] .stat-icon {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.24), rgba(56, 189, 248, 0.24));
}

[data-theme="dark"] .stat-icon i {
  color: var(--primary) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

[data-theme="dark"] .stat-item .stat-icon i.fa-projector,
[data-theme="dark"] .stat-item .stat-icon i.fa-user-heart,
[data-theme="dark"] .stat-item .stat-icon i.fa-calendar-check {
  color: var(--primary) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.stat-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.stat-value {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0;
}

.stat-value .counter {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--text);
  opacity: 0.7;
  font-weight: 500;
  margin: 0;
  display: block;
}

/* ============================================
   Skills
   ============================================ */
.content-section {
  max-width: 1400px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.Yetenekler {
  background: var(--card-bg);
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.Yetenekler:hover {
  transform: translateY(-5px);
}

.Yetenekler h2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 2rem;
  background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.skill-bar {
  margin-bottom: 1.5rem;
}

.skill-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.skill-label span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bar-container {
  background: var(--item);
  height: 12px;
  border-radius: 6px;
  overflow: hidden;
}

.bar-progress {
  height: 100%;
  width: 0; /* başlangıçta sıfır */
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 6px;
  transition: width 1.2s ease; /* animasyon süresi */
}

/* Script tasarımıyla uyumlu güncel yetenek kartı stili */
.hw-skills-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 16px 40px rgba(2, 6, 23, 0.08);
}

.hw-skills-panel h2 {
  color: var(--primary);
  background: none;
  -webkit-text-fill-color: currentColor;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hw-skills-panel h2 i {
  color: var(--primary);
}

.hw-skills-panel .skill-bar {
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 12px;
  padding: 0.78rem 0.88rem;
}

.hw-skills-panel .skill-label {
  color: var(--text-primary);
  margin-bottom: 0.65rem;
}

.hw-skills-panel .skill-label span:last-child {
  color: var(--primary-color);
  font-weight: 700;
}

.hw-skills-panel .bar-container {
  background: rgba(148, 163, 184, 0.25);
  height: 10px;
}

[data-theme="dark"] .hw-skills-panel {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.94), rgba(2, 6, 23, 0.94));
  border-color: rgba(148, 163, 184, 0.26);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.34);
}

[data-theme="dark"] .hw-skills-panel .skill-bar {
  background: rgba(15, 23, 42, 0.8);
  border-color: rgba(148, 163, 184, 0.24);
}

[data-theme="dark"] .hw-skills-panel .skill-label {
  color: #e5e7eb;
}

[data-theme="dark"] .hw-skills-panel .bar-container {
  background: rgba(71, 85, 105, 0.45);
}

/* ============================================
   Project
   ============================================ */
  .projects {
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s 
cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
  }

  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem;
  }

  .project-card {
    background: var(--card-bg);
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 0;
  }
  
  .project-card:after {
      content: '';
      position: absolute;
      left: -62px;
      bottom: 9px;
      width: 126px;
      height: 125px;
      border-radius: 35px;
      background: linear-gradient(135deg, rgba(14, 165, 233, 0.14), rgba(6, 182, 212, 0.1));
      transform: rotate(28deg);
      opacity: 0.7;
  }

  .project-card:after {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(6, 182, 212, 0.09));
  }

  .project-image {
    width: 100%;
    height: 175px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    overflow: hidden;
    position: relative;
  }

  .project-image.project-image--placeholder-bg {
    background-color: #1e1b4b;
    background-image: url('../img/Project/default.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .project-image img,
  .project-image img.project-card__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .project-image img.project-card__thumb--logo {
    object-fit: contain;
    width: auto;
    height: auto;
    max-width: 52%;
    max-height: 52%;
    padding: 0.65rem 0.85rem;
    box-sizing: border-box;
    background: transparent;
    flex-shrink: 0;
  }

  .project-popular-ribbon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 4;
    padding: 0.45rem 0.65rem 1.9rem;
    text-align: center;
    pointer-events: none;
    background: linear-gradient(
      180deg,
      rgba(76, 29, 149, 0.88) 0%,
      rgba(124, 58, 237, 0.58) 38%,
      rgba(99, 102, 241, 0.22) 72%,
      rgba(99, 102, 241, 0) 100%
    );
    border-radius: 1.5rem 1.5rem 0 0;
  }

  .project-popular-ribbon__text {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.96);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
    display: block;
    animation: projectPopularTextGlow 2.35s ease-in-out infinite;
  }

  @keyframes projectPopularTextGlow {
    0%, 100% { opacity: 0.88; letter-spacing: 0.14em; transform: scale(1); }
    50% { opacity: 1; letter-spacing: 0.2em; transform: scale(1.035); }
  }

  .project-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
  }

  .project-platform {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-bio);
  margin: 0 0 0.75rem 0;
  gap: 8px; /* yazı ile çizgiler arası boşluk */
}

.project-platform::before,
.project-platform::after {
    content: "";
    flex: 1; /* çizgiyi yazıya göre uzatır */
    height: 1px;
    background-color: var(--text-bio);
}

.project-company {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.project-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.25em * 2);
}

.project-desc {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text);
    opacity: 0.8;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 70px;
    flex: 1;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  margin-top: auto;
}

.tech-tag {
  padding: 0.4rem 1rem;
  background: var(--item);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary);
}

.project-links {
  display: flex;
  gap: 1rem;
  margin-top: 0;
  padding-top: 0;
}

.project-btn.desktop {
  background: linear-gradient(135deg, #f093fb, #f5576c);
}

/* Tümünü Gör — grid ile iletişim arasında nefes (alt çizgi/başlık yapışmasın) */
.project-btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 0.5rem;
  padding-bottom: 2.75rem;
}

.Project-All-Btn {
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2.5rem;
  border-radius: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  background: transparent;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.Project-All-Btn:hover {
  background: var(--primary);
  color: white;
}

/* Home customer review slider */
.home-review-section {
  padding-top: 1rem;
}

.home-review-wrap {
  max-width: 620px;
  margin: 0 auto;
}

.home-review-wrap .section-title-sm {
  margin-bottom: 0.6rem;
}

@media (max-width: 768px) {
  .home-review-wrap .section-title-sm {
    white-space: nowrap;
    font-size: 1rem;
  }
}

.home-review-subtitle {
  margin: 0 auto 2rem;
  max-width: 520px;
  text-align: center;
  color: var(--text-bio);
  font-size: 0.88rem;
  line-height: 1.5;
}

.home-review-card {
  border-radius: 18px;
  padding: 1.24rem 1.05rem 1rem;
  background: color-mix(in srgb, var(--card-bg) 82%, transparent);
  border: none;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.25) inset,
    0 14px 32px -18px rgba(15, 23, 42, 0.24);
  text-align: left;
  position: relative;
}

.home-review-stars {
  display: flex;
  justify-content: flex-start;
  gap: 0.16rem;
  color: #fbbf24;
  margin-top: 0.22rem;
  font-size: 0.7rem;
  opacity: 0.92;
}

.home-review-body {
  margin: 1.02rem 0 0;
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.56;
  min-height: 2.8em;
  font-style: italic;
  padding: 0;
  text-align: center;
}

.home-review-body-text {
  position: relative;
  display: inline;
  padding: 0 0.38rem;
}

.home-review-body-text::before,
.home-review-body-text::after {
  position: relative;
  color: var(--primary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1;
  font-weight: 700;
  vertical-align: baseline;
}

.home-review-body-text::before {
  content: "“";
  margin-right: 0.2rem;
}

.home-review-body-text::after {
  content: "”";
  margin-left: 0.2rem;
}

.home-review-meta {
  margin-top: 0.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.home-review-meta-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.home-review-avatar {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  flex: 0 0 30px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 8px 18px -10px rgba(14, 165, 233, 0.85);
}

.home-review-author {
  color: var(--text-bio);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.home-review-date {
  position: absolute;
  top: 0.92rem;
  right: 1.02rem;
  color: color-mix(in srgb, var(--text-bio) 72%, transparent);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.home-review-divider {
  height: 1px;
  margin: 0.62rem 0 0.52rem;
  background: linear-gradient(
    90deg,
    transparent,
    color-mix(in srgb, var(--primary) 22%, var(--border)) 22%,
    color-mix(in srgb, var(--primary) 22%, var(--border)) 78%,
    transparent
  );
}

.home-review-pager {
  margin-top: 0.58rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.34rem;
}

.home-review-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: color-mix(in srgb, var(--text-bio) 35%, transparent);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.home-review-dot.is-active {
  background: var(--primary);
  transform: scale(1.15);
}

[data-theme="dark"] .home-review-card {
  background: color-mix(in srgb, var(--card-bg) 92%, transparent);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 16px 36px -20px rgba(0, 0, 0, 0.5);
}

.project-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.project-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--primary) 42%, transparent);
}

.no-data-center {
    font-size: 18px;
    color: #ed000069;
    text-align: center;
    display: block;
    max-width: 800px;
    margin: 5px auto;
    line-height: 1.6;
    word-wrap: break-word;
    padding: 0 1rem;
    font-weight: 600;
}

.no-data-left {
    color: #ed000069;
    display: block;
    max-width: 800px;
    line-height: 1.6;
    word-wrap: break-word;
    font-weight: 600;
}

/* Accessibility helper: hide text visually, keep for screen readers */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 768px) {
  .projects-grid {
    padding: 0rem;
  }
}
/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--footer);
  backdrop-filter: blur(12px);
  padding: 3rem 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.footer::before {
    top: 0;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    /* Tema ile uyum: açık/koyu ve mainBody prestige mavi paleti */
    background: linear-gradient(
        90deg,
        var(--primary) 0%,
        var(--secondary) 25%,
        var(--accent) 50%,
        var(--secondary) 75%,
        var(--primary) 100%
    );
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-section p,
.footer-section a {
  color: var(--text);
  opacity: 0.8;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  opacity: 1;
  color: var(--primary);
  transform: translateX(5px);
}

.footer-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--primary) 30%, transparent);
  background: color-mix(in srgb, var(--primary) 12%, transparent);
  color: var(--primary);
  margin-bottom: 0;
  opacity: 1;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.footer-social a i {
  font-size: 1.05rem;
  line-height: 1;
  display: block;
}

.footer-section .footer-social a:hover {
  transform: translateY(-3px) scale(1.06);
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.footer-bottom {
  text-align: center;
  padding-top: 1.25rem;
  margin-top: 1.25rem;
  border-top: 1px solid var(--copyright-bottom);
  font-weight: 500;
  color: var(--text);
}

.footer-bottom p {
  color: var(--copyright);
  font-size: 0.82rem;
  line-height: 1.35;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .About-Home {
    flex-direction: column;
  }

  .Profil-Card {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .bio-section {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .Hero {
    padding-bottom: 80px;
  }

  .stat-container {
    grid-template-columns: minmax(200px, 1fr);
    gap: 1rem;
    padding: 1rem 1rem 1.15rem;
    margin-top: 0;
  }

  .stat-item {
    min-width: 200px; /* Mobilde de minimum genişlik */
    max-width: 100%; /* Maksimum genişlik */
    width: 100%; /* Tam genişlik */
    padding: 0.875rem 1rem;
    flex-shrink: 0; /* Küçülmesin */
  }

  .stat-icon {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1.125rem;
  }

  .stat-icon i {
    font-size: 1.125rem !important;
    color: var(--primary) !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
  }
  
  .stat-item .stat-icon i.fa-projector,
  .stat-item .stat-icon i.fa-user-heart,
  .stat-item .stat-icon i.fa-calendar-check {
    font-size: 1.125rem !important;
    color: var(--primary) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .stat-value .counter {
    font-size: 1.375rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .About-Home {
    padding: 1rem;
    margin-top: 60px; /* Stat kartları için boşluk */
  }

  .Profil-Card {
    order: 1;
    padding: 2rem 1rem;
  }

  .bio-section {
    order: 2;
    padding: 1.5rem;
  }

  .nav-menu {
    position: fixed;
    top: var(--mobile-navbar-height, 60px);
    right: -100%;
    flex-direction: column;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 100%;
    height: calc(100vh - var(--mobile-navbar-height, 60px));
    height: calc(100dvh - var(--mobile-navbar-height, 60px));
    padding: 2rem 0;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    align-items: center;
    left: auto;
    transform: none;
  }

  .nav-menu.active {
    right: 0;
  }

  .mobile-toggle {
    display: block;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .hero-title {
      font-size: 28px;
      line-height: 1.24;
  }

  .hero-title-line {
    padding-bottom: 0.12em;
  }

  .contact-container {
    padding: 1.5rem;
  }
}
/* ============================================
   Cookie Popup
   ============================================ */
#cookiePopup {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2), 
                0 0 0 1px rgba(255, 255, 255, 0.1);
    align-items: center;
    gap: 24px;
    z-index: 10000;
    max-width: 1000px;
    width: calc(100% - 40px);
    animation: slideUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.5s;
}

@keyframes slideUp {
    to {
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes slideDown {
    to {
        transform: translateX(-50%) translateY(150%);
        opacity: 0;
    }
}

/* Cookie Icon */
.cookie-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.32);
    animation: float 3s ease-in-out infinite;
}

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

/* Text Content */
.cookie-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cookie-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a202c;
}

.cookie-text {
    font-size: 14px;
    line-height: 1.5;
    color: #4a5568;
}

.privacy-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.privacy-link:hover {
    color: var(--secondary);
    text-decoration: underline;
}

/* Button Container */
.button-container {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

/* Butonlar */
.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

#cookieAccept {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.32);
}

#cookieAccept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(14, 165, 233, 0.44);
}

.cookie-decline {
    background: transparent;
    color: #4a5568;
    border: 2px solid #e2e8f0;
}

.cookie-decline:hover {
    background: #f7fafc;
    border-color: #cbd5e0;
}

/* Çerez kutusu — site koyu temadayken */
[data-theme="dark"] #cookiePopup {
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.22);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.55),
                0 0 0 1px rgba(255, 255, 255, 0.06);
    color: #e2e8f0;
}

[data-theme="dark"] .cookie-title {
    color: #f1f5f9;
}

[data-theme="dark"] .cookie-text {
    color: #cbd5e1;
}

[data-theme="dark"] .privacy-link {
    color: #7dd3fc;
}

[data-theme="dark"] .privacy-link:hover {
    color: #bae6fd;
}

[data-theme="dark"] .cookie-decline {
    color: #e2e8f0;
    border-color: rgba(148, 163, 184, 0.35);
    background: rgba(30, 41, 59, 0.5);
}

[data-theme="dark"] .cookie-decline:hover {
    background: rgba(51, 65, 85, 0.75);
    border-color: rgba(148, 163, 184, 0.5);
}

[data-theme="dark"] #cookieAccept {
    box-shadow: 0 4px 16px rgba(14, 165, 233, 0.36);
}

/* Responsive */
@media (max-width: 768px) {
    #cookiePopup {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 16px;
    }

    .cookie-content {
        align-items: center;
    }

    .button-container {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cookie-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .cookie-title {
        font-size: 15px;
    }

    .cookie-text {
        font-size: 13px;
    }
}
/* ============================================
   Project PAGE STYLES
   ============================================ */
.Project-Header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, #a548ec 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 2rem 3rem 2rem;
    margin-top: 60px;
}
.Project-Title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.Project-Bio {
    font-size: 1rem;
    max-width: 600px;
    font-weight: 500;
}
.Project-Filter {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap; /* Mobilde alt satıra geçebilir */
  overflow-x: auto;
  padding: 1.2rem 1rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  margin: 1.5rem auto;
  position: relative;
  z-index: 0;
  scroll-behavior: smooth;
}

/* Mobilde scrollbar ince görünür */
.Project-Filter::-webkit-scrollbar {
  height: 6px;
}
.Project-Filter::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

/* Butonlar */
.Filter-Btn {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0.7rem 1.2rem;
  border-radius: 0.6rem;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.25s ease;
  white-space: nowrap;
  font-size: 0.95rem;
}

.Filter-Btn i {
  font-size: 1rem;
}

.Filter-Btn:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

.Filter-Btn.active {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.Filter-Container-Custom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 🔹 Mobil Uyumluluk */
@media (max-width: 768px) {
    .Project-Filter {
    flex-wrap: wrap;
    /* justify-content: flex-start; */
    gap: 0.6rem;
    padding: 1rem 1rem 1rem 1rem;
  }

  .Filter-Btn {
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
  }
}



/* ============================================
   BLOG DETAIL PAGE STYLES
   ============================================ */
.blog-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, #a548ec 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 2rem 3rem 2rem;
    margin-top: 60px;
}

.blog-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.blog-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, 
        #667eea 0%, 
        #764ba2 25%, 
        #f093fb 50%, 
        #764ba2 75%, 
        #667eea 100%);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.blog-header-content {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.client-name {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.95;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.blog-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.blog-meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0rem 2rem 0rem 0rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.meta-badge i {
    font-size: 1.1rem;
}

.breadcrumb-list {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    flex-wrap: wrap;
    align-items: center;
    font-weight: 600;
    margin-bottom: 1rem;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--bg);
    font-size: 0.9rem;
}

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

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

.breadcrumb-list i {
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Main Content */
.main-content {
    padding: 3rem 0;
}

.main-content .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    align-items: start;
}

/* Proje Görselleri Slider - Sol kolon içinde */
.project-main .project-images-slider-section {
    width: 100%;
    max-width: 100%;
    margin-bottom: 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: var(--card-bg);
    box-sizing: border-box;
    border: 1px solid var(--border);
    margin-left: 0;
    margin-right: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.project-main .project-images-swiper {
    width: 100% !important;
    max-width: 100% !important;
    height: 500px;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    flex: 1;
    min-height: 500px;
}

/* Default görsel (placeholder) yüksekliği %25 daha kompakt */
.project-main .project-images-slider-section--placeholder .project-images-swiper {
    height: 375px;
    min-height: 375px;
}

.project-main .project-images-swiper .swiper-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}

.project-main .project-images-swiper .swiper-slide {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box;
    flex-shrink: 0;
}

.project-main .project-images-swiper .swiper-slide img {
    width: 100% !important;
    max-width: 100% !important;
    height: 100%;
    object-fit: cover;
    display: block;
    box-sizing: border-box;
}


/* Left Column */
.project-main {
    background: transparent;
    padding: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible; /* Gölgelerin görünmesi için */
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* License Card Sidebar */
.license-card-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.license-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.license-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .license-card {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
}

.license-card-section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 0.75rem 0;
}

.license-card-section-title i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Price Info Section - Modern Minimal Design */
.price-info-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(148, 163, 184, 0.4);
}

[data-theme="dark"] .price-info-section {
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.price-info-main-centered {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.3), inset 0 0 0 1px rgba(99, 102, 241, 0.1);
}


[data-theme="dark"] .price-info-main-centered {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.22) 100%);
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.4), inset 0 0 0 1px rgba(99, 102, 241, 0.15);
}

[data-theme="dark"] .price-info-main-centered::after {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.5), rgba(139, 92, 246, 0.5));
}

.price-label-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    position: relative;
    z-index: 1;
}

.price-label-top {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.3px;
    margin: 0;
    line-height: 1.2;
}

.price-label-sub {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-bio);
    opacity: 0.8;
    margin: 0;
    line-height: 1.2;
}

.price-value-centered {
    font-size: 1.875rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a78bfa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1;
    position: relative;
    z-index: 1;
}

[data-theme="dark"] .price-value-centered {
    background: linear-gradient(135deg, #818cf8 0%, #a78bfa 50%, #c4b5fd 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* KDV Note */
.price-kdv-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    color: rgba(107, 114, 128, 0.8);
    font-weight: 500;
}

.price-kdv-note i {
    font-size: 0.875rem;
    color: rgba(99, 102, 241, 0.7);
}

[data-theme="dark"] .price-kdv-note {
    color: rgba(203, 213, 225, 0.7);
}

[data-theme="dark"] .price-kdv-note i {
    color: rgba(139, 92, 246, 0.8);
}

/* Product Code Section */
.product-code-section {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(148, 163, 184, 0.4);
}

[data-theme="dark"] .product-code-section {
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.product-code-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border: 2px solid rgba(99, 102, 241, 0.25);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.1);
}

[data-theme="dark"] .product-code-display {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    border: 2px solid rgba(99, 102, 241, 0.4);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.2);
}

.product-code-value {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
}

.copy-code-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 8px;
    background: var(--primary);
    color: white !important;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.copy-code-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    color: white !important;
}

.copy-code-btn:active {
    transform: scale(0.95);
    color: white !important;
}

.copy-code-btn i {
    font-size: 0.875rem;
    color: white !important;
}

.product-category-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.625rem;
    padding: 0.5rem 0.875rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
}

.category-label {
    color: var(--text-bio);
    font-size: 0.875rem;
    font-weight: 500;
}

.category-value {
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 600;
}

.price-info-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.price-info-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: var(--bg);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.price-info-item:hover {
    background: var(--item);
}

.price-info-item.price-info-main {
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.12) 100%);
    border: 2px solid rgba(99, 102, 241, 0.25);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.15);
    position: relative;
    overflow: hidden;
}

.price-info-item.price-info-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.price-info-item.price-info-main:hover::before {
    left: 100%;
}

[data-theme="dark"] .price-info-item.price-info-main {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(139, 92, 246, 0.18) 100%);
    border-color: rgba(99, 102, 241, 0.35);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.25);
}

.price-info-item.price-info-main:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(139, 92, 246, 0.18) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.3);
    border-color: rgba(99, 102, 241, 0.4);
}

.price-label {
    color: var(--text-bio);
    font-size: 0.9rem;
    font-weight: 500;
}

.price-info-main .price-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

.price-value {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 700;
}

.price-info-main .price-value {
    font-size: 1.75rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    letter-spacing: -0.02em;
}

[data-theme="dark"] .price-info-main .price-value {
    background: linear-gradient(135deg, #818cf8 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Features Section */
.features-section {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid rgba(148, 163, 184, 0.4);
    margin-top: 0.5rem;
}

[data-theme="dark"] .features-section {
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Açık Kaynak - Mavi */
.feature-item-code {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(99, 102, 241, 0.08) 100%);
    border-left: 3px solid rgba(99, 102, 241, 0.6);
}

.feature-item-code i {
    color: #6366f1;
    font-size: 1.1rem;
    min-width: 20px;
    text-align: center;
}

.feature-item-code span {
    color: #6366f1;
    font-size: 0.95rem;
    font-weight: 600;
}

.feature-item-code:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.25) 0%, rgba(99, 102, 241, 0.15) 100%);
    border-left-color: #6366f1;
    transform: translateX(3px);
}

/* Responsive Tasarım - Mor */
.feature-item-responsive {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(139, 92, 246, 0.08) 100%);
    border-left: 3px solid rgba(139, 92, 246, 0.6);
}

.feature-item-responsive i {
    color: #8b5cf6;
    font-size: 1.1rem;
    min-width: 20px;
    text-align: center;
}

.feature-item-responsive span {
    color: #8b5cf6;
    font-size: 0.95rem;
    font-weight: 600;
}

.feature-item-responsive:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.25) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-left-color: #8b5cf6;
    transform: translateX(3px);
}

/* Teknik Destek - Yeşil */
.feature-item-support {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.08) 100%);
    border-left: 3px solid rgba(16, 185, 129, 0.6);
}

.feature-item-support i {
    color: #10b981;
    font-size: 1.1rem;
    min-width: 20px;
    text-align: center;
}

.feature-item-support span {
    color: #10b981;
    font-size: 0.95rem;
    font-weight: 600;
}

.feature-item-support:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.25) 0%, rgba(16, 185, 129, 0.15) 100%);
    border-left-color: #10b981;
    transform: translateX(3px);
}

/* Kurulum Hizmeti - Turuncu */
.feature-item-install {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0.08) 100%);
    border-left: 3px solid rgba(245, 158, 11, 0.6);
}

.feature-item-install i {
    color: #f59e0b;
    font-size: 1.1rem;
    min-width: 20px;
    text-align: center;
}

.feature-item-install span {
    color: #f59e0b;
    font-size: 0.95rem;
    font-weight: 600;
}

.feature-item-install:hover {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.25) 0%, rgba(245, 158, 11, 0.15) 100%);
    border-left-color: #f59e0b;
    transform: translateX(3px);
}

/* Dark Theme */
[data-theme="dark"] .feature-item-code {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(99, 102, 241, 0.1) 100%);
}

[data-theme="dark"] .feature-item-responsive {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0.1) 100%);
}

[data-theme="dark"] .feature-item-support {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0.1) 100%);
}

[data-theme="dark"] .feature-item-install {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(245, 158, 11, 0.1) 100%);
}

/* Yönetim Paneli - Gri/Mavi */
.feature-item-admin {
    background: linear-gradient(135deg, rgba(71, 85, 105, 0.15) 0%, rgba(71, 85, 105, 0.08) 100%);
    border-left: 3px solid rgba(71, 85, 105, 0.6);
}

.feature-item-admin i {
    color: #475569;
    font-size: 1.1rem;
    min-width: 20px;
    text-align: center;
}

.feature-item-admin span {
    color: #475569;
    font-size: 0.95rem;
    font-weight: 600;
}

.feature-item-admin:hover {
    background: linear-gradient(135deg, rgba(71, 85, 105, 0.25) 0%, rgba(71, 85, 105, 0.15) 100%);
    border-left-color: #475569;
    transform: translateX(3px);
}

/* SEO Uyumlu Alt Yapı - Teal */
.feature-item-seo {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.15) 0%, rgba(20, 184, 166, 0.08) 100%);
    border-left: 3px solid rgba(20, 184, 166, 0.6);
}

.feature-item-seo i {
    color: #14b8a6;
    font-size: 1.1rem;
    min-width: 20px;
    text-align: center;
}

.feature-item-seo span {
    color: #14b8a6;
    font-size: 0.95rem;
    font-weight: 600;
}

.feature-item-seo:hover {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.25) 0%, rgba(20, 184, 166, 0.15) 100%);
    border-left-color: #14b8a6;
    transform: translateX(3px);
}

[data-theme="dark"] .feature-item-admin {
    background: linear-gradient(135deg, rgba(71, 85, 105, 0.2) 0%, rgba(71, 85, 105, 0.1) 100%);
}

[data-theme="dark"] .feature-item-seo {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.2) 0%, rgba(20, 184, 166, 0.1) 100%);
}

/* Demo Section (sidebar - Project_Demo_Type = 1, Satın Al'nın üzerinde) */
.demo-section {
    margin-bottom: 1rem;
}

.license-contact-btn.demo-view-btn {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
    color: white !important;
}

.license-contact-btn.demo-view-btn:hover {
    background: linear-gradient(135deg, #0f766e 0%, #115e59 100%);
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
    transform: translateY(-2px);
    color: white !important;
}

/* Purchase Section */
.purchase-section {
    margin-top: 0.25rem;
}

.license-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.license-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.license-contact-btn.purchase-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    color: white !important;
    border: none;
    position: relative;
    overflow: hidden;
}

.license-contact-btn.purchase-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.license-contact-btn.purchase-btn:hover::before {
    left: 100%;
}

.license-contact-btn.purchase-btn:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
    color: white !important;
}

.license-contact-btn.purchase-btn:active {
    transform: translateY(0);
}

[data-theme="dark"] .license-contact-btn.purchase-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    box-shadow: 0 4px 15px rgba(129, 140, 248, 0.3);
    color: white !important;
}

[data-theme="dark"] .license-contact-btn.purchase-btn:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    box-shadow: 0 6px 20px rgba(129, 140, 248, 0.4);
    color: white !important;
}

.license-contact-btn i {
    font-size: 1.1rem;
}

/* Popular Searches Card */
.popular-searches-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.popular-searches-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .popular-searches-card {
    background: rgba(30, 41, 59, 0.62);
    border-color: rgba(56, 189, 248, 0.2);
}

.popular-searches-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.popular-searches-header i {
    font-size: 1.25rem;
    color: #f59e0b;
}

.popular-searches-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.popular-searches-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.popular-search-item {
    display: inline-block;
    padding: 0.625rem 1rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: left;
}

.popular-search-item:hover {
    background: var(--item);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateX(5px);
}

.no-searches {
    color: var(--text-bio);
    font-size: 0.9rem;
    text-align: center;
    margin: 0;
    padding: 1rem 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .project-main .project-images-slider-section {
        margin-bottom: 1.5rem;
        border-radius: 15px;
    }
    
    .project-images-swiper {
        height: 300px;
    }
    
    .project-images-swiper .swiper-button-next,
    .project-images-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .project-images-swiper .swiper-button-next::after,
    .project-images-swiper .swiper-button-prev::after {
        font-size: 16px;
    }
    
    .project-details {
        padding: 2rem 1.5rem;
        margin: 0;
    }
    
    .main-content .container {
        padding: 0 1rem;
    }
    
    .price-info-main-centered {
        padding: 1rem 1.25rem;
    }
    
    .price-value-centered {
        font-size: 1.5rem;
    }
    
    .price-label-top {
        font-size: 0.8rem;
    }
    
    .price-label-sub {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    /* Hero Breadcrumb ve Badge Arası Boşluk */
    #project-hero .hero-section {
        margin-top: 80px;
        padding-top: 1.5rem;
    }
    
    #project-hero .hero-content {
        margin-top: 0;
    }
    
    #project-hero > .hero-breadcrumb {
        top: 80px !important;
        left: 15px !important;
        right: 15px !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-badge-modern {
        margin-top: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
    }
    
    .main-content {
        padding: 2rem 0;
    }
    
    .main-content .container {
        padding: 0 0;
    }
    
    .project-main {
        padding: 1rem;
        width: 100%;
        max-width: 100%;
        order: 1;
        margin: 0;
        box-sizing: border-box;
    }
    
    .project-main .project-images-slider-section {
        margin-bottom: 1.5rem;
        border-radius: 15px;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    /* Detail hero görselini mobilde sabit ve stabil tut */
    #project-hero .project-main .project-images-swiper {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        aspect-ratio: 16 / 10;
    }

    #project-hero .project-main .project-images-slider-section--placeholder .project-images-swiper {
        aspect-ratio: 16 / 7.5;
    }

    #project-hero .project-main .project-images-swiper .swiper-slide,
    #project-hero .project-main .project-images-swiper .swiper-slide img {
        height: 100% !important;
    }
    
    .project-details {
        padding: 1.5rem 1rem;
        border-radius: 1rem;
        width: 100%;
        margin: 1.5rem 0 0 0;
        box-sizing: border-box;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .details-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .project-description {
        font-size: 0.95rem;
        line-height: 1.7;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .license-card-sidebar {
        margin-top: 0;
        position: static;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        order: 2;
        padding: 0 1rem;
        box-sizing: border-box;
        margin-bottom: 1.5rem;
    }
    
    .license-card {
        padding: 1.25rem 1rem;
        border-radius: 1rem;
        width: 100%;
        box-sizing: border-box;
        order: 1;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .popular-searches-card {
        width: 100%;
        box-sizing: border-box;
        order: 2;
        padding: 1.5rem 1rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    /* Mobilde Yazılım Hakkında Kartı Yatay */
    .price-info-main-centered {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .price-label-group {
        flex: 1;
    }
    
    .price-value-centered {
        font-size: 1.5rem;
        width: auto;
        text-align: right;
        white-space: nowrap;
    }
    
    .hero-meta-container {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .hero-meta-item {
        min-width: 100%;
        width: 100%;
    }
    
    .hero-action-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-action-btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-breadcrumb {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }
    
    .breadcrumb-link {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
    
    .main-content .container {
        padding: 0 0.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    #project-hero .project-main .project-images-swiper {
        aspect-ratio: 4 / 3;
    }

    #project-hero .project-main .project-images-slider-section--placeholder .project-images-swiper {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 480px) {
    .content-grid {
        padding: 0 0.25rem;
        gap: 1rem;
    }
    
    .project-main {
        padding: 0.75rem;
        width: 100%;
        margin: 0;
    }
    
    .project-main .project-images-slider-section {
        margin-bottom: 1rem;
        border-radius: 12px;
    }
    
    .project-details {
        padding: 1.25rem 0.75rem;
        width: 100%;
        box-sizing: border-box;
        margin: 1rem 0 0 0;
        border-radius: 12px;
        overflow: hidden;
    }
    
    .details-title {
        font-size: 1.25rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .project-description {
        font-size: 0.9rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .project-main {
        padding: 0 1rem;
    }
    
    .license-card-sidebar {
        width: 100%;
        max-width: 100%;
        padding: 0 0.75rem;
        margin-bottom: 1rem;
    }
    
    .license-card {
        padding: 1rem;
        width: 100%;
        box-sizing: border-box;
        border-radius: 12px;
    }
    
    .popular-searches-card {
        width: 100%;
        box-sizing: border-box;
        padding: 1.25rem 1rem;
        border-radius: 12px;
    }
    
    .price-info-main-centered {
        padding: 0.875rem;
        width: 100%;
        box-sizing: border-box;
        flex-direction: row;
        gap: 0.75rem;
    }
    
    .price-value-centered {
        font-size: 1.375rem;
    }
    
    .hero-breadcrumb {
        font-size: 0.7rem;
        padding: 0.5rem;
        flex-wrap: wrap;
    }
    
    .breadcrumb-link span {
        display: none;
    }
    
    .breadcrumb-link i {
        font-size: 0.875rem;
        margin: 0;
    }
    
    .breadcrumb-arrow {
        font-size: 0.75rem;
        margin: 0 0.25rem;
    }
    
    .breadcrumb-current {
        font-size: 0.8125rem;
        max-width: 200px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        display: block;
    }
    
    .main-content .container {
        padding: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* FAQ Section Mobil Padding */
    .faq-section {
        padding: 3rem 1rem;
    }
    
    .faq-content-grid {
        padding: 0 1rem;
    }
    
    .faq-main {
        padding: 0 1rem;
    }
    
    .faq-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    /* Popular Searches Mobil Padding */
    .popular-searches {
        padding: 2.5rem 1rem;
    }
    
    .search-tags {
        padding: 0 1rem;
    }
}

/* Project Details */
.project-details {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 2.5rem;
    margin: 0;
    margin-top: 2rem;
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    background: var(--card-bg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}

.project-details > * {
    max-width: 100%;
    min-width: 0;
}

.project-details .project-tech-section {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.details-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
    width: 100%;
}

.project-details .project-tech-section .details-software {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.25rem;
    text-align: center;
    width: 100%;
}

.details-title i {
    color: var(--primary);
}

.project-description {
    color: var(--text-bio);
    line-height: 1.8;
    margin-bottom: 0;
    font-size: 1.05rem;
    margin-top: 0;
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: pre-line; /* Satır sonlarını korur, fazla boşlukları kaldırır */
}

/* Dark mode için proje açıklaması */
[data-theme="dark"] .project-description {
    color: rgba(255, 255, 255, 0.85);
}

.project-details .tech-stack {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin: 0;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.tech-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: var(--item);
    color: var(--primary);
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.tech-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
    background: var(--primary);
    color: white;
}

.tech-tag i {
    font-size: 1rem;
}

/* Tech Section Sidebar (Yazılım Hakkında Kartında) */
.tech-section-sidebar {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(148, 163, 184, 0.4);
}

[data-theme="dark"] .tech-section-sidebar {
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.tech-stack-sidebar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.875rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    border: 1px solid rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
}

[data-theme="dark"] .tech-badge {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
    border-color: rgba(99, 102, 241, 0.4);
}

.tech-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-color: transparent;
}

/* Tech Section */
.tech-section {
    padding: 3rem 0;
    background: rgba(99, 102, 241, 0.02);
}

[data-theme="dark"] .tech-section {
    background: rgba(99, 102, 241, 0.05);
}

.tech-content-grid {
    display: flex;
    justify-content: center;
    align-items: start;
}

.tech-main {
    max-width: 900px;
    width: 100%;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
}

.faq-content-grid {
    display: flex;
    justify-content: center;
    align-items: start;
}

.faq-main {
    max-width: 900px;
    width: 100%;
}

.faq-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 3rem;
    text-align: center;
    width: 100%;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #ffffff;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .faq-item {
    background: rgba(30, 41, 59, 0.95);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .sidebar-card {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
}

.sidebar-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.sidebar-title i {
    color: var(--primary);
}

/* Product Code Section */
.product-code-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.product-code-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.product-code-value {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
}

.copy-code-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 8px;
    background: var(--primary);
    color: white !important;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.copy-code-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    color: white !important;
}

.copy-code-btn:active {
    transform: scale(0.95);
    color: white !important;
}

.copy-code-btn i {
    font-size: 0.875rem;
    color: white !important;
}

/* Pricing Section */
.pricing-section {
    margin-bottom: 2rem;
}

.pricing-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-display:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}

[data-theme="dark"] .pricing-display {
    background: rgba(30, 41, 59, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
}

.pricing-display-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pricing-display-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text);
}

.pricing-display-header i {
    color: var(--primary);
    font-size: 1.1rem;
}

.pricing-display-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.pricing-arrow {
    color: var(--text-bio);
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.pricing-display:hover .pricing-arrow {
    transform: translateY(2px);
}

.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pricing-option {
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg);
}

.pricing-option:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}

.pricing-option.active {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}

[data-theme="dark"] .pricing-option {
    background: rgba(30, 41, 59, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .pricing-option.active {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    border-color: var(--primary);
}

.pricing-option-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.pricing-option-header i {
    color: var(--primary);
    font-size: 1.1rem;
}

.pricing-option-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.price-period {
    font-size: 0.875rem;
    color: var(--text-bio);
}

/* Sidebar Actions */
.sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sidebar-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.sidebar-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.sidebar-action-btn i {
    font-size: 1.1rem;
}

.sidebar-action-btn.admin-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.sidebar-action-btn.admin-btn:hover {
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.sidebar-action-btn.demo-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.sidebar-action-btn.demo-btn:hover {
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.sidebar-action-btn.site-btn {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.sidebar-action-btn.site-btn:hover {
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.sidebar-action-btn.purchase-btn {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.sidebar-action-btn.purchase-btn:hover {
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

/* Pricing Modal */
.pricing-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.pricing-modal-content {
    background: var(--card-bg);
    border-radius: 1.5rem;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] .pricing-modal-content {
    background: rgba(30, 41, 59, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.pricing-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--border);
}

.pricing-modal-header h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.pricing-modal-header h3 i {
    color: var(--primary);
}

.pricing-modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-modal-close:hover {
    background: var(--item);
    color: var(--primary);
}

.pricing-modal-body {
    padding: 2rem;
}

/* Pricing Cards Section */
.pricing-cards-section {
    padding: 4rem 0;
    background: rgba(99, 102, 241, 0.02);
}

[data-theme="dark"] .pricing-cards-section {
    background: rgba(99, 102, 241, 0.05);
}

.pricing-cards-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.pricing-card {
    flex: 1;
    background: var(--card-bg);
    border: 2px solid var(--border);
    border-radius: 1.5rem;
    padding: 1.75rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    max-width: 320px;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.2);
    border-color: var(--primary);
}

[data-theme="dark"] .pricing-card {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
}

.pricing-card-featured {
    flex: 1.15;
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    transform: scale(1.05);
}

[data-theme="dark"] .pricing-card-featured {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
}

.pricing-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.pricing-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 1rem;
}

.pricing-card-header i {
    font-size: 2rem;
    color: var(--primary);
}

.pricing-card-featured .pricing-card-header i {
    font-size: 2.5rem;
}

.pricing-card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.pricing-card-featured .pricing-card-header h3 {
    font-size: 1.75rem;
}

.pricing-card-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.pricing-card-price .price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.pricing-card-featured .pricing-card-price .price-amount {
    font-size: 2.5rem;
}

.pricing-card-price .price-period {
    font-size: 0.9rem;
    color: var(--text-bio);
}

.pricing-card-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 1.25rem;
    width: 100%;
}

.pricing-card-features p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-bio);
    font-size: 0.875rem;
    margin: 0;
    padding: 0.625rem 0;
    border-bottom: 1px solid var(--border);
    text-align: left;
}

.pricing-card-features p i {
    font-size: 1rem;
    color: var(--primary);
    opacity: 0.7;
    min-width: 20px;
    text-align: center;
}

.pricing-card-features p span {
    flex: 1;
}

.pricing-card-features p:first-child {
    padding-top: 0;
}

.pricing-card-features p:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pricing-card-btn {
    width: 100%;
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: white;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.pricing-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.pricing-card-btn-featured {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    font-size: 1rem;
    padding: 0.875rem 1.25rem;
}

.pricing-card-btn-featured:hover {
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.pricing-card-btn i {
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .pricing-cards-container {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        max-width: 100%;
        width: 100%;
    }
    
    .pricing-card-featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .pricing-cards-container {
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .pricing-card-header i {
        font-size: 2rem;
    }
    
    .pricing-card-featured .pricing-card-header i {
        font-size: 2.5rem;
    }
    
    .pricing-card-price .price-amount {
        font-size: 2rem;
    }
    
    .pricing-card-featured .pricing-card-price .price-amount {
        font-size: 2.5rem;
    }
}

.faq-item:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(99, 102, 241, 0.05);
}

[data-theme="dark"] .faq-question:hover {
    background: rgba(99, 102, 241, 0.1);
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

.faq-icon {
    font-size: 1.25rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-bio);
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
}

/* Right Sidebar */
.project-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-content {
    background: var(--card-bg);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid var(--border);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 0rem 1rem 0rem 1rem;
}

.info-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
    background-size: 200% 100%;
    animation: gradientShift 3s 
ease infinite;
}

.info-card:hover {
    transform: translateY(-3px);
}

.info-card-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary);
}

.info-card-title i {
    color: var(--primary);
    font-size: 1.3rem;
}

/* Project Image Card */
.project-image-card {
    background: white;
    border-radius: 15px;
    /* padding: 0.3rem; */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.project-image-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Info Items */
.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.info-item:last-child {
    border-bottom: none;
}

.sidebar-content .info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.info-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-bio);
    font-weight: 500;
    font-size: 0.9rem;
}

.info-label i {
    font-size: 1rem;
    color: var(--primary);
}

.info-value {
    color: var(--text);
    font-weight: 600;
    text-align: right;
    font-size: 0.9rem;
}

.sidebar-content .info-label {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.sidebar-content .info-value {
    color: var(--text);
    font-weight: 500;
    font-size: 0.875rem;
    text-align: left;
}

/* Sidebar buton düzeni */
.sidebar .sidebar-button {
  display: flex;
  flex-direction: column; /* Butonları alt alta dizer */
  gap: 1rem;              /* Butonlar arası boşluk */
  margin-top: 1rem;
  padding-bottom: 1rem;
}

.project-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.project-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.project-button:hover::before {
    width: 300px;
    height: 300px;
}

.project-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.project-button:active {
    transform: translateY(-1px);
}

.purchase-button {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3) !important;
}

.purchase-button:hover {
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4) !important;
}

.project-button.disabled {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
    background: #999 !important;
    box-shadow: none !important;
}

/* Social Share Buttons */
.social-share {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-btn i {
    font-size: 1.3rem;
}

.social-btn.facebook {
    background: linear-gradient(135deg, #1877f2, #0c63d4);
    color: white;
}

.social-btn.facebook:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
}

.social-btn.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
    color: white;
}

.social-btn.twitter:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(29, 161, 242, 0.4);
}

.social-btn.linkedin {
    background: linear-gradient(135deg, #0a66c2, #004182);
    color: white;
}

.social-btn.linkedin:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(10, 102, 194, 0.4);
}

.social-btn.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.social-btn.whatsapp:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* Related Projects - Sidebar Style */
.related-projects {
    margin-bottom: 2rem;
}

.related-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.related-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.related-image {
    width: 100%;
    height: 140px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-card:hover .related-image {
    transform: scale(1.05);
}

.related-content {
    padding: 1.2rem;
}

.related-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.related-desc {
    color: var(--text-bio);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.related-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.related-link:hover {
    gap: 0.75rem;
}

.related-link i {
    font-size: 1rem;
}

/* Popular Searches */
.popular-searches {
    background: var(--bg-light);
    padding: 2.5rem 0;
}

[data-theme="dark"] .popular-searches {
    background: var(--card-bg);
}


.search-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.search-tag {
    background: var(--card-bg);
    color: var(--text);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.search-tag:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.wp-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 4rem;
  margin-bottom: 0;
}

/* Animated background circles */
.wp-section::before {
  content: '';
  position: absolute;
  top: -42%;
  right: -12%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.08) 35%, transparent 72%);
  animation: wpOrbFloatRight 16s ease-in-out infinite;
}

.wp-section::after {
  content: '';
  position: absolute;
  bottom: -38%;
  left: -10%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.07) 36%, transparent 74%);
  animation: wpOrbFloatLeft 15s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { 
    transform: translate(0, 0) scale(1); 
  }
  33% { 
    transform: translate(30px, -30px) scale(1.1); 
  }
  66% { 
    transform: translate(-20px, 20px) scale(0.9); 
  }
}

.wp-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.wp-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: fadeInDown 0.8s ease-out;
}

.wp-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  font-weight: 500;
  animation: fadeInUp 1s ease-out;
}

.wp-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  animation: fadeInUp 1.2s ease-out;
}

/* Modern WhatsApp Button - DÜZELTİLMİŞ */
.wp-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.875rem 1.75rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 350px;
  justify-content: center;
  color: #ffffff;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.2);
  position: relative; /* ÖNEMLİ: ::before için gerekli */
  overflow: hidden;
  z-index: 1;
}

/* Hover glow effect - DÜZELTİLMİŞ */
.wp-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.3), transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1; /* Butonun altında olsun */
}

.wp-button:hover::before {
  width: 400px;
  height: 400px;
}

.wp-button:hover {
  background: rgba(74, 222, 128, 0.2);
  border-color: rgba(74, 222, 128, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px -10px rgba(74, 222, 128, 0.5);
}

/* İkon ve text z-index - DÜZELTİLMİŞ */
.wp-button i {
  font-size: 1.5rem;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 2; /* Glow efektinin üstünde */
}

.wp-button span {
  position: relative;
  z-index: 2; /* Glow efektinin üstünde */
}

/* Hover icon animation */
.wp-button:hover i {
  transform: rotate(15deg) scale(1.15);
  animation: iconBounce 0.6s ease infinite;
}

/* Icon pulse animation */
@keyframes iconPulse {
  0%, 100% { 
    transform: scale(1); 
  }
  50% { 
    transform: scale(1.1); 
  }
}

.wp-button:hover i {
  animation: iconPulse 1s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
  .wp-section {
    padding: 4rem 1.5rem;
  }

  .wp-content h2 {
    font-size: 1.8rem;
  }

  .wp-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .wp-button {
    padding: 1rem 2rem;
    font-size: 0.95rem;
  }

  .wp-button i {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .wp-section {
    padding: 3rem 1rem;
  }

  .wp-content h2 {
    font-size: 1.5rem;
  }

  .wp-content p {
    font-size: 0.9rem;
  }

  .wp-button {
    padding: 0.9rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }
}

/* Dark mode — “Hala Sorularınız Mı Var?”: parlak yeşil gradient yerine gömülü, yumuşak ton */
[data-theme="dark"] .wp-section {
  background: linear-gradient(
    155deg,
    #0c1210 0%,
    #121a18 38%,
    #0f1715 72%,
    #0a100e 100%
  );
  border-top: 1px solid rgba(74, 222, 128, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

[data-theme="dark"] .wp-section::before {
  background: radial-gradient(circle, rgba(148,163,184,0.2) 0%, rgba(148,163,184,0.09) 34%, transparent 72%);
  opacity: 0.85;
}

[data-theme="dark"] .wp-section::after {
  background: radial-gradient(circle, rgba(148,163,184,0.16) 0%, rgba(148,163,184,0.08) 34%, transparent 72%);
  opacity: 0.75;
}

@keyframes wpOrbFloatRight {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.72; }
  50% { transform: translate(18px, -14px) scale(1.06); opacity: 1; }
}

@keyframes wpOrbFloatLeft {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  50% { transform: translate(-16px, 12px) scale(1.05); opacity: 0.96; }
}

[data-theme="dark"] .wp-content h2 {
  color: #ecfdf5;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

[data-theme="dark"] .wp-content p {
  color: #a7f3d0;
  opacity: 0.9;
}

/* Dark mode adjustment — buton: beyaz blok yerine cam yeşil */
[data-theme="dark"] .wp-button {
  background: rgba(37, 211, 102, 0.1);
  color: #86efac;
  border: 1px solid rgba(74, 222, 128, 0.28);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

[data-theme="dark"] .wp-button:hover {
  background: rgba(37, 211, 102, 0.2);
  color: #ecfdf5;
  border-color: rgba(74, 222, 128, 0.45);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(74, 222, 128, 0.15);
}

/* Animation keyframes */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-grid {
        display: flex;
        justify-content: center;
    }

    .project-main {
        max-width: 100%;
        padding: 0 1rem;
    }

    .blog-title {
        font-size: 24px;;
    }
}

@media (max-width: 768px) {
    .blog-header {
        padding: 2rem 1rem;
    }

    .blog-title {
        font-size: 16px;;
    }

    .blog-meta {
        gap: 1rem;
    }

    .meta-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .gallery-title,
    .details-title {
        font-size: 1.3rem;
    }

    .project-description {
        font-size: 1rem;
    }

    .search-tags {
        gap: 0.5rem;
    }

    .search-tag {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 640px) {
    .blog-header {
        padding: 2rem 1rem;
    }

    .blog-title {
        font-size: 1.5rem;
    }

    .client-name {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    .blog-meta {
        align-items: flex-start;
    }

    .meta-badge {
        font-size: 0.8rem;
        padding: 0.5rem 0.9rem;
    }

    .content-grid {
        gap: 2rem;
    }

    .info-card {
        padding: 1.2rem;
    }

    .info-card-title {
        font-size: 1.1rem;
    }

    .related-image {
        height: 120px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .popular-searches {
        padding: 2rem 0;
    }
}

/* Dark Mode Optimizations */
[data-theme="dark"] .blog-header {
    background: linear-gradient(135deg, 
        #4f46e5 0%, 
        #7c3aed 50%, 
        #db2777 100%);
}

[data-theme="dark"] .project-image-card {
    background: var(--item);
}

[data-theme="dark"] .breadcrumb {
    background: var(--bg);
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.project-main,
.sidebar {
    animation: fadeInUp 0.6s ease-out;
}

.sidebar {
    animation-delay: 0.2s;
}

/* Scroll animation trigger */
.info-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.2s; }
.info-card:nth-child(3) { animation-delay: 0.3s; }
.info-card:nth-child(4) { animation-delay: 0.4s; }

/* ============================================
   Pricing Section
   ============================================ */
.pricing-section {
    padding: 4rem 0;
    background: var(--bg);
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.pricing-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    font-size: 1rem;
    color: #ef4444;
    font-weight: 500;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: var(--card-bg);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card-popular {
    border-color: #ef4444;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.1);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.popular-badge i {
    font-size: 0.875rem;
}

.pricing-card-icon {
    width: 70px;
    height: 70px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary);
}

.pricing-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.pricing-card-title-popular {
    color: #ef4444;
}

.pricing-card-desc {
    font-size: 0.875rem;
    color: var(--text-bio);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.pricing-card-price {
    font-size: 2rem;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 1.5rem;
}

.price-period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-bio);
}

.pricing-card-button {
    background: linear-gradient(135deg, #ef4444 0%, #6366f1 100%);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.pricing-card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
}

.pricing-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-action-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-action-primary {
    background: linear-gradient(135deg, #ef4444 0%, #6366f1 100%);
    color: white;
}

.pricing-action-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
}

.pricing-action-secondary {
    background: white;
    color: var(--text);
    border-color: var(--border);
}

.pricing-action-secondary:hover {
    background: var(--bg-tertiary);
    transform: translateY(-2px);
}

[data-theme="dark"] .pricing-action-secondary {
    background: var(--card-bg);
    border-color: var(--border);
}

[data-theme="dark"] .pricing-action-secondary:hover {
    background: var(--item);
}

/* Responsive */
@media (max-width: 1024px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-title {
        font-size: 2rem;
    }
    
    .pricing-actions {
        flex-direction: column;
    }
    
    .pricing-action-button {
        width: 100%;
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .blog-header,
    .breadcrumb,
    .sidebar,
    .popular-searches,
    .pricing-section {
        display: none;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .project-main {
        margin: 0;
        padding: 0;
    }
    
    .main-content .container {
        padding: 0 1rem;
    }
    
    .project-details {
        padding: 1.5rem;
    }
    
    .price-info-main-centered {
        padding: 0.75rem 1rem;
        flex-direction: row;
    }
    
    .price-label-top {
        font-size: 0.7rem;
    }
    
    .price-value-centered {
        font-size: 1.375rem;
    }
}

/* ============================================
   Demo Redirect Toast (Yönlendiriliyorsunuz bildirimi)
   ============================================ */
#demo-redirect-toast {
    position: fixed;
    top: calc(var(--top-banners-offset, 0px) + var(--site-top-bar-height, 0px) + 60px + 12px);
    right: 20px;
    z-index: 99999;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 8px 26px rgba(14, 165, 233, 0.25);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 200px;
    max-width: 280px;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#demo-redirect-toast.show {
    transform: translateX(0);
    opacity: 1;
}

#demo-redirect-toast::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.8);
    border-top-color: transparent;
    border-radius: 50%;
    animation: demoToastSpin 0.8s linear infinite;
    flex-shrink: 0;
}

@keyframes demoToastSpin {
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    #demo-redirect-toast {
        top: calc(var(--mobile-navbar-height, 60px) + 12px);
        right: 10px;
        left: 10px;
        max-width: calc(100% - 20px);
        min-width: auto;
        padding: 0.625rem 1rem;
        font-size: 0.8rem;
    }
}

/* Light WP soft (ensure after base .wp-section) */
body#mainBody[data-theme="light"] .wp-section {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.14) 0%, rgba(18, 140, 126, 0.1) 100%) !important;
  color: #0f172a !important;
}

body#mainBody[data-theme="light"] .wp-content h2,
body#mainBody[data-theme="light"] .wp-content p {
  color: #0f172a !important;
  text-shadow: none !important;
}

body#mainBody[data-theme="light"] .wp-button {
  background: rgba(37, 211, 102, 0.12) !important;
  border-color: rgba(37, 211, 102, 0.22) !important;
  color: #0f172a !important;
}