/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-body); background: var(--bg-primary); color: var(--text-primary);
  line-height: 1.6; -webkit-font-smoothing: antialiased; transition: background 0.4s, color 0.4s; overflow-x: hidden;
  position: relative; width: 100%;
}

/* Arka Plan Dekoratif Blob */
.bg-blob {
  position: absolute; width: 800px; height: 800px; border-radius: 50%;
  background: var(--main-gradient); filter: blur(140px); opacity: 0.25; z-index: -1; top: -200px; left: -300px; pointer-events: none;
}
.bg-blob.blob-2 { top: 40%; right: -300px; left: auto; background: linear-gradient(135deg, var(--secondary-color), var(--accent-color)); opacity: 0.2; }

img { max-width: 100%; display: block; border-radius: var(--radius-sm); }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

h1, h2, h3, h4, h5 { font-family: var(--font-heading); line-height: 1.2; font-weight: 700; margin-bottom: 1rem; }

/* ── Typography Elements ── */
.section-title {
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: -0.03em;
  font-weight: 800;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1.2;
  text-align: left;
}

/* Icon badge: küçük gradient kutu */
.section-title svg {
  width: 16px;
  height: 16px;
  color: #fff;
  background: var(--main-gradient);
  border-radius: 8px;
  padding: 5px;
  box-sizing: content-box;
  flex-shrink: 0;
  opacity: 1;
  stroke-width: 2;
}

/* Eski underline kaldırıldı */
.section-title::after { display: none; }
.ws-section:hover .section-title::after { display: none; }

.section-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  text-align: left;
  margin-left: 0;
  line-height: 1.65;
  max-width: 560px;
}

@media (max-width: 768px) {
  .section-title { font-size: clamp(1.25rem, 5vw, 1.6rem); }
  .section-title svg { width: 14px; height: 14px; padding: 4px; border-radius: 6px; }
  .section-subtitle { margin-left: 0; font-size: 0.85rem; margin-bottom: 18px; }
}

/* ── Layout Modules ── */
.ws-container { max-width: 1400px; margin: 0 auto; padding: 0 24px; position: relative; width: 100%; }
.ws-section { padding: 25px 0 50px 0; position: relative; }

.content-block {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  transition: transform var(--transition), box-shadow var(--transition);
  width: 100%;
}

/* Trust Badges */
.trust-bar { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; justify-content: flex-start; }
.trust-badge { 
  display: inline-flex; align-items: center; justify-content: center; padding: 12px 24px; 
  background: var(--surface); border: 2px solid var(--trust-border); border-radius: var(--radius-pill); 
  font-weight: 700; color: var(--text-primary); font-size: 0.95rem; box-shadow: var(--shadow-sm); 
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s; 
}
.trust-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); background: rgba(var(--main-color), 0.05); }

/* ── Mobil Menü Arka Plan Overlay ── */
#navBackdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 998; /* nav=1000, nav__links=999, backdrop=998, sayfa içeriği altında */
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#navBackdrop.active {
  opacity: 1;
}
@media (min-width: 901px) {
  /* Masaüstünde backdrop hiç gösterilmez */
  #navBackdrop { display: none !important; }
}
@media (max-width: 900px) {
  #navBackdrop { display: block; pointer-events: none; }
  #navBackdrop.active { pointer-events: all; }
}

/* ── Navigasyon (Glassmorphism Piller) ── */
.ws-nav {
  position: fixed; top: 20px; left: 50%; transform: translateX(-50%); z-index: 1000;
  padding: 10px 20px; background: var(--glass-bg); border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-pill); width: calc(100% - 48px); max-width: 1200px;
  display: flex; align-items: center; justify-content: space-between; box-shadow: var(--shadow-sm);
  min-width: 0;
}
.ws-nav__brand { font-family: var(--font-heading); font-weight: 800; font-size: 1.1rem; color: var(--text-primary); letter-spacing: -0.03em; white-space: nowrap; flex-shrink: 0; }
.ws-nav__links { display: flex; gap: 2px; list-style: none; flex-shrink: 1; min-width: 0; overflow: visible; flex-wrap: nowrap; }
.ws-nav__links a { 
  padding: 7px 13px; border-radius: var(--radius-pill); font-size: 0.8rem; font-weight: 600; 
  color: var(--text-secondary); transition: all var(--transition); white-space: nowrap;
}
.ws-nav__links a:hover { background: var(--surface-alt); color: var(--main-color); }
.ws-nav__actions { display: flex; align-items: center; gap: 12px; }
.theme-toggle { 
  width: 44px; height: 44px; border-radius: 50%; background: var(--surface-alt); border: 1px solid var(--surface-border); 
  display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--text-primary); transition: all var(--transition);
}
.theme-toggle:hover { background: var(--text-primary); color: var(--bg-primary); transform: rotate(15deg); }

