﻿:root {
  --bg: #090b12;
  --surface: #101623;
  --surface-strong: #131a2d;
  --text: #eef2fe;
  --text-muted: #a1acbd;
  --accent: #4ab0ff;
  --accent-strong: #1d3f69;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 25px 55px rgba(0, 0, 0, 0.18);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #090b12;
  color: var(--text);
  line-height: 1.7;
}
img,
svg {
  max-width: 100%;
  display: block;
}
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13, 17, 31, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 8%;
  backdrop-filter: blur(12px);
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--text);
  text-decoration: none;
}
.logo img {
  width: 36px;
  height: auto;
  display: block;
}
.logo span {
  display: inline-block;
}
nav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 20px;
}
nav ul li a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 10px 8px;
  transition:
    color 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}
nav ul li a:hover,
nav ul li a.active {
  color: var(--text);
  transform: translateY(-1px);
}
main {
  position: relative;
  z-index: 1;
}
section {
  padding: 80px 8%;
}
.page-header {
  max-width: 760px;
  margin: 0 auto;
  padding-bottom: 16px;
}
.page-header h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  margin-bottom: 16px;
  color: var(--text);
}
.page-header p {
  color: var(--text-muted);
  font-size: 1rem;
}
.section-intro {
  max-width: 820px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1rem;
}
.hero {
  display: grid;
  align-items: center;
  gap: 32px;
  background: #101623 url("../bg.jfif") center/cover no-repeat;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 80px;
  margin: 20px 8%;
  box-shadow: var(--shadow);
}
.hero-copy {
  max-width: 640px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero h1 {
  font-size: clamp(2.85rem, 4vw, 4.8rem);
  line-height: 0.98;
  max-width: 10ch;
}
.hero p {
  margin-top: 24px;
  max-width: 610px;
  color: var(--text-muted);
  font-size: 1.05rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--accent);
  color: #0b1422;
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.1);
}
.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.highlight-card {
  background: rgba(17, 24, 39, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 28px 24px;
  min-height: 160px;
  display: grid;
  gap: 12px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}
.organization {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}
.organization h2 {
  color: var(--text);
  margin-bottom: 12px;
}
.org-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}
.org-level-two .org-card {
  min-width: 220px;
}
.org-level-three .org-card {
  min-width: 180px;
}
.org-card {
  background: rgba(17, 24, 39, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.org-card h4 {
  margin-bottom: 10px;
  color: var(--text);
}
.org-card p {
  color: var(--text-muted);
  line-height: 1.7;
}
.program-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.program-card {
  min-height: 260px;
}
.program-meta {
  margin: 12px 0;
  color: var(--text-muted);
}
.program-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.program-list li {
  padding-left: 18px;
  position: relative;
  color: var(--text-muted);
}
.program-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}
.highlight-card strong {
  font-size: 2rem;
  display: block;
  color: var(--text);
}
.highlight-card span {
  color: var(--text-muted);
}
.cards-section h2,
.section-title {
  font-size: 2rem;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.card-container,
.feature-grid,
.contact-grid,
.profile-grid {
  display: grid;
  gap: 24px;
}
.card-container {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.card,
.glass-card,
.info-panel,
.form-panel {
  background: rgba(16, 22, 35, 0.96);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.card h3,
.glass-card h3 {
  margin-bottom: 14px;
  color: var(--text);
}
.card p,
.glass-card p {
  color: var(--text-muted);
  line-height: 1.75;
}
.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.form-panel {
  display: grid;
  gap: 18px;
}
.form-panel label {
  display: grid;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
}
input,
select,
textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: #0d1321;
  color: var(--text);
  outline: none;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}
input:focus,
select:focus,
textarea:focus {
  border-color: rgba(74, 176, 255, 0.45);
  transform: translateY(-1px);
}
textarea {
  min-height: 140px;
  resize: vertical;
}
button,
.btn-submit {
  border: none;
  cursor: pointer;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 700;
  color: #0b1422;
  background: var(--accent);
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}
button:hover,
.btn-submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.list-accent {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.list-accent::before {
  content: "•";
  color: var(--accent);
  font-size: 1.25rem;
  line-height: 0;
}
.contact-grid {
  grid-template-columns: 1.2fr 0.9fr;
}
.contact-panel {
  display: grid;
  gap: 24px;
}
.contact-panel strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
}
.contact-panel p {
  color: var(--text-muted);
}
.map-frame {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.table-card {
  overflow-x: auto;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}
.data-table th,
.data-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}
.data-table th {
  color: var(--text-muted);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.data-table tr:hover {
  background: rgba(255, 255, 255, 0.03);
}
.action-buttons {
  display: flex;
  gap: 10px;
}
.action-btn {
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.action-btn:hover {
  transform: translateY(-1px);
}
.action-btn.edit {
  background: rgba(74, 176, 255, 0.14);
}
.action-btn.delete {
  background: rgba(255, 80, 80, 0.18);
}
.form-card {
  margin-bottom: 28px;
}
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(74, 176, 255, 0.14);
  color: #cbe7ff;
  font-size: 0.92rem;
}
.alert-box {
  padding: 18px 22px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.alert-success {
  background: rgba(74, 176, 255, 0.12);
  color: #d2f1ff;
}
.alert-error {
  background: rgba(255, 80, 80, 0.12);
  color: #ffdede;
}
footer {
  text-align: center;
  padding: 28px 8%;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.profile-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
@media (max-width: 980px) {
  .hero {
    padding: 40px 32px;
  }
  .hero-highlights,
  .card-container,
  .feature-grid,
  .contact-grid,
  .profile-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  header {
    padding: 18px 5%;
  }
  nav {
    flex-direction: column;
    align-items: flex-start;
  }
  section {
    padding: 60px 5%;
  }
  .hero {
    margin: 0 5%;
    border-radius: 24px;
  }
  .hero h1 {
    font-size: 2.6rem;
  }
}
