@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap');

:root {
  --blue: #0b2b4f;
  --green: #2dbb70;
  --light: #f4f7fb;
  --text: #22364c;
  --muted: #6e7d8d;
  --border: #dfe7ef;
  --surface: #ffffff;
  --surface-soft: #f7fbff;
  --font-body: "Plus Jakarta Sans", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Sora", "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --font-accent: "Atkinson Hyperlegible", "Plus Jakarta Sans", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html { scroll-padding-top: 110px; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(45, 187, 112, 0.1), transparent 32%),
    radial-gradient(circle at top right, rgba(62, 142, 247, 0.08), transparent 28%),
    linear-gradient(180deg, #fcfeff 0%, #f6faff 100%);
  transition: background 0.3s ease, color 0.3s ease;
  position: relative;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 14%, rgba(45, 187, 112, 0.08), transparent 0 28%),
    radial-gradient(circle at 82% 10%, rgba(11, 43, 79, 0.06), transparent 0 24%),
    radial-gradient(circle at 72% 78%, rgba(62, 142, 247, 0.05), transparent 0 22%);
  z-index: -1;
}
body.menu-open {
  overflow: hidden;
}
body.disleksi-mode {
  background: linear-gradient(135deg, #fff8e8 0%, #fdf3d7 100%);
  color: #3b2b12;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { max-width: 100%; }

::selection {
  background: rgba(45, 187, 112, 0.2);
  color: var(--blue);
}

:focus-visible {
  outline: 3px solid rgba(45, 187, 112, 0.5);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 2000;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
  box-shadow: 0 14px 30px rgba(11, 43, 79, 0.2);
}

body.disleksi-mode .header,
body.disleksi-mode .hero-slider,
body.disleksi-mode .feature,
body.disleksi-mode .card,
body.disleksi-mode .news,
body.disleksi-mode .quick,
body.disleksi-mode .page-card,
body.disleksi-mode .contact-card,
body.disleksi-mode .video-card,
body.disleksi-mode .impact-card,
body.disleksi-mode .home-about,
body.disleksi-mode .wide-card,
body.disleksi-mode .value-card,
body.disleksi-mode .program-card,
body.disleksi-mode .resource-tile,
body.disleksi-mode .support-card,
body.disleksi-mode .auth-card {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 40px rgba(100, 69, 24, 0.12);
}
body.disleksi-mode .hero-badge {
  background: #ffe3b2;
  color: #8b5a00;
}
body.disleksi-mode .btn.primary { background: #8c5a2a; }
body.disleksi-mode .btn.secondary { border-color: #8c5a2a; color: #8c5a2a; }
body.disleksi-mode .btn.success { border-color: #6f8f2f; color: #6f8f2f; }
body.disleksi-mode .hero-slide-content h1,
body.disleksi-mode .page-hero h1,
body.disleksi-mode .section-title {
  font-family: var(--font-accent);
  letter-spacing: 0.04em;
}
body.disleksi-mode .brand .title {
  font-family: var(--font-display);
  letter-spacing: 0.01em;
}
body.disleksi-mode .hero-slide-content p,
body.disleksi-mode .page-card p,
body.disleksi-mode .feature p,
body.disleksi-mode .card p {
  line-height: 1.9;
  font-size: 16px;
}
body.disleksi-mode .animate-letters .letter {
  display: inline-block;
  animation: letter-bounce 0.7s ease-in-out infinite alternate;
}
body.disleksi-mode .animate-letters .letter:nth-child(2n) { animation-delay: 0.08s; }
body.disleksi-mode .animate-letters .letter:nth-child(3n) { animation-delay: 0.12s; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes letter-bounce {
  from { transform: translateY(0); }
  to { transform: translateY(-4px); }
}

.top-bar {
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  padding: 10px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar .left, .top-bar .right { display: flex; gap: 18px; align-items: center; }
.top-bar .right a { margin-left: 10px; }
.top-bar a:hover { opacity: 0.9; }

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 24px rgba(11, 43, 79, 0.06);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.menu-toggle {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--blue);
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.menu-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(11, 43, 79, 0.08);
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.menu-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.header.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.header.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}
.header.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.logo {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 20px;
}
.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand .title {
  font-size: 17px;
  font-weight: 700;
  color: var(--blue);
  font-family: var(--font-display);
  letter-spacing: 0;
  line-height: 1.05;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav {
  display: flex; gap: 24px; align-items: center; font-weight: 600; color: var(--blue);
}
.nav a,
.nav-link {
  position: relative;
  transition: color 0.2s ease, transform 0.2s ease;
}
.nav a:hover,
.nav-link:hover {
  color: var(--green);
  transform: translateY(-1px);
}
.nav a.active,
.nav-item.active > .nav-link {
  color: var(--green);
  border-bottom: 2px solid var(--green);
  padding-bottom: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-weight: 700;
  padding: 0;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dropdown-toggle span {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  width: 240px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 44px rgba(11, 43, 79, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.dropdown-menu a {
  display: block;
  border-radius: 12px;
  padding: 11px 12px;
  color: var(--blue);
  font-weight: 700;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
  background: rgba(45, 187, 112, 0.1);
  color: var(--green);
  transform: none;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.has-dropdown:hover .dropdown-toggle span,
.has-dropdown.open .dropdown-toggle span,
.has-dropdown:focus-within .dropdown-toggle span {
  transform: rotate(180deg);
}
.btn-destek {
  background: var(--green);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(45, 187, 112, 0.22);
}

.nav .btn-destek.active {
  color: #fff;
  border-bottom: 0;
  padding: 12px 22px;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(7, 29, 54, 0.42);
  border: 0;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

body.menu-open .nav-backdrop {
  opacity: 1;
  visibility: visible;
}

.hero-slider-section {
  padding: 36px 60px 24px;
}
.hero-notice {
  display: inline-block;
  margin-bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(11, 43, 79, 0.06);
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}
.hero-slider {
  background: linear-gradient(135deg, #f6fbff 0%, #eef6ff 100%);
  border-radius: 32px;
  padding: 30px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(11, 43, 79, 0.08);
  overflow: hidden;
  position: relative;
}
.hero-slider::after {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 187, 112, 0.16), transparent 68%);
  pointer-events: none;
}
.hero-slide {
  display: none;
  grid-template-columns: 1.05fr .95fr;
  gap: 32px;
  align-items: center;
  min-height: 480px;
}
.hero-slide.active {
  display: grid;
}
.hero-slide-content h1 {
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--blue);
  font-family: var(--font-display);
}
.hero-slide-content h1 .accent {
  color: var(--green);
  display: block;
}
.hero-slide-content p {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 24px;
  max-width: 560px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(45, 187, 112, 0.12);
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
}
.hero-slide-media img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(11, 43, 79, 0.16);
}
.hero .actions, .hero-slide-content .actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(11, 43, 79, 0.12);
}
.btn.primary { background: var(--blue); color: #fff; }
.btn.secondary { background: #fff; border-color: var(--blue); color: var(--blue); }
.btn.success { background: #fff; border-color: var(--green); color: var(--green); }

.hero-slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}
.slider-arrow {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--blue);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.slider-arrow:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(11, 43, 79, 0.1);
}
.slider-dots {
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: #cfd8e3;
  cursor: pointer;
  padding: 0;
}
.slider-dot.active { background: var(--green); }

.impact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 60px 24px;
}
.impact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(11, 43, 79, 0.06);
}
.impact-card strong {
  display: block;
  font-size: 28px;
  color: var(--green);
  margin-bottom: 6px;
}
.impact-card span {
  color: var(--muted);
  font-weight: 600;
}

.home-about {
  margin: 0 60px 34px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(11, 43, 79, 0.07);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
}

.home-about .eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(45, 187, 112, 0.12);
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 12px;
}

.home-about h2 {
  color: var(--blue);
  font-size: 28px;
  line-height: 1.2;
  margin: 0 0 12px;
}

.home-about p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  max-width: 760px;
}

.home-about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 40px 60px;
}
.feature {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(11, 43, 79, 0.12);
}
.feature .icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; font-size: 24px; margin-bottom: 12px; color: #fff;
}
.feature .icon.blue { background: #3e8ef7; }
.feature .icon.green { background: var(--green); }
.feature .icon.yellow { background: #f1b94f; }
.feature .icon.purple { background: #8b5cf6; }

.feature h3 {
  margin: 0 0 8px;
  font-size: 20px;
  color: var(--blue);
}
.feature p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 24px;
  padding: 0 60px 60px;
}
.news, .quick {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
}
.section-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--blue);
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: var(--font-display);
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.card {
  border-radius: 18px;
  overflow: hidden;
  background: #f8fbff;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(11, 43, 79, 0.08);
}
.card .thumb {
  height: 140px;
  background-size: cover;
  background-position: center;
}
.card .body { padding: 14px; }
.card h4 {
  margin: 0 0 6px;
  font-size: 16px;
  color: var(--blue);
}
.card p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}
.card.primary {
  background: var(--blue);
  color: #fff;
}
.card.primary .body { padding: 20px; }
.card.primary h4 { color: #fff; }
.card.primary p { color: #dce6f5; }

.quick-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.quick-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fafcff;
  color: var(--blue);
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.quick-links a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(11, 43, 79, 0.08);
}
.quick-links a .icon { font-size: 18px; }

.cta {
  margin: 0 60px 60px;
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  background: linear-gradient(90deg, #eaf3fb 0%, #dfeef9 100%);
  border: 1px solid #dce8f3;
}
.cta .left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  color: var(--blue);
  font-weight: 600;
}
.cta .left .icon { font-size: 28px; }
.cta .actions { display: flex; gap: 12px; }
.cta .actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cta .actions a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(11, 43, 79, 0.14);
}
.cta .actions .green { background: var(--green); }
.cta .actions .sky { background: #3e8ef7; }
.cta .actions .navy { background: var(--blue); }

.page-hero {
  margin: 28px 60px 36px;
  padding: 44px 34px 34px;
  background:
    radial-gradient(circle at top right, rgba(45, 187, 112, 0.1), transparent 34%),
    linear-gradient(90deg, #f6fbff 0%, #eef6ff 100%);
  border: 1px solid var(--border);
  border-radius: 32px;
  box-shadow: 0 18px 44px rgba(11, 43, 79, 0.07);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -100px;
  top: -70px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(62, 142, 247, 0.12), transparent 70%);
  pointer-events: none;
}
.page-hero > * {
  position: relative;
  z-index: 1;
}
.page-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(45, 187, 112, 0.12);
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 12px;
}
.page-hero h1 {
  font-size: 38px;
  line-height: 1.15;
  color: var(--blue);
  margin: 0 0 12px;
  font-family: var(--font-display);
}
.page-hero p {
  max-width: 720px;
  font-size: 17px;
  color: var(--muted);
  margin: 0;
}
.page-shell {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 60px 60px;
}
.page-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
}
.page-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
  color: var(--text);
}
.video-section {
  padding: 0 60px 40px;
}
.video-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
}
.video-frame {
  display: flex;
  justify-content: center;
}
.video-frame iframe {
  max-width: 100%;
  width: 100%;
  height: 315px;
  border-radius: 16px;
}
.page-card h2, .page-card h3 {
  color: var(--blue);
  margin-top: 0;
  font-family: var(--font-display);
}
.page-card p {
  color: var(--text);
  line-height: 1.8;
  font-size: 16px;
}
.info-list, .resource-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.info-list li, .resource-list li {
  background: #f8fbff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  color: var(--text);
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.stat-box {
  background: linear-gradient(135deg, #f3f8ff 0%, #eef6ff 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  text-align: center;
}
.stat-box strong {
  display: block;
  font-size: 24px;
  color: var(--green);
  margin-bottom: 6px;
}
.timeline {
  display: grid;
  gap: 14px;
}
.timeline-item {
  border-left: 3px solid var(--green);
  padding-left: 14px;
}
.timeline-item strong {
  color: var(--blue);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
}
.contact-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}
.contact-card li {
  color: var(--muted);
}
.form-group {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}
.form-group label {
  font-weight: 700;
  color: var(--blue);
}
.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #8ca0b4;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(45, 187, 112, 0.42);
  box-shadow: 0 0 0 4px rgba(45, 187, 112, 0.12);
}