.menu-toggle {
  display: none; width: auto; height: 36px; border-radius: var(--radius-pill);
  background: transparent; border: none; padding: 0 8px 0 8px; margin-right: 12px;
  align-items: center; justify-content: center; gap: 5px; color: #fff;
  transition: all var(--transition);
}
.menu-toggle-label {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em;
  color: #fff; white-space: nowrap; line-height: 1;
}

/* Hide mobile nav footer on desktop */
.mobile-nav-footer { display: none; }

/* ── Butonlar ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius-pill); font-weight: 600; font-size: 1rem;
  transition: all var(--transition); white-space: nowrap; border: 1px solid transparent; font-family: var(--font-heading);
}
.btn-primary { 
  background: var(--main-gradient); color: #FFF; box-shadow: var(--shadow-sm); 
}
.btn-primary:hover { 
  transform: translateY(-3px); box-shadow: var(--shadow-glow); opacity: 0.95; 
}
.btn-secondary { 
  background: var(--surface); color: var(--text-primary); border-color: var(--surface-border); box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { 
  border-color: var(--text-muted); transform: translateY(-2px); box-shadow: var(--shadow-md); 
}
[data-theme="light"] .btn-primary { box-shadow: 0 10px 20px -10px var(--main-color); }
[data-theme="light"] .btn-primary:hover { box-shadow: 0 15px 30px -10px var(--main-color); }
[data-theme="light"] .btn-secondary { box-shadow: 0 5px 15px -5px rgba(0,0,0,0.1); }
[data-theme="light"] .btn-secondary:hover { box-shadow: 0 10px 20px -5px rgba(0,0,0,0.15); }
.btn-whatsapp { background: linear-gradient(135deg, #25D366, #1EAC52); color: #fff; }
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(37,211,102,0.3); }
.btn-sm { padding: 10px 24px; font-size: 0.9rem; }

/* ── Hero Alanı (2 Kolonlu & Float Effect) ── */
.ws-hero { min-height: 60vh; display: flex; align-items: center; padding-top: 60px; padding-bottom: 25px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; width: 100%; max-width: 1300px; margin: 0 auto; }

.hero-left { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }

.hero-name {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text-primary);
  letter-spacing: -0.04em;
  position: relative;
}

/* İsim üstende ince gradient vurgu çizgisi */
.hero-name::before {
  content: '';
  display: block;
  width: 44px;
  height: 4px;
  background: var(--main-gradient);
  border-radius: 4px;
  margin-bottom: 14px;
  opacity: 0.85;
}

.hero-name .highlight {
  background: linear-gradient(
    135deg,
    var(--main-color) 0%,
    var(--secondary-color) 40%,
    var(--main-color) 60%,
    var(--secondary-color) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  animation: nameShimmer 5s linear infinite;
}

/* Dark modda isim üzerine subtle glow */
[data-theme="dark"] .hero-name .highlight {
  filter: drop-shadow(0 0 18px rgba(var(--main-color-rgb), 0.38));
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .hero-name .highlight {
    filter: drop-shadow(0 0 18px rgba(var(--main-color-rgb), 0.38));
  }
}

.hero-branch-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 24px;
  background: var(--main-gradient); color: white !important;
  border: 1px solid var(--surface-border); border-radius: var(--radius-pill);
  font-size: 1.1rem; font-weight: 700; margin-bottom: 28px;
  box-shadow: var(--shadow-sm); backdrop-filter: blur(10px);
}
.hero-branch-badge i { font-size: 1.3rem; color: white !important; }

.hero-bio { font-size: 1.15rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 32px; white-space: pre-line; max-width: 600px; }

.trust-bar { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.trust-badge { padding: 10px 24px; background: var(--surface); border: 1px solid var(--surface-border); border-radius: var(--radius-sm); font-size: 0.95rem; font-weight: 600; color: var(--text-primary); box-shadow: var(--shadow-sm); transition: transform var(--transition); }
.trust-badge:hover { transform: translateY(-3px); border-color: var(--main-color); }

/* Her cihazda 4 kolon sabit grid */
.hero-grades-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 40px;
  width: 100%;
}
.hero-grade-btn {
  padding: 10px 12px;
  background: var(--surface-alt);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.3s;
  white-space: nowrap;
  overflow: hidden;
  min-width: 0; /* grid shrink çözümü */
}
.hero-grade-btn i { color: var(--main-color); font-size: 1rem; flex-shrink: 0; }
.hero-grade-btn:hover { background: var(--surface); border-color: var(--main-color); color: var(--text-primary); transform: scale(1.04); }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: flex-start; }
.btn-hero-primary {
  background: var(--main-gradient); color: white; border: none; padding: 18px 40px;
  border-radius: var(--radius-pill); font-weight: 700; font-size: 1.15rem;
  display: flex; align-items: center; gap: 12px; box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
  transition: all 0.4s; cursor: pointer; text-decoration: none;
}
.btn-hero-primary:hover { transform: translateY(-4px); box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4); }

