/* ============================================================
   AARAMBHX ACADEMY — EDUCATIONAL PLATFORM STYLESHEET
   ============================================================ */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

/* ------------------------------------------------------------
   1. HERO SECTION & AMBIENCE (AESTHETIC LANDSCAPE ARTWORK)
   ------------------------------------------------------------ */
/* ------------------------------------------------------------
   1. HERO SECTION & AMBIENCE (FIRST PAGE LIGHT ARCHITECTURE)
   ------------------------------------------------------------ */
.academy-hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
  background: transparent;
}

/* Academy Hero Aesthetic Landscape Backdrop (Matching index.html Architecture) */
.academy-hero-bg-layer {
  position: absolute;
  inset: 0;
  background-image: url('assets/art/academy-hero-landscape.jpg');
  background-image: -webkit-image-set(url('assets/art/academy-hero-landscape.webp') 1x, url('assets/art/academy-hero-landscape.jpg') 1x);
  background-image: image-set(url('assets/art/academy-hero-landscape.webp') type('image/webp'), url('assets/art/academy-hero-landscape.jpg') type('image/jpeg'));
  background-repeat: no-repeat;
  background-position: center 28%;
  background-size: cover;
  opacity: 0.32;
  filter: saturate(1.22) contrast(1.08);
  pointer-events: none;
  z-index: 1;
  -webkit-mask-image: radial-gradient(ellipse 95% 82% at 50% 45%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 86%);
  mask-image: radial-gradient(ellipse 95% 82% at 50% 45%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 86%);
}

[data-theme="dark"] .academy-hero-bg-layer {
  opacity: 0.52;
  filter: saturate(1.35) contrast(1.15);
  -webkit-mask-image: radial-gradient(ellipse 95% 85% at 50% 45%, rgba(0, 0, 0, 1) 35%, rgba(0, 0, 0, 0) 90%);
  mask-image: radial-gradient(ellipse 95% 85% at 50% 45%, rgba(0, 0, 0, 1) 35%, rgba(0, 0, 0, 0) 90%);
}

.academy-hero-ambient {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, rgba(249, 115, 22, 0.08) 50%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.academy-hero-container {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

.academy-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 24px;
}

.academy-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono, monospace);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 9999px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  border: 1px solid rgba(37, 99, 235, 0.22);
}

[data-theme="dark"] .academy-chip {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-color: rgba(96, 165, 250, 0.35);
}

.chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #2563eb;
  box-shadow: 0 0 8px #2563eb;
  animation: pulse-dot 2s infinite ease-in-out;
}

[data-theme="dark"] .chip-dot {
  background-color: #60a5fa;
  box-shadow: 0 0 10px #3b82f6;
}

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

.academy-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-secondary, #475569);
}

[data-theme="dark"] .academy-location {
  color: #94a3b8;
}

.academy-location svg {
  width: 14px;
  height: 14px;
  color: #e11d48;
}

.academy-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--text-primary, #0f172a);
  margin-bottom: 22px;
}

[data-theme="dark"] .academy-hero-title {
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}

.text-gradient {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 50%, #db2777 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

[data-theme="dark"] .text-gradient {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #f472b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.academy-hero-lead {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.65;
  color: var(--text-secondary, #475569);
  max-width: 820px;
  margin: 0 auto 36px;
}

[data-theme="dark"] .academy-hero-lead {
  color: #cbd5e1;
}

/* Stats Counter Row */
.academy-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 820px;
  margin: 0 auto 40px;
}

.academy-stat-box {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px;
  padding: 18px 12px;
  text-align: center;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

[data-theme="dark"] .academy-stat-box {
  background: rgba(15, 23, 42, 0.65);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.35);
}

.academy-stat-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.3);
}

[data-theme="dark"] .academy-stat-box:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.45);
  border-color: rgba(96, 165, 250, 0.4);
}

.stat-number {
  display: block;
  font-family: var(--font-heading, sans-serif);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-primary, #0f172a) !important;
  line-height: 1.1;
  margin-bottom: 4px;
}

[data-theme="dark"] .stat-number {
  color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary, #64748b) !important;
}

[data-theme="dark"] .stat-label {
  color: #94a3b8 !important;
}

