@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300;1,9..40,400&display=swap');

/* ═══════════════════════════════════════════
   ROOT VARIABLES
═══════════════════════════════════════════ */
:root {
  --bg: #ffffff;
  --primary: #02a2e9;
  --primary-dark: #0284c7;
  --primary-light: #e0f4fd;
  --dark: #0a1628;
  --text: #374151;
  --text-muted: #6b7280;
  --text-light: #93c5fd;
  --border: #e5e7eb;
  --surface: #f4f6f9;
  --teal: #0d9488;
  --amber: #d97706;
  --tam-uye-bg: #e0f4fd;
  --tam-uye-color: #02a2e9;
  --gozlemci-bg: #dbeafe;
  --gozlemci-color: #1d4ed8;
  --ortak-bg: #ccfbf1;
  --ortak-color: #0d9488;
  --radius: 8px;
  --radius-sm: 6px;
  --radius-full: 20px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(2,162,233,0.10);
  --max-width: 1100px;
  --padding-x: 24px;
  --padding-x-mob: 16px;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-ui: 'Plus Jakarta Sans', system-ui, sans-serif;
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ═══════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-ui);
  color: var(--dark);
  line-height: 1.2;
}

h1 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: clamp(18px, 2vw, 22px); font-weight: 600; }
h4 { font-size: 16px; font-weight: 600; }
p { color: var(--text); line-height: 1.7; }

/* ═══════════════════════════════════════════
   LAYOUT UTILITIES
═══════════════════════════════════════════ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding-x);
}

.section {
  padding: 72px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  display: inline-block;
  position: relative;
  padding-bottom: 14px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.section-header p {
  margin-top: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
}

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding-x);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo .logo-sub {
  font-size: 9px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  display: block;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
  position: relative;
}

.nav-links a:hover { color: var(--primary); background: var(--primary-light); }

.nav-links a.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}

/* Temsilcilikler — tıklanamaz, hover ile açılır menü */
.nav-item-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link-static {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  cursor: default;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.15s, background 0.15s;
}

.nav-link-static::after {
  content: '▾';
  font-size: 9px;
  opacity: 0.55;
  transform: translateY(1px);
}

.nav-item-dropdown:hover .nav-link-static { color: var(--primary); background: var(--primary-light); }

.nav-link-static.active { color: var(--primary); font-weight: 600; }

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 1001;
}

.nav-item-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active { color: var(--primary); background: var(--primary-light); }

/* Mobil çekmece: Temsilcilikler başlığı + alt bağlantılar */
.nav-drawer-static {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  padding: 12px 12px 2px;
}

.nav-drawer-static.active { color: var(--primary); }

.nav-drawer a.nav-drawer-sub { padding-left: 26px; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.25s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  display: none;
  flex-direction: column;
  background: var(--dark);
  padding: 16px var(--padding-x-mob);
  gap: 4px;
}

.nav-drawer a {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
}

.nav-drawer a:hover, .nav-drawer a.active {
  background: rgba(2,162,233,0.15);
  color: var(--primary);
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
#site-footer {
  background: var(--dark);
  color: #9ca3af;
  padding: 56px 0 0;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding-x);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand .logo { font-family: var(--font-ui); font-size: 20px; font-weight: 800; color: var(--primary); letter-spacing: 0.04em; }
.footer-brand p { margin-top: 12px; font-size: 14px; line-height: 1.65; max-width: 280px; }

.footer-col h4 { font-family: var(--font-ui); font-size: 11px; font-weight: 700; color: #fff; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: 14px; color: #9ca3af; transition: color 0.15s; }
.footer-col ul a:hover { color: var(--primary); }

.footer-col ul li.footer-static {
  font-size: 14px;
  color: #6b7280;
  cursor: default;
  user-select: none;
}

.footer-col ul li.footer-sub { margin-top: -4px; }
.footer-col ul li.footer-sub a { font-size: 13px; padding-left: 14px; position: relative; }
.footer-col ul li.footer-sub a::before {
  content: '↳';
  position: absolute;
  left: 0;
  color: #4b5563;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px var(--padding-x);
  max-width: var(--max-width);
  margin: 0 auto;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom-bar {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom a { color: var(--primary); }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.18s;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(2,162,233,0.3); }

.btn-secondary {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-secondary:hover { background: var(--primary-light); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--primary);
  padding: 0;
  font-size: 15px;
}
.btn-ghost:hover { gap: 12px; }

/* ═══════════════════════════════════════════
   CARDS
═══════════════════════════════════════════ */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

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

/* ═══════════════════════════════════════════
   MEMBERSHIP BADGES
═══════════════════════════════════════════ */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-ui);
  letter-spacing: 0.02em;
}

