/* ============================================
   E1H Innovation Hub — Main Stylesheet
   ============================================ */

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

:root {
  --navy: #0A1628;
  --cyan: #00E5C8;
  --cyan-hover: #00C4AB;
  --light-bg: #F7F8FA;
  --white: #ffffff;
  --radius: 0.5rem;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', 'Arial Narrow', Arial, sans-serif;
  letter-spacing: 0.01em;
  line-height: 1.6;
  color: var(--navy);
  background: var(--white);
  min-height: 100vh;
}

::selection {
  background: var(--cyan);
  color: var(--navy);
}

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

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, select, textarea {
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6,
.heading-font {
  font-family: 'Bebas Neue', 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.barlow {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
}

.eyebrow {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
}

.section-title-lg {
  font-size: clamp(3rem, 6vw, 4.5rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
}

/* ---------- LAYOUT ---------- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.grid-5-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.grid-6 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--navy);
  padding: 0.75rem 0;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  height: 2.25rem;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link:hover {
  color: var(--cyan);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
  z-index: 50;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
}

.nav-dropdown-inner {
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 180px;
  padding: 0.25rem 0;
}

.nav-dropdown-item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.625rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s, background 0.2s;
}

.nav-dropdown-item:hover {
  color: var(--cyan);
  background: rgba(255, 255, 255, 0.05);
}

.nav-cta-wrap {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.mobile-toggle {
  display: block;
  padding: 0.5rem;
  color: white;
}

.mobile-menu {
  display: none;
  background: var(--navy);
  padding: 1.5rem;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu-link {
  display: block;
  width: 100%;
  text-align: left;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.mobile-menu-link:hover {
  color: var(--cyan);
}

.mobile-menu-cta {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 1.25rem;
  padding: 0.75rem;
  background: var(--cyan);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: var(--cyan);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: var(--cyan-hover);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border: 1px solid rgba(10, 22, 40, 0.2);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}

.btn-outline-dark:hover {
  background: rgba(10, 22, 40, 0.05);
}

.btn-dark-rounded {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--navy);
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 9999px;
  transition: background 0.3s;
}

.btn-dark-rounded:hover {
  background: rgba(10, 22, 40, 0.9);
}

.btn-sm {
  padding: 0.625rem 1.5rem;
}

.icon-sm {
  width: 1rem;
  height: 1rem;
}

.icon-xs {
  width: 0.875rem;
  height: 0.875rem;
}

.icon-lg {
  width: 1.5rem;
  height: 1.5rem;
}

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,22,40,0.92), rgba(10,22,40,0.75), rgba(10,22,40,0.50));
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: linear-gradient(rgba(255,255,255,0.15) 1px, transparent 1px),
                     linear-gradient(90deg, rgba(255,255,255,0.15) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 9rem 1.5rem 6rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-panel {
  width: 100%;
  max-width: 42rem;
  background: rgba(10, 22, 40, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  padding: 2.5rem;
  border-left: 4px solid var(--cyan);
}

.hero-logo {
  height: 5rem;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 2rem;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 28rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  margin-top: 1.5rem;
  width: 100%;
  max-width: 42rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 22, 40, 0.5);
  backdrop-filter: blur(12px);
}

.hero-stat {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat:last-child {
  border-bottom: none;
}

.hero-stat-label {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.25rem;
}

.hero-stat-value {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  line-height: 1.4;
}

.hero-decorative {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50%;
  pointer-events: none;
  overflow: hidden;
  display: none;
}

.hero-accent-lines {
  position: absolute;
  right: 8rem;
  top: 0;
  bottom: 0;
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
  opacity: 0.2;
}

.hero-accent-line {
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--cyan), transparent);
}

.hero-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.07;
}

.hero-watermark img {
  width: 55%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  user-select: none;
  pointer-events: none;
}

.hero-corner-1 {
  position: absolute;
  bottom: 6rem;
  right: 3rem;
  width: 6rem;
  height: 6rem;
  border-bottom: 2px solid rgba(0, 229, 200, 0.3);
  border-right: 2px solid rgba(0, 229, 200, 0.3);
}

.hero-corner-2 {
  position: absolute;
  top: 8rem;
  right: 5rem;
  width: 4rem;
  height: 4rem;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.scroll-cue svg {
  animation: bounce 2s infinite;
}

/* ---------- MISSION / VISION ---------- */
.bg-white { background: var(--white); }
.bg-navy { background: var(--navy); }
.bg-light { background: var(--light-bg); }

.panel-dark {
  background: var(--navy);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--cyan);
}

.panel-light {
  background: var(--light-bg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--navy);
}

.panel-white {
  background: var(--white);
  border: 1px solid rgba(10, 22, 40, 0.08);
  padding: 2.5rem;
}

.panel-white-accent {
  background: var(--white);
  border: 1px solid rgba(10, 22, 40, 0.08);
  padding: 2.5rem;
  border-top: 3px solid var(--cyan);
}

.corner-deco {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 3rem;
  height: 3rem;
}

.corner-deco-cyan {
  border-bottom: 1px solid rgba(0, 229, 200, 0.2);
  border-right: 1px solid rgba(0, 229, 200, 0.2);
}

.corner-deco-dark {
  border-bottom: 1px solid rgba(10, 22, 40, 0.1);
  border-right: 1px solid rgba(10, 22, 40, 0.1);
}

.text-white { color: white; }
.text-navy { color: var(--navy); }
.text-cyan { color: var(--cyan); }
.text-white-70 { color: rgba(255, 255, 255, 0.7); }
.text-white-55 { color: rgba(255, 255, 255, 0.55); }
.text-white-45 { color: rgba(255, 255, 255, 0.45); }
.text-white-40 { color: rgba(255, 255, 255, 0.4); }
.text-white-35 { color: rgba(255, 255, 255, 0.35); }
.text-white-30 { color: rgba(255, 255, 255, 0.3); }
.text-white-20 { color: rgba(255, 255, 255, 0.2); }
.text-navy-80 { color: rgba(10, 22, 40, 0.8); }
.text-navy-60 { color: rgba(10, 22, 40, 0.6); }
.text-navy-55 { color: rgba(10, 22, 40, 0.55); }
.text-navy-50 { color: rgba(10, 22, 40, 0.5); }
.text-navy-45 { color: rgba(10, 22, 40, 0.45); }
.text-navy-40 { color: rgba(10, 22, 40, 0.4); }
.text-navy-30 { color: rgba(10, 22, 40, 0.3); }

.uppercase { text-transform: uppercase; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }

.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-tiny { font-size: 10px; }
.text-micro { font-size: 9px; }

.tracking-wide { letter-spacing: 0.05em; }
.tracking-wider { letter-spacing: 0.1em; }
.tracking-widest { letter-spacing: 0.2em; }
.tracking-tight { letter-spacing: -0.01em; }

.leading-tight { line-height: 1.15; }
.leading-snug { line-height: 1.3; }
.leading-relaxed { line-height: 1.7; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-7 { margin-bottom: 1.75rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-14 { margin-bottom: 3.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.pt-14 { padding-top: 3.5rem; }

/* ---------- UNLEASHES / PILLARS ---------- */
.unleash-section {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
  background: var(--navy);
}

.grid-pattern-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: linear-gradient(rgba(255,255,255,0.2) 1px, transparent 1px),
                     linear-gradient(90deg, rgba(255,255,255,0.2) 1px, transparent 1px);
  background-size: 60px 60px;
}

.glow-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  border-radius: 50%;
  background: rgba(0, 229, 200, 0.05);
  filter: blur(120px);
  pointer-events: none;
}

.unleash-headline {
  font-size: clamp(2rem, 5vw, 4.5rem);
  color: white;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-align: center;
}

.unleash-highlight {
  position: relative;
  display: inline-block;
  margin: 0 0.5rem;
  color: var(--navy);
  background: var(--cyan);
  padding: 0.25rem 1.25rem;
}

.pillar-card {
  background: var(--navy);
  padding: 2.5rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2rem;
  transition: background 0.3s;
}

.pillar-card:hover {
  background: rgba(0, 229, 200, 0.08);
}

.pillar-icon {
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  border: 1px solid rgba(0, 229, 200, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.pillar-card:hover .pillar-icon {
  border-color: rgba(0, 229, 200, 0.6);
  background: rgba(0, 229, 200, 0.05);
}

.pillar-icon svg {
  width: 4rem;
  height: 4rem;
}

.pillar-title {
  color: white;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.pillar-divider {
  width: 2rem;
  height: 1px;
  background: rgba(0, 229, 200, 0.4);
  transition: all 0.3s;
}

.pillar-card:hover .pillar-divider {
  width: 3rem;
  background: var(--cyan);
}

/* ---------- GALLERY ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  grid-auto-rows: 220px;
}

.gallery-cell {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.gallery-cell:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.7);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
}

.gallery-cell:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info {
  width: 100%;
  background: var(--navy);
  border-top: 2px solid var(--cyan);
  padding: 0.75rem 1rem;
}

.gallery-tag {
  color: var(--cyan);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 2px;
}

.gallery-title {
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.gallery-date {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  margin-top: 2px;
}

.row-span-2 { grid-row: span 2; }
.col-span-1 { grid-column: span 1; }
.col-span-2 { grid-column: span 2; }

/* ---------- PROGRAMME TABS ---------- */
.tab-group {
  display: flex;
  gap: 2px;
  background: var(--white);
  border: 1px solid rgba(10, 22, 40, 0.08);
  padding: 4px;
}

.tab-btn {
  padding: 0.625rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s;
  color: rgba(10, 22, 40, 0.5);
}

.tab-btn:hover {
  color: var(--navy);
}

.tab-btn.active {
  background: var(--navy);
  color: white;
}

.programme-content {
  display: none;
}

.programme-content.active {
  display: grid;
}

.programme-image {
  overflow: hidden;
}

.programme-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.check-icon {
  width: 1rem;
  height: 1rem;
  color: var(--cyan);
  flex-shrink: 0;
  margin-top: 2px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.check-list li span {
  color: rgba(10, 22, 40, 0.7);
  font-size: 0.875rem;
}

/* ---------- COMPANY LOGOS ---------- */
.company-logo-card {
  background: var(--white);
  border: 1px solid rgba(10, 22, 40, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  min-height: 110px;
  transition: all 0.3s;
}

.company-logo-card:hover {
  border-color: rgba(0, 229, 200, 0.4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.company-logo-card img {
  max-height: 3rem;
  max-width: 130px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s;
}

.company-logo-card:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* ---------- ADVISOR CARDS ---------- */
.advisor-card {
  background: var(--white);
  border: 1px solid rgba(10, 22, 40, 0.08);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s;
}

.advisor-card:hover {
  border-color: rgba(0, 229, 200, 0.4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.advisor-avatar {
  width: 5rem;
  height: 5rem;
  margin-bottom: 1rem;
  overflow: hidden;
  background: #F0F2F5;
  border: 1px solid rgba(10, 22, 40, 0.08);
}

.advisor-avatar-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10,22,40,0.1), rgba(0,229,200,0.1));
}

.advisor-divider {
  width: 1.5rem;
  height: 1px;
  background: var(--cyan);
  margin-bottom: 0.75rem;
}

/* ---------- CALENDAR ---------- */
.calendar-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.2s;
}

.calendar-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.calendar-item.featured {
  border-left-color: var(--cyan);
  background: rgba(0, 229, 200, 0.05);
}

.calendar-date {
  flex-shrink: 0;
  width: 6rem;
}

.calendar-badge {
  margin-left: auto;
  padding: 0.25rem 0.75rem;
  background: var(--cyan);
  color: var(--navy);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

/* ---------- NEWS TILES ---------- */
.news-tile {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: background 0.2s;
}

.news-tile:hover {
  background: rgba(255, 255, 255, 0.07);
}

.news-tile-inner {
  padding: 1.25rem;
}

.news-tile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(0, 229, 200, 0.6);
  transition: color 0.2s;
}

.linkedin-link:hover {
  color: var(--cyan);
}

/* ---------- EVENTS CAROUSEL ---------- */
.events-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.events-carousel::-webkit-scrollbar {
  display: none;
}

.event-card {
  position: relative;
  flex-shrink: 0;
  width: 85vw;
  min-height: 420px;
  scroll-snap-align: start;
  overflow: hidden;
}

.event-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.event-card:hover img {
  transform: scale(1.05);
}

.event-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.9), rgba(10,22,40,0.4), transparent);
}

.event-card-content {
  position: absolute;
  inset: 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.event-tag {
  align-self: flex-start;
  padding: 0.375rem 0.75rem;
  border: 1px solid rgba(0, 229, 200, 0.6);
  color: var(--cyan);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.scroll-btn {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(10, 22, 40, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: all 0.2s;
}

.scroll-btn:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

/* ---------- PARTNER CARDS ---------- */
.partner-card {
  border: 1px solid rgba(10, 22, 40, 0.08);
  padding: 2.5rem;
}

.partner-logo-wrap {
  height: 6rem;
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.partner-logo-wrap img {
  width: auto;
  height: 100%;
  object-fit: contain;
}

/* ---------- REGISTER FORM ---------- */
.form-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  height: 3rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 0 0.75rem;
  font-size: 0.875rem;
  transition: border-color 0.2s;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.form-input:focus {
  outline: none;
  border-color: var(--cyan);
}

.form-select {
  width: 100%;
  height: 3rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 0 0.75rem;
  font-size: 0.875rem;
  transition: border-color 0.2s;
}

.form-select:focus {
  outline: none;
  border-color: var(--cyan);
}

.form-select option {
  background: var(--navy);
}

.form-textarea {
  width: 100%;
  min-height: 110px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 0.75rem;
  font-size: 0.875rem;
  resize: none;
  transition: border-color 0.2s;
}

.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.form-textarea:focus {
  outline: none;
  border-color: var(--cyan);
}

.form-submit {
  width: 100%;
  height: 3rem;
  background: var(--cyan);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}

.form-submit:hover {
  background: var(--cyan-hover);
}

/* -- Contact page form (light) -- */
.form-light-input {
  width: 100%;
  height: 3rem;
  background: white;
  border: none;
  border-radius: 0.75rem;
  color: var(--navy);
  padding: 0 1rem;
  font-size: 0.875rem;
}

.form-light-input::placeholder {
  color: rgba(10, 22, 40, 0.3);
}

.form-light-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--cyan);
}

.form-light-textarea {
  width: 100%;
  min-height: 140px;
  background: white;
  border: none;
  border-radius: 0.75rem;
  color: var(--navy);
  padding: 1rem;
  font-size: 0.875rem;
  resize: none;
}

.form-light-textarea::placeholder {
  color: rgba(10, 22, 40, 0.3);
}

.form-light-textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--cyan);
}

.form-light-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(10, 22, 40, 0.4);
  margin-bottom: 0.5rem;
}

.contact-form-wrap {
  background: var(--light-bg);
  border-radius: 1.5rem;
  padding: 2rem;
}

.contact-icon-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: rgba(0, 229, 200, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.contact-icon-wrap:hover {
  background: rgba(0, 229, 200, 0.2);
}

.social-icon-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  border: 1px solid rgba(10, 22, 40, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.social-icon-btn:hover {
  border-color: rgba(0, 229, 200, 0.3);
  background: rgba(0, 229, 200, 0.05);
}

/* ---------- EVENTS PAGE ---------- */
.event-list-card {
  display: grid;
  grid-template-columns: 1fr;
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(10, 22, 40, 0.05);
  transition: all 0.5s;
}

.event-list-card:hover {
  border-color: rgba(0, 229, 200, 0.2);
  box-shadow: 0 20px 40px rgba(0, 229, 200, 0.05);
}

.event-list-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.event-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.event-list-card:hover .event-list-image img {
  transform: scale(1.05);
}

.event-list-body {
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-type-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(0, 229, 200, 0.1);
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 9999px;
  width: fit-content;
  margin-bottom: 1rem;
}

/* ---------- APPLY PAGE ---------- */
.apply-step-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem 2.5rem;
  border-top: 3px solid var(--cyan);
}

.step-indicator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.step-dot {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.step-dot.active {
  background: var(--cyan);
  color: var(--navy);
}

.step-dot.pending {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.3);
}

.step-dot.done {
  background: var(--cyan);
  color: var(--navy);
}

.step-connector {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 0.5rem;
}

.step-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.programme-select-btn {
  text-align: left;
  padding: 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s;
  width: 100%;
}

.programme-select-btn:hover {
  border-color: rgba(255, 255, 255, 0.25);
}

.programme-select-btn.selected {
  border-color: var(--cyan);
  background: rgba(0, 229, 200, 0.05);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--navy);
  color: white;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-heading {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1rem;
}

.footer-link {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin-bottom: 0.625rem;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--cyan);
}

.footer-social-link {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.footer-social-link:hover {
  color: var(--cyan);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

/* ---------- UTILITIES ---------- */
.hidden { display: none !important; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.w-full { width: 100%; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.inline-flex { display: inline-flex; align-items: center; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.border-t-navy { border-top: 1px solid rgba(10, 22, 40, 0.1); }
.grayscale { filter: grayscale(100%); }

.gradient-text {
  background: linear-gradient(to right, #00E5C8, #00B4D8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.success-message {
  border: 1px solid rgba(0, 229, 200, 0.2);
  padding: 3rem;
  text-align: center;
}

/* ---------- RESPONSIVE ---------- */
@media (min-width: 640px) {
  .sm-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .sm-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .sm-grid-4 { grid-template-columns: repeat(4, 1fr); }
  .sm-inline { display: inline; }

  .hero-stats {
    flex-direction: row;
  }

  .hero-stat {
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
  }

  .hero-stat:last-child {
    border-right: none;
  }

  .form-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .contact-form-wrap {
    padding: 2.5rem;
  }
}

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }

  .grid-5-col {
    grid-template-columns: 2fr 3fr;
  }

  .grid-cal {
    grid-template-columns: 3fr 2fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-panel {
    padding: 3.5rem;
  }

  .hero-logo {
    height: 8rem;
  }

  .panel-dark, .panel-light {
    padding: 3rem;
  }

  .section-title {
    font-size: 3.75rem;
  }

  .event-list-card {
    grid-template-columns: 2fr 3fr;
  }

  .event-list-image {
    aspect-ratio: auto;
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-cta-wrap { display: flex; }
  .mobile-toggle { display: none; }

  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-6 { grid-template-columns: repeat(6, 1fr); }

  .lg-grid-2 { grid-template-columns: repeat(2, 1fr); }

  .hero-decorative { display: block; }

  .event-card {
    width: calc(50% - 8px);
  }
}