/* Actions Row */
.academy-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.academy-hero-actions .apple-btn-secondary {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  color: var(--text-primary, #0f172a);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

[data-theme="dark"] .academy-hero-actions .apple-btn-secondary {
  background: rgba(15, 23, 42, 0.7);
  border-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.academy-hero-actions .apple-btn-secondary:hover {
  background: #f8fafc;
  transform: translateY(-2px);
}

[data-theme="dark"] .academy-hero-actions .apple-btn-secondary:hover {
  background: rgba(30, 41, 59, 0.8);
  color: #ffffff;
}

.academy-whatsapp-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  background: rgba(34, 197, 94, 0.1);
  color: #15803d;
  border: 1px solid rgba(34, 197, 94, 0.3);
  text-decoration: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.25s ease;
}

[data-theme="dark"] .academy-whatsapp-chip {
  background: rgba(34, 197, 94, 0.18);
  color: #86efac;
  border-color: rgba(74, 222, 128, 0.4);
}

.academy-whatsapp-chip:hover {
  background: rgba(34, 197, 94, 0.2);
  border-color: rgba(34, 197, 94, 0.5);
  color: #15803d;
  transform: translateY(-2px);
}

[data-theme="dark"] .academy-whatsapp-chip:hover {
  background: rgba(34, 197, 94, 0.32);
  border-color: rgba(74, 222, 128, 0.7);
  color: #ffffff;
}

.agency-nav-back {
  color: #2563eb !important;
  font-weight: 600 !important;
}

[data-theme="dark"] .agency-nav-back {
  color: #60a5fa !important;
}

/* ------------------------------------------------------------
   2. CORE TECHNOLOGY TRACKS (COMPACT INTERACTIVE SHOWCASE)
   ------------------------------------------------------------ */
/* Embedded Seamless Section Transitions - No lines or gaps between sections */
.academy-hero-section,
.academy-tracks-section,
.academy-workshops-section,
.academy-curriculum-section,
.academy-booking-section,
.academy-faq-section,
section.section-compact {
  border-top: none !important;
  border-bottom: none !important;
}

.academy-tracks-section {
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 95px;
}

.academy-tracks-bg-layer {
  position: absolute;
  inset: 0;
  background-image: url('assets/art/tracks-floating-island-sunset.jpg');
  background-image: -webkit-image-set(url('assets/art/tracks-floating-island-sunset.webp') 1x, url('assets/art/tracks-floating-island-sunset.jpg') 1x);
  background-image: image-set(url('assets/art/tracks-floating-island-sunset.webp') type('image/webp'), url('assets/art/tracks-floating-island-sunset.jpg') type('image/jpeg'));
  background-repeat: no-repeat;
  background-position: center 32%;
  background-size: cover;
  opacity: 0.72;
  filter: saturate(1.3) contrast(1.1);
  pointer-events: none;
  z-index: 1;
  -webkit-mask-image: radial-gradient(ellipse 95% 85% at 50% 45%, rgba(0, 0, 0, 1) 45%, rgba(0, 0, 0, 0) 95%);
  mask-image: radial-gradient(ellipse 95% 85% at 50% 45%, rgba(0, 0, 0, 1) 45%, rgba(0, 0, 0, 0) 95%);
}

/* Dark Theme subtle dark scrim behind upper header text to tone down bright sunset glare in dark mode */
[data-theme="dark"] .academy-tracks-section::before,
body.dark-theme .academy-tracks-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 520px;
  background: radial-gradient(ellipse 85% 65% at 50% 28%, rgba(4, 9, 20, 0.72) 0%, rgba(4, 9, 20, 0.45) 50%, transparent 85%);
  pointer-events: none;
  z-index: 1;
}

[data-theme="dark"] .academy-tracks-bg-layer,
body.dark-theme .academy-tracks-bg-layer {
  opacity: 0.55;
  filter: saturate(1.35) contrast(1.2) brightness(0.82);
  -webkit-mask-image: radial-gradient(ellipse 95% 88% at 50% 45%, rgba(0, 0, 0, 1) 45%, rgba(0, 0, 0, 0) 95%);
  mask-image: radial-gradient(ellipse 95% 88% at 50% 45%, rgba(0, 0, 0, 1) 45%, rgba(0, 0, 0, 0) 95%);
}

.academy-tracks-container {
  position: relative;
  z-index: 2;
}

/* Academic & Industrial Tracks Pure Glassmorphism Eyebrow Badge */
.academy-tracks-section .apple-eyebrow,
.academy-tracks-eyebrow {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 8px 22px !important;
  border-radius: 9999px !important;
  font-family: var(--font-mono, monospace) !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.09em !important;
  text-transform: uppercase !important;
  margin-bottom: 22px !important;
  background: rgba(255, 255, 255, 0.78) !important;
  backdrop-filter: blur(20px) saturate(190%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(190%) !important;
  border: 1px solid rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 6px 24px -2px rgba(15, 23, 42, 0.10), inset 0 1px 1px rgba(255, 255, 255, 1), inset 0 -1px 1px rgba(0, 0, 0, 0.04) !important;
  color: #1d4ed8 !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.academy-tracks-section .apple-eyebrow:hover,
.academy-tracks-eyebrow:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px -4px rgba(37, 99, 235, 0.22), inset 0 1px 1px rgba(255, 255, 255, 1) !important;
}

.academy-tracks-section .apple-eyebrow svg,
.academy-tracks-eyebrow svg {
  width: 15px;
  height: 15px;
  stroke-width: 2.2;
  color: #2563eb !important;
}

/* Header Text in Light Theme - untouched */
.academy-tracks-section .section-header-center h2 {
  font-weight: 850;
  letter-spacing: -0.028em;
  margin-bottom: 14px;
}

/* Header & Eyebrow in Dark Theme - Made dark/moody with high contrast, pure glassmorphism */
[data-theme="dark"] .academy-tracks-section .apple-eyebrow,
body.dark-theme .academy-tracks-section .apple-eyebrow,
[data-theme="dark"] .academy-tracks-eyebrow,
body.dark-theme .academy-tracks-eyebrow {
  background: rgba(8, 14, 28, 0.76) !important;
  backdrop-filter: blur(20px) saturate(190%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(190%) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  box-shadow: 0 6px 24px -2px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.2) !important;
  color: #60a5fa !important;
}

[data-theme="dark"] .academy-tracks-section .apple-eyebrow svg,
body.dark-theme .academy-tracks-section .apple-eyebrow svg,
[data-theme="dark"] .academy-tracks-eyebrow svg,
body.dark-theme .academy-tracks-eyebrow svg {
  color: #60a5fa !important;
}

[data-theme="dark"] .academy-tracks-section .section-header-center h2,
body.dark-theme .academy-tracks-section .section-header-center h2 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 0, 0, 0.7);
}

