/* ===== ZETA CLASSES – Design System ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ─── CSS Custom Properties (Matched to ZETA Logo) ─── */
:root {
  /* Core palette - Navy & Crimson theme */
  --bg-primary: #060b1c;
  --bg-secondary: #0d1530;
  --bg-tertiary: #141f42;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-hover: rgba(255, 255, 255, 0.08);
  --stroke: rgba(255, 255, 255, 0.08);
  --stroke-hover: rgba(255, 255, 255, 0.18);

  /* Brand colours matching ZETA CLASSES Logo */
  --brand-red: #d92534;
  /* Crimson Red from Arabic Logo Text */
  --brand-red-dark: #b91c1c;
  --brand-blue: #16428c;
  /* Deep Navy from ZETA CLASSES Text */
  --brand-blue-light: #2563eb;
  /* Bright Royal Accent Blue */
  --brand-navy-dark: #002d62;
  /* Logo Secondary Navy */

  /* Accent highlights */
  --accent-amber: #f59e0b;
  --accent-orange: #f97316;
  --accent-emerald: #10b981;
  --accent-violet: #8b5cf6;
  --accent-cyan: #06b6d4;
  --accent-rose: #f43f5e;

  /* Gradients based on Brand Logo */
  --grad-hero: linear-gradient(135deg, #16428c 0%, #2563eb 45%, #d92534 100%);
  --grad-cta: linear-gradient(135deg, #16428c 0%, #2563eb 100%);
  --grad-card: linear-gradient(135deg, rgba(22, 66, 140, 0.16) 0%, rgba(217, 37, 52, 0.1) 100%);

  /* Typography */
  --font-display: 'Outfit', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Text colours */
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.4);
  --shadow-glow-blue: 0 0 40px rgba(37, 99, 235, 0.25);
  --shadow-glow-red: 0 0 40px rgba(217, 37, 52, 0.25);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
}

/* ─── Background Effects ─── */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.bg-glow--1 {
  width: 600px;
  height: 600px;
  top: -100px;
  right: -100px;
  background: rgba(217, 37, 52, 0.16);
  animation: floatGlow 12s ease-in-out infinite;
}

.bg-glow--2 {
  width: 500px;
  height: 500px;
  bottom: 200px;
  left: -150px;
  background: rgba(22, 66, 140, 0.22);
  animation: floatGlow 15s ease-in-out infinite reverse;
}

.bg-glow--3 {
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  background: rgba(37, 99, 235, 0.12);
  animation: floatGlow 18s ease-in-out infinite;
}

@keyframes floatGlow {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -20px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 30px) scale(0.95);
  }
}

/* ─── Unified Container Layout (Balanced with Navbar) ─── */
.container,
.container-fluid.container-fixed,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100% !important;
  max-width: 1240px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: clamp(16px, 3.5vw, 32px) !important;
  padding-right: clamp(16px, 3.5vw, 32px) !important;
  position: relative;
  z-index: 2;
}

/* ─── HEADER / NAV (LIGHT THEME) ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: var(--transition-base);
}

.header.scrolled {
  background: #fff;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  height: 72px;
  flex-wrap: nowrap;
  gap: 16px;
  width: 100%;
}

.nav__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.nav__logo {
  height: 48px;
  max-height: 48px;
  width: auto;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto;
}

.nav__link {
  font-weight: 600;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: #334155;
  transition: var(--transition-fast);
  position: relative;
  white-space: nowrap;
  text-decoration: none;
}

.nav__link:hover,
.nav__link.active {
  color: var(--brand-red);
  background: rgba(0, 0, 0, 0.05);
}

.nav__link:hover::after,
.nav__link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--brand-blue);
  border-radius: var(--radius-full);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 13.5px;
  padding: 8px 18px;
  border-radius: 50px;
  background: var(--brand-blue-light);
  color: #fff !important;
  text-decoration: none;
  transition: var(--transition-base);
  white-space: nowrap;
}

.nav__cta:hover {
  transform: translateY(-2px);
  background: #1d4ed8;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
  color: #fff !important;
}

/* Mobile Menu Burger Button */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 8px;
  background: rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 10px;
  cursor: pointer;
  z-index: 1001;
  outline: none;
  flex-shrink: 0;
  margin-left: auto;
}

.nav__burger span {
  display: block;
  height: 2.5px;
  width: 22px;
  background: #0f172a;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav__burger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav__burger.open span:nth-child(2) {
  opacity: 0;
}

.nav__burger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Fullscreen Drawer Menu (Card with Semi-Transparent Backdrop) */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: calc(100vh - 72px);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu__card {
  background: #ffffff;
  padding: 16px 20px 24px;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  transform: translateY(-20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.open .mobile-menu__card {
  transform: translateY(0);
}

.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 13px 20px;
  font-weight: 600;
  font-size: 15.5px;
  color: #1e293b !important;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.2s ease;
  text-decoration: none !important;
}

.mobile-menu a:hover,
.mobile-menu a:active,
.mobile-menu a.active {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: var(--brand-red) !important;
  transform: translateX(4px);
}

.mobile-menu__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid #e2e8f0;
}

.mobile-menu__btn {
  justify-content: center !important;
  text-align: center;
  font-weight: 700 !important;
  border-radius: 50px !important;
}

.mobile-menu__btn--primary {
  background: var(--brand-blue-light) !important;
  border-color: var(--brand-blue-light) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.mobile-menu__btn--primary:hover {
  background: #1d4ed8 !important;
  color: #ffffff !important;
}

.mobile-menu__btn--secondary {
  background: #f1f5f9 !important;
  border-color: #cbd5e1 !important;
  color: #1e293b !important;
}

.mobile-menu__btn--secondary:hover {
  background: #e2e8f0 !important;
  color: #0f172a !important;
}

@media (max-width: 991px) {
  .nav__links,
  .nav__actions {
    display: none !important;
  }

  .nav__burger {
    display: flex !important;
  }

  .nav {
    min-height: 68px;
    height: 68px;
  }

  .nav__logo {
    height: 40px;
    max-height: 40px;
  }

  .mobile-menu {
    top: 68px;
    height: calc(100vh - 68px);
  }
}

/* ─── HERO ─── */
.hero {
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 6px;
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.6s ease both;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-emerald);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }

  50% {
    opacity: 0.8;
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero__title .highlight {
  background: var(--grad-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  animation: fadeInUp 0.6s ease 0.3s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  white-space: nowrap;
}

.btn--primary {
  background: var(--grad-cta);
  color: #fff;
  box-shadow: 0 4px 20px rgba(57, 83, 230, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(57, 83, 230, 0.3);
}

.btn--outline {
  border: 1.5px solid var(--stroke-hover);
  color: var(--text-primary);
  background: var(--surface);
}

.btn--outline:hover {
  border-color: var(--brand-blue-light);
  background: rgba(59, 130, 246, 0.08);
  color: var(--brand-blue-light);
}

.hero__stats {
  display: flex;
  gap: var(--space-xl);
  animation: fadeInUp 0.6s ease 0.4s both;
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.hero__visual {
  position: relative;
  animation: fadeInRight 0.8s ease 0.3s both;
}

.hero__image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-glow-blue);
}

.hero__image-wrapper::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--grad-hero);
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0.5;
}