.btn-hero-secondary {
  background: var(--surface); color: var(--text-primary); border: 1px solid var(--surface-border);
  padding: 18px 40px; border-radius: var(--radius-pill); font-weight: 700; font-size: 1.15rem;
  display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-sm); transition: all 0.4s;
  cursor: pointer; text-decoration: none;
}
.btn-hero-secondary:hover { background: var(--surface-alt); transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--main-color); }


.hero-right { display: flex; justify-content: flex-end; position: relative; width: 100%; }

/* Fotoğrafın arkasına gradient blur blob */
.hero-right::before {
  content: '';
  position: absolute;
  width: 70%;
  height: 70%;
  top: 50%;
  left: 50%;
  transform: translate(-30%, -50%);
  background: var(--main-gradient);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.18;
  z-index: 1;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

.hero-image-wrap {
  width: 100%; max-width: 440px; aspect-ratio: 1 / 1;
  background: var(--surface-alt); border: 4px solid var(--surface);
  border-radius: 50%; padding: 0;
  box-shadow:
    0 0 0 8px rgba(var(--main-color-rgb), 0.08),
    0 20px 60px -10px rgba(var(--main-color-rgb), 0.35),
    0 8px 24px -4px rgba(var(--main-color-rgb), 0.18);
  position: relative; z-index: 2; animation: float 6s ease-in-out infinite; overflow: hidden;
  transition: box-shadow 0.5s ease;
}
.hero-image-wrap:hover {
  box-shadow:
    0 0 0 10px rgba(var(--main-color-rgb), 0.12),
    0 24px 70px -8px rgba(var(--main-color-rgb), 0.45),
    0 10px 30px -4px rgba(var(--main-color-rgb), 0.25);
}
.hero-image { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) {
  /* ── Mobil Nav Küçültme ── */
  .ws-nav {
    top: 12px;
    padding: 8px 14px;
    width: calc(100% - 28px);
  }
  .ws-nav__brand {
    font-size: 0.95rem;
    letter-spacing: -0.02em;
  }
  .menu-toggle {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  /* Nav ~60px yükseklikte bitiyor, fotoğraf ile arasına rahat boşluk */
  .ws-hero { padding-top: 80px; padding-bottom: 20px; }
  .hero-grid { display: flex; flex-direction: column; text-align: center; gap: 32px; }
  .hero-right { order: 1; justify-content: center; }
  .hero-left { order: 2; align-items: center; text-align: center; width: 100%; overflow: hidden; padding: 0 15px; box-sizing: border-box; }
  .hero-bio { margin: 0 auto 24px; font-size: 1.05rem; }
  
  /* %90 Genişlik ve Kompakt Sarma (Kesik görüntüyü engeller, dikey alanı korur) */
  .trust-bar { 
    flex-wrap: wrap; justify-content: center; 
    width: 90%; margin: 0 auto 16px; gap: 6px; padding: 0;
  }
  .trust-badge { flex: 0 1 auto; font-size: 0.8rem; padding: 6px 12px; min-width: 100px; border-radius: 8px; }
  
  .hero-grades-grid {
    grid-template-columns: repeat(4, 1fr); /* Mobilde de 4 kolon */
    width: 100%;
    gap: 5px;
    margin: 0 0 20px 0;
  }
  .hero-grade-btn {
    padding: 7px 2px;
    font-size: 0.68rem;
    gap: 0;
    border-radius: 10px;
    letter-spacing: -0.01em;
  }
  .hero-grade-btn i { display: none; } /* Mobilde ikon gizle, taşma önle */
  
  .hero-actions { 
    flex-wrap: nowrap; width: 100%; gap: 6px; padding: 0; 
    box-sizing: border-box; justify-content: center;
  }
  .btn-hero-primary, .btn-hero-secondary { 
    flex: 1; min-width: 0; padding: 12px 4px; font-size: 0.8rem; 
    white-space: nowrap; justify-content: center; gap: 4px;
    letter-spacing: -0.01em;
  }
  .btn-hero-primary i, .btn-hero-secondary i { font-size: 0.9rem; }
  
  .hero-image-wrap { max-width: 280px; }
  .ws-nav__links {
    display: flex; flex-direction: column; position: fixed;
    /* Küçük nav: top 12px + ~52px yükseklik + 6px boşluk = 70px */
    top: 70px; left: 14px; right: 14px;
    background: var(--surface); border: 1px solid var(--glass-border);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border-radius: var(--radius-md);
    padding: 12px 10px; gap: 2px; box-shadow: var(--shadow-lg);
    opacity: 0; visibility: hidden; transform: translateY(-12px); transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }
  .ws-nav.menu-open .ws-nav__links { opacity: 1; visibility: visible; transform: translateY(0); }
  .ws-nav__links li { width: 100%; border-bottom: 1px solid var(--surface-border); padding-bottom: 0; }
  .ws-nav__links li:last-child { border-bottom: none; }
  .ws-nav__links a { font-size: 0.875rem; padding: 9px 12px; width: 100%; display: block; color: var(--text-primary); font-weight: 600; border-radius: 10px; transition: background 0.2s, color 0.2s; }
  .ws-nav__links a:hover { background: var(--surface-alt); color: var(--main-color); }

  .theme-toggle { display: none; }
  .menu-toggle { display: flex; font-size: 18px; }

  /* Mobile Theme Switcher — kompakt */
  .mobile-nav-footer { display: block; margin-top: 4px; padding-top: 8px !important; }
  .theme-mode-switcher {
    display: flex; flex-direction: column; gap: 6px;
    padding: 8px 10px; background: rgba(var(--main-color-rgb, 99, 102, 241), 0.05);
    border-radius: 10px; border: 1px solid var(--surface-border);
  }
  .mode-label { font-size: 0.7rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.8px; }
  .mode-toggle-pill {
    display: flex; background: var(--surface-alt); border-radius: var(--radius-pill);
    padding: 3px; position: relative; border: 1px solid var(--surface-border);
  }
  .mode-active-indicator {
    position: absolute; top: 3px; left: 3px; width: calc(50% - 3px); height: calc(100% - 6px);
    background: var(--main-color); border-radius: var(--radius-pill);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  }
  .mode-btn {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 5px;
    padding: 6px; font-size: 0.78rem; font-weight: 600; color: var(--text-secondary);
    position: relative; z-index: 1; transition: color 0.3s;
  }
  .mode-btn.active { color: #FFF; }
  .mode-btn i { font-size: 0.9rem; }

  .decor-icon { display: none; }

  /* Mobilde isim accent barı ortala */
  .hero-name::before { margin: 0 auto 12px; width: 36px; height: 3px; }
}

.hero-image-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 6rem; color: var(--text-muted); background: var(--surface); border-radius: var(--radius-md);
}

/* Dekoratif Ikonlar Hero (Eğitim Teması) */
.decor-icon {
  position: absolute; width: 60px; height: 60px; border-radius: var(--radius-md);
  background: var(--surface); border: 1px solid var(--surface-border); box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center; font-size: 24px; z-index: 3;
}
.decor-icon.i-1 { top: 10%; right: -20px; animation: floatDly 5s ease-in-out infinite; }
.decor-icon.i-2 { bottom: 15%; left: -30px; animation: float 7s ease-in-out infinite; font-size: 30px; border-radius: 50%; }

/* ── Orta Alan (Modern Kartlar) ── */

/* SSS */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border-bottom: 1px solid var(--surface-border); }
.faq-question {
  width: 100%; padding: 24px 0; display: flex; justify-content: space-between; align-items: center;
  background: none; border: none; font-size: 1.15rem; font-weight: 600; color: var(--text-primary);
  text-align: left; cursor: pointer; transition: all var(--transition);
}
.faq-question:hover { color: var(--main-color); padding-left: 8px; background: rgba(var(--main-color), 0.02); }
.faq-arrow { 
  font-size: 0.8rem; transition: transform 0.3s; 
  background: var(--surface-alt); width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%;
  color: var(--text-primary); border: 1px solid var(--surface-border);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-bottom: 0;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1.05rem;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.35s ease,
              padding-bottom 0.35s ease;
}
.faq-item.open .faq-answer {
  max-height: 800px;
  opacity: 1;
  padding-bottom: 24px;
}
.faq-answer p { padding-bottom: 24px; }

/* Çalışma Sistemi & Hakkımda Grid */
.method-about-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
}