[data-theme="dark"] .academy-tracks-section .section-lead,
body.dark-theme .academy-tracks-section .section-lead {
  color: #cbd5e1 !important;
  font-weight: 500;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.9);
}

/* Category Navigation Selector (4 Compact Category Cards) */
.academy-tracks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
  margin-bottom: 24px;
}

.track-category-tab {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  text-align: left;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  width: 100%;
}

[data-theme="dark"] .track-category-tab {
  background: rgba(15, 23, 42, 0.65);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.track-category-tab:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.08);
}

[data-theme="dark"] .track-category-tab:hover {
  border-color: rgba(96, 165, 250, 0.35);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
}

/* Active Category State */
.track-category-tab.active {
  background: rgba(255, 255, 255, 0.98);
  border-color: #2563eb;
  box-shadow: 0 10px 24px -5px rgba(37, 99, 235, 0.2), 0 0 0 2px rgba(37, 99, 235, 0.15);
  transform: translateY(-2px);
}

[data-theme="dark"] .track-category-tab.active {
  background: rgba(30, 41, 59, 0.9);
  border-color: #60a5fa;
  box-shadow: 0 10px 24px -5px rgba(0, 0, 0, 0.5), 0 0 0 2px rgba(96, 165, 250, 0.3);
}

/* Category Inner Elements */
.category-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.category-icon svg {
  width: 22px;
  height: 22px;
}

.track-category-tab:hover .category-icon,
.track-category-tab.active .category-icon {
  transform: scale(1.08);
}

.category-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.category-pill {
  font-family: var(--font-mono, monospace);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 2px 7px;
  border-radius: 9999px;
  display: inline-block;
  width: fit-content;
}

.category-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.01em;
}

/* Color Glows & Badges */
.glow-blue {
  background: rgba(37, 99, 235, 0.12);
  color: #2563eb;
  border: 1px solid rgba(37, 99, 235, 0.25);
}
.glow-emerald {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.25);
}
.glow-purple {
  background: rgba(147, 51, 234, 0.12);
  color: #9333ea;
  border: 1px solid rgba(147, 51, 234, 0.25);
}
.glow-cyan {
  background: rgba(6, 182, 212, 0.12);
  color: #0891b2;
  border: 1px solid rgba(6, 182, 212, 0.25);
}

