:root {
  --bg: #fffaff;
  --bg-strong: #f7effa;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-strong: #ffffff;
  --text: #182033;
  --muted: #5d6784;
  --primary: #7a5cff;
  --primary-2: #f5a5c7;
  --accent: #a889ff;
  --warning: #ffb347;
  --success: #22b573;
  --border: rgba(24, 32, 51, 0.1);
  --shadow: 0 20px 50px rgba(34, 46, 82, 0.12);
  --shadow-soft: 0 10px 24px rgba(34, 46, 82, 0.08);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1180px;
}

[data-theme="dark"] {
  --bg: #0c1020;
  --bg-strong: #131933;
  --surface: rgba(18, 24, 48, 0.82);
  --surface-strong: #151d38;
  --text: #f6f7fb;
  --muted: #bbc2d6;
  --primary: #8c82ff;
  --primary-2: #ff79b8;
  --accent: #4bd6cb;
  --warning: #ffc875;
  --success: #4bd28e;
  --border: rgba(255, 255, 255, 0.11);
  --shadow: 0 26px 64px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background:
    radial-gradient(circle at 0% 0%, rgba(109, 94, 252, 0.16), transparent 28%),
    radial-gradient(circle at 100% 0%, rgba(248, 87, 166, 0.14), transparent 24%),
    radial-gradient(circle at 80% 70%, rgba(15, 183, 167, 0.12), transparent 22%),
    var(--bg);
}
a { color: inherit; text-decoration: none; }
img, canvas, svg { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container { width: min(100% - 32px, var(--container)); margin: 0 auto; }
.skip-link {
  position: absolute; left: -999px; top: 10px; z-index: 999;
  background: var(--primary); color: white; padding: 10px 14px; border-radius: 10px;
}
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.navbar {
  min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.logo { display: flex; align-items: center; gap: 14px; font-weight: 800; }
.logo-badge {
  width: 46px; height: 46px; border-radius: 16px; display: grid; place-items: center;
  color: white; font-size: 1.25rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 14px 32px rgba(109, 94, 252, 0.25);
}
.logo span:last-child { max-width: 240px; line-height: 1.15; letter-spacing: -0.03em; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 10px 14px; border-radius: 999px; color: var(--muted); font-weight: 700; font-size: 0.94rem;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--surface-strong);
  color: var(--primary);
  box-shadow: var(--shadow-soft);
}
.nav-actions { display: flex; align-items: center; gap: 8px; }
.icon-button, .menu-toggle {
  width: 42px; height: 42px; border-radius: 14px; border: 1px solid var(--border);
  background: var(--surface-strong); color: var(--text); display: grid; place-items: center;
  cursor: pointer; box-shadow: var(--shadow-soft);
}
.menu-toggle { display: none; font-size: 1.2rem; }

.page-hero, .hero { padding: 88px 0 56px; position: relative; overflow: clip; }
.hero::after, .page-hero::after {
  content: ""; position: absolute; inset: auto -8% -60px auto; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(248,87,166,0.18), transparent 70%);
  pointer-events: none;
}
.hero-grid, .split-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 999px;
  border: 1px solid var(--border); background: var(--surface-strong);
  color: var(--primary); font-weight: 800; font-size: 0.93rem;
  box-shadow: var(--shadow-soft);
}
h1, h2, h3, h4 {
  letter-spacing: -0.04em; line-height: 1.1; margin: 0 0 16px;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.3rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.38rem; }
