/* ===================== VARIABLES ===================== */
:root {
  --gold: #F5C518;
  --gold-light: #FFD700;
  --gold-dark: #B8960C;
  --white: #FFFFFF;
  --silver: #C0C0C0;
  --black: #000000;
  --dark: #0A0A0A;
  --dark2: #111111;
  --dark3: #1a1a1a;
}

/* ===================== RESET ===================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.3;
}

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; display: block; }

/* ===================== TYPOGRAPHY ===================== */
.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  color: var(--white);
}

.section-subtitle {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  max-width: 680px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.page-header {
  text-align: center;
  padding: 120px 20px 60px;
  position: relative;
}

.page-header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ===================== LAYOUT ===================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin: 0;
}

/* ===================== HEADER ===================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.header-logo img {
  height: 36px;
  width: auto;
}

.header-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: var(--white);
}

.header-logo-text span {
  color: var(--gold);
}

/* ===================== NAVIGATION ===================== */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  padding: 8px 12px;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(245,197,24,0.06);
}

.nav-portal {
  margin-left: 8px;
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.3);
  color: var(--gold) !important;
  border-radius: 3px;
  padding: 8px 16px !important;
}

.nav-portal:hover {
  background: rgba(245,197,24,0.2) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===================== HERO (Home page) ===================== */
.hero-academic {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 20px 80px;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(245,197,24,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(245,197,24,0.05) 0%, transparent 60%),
    var(--dark);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,197,24,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,197,24,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.4);
  color: var(--gold);
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.05;
}

.hero-title span { color: var(--gold); }

.hero-subtitle {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--silver);
  letter-spacing: 0.08em;
  margin-bottom: 40px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  padding: 14px 32px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--black);
  box-shadow: 0 0 30px rgba(245,197,24,0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(245,197,24,0.4);
}

.btn-outline:hover {
  background: rgba(245,197,24,0.1);
  color: var(--gold-light);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ===================== CARDS ===================== */
.card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s;
}

.card:hover {
  border-color: rgba(245,197,24,0.3);
  transform: translateY(-4px);
}

.card-gold-top {
  border-top: 3px solid var(--gold);
  border-radius: 4px 4px 0 0;
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.card-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

.card-link {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 16px;
  transition: color 0.2s;
}

.card-link:hover { color: var(--gold-light); }
.card-link::after { content: ' \2192'; }

/* ===================== STATS ROW ===================== */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  padding: 60px 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(245,197,24,0.02);
  text-align: center;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 20px rgba(245,197,24,0.2);
}

.stat-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
}

/* ===================== GRID LAYOUTS ===================== */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

/* ===================== INSTRUCTOR CARDS ===================== */
.instructor-card {
  text-align: center;
  padding: 32px 24px 28px;
}

.instructor-photo-wrap {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
}

.instructor-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instructor-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.instructor-role {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.instructor-bio {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  text-align: left;
}

.instructor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 16px;
}

.tag {
  font-size: 0.68rem;
  background: rgba(245,197,24,0.07);
  border: 1px solid rgba(245,197,24,0.2);
  color: var(--gold);
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

/* ===================== TABLE ===================== */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
}

.data-table th {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: left;
  padding: 12px 16px;
  border-bottom: 2px solid rgba(245,197,24,0.2);
}

.data-table td {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.data-table tr:hover td {
  background: rgba(245,197,24,0.03);
}

/* ===================== NEWS CARDS ===================== */
.news-card .news-date {
  font-family: 'Oswald', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.news-card .news-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.news-card .news-excerpt {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ===================== STEPS ===================== */
.steps {
  counter-reset: step;
}

.step {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--gold);
  min-width: 40px;
  text-align: center;
  line-height: 1;
}

.step-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.step-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ===================== LIST STYLES ===================== */
.gold-list {
  list-style: none;
  padding: 0;
}

.gold-list li {
  padding: 10px 0 10px 24px;
  position: relative;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.gold-list li::before {
  content: '\25B8';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ===================== FOOTER ===================== */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 20px;
  text-align: center;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* ===================== MODULE CARD (Programs) ===================== */
.module-card {
  padding: 28px 24px;
}

.module-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: rgba(245,197,24,0.2);
  margin-bottom: 8px;
}

.module-outcomes {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.module-outcomes-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 8px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    padding: 12px 16px;
    width: 100%;
  }

  .nav-toggle { display: block; }

  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

  .stats-row { gap: 32px; }
}

@media (max-width: 480px) {
  .page-header { padding: 100px 16px 40px; }
  .content-section { padding: 40px 16px; }
  .hero-academic { padding: 100px 16px 60px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 300px; }
  .step { gap: 16px; }
}