.form-note {
  margin: 2px 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.captcha-row {
  display: grid;
  grid-template-columns: 1fr 48px;
  gap: 10px;
}

.captcha-refresh {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #f8fbff;
  color: var(--blue);
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
}

.captcha-error {
  border-color: #d83a3a !important;
  box-shadow: 0 0 0 3px rgba(216, 58, 58, 0.12);
}
.form-group button {
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
}

.form-status {
  margin: 6px 0 0;
  border: 1px solid rgba(45, 187, 112, 0.28);
  border-radius: 12px;
  background: rgba(45, 187, 112, 0.1);
  color: var(--blue);
  font-weight: 700;
  padding: 12px 14px;
}

.form-status.is-error {
  border-color: rgba(216, 58, 58, 0.28);
  background: rgba(216, 58, 58, 0.08);
  color: #b03b3b;
}

.form-status.is-info {
  border-color: rgba(62, 142, 247, 0.24);
  background: rgba(62, 142, 247, 0.08);
  color: var(--blue);
}
.footer {
  padding: 24px 60px 40px;
  color: var(--muted);
  font-size: 14px;
}

.wide-card,
.auth-card,
.value-card,
.program-card,
.resource-tile,
.support-card,
.board-card,
.news-list article {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
}

.wide-card {
  margin-top: 24px;
  border-radius: 24px;
  padding: 28px;
}

.wide-card h2,
.value-card h3,
.program-card h3,
.resource-tile strong,
.support-card h2,
.auth-card h2,
.board-card h3,
.news-list h3 {
  color: var(--blue);
  margin-top: 0;
}

.wide-card p,
.value-card p,
.program-card p,
.resource-tile p,
.support-card p,
.board-card p,
.news-list p {
  color: var(--muted);
  line-height: 1.7;
}

.news-list .read-more {
  display: inline-flex;
  align-items: center;
  color: var(--green);
  font-weight: 800;
  margin-top: 14px;
}

.news-detail,
.related-news,
.map-card {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
}

.news-detail {
  border-radius: 26px;
  overflow: hidden;
}

.news-detail > img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.news-detail h2,
.related-news h2,
.map-card h2 {
  color: var(--blue);
  margin: 0 0 12px;
  font-family: var(--font-display);
}

.news-detail p,
.map-card p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.82;
}