h4 { font-size: 1.08rem; }
p { margin: 0 0 15px; }
.lead {
  font-size: clamp(1.06rem, 2vw, 1.24rem); color: var(--muted); max-width: 760px;
}
.hero-panel, .glass-card, .card, .info-card, .chart-card, .timeline-card, .faq, .stat-card, .list-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.hero-panel { padding: 28px; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 18px; border-radius: 999px; font-weight: 800; border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary {
  color: white; background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 18px 34px rgba(109, 94, 252, 0.28);
}
.button.secondary {
  background: var(--surface-strong); color: var(--primary); border-color: var(--border);
}
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.badge {
  padding: 8px 12px; border-radius: 999px; background: rgba(109, 94, 252, 0.1);
  color: var(--primary); font-weight: 700; font-size: 0.92rem;
}
.hero-stat-stack { display: grid; gap: 14px; margin-top: 22px; }
.mega-stat {
  padding: 28px; border-radius: var(--radius-xl); color: white;
  background: linear-gradient(160deg, var(--primary), var(--primary-2));
  box-shadow: 0 22px 50px rgba(109, 94, 252, 0.34);
}
.mega-stat .value { display: block; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; line-height: 1; margin-bottom: 8px; }
.mini-grid, .stats-grid, .info-grid, .card-grid, .icon-grid, .support-grid {
  display: grid; gap: 18px;
}
.mini-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.stats-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.info-grid.three, .card-grid.three, .icon-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.info-grid.two, .card-grid.two, .split-equal { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.support-grid { grid-template-columns: 1.1fr 0.9fr; align-items: start; }
.stat-card, .card, .info-card, .list-card, .chart-card, .timeline-card { padding: 24px; }
.stat-card .number { font-size: 2rem; font-weight: 900; color: var(--primary); display: block; margin-bottom: 6px; }
.kicker { color: var(--primary); font-size: 0.9rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.section { padding: 26px 0 78px; }
.section.alt { background: linear-gradient(180deg, transparent, rgba(109, 94, 252, 0.035)); }
.section-header { margin-bottom: 28px; }
.section-header.center { text-align: center; max-width: 840px; margin-inline: auto; margin-bottom: 34px; }
.card-icon {
  width: 54px; height: 54px; display: grid; place-items: center; border-radius: 16px;
  background: linear-gradient(135deg, rgba(109,94,252,0.13), rgba(248,87,166,0.14));
  font-size: 1.4rem; margin-bottom: 16px;
}
.card p:last-child, .info-card p:last-child, .stat-card p:last-child, .chart-card p:last-child { margin-bottom: 0; }
.highlight {
  color: var(--primary); font-weight: 800;
}
.note {
  font-size: 0.92rem; color: var(--muted); padding: 12px 14px;
  border-radius: var(--radius-md); background: color-mix(in srgb, var(--surface-strong) 80%, transparent);
  border: 1px dashed var(--border);
}

.chart-card canvas {
  width: 100%; height: 290px; background: linear-gradient(180deg, rgba(109, 94, 252, 0.04), transparent);
  border-radius: 18px; margin-bottom: 14px;
}
.chart-meta {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px;
}
.legend-chip {
  display: inline-flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--muted);
}
.legend-chip i {
  width: 12px; height: 12px; border-radius: 999px; display: inline-block;
}
.progress-list { display: grid; gap: 16px; }
.progress-item strong { display: flex; justify-content: space-between; gap: 10px; margin-bottom: 8px; }
.progress-track {
  height: 12px; border-radius: 999px; background: rgba(109, 94, 252, 0.12); overflow: hidden;
}
.progress-fill {
  height: 100%; border-radius: inherit;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
}
.timeline { display: grid; gap: 14px; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 16px; top: 6px; bottom: 6px; width: 2px;
  background: linear-gradient(var(--primary), rgba(109, 94, 252, 0.1));
}
.timeline-item {
  position: relative; padding-left: 48px; min-height: 44px;
}
.timeline-item::before {
  content: ""; position: absolute; left: 8px; top: 8px; width: 18px; height: 18px;
  border-radius: 50%; background: var(--surface-strong); border: 5px solid var(--primary);
  box-shadow: 0 0 0 6px rgba(109, 94, 252, 0.12);
}
.timeline-item span { display: inline-block; font-size: 0.9rem; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.metric-bar {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
}
.metric-bar:last-child { border-bottom: 0; }
.metric-bar .bar {
  flex: 1; height: 10px; border-radius: 999px; background: rgba(15, 183, 167, 0.14); overflow: hidden;
}
.metric-bar .bar > span {
  display: block; height: 100%; border-radius: inherit; background: linear-gradient(135deg, var(--accent), var(--primary));
}
.metric-bar .label { width: 210px; max-width: 50%; font-weight: 700; }
.metric-bar .value { font-weight: 800; color: var(--primary); }
.quote-card {
  padding: 24px; border-left: 6px solid var(--primary); border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(109,94,252,0.08), rgba(248,87,166,0.06));
}
.quote-card p { font-size: 1.03rem; }
.inline-list, .check-list, .resource-list, .org-list, .faq-list { list-style: none; padding: 0; margin: 0; }
.check-list { display: grid; gap: 12px; }
.check-list li, .resource-list li, .org-list li {
  display: flex; gap: 12px; align-items: flex-start;
}
.check-list li::before, .resource-list li::before, .org-list li::before {
  content: "✓"; flex: none; width: 24px; height: 24px; display: grid; place-items: center;
  color: white; background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: 999px; font-size: 0.85rem;
  margin-top: 2px;
}
.resource-list a { color: var(--primary); font-weight: 700; }
.resource-list small { color: var(--muted); display: block; }
.pillars { display: grid; gap: 14px; }
.pillar {
  padding: 18px; border-radius: var(--radius-md); background: var(--surface-strong); border: 1px solid var(--border);
}
.pillar strong { display: block; margin-bottom: 6px; }
.faq-list { display: grid; gap: 14px; }
.faq { overflow: hidden; }
.faq button {
  width: 100%; border: 0; background: transparent; color: inherit; text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 22px; font-weight: 800;
}
.faq .answer {
  display: none; padding: 0 22px 22px; color: var(--muted);
}
.faq.open .answer { display: block; }
.faq-sign {
  width: 30px; height: 30px; border-radius: 999px; display: grid; place-items: center; background: rgba(109, 94, 252, 0.12); color: var(--primary);
}
.callout-banner {
  padding: 24px 26px; border-radius: var(--radius-xl); color: white;
  background: linear-gradient(135deg, #0fb7a7, #6d5efc);
  box-shadow: 0 22px 44px rgba(15, 183, 167, 0.24);
}
.two-column-list { columns: 2; column-gap: 30px; }
.two-column-list li { break-inside: avoid; margin-bottom: 12px; }
.notice-box {
  padding: 18px; border-radius: var(--radius-md); border: 1px solid rgba(255, 179, 71, 0.32);
  background: rgba(255, 179, 71, 0.12);
}
.stat-line {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
}
.stat-line strong {
  font-size: 1.6rem; color: var(--primary);
}
.site-footer {
  padding: 22px 0 40px; border-top: 1px solid var(--border); margin-top: 10px;
}
.footer-grid {
  display: flex; justify-content: space-between; gap: 20px; align-items: flex-start;
}
.footer-links {
  display: flex; flex-wrap: wrap; gap: 14px;
}
.notice { color: var(--muted); max-width: 600px; }
.reveal {
  opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid, .split-grid, .support-grid, .info-grid.two, .card-grid.two, .split-equal { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .info-grid.three, .card-grid.three, .icon-grid.three { grid-template-columns: 1fr; }
  .footer-grid { flex-direction: column; }
}

@media (max-width: 980px) {
  .menu-toggle { display: grid; }
  .nav-links {
    position: absolute; left: 16px; right: 16px; top: calc(100% + 10px);
    display: none; flex-direction: column; align-items: stretch; gap: 8px;
    background: var(--surface-strong); border: 1px solid var(--border); border-radius: 18px; padding: 12px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 14px; }
  .navbar { position: relative; }
}

@media (max-width: 700px) {
  .mini-grid, .stats-grid { grid-template-columns: 1fr; }
  .metric-bar { flex-direction: column; align-items: flex-start; }
  .metric-bar .label { width: auto; max-width: none; }
  .two-column-list { columns: 1; }
  h1 { font-size: clamp(2.3rem, 10vw, 3.6rem); }
  h2 { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .hero, .page-hero { padding-top: 70px; }
}


.hero-visual, .section-visual {
  padding: 14px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(122,92,255,0.08), rgba(245,165,199,0.08));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.hero-visual img, .section-visual img {
  width: 100%;
  border-radius: calc(var(--radius-xl) - 8px);
}
.design-note {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(122,92,255,0.1), rgba(245,165,199,0.12));
  border: 1px solid var(--border);
}
.design-note p:last-child { margin-bottom: 0; }
.visual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.visual-card {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.visual-card img {
  margin-bottom: 12px;
  border-radius: 18px;
  background: white;
}
.inline-image {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
@media (max-width: 980px) {
  .visual-grid { grid-template-columns: 1fr; }
}

.hero-showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}
.hero-photo-large {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.hero-photo-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-overlay {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 10px;
}
.overlay-pill {
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  color: white;
  font-size: 0.92rem;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(122,92,255,0.9), rgba(245,165,199,0.9));
  backdrop-filter: blur(8px);
}
.overlay-box {
  padding: 16px 18px;
  border-radius: 20px;
  color: white;
  background: linear-gradient(135deg, rgba(24, 32, 51, 0.76), rgba(122,92,255,0.74));
  backdrop-filter: blur(8px);
}
.overlay-box strong {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.photo-stack {
  display: grid;
  gap: 18px;
}
.photo-mini-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.photo-mini-card img {
  width: 100%;
  height: 100%;
  min-height: 128px;
  object-fit: cover;
  border-radius: 18px;
}
.photo-mini-card h3 { margin-bottom: 8px; }
.feature-banner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.feature-banner .card { height: 100%; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.image-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.image-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.image-card .content {
  padding: 20px;
}
.kaynak-link-list a,
.resource-list a,
.link-title {
  font-weight: 800;
  color: var(--primary);
}
.speech-box {
  padding: 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(122,92,255,0.08), rgba(245,165,199,0.12));
  border: 1px solid var(--border);
}
@media (max-width: 980px) {
  .hero-showcase,
  .poster-head,
  .feature-banner,
  .gallery-grid,
  .poster-grid { grid-template-columns: 1fr; }
  .photo-mini-card { grid-template-columns: 1fr; }
}
.help-form-section {
  max-width: 850px;
  margin: 40px auto;
  padding: 35px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
}

.help-form-section h1,
.help-form-section h2 {
  color: #8e245f;
  text-align: center;
  margin-bottom: 15px;
}

.help-form-section p {
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.6;
}

.help-form {
  display: grid;
  gap: 13px;
}

.help-form label {
  font-weight: bold;
  color: #333;
}

.help-form input,
.help-form select,
.help-form textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #d8a3c4;
  border-radius: 10px;
  font-size: 15px;
}

.help-form input:focus,
.help-form select:focus,
.help-form textarea:focus {
  outline: none;
  border-color: #8e245f;
}

.help-form button {
  margin-top: 10px;
  padding: 14px;
  background: #8e245f;
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-size: 16px;
}

.help-form button:hover {
  background: #6f1b49;
}

#formMessage {
  margin-top: 18px;
  text-align: center;
  font-weight: bold;
}
.requests-section {
  max-width: 1000px;
  margin: 40px auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
}

.requests-section h1 {
  text-align: center;
  color: #8e245f;
  margin-bottom: 15px;
}

.requests-section > p {
  text-align: center;
  margin-bottom: 30px;
}

.requests-list {
  display: grid;
  gap: 20px;
}

.request-card {
  background: #f8e5f0;
  padding: 22px;
  border-radius: 16px;
  border-left: 6px solid #8e245f;
}

.request-card h3 {
  color: #8e245f;
  margin-bottom: 12px;
}

.request-card p {
  margin: 8px 0;
  line-height: 1.5;
}.filter-box {
  display: flex;
  gap: 15px;
  margin: 25px 0 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-box input,
.filter-box select {
  padding: 12px;
  border: 2px solid #d8a3c4;
  border-radius: 12px;
  font-size: 15px;
  min-width: 230px;
}

.request-card-header {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.request-badge {
  background: #8e245f;
  color: white;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 14px;
}

.help-button {
  margin-top: 15px;
  padding: 12px 18px;
  background: #8e245f;
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-size: 15px;
}

.help-button:hover {
  background: #6f1b49;
}

.contact-info {
  margin-top: 15px;
  padding: 15px;
  background: white;
  border-radius: 12px;
  border: 2px dashed #d8a3c4;
}

.hidden {
  display: none;
}
.status-badge {
  background: #f2c94c;
  color: #333;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: bold;
}

.complete-button {
  margin-top: 15px;
  margin-left: 8px;
  padding: 12px 18px;
  background: #2f855a;
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-size: 15px;
}

.complete-button:hover {
  background: #276749;
}
.helper-form {
  margin-top: 15px;
  padding: 18px;
  background: #fff;
  border-radius: 14px;
  border: 2px solid #d8a3c4;
  display: grid;
  gap: 10px;
}

.helper-form h4 {
  color: #8e245f;
  margin-bottom: 5px;
}

.helper-form input,
.helper-form textarea {
  width: 100%;
  padding: 11px;
  border: 2px solid #d8a3c4;
  border-radius: 10px;
  font-size: 15px;
}

.save-helper-button {
  padding: 12px;
  background: #2f855a;
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
}

.save-helper-button:hover {
  background: #276749;
}

.helper-info {
  margin-top: 15px;
  padding: 15px;
  background: #e8f5e9;
  border-left: 6px solid #2f855a;
  border-radius: 12px;
}

.status-badge {
  background: #f2c94c;
  color: #333;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: bold;
}

.hidden {
  display: none;
}.admin-page {
  padding: 40px 20px;
}

.admin-login-section,
.admin-panel-section {
  max-width: 1000px;
  margin: 40px auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
}

.admin-login-section {
  max-width: 500px;
  text-align: center;
}

.admin-login-section h1,
.admin-panel-section h1 {
  color: #8e245f;
}

.admin-login-section input,
.admin-panel-section select {
  width: 100%;
  padding: 12px;
  border: 2px solid #d8a3c4;
  border-radius: 10px;
  margin: 15px 0;
}

.admin-login-section button,
.admin-buttons button {
  padding: 10px 15px;
  background: #8e245f;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.admin-request-card {
  background: #f8e5f0;
  padding: 20px;
  border-radius: 15px;
  margin-top: 20px;
  border-left: 6px solid #8e245f;
}

.admin-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.hidden {
  display: none;
}
#deleteCompletedButton {
  width: 100%;
  padding: 12px;
  background: #b91c1c;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-bottom: 20px;
  font-size: 15px;
}

#deleteCompletedButton:hover {
  background: #7f1d1d;
}
.auth-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.auth-card {
  max-width: 420px;
  width: 100%;
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.auth-card h1 {
  color: #8e245f;
  margin-bottom: 20px;
}

.auth-card form {
  display: grid;
  gap: 12px;
}

.auth-card input {
  padding: 12px;
  border: 2px solid #d8a3c4;
  border-radius: 10px;
  font-size: 15px;
}

.auth-card button {
  padding: 12px;
  background: #8e245f;
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
}

.auth-card button:hover {
  background: #6f1b49;
}
.back-home-link {
  display: inline-block;
  margin-top: 18px;
  color: #8e245f;
  font-weight: bold;
  text-decoration: none;
}

.back-home-link:hover {
  text-decoration: underline;
}
/* Giriş kontrolü */
.hidden {
  display: none !important;
}

/* Giriş yapmayan kullanıcı uyarısı */
.login-warning {
  max-width: 720px;
  margin: 50px auto;
  padding: 32px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-left: 6px solid #8e245f;
}

.login-warning h2 {
  color: #8e245f;
  margin-bottom: 15px;
}

.login-warning p {
  margin-bottom: 22px;
  color: #333;
  line-height: 1.6;
}

.login-warning-button {
  display: inline-block;
  padding: 12px 20px;
  background: #8e245f;
  color: white;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  margin: 8px;
}

.login-warning-button:hover {
  background: #6f1b49;
}

.login-warning-link {
  display: inline-block;
  margin: 8px;
  color: #8e245f;
  font-weight: bold;
  text-decoration: none;
}

.login-warning-link:hover {
  text-decoration: underline;
}

/* Giriş / kayıt açıklama yazısı */
.auth-info {
  margin-bottom: 20px;
  color: #555;
  line-height: 1.5;
}

/* Admin panel filtre alanı */
.admin-filter-box {
  display: grid;
  gap: 12px;
  margin-bottom: 25px;
}

.admin-filter-box select {
  width: 100%;
  padding: 12px;
  border: 2px solid #d8a3c4;
  border-radius: 10px;
  font-size: 15px;
}

/* Admin panel butonları */
.admin-buttons button:nth-child(1) {
  background: #9b6b1d;
}

.admin-buttons button:nth-child(2) {
  background: #2b6cb0;
}

.admin-buttons button:nth-child(3) {
  background: #2f855a;
}

.admin-buttons button:hover {
  opacity: 0.85;
}

/* Admin panel liste alanı */
.admin-requests-list {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}

/* Mobil uyum */
@media (max-width: 700px) {
  .login-warning {
    margin: 30px 16px;
    padding: 24px;
  }

  .auth-card {
    margin: 0 16px;
  }

  .admin-page {
    padding: 25px 14px;
  }

  .admin-buttons {
    flex-direction: column;
  }

  .admin-buttons button {
    width: 100%;
  }

  #deleteCompletedButton {
    width: 100%;
  }
}
.logout-button {
  padding: 10px 14px;
  border-radius: 999px;
  border: none;
  background: #8e245f;
  color: white;
  font-weight: 700;
  cursor: pointer;
}

.logout-button:hover {
  background: #6f1b49;
}
/* Üst menüde sadece logo + giriş/kayıt + tema kalsın */
.site-header .navbar {
  position: relative;
}

/* Sol hamburger alanı */
.side-menu-wrapper {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 1000;
}

/* Hamburger butonu her zaman görünsün */
.side-menu-wrapper .menu-toggle {
  display: grid !important;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface-strong);
  color: var(--text);
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  font-size: 1.25rem;
}

/* Normal nav-links üstte görünmesin, sol panel olsun */
.side-menu-wrapper .nav-links.side-menu {
  position: fixed !important;
  left: 18px !important;
  top: 74px !important;
  right: auto !important;

  width: 300px;
  padding: 14px;
  border-radius: 20px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);

  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 8px;

  opacity: 0;
  pointer-events: none;
  transform: translateX(-18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

/* İmleç hamburgerin üstüne gelince panel açılsın */
.side-menu-wrapper:hover .nav-links.side-menu,
.side-menu-wrapper:focus-within .nav-links.side-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

/* Sol panel linkleri */
.side-menu-wrapper .nav-links.side-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.94rem;
  box-shadow: none;
}

.side-menu-wrapper .nav-links.side-menu a:hover,
.side-menu-wrapper .nav-links.side-menu a.active {
  background: rgba(122, 92, 255, 0.1);
  color: var(--primary);
}

/* Logo hamburgerin altında kalmasın */
.logo {
  margin-left: 58px;
}

/* Sağ üstte sadece giriş, kayıt, tema */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.auth-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.94rem;
}

.auth-link:hover {
  background: var(--surface-strong);
  color: var(--primary);
  box-shadow: var(--shadow-soft);
}

/* Admin linki varsayılan gizli */
.hidden {
  display: none !important;
}

/* Çıkış butonu için */
.logout-button {
  padding: 10px 14px;
  border-radius: 999px;
  border: none;
  background: #8e245f;
  color: white;
  font-weight: 800;
  cursor: pointer;
}

.logout-button:hover {
  background: #6f1b49;
}

/* Eski mobil menü kurallarını ez */
@media (max-width: 980px) {
  .side-menu-wrapper {
    left: 12px;
    top: 14px;
  }

  .side-menu-wrapper .nav-links.side-menu {
    left: 12px !important;
    top: 66px !important;
    width: calc(100vw - 24px);
  }

  .logo {
    margin-left: 54px;
  }

  .nav-actions {
    gap: 6px;
  }

  .auth-link {
    padding: 8px 10px;
    font-size: 0.85rem;
  }
}
/* ============================= */
/* SON DÜZENLEME: SOL HAMBURGER + ÜST GİRİŞ/KAYIT */
/* ============================= */

.hidden {
  display: none !important;
}

/* Header düzeni */
.site-header .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  min-height: 78px;
}

/* Sol hamburger alanı */
.side-menu-wrapper {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 1000;
}

/* Hamburger butonu */
.side-menu-wrapper .menu-toggle {
  display: grid !important;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface-strong);
  color: var(--text);
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  font-size: 1.25rem;
}