.hero__image {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.hero__float-card {
  position: absolute;
  background: rgba(15, 19, 53, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatCard 4s ease-in-out infinite;
  box-shadow: var(--shadow-md);
}

.hero__float-card--1 {
  top: 20px;
  left: -40px;
  animation-delay: 0s;
}

.hero__float-card--2 {
  bottom: 30px;
  right: -30px;
  animation-delay: 2s;
}

.hero__float-card .icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  font-size: 20px;
}

.hero__float-card .icon--blue {
  background: rgba(59, 130, 246, 0.15);
}

.hero__float-card .icon--green {
  background: rgba(16, 185, 129, 0.15);
}

.hero__float-card .label {
  font-size: 12px;
  color: var(--text-muted);
}

.hero__float-card .value {
  font-weight: 700;
  font-size: 15px;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ─── MARQUEE / Boards Ticker ─── */
.marquee-section {
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  overflow: hidden;
}

.marquee-label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.marquee {
  display: flex;
  gap: var(--space-3xl);
  animation: marquee 25s linear infinite;
}

.marquee__item {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
  opacity: 0.5;
  transition: var(--transition-base);
}

.marquee__item:hover {
  opacity: 1;
  color: var(--text-primary);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ─── SECTION HEADINGS ─── */
.section {
  padding: var(--space-4xl) 0;
  position: relative;
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}

.section__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-blue-light);
  margin-bottom: var(--space-md);
}

.section__tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--brand-blue-light);
  border-radius: 2px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.text-gradient {
  background: var(--grad-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section__title .text-gradient {
  font-family: serif;
  font-style: italic;
  font-weight: normal;
}

.section__subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─── COURSES / TUTORIX CARDS ─── */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--space-xl);
}

.course-card {
  position: relative;
  background: #090e24;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 14px 14px 12px 14px;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

/* Category Filter Tabs Bar */
.program-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-tab {
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.25s ease;
  cursor: pointer;
}

.filter-tab:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.filter-tab.active {
  color: #ffffff;
  background: var(--brand-blue);
  border-color: var(--brand-blue-light);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.35);
}

/* Card Header Meta & Rating */
.course-card__header-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.course-card__rating {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-amber);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.2);
  padding: 3px 10px;
  border-radius: 999px;
}

/* Features Checklist */
.course-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 14px 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.course-card__features li {
  font-size: 13px;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}

.course-card__features .check-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.18);
  color: var(--accent-emerald);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

/* Dual Card Action Buttons */
.course-card__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 10px;
}

.btn-card-primary {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  color: #ffffff !important;
  background: var(--card-accent, var(--brand-blue-light));
  transition: all 0.2s ease;
  text-decoration: none !important;
}

.btn-card-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.15);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-card-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary) !important;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
  text-decoration: none !important;
}

.btn-card-outline:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: radial-gradient(ellipse at top, var(--card-glow, rgba(37, 99, 235, 0.2)), transparent 70%);
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.3s ease;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 35px var(--card-glow, rgba(37, 99, 235, 0.25));
}

/* Illustration Container Frame - iOS WebKit Compatible */
.course-card__screen {
  position: relative;
  z-index: 1;
  background: rgba(4, 7, 20, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  height: 55px;
  width: 100%;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
}

.course-card__screen svg {
  display: block;
  width: 100%;
  max-width: 140px;
  height: 100%;
  max-height: 55px;
  margin: 0 auto;
}


/* Sub-badge Pill */
.course-card__badge-pill {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--card-accent, #2563eb);
  margin-bottom: 8px;
}

.course-card__title {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.25;
  min-height: 2.5em;
}

.course-card__desc {
  position: relative;
  z-index: 1;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.45;
  margin-bottom: 12px;
  min-height: 6.5em;
}

.course-card__tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 12px;
  margin-top: auto;
}

.course-card__tag {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  transition: var(--transition-fast);
}

.course-card:hover .course-card__tag {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.course-card__arrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  color: var(--card-accent, #3b82f6);
  transition: var(--transition-fast);
  margin-top: auto;
}

.course-card:hover .course-card__arrow {
  gap: 14px;
  filter: brightness(1.2);
}

/* Card Colour Variants (Matching Reference) */
.course-card--blue {
  border-top: 3px solid #2563eb;
  --card-glow: rgba(37, 99, 235, 0.28);
  --card-accent: #3b82f6;
}

.course-card--violet {
  border-top: 3px solid #8b5cf6;
  --card-glow: rgba(139, 92, 246, 0.28);
  --card-accent: #a78bfa;
}

.course-card--cyan {
  border-top: 3px solid #06b6d4;
  --card-glow: rgba(6, 182, 212, 0.28);
  --card-accent: #22d3ee;
}

.course-card--emerald {
  border-top: 3px solid #10b981;
  --card-glow: rgba(16, 185, 129, 0.28);
  --card-accent: #34d399;
}

.course-card--rose {
  border-top: 3px solid #d92534;
  --card-glow: rgba(217, 37, 52, 0.28);
  --card-accent: #f87171;
}

.course-card--amber {
  border-top: 3px solid #f97316;
  --card-glow: rgba(249, 115, 22, 0.28);
  --card-accent: #fbbf24;
}

.course-card--cyan .course-card__icon {
  background: rgba(6, 182, 212, 0.15);
}

.course-card--blue .course-card__badge {
  background: rgba(59, 130, 246, 0.15);
  color: var(--brand-blue-light);
}

.course-card--violet .course-card__badge {
  background: rgba(139, 92, 246, 0.15);
  color: var(--accent-violet);
}

.course-card--emerald .course-card__badge {
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-emerald);
}