.working-methods-slider-container {
  position: relative;
  width: 100%;
}

.working-methods-slider-window {
  overflow: hidden; /* Dışarı taşan kartları gizle */
  width: 100%;
  padding: 25px 0; /* Gölgeler için dikey alan */
}

.working-methods-list.slider-mode {
  display: flex !important;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 24px;
  align-items: stretch;
  will-change: transform;
}

.working-methods-list.slider-mode .working-method-item {
  flex: 0 0 calc((100% - 48px) / 3); /* 100% artık butonlara takılmadan tüm genişliği kullanır */
  width: calc((100% - 48px) / 3);
  flex-shrink: 0;
}

.slider-control {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: all 0.3s;
  z-index: 20;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.slider-control.prev {
  left: -25px;
}

.slider-control.next {
  right: -25px;
}

.slider-control:hover {
  background: var(--main-gradient);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
  border-color: transparent;
}

@media (max-width: 991px) {
  .working-methods-slider-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .working-methods-slider-window {
    padding: 15px 0;
  }

  .working-methods-list.slider-mode {
    display: flex !important; /* Mobilde de slider olsun */
    gap: 20px;
  }

  .working-methods-list.slider-mode .working-method-item {
    flex: 0 0 100%; /* Mobilde her seferinde 1 kart */
    width: 100%;
    align-items: flex-start; /* Zikzak yapısını boz */
    text-align: left;
  }

  .slider-control {
    position: static; /* Mobilde bağımsız pozisyondan kurtar */
    transform: none !important;
    display: flex !important; /* Mobilde butonları göster */
    margin: 0 10px;
  }

  .working-methods-slider-container .controls-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
  }

  /* Zikzak temizliği */
  .working-method-item:nth-child(even) {
    align-items: flex-start !important;
    text-align: left !important;
  }
  .working-method-item:nth-child(even) .working-method-header {
    flex-direction: row !important;
  }

  /* Bağlantı noktalarını gizle */
  .working-method-item::after,
  .working-method-item::before {
    display: none !important;
  }
}