/* Sol açılır panel */
.side-menu-wrapper .nav-links.side-menu {
  position: fixed !important;
  left: 18px !important;
  top: 74px !important;
  right: auto !important;

  width: 300px;
  padding: 14px;
  border-radius: 20px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);

  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 8px;

  opacity: 0;
  pointer-events: none;
  transform: translateX(-18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

/* İmleç üstüne gelince panel açılsın */
.side-menu-wrapper:hover .nav-links.side-menu,
.side-menu-wrapper:focus-within .nav-links.side-menu,
.side-menu-wrapper .nav-links.side-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

/* Sol panel linkleri */
.side-menu-wrapper .nav-links.side-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.94rem;
  box-shadow: none;
  white-space: normal;
}

.side-menu-wrapper .nav-links.side-menu a:hover,
.side-menu-wrapper .nav-links.side-menu a.active {
  background: rgba(122, 92, 255, 0.1);
  color: var(--primary);
}

/* Logo hamburgerin yanına gelsin */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 72px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.05;
}

.logo span:last-child {
  max-width: 240px;
  font-size: 1.05rem;
  line-height: 1.1;
}

/* Sağ üst: Giriş / Kayıt / Tema / Çıkış */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.auth-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.94rem;
}

.auth-link:hover {
  background: var(--surface-strong);
  color: var(--primary);
  box-shadow: var(--shadow-soft);
}