.course-card--amber .course-card__badge {
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent-amber);
}

.course-card--rose .course-card__badge {
  background: rgba(244, 63, 94, 0.15);
  color: var(--accent-rose);
}

.course-card--cyan .course-card__badge {
  background: rgba(6, 182, 212, 0.15);
  color: var(--accent-cyan);
}

/* ─── FEATURES / WHY US ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: 24px var(--space-lg);
  text-align: center;
  transition: var(--transition-slow);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--stroke-hover);
  box-shadow: var(--shadow-md);
}

.feature-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  font-size: 28px;
  background: var(--grad-card);
  border: 1px solid var(--stroke);
}

.feature-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.feature-card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}

@media (max-width: 768px) {
  .feature-card {
    text-align: left;
    padding: var(--space-md) var(--space-lg);
  }
  .feature-card__icon {
    width: 36px;
    height: 36px;
    margin: 0 0 var(--space-sm) 0;
    font-size: 16px;
  }
  .feature-card__desc {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    -webkit-hyphens: auto;
  }
}

/* ─── ABOUT / CTA SPLIT ─── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.split__image {
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 60px rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.4s ease;
}

.split__image:hover {
  transform: scale(1.02) translateY(-10px);
}

.split__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #fff;
  background: var(--grad-cta);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-glow-blue);
}

.split__tag::before {
  display: none;
}

.split__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.split__text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.split__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.split__list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.02);
  padding: 6px 14px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: var(--transition-base);
}

.split__list-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.split__list-item .check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.05));
  border: 1px solid rgba(16, 185, 129, 0.2);
  display: grid;
  place-items: center;
  color: var(--accent-emerald);
  font-size: 14px;
  margin-top: 1px;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.1);
}

/* ─── ENHANCED STATS BANNER ─── */
.stats-banner {
  position: relative;
  background: rgba(13, 21, 48, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  padding: 16px 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.stats-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, rgba(217, 37, 52, 0.08) 50%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.stat-col {
  position: relative;
  z-index: 1;
}

.stat-col:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

@media (max-width: 991px) {
  .stat-col:not(:last-child)::after {
    display: none;
  }
}

.stat {
  padding: 12px;
  transition: transform 0.3s ease;
}

.stat__icon {
  font-size: 32px;
  width: 54px;
  height: 54px;
  margin: 0 auto 12px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 0%, #3b82f6 50%, #f43f5e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.stat__label {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.stat__sublabel {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
}

/* ─── TESTIMONIALS ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: var(--transition-slow);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--stroke-hover);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-md);
  color: var(--accent-amber);
  font-size: 16px;
}

.testimonial-card__text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-hero);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
}

.testimonial-card__name {
  font-weight: 700;
  font-size: 14px;
}

.testimonial-card__role {
  font-size: 12px;
  color: var(--text-muted);
}

/* ─── CTA SECTION ─── */
.cta-section {
  padding: var(--space-4xl) 0;
}

.cta-box {
  position: relative;
  overflow: hidden;
  background: var(--grad-card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-xl);
  padding: var(--space-4xl) var(--space-3xl);
  text-align: center;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg,
      transparent 0%,
      rgba(59, 130, 246, 0.06) 25%,
      transparent 50%,
      rgba(139, 92, 246, 0.06) 75%,
      transparent 100%);
  animation: rotateCTA 15s linear infinite;
}

@keyframes rotateCTA {
  to {
    transform: rotate(360deg);
  }
}

.cta-box__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.cta-box__subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto var(--space-xl);
  position: relative;
  z-index: 1;
}

.cta-box .btn {
  position: relative;
  z-index: 1;
}

/* ─── FOOTER ─── */
.footer {
  border-top: 1px solid var(--stroke);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer__brand-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: var(--space-md);
  max-width: 320px;
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--stroke);
  display: grid;
  place-items: center;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  font-size: 18px;
}

.footer__social a:hover {
  background: var(--surface-hover);
  color: var(--text-primary);
  border-color: var(--stroke-hover);
}

.footer__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__link {
  font-size: 14px;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  padding: 4px 0;
}

.footer__link:hover {
  color: var(--text-primary);
}

.footer__bottom {
  border-top: 1px solid var(--stroke);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-lg);
}

.footer__bottom-links a {
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.footer__bottom-links a:hover {
  color: var(--text-secondary);
}

/* ─── SCROLL PROGRESS BAR ─── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: var(--grad-hero);
  z-index: 1000;
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.8);
  transition: width 0.1s ease-out;
}

/* ─── 3D PERSPECTIVE & TILT ENGINE ─── */
.tilt-card {
  perspective: 1000px;
  transform-style: preserve-3d;
  transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  will-change: transform;
}

.tilt-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(59, 130, 246, 0.25);
  border-color: rgba(59, 130, 246, 0.4);
}

.tilt-card__depth {
  transform: translateZ(35px);
  transition: transform 0.3s ease;
}

.tilt-card:hover .tilt-card__depth {
  transform: translateZ(45px);
}

.tilt-card__icon-depth {
  transform: translateZ(50px) scale(1.05);
  transition: transform 0.3s ease;
}

.tilt-card:hover .tilt-card__icon-depth {
  transform: translateZ(65px) scale(1.15);
}

/* ─── SPOTLIGHT MOUSE SHINE ─── */
.spotlight-card {
  position: relative;
  /* overflow: hidden; */
}

.spotlight-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.12), transparent 40%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

.spotlight-card:hover::after {
  opacity: 1;
}

/* ─── 3D HERO INTERACTION ─── */
.hero__visual {
  perspective: 1200px;
  transform-style: preserve-3d;
}

.hero__image-wrapper {
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-style: preserve-3d;
}

.hero__image-wrapper:hover {
  transform: rotateY(-6deg) rotateX(4deg) translateZ(10px);
}

/* ─── FLOATING 3D SHAPES & ORBS ─── */
.floating-3d-shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
  animation: float3D 12s ease-in-out infinite alternate;
}

.shape--cube {
  width: 60px;
  height: 60px;
  border: 2px solid rgba(37, 99, 235, 0.4);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(22, 66, 140, 0.2), rgba(37, 99, 235, 0.15));
  backdrop-filter: blur(8px);
}