.working-method-header {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
}

.working-method-title {
  margin: 0 !important;
  flex: 1;
  font-size: 1.15rem;
}

.working-method-item {
  background: var(--surface-alt);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: all var(--transition);
  position: relative;
  overflow: visible;
  height: auto; /* Flex-stretch ile uyumlu olması için */
}

.working-method-desc {
  width: 100%;
  font-size: 0.95rem;
  color: var(--text-secondary);
  flex-grow: 1; /* İçeriğin kartı doldurmasını ve boyların eşitlenmesini sağlar */
}

/* Akıllı Akış Yolu (Smart Path) - Masaüstü */
@media (min-width: 992px) {
  .working-method-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 52px;
    right: -24px;
    width: 24px;
    height: 4px;
    background: var(--main-gradient);
    opacity: 0.25;
    z-index: 1;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(var(--main-color-rgb), 0.2);
  }
  .working-method-item:not(:last-child)::before {
    content: '';
    position: absolute;
    top: 49px;
    right: -16px;
    width: 8px;
    height: 8px;
    background: var(--main-color);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 15px var(--main-color);
    opacity: 0.6;
  }
}

/* ── Mobil Zig-Zag Akışı ── */
@media (max-width: 991px) {
  .working-method-item:nth-child(even) {
    align-items: flex-end;
    text-align: right;
  }
  .working-method-item:nth-child(even) .working-method-header {
    flex-direction: row-reverse;
  }

  /* Sol Bağlantı (1 -> 2) */
  .working-method-item:nth-child(odd):not(:last-child)::after {
    content: '';
    position: absolute;
    left: 51px;
    bottom: -30px;
    width: 4px;
    height: 30px;
    background: var(--main-gradient);
    opacity: 0.2;
    z-index: 1;
  }
  .working-method-item:nth-child(odd):not(:last-child)::before {
    content: '';
    position: absolute;
    left: 49px;
    bottom: -19px;
    width: 8px;
    height: 8px;
    background: var(--main-color);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 15px var(--main-color);
    opacity: 0.5;
  }

  /* Sağ Bağlantı (2 -> 3) */
  .working-method-item:nth-child(even):not(:last-child)::after {
    content: '';
    position: absolute;
    right: 51px;
    bottom: -30px;
    width: 4px;
    height: 30px;
    background: var(--main-gradient);
    opacity: 0.2;
    z-index: 1;
  }
  .working-method-item:nth-child(even):not(:last-child)::before {
    content: '';
    position: absolute;
    right: 49px;
    bottom: -19px;
    width: 8px;
    height: 8px;
    background: var(--main-color);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 15px var(--main-color);
    opacity: 0.5;
  }
}