/* Çıkış butonu */
.logout-button {
  padding: 10px 14px;
  border-radius: 999px;
  border: none;
  background: #8e245f;
  color: white;
  font-weight: 800;
  cursor: pointer;
}

.logout-button:hover {
  background: #6f1b49;
}

/* Giriş / kayıt sayfası küçük logo */
.auth-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #8e245f;
  font-weight: 800;
}

.auth-logo .logo-badge {
  width: 42px;
  height: 42px;
  border-radius: 14px;
}

/* Sertifika bilgi notu */
.certificate-note {
  padding: 10px 12px;
  background: #e7f7ec;
  color: #23613b;
  border-radius: 10px;
  font-weight: 700;
}

/* Admin panel kartları */
.admin-request-card hr {
  border: none;
  border-top: 1px solid rgba(142, 36, 95, 0.18);
  margin: 16px 0;
}

/* Yardımcı formu */
.helper-form.hidden,
.contact-info.hidden {
  display: none !important;
}

/* Eski mobil nav kurallarını ez */
@media (max-width: 980px) {
  .side-menu-wrapper {
    left: 12px;
    top: 14px;
  }

  .side-menu-wrapper .nav-links.side-menu {
    left: 12px !important;
    top: 66px !important;
    width: calc(100vw - 24px);
  }

  .logo {
    margin-left: 68px;
    gap: 10px;
  }

  .logo span:last-child {
    font-size: 0.95rem;
    max-width: 180px;
  }

  .nav-actions {
    gap: 6px;
  }

  .auth-link {
    padding: 8px 10px;
    font-size: 0.85rem;
  }

  .logout-button {
    padding: 8px 10px;
    font-size: 0.85rem;
  }
}