.shape--pyramid {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(217, 37, 52, 0.25), rgba(245, 158, 11, 0.15));
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.shape--circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid rgba(217, 37, 52, 0.4);
  background: linear-gradient(135deg, rgba(217, 37, 52, 0.15), rgba(37, 99, 235, 0.15));
  backdrop-filter: blur(8px);
}

/* ─── HERO TYPING EFFECT ─── */
.typing-cursor {
  display: inline-block;
  width: 3px;
  height: 0.9em;
  background: var(--brand-red);
  margin-left: 4px;
  vertical-align: middle;
  border-radius: 2px;
  animation: blink 0.8s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* ─── SECTION DIVIDERS & GRADIENT BORDER ─── */
.section-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin: -1px 0;
  position: relative;
  z-index: 2;
}

.section-divider svg {
  width: 100%;
  height: 40px;
  display: block;
}

.gradient-border {
  position: relative;
}

/* .gradient-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: var(--grad-hero);
  z-index: -1;
  opacity: 0.6;
  transition: opacity 0.3s ease;
} */

.gradient-border:hover::before {
  opacity: 1;
}

@keyframes float3D {
  0% {
    transform: translateY(0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }

  50% {
    transform: translateY(-25px) rotateX(180deg) rotateY(90deg) rotateZ(45deg);
  }

  100% {
    transform: translateY(15px) rotateX(360deg) rotateY(180deg) rotateZ(90deg);
  }
}

/* ─── ENHANCED SCROLL REVEALS ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px) rotateY(12deg);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0) rotateY(0deg);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px) rotateY(-12deg);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0) rotateY(0deg);
}

.reveal-3d {
  opacity: 0;
  transform: perspective(1000px) rotateX(25deg) translateY(50px) scale(0.92);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-3d.visible {
  opacity: 1;
  transform: perspective(1000px) rotateX(0deg) translateY(0) scale(1);
}

.reveal-zoom {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-zoom.visible {
  opacity: 1;
  transform: scale(1);
}

/* ─── ENHANCED RESPONSIVE MEDIA QUERIES (MOBILE & TABLET) ─── */
@media (max-width: 1024px) {
  .section {
    padding: 60px 0;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .hero__visual {
    max-width: 540px;
    margin: 0 auto;
  }

  .hero__float-card--1 {
    left: -5px;
    top: 5%;
  }

  .hero__float-card--2 {
    right: -5px;
    bottom: 5%;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .split--reverse .split__visual {
    order: -1;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .subjects-container-box {
    padding: 40px 24px;
  }

  .subjects-row {
    gap: 28px 24px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 48px 0;
  }

  /* Header & Mobile Drawer */
  .nav__links,
  .nav__actions,
  .nav__cta {
    display: none !important;
  }

  .nav__burger {
    display: flex !important;
  }

  /* Hero Section */
  .hero {
    padding: 110px 0 50px;
    text-align: center;
  }

  .hero__badge {
    margin: 0 auto 16px;
  }

  .hero__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    line-height: 1.2;
  }

  .hero__subtitle {
    margin: 0 auto 24px;
    font-size: 15px;
  }

  .hero__actions {
    justify-content: center;
    flex-direction: column;
    width: 100%;
    max-width: 380px;
    margin: 0 auto 32px;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
    gap: var(--space-md) var(--space-xl);
  }

  /* Program Filter Bar (Touch Swipe) */
  .program-filter-bar {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .program-filter-bar::-webkit-scrollbar {
    display: none;
  }

  .filter-tab {
    flex-shrink: 0;
    padding: 8px 18px;
    font-size: 13px;
  }

  /* Tutorix Course Cards Mobile */
  .course-card {
    padding: 20px 16px;
    border-radius: 20px;
  }

  .course-card__screen {
    height: 100px;
    padding: 16px;
  }

  .course-card__screen svg {
    display: block;
    width: 100%;
    max-width: 125px;
    height: 100%;
    max-height: 70px;
    margin: 0 auto;
  }

  .course-card__title {
    font-size: 1.3rem;
  }

  .course-card__actions {
    flex-direction: row;
    gap: 8px;
  }

  .btn-card-primary,
  .btn-card-outline {
    font-size: 12px;
    padding: 10px 12px;
  }

  /* Subjects We Teach Mobile Layout */
  .subjects-container-box {
    padding: 32px 16px;
    border-radius: 24px;
  }

  .subjects-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 12px;
    justify-items: center;
  }

  .subject-item {
    width: 100%;
  }

  .subject-icon-box {
    width: 76px;
    height: 76px;
  }

  .subject-icon-box svg {
    width: 36px;
    height: 36px;
  }

  .subject-name {
    font-size: 13px;
  }

  .subject-subbadge {
    font-size: 10px;
    padding: 1px 8px;
  }

  /* Stats Banner Mobile Grid */
  .stats-banner {
    padding: 28px 16px;
    border-radius: 24px;
  }

  .stat {
    padding: 8px 4px;
  }

  .stat__icon {
    width: 44px;
    height: 44px;
    font-size: 24px;
    margin-bottom: 8px;
  }

  .stat__number {
    font-size: 2.1rem;
  }

  .stat__label {
    font-size: 13px;
  }

  .stat__sublabel {
    font-size: 11px;
  }

  /* Contact Section & Footer Mobile */
  .contact-card-box {
    padding: 24px 16px;
    border-radius: 24px;
  }

  .cta-box {
    padding: 32px 20px;
    border-radius: 24px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__float-card {
    display: none;
  }

  .hero__stat-number {
    font-size: 1.4rem;
  }

  .subjects-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 8px;
  }

  .subject-icon-box {
    width: 68px;
    height: 68px;
  }

  .subject-icon-box svg {
    width: 32px;
    height: 32px;
  }

  .subject-name {
    font-size: 12px;
  }

  .whatsapp-float {
    bottom: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
    font-size: 24px;
  }
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition-base);
  animation: bounce-subtle 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

@keyframes bounce-subtle {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* ─── BOOTSTRAP GRID COMPATIBILITY OVERRIDES ─── */
.container {
  max-width: 1280px !important;
}

a {
  text-decoration: none !important;
}

.form-control:focus,
.form-select:focus {
  background-color: #0f172a !important;
  color: #ffffff !important;
  border-color: #2563eb !important;
  box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.25) !important;
}

/* ─── ENHANCED CONTACT SECTION ─── */
.contact-card-box {
  position: relative;
  background: rgba(13, 21, 48, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  padding: 44px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

@media (max-width: 768px) {
  .contact-card-box {
    padding: 24px 18px;
  }
}

.contact-form__title,
.contact-info__heading {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.contact-form__subtitle,
.contact-info__subheading {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.contact-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 6px;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 14px;
  font-size: 16px;
  pointer-events: none;
  z-index: 2;
}

.contact-input,
.contact-select,
.contact-textarea {
  width: 100%;
  padding: 12px 16px 12px 42px;
  background: rgba(4, 7, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 14px;
  transition: all 0.25s ease;
  outline: none;
}

.contact-textarea {
  padding-left: 16px;
  resize: vertical;
}

.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
  background: rgba(6, 11, 28, 0.9);
  border-color: var(--brand-blue-light);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.25);
}

.contact-select option {
  background: #090e24;
  color: #ffffff;
}

/* Custom Select Dropdown Component */
.custom-select-wrapper {
  position: relative;
  width: 100%;
}

.visually-hidden-select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.custom-select-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(4, 7, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 14px;
  cursor: pointer;
  user-select: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.custom-select-trigger:hover,
.custom-select-trigger:focus-visible,
.custom-select-wrapper.is-open .custom-select-trigger {
  background: rgba(6, 11, 28, 0.9);
  border-color: var(--brand-blue-light);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.25);
}

.custom-select-icon {
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.custom-select-value {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #ffffff;
  font-weight: 500;
  text-align: left;
}

.custom-select-value.is-placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.custom-select-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.2s ease;
  flex-shrink: 0;
}

.custom-select-wrapper.is-open .custom-select-arrow {
  transform: rotate(180deg);
  color: var(--brand-blue-light);
}

.custom-select-options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: rgba(8, 14, 34, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 30px rgba(37, 99, 235, 0.2);
  z-index: 1000;
  max-height: 290px;
  overflow-y: auto;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.98);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-select-wrapper.is-open .custom-select-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Custom Scrollbar */
.custom-select-options::-webkit-scrollbar {
  width: 6px;
}
.custom-select-options::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
}
.custom-select-options::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}
.custom-select-options::-webkit-scrollbar-thumb:hover {
  background: var(--brand-blue-light);
}

.custom-select-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  user-select: none;
  margin-bottom: 4px;
}

.custom-select-option:last-child {
  margin-bottom: 0;
}

.custom-select-option:hover {
  background: rgba(37, 99, 235, 0.15);
}

.custom-select-option.is-selected {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), rgba(217, 37, 52, 0.15));
  border: 1px solid rgba(59, 130, 246, 0.4);
}