.working-method-item:hover {
  transform: translateY(-5px);
  border-color: var(--main-color);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.working-method-marker {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--main-gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(var(--main-color-rgb), 0.2);
}

.working-method-content {
  flex: 1;
}

.working-method-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.working-method-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.system-text { font-size: 1.1rem; color: var(--text-secondary); white-space: pre-line; line-height: 1.8; }
/* about-text: tema rengine uyumlu (light'ta #fff kullanma!) */
.about-text {
  font-size: 1.1rem;
  color: var(--text-primary);
  white-space: pre-line;
  line-height: 1.8;
  /* Metnin ilk/son satırındaki line-height leading'ini dengele */
  margin-top: -0.3em;
  margin-bottom: -0.3em;
}

/* Hakkımda content-block — dengeli iç boşluk */
.about-content-block {
  padding: 40px !important;
}



/* Materyaller Listesi */
.pdf-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.pdf-card { 
  display: flex; align-items: center; gap: 16px; padding: 24px; 
  border: 1px solid var(--surface-border); border-radius: var(--radius-md); 
  background: var(--surface-alt); transition: all var(--transition); cursor: pointer;
}
.pdf-card:hover { border-color: var(--main-color); transform: translateY(-5px); box-shadow: var(--shadow-md); background: var(--surface); }
.pdf-icon { width: 50px; height: 50px; border-radius: 12px; background: rgba(59, 130, 246, 0.1); color: var(--main-color); display: flex; align-items: center; justify-content: center; font-size: 24px; }
.pdf-info { flex: 1; }
.pdf-title { font-size: 1.05rem; margin-bottom: 4px; font-weight: 700; color: var(--text-primary); }
.pdf-meta { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
.pdf-grade-badge {
  font-size: 0.7rem; font-weight: 700; color: #fff;
  background: var(--main-color);
  padding: 2px 10px; border-radius: 6px;
  text-transform: uppercase; letter-spacing: 0.02em;
}

/* ── Modern Yorumlar & Slider ── */
.reviews-header {
  display: flex; justify-content: space-between; align-items: center; 
  flex-wrap: wrap; margin-bottom: 40px; gap: 20px;
}
.reviews-slider { padding: 20px 10px 50px; overflow: visible !important; }
.reviews-2x2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 30px;
}
.reviews-footer-mobile { display: none; }

@media (max-width: 900px) {
  .reviews-header { justify-content: center; text-align: center; margin-bottom: 20px; }
  .btn-review-desktop { display: none !important; }
  .reviews-2x2-grid { grid-template-columns: 1fr; grid-template-rows: auto; gap: 16px; }
  .reviews-footer-mobile { display: flex !important; justify-content: center; margin-top: 16px; }
  .reviews-slider { padding: 12px 6px 40px; }
  .review-card-modern { padding: 20px; }
  .rc-text { font-size: 1rem; margin-bottom: 16px; }
  .rc-quotes { top: 12px; right: 16px; font-size: 2rem; }
  /* PDF grid: mobilde tam genişlik */
  .pdf-list { grid-template-columns: 1fr; gap: 12px; }
  .pdf-card { padding: 16px; gap: 12px; }
  /* content-block padding küçültme */
  .content-block { padding: 20px !important; }
  /* FAQ soru ve cevap — mobilde küçült */
  .faq-question { font-size: 0.875rem; padding: 14px 0; }
  .faq-answer { font-size: 0.875rem; line-height: 1.65; }
}

.review-card-modern {
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.review-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--main-color);
}
.rc-quotes {
  position: absolute; top: 20px; right: 30px;
  font-size: 3rem; color: var(--main-color); opacity: 0.1;
}
.rc-stars { color: #F59E0B; margin-bottom: 20px; font-size: 1rem; letter-spacing: 2px; }
.rc-text {
  font-size: 1.15rem; line-height: 1.8; color: var(--text-primary);
  margin-bottom: 30px; font-style: italic; position: relative; z-index: 2;
}
.rc-author { display: flex; align-items: center; gap: 15px; }
.rc-avatar {
  width: 45px; height: 45px; border-radius: 50%;
  background: var(--main-gradient); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem; box-shadow: var(--shadow-sm);
}
.rc-author-info { display: flex; flex-direction: column; }
.rc-name { font-weight: 700; color: var(--text-primary); font-size: 1rem; }
.rc-label { font-size: 0.85rem; color: var(--text-muted); }

/* Swiper Nav Custom */
.review-next, .review-prev {
  width: 50px; height: 50px; background: var(--surface);
  border: 1px solid var(--surface-border); border-radius: 50%;
  color: var(--main-color); box-shadow: var(--shadow-md); transition: all 0.3s;
}
.review-next:after, .review-prev:after { font-size: 1.2rem; font-weight: 800; }
.review-next:hover, .review-prev:hover { background: var(--main-color); color: white; transform: scale(1.1); }
.review-next { right: -25px; }
.review-prev { left: -25px; }
@media (max-width: 1200px) {
  .review-next { right: 0; }
  .review-prev { left: 0; }
}
.review-pagination .swiper-pagination-bullet-active { background: var(--main-color); width: 24px; border-radius: 4px; }

/* Glow Button */
.btn-glow {
  background: var(--main-gradient); color: white; border: none; padding: 14px 28px;
  border-radius: var(--radius-pill); font-weight: 700; display: flex; align-items: center; gap: 10px;
  box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3); transition: all 0.4s; position: relative; overflow: hidden;
}
.btn-glow:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(99, 102, 241, 0.4); }
.btn-glow i { font-size: 1.2rem; }
.btn-glow::after {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: rotate(45deg); transition: 0.6s;
}
.btn-glow:hover::after { left: 100%; }

/* ── PDF Filter Tabs ── */
.pdf-filter-tabs {
  display: flex; gap: 10px; margin-bottom: 40px; padding: 8px;
  background: var(--surface-alt); border: 1px solid var(--surface-border);
  border-radius: var(--radius-pill); overflow-x: auto; 
  scrollbar-width: none; -ms-overflow-style: none;
  backdrop-filter: blur(10px);
}
.pdf-filter-tabs::-webkit-scrollbar { display: none; }

.pdf-filter-btn {
  flex: 1; min-width: max-content; padding: 12px 24px; border: none; background: none;
  border-radius: var(--radius-pill); font-weight: 700; font-size: 1rem;
  color: var(--text-secondary); cursor: pointer; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  white-space: nowrap;
}
.pdf-filter-btn:hover { color: var(--text-primary); background: rgba(255,255,255,0.15); transform: translateY(-1px); }
.pdf-filter-btn.active {
  background: var(--main-color); color: #FFF;
  box-shadow: 0 8px 20px -4px rgba(0, 0, 0, 0.2);
}
[data-theme="light"] .pdf-filter-btn.active { box-shadow: 0 8px 25px -5px var(--main-color); }