[data-theme="dark"] .glow-blue { color: #60a5fa; }
[data-theme="dark"] .glow-emerald { color: #34d399; }
[data-theme="dark"] .glow-purple { color: #c084fc; }
[data-theme="dark"] .glow-cyan { color: #22d3ee; }

.track-pill {
  font-family: var(--font-mono, monospace);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 9999px;
  display: inline-block;
  width: fit-content;
}

.pill-blue { background: rgba(37, 99, 235, 0.08); color: #2563eb; }
.pill-emerald { background: rgba(16, 185, 129, 0.08); color: #059669; }
.pill-purple { background: rgba(147, 51, 234, 0.08); color: #7c3aed; }
.pill-cyan { background: rgba(6, 182, 212, 0.08); color: #0891b2; }

[data-theme="dark"] .pill-blue { background: rgba(59, 130, 246, 0.15); color: #93c5fd; }
[data-theme="dark"] .pill-emerald { background: rgba(16, 185, 129, 0.15); color: #6ee7b7; }
[data-theme="dark"] .pill-purple { background: rgba(147, 51, 234, 0.15); color: #d8b4fe; }
[data-theme="dark"] .pill-cyan { background: rgba(6, 182, 212, 0.15); color: #67e8f9; }

/* Track Detail Showcase Container */
.track-details-showcase {
  position: relative;
  min-height: 360px;
}

/* Track Detail Panels (Tab Panels) */
.track-detail-panel {
  display: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.track-detail-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Glassmorphic Card for Active Track Detail */
.academy-track-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  padding: 36px 36px;
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.06);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

[data-theme="dark"] .academy-track-card {
  background: rgba(15, 23, 42, 0.75);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.5);
}

.track-detail-inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 36px;
  align-items: start;
}

/* Left Main Info */
.track-detail-main {
  display: flex;
  flex-direction: column;
}

.track-detail-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.track-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.track-header-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.track-header-text h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin: 0;
}

.track-desc {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.track-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.track-tags span {
  font-family: var(--font-mono, monospace);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--bg-secondary, rgba(241, 245, 249, 0.8));
  color: var(--text-secondary);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .track-tags span {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(255, 255, 255, 0.06);
}

.track-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-track-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  background: #2563eb;
  color: #ffffff;
  border: 1px solid transparent;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
  transition: all 0.25s ease;
}

.btn-track-action:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-track-action svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.btn-track-action:hover svg {
  transform: translateX(3px);
}

.btn-track-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.04);
  color: var(--text-secondary);
  border: 1px solid rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: all 0.2s ease;
}

[data-theme="dark"] .btn-track-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
}

.btn-track-secondary:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--text-primary);
}

[data-theme="dark"] .btn-track-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.btn-track-secondary svg {
  width: 15px;
  height: 15px;
}

/* Right Sidebar Bento Card */
.track-highlights-card {
  background: rgba(248, 250, 252, 0.85);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 18px;
  padding: 24px 22px;
}

[data-theme="dark"] .track-highlights-card {
  background: rgba(24, 33, 47, 0.7);
  border-color: rgba(255, 255, 255, 0.08);
}

.track-highlights-card h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.track-highlights-card h4 svg {
  width: 16px;
  height: 16px;
  color: #2563eb;
}

[data-theme="dark"] .track-highlights-card h4 svg {
  color: #60a5fa;
}

.track-highlights-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.track-highlights-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.track-highlights-card li svg {
  width: 17px;
  height: 17px;
  color: #10b981;
  flex-shrink: 0;
}

.track-badge-note {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}

[data-theme="dark"] .track-badge-note {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.track-badge-note svg {
  width: 16px;
  height: 16px;
  color: #2563eb;
  flex-shrink: 0;
}

[data-theme="dark"] .track-badge-note svg {
  color: #60a5fa;
}

/* ------------------------------------------------------------
   3. INSTITUTIONAL DELIVERY MODEL
   ------------------------------------------------------------ */
.academy-workshops-section {
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 95px;
}

.academy-workshops-bg-layer {
  position: absolute;
  inset: 0;
  background-image: url('assets/art/workshops-portal-clouds.jpg');
  background-image: -webkit-image-set(url('assets/art/workshops-portal-clouds.webp') 1x, url('assets/art/workshops-portal-clouds.jpg') 1x);
  background-image: image-set(url('assets/art/workshops-portal-clouds.webp') type('image/webp'), url('assets/art/workshops-portal-clouds.jpg') type('image/jpeg'));
  background-repeat: no-repeat;
  background-position: center 38%;
  background-size: cover;
  opacity: 0.65;
  filter: saturate(1.28) contrast(1.1);
  pointer-events: none;
  z-index: 1;
  -webkit-mask-image: radial-gradient(ellipse 95% 85% at 50% 45%, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 95%);
  mask-image: radial-gradient(ellipse 95% 85% at 50% 45%, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 95%);
}

/* Light Theme subtle dark scrim behind upper header text to tone down bright cloud glare */
.academy-workshops-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 520px;
  background: radial-gradient(ellipse 85% 65% at 50% 28%, rgba(15, 23, 42, 0.32) 0%, rgba(15, 23, 42, 0.16) 50%, transparent 85%);
  pointer-events: none;
  z-index: 1;
}

[data-theme="dark"] .academy-workshops-section::before,
body.dark-theme .academy-workshops-section::before {
  display: none;
}

[data-theme="dark"] .academy-workshops-bg-layer,
body.dark-theme .academy-workshops-bg-layer {
  opacity: 0.58;
  filter: saturate(1.35) contrast(1.15) brightness(0.92);
  -webkit-mask-image: radial-gradient(ellipse 95% 88% at 50% 45%, rgba(0, 0, 0, 1) 45%, rgba(0, 0, 0, 0) 95%);
  mask-image: radial-gradient(ellipse 95% 88% at 50% 45%, rgba(0, 0, 0, 1) 45%, rgba(0, 0, 0, 0) 95%);
}

.academy-workshops-container {
  position: relative;
  z-index: 2;
}

/* Institutional Partnerships Pure Glassmorphism Eyebrow Badge */
.academy-workshops-section .apple-eyebrow,
.academy-workshops-eyebrow {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 8px 22px !important;
  border-radius: 9999px !important;
  font-family: var(--font-mono, monospace) !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.09em !important;
  text-transform: uppercase !important;
  margin-bottom: 22px !important;
  background: rgba(255, 255, 255, 0.78) !important;
  backdrop-filter: blur(20px) saturate(190%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(190%) !important;
  border: 1px solid rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 6px 24px -2px rgba(15, 23, 42, 0.10), inset 0 1px 1px rgba(255, 255, 255, 1), inset 0 -1px 1px rgba(0, 0, 0, 0.04) !important;
  color: #1d4ed8 !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.academy-workshops-section .apple-eyebrow:hover,
.academy-workshops-eyebrow:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px -4px rgba(37, 99, 235, 0.22), inset 0 1px 1px rgba(255, 255, 255, 1) !important;
}

.academy-workshops-section .apple-eyebrow svg,
.academy-workshops-eyebrow svg {
  width: 15px;
  height: 15px;
  stroke-width: 2.2;
  color: #2563eb !important;
}

/* Workshops Header Text: Dark in Light Theme, Light in Dark Theme */
.academy-workshops-section .section-header-center h2 {
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  font-weight: 850;
  letter-spacing: -0.028em;
  margin-bottom: 14px;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.7);
}

.academy-workshops-section .section-lead {
  color: #020617 !important;
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 760px;
  margin: 0 auto 36px;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.7);
}

/* Dark Theme Overrides: Crisp Glowing Contrast in Dark Mode */
[data-theme="dark"] .academy-workshops-section .apple-eyebrow,
body.dark-theme .academy-workshops-section .apple-eyebrow,
[data-theme="dark"] .academy-workshops-eyebrow,
body.dark-theme .academy-workshops-eyebrow {
  background: rgba(15, 23, 42, 0.72) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  box-shadow: 0 6px 24px -2px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.25) !important;
  color: #60a5fa !important;
}

[data-theme="dark"] .academy-workshops-section .apple-eyebrow svg,
body.dark-theme .academy-workshops-section .apple-eyebrow svg,
[data-theme="dark"] .academy-workshops-eyebrow svg,
body.dark-theme .academy-workshops-eyebrow svg {
  color: #60a5fa !important;
}

[data-theme="dark"] .academy-workshops-section .section-header-center h2,
body.dark-theme .academy-workshops-section .section-header-center h2 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.7);
}