.custom-select-option .option-icon {
  font-size: 17px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease;
}

.custom-select-option:hover .option-icon {
  transform: scale(1.08);
}

.option-icon--cyan {
  background: rgba(6, 182, 212, 0.15) !important;
  border-color: rgba(6, 182, 212, 0.3) !important;
}
.option-icon--blue {
  background: rgba(59, 130, 246, 0.15) !important;
  border-color: rgba(59, 130, 246, 0.3) !important;
}
.option-icon--emerald {
  background: rgba(16, 185, 129, 0.15) !important;
  border-color: rgba(16, 185, 129, 0.3) !important;
}
.option-icon--violet {
  background: rgba(168, 85, 247, 0.15) !important;
  border-color: rgba(168, 85, 247, 0.3) !important;
}
.option-icon--rose {
  background: rgba(244, 63, 94, 0.15) !important;
  border-color: rgba(244, 63, 94, 0.3) !important;
}
.option-icon--amber {
  background: rgba(245, 158, 11, 0.15) !important;
  border-color: rgba(245, 158, 11, 0.3) !important;
}
.option-icon--sky {
  background: rgba(56, 189, 248, 0.15) !important;
  border-color: rgba(56, 189, 248, 0.3) !important;
}
.option-icon--orange {
  background: rgba(251, 146, 60, 0.15) !important;
  border-color: rgba(251, 146, 60, 0.3) !important;
}

.custom-select-option .option-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  text-align: left;
}

.custom-select-option .option-title {
  font-size: 13.5px;
  font-weight: 600;
  color: #f1f5f9;
  line-height: 1.3;
}

.custom-select-option .option-desc {
  font-size: 11.5px;
  color: #94a3b8;
  margin-top: 2px;
  line-height: 1.2;
}

.custom-select-option.is-selected .option-title {
  color: #ffffff;
}

.custom-select-option.is-selected::after {
  content: '✓';
  color: #38bdf8;
  font-weight: 700;
  font-size: 15px;
  margin-left: auto;
  flex-shrink: 0;
  padding-left: 8px;
}

/* Contact Info Item Cards Grid */
.contact-info-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-card-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  transition: all 0.3s ease;
}

/* .contact-card-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateY(-3px);
} */

