/* ================================================================
   GWAMINE COLLEGE OF NURSING SCIENCES
   Healthcare Education Excellence Platform
   Design System & Complete Stylesheet
   ================================================================ */

/* ── DESIGN TOKENS ─────────────────────────────────────────────── */
:root {
  /* Colors */
  --deep-blue: #0A1628;
  --medical-blue: #1B3A5C;
  --medical-blue-light: #234B75;
  --professional-teal: #0D9488;
  --professional-teal-dark: #0B7A70;
  --professional-teal-light: rgba(13, 148, 136, 0.12);
  --soft-emerald: #10B981;
  --warm-gold: #D4A843;
  --warm-gold-light: rgba(212, 168, 67, 0.15);
  --pure-white: #FFFFFF;
  --off-white: #F8FAFC;
  --light-gray: #F1F5F9;
  --border-light: #E2E8F0;
  --border-medium: #CBD5E1;
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
  --overlay-dark: rgba(10, 22, 40, 0.75);
  --overlay-medium: rgba(10, 22, 40, 0.55);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.14), 0 8px 16px rgba(0, 0, 0, 0.06);
  --shadow-teal: 0 8px 30px rgba(13, 148, 136, 0.2);
  --shadow-gold: 0 8px 30px rgba(212, 168, 67, 0.15);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Playfair Display', 'Georgia', serif;
  --fs-hero: clamp(2.4rem, 5vw, 4.2rem);
  --fs-h1: clamp(2rem, 4vw, 3.2rem);
  --fs-h2: clamp(1.6rem, 3vw, 2.4rem);
  --fs-h3: clamp(1.2rem, 2vw, 1.5rem);
  --fs-h4: clamp(1.05rem, 1.5vw, 1.2rem);
  --fs-body: clamp(0.95rem, 1.2vw, 1.05rem);
  --fs-sm: clamp(0.82rem, 1vw, 0.9rem);
  --fs-xs: clamp(0.72rem, 0.9vw, 0.8rem);
  --lh-tight: 1.2;
  --lh-normal: 1.6;
  --lh-relaxed: 1.8;

  /* Spacing */
  --section-padding: clamp(4rem, 8vw, 7rem) 0;
  --container-max: 1200px;
  --container-padding: 0 clamp(1.2rem, 4vw, 2rem);

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 200ms ease;
  --transition-base: 300ms ease;
  --transition-smooth: 500ms var(--ease-out-expo);
  --transition-slow: 700ms var(--ease-out-expo);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--text-primary);
  background: var(--pure-white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ── TYPOGRAPHY ────────────────────────────────────────────────── */
.section-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--professional-teal);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--professional-teal);
  display: inline-block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: var(--lh-tight);
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-title span {
  color: var(--professional-teal);
}