@media (max-width: 560px) {
  .site-header .navbar {
    gap: 8px;
  }

  .logo span:last-child {
    max-width: 135px;
    font-size: 0.85rem;
  }

  .auth-link {
    padding: 7px 8px;
    font-size: 0.78rem;
  }

  .icon-button {
    width: 38px;
    height: 38px;
  }
}
/* Hakkımızda / Biz Kimiz sayfası */
.team-intro-box {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(122, 92, 255, 0.09), rgba(245, 165, 199, 0.16));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.team-intro-box h2 {
  color: var(--primary);
}

.team-intro-box p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 980px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.team-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.team-photo {
  width: 100%;
  height: 600px;
  object-fit: cover;
  background: #f8e5f0;
}

.team-content {
  padding: 22px;
}

.team-content h3 {
  color: #8e245f;
  margin-bottom: 10px;
}

.team-content p {
  color: var(--muted);
  line-height: 1.6;
}

.team-contact {
  margin-top: 16px;
  padding: 12px;
  border-radius: 14px;
  background: #f8e5f0;
  color: #333;
}

.team-contact a {
  color: #8e245f;
  font-weight: 800;
}

.group-photo-box {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: center;
}

.group-photo-box h2 {
  color: var(--primary);
}

.group-photo-frame {
  margin: 24px auto;
  max-width: 980px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  background: #f8e5f0;
}