[data-theme="dark"] .academy-workshops-section .section-lead,
body.dark-theme .academy-workshops-section .section-lead {
  color: #cbd5e1 !important;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.6);
}

.academy-delivery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.delivery-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

[data-theme="dark"] .delivery-card {
  background: rgba(15, 23, 42, 0.78);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.35);
}

.delivery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .delivery-card:hover {
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.35);
}

.delivery-badge {
  font-family: var(--font-mono, monospace);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #2563eb;
  margin-bottom: 14px;
}

[data-theme="dark"] .delivery-badge {
  color: #60a5fa;
}

.delivery-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

[data-theme="dark"] .delivery-icon {
  background: rgba(59, 130, 246, 0.12);
  color: #60a5fa;
}

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

.delivery-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.delivery-card p {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.delivery-list {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.delivery-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.delivery-list li svg {
  width: 14px;
  height: 14px;
  color: #10b981;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ------------------------------------------------------------
   4. CURRICULUM TIMELINE & TABS
   ------------------------------------------------------------ */
.academy-curriculum-section {
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 95px;
}

.academy-curriculum-bg-layer {
  position: absolute;
  inset: 0;
  background-image: url('assets/art/curriculum-matrix-atrium.jpg');
  background-image: -webkit-image-set(url('assets/art/curriculum-matrix-atrium.webp') 1x, url('assets/art/curriculum-matrix-atrium.jpg') 1x);
  background-image: image-set(url('assets/art/curriculum-matrix-atrium.webp') type('image/webp'), url('assets/art/curriculum-matrix-atrium.jpg') type('image/jpeg'));
  background-repeat: no-repeat;
  background-position: center 25%;
  background-size: cover;
  opacity: 0.58;
  filter: saturate(1.25) contrast(1.1);
  pointer-events: none;
  z-index: 1;
  -webkit-mask-image: radial-gradient(ellipse 95% 85% at 50% 45%, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 95%);
  mask-image: radial-gradient(ellipse 95% 85% at 50% 45%, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 95%);
}

[data-theme="dark"] .academy-curriculum-bg-layer,
body.dark-theme .academy-curriculum-bg-layer {
  opacity: 0.52;
  filter: saturate(1.35) contrast(1.15) brightness(0.92);
  -webkit-mask-image: radial-gradient(ellipse 95% 88% at 50% 45%, rgba(0, 0, 0, 1) 45%, rgba(0, 0, 0, 0) 95%);
  mask-image: radial-gradient(ellipse 95% 88% at 50% 45%, rgba(0, 0, 0, 1) 45%, rgba(0, 0, 0, 0) 95%);
}

.academy-curriculum-container {
  position: relative;
  z-index: 2;
}

/* Curriculum Header Eyebrow Pure Glassmorphism */
.academy-curriculum-section .apple-eyebrow,
.academy-curriculum-eyebrow {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 8px 22px !important;
  border-radius: 9999px !important;
  font-family: var(--font-mono, monospace) !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.09em !important;
  text-transform: uppercase !important;
  margin-bottom: 22px !important;
  background: rgba(255, 255, 255, 0.78) !important;
  backdrop-filter: blur(20px) saturate(190%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(190%) !important;
  border: 1px solid rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 6px 24px -2px rgba(15, 23, 42, 0.10), inset 0 1px 1px rgba(255, 255, 255, 1), inset 0 -1px 1px rgba(0, 0, 0, 0.04) !important;
  color: #1d4ed8 !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.academy-curriculum-section .apple-eyebrow:hover,
.academy-curriculum-eyebrow:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px -4px rgba(37, 99, 235, 0.22), inset 0 1px 1px rgba(255, 255, 255, 1) !important;
}

.academy-curriculum-section .apple-eyebrow svg,
.academy-curriculum-eyebrow svg {
  width: 15px;
  height: 15px;
  stroke-width: 2.2;
  color: #2563eb !important;
}

/* Curriculum Header Text */
.academy-curriculum-section .section-header-center h2 {
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  font-weight: 850;
  letter-spacing: -0.028em;
  margin-bottom: 14px;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.7);
}

.academy-curriculum-section .section-lead {
  color: #020617 !important;
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 760px;
  margin: 0 auto 36px;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .academy-curriculum-section .apple-eyebrow,
body.dark-theme .academy-curriculum-section .apple-eyebrow,
[data-theme="dark"] .academy-curriculum-eyebrow,
body.dark-theme .academy-curriculum-eyebrow {
  background: rgba(15, 23, 42, 0.72) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  box-shadow: 0 6px 24px -2px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.25) !important;
  color: #60a5fa !important;
}

[data-theme="dark"] .academy-curriculum-section .apple-eyebrow svg,
body.dark-theme .academy-curriculum-section .apple-eyebrow svg,
[data-theme="dark"] .academy-curriculum-eyebrow svg,
body.dark-theme .academy-curriculum-eyebrow svg {
  color: #60a5fa !important;
}

[data-theme="dark"] .academy-curriculum-section .section-header-center h2,
body.dark-theme .academy-curriculum-section .section-header-center h2 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.7);
}

[data-theme="dark"] .academy-curriculum-section .section-lead,
body.dark-theme .academy-curriculum-section .section-lead {
  color: #cbd5e1 !important;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.6);
}

.curriculum-tabs-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 36px 0;
}