.pdf-card { transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }

/* ── İletişim Formu (Kapsül Tabs & Float Form) ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-info { padding: 0; }
.contact-info h3 { font-size: clamp(2rem, 3vw, 2.5rem); margin-bottom: 16px; letter-spacing: -0.02em; }
.contact-info p { color: var(--text-secondary); margin-bottom: 32px; font-size: 1.1rem; line-height: 1.7; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.contact-method { 
  display: flex; align-items: center; gap: 16px; padding: 20px; 
  background: var(--surface); border: 1px solid var(--surface-border); 
  border-radius: var(--radius-md); font-weight: 600; font-size: 1.05rem; 
  box-shadow: var(--shadow-sm); transition: all var(--transition);
  text-decoration: none; color: var(--text-primary);
}
.contact-method:hover { transform: translateX(10px); border-color: var(--main-color); background: var(--surface-alt); color: var(--main-color); }
.contact-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: rgba(99, 102, 241, 0.1); color: var(--secondary-color); border-radius: 50%; font-size: 1.2rem; }

.contact-form-wrap { padding: 40px; background: var(--surface); border: 1px solid var(--surface-border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); position: relative; }
.contact-form-wrap::before { content: ''; position: absolute; inset: -1px; border-radius: var(--radius-lg); background: var(--main-gradient); z-index: -1; opacity: 0.2; }

/* ── Form Tabs ── */
.contact-tabs { display: flex; gap: 8px; margin-bottom: 32px; background: var(--surface-alt); padding: 6px; border-radius: var(--radius-md); }
.contact-tab-btn {
  flex: 1; padding: 12px; border: none; background: none; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.95rem; color: var(--text-secondary); cursor: pointer; transition: all 0.3s;
}
.contact-tab-btn:hover { color: var(--text-primary); background: rgba(255,255,255,0.1); }
.contact-tab-btn.active { 
  background: var(--main-color); color: #FFF; box-shadow: 0 4px 12px rgba(var(--main-color), 0.3);
}
[data-theme="light"] .contact-tab-btn.active { box-shadow: 0 4px 15px -3px var(--main-color); }

.contact-form { display: none; animation: fadeInUp 0.4s ease; }
.contact-form.active { display: block; }

.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 8px; color: var(--text-primary); }
.form-input { width: 100%; padding: 16px; background: var(--bg-primary); border: 1px solid var(--surface-border); border-radius: var(--radius-sm); color: var(--text-primary); font-family: var(--font-body); font-size: 1rem; outline: none; transition: all var(--transition); }
.form-input:focus { border-color: var(--secondary-color); box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1); background: var(--surface); }
textarea.form-input { min-height: 140px; resize: vertical; }
.form-success { display: none; text-align: center; padding: 40px 16px; }

/* ── Footer ── */
.ws-footer { padding: 40px 24px; text-align: center; color: var(--text-muted); font-size: 0.95rem; border-top: 1px solid var(--surface-border); margin-top: 60px; padding-bottom: 120px; }
.ws-footer a { color: var(--text-primary); font-weight: 600; }

/* ── Sabit Butonlar (User Custom) ── */

.sabit-butonlar {
    position: fixed;
    bottom: 25px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end; /* Yazı ve butonu sağa hizalar */
}

/* Butonun Kendisi */
.btn-iletisim {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    position: relative; /* Yazıyı buna göre konumlandırmak için */
    text-decoration: none; /* Alt çizgiyi kaldırır */
    color: #fff;
    border: none;
    cursor: pointer;
}

.btn-iletisim:hover {
    transform: scale(1.1);
}

.btn-iletisim svg {
    width: 26px;
    height: 26px;
}

/* Buton Yanındaki Yazılar (Etiketler) */
.btn-yazi {
    position: absolute;
    right: 64px; /* Butonun solunda durması için */
    background-color: #333; /* Siyah arka plan */
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap; /* Yazı tek satır kalsın */
    box-shadow: 1px 1px 10px rgba(0,0,0,0.2);
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease; /* Kaybolma efekti hızı */
    font-family: var(--font-heading);
    font-weight: 500;
}

/* Konuşma balonu gibi küçük ok ekler */
.btn-yazi::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #333;
}

/* JavaScript ile eklenecek 'gizle-yazilar' sınıfı */
.gizle-yazilar .btn-yazi {
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px); /* Kaybolurken sağa hafif kaysın */
}