.group-photo-frame img {
  width: 100%;
  min-height: 360px;
  max-height: 560px;
  object-fit: cover;
}

.group-photo-box p {
  color: var(--muted);
  max-width: 780px;
  margin: 0 auto;
}

@media (max-width: 980px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-photo {
    height: 340px;
  }

  .group-photo-frame img {
    min-height: 260px;
  }
}
/* Güvenli modern dokunuşlar */

.card,
.list-card,
.chart-card,
.timeline-card,
.faq,
.stat-card,
.request-card,
.admin-request-card,
.auth-card,
.help-form-section,
.requests-section,
.admin-panel-section,
.login-warning,
.team-card,
.group-photo-box,
.team-intro-box {
  border-radius: 22px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.card:hover,
.list-card:hover,
.request-card:hover,
.admin-request-card:hover,
.team-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(60, 30, 80, 0.14);
}

.request-card,
.admin-request-card {
  border-left: 6px solid #8e245f;
  background: #fff7fb;
}

.request-badge {
  background: #8e245f;
  color: white;
}

.status-badge {
  background: #f2c94c;
  color: #333;
}

.help-button,
.save-helper-button,
.auth-card button,
.help-form button,
.admin-buttons button {
  transition: transform 160ms ease, opacity 160ms ease;
}