.contact-card-item__icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(22, 66, 140, 0.3), rgba(217, 37, 52, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.contact-card-item__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-card-item__val {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff !important;
  text-decoration: none !important;
}

.contact-card-item__val:hover {
  color: var(--brand-blue-light) !important;
}

.contact-card-item__sub {
  font-size: 12px;
  color: var(--text-secondary);
}

/* ─── ENHANCED SUBJECTS WE TEACH SECTION ─── */
.subjects-section {
  padding: 80px 0 0 0;
  position: relative;
}

.subjects-container-box {
  position: relative;
  background: rgba(8, 13, 30, 0.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 36px;
  padding: 56px 36px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

/* Dot Matrix Grid Pattern Background */
.subjects-container-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.6;
}

.subjects-row {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px 40px;
}

.subject-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 136px;
}

.subject-icon-box {
  width: 116px;
  height: 116px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.05);
  position: relative;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.subject-orbit {
  position: absolute;
  inset: -6px;
  border-radius: 30px;
  border: 1.5px dashed var(--icon-glow, rgba(139, 92, 246, 0.5));
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: spinSlow 10s linear infinite;
}

@keyframes spinSlow {
  to {
    transform: rotate(360deg);
  }
}

.subject-item:hover .subject-orbit {
  opacity: 1;
}

.subject-icon-box svg {
  width: 52px;
  height: 52px;
  transition: transform 0.3s ease;
}

.subject-item:hover .subject-icon-box svg {
  transform: scale(1.1);
}

.subject-icon-box::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 26px;
  background: radial-gradient(circle at top left, var(--icon-glow, rgba(139, 92, 246, 0.5)), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.subject-item:hover .subject-icon-box {
  transform: translateY(-8px) scale(1.05);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 35px var(--icon-glow, rgba(139, 92, 246, 0.4));
}

.subject-item:hover .subject-icon-box::before {
  opacity: 1;
}

.subject-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-top: 4px;
}

.subject-subbadge {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2px 10px;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.subject-item:hover .subject-subbadge {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Subject Glow Colors */
.subject-icon--math {
  --icon-glow: rgba(167, 139, 250, 0.5);
}

.subject-icon--commerce {
  --icon-glow: rgba(245, 158, 11, 0.5);
}

.subject-icon--physics {
  --icon-glow: rgba(59, 130, 246, 0.5);
}

.subject-icon--chem {
  --icon-glow: rgba(6, 182, 212, 0.5);
}

.subject-icon--bio {
  --icon-glow: rgba(16, 185, 129, 0.5);
}

.subject-icon--cs {
  --icon-glow: rgba(59, 130, 246, 0.5);
}

.subject-icon--ai {
  --icon-glow: rgba(251, 191, 36, 0.5);
}

/* ─── Hero Track Cards ─── */
.track-card {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: 0.3rem 0.6rem;
  transition: var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.track-card:hover {
  background: var(--surface-hover);
  border-color: var(--stroke-hover);
  transform: translateY(-4px);
}

.track-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.track-card--tuition::before {
  background: var(--accent-emerald);
}
.track-card--tuition .track-card__badge {
  color: var(--accent-emerald);
  background: rgba(16, 185, 129, 0.15);
}
.track-card--tuition .track-card__link {
  color: var(--accent-emerald);
}

.track-card--platform::before {
  background: var(--accent-amber);
}
.track-card--platform .track-card__badge {
  color: var(--accent-amber);
  background: rgba(245, 158, 11, 0.15);
}
.track-card--platform .track-card__link {
  color: var(--accent-amber);
}

.track-card--daycare::before {
  background: var(--brand-red);
}
.track-card--daycare .track-card__badge {
  color: var(--brand-red);
  background: rgba(217, 37, 52, 0.15);
}
.track-card--daycare .track-card__link {
  color: var(--brand-red);
}

.track-card__badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  align-self: flex-start;
}

.track-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.track-card__desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

.track-card__link {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition-fast);
}

.track-card__link:hover {
  opacity: 0.8;
  gap: 8px;
}

/* Fix mobile layout for Subjects We Teach (2 per row) */
@media (max-width: 768px) {
  .subjects-container-box {
    padding: 32px 16px;
  }
  .subjects-row {
    gap: 20px 12px;
  }
  .subject-item {
    width: calc(50% - 12px);
  }
  .subject-icon-box {
    width: 86px;
    height: 86px;
  }
  .subject-icon-box svg {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 480px) {
  .subject-icon-box {
    width: 76px;
    height: 76px;
  }
  .subject-icon-box svg {
    width: 34px;
    height: 34px;
  }
}
.subject-item:hover .subject-icon-box::before {
  opacity: 1;
}

.subject-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-top: 4px;
}

.subject-subbadge {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2px 10px;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.subject-item:hover .subject-subbadge {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Subject Glow Colors */
.subject-icon--math {
  --icon-glow: rgba(167, 139, 250, 0.5);
}

.subject-icon--commerce {
  --icon-glow: rgba(245, 158, 11, 0.5);
}

.subject-icon--physics {
  --icon-glow: rgba(59, 130, 246, 0.5);
}

.subject-icon--chem {
  --icon-glow: rgba(6, 182, 212, 0.5);
}

.subject-icon--bio {
  --icon-glow: rgba(16, 185, 129, 0.5);
}

.subject-icon--cs {
  --icon-glow: rgba(59, 130, 246, 0.5);
}

.subject-icon--ai {
  --icon-glow: rgba(251, 191, 36, 0.5);
}

/* ─── Hero Track Cards ─── */
.track-card {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: 0.3rem 0.6rem;
  transition: var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.track-card:hover {
  background: var(--surface-hover);
  border-color: var(--stroke-hover);
  transform: translateY(-4px);
}

.track-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.track-card--tuition::before {
  background: var(--accent-emerald);
}
.track-card--tuition .track-card__badge {
  color: var(--accent-emerald);
  background: rgba(16, 185, 129, 0.15);
}
.track-card--tuition .track-card__link {
  color: var(--accent-emerald);
}

.track-card--platform::before {
  background: var(--accent-amber);
}
.track-card--platform .track-card__badge {
  color: var(--accent-amber);
  background: rgba(245, 158, 11, 0.15);
}
.track-card--platform .track-card__link {
  color: var(--accent-amber);
}

.track-card--daycare::before {
  background: var(--brand-red);
}
.track-card--daycare .track-card__badge {
  color: var(--brand-red);
  background: rgba(217, 37, 52, 0.15);
}
.track-card--daycare .track-card__link {
  color: var(--brand-red);
}

.track-card__badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  align-self: flex-start;
}

.track-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.track-card__desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

.track-card__link {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition-fast);
}

.track-card__link:hover {
  opacity: 0.8;
  gap: 8px;
}

/* Fix mobile layout for Subjects We Teach (2 per row) */
@media (max-width: 768px) {
  .subjects-container-box {
    padding: 32px 16px;
  }
  .subjects-row {
    gap: 20px 12px;
  }
  .subject-item {
    width: calc(50% - 12px);
  }
  .subject-icon-box {
    width: 86px;
    height: 86px;
  }
  .subject-icon-box svg {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 480px) {
  .subject-icon-box {
    width: 76px;
    height: 76px;
  }
  .subject-icon-box svg {
    width: 34px;
    height: 34px;
  }
}

.desktop-nowrap {
  white-space: normal;
}
@media (min-width: 768px) {
  .desktop-nowrap {
    white-space: nowrap;
  }
}

/* ─── DAYCARE PAGE SPECIFIC STYLES ─── */

.daycare-hero {
  padding: 100px 0 20px;
  position: relative;
}

.daycare-hero__badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(217, 37, 52, 0.15);
  border-radius: var(--radius-full);
  color: var(--brand-red);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.daycare-card-title {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
}

.grade-img-wrapper {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grade-img-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.grade-img-wrapper img {
  display: block;
  object-fit: cover;
  border-radius: 20px;
}

.daycare-title-btn {
  display: inline-block;
  background: #7f1d1d;
  color: #fff;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 800;
  margin-bottom: 16px;
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.2), 0 4px 12px rgba(0,0,0,0.5);
  border: 1px solid #991b1b;
}

.daycare-card-desc {
  font-size: 16px;
  color: var(--text-primary);
  line-height: 1.6;
}

.daycare-hero__meta {
  color: var(--brand-blue-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.daycare-hero__meta .meta-line {
  display: flex;
  align-items: center;
}

.daycare-hero__meta .meta-line::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--brand-blue-light);
  margin-right: 12px;
}

.daycare-hero__tags {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* Schedule Grid */
.schedule-grid-container {
  background: #111827; /* Dark navyish */
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.05);
}

.schedule-header {
  margin-bottom: 16px;
}

.schedule-header h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.schedule-header p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.schedule-card {
  background: #1f2937;
  padding: 8px 12px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.schedule-card:hover {
  transform: translateY(-4px);
  background: #374151;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.schedule-card .country {
  font-size: 14px;
  font-weight: 600;
  color: #d1d5db;
}

.schedule-card .time {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-blue-light);
  margin: 2px 0;
}

.schedule-card .session-time {
  font-size: 12px;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 6px;
}

.schedule-card .dot {
  width: 6px;
  height: 6px;
  background: #9ca3af;
  border-radius: 50%;
}

.schedule-footer {
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.5;
}

/* Value Prop Section */
.daycare-value-prop {
  padding: 40px 0 80px;
}

.value-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 32px 24px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  text-align: center;
}

.value-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.value-item__icon {
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.value-item__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.value-item__desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.value-item--blue {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.2);
}
.value-item--blue .value-item__icon {
  color: var(--brand-blue-light);
  background: rgba(37, 99, 235, 0.15);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

.value-item--red {
  background: rgba(217, 37, 52, 0.08);
  border-color: rgba(217, 37, 52, 0.2);
}
.value-item--red .value-item__icon {
  color: var(--brand-red);
  background: rgba(217, 37, 52, 0.15);
  box-shadow: 0 0 20px rgba(217, 37, 52, 0.3);
}

.value-item--navy {
  background: rgba(22, 66, 140, 0.15);
  border-color: rgba(22, 66, 140, 0.3);
}
.value-item--navy .value-item__icon {
  color: #60a5fa;
  background: rgba(22, 66, 140, 0.3);
  box-shadow: 0 0 20px rgba(22, 66, 140, 0.4);
}

/* How a session runs */
.daycare-how-it-runs {
  padding: 80px 0;
}

.dark-text {
  color: var(--text-primary) !important;
}

.zoom-ui {
  background: rgba(13, 21, 48, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  color: #f8fafc;
  position: relative;
  overflow: hidden;
}

.zoom-ui::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.15), transparent 50%);
  pointer-events: none;
}

.zoom-ui__header {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--brand-blue-light);
  margin-bottom: 20px;
  font-weight: 600;
}

.zoom-ui__main-room {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.zoom-ui__main-room:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.6);
}