/* Buton Renkleri */
.btn-tel { background-color: #00a8ff; } 
.btn-wp { background-color: #25d366; } 
.btn-insta { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }

.back-to-top {
  position: fixed; left: 24px; bottom: 25px; z-index: 999;
}

/* ── Animasyonlar ── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0% { transform: translateY(0); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0); } }
@keyframes floatDly { 0% { transform: translateY(-10px); } 50% { transform: translateY(10px); } 100% { transform: translateY(-10px); } }

/* İsim shimmer: gradient soldan sağa geziniyor */
@keyframes nameShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* Review form & Admin panel styles */
.review-page { min-height: 100vh; background: var(--bg-primary); display: flex; align-items: center; justify-content: center; padding: 24px; }
.review-page__card { width: 100%; max-width: 500px; padding: 40px; background: var(--surface); border: 1px solid var(--surface-border); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.review-page__avatar-placeholder { width: 80px; height: 80px; border-radius: 50%; background: var(--surface-alt); display: flex; align-items: center; border: 1px solid var(--surface-border); justify-content: center; font-size: 2rem; margin: 0 auto 24px; }
.star-rating { display: flex; justify-content: center; gap: 8px; margin: 24px 0; flex-direction: row-reverse; }
.star-rating input { display: none; }
.star-rating label { font-size: 2.5rem; cursor: pointer; color: var(--surface-border); transition: color var(--transition); }
.star-rating label:hover, .star-rating label:hover ~ label, .star-rating input:checked ~ label { color: #F59E0B; }
.unpublished-notice { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.panel-published-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; border-radius: 100px; font-size: 0.85rem; font-weight: 700; }
.panel-published-badge.on { background: rgba(16,185,129,0.15); color: #059669; }
.panel-published-badge.off { background: rgba(239,68,68,0.12); color: #dc2626; }
.color-preview-box { width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--surface-border); flex-shrink: 0; }
.font-option-card { padding: 18px 20px; border-radius: var(--radius-sm); border: 1px solid var(--surface-border); cursor: pointer; background: var(--surface); }
.font-option-card.selected { border-color: var(--text-primary); }
.stat-number { font-size: 2.4rem; font-weight: 800; }
.review-pending-card { display: flex; gap: 16px; padding: 20px; border-radius: var(--radius-sm); border: 1px solid var(--surface-border); background: var(--surface); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--main-gradient); padding: 10px 20px; border-radius: 100px;
  font-size: 0.95rem; font-weight: 700; color: #fff;
  border: 2px solid rgba(255,255,255,0.3); margin-bottom: 24px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15), 0 0 15px rgba(var(--main-color-rgb), 0.3);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.hero-badge svg { width: 18px; height: 18px; color: #fff; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2)); }

/* Review Modal */
.review-modal-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(8px);
  z-index: 100000; display: none; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; transition: opacity 0.3s ease;
}
.review-modal-overlay.active { display: flex; opacity: 1; }
.review-modal {
  background: var(--surface); border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg); width: 100%; max-width: 500px;
  padding: 40px; position: relative; box-shadow: var(--shadow-xl);
  transform: translateY(20px); transition: transform 0.3s ease;
}
.review-modal-overlay.active .review-modal { transform: translateY(0); }
.review-modal__close {
  position: absolute; top: 20px; right: 20px; font-size: 1.5rem;
  color: var(--text-muted); cursor: pointer; transition: color 0.2s;
}
.review-modal__close:hover { color: var(--text-primary); }
.review-modal__header { text-align: center; margin-bottom: 30px; display: flex; flex-direction: column; align-items: center; }
.review-modal__avatar {
  width: 120px; height: 120px; border-radius: 50%; object-fit: cover;
  border: 4px solid var(--main-color); margin: 0 auto 15px; box-shadow: var(--shadow-md);
}
.review-modal__title { font-size: 1.5rem; margin-bottom: 5px; }
.review-modal__subtitle { color: var(--text-secondary); font-size: 0.95rem; }

.star-rating { display: flex; flex-direction: row-reverse; justify-content: center; gap: 8px; margin: 20px 0; }
.star-rating input { display: none; }
.star-rating label { font-size: 2rem; color: #ddd; cursor: pointer; transition: transform 0.2s, color 0.2s; }
.star-rating label:hover, .star-rating label:hover ~ label,
.star-rating input:checked ~ label { color: #f59e0b; transform: scale(1.1); }

.review-modal .form-group { margin-bottom: 20px; }
.review-modal .form-label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.9rem; color: var(--text-secondary); }
.review-modal .form-input {
  width: 100%; padding: 12px 16px; border-radius: 12px;
  background: var(--bg-secondary); border: 1px solid var(--surface-border);
  color: var(--text-primary); font-size: 1rem; transition: border-color 0.2s;
}
.review-modal .form-input:focus { border-color: var(--main-color); outline: none; }
.review-modal .btn-submit {
  width: 100%; padding: 14px; border-radius: 12px;
  background: var(--main-gradient); color: #fff; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 4px 15px rgba(var(--main-color-rgb), 0.3); transition: transform 0.2s;
}
.review-modal .btn-submit:hover { transform: translateY(-2px); }
.request-badge { display: inline-flex; padding: 4px 10px; border-radius: 100px; font-size: 0.75rem; font-weight: 700; }
.request-badge.new { background: rgba(239,68,68,0.12); color: #dc2626; }
.request-badge.read { background: rgba(251,191,36,0.15); color: #d97706; }
.request-badge.done { background: rgba(16,185,129,0.12); color: #059669; }