.section-subtitle {
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
  color: var(--text-secondary);
  max-width: 640px;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-label {
  justify-content: center;
}

.section-header.centered .section-subtitle {
  margin: 0 auto;
}

/* ── BUTTONS ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: var(--professional-teal);
  color: var(--pure-white);
  box-shadow: var(--shadow-teal);
}

.btn-primary::after {
  background: linear-gradient(135deg, var(--professional-teal-dark), var(--soft-emerald));
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(13, 148, 136, 0.35);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: var(--pure-white);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.btn-outline-dark {
  border: 2px solid var(--border-medium);
  color: var(--text-primary);
}

.btn-outline-dark:hover {
  border-color: var(--professional-teal);
  color: var(--professional-teal);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--warm-gold), #E8C060);
  color: var(--deep-blue);
  font-weight: 700;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn svg,
.btn i {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-base);
}

.btn:hover svg,
.btn:hover i {
  transform: translateX(3px);
}

/* ── NAVIGATION ────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  padding: 0.6rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1001;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--professional-teal), var(--soft-emerald));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--pure-white);
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav-logo-text .name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--pure-white);
  letter-spacing: 0.2px;
}

.nav-logo-text .tagline {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-link {
  padding: 0.5rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--pure-white);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  background: var(--professional-teal);
  border-radius: 2px;
}

.nav-cta {
  margin-left: 0.8rem;
  padding: 0.55rem 1.4rem;
  font-size: 0.8rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  z-index: 1001;
  cursor: pointer;
}

.nav-toggle span {
  width: 100%;
  height: 2px;
  background: var(--pure-white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── HERO SECTION ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--deep-blue);
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-bg {
  position: absolute;
  inset: -20px;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45) contrast(1.1);
  transition: transform 8s ease-out;
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1.05);
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 22, 40, 0.6) 0%,
    rgba(10, 22, 40, 0.35) 40%,
    rgba(10, 22, 40, 0.55) 80%,
    rgba(10, 22, 40, 0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 0 clamp(1.2rem, 4vw, 2rem);
  max-width: var(--container-max);
  margin: 0 auto;
  padding-top: 6rem;
}

.hero-text {
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(13, 148, 136, 0.15);
  border: 1px solid rgba(13, 148, 136, 0.3);
  border-radius: var(--radius-full);
  padding: 0.4rem 1.1rem;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--soft-emerald);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--soft-emerald);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: var(--fs-hero);
  font-weight: 700;
  line-height: 1.15;
  color: var(--pure-white);
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--ease-out-expo);
}

.hero-slide.active .hero-headline {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.hero-headline .accent {
  background: linear-gradient(135deg, var(--professional-teal), var(--soft-emerald));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtext {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: var(--lh-relaxed);
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s var(--ease-out-expo);
}

.hero-slide.active .hero-subtext {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s var(--ease-out-expo);
}

.hero-slide.active .hero-actions {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

/* Hero Slide Indicators */
.hero-indicators {
  position: absolute;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 0.6rem;
}

.hero-indicator {
  width: 32px;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.hero-indicator.active {
  width: 56px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-indicator.active::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--professional-teal);
  border-radius: 3px;
  animation: indicator-fill 6s linear forwards;
}

@keyframes indicator-fill {
  from { width: 0%; }
  to { width: 100%; }
}

/* Hero Stats */
.hero-stats {
  position: absolute;
  bottom: 160px;
  right: clamp(2rem, 5vw, 4rem);
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-stat {
  text-align: right;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.6s var(--ease-out-expo);
}

.hero-stat.visible {
  opacity: 1;
  transform: translateX(0);
}

.hero-stat .number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--pure-white);
  line-height: 1;
}

.hero-stat .number .suffix {
  color: var(--professional-teal);
  font-size: 1.2rem;
}

.hero-stat .label {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* ── CREDIBILITY BAR ───────────────────────────────────────────── */
.credibility-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 0;
}

.credibility-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  flex-wrap: wrap;
}

.credibility-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  white-space: nowrap;
}

.credibility-item .check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(13, 148, 136, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.credibility-item .check svg {
  width: 10px;
  height: 10px;
  stroke: var(--professional-teal);
  stroke-width: 3;
}

/* ── SECTIONS (COMMON) ─────────────────────────────────────────── */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section-alt {
  background: var(--off-white);
}

.section-dark {
  background: var(--deep-blue);
  color: var(--pure-white);
}

.section-dark .section-title {
  color: var(--pure-white);
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
}

/* Decorative elements */
.section-decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.06;
  pointer-events: none;
}

/* ── ABOUT SECTION ─────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform var(--transition-slow);
}

.about-image-wrapper:hover .about-image {
  transform: scale(1.03);
}

.about-image-accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 60%;
  height: 60%;
  border: 3px solid var(--professional-teal);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.3;
}

.about-content p {
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: 1.2rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--professional-teal-light);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

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

.about-highlight-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--professional-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--pure-white);
}

.about-highlight-icon svg {
  width: 18px;
  height: 18px;
}

.about-highlight h4 {
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.about-highlight p {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  margin: 0;
}

/* ── JOURNEY / TIMELINE ────────────────────────────────────────── */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--professional-teal), var(--professional-teal), transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
  padding-right: calc(50% + 2rem);
  text-align: right;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
  padding-left: calc(50% + 2rem);
  text-align: left;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--pure-white);
  border: 3px solid var(--professional-teal);
  z-index: 2;
  transition: all var(--transition-base);
}

.timeline-item:hover .timeline-marker {
  background: var(--professional-teal);
  box-shadow: 0 0 0 6px rgba(13, 148, 136, 0.2);
  transform: translateX(-50%) scale(1.3);
}

.timeline-content {
  background: var(--pure-white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid var(--border-light);
}

.timeline-content:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.timeline-year {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--professional-teal);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.4rem;
}