.curriculum-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--text-primary);
  border: 1px solid rgba(226, 232, 240, 0.9);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
}

[data-theme="dark"] .curriculum-tab-btn {
  background: rgba(15, 23, 42, 0.68);
  border-color: rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.curriculum-tab-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(37, 99, 235, 0.35);
  transform: translateY(-2px);
}

[data-theme="dark"] .curriculum-tab-btn:hover {
  background: rgba(30, 41, 59, 0.85);
  border-color: rgba(96, 165, 250, 0.35);
}

.curriculum-tab-btn.active {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
  transform: translateY(-2px);
}

[data-theme="dark"] .curriculum-tab-btn.active {
  background: #3b82f6;
  color: #ffffff;
  border-color: #3b82f6;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.curriculum-tab-btn svg {
  width: 16px;
  height: 16px;
}

.curriculum-panel {
  display: none;
  max-width: 860px;
  margin: 0 auto;
}

.curriculum-panel.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

.curriculum-timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-step {
  display: flex;
  gap: 20px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  padding: 24px 26px;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

[data-theme="dark"] .timeline-step {
  background: rgba(15, 23, 42, 0.78);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.35);
}

.timeline-step:hover {
  transform: translateX(6px);
  box-shadow: 0 10px 28px -4px rgba(37, 99, 235, 0.12);
}

[data-theme="dark"] .timeline-step:hover {
  box-shadow: 0 10px 28px -4px rgba(0, 0, 0, 0.5);
}

.step-num {
  font-family: var(--font-mono, monospace);
  font-size: 1.5rem;
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
  min-width: 42px;
}

[data-theme="dark"] .step-num {
  color: #60a5fa;
}

.step-content h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.step-content p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}

/* ------------------------------------------------------------
   5. WORKSHOP BOOKING & CONSULTATION
   ------------------------------------------------------------ */
.academy-booking-section {
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 95px;
}

.academy-booking-bg-layer {
  position: absolute;
  inset: 0;
  background-image: url('assets/art/booking-retro-crt-mountains.jpg');
  background-image: -webkit-image-set(url('assets/art/booking-retro-crt-mountains.webp') 1x, url('assets/art/booking-retro-crt-mountains.jpg') 1x);
  background-image: image-set(url('assets/art/booking-retro-crt-mountains.webp') type('image/webp'), url('assets/art/booking-retro-crt-mountains.jpg') type('image/jpeg'));
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 0.35;
  filter: saturate(1.15) contrast(1.05);
  pointer-events: none;
  z-index: 1;
  -webkit-mask-image: radial-gradient(ellipse 95% 85% at 50% 45%, rgba(0, 0, 0, 1) 35%, rgba(0, 0, 0, 0) 92%);
  mask-image: radial-gradient(ellipse 95% 85% at 50% 45%, rgba(0, 0, 0, 1) 35%, rgba(0, 0, 0, 0) 92%);
}

[data-theme="dark"] .academy-booking-bg-layer,
body.dark-theme .academy-booking-bg-layer {
  opacity: 0.48;
  filter: saturate(1.3) contrast(1.15) brightness(0.95);
  -webkit-mask-image: radial-gradient(ellipse 95% 88% at 50% 45%, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 94%);
  mask-image: radial-gradient(ellipse 95% 88% at 50% 45%, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 94%);
}

.academy-booking-container {
  position: relative;
  z-index: 2;
}

.booking-card {
  max-width: 860px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow: 0 25px 60px -20px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .booking-card,
body.dark-theme .booking-card {
  background: rgba(13, 20, 36, 0.78);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 60px -20px rgba(0, 0, 0, 0.5);
}

.booking-header {
  text-align: center;
  margin-bottom: 32px;
}

.booking-header h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-top: 8px;
  margin-bottom: 12px;
}

.booking-header p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto;
}

.academy-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: inherit;
  font-size: 0.925rem;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(203, 213, 225, 0.9);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-primary);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea,