.help-button:hover,
.save-helper-button:hover,
.auth-card button:hover,
.help-form button:hover,
.admin-buttons button:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.side-menu-wrapper .nav-links.side-menu {
  border-radius: 22px;
}

.side-menu-wrapper .nav-links.side-menu a {
  border-radius: 14px;
}

.team-card {
  overflow: hidden;
}

.team-photo {
  object-fit: cover;
}

.auth-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-bottom: 18px;
  color: #8e245f;
  font-weight: 800;
}

.certificate-note {
  padding: 10px 12px;
  background: #e7f7ec;
  color: #23613b;
  border-radius: 10px;
  font-weight: 700;
}
/* Header boşluk düzeltmesi */
.site-header .navbar {
  justify-content: flex-start !important;
}

.logo {
  margin-left: 10px !important;
  margin-right: auto;
}

.nav-actions {
  margin-left: auto !important;
}
/* Header logo boşluk düzeltmesi - kesin çözüm */
.site-header .navbar.container {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding-left: 0 !important;
  padding-right: 18px !important;
}

.site-header .logo {
  margin-left: 72px !important;
  margin-right: auto !important;
}

.site-header .nav-actions {
  margin-left: auto !important;
}
.logout-button {
  border: none;
  background: #8e245f;
  color: white;
  padding: 9px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.logout-button:hover {
  background: #6f1949;
}
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(142, 36, 95, 0.08);
}