.timeline-content h3 {
  font-size: var(--fs-h4);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.timeline-content p {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: var(--lh-normal);
}

/* ── WHY CHOOSE ────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1px solid var(--border-light);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--professional-teal), var(--soft-emerald));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-smooth);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--professional-teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  transition: all var(--transition-base);
  color: var(--professional-teal);
}

.why-card:hover .why-card-icon {
  background: var(--professional-teal);
  color: var(--pure-white);
  box-shadow: 0 0 0 8px rgba(13, 148, 136, 0.1);
}

.why-card-icon svg {
  width: 24px;
  height: 24px;
}

.why-card h3 {
  font-size: var(--fs-h4);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: var(--lh-normal);
}

/* ── ACADEMIC PROGRAMMES ───────────────────────────────────────── */
.programmes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.programme-card {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all var(--transition-smooth);
  position: relative;
}

.programme-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.programme-card-header {
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(135deg, var(--deep-blue), var(--medical-blue));
  position: relative;
  overflow: hidden;
}

.programme-card-header::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(13, 148, 136, 0.15);
}

.programme-card-header .programme-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(13, 148, 136, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--professional-teal);
}

.programme-card-header .programme-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--professional-teal);
}

.programme-card-header h3 {
  font-size: var(--fs-h4);
  color: var(--pure-white);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.programme-card-header .duration {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.programme-card-body {
  padding: 1.5rem;
}

.programme-card-body p {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: var(--lh-normal);
  margin-bottom: 1rem;
}

.programme-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.programme-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-xs);
  color: var(--text-secondary);
}

.programme-feature .check-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--professional-teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.programme-feature .check-icon svg {
  width: 9px;
  height: 9px;
  stroke: var(--professional-teal);
  stroke-width: 3;
}

/* ── CLINICAL TRAINING ─────────────────────────────────────────── */
.clinical-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.clinical-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.clinical-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.clinical-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(12px);
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--pure-white);
  font-size: var(--fs-xs);
  font-weight: 600;
}

.clinical-badge svg {
  width: 16px;
  height: 16px;
  stroke: var(--professional-teal);
}

.clinical-features {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}

.clinical-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  background: rgba(13, 148, 136, 0.06);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--professional-teal);
  transition: all var(--transition-base);
}

.clinical-feature:hover {
  transform: translateX(6px);
  background: rgba(13, 148, 136, 0.1);
  box-shadow: var(--shadow-md);
}

.clinical-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--professional-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--pure-white);
}

.clinical-feature-icon svg {
  width: 20px;
  height: 20px;
}

.clinical-feature h4 {
  font-size: var(--fs-sm);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.clinical-feature p {
  font-size: var(--fs-xs);
  color: var(--text-secondary);
  line-height: var(--lh-normal);
}

/* ── FACILITIES ────────────────────────────────────────────────── */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.facility-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.facility-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.facility-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--medical-blue), var(--deep-blue));
  display: flex;
  align-items: center;
  justify-content: center;
}

.facility-card-bg svg {
  width: 48px;
  height: 48px;
  stroke: rgba(13, 148, 136, 0.3);
  transition: all var(--transition-base);
}

.facility-card:hover .facility-card-bg svg {
  stroke: rgba(13, 148, 136, 0.5);
  transform: scale(1.1);
}

.facility-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(10, 22, 40, 0.7) 70%,
    rgba(10, 22, 40, 0.95) 100%
  );
  z-index: 1;
}

.facility-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 2;
  transform: translateY(10px);
  transition: transform var(--transition-smooth);
}

.facility-card:hover .facility-card-content {
  transform: translateY(0);
}

.facility-card-content h3 {
  font-size: var(--fs-h4);
  color: var(--pure-white);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.facility-card-content p {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.65);
  line-height: var(--lh-normal);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition-smooth);
}

.facility-card:hover .facility-card-content p {
  opacity: 1;
  transform: translateY(0);
}

/* ── VALUES ────────────────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(13, 148, 136, 0.3);
  background: rgba(255, 255, 255, 0.06);
}

.value-card:hover::before {
  opacity: 1;
}

.value-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(13, 148, 136, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  transition: all var(--transition-base);
  color: var(--professional-teal);
}

.value-card:hover .value-icon {
  background: var(--professional-teal);
  color: var(--pure-white);
  box-shadow: 0 0 0 10px rgba(13, 148, 136, 0.1), 0 0 0 20px rgba(13, 148, 136, 0.05);
}

.value-icon svg {
  width: 26px;
  height: 26px;
}

.value-card h3 {
  font-size: var(--fs-h4);
  color: var(--pure-white);
  font-weight: 700;
  margin-bottom: 0.4rem;
  position: relative;
}

.value-card p {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.55);
  line-height: var(--lh-normal);
  position: relative;
}

/* ── ADMISSIONS ────────────────────────────────────────────────── */
.admissions-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
}