.badge-tam { background: var(--tam-uye-bg); color: var(--tam-uye-color); }
.badge-goz { background: var(--gozlemci-bg); color: var(--gozlemci-color); }
.badge-ort { background: var(--ortak-bg); color: var(--ortak-color); }

/* ═══════════════════════════════════════════
   QUOTE BLOCK
═══════════════════════════════════════════ */
.quote-block {
  background: var(--surface);
  border-left: 4px solid var(--amber);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
}

.quote-block p {
  font-style: italic;
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
}

.quote-block .quote-sig {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-muted);
  font-style: normal;
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   HIGHLIGHT BOX
═══════════════════════════════════════════ */
.highlight-box {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  padding: 14px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 14px;
  color: var(--dark);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   ANALYSIS BAND
═══════════════════════════════════════════ */
.analysis-band {
  background: var(--dark);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 14px;
  border-radius: var(--radius) var(--radius) 0 0;
}

.analysis-band .analysis-num {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  color: var(--text-light);
  min-width: 68px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.analysis-band .analysis-title {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.analysis-body {
  background: #fff;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 20px;
}

.analysis-body p { font-size: 14px; color: var(--text); line-height: 1.7; }

/* ═══════════════════════════════════════════
   REGION TABLE
═══════════════════════════════════════════ */
.region-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.region-table thead tr {
  background: var(--dark);
}

.region-table thead th {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: left;
}

.region-table tbody tr:nth-child(even) { background: var(--surface); }
.region-table tbody tr:nth-child(odd) { background: #fff; }
.region-table tbody tr:hover { background: var(--primary-light); transition: background 0.15s; }

.region-table td { padding: 10px 16px; vertical-align: top; border-bottom: 1px solid var(--border); }
.region-table td:first-child { font-family: var(--font-ui); font-weight: 600; color: var(--primary); white-space: nowrap; }

/* ═══════════════════════════════════════════
   PROFILE CARD — SEFER ÖZDEMİR
═══════════════════════════════════════════ */
.profile-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  align-items: start;
}

/* Fotoğraf + başlık tek bütünleşik blok */
.profile-photo-block {
  display: flex;
  flex-direction: column;
  width: 220px;
}

.profile-photo-block img {
  width: 220px;
  height: 280px;
  object-fit: cover;
  object-position: top center;
  display: block;
  border: 2px solid var(--primary);
  border-radius: var(--radius) var(--radius) 0 0;
}

.profile-photo-caption {
  background: var(--dark);
  width: 220px;
  padding: 10px 14px;
  border-radius: 0 0 var(--radius) var(--radius);
  border: 2px solid var(--primary);
  border-top: none;
  text-align: center;
}

.profile-photo-caption .name {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.profile-photo-caption .title {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 2px;
  line-height: 1.4;
}

/* MAP IMAGE */
.map-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  border: 1px solid var(--border);
}

.map-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.profile-info h3 {
  font-family: var(--font-ui);
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
}

.profile-info .profile-subtitle {
  font-size: 14px;
  color: var(--primary);
  margin-top: 4px;
  font-weight: 500;
}

.profile-bio { margin-top: 16px; font-size: 15px; line-height: 1.75; }

.profile-table {
  width: 100%;
  margin-top: 20px;
  font-size: 13px;
  border-collapse: collapse;
}

.profile-table tr { border-bottom: 1px solid var(--border); }
.profile-table td { padding: 8px 12px; }
.profile-table td:first-child { font-weight: 600; color: var(--primary); white-space: nowrap; width: 140px; font-family: var(--font-ui); font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; }

.profile-link { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-size: 14px; font-weight: 600; margin-top: 16px; transition: gap 0.15s; }
.profile-link:hover { gap: 10px; }

/* ═══════════════════════════════════════════
   STAT CARDS
═══════════════════════════════════════════ */
.stat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-card {
  text-align: center;
  padding: 28px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-top: 3px solid var(--primary);
  transition: box-shadow 0.2s, transform 0.2s;
}

.stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.stat-card .stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--primary);
  line-height: 1;
  display: block;
}

.stat-card .stat-label {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 8px;
  display: block;
}

.stat-card .stat-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

/* ═══════════════════════════════════════════
   FORM ELEMENTS
═══════════════════════════════════════════ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 15px;
  font-family: var(--font-body);
  background: #fff;
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(2,162,233,0.15);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* ═══════════════════════════════════════════
   PAGE HERO
═══════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, rgba(2,162,233,0.06) 0%, rgba(255,255,255,0) 60%);
  border-bottom: 1px solid var(--border);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(2,162,233,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-hero-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}

.page-hero h1 { max-width: 800px; }
.page-hero p { max-width: 640px; margin-top: 16px; font-size: 17px; color: var(--text-muted); }

/* ═══════════════════════════════════════════
   TABS (Membership Explorer)
═══════════════════════════════════════════ */
.tab-bar {
  display: flex;
  gap: 4px;
  background: var(--surface);
  padding: 4px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  border: 1px solid var(--border);
}

.tab-btn {
  flex: 1;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 6px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.18s;
  text-align: center;
}

.tab-btn.active { background: #fff; color: var(--dark); box-shadow: var(--shadow-sm); }
.tab-btn[data-tab="tam"].active { color: var(--tam-uye-color); }
.tab-btn[data-tab="goz"].active { color: var(--gozlemci-color); }
.tab-btn[data-tab="ort"].active { color: var(--ortak-color); }

.tab-panel { display: none; animation: fadeIn 0.25s ease; }
.tab-panel.active { display: block; }

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

.member-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.member-chip {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid;
  transition: transform 0.15s;
}
.member-chip:hover { transform: translateY(-1px); }
.member-chip-tam { background: var(--tam-uye-bg); color: var(--tam-uye-color); border-color: rgba(2,162,233,0.3); }
.member-chip-goz { background: var(--gozlemci-bg); color: var(--gozlemci-color); border-color: rgba(29,78,216,0.3); }
.member-chip-ort { background: var(--ortak-bg); color: var(--ortak-color); border-color: rgba(13,148,136,0.3); }

/* ═══════════════════════════════════════════
   FORUM
═══════════════════════════════════════════ */
.forum-question-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.forum-question-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.forum-q-num {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-light);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0;
}

.forum-question-card p { font-size: 15px; color: var(--dark); line-height: 1.5; }

.rules-list { display: flex; flex-direction: column; gap: 12px; }
.rules-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  padding: 12px 16px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--primary);
}