body.dark-theme .form-group input,
body.dark-theme .form-group select,
body.dark-theme .form-group textarea {
  background: rgba(18, 28, 48, 0.85);
  border-color: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

[data-theme="dark"] .form-group select option,
body.dark-theme .form-group select option {
  background: #0d1424;
  color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.submit-btn {
  width: 100%;
  max-width: 360px;
  justify-content: center;
}

.form-privacy-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.775rem;
  color: var(--text-secondary);
}

.form-privacy-note svg {
  width: 14px;
  height: 14px;
  color: #10b981;
}

/* ------------------------------------------------------------
   7. EDUCATIONAL FAQ ACCORDION
   ------------------------------------------------------------ */
.academy-faq-section {
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 95px;
}

.academy-faq-bg-layer {
  position: absolute;
  inset: 0;
  background-image: url('assets/art/faq-ascii-clouds.png');
  background-image: -webkit-image-set(url('assets/art/faq-ascii-clouds.webp') 1x, url('assets/art/faq-ascii-clouds.png') 1x);
  background-image: image-set(url('assets/art/faq-ascii-clouds.webp') type('image/webp'), url('assets/art/faq-ascii-clouds.png') type('image/png'));
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 0.32;
  filter: saturate(1.15) contrast(1.05);
  pointer-events: none;
  z-index: 1;
  -webkit-mask-image: radial-gradient(ellipse 95% 85% at 50% 45%, rgba(0, 0, 0, 1) 35%, rgba(0, 0, 0, 0) 92%);
  mask-image: radial-gradient(ellipse 95% 85% at 50% 45%, rgba(0, 0, 0, 1) 35%, rgba(0, 0, 0, 0) 92%);
}

[data-theme="dark"] .academy-faq-bg-layer,
body.dark-theme .academy-faq-bg-layer {
  opacity: 0.44;
  filter: saturate(1.25) contrast(1.15) brightness(0.92);
  -webkit-mask-image: radial-gradient(ellipse 95% 88% at 50% 45%, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 94%);
  mask-image: radial-gradient(ellipse 95% 88% at 50% 45%, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 94%);
}

.academy-faq-container {
  position: relative;
  z-index: 2;
}

.academy-faq-accordion {
  max-width: 820px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.06);
}

[data-theme="dark"] .faq-item {
  background: rgba(15, 23, 42, 0.72);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

[data-theme="dark"] .faq-item:hover {
  border-color: rgba(96, 165, 250, 0.35);
  box-shadow: 0 8px 28px rgba(96, 165, 250, 0.1);
}

.faq-item.active {
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.09);
}

[data-theme="dark"] .faq-item.active {
  border-color: rgba(96, 165, 250, 0.45);
  box-shadow: 0 8px 30px rgba(96, 165, 250, 0.15);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  color: var(--text-primary);
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-item.active .faq-question {
  color: #2563eb;
}

[data-theme="dark"] .faq-item.active .faq-question {
  color: #60a5fa;
}

.faq-chevron {
  width: 18px;
  height: 18px;
  color: var(--text-secondary);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: #2563eb;
}

[data-theme="dark"] .faq-item.active .faq-chevron {
  color: #60a5fa;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* ------------------------------------------------------------
   8. RESPONSIVE BREAKPOINTS
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .academy-delivery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .track-detail-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .academy-tracks-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .academy-delivery-grid {
    grid-template-columns: 1fr;
  }
  .track-category-tab {
    padding: 12px 14px;
    gap: 10px;
  }
  .category-icon {
    width: 38px;
    height: 38px;
  }
  .category-title {
    font-size: 0.82rem;
  }
  .category-pill {
    font-size: 0.6rem;
  }
  .academy-track-card {
    padding: 26px 20px;
    border-radius: 18px;
  }
  .track-header-text h3 {
    font-size: 1.25rem;
  }
  .academy-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-row-2 {
    grid-template-columns: 1fr;
  }
  .booking-card {
    padding: 30px 20px;
  }
  .academy-hero-section {
    padding-top: 110px;
    padding-bottom: 60px;
  }
}

@media (max-width: 480px) {
  .academy-tracks-grid {
    grid-template-columns: 1fr;
  }
  .academy-stats-row {
    grid-template-columns: 1fr;
  }
  .timeline-step {
    flex-direction: column;
    gap: 10px;
  }
}

/* ------------------------------------------------------------
   9. AARAMBHX ACADEMY FOOTER & FLOATING ACTIONS
   ------------------------------------------------------------ */
.site-footer.apple-footer {
  position: relative;
  background: #ffffff;
  border-top: none !important;
  padding: 80px 0 40px;
  overflow: hidden;
  z-index: 10;
}

[data-theme="dark"] .site-footer.apple-footer {
  background: #090d16;
  border-top: none !important;
}

.footer-academy-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 18px;
  transition: transform 0.2s ease;
}

.footer-logo:hover {
  transform: translateY(-2px);
}

.footer-logo .brand-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: contain;
  background: transparent;
  border: none;
  box-shadow: none;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

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

.footer-logo .logo-brand {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary, #0f172a);
}

[data-theme="dark"] .footer-logo .logo-brand {
  color: #f8fafc;
}

.footer-logo .logo-accent {
  color: #2563eb;
}

[data-theme="dark"] .footer-logo .logo-accent {
  color: #60a5fa;
}