.admission-steps {
  counter-reset: step;
}

.admission-step {
  display: flex;
  gap: 1.2rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  transition: all var(--transition-base);
  position: relative;
}

.admission-step:hover {
  background: var(--professional-teal-light);
  transform: translateX(6px);
}

.admission-step-number {
  counter-increment: step;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--professional-teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: var(--fs-sm);
  color: var(--professional-teal);
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.admission-step:hover .admission-step-number {
  background: var(--professional-teal);
  color: var(--pure-white);
}

.admission-step h4 {
  font-size: var(--fs-h4);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.admission-step p {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: var(--lh-normal);
}

/* FAQ Accordion */
.faq-section {
  margin-top: 2rem;
}

.faq-section h3 {
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-bottom: 1.2rem;
  font-family: var(--font-serif);
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item.active {
  border-color: var(--professional-teal);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.3rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  text-align: left;
  color: var(--text-primary);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.faq-question:hover {
  color: var(--professional-teal);
}

.faq-question .faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--professional-teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.faq-item.active .faq-question .faq-icon {
  background: var(--professional-teal);
  color: var(--pure-white);
  transform: rotate(180deg);
}

.faq-question .faq-icon svg {
  width: 14px;
  height: 14px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo), padding 0.4s var(--ease-out-expo);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 1.3rem 1.1rem;
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
}

/* Requirements sidebar */
.admissions-sidebar {
  position: sticky;
  top: 100px;
}

.requirements-card {
  background: linear-gradient(135deg, var(--deep-blue), var(--medical-blue));
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: var(--pure-white);
}

.requirements-card h3 {
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-bottom: 1.2rem;
  font-family: var(--font-serif);
}

.requirement-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.requirement-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.requirement-item .req-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(13, 148, 136, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.requirement-item .req-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--professional-teal);
}

.requirement-item h4 {
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.requirement-item p {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.6);
  line-height: var(--lh-normal);
}

.admissions-cta {
  margin-top: 1.5rem;
}

.admissions-cta .btn {
  width: 100%;
  justify-content: center;
}

/* ── LEADERSHIP ────────────────────────────────────────────────── */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.leader-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  background: var(--pure-white);
  transition: all var(--transition-smooth);
}

.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.leader-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 1.2rem;
  background: linear-gradient(135deg, var(--medical-blue), var(--deep-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--professional-teal);
  position: relative;
  overflow: hidden;
}

.leader-avatar::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  border: 2px solid rgba(13, 148, 136, 0.3);
}