.news-detail h2,
.news-detail p,
.news-detail blockquote,
.news-detail .news-meta,
.news-detail .news-detail-actions {
  margin-left: 28px;
  margin-right: 28px;
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  margin-bottom: 18px;
}

.news-meta time,
.news-meta span,
.related-news time {
  border-radius: 999px;
  background: rgba(45, 187, 112, 0.12);
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 12px;
}

.news-detail blockquote {
  border-left: 4px solid var(--green);
  color: var(--blue);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.55;
  padding: 6px 0 6px 18px;
}

.news-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 10px 0 30px;
}

.share-box {
  margin: 0 28px 30px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 22px rgba(11, 43, 79, 0.04);
  display: grid;
  gap: 16px;
}

.share-copy h3 {
  margin: 8px 0 8px;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 20px;
}

.share-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  color: var(--blue);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.share-button:hover {
  transform: translateY(-2px);
  border-color: rgba(45, 187, 112, 0.28);
  background: rgba(45, 187, 112, 0.05);
}

.share-button.whatsapp {
  color: #178a4b;
}

.share-button.x {
  color: #0f172a;
}

.share-button.facebook {
  color: #1c62d1;
}

.share-button.copy {
  color: var(--blue);
}

.share-feedback {
  margin: 0;
  min-height: 20px;
  color: var(--green);
  font-weight: 700;
}