.zoom-ui__main-room h5 {
  font-size: 16px;
  color: var(--brand-blue-light);
  margin-bottom: 4px;
}

.zoom-ui__main-room p {
  font-size: 13px;
  color: #cbd5e1;
  margin: 0;
}

.zoom-ui__arrow {
  text-align: center;
  font-size: 12px;
  color: #64748b;
  margin-bottom: 16px;
}

.zoom-ui__breakouts {
  display: flex;
  gap: 12px;
}

.breakout-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.breakout-card--blue {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.2);
}
.breakout-card--blue:hover {
  background: rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.2);
  transform: translateY(-3px);
}

.breakout-card--red {
  background: rgba(217, 37, 52, 0.08);
  border-color: rgba(217, 37, 52, 0.2);
}
.breakout-card--red:hover {
  background: rgba(217, 37, 52, 0.15);
  border-color: rgba(217, 37, 52, 0.4);
  box-shadow: 0 5px 15px rgba(217, 37, 52, 0.2);
  transform: translateY(-3px);
}

.breakout-card--navy {
  background: rgba(22, 66, 140, 0.15);
  border-color: rgba(22, 66, 140, 0.3);
}
.breakout-card--navy:hover {
  background: rgba(22, 66, 140, 0.25);
  border-color: rgba(22, 66, 140, 0.5);
  box-shadow: 0 5px 15px rgba(22, 66, 140, 0.3);
  transform: translateY(-3px);
}

.breakout-card strong {
  color: #f8fafc;
  font-size: 15px;
}

.breakout-card span {
  font-size: 12px;
  color: #94a3b8;
}

/* Session Steps */
.session-steps {
  padding-left: 20px;
  position: relative;
}

.session-steps::before {
  content: '';
  position: absolute;
  top: 20px;
  bottom: 40px;
  left: 40px;
  width: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
}

.session-steps::after {
  content: '';
  position: absolute;
  top: 20px;
  bottom: 40px;
  left: 40px;
  width: 2px;
  background: linear-gradient(to bottom, var(--brand-blue-light), var(--brand-red), #60a5fa);
  z-index: 0;
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 1.5s ease-out;
}

.session-steps.active::after {
  transform: scaleY(1);
}

.session-step {
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.session-step .step-num {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  transition: all 0.5s ease;
}

.session-step.active .step-num--1 {
  background: var(--brand-blue-light);
  box-shadow: 0 0 15px rgba(37, 99, 235, 0.4);
}

.session-step.active .step-num--2 {
  background: var(--brand-red);
  box-shadow: 0 0 15px rgba(217, 37, 52, 0.4);
}

.session-step.active .step-num--3 {
  background: #60a5fa;
  box-shadow: 0 0 15px rgba(96, 165, 250, 0.4);
}

.step-content h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.duration-selector {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 20px;
}

.duration-label {
  font-size: 14px;
  color: var(--text-secondary);
  display: block;
}

.duration-pills {
  display: flex;
  gap: 8px;
}

.duration-pills .pill {
  padding: 6px 16px;
  background: transparent;
  border: 1px solid var(--stroke);
  border-radius: 50px;
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.duration-pills .pill:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text-primary);
}

.duration-pills .pill.active {
  background: var(--brand-red);
  color: #fff;
  border-color: var(--brand-red);
  box-shadow: 0 4px 15px rgba(217, 37, 52, 0.3);
}

.duration-timeline {
  margin-top: 24px;
}

.timeline-bar {
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
}

.timeline-fill {
  height: 100%;
  background: var(--grad-hero);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 10px rgba(217, 37, 52, 0.4);
}

.timeline-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 11px;
  color: #64748b;
}