/* ═══════════════════════════════════════════
   CONTACT CONTRIBUTION CARDS
═══════════════════════════════════════════ */
.contribution-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.2s;
}

.contribution-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.contribution-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
  color: var(--primary);
}

.contribution-card h4 {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contribution-card p { font-size: 14px; color: var(--text-muted); }

/* ═══════════════════════════════════════════
   SUCCESS MESSAGE
═══════════════════════════════════════════ */
.success-msg {
  display: none;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  color: #166534;
}

.success-msg.show { display: block; animation: fadeIn 0.3s ease; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1023px) {
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stat-cards { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 767px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-drawer { display: flex; }
  .nav-drawer.hidden { display: none; }
  
  .card-grid-3 { grid-template-columns: 1fr; }
  .card-grid-4 { grid-template-columns: 1fr; }
  .stat-cards { grid-template-columns: 1fr; gap: 12px; }

  .profile-card { grid-template-columns: 1fr; }
  .profile-photo-block { margin: 0 auto; }
  .profile-photo-block img { width: 180px; height: 230px; }
  .profile-photo-caption { width: 180px; }
  
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand { grid-column: auto; }
  
  .page-hero { padding: 48px 0 40px; }
  .section { padding: 48px 0; }
  
  .tab-bar { flex-direction: column; }
  
  .region-table { display: block; overflow-x: auto; }
}

/* ═══════════════════════════════════════════
   MINI PROFILE (index.html)
═══════════════════════════════════════════ */
.mini-profile {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--dark);
  border-radius: var(--radius);
  padding: 28px 32px;
  color: #fff;
}

.mini-profile img {
  width: 72px;
  height: 90px;
  object-fit: cover;
  object-position: top center;
  border-radius: 6px;
  border: 2px solid var(--primary);
  flex-shrink: 0;
}

.mini-profile-info .name {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.mini-profile-info .role {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 2px;
}

.mini-profile-quote {
  flex: 1;
  font-style: italic;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  padding-left: 24px;
  border-left: 3px solid var(--amber);
}

.mini-profile-link {
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-ui);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.15s;
}

.mini-profile-link:hover { gap: 10px; }

/* MAP IMAGE */
.map-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  border: 1px solid var(--border);
}

.map-img-wrap img { width: 100%; height: auto; display: block; }

@media (max-width: 480px) {
  .stat-card .stat-num { font-size: 32px; }
  h1 { font-size: 26px; }
  h2 { font-size: 22px; }
}