.related-news {
  border-radius: 24px;
  margin-top: 24px;
  padding: 24px;
}

.related-news a {
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding: 16px 0;
}

.related-news a:last-child {
  padding-bottom: 0;
}

.related-news strong {
  color: var(--blue);
}

.map-card {
  border-radius: 26px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 22px;
  margin-top: 24px;
  overflow: hidden;
  padding: 24px;
}

.map-card .eyebrow {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(45, 187, 112, 0.12);
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
  padding: 8px 12px;
}

.map-card iframe {
  border: 0;
  border-radius: 18px;
  min-height: 340px;
  width: 100%;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill-row span {
  background: rgba(45, 187, 112, 0.12);
  border: 1px solid rgba(45, 187, 112, 0.28);
  border-radius: 999px;
  color: var(--blue);
  font-weight: 700;
  padding: 9px 12px;
}

.representation-layout {
  display: grid;
  grid-template-columns: 1.28fr .72fr;
  gap: 24px;
  align-items: start;
}

.representation-map-card,
.representative-panel {
  border-radius: 28px;
  padding: 28px;
}

.representation-map-card {
  display: grid;
  gap: 20px;
}

.representation-map-card .eyebrow,
.representative-panel .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(45, 187, 112, 0.12);
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.representation-map-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  flex-wrap: wrap;
}

.representation-map-header h2,
.representative-panel h2 {
  margin: 0 0 10px;
  color: var(--blue);
  line-height: 1.2;
  font-family: var(--font-display);
}