/* Grades section */
.daycare-grades {
  padding: 0 0 40px 0;
}

.grade-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--stroke);
  height: 100%;
}

.grade-range {
  font-size: 11px;
  color: #2dd4bf;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.grade-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 8px 0 12px;
}

.grade-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

/* Countries Section */
.daycare-countries {
  padding: 40px 0 80px 0;
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.glass-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

.glass-btn-red {
  background: rgba(217, 37, 52, 0.2);
  border-color: rgba(217, 37, 52, 0.4);
  color: #fff;
}

.glass-btn-red:hover {
  background: rgba(217, 37, 52, 0.4);
  box-shadow: 0 15px 30px rgba(217, 37, 52, 0.4);
  transform: translateY(-3px);
}

.glass-btn-blue {
  background: rgba(37, 99, 235, 0.2);
  border-color: rgba(37, 99, 235, 0.4);
  color: #fff;
}

.glass-btn-blue:hover {
  background: rgba(37, 99, 235, 0.4);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.4);
  transform: translateY(-3px);
  color: #fff;
}

.glass-btn-navy {
  background: rgba(22, 66, 140, 0.3);
  border-color: rgba(22, 66, 140, 0.5);
  color: #fff;
}

.glass-btn-navy:hover {
  background: rgba(22, 66, 140, 0.5);
  box-shadow: 0 15px 30px rgba(22, 66, 140, 0.4);
  transform: translateY(-3px);
  color: #fff;
}

.country-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.country-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.country-card__info h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.country-card__info p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.country-card__track {
  background: rgba(37, 99, 235, 0.15);
  color: var(--brand-blue-light);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 0 15px rgba(37, 99, 235, 0.2);
}

.country-card__track.track-b {
  background: rgba(217, 37, 52, 0.15);
  color: var(--brand-red);
  box-shadow: 0 0 15px rgba(217, 37, 52, 0.2);
}

/* Plans Section */
.daycare-plans {
  padding: 80px 0;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.plan-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.plan-card.highlight {
  background: rgba(217, 37, 52, 0.05);
  border-color: rgba(217, 37, 52, 0.3);
  box-shadow: 0 0 30px rgba(217, 37, 52, 0.15);
}

.plan-card__badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--brand-red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}

.plan-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.plan-subtitle {
  font-size: 12px;
  color: #10b981;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.plan-features {
  flex: 1;
  margin-bottom: 32px;
}

.plan-feature {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

.plan-feature .check {
  color: #10b981;
}

.btn-plan {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
}

.plan-card.highlight .btn-plan {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff;
}

.plan-card.highlight .btn-plan:hover {
  opacity: 0.9;
}

.plan-disclaimer {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 32px;
}

/* Free Trial Section */
.daycare-trial {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.trial-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.trial-info {
  flex: 1;
  min-width: 300px;
}

.trial-info .section__tag {
  color: var(--brand-blue-light);
}

.trial-info ul {
  margin-top: 24px;
}

.trial-info li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--text-secondary);
}

.trial-info li .dash {
  color: var(--brand-red);
}

.trial-form-wrapper {
  flex: 1;
  min-width: 340px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.trial-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.form-field input, .form-field select {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text-primary);
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

.form-field option {
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

.form-field input:focus, .form-field select:focus {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: 0 0 15px rgba(37, 99, 235, 0.2);
}

.trial-submit {
  grid-column: 1 / -1;
  border-radius: 50px;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  margin-top: 12px;
  cursor: pointer;
  border: none;
}

.trial-note {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
}

@media (max-width: 600px) {
  .trial-form-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ Section */
.daycare-faq {
  padding: 80px 0;
}

.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-answer {
  width: 100%;
  margin-top: 16px;
  display: none;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.faq-item.active {
  border-color: rgba(37, 99, 235, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .plus {
  transform: rotate(45deg);
  background: var(--brand-blue-light);
  color: #fff;
  box-shadow: 0 0 15px rgba(37, 99, 235, 0.4);
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.faq-item h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.faq-item .plus {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
  color: var(--brand-blue-light);
  font-size: 20px;
  font-weight: 300;
  transition: all 0.3s ease;
}

.faq-item:hover .plus {
  background: var(--brand-blue-light);
  color: #fff;
  box-shadow: 0 0 15px rgba(37, 99, 235, 0.4);
}

/* Glass 3D Button Styles */
.glass-btn {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.25),
    inset 0 1px 2px rgba(255, 255, 255, 0.4),
    inset 0 -2px 5px rgba(0, 0, 0, 0.15) !important;
  color: white !important;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.glass-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 3px rgba(255, 255, 255, 0.6),
    inset 0 -2px 5px rgba(0, 0, 0, 0.2) !important;
  color: white !important;
}

.glass-btn:active {
  transform: translateY(2px);
  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.2),
    inset 0 4px 8px rgba(0, 0, 0, 0.3),
    inset 0 -1px 2px rgba(255, 255, 255, 0.2) !important;
}

.glass-btn-blue {
  background: rgba(37, 99, 235, 0.45) !important;
}

.glass-btn-yellow {
  background: rgba(245, 158, 11, 0.45) !important;
}

.glass-btn-red {
  background: rgba(217, 37, 52, 0.45) !important;
}

.justify-text-block {
  text-align: justify !important;
  text-justify: inter-word !important;
  hyphens: auto !important;
  -webkit-hyphens: auto !important;
  word-spacing: normal !important;
}

.daycare-hero .hero__subtitle,
.value-item__desc,
.section__subtitle,
.grade-desc,
.step-content p,
.faq-answer p {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  word-spacing: normal;
}