.footer-logo .logo-corp {
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

[data-theme="dark"] .footer-logo .logo-corp {
  color: #94a3b8;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-secondary, #64748b);
  max-width: 380px;
  margin-bottom: 24px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary, #64748b);
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-contact-link:hover {
  color: #2563eb;
  transform: translateX(3px);
}

[data-theme="dark"] .footer-contact-link:hover {
  color: #60a5fa;
}

.footer-contact-link svg {
  width: 16px;
  height: 16px;
  color: #2563eb;
  flex-shrink: 0;
}

[data-theme="dark"] .footer-contact-link svg {
  color: #60a5fa;
}

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

.footer-heading {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary, #0f172a);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

[data-theme="dark"] .footer-heading {
  color: #f1f5f9;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: #2563eb;
  border-radius: 2px;
}

[data-theme="dark"] .footer-heading::after {
  background: #60a5fa;
}

.footer-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list li {
  margin: 0;
  padding: 0;
}

.footer-links-list a {
  display: inline-block;
  font-size: 0.885rem;
  color: var(--text-secondary, #64748b);
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
}

.footer-links-list a:hover {
  color: #2563eb;
  transform: translateX(4px);
}

[data-theme="dark"] .footer-links-list a:hover {
  color: #60a5fa;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  font-size: 0.85rem;
  color: var(--text-secondary, #64748b);
}

[data-theme="dark"] .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom .copyright {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-secondary, #64748b);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: var(--text-secondary, #64748b);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: #2563eb;
}

[data-theme="dark"] .footer-bottom-links a:hover {
  color: #60a5fa;
}

/* WhatsApp FAB & Back to Top */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 990;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
}

.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

.whatsapp-fab svg {
  width: 26px;
  height: 26px;
}

.fab-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25d366;
  opacity: 0.6;
  animation: fab-ring-pulse 2.2s infinite ease-out;
  pointer-events: none;
}

@keyframes fab-ring-pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .site-footer.apple-footer {
    padding: 60px 0 30px;
  }
}

/* ============================================================
   AARAMBHX ACADEMY — MOBILE DRAWER & NAVIGATION TRIGGER
   ============================================================ */
.mobile-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(226, 232, 240, 0.9);
  color: #0f172a;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.mobile-menu-btn:hover {
  background: rgba(37, 99, 235, 0.1);
  border-color: #2563eb;
  color: #2563eb;
  transform: scale(1.05);
}

.mobile-menu-btn svg,
.mobile-menu-btn [data-lucide] {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
}

[data-theme="dark"] .mobile-menu-btn {
  background: rgba(15, 23, 42, 0.85);
  border-color: rgba(255, 255, 255, 0.15);
  color: #f8fafc;
}

[data-theme="dark"] .mobile-menu-btn:hover {
  background: rgba(56, 189, 248, 0.15);
  border-color: #38bdf8;
  color: #38bdf8;
}

/* Mobile Drawer Overlay */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  justify-content: flex-end;
}

.mobile-drawer-overlay.active,
.mobile-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile Drawer Content Panel */
.mobile-drawer-content,
.mobile-drawer-card {
  width: 85%;
  max-width: 330px;
  height: 100%;
  background: #ffffff;
  border-left: 1px solid rgba(226, 232, 240, 0.9);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -14px 0 40px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

[data-theme="dark"] .mobile-drawer-content,
[data-theme="dark"] .mobile-drawer-card {
  background: #0f172a;
  border-left-color: rgba(255, 255, 255, 0.12);
  box-shadow: -14px 0 40px rgba(0, 0, 0, 0.65);
}

.mobile-drawer-overlay.active .mobile-drawer-content,
.mobile-drawer-overlay.open .mobile-drawer-content,
.mobile-drawer-overlay.active .mobile-drawer-card,
.mobile-drawer-overlay.open .mobile-drawer-card {
  transform: translateX(0);
}

/* Drawer Header */
.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  padding-bottom: 16px;
}

[data-theme="dark"] .drawer-header {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.drawer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.drawer-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}

.drawer-brand .brand-name {
  font-family: var(--font-heading, sans-serif);
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
}

[data-theme="dark"] .drawer-brand .brand-name {
  color: #f8fafc;
}

.drawer-close-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
}

.drawer-close-btn:hover {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.3);
  color: #ef4444;
  transform: rotate(90deg);
}

.drawer-close-btn svg,
.drawer-close-btn [data-lucide] {
  width: 18px;
  height: 18px;
}

[data-theme="dark"] .drawer-close-btn {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #94a3b8;
}

[data-theme="dark"] .drawer-close-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.4);
  color: #f87171;
}

/* Drawer Navigation Links */
.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 24px 0;
  flex: 1;
}

.drawer-link {
  font-family: var(--font-heading, sans-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: #334155;
  padding: 11px 14px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
}

.drawer-link:hover {
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  transform: translateX(4px);
}

[data-theme="dark"] .drawer-link {
  color: #cbd5e1;
}

[data-theme="dark"] .drawer-link:hover {
  background: rgba(56, 189, 248, 0.12);
  color: #38bdf8;
}

/* Drawer Footer */
.drawer-footer {
  padding-top: 18px;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
}

[data-theme="dark"] .drawer-footer {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.drawer-footer .apple-btn-cta {
  width: 100%;
  justify-content: center;
}