.representation-map-header p,
.representative-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.province-search {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 260px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(11, 43, 79, 0.06);
}

.province-search span {
  color: var(--green);
  font-size: 18px;
}

.province-search input {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  min-width: 0;
}

.province-search input::placeholder {
  color: #8ca0b4;
}

.province-search input:focus {
  outline: none;
}

.turkey-map-shell {
  display: grid;
  gap: 14px;
}

.map-status {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.il-isimleri {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(45, 187, 112, 0.12);
  border: 1px solid rgba(45, 187, 112, 0.24);
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.map-hint {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.svg-turkiye-haritasi {
  position: relative;
  width: 100%;
  padding: 20px;
  border: 1px solid rgba(11, 43, 79, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 6%, rgba(45, 187, 112, 0.14), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(62, 142, 247, 0.12), transparent 24%),
    linear-gradient(135deg, #f8fcff 0%, #edf4ff 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 18px 36px rgba(11, 43, 79, 0.08);
  overflow: hidden;
}

.turkey-map {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 180px;
}

.map-loading,
.map-error {
  margin: 0;
  min-height: 180px;
  width: 100%;
  display: grid;
  place-items: center;
  border-radius: 20px;
  border: 1px dashed rgba(11, 43, 79, 0.12);
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  font-weight: 700;
  text-align: center;
}

.map-error {
  color: #b03b3b;
}

.svg-turkiye-haritasi svg,
#svg-turkiye-haritasi {
  display: block;
  width: 100%;
  height: auto;
}

#svg-turkiye-haritasi {
  overflow: visible;
}

#svg-turkiye-haritasi g[data-iladi] {
  transform-origin: center;
  transition: opacity 0.18s ease, transform 0.18s ease, filter 0.18s ease;
}

#svg-turkiye-haritasi g[data-iladi] path {
  cursor: pointer;
  fill: #d9e4ef;
  stroke: #ffffff;
  stroke-width: 1.3;
  transition: fill 0.18s ease, opacity 0.18s ease, stroke 0.18s ease;
}

#svg-turkiye-haritasi g[data-iladi]:hover path,
#svg-turkiye-haritasi g[data-iladi]:focus-visible path {
  fill: #3e8ef7;
}

#svg-turkiye-haritasi g[data-iladi].is-search-match path {
  fill: #bfe0fb;
}

#svg-turkiye-haritasi g[data-iladi].is-search-match:hover path,
#svg-turkiye-haritasi g[data-iladi].is-search-match:focus-visible path {
  fill: #3e8ef7;
}

#svg-turkiye-haritasi g[data-iladi].is-active path {
  fill: var(--green);
  stroke: rgba(45, 187, 112, 0.85);
}

#svg-turkiye-haritasi g[data-iladi].is-dimmed {
  opacity: 0.22;
  pointer-events: none;
}

#svg-turkiye-haritasi g[data-iladi].is-disabled {
  opacity: 0.12;
  pointer-events: none;
}

#svg-turkiye-haritasi g[data-iladi].is-disabled path {
  fill: #dfe8f2;
}

#guney-kibris,
#kuzey-kibris {
  pointer-events: none;
}

.representative-panel {
  display: grid;
  gap: 18px;
  align-content: start;
  position: sticky;
  top: 124px;
}

.representative-code {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--blue), #1f5a89);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 18px 30px rgba(11, 43, 79, 0.18);
}

.representative-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 6px 0 0;
}

.representative-details div {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #f8fbff;
  padding: 14px;
}

.representative-details dt {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.representative-details dd {
  margin: 6px 0 0;
  color: var(--blue);
  font-weight: 800;
  line-height: 1.45;
}

.district-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.district-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(45, 187, 112, 0.28);
  background: rgba(45, 187, 112, 0.12);
  color: var(--blue);
  font-weight: 700;
}

.panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.values-grid,
.program-grid,
.resource-library,
.support-grid,
.news-list,
.auth-layout {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

.values-grid,
.program-grid,
.resource-library,
.support-grid {
  grid-template-columns: repeat(3, 1fr);
}

.auth-layout {
  grid-template-columns: .9fr 1.1fr;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.board-hierarchy {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.board-level {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.board-level-title {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.2;
  margin: 0;
}

.board-level-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.board-grid.board-grid--audit {
  grid-template-columns: minmax(240px, 360px);
  justify-content: center;
}

.board-chain {
  display: grid;
  grid-template-columns: minmax(240px, 360px) 56px minmax(240px, 360px);
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.board-connector {
  display: grid;
  place-items: center;
  justify-self: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(45, 187, 112, 0.25);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 14px 28px rgba(45, 187, 112, 0.18);
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.board-grid.board-grid--executive {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.board-grid.board-grid--reserve {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.board-card {
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0;
  min-height: 100%;
}

.board-photo {
  aspect-ratio: 4 / 4.6;
  background: var(--surface-soft);
  overflow: hidden;
}

.board-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.board-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
}

.board-role {
  align-self: flex-start;
  border-radius: 999px;
  background: rgba(45, 187, 112, 0.12);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  padding: 7px 10px;
}

.board-card.is-primary {
  border-color: rgba(45, 187, 112, 0.38);
  box-shadow: 0 16px 38px rgba(45, 187, 112, 0.12);
}

.board-card.is-primary .board-role {
  background: var(--green);
  color: #fff;
}

.board-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.2;
  margin: 0;
}

.board-card p.board-title {
  color: var(--blue);
  font-weight: 800;
  margin: 0;
}

.board-card p.board-institution {
  font-weight: 700;
  margin: 0;
}

.avatar {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #1b6aa5);
  color: #fff;
  font-weight: 900;
  margin-bottom: 16px;
}

.value-card,
.resource-tile,
.support-card,
.auth-card {
  border-radius: 24px;
  padding: 24px;
}

.value-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  margin-bottom: 14px;
}

.program-card {
  border-radius: 24px;
  overflow: hidden;
}

.program-card img {
  display: block;
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.program-card div {
  padding: 20px;
}

.resource-tile,
.support-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.donation-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
}

.donation-card,
.bank-account-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
  padding: 28px;
}

.donation-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.donation-kicker,
.bank-badge {
  align-self: flex-start;
  border-radius: 999px;
  background: rgba(45, 187, 112, 0.12);
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 12px;
}

.donation-card h2,
.bank-account-card h2 {
  color: var(--blue);
  font-family: var(--font-display);
  line-height: 1.25;
  margin: 0;
}

.donation-card p {
  color: var(--text);
  line-height: 1.75;
  margin: 0;
}

.donation-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.donation-list li {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #f8fbff;
  color: var(--muted);
  line-height: 1.6;
  padding: 14px 16px;
}

.donation-list a {
  color: var(--green);
  font-weight: 800;
}

.bank-account-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bank-details {
  display: grid;
  gap: 12px;
  margin: 0;
}

.bank-details div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #f8fbff;
  padding: 15px 16px;
}

.bank-details dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bank-details dd {
  color: var(--blue);
  font-weight: 800;
  line-height: 1.45;
  margin: 0;
  overflow-wrap: anywhere;
}

.support-grid.support-grid--compact {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

.document-source,
.document-section,
.statute-article {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
}

.document-source {
  border-radius: 26px;
  margin-bottom: 24px;
  padding: 28px;
}

.document-source span {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(45, 187, 112, 0.12);
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
  padding: 8px 12px;
}

.document-source h2,
.document-section h2,
.statute-article h2 {
  color: var(--blue);
  line-height: 1.25;
  margin: 0 0 14px;
  font-family: var(--font-display);
}

.document-source p,
.document-section p,
.document-item p,
.statute-article p {
  color: var(--text);
  line-height: 1.82;
}

.document-section {
  border-radius: 24px;
  margin-bottom: 20px;
  padding: 26px;
}

.document-item {
  border-top: 1px solid var(--border);
  padding: 18px 0;
}

.document-item:last-child {
  padding-bottom: 0;
}

.document-item h3 {
  color: var(--blue);
  font-size: 18px;
  line-height: 1.35;
  margin: 0 0 8px;
  font-family: var(--font-display);
}

.statute-list {
  display: grid;
  gap: 16px;
}

.statute-article {
  border-radius: 20px;
  padding: 24px;
}

.statute-article h2 {
  font-size: 20px;
}

.resource-tile a,
.support-card a,
.auth-card a {
  color: var(--green);
  font-weight: 800;
}

.support-card.featured {
  background: var(--blue);
  color: #fff;
}

.support-card.featured h2,
.support-card.featured p,
.support-card.featured a {
  color: #fff;
}

.news-list {
  grid-template-columns: 1fr;
}

.news-list article {
  border-radius: 20px;
  padding: 22px;
}

.news-list time {
  display: inline-block;
  color: var(--green);
  font-weight: 800;
  margin-bottom: 8px;
}

.auth-card {
  display: grid;
  align-content: start;
}

.auth-card button,
.contact-card button {
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  padding: 13px 18px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  padding: 52px 60px 34px;
  background:
    radial-gradient(circle at top left, rgba(45, 187, 112, 0.22), transparent 28%),
    radial-gradient(circle at top right, rgba(62, 142, 247, 0.16), transparent 26%),
    linear-gradient(135deg, #04101f 0%, #0a2340 56%, #071b31 100%);
  color: #d7e2f1;
  display: grid;
  gap: 26px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 -20px 60px rgba(7, 29, 54, 0.18);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: -120px -10% auto;
  height: 280px;
  background:
    radial-gradient(circle at 12% 42%, rgba(45, 187, 112, 0.22), transparent 42%),
    radial-gradient(circle at 86% 18%, rgba(62, 142, 247, 0.16), transparent 38%);
  pointer-events: none;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  align-items: flex-start;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 430px;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: #fff;
  margin-bottom: 6px;
  font-size: 15px;
  letter-spacing: 0.01em;
}

.footer-brand span {
  color: rgba(215, 226, 241, 0.82);
  font-size: 13px;
  line-height: 1.6;
}

.footer-contact {
  display: grid;
  gap: 6px;
  min-width: 220px;
  text-align: right;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.social-link svg {
  width: 17px;
  height: 17px;
  display: block;
}

.social-link:hover {
  transform: translateY(-2px);
  background: rgba(132, 224, 173, 0.14);
  border-color: rgba(132, 224, 173, 0.34);
}

.social-link.instagram:hover { color: #fff; }
.social-link.facebook:hover { color: #fff; }
.social-link.x:hover { color: #fff; }
.social-link.youtube:hover { color: #fff; }

.footer-contact a,
.footer-contact span {
  color: rgba(215, 226, 241, 0.9);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 18px;
}

.footer-columns div {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(10px);
  padding: 16px 17px 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.footer-columns h3 {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-columns a {
  display: block;
  color: rgba(215, 226, 241, 0.92);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
  margin-top: 8px;
}

.footer-columns a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
  color: #84e0ad;
}

.site-footer a:focus-visible,
.footer-columns a:focus-visible,
.footer-contact a:focus-visible {
  outline-color: rgba(132, 224, 173, 0.8);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
}

.footer-bottom p {
  margin: 0;
  font-size: 12px;
  color: rgba(215, 226, 241, 0.78);
}

.footer-bottom a {
  color: #fff;
  font-weight: 700;
}

@media (max-width: 1000px) {
  .page-hero {
    margin: 20px 20px 28px;
    padding: 32px 24px 28px;
  }
  .hero-slider-section, .impact-strip, .content-grid, .features {
    padding-left: 20px;
    padding-right: 20px;
  }
  .home-about {
    margin-left: 20px;
    margin-right: 20px;
    grid-template-columns: 1fr;
  }
  .representation-layout {
    grid-template-columns: 1fr;
  }
  .representative-panel {
    position: static;
  }
  .home-about-actions {
    justify-content: flex-start;
  }
  .menu-toggle { display: inline-flex; }
  .header {
    gap: 12px;
  }
  .header .nav {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    background: var(--surface);
    border-left: 1px solid var(--border);
    border-radius: 24px 0 0 24px;
    padding: 92px 22px 26px;
    width: min(390px, calc(100vw - 28px));
    max-width: 100%;
    height: 100vh;
    overflow-y: auto;
    box-shadow: -24px 0 60px rgba(11, 43, 79, 0.18);
    transform: translateX(105%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.28s ease, opacity 0.2s ease, visibility 0.2s ease;
  }
  .header.nav-open .nav {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
  .header .nav .nav-item,
  .header .nav .nav-link {
    width: 100%;
  }
  .header .nav > a,
  .header .nav-link {
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #f8fbff;
    color: var(--blue);
    display: flex;
    justify-content: space-between;
    min-height: 48px;
    padding: 14px 15px;
    width: 100%;
  }
  .header .nav > a.active,
  .header .nav-item.active > .nav-link {
    background: rgba(45, 187, 112, 0.1);
    border-color: rgba(45, 187, 112, 0.32);
    padding: 14px 15px;
  }
  .header .nav .btn-destek,
  .header .nav .btn-destek.active {
    justify-content: center;
    margin-top: 8px;
    padding: 15px;
  }
  .header .dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 8px;
    border-radius: 14px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: #f8fbff;
  }
  .header .dropdown-menu a {
    padding: 12px 13px;
  }
  .header .has-dropdown.open .dropdown-menu,
  .header .has-dropdown:focus-within .dropdown-menu {
    display: block;
  }
  .hero-slide {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-slide-media img {
    height: 280px;
  }
  .top-bar, .header, .cta {
    padding-left: 20px;
    padding-right: 20px;
  }
  .features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .content-grid {
    display: block;
  }
  .values-grid,
  .program-grid,
  .resource-library,
  .support-grid,
  .donation-layout,
  .auth-layout,
  .board-grid {
    grid-template-columns: 1fr 1fr;
  }
  .board-grid.board-grid--audit {
    grid-template-columns: minmax(240px, 360px);
  }
  .board-chain {
    grid-template-columns: minmax(220px, 330px) 52px minmax(220px, 330px);
  }
  .board-grid.board-grid--executive {
    grid-template-columns: repeat(3, 1fr);
  }
  .board-grid.board-grid--reserve {
    grid-template-columns: repeat(2, 1fr);
  }
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
  .footer-main {
    flex-direction: column;
  }
  .footer-contact {
    text-align: left;
  }
  .social-links {
    justify-content: flex-start;
  }
  .news {
    margin-bottom: 20px;
  }
}

@media (max-width: 760px) {
  .top-bar { display: none; }
  .skip-link {
    left: 12px;
    top: 12px;
  }
  .header {
    flex-wrap: nowrap;
    gap: 12px;
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .brand .title {
    font-size: 15px;
    line-height: 1.05;
  }
  .logo {
    width: 44px;
    height: 44px;
  }
  .header-actions { margin-left: auto; }
  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
  }
  .header .nav {
    width: min(360px, calc(100vw - 18px));
  }
  .hero-slider-section { padding: 20px 16px 16px; }
  .hero-slider { padding: 20px; }
  .hero-slide-content h1 { font-size: 30px; }
  .hero-slide-media img { height: 220px; }
  .page-hero {
    margin: 16px 16px 24px;
    padding: 26px 20px 22px;
    border-radius: 24px;
  }
  .page-hero h1 {
    font-size: 28px;
  }
  .home-about {
    margin: 0 16px 24px;
    padding: 22px;
  }
  .home-about h2 {
    font-size: 23px;
  }
  .home-about-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .impact-strip { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .cards, .quick-links { grid-template-columns: 1fr; }
  .page-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .values-grid,
  .program-grid,
  .resource-library,
  .support-grid,
  .support-grid.support-grid--compact,
  .donation-layout,
  .auth-layout,
  .board-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }
  .donation-card,
  .bank-account-card {
    padding: 22px;
  }
  .bank-details div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .board-hierarchy {
    gap: 28px;
  }
  .board-level-title {
    font-size: 21px;
  }
  .board-level-title::after {
    display: none;
  }
  .board-chain,
  .board-grid.board-grid--executive,
  .board-grid.board-grid--audit,
  .board-grid.board-grid--reserve {
    grid-template-columns: 1fr;
  }
  .board-chain {
    gap: 12px;
  }
  .board-connector {
    justify-self: center;
    transform: rotate(90deg);
  }
  .stat-grid {
    grid-template-columns: 1fr;
  }
  .page-hero, .page-shell, .footer, .video-section {
    padding-left: 20px;
    padding-right: 20px;
  }
  .site-footer {
    padding: 26px 20px 32px;
  }
  .footer-brand {
    align-items: flex-start;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .social-links {
    justify-content: flex-start;
  }
  .cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .share-box {
    margin-left: 20px;
    margin-right: 20px;
    padding: 18px;
  }
  .share-copy h3 {
    font-size: 20px;
  }
  .representation-map-card,
  .representative-panel {
    padding: 20px;
  }
  .representation-map-header {
    flex-direction: column;
  }
  .province-search {
    width: 100%;
    min-width: 0;
  }
  .map-status {
    flex-direction: column;
    align-items: flex-start;
  }
  .svg-turkiye-haritasi {
    padding: 14px;
  }
  .turkey-map {
    min-height: 160px;
  }
  .representative-details {
    grid-template-columns: 1fr;
  }
  .panel-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