.leader-card h3 {
  font-size: var(--fs-h4);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.leader-card .role {
  font-size: var(--fs-xs);
  color: var(--professional-teal);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.6rem;
}

.leader-card p {
  font-size: var(--fs-xs);
  color: var(--text-secondary);
  line-height: var(--lh-normal);
}

/* ── NEWS ──────────────────────────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.5rem;
}

.news-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--pure-white);
  border: 1px solid var(--border-light);
  transition: all var(--transition-smooth);
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.news-card-image {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--medical-blue), var(--deep-blue));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-card-image svg {
  width: 40px;
  height: 40px;
  stroke: rgba(13, 148, 136, 0.3);
}

.news-card-image .news-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--professional-teal);
  color: var(--pure-white);
  font-size: var(--fs-xs);
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
}

.news-card-body {
  padding: 1.5rem;
}

.news-card-meta {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.news-card-body h3 {
  font-size: var(--fs-h4);
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: var(--lh-tight);
  transition: color var(--transition-fast);
}

.news-card:hover .news-card-body h3 {
  color: var(--professional-teal);
}

.news-card-body p {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: var(--lh-normal);
}

.news-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.news-mini-card {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
  cursor: pointer;
}

.news-mini-card:hover {
  border-color: var(--professional-teal);
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.news-mini-thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--medical-blue), var(--deep-blue));
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-mini-thumb svg {
  width: 24px;
  height: 24px;
  stroke: rgba(13, 148, 136, 0.4);
}

.news-mini-card h4 {
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-bottom: 0.3rem;
  line-height: var(--lh-tight);
}

.news-mini-card .date {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

/* ── CONTACT ───────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}

.contact-form {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: var(--fs-sm);
  color: var(--text-primary);
  transition: all var(--transition-fast);
  background: var(--off-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--professional-teal);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
  background: var(--pure-white);
}

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

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--off-white);
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

.contact-info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--professional-teal);
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--professional-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--pure-white);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-info-card h4 {
  font-size: var(--fs-sm);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.contact-info-card p {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: var(--lh-normal);
}

.contact-map {
  margin-top: 1.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 220px;
  background: linear-gradient(135deg, var(--medical-blue), var(--deep-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.contact-map::after {
  content: 'Campus Location — Barnawa GRA, Kaduna';
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  letter-spacing: 1px;
}

/* ── STATS COUNTER BAR ─────────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, var(--deep-blue), var(--medical-blue));
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(13, 148, 136, 0.08);
  filter: blur(60px);
}

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

.stat-item {
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.stat-item:last-child::after {
  display: none;
}

.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--pure-white);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-number .counter-suffix {
  color: var(--professional-teal);
  font-size: 0.6em;
}

.stat-label {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

/* ── FOOTER ────────────────────────────────────────────────────── */
.footer {
  background: var(--deep-blue);
  color: var(--pure-white);
  padding-top: 4rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--professional-teal), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand .nav-logo {
  margin-bottom: 1.2rem;
}

.footer-brand p {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.55);
  line-height: var(--lh-relaxed);
  margin-bottom: 1.5rem;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  color: rgba(255, 255, 255, 0.6);
}

.footer-social a:hover {
  background: var(--professional-teal);
  color: var(--pure-white);
  transform: translateY(-3px);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
}

.footer-column h4 {
  font-size: var(--fs-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.2rem;
  color: var(--pure-white);
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-column a {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.footer-column a:hover {
  color: var(--professional-teal);
  transform: translateX(4px);
}

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

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.35);
}

.footer-badges {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.footer-badge svg {
  width: 14px;
  height: 14px;
  stroke: var(--professional-teal);
}

/* ── SCROLL REVEAL ANIMATIONS ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays for children */
.stagger-children > *:nth-child(1) { transition-delay: 0ms; }
.stagger-children > *:nth-child(2) { transition-delay: 80ms; }
.stagger-children > *:nth-child(3) { transition-delay: 160ms; }
.stagger-children > *:nth-child(4) { transition-delay: 240ms; }
.stagger-children > *:nth-child(5) { transition-delay: 320ms; }
.stagger-children > *:nth-child(6) { transition-delay: 400ms; }
.stagger-children > *:nth-child(7) { transition-delay: 480ms; }
.stagger-children > *:nth-child(8) { transition-delay: 560ms; }

/* ── RESPONSIVE ────────────────────────────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
  .about-grid,
  .clinical-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

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

  .admissions-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

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

  .timeline::before {
    left: 20px;
  }

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    flex-direction: row;
    padding-right: 0;
    padding-left: 3.5rem;
    text-align: left;
  }

  .timeline-marker {
    left: 20px;
  }

  .hero-stats {
    display: none;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 22, 40, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
  }

  .nav-menu.active {
    opacity: 1;
    pointer-events: all;
  }

  .nav-menu .nav-link {
    font-size: 1.1rem;
    color: var(--pure-white);
  }

  .nav-menu .nav-cta {
    margin-left: 0;
    font-size: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .why-grid,
  .values-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .programmes-grid,
  .facilities-grid,
  .leadership-grid {
    grid-template-columns: 1fr;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .credibility-bar .container {
    flex-direction: column;
    gap: 0.6rem;
  }

  .hero-indicators {
    bottom: 120px;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }

  .stat-item::after {
    display: none;
  }
}

/* Large Displays */
@media (min-width: 1600px) {
  :root {
    --container-max: 1400px;
  }
}

/* ── ACCESSIBILITY ─────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .hero-slide-bg {
    transition: none;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }
}

:focus-visible {
  outline: 2px solid var(--professional-teal);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ── UTILITY CLASSES ───────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.text-teal { color: var(--professional-teal); }
.text-gold { color: var(--warm-gold); }
.text-white { color: var(--pure-white); }