.language-button {
  border: none;
  border-radius: 999px;
  padding: 6px 9px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  background: transparent;
  color: var(--text-color, #333);
}

.language-button.active {
  background: #8e245f;
  color: #ffffff;
}

.auth-card .language-switcher {
  margin: 0 auto 18px;
  justify-content: center;
}
/* ============================= */
/* TR / EN Dil Butonları - Son Düzenleme */
/* ============================= */

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(142, 36, 95, 0.08);
  border: 1px solid rgba(142, 36, 95, 0.12);
  flex-shrink: 0;
}

.language-button {
  border: none;
  border-radius: 999px;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  background: transparent;
  color: var(--text);
  line-height: 1;
}

.language-button:hover {
  background: rgba(142, 36, 95, 0.12);
  color: #8e245f;
}

.language-button.active {
  background: #8e245f;
  color: #ffffff;
}

.auth-card .language-switcher {
  margin: 0 auto 18px;
  justify-content: center;
}

/* Giriş / kayıt sayfasında dil butonu düzgün dursun */
.auth-page .language-switcher {
  margin-bottom: 18px;
}

/* Üst menüde dil butonu sıkışmasın */
.nav-actions .language-switcher {
  order: -1;
}

/* Mobilde TR/EN butonları küçük görünsün */
@media (max-width: 700px) {
  .language-switcher {
    gap: 3px;
    padding: 3px;
  }

  .language-button {
    padding: 5px 7px;
    font-size: 11px;
  }
}

@media (max-width: 560px) {
  .nav-actions {
    gap: 5px;
  }

  .language-button {
    padding: 5px 6px;
    font-size: 10px;
  }
}

/* ============================= */
/* Sayfa Altı Kaynak Kutusu */
/* ============================= */
.page-source-box-section {
  padding: 10px 0 52px;
}

.page-source-box {
  max-width: 980px;
  margin: 0 auto;
  padding: 26px 30px;
  border-radius: 18px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.page-source-box h2 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.source-box-note {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

.page-source-list {
  margin: 0;
  padding-left: 24px;
}

.page-source-list li {
  margin: 8px 0;
  line-height: 1.55;
}

.source-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  padding: 3px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-soft);
}

.source-pill:hover {
  color: white;
  background: #8e245f;
}

@media (max-width: 700px) {
  .page-source-box {
    padding: 22px 20px;
  }

  .source-pill {
    margin-left: 4px;
    padding: 3px 10px;
    font-size: 0.85rem;
  }
}
