:root {
  --gold: #E8A723;
  --gold-light: #FBE8B8;
  --gold-glow: #F5C94220;
  --navy: #1B2A4A;
  --navy-deep: #0F1B33;
  --teal: #2BBCB3;
  --teal-light: #E0F7F5;
  --coral: #FF6B6B;
  --lavender: #A78BFA;
  --sky: #60A5FA;
  --mint: #34D399;
  --peach: #FBBF24;
  --rose: #FB7185;
  --white: #FFFFFF;
  --off-white: #FAFAF8;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-600: #4B5563;
  --gray-800: #1F2937;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 4px 24px rgba(27, 42, 74, 0.08);
  --shadow-lg: 0 12px 48px rgba(27, 42, 74, 0.12);
  --shadow-glow: 0 0 40px rgba(232, 167, 35, 0.15);
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--gray-800);
  background: var(--off-white);
  overflow-x: hidden;
  line-height: 1.6;
}
h1, h2, h3, h4 { font-family: 'Fredoka', sans-serif; line-height: 1.2; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.8);
  padding: 10px 0;
  font-size: 0.85rem;
  overflow: hidden;
  max-width: 100vw;
}
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.topbar a { color: rgba(255,255,255,0.8); text-decoration: none; transition: color 0.3s; }
.topbar a:hover { color: var(--gold); }
.topbar-left { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-socials { display: flex; gap: 12px; }
.topbar-socials a {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transition: all 0.3s;
}
.topbar-socials a:hover { background: var(--gold); color: var(--navy-deep); }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: box-shadow 0.3s;
  max-width: 100vw;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; min-width: 0; }
.logo img { max-width: 200px; max-height: 56px; width: auto; height: auto; object-fit: contain; }
.logo-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold), #D4941A);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(232, 167, 35, 0.3);
}
.logo-text { font-family: 'Fredoka', sans-serif; font-size: 1.5rem; font-weight: 700; }
.logo-text span:first-child { color: var(--navy); }
.logo-text span:last-child { color: var(--gold); }
.nav-links { display: flex; gap: 8px; list-style: none; }
.nav-links a {
  padding: 8px 8px;
  text-decoration: none;
  color: var(--gray-600);
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.3s;
  font-size: 0.95rem;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); background: var(--gold-light); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), #D4941A);
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 12px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 16px rgba(232, 167, 35, 0.35);
  transition: all 0.3s !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(232, 167, 35, 0.45); background: linear-gradient(135deg, #D4941A, var(--gold)) !important; }
.mobile-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; padding: 8px; }

/* Hide theme toggle when Max Mega Menu plugin is active (it provides its own) */
.mega-menu-wrap ~ .mobile-toggle { display: none !important; }

/* Contain Max Mega Menu within viewport */
.mega-menu-wrap { max-width: 100%; overflow: hidden; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--gold-glow) 50%, var(--teal-light) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,167,35,0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(43,188,179,0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.05); }
}
.hero-shapes {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
}
.shape-1 { width: 20px; height: 20px; background: var(--gold); top: 15%; left: 8%; animation: bounce 4s ease-in-out infinite; }
.shape-2 { width: 14px; height: 14px; background: var(--teal); top: 25%; right: 15%; animation: bounce 5s ease-in-out infinite 1s; }
.shape-3 { width: 10px; height: 10px; background: var(--coral); top: 60%; left: 5%; animation: bounce 3.5s ease-in-out infinite 0.5s; }
.shape-4 { width: 24px; height: 24px; background: var(--lavender); bottom: 20%; right: 10%; animation: bounce 4.5s ease-in-out infinite 1.5s; border-radius: 6px; transform: rotate(45deg); }
.shape-5 { width: 16px; height: 16px; background: var(--sky); top: 40%; left: 48%; animation: bounce 5.5s ease-in-out infinite 0.8s; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-content { animation: slideUp 0.8s ease-out; }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  border: 1px solid var(--gold-light);
}
.hero-badge span { font-size: 1rem; }
.hero h1 {
  font-size: 3.8rem;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold), #D4941A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.15rem;
  color: var(--gray-600);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.8;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), #D4941A);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(232, 167, 35, 0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(232, 167, 35, 0.45); }
.btn-outline {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--gray-200);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow); }
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--gray-200);
}
.stat-item { text-align: left; }
.stat-num { font-family: 'Fredoka', sans-serif; font-size: 2rem; font-weight: 700; color: var(--navy); }
.stat-num span { color: var(--gold); }
.stat-label { font-size: 0.85rem; color: var(--gray-400); margin-top: 2px; }
.hero-visual {
  position: relative;
  animation: slideUp 0.8s ease-out 0.2s both;
}
.hero-image-wrapper {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}
.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatCard 3s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.float-card-1 { bottom: 30px; left: -30px; }
.float-card-2 { top: 30px; right: -20px; animation-delay: 1s; }
.float-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.float-card-text { font-size: 0.85rem; }
.float-card-text strong { display: block; font-size: 0.95rem; color: var(--navy); }

/* ===== SECTION COMMON ===== */
.section {
  padding: 100px 0;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 32px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.section-title {
  font-size: 2.8rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  line-height: 1.8;
}
.section-header { margin-bottom: 60px; }
.text-center { text-align: center; }
.section-header.text-center .section-desc { margin-left: auto; margin-right: auto; }

/* ===== ABOUT ===== */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,167,35,0.1), transparent);
}
.about-features { display: flex; flex-direction: column; gap: 28px; margin-top: 36px; }
.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about-feature-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.about-feature-text h4 { font-size: 1.1rem; color: var(--navy); margin-bottom: 4px; }
.about-feature-text p { font-size: 0.95rem; color: var(--gray-600); line-height: 1.6; }

/* ===== VALUES ===== */
.values { background: var(--off-white); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  border: 1px solid transparent;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: var(--radius) var(--radius) 0 0;
}
.value-card:nth-child(1)::before { background: linear-gradient(90deg, var(--gold), var(--peach)); }
.value-card:nth-child(2)::before { background: linear-gradient(90deg, var(--teal), var(--mint)); }
.value-card:nth-child(3)::before { background: linear-gradient(90deg, var(--lavender), var(--sky)); }
.value-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
}
.value-card h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 12px; }
.value-card p { color: var(--gray-600); font-size: 0.95rem; line-height: 1.7; }

/* ===== COURSES ===== */
.courses {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.courses::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(232,167,35,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(43,188,179,0.06) 0%, transparent 50%);
}
.courses .section-label { color: var(--gold); }
.courses .section-label::before { background: var(--gold); }
.courses .section-title { color: var(--white); }
.courses .section-desc { color: rgba(255,255,255,0.6); }
.courses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}
.course-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.course-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.course-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.4s;
}
.course-card:hover::after { opacity: 1; }
.course-card:nth-child(1)::after { background: linear-gradient(90deg, #60A5FA, #3B82F6); }
.course-card:nth-child(2)::after { background: linear-gradient(90deg, #34D399, #10B981); }
.course-card:nth-child(3)::after { background: linear-gradient(90deg, #F472B6, #EC4899); }
.course-card:nth-child(4)::after { background: linear-gradient(90deg, #FBBF24, #F59E0B); }
.course-card:nth-child(5)::after { background: linear-gradient(90deg, #A78BFA, #8B5CF6); }
.course-card:nth-child(6)::after { background: linear-gradient(90deg, #FB923C, #F97316); }
.course-card:nth-child(7)::after { background: linear-gradient(90deg, #2DD4BF, #14B8A6); }
.course-card:nth-child(8)::after { background: linear-gradient(90deg, #F87171, #EF4444); }
.course-card:nth-child(9)::after { background: linear-gradient(90deg, #818CF8, #6366F1); }
.course-card:nth-child(10)::after { background: linear-gradient(90deg, #FB7185, #F43F5E); }
.course-card:nth-child(11)::after { background: linear-gradient(90deg, #38BDF8, #0EA5E9); }
.course-card:nth-child(12)::after { background: linear-gradient(90deg, #4ADE80, #22C55E); }
.course-card:nth-child(13)::after { background: linear-gradient(90deg, #C084FC, #A855F7); }
.course-card:nth-child(14)::after { background: linear-gradient(90deg, #67E8F9, #22D3EE); }
.course-card:nth-child(15)::after { background: linear-gradient(90deg, #FCA5A5, #F87171); }
.course-card:nth-child(16)::after { background: linear-gradient(90deg, #86EFAC, #4ADE80); }
a.course-card { text-decoration: none; color: inherit; display: block; }
.course-emoji {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}
.course-card h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.course-card p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  line-height: 1.5;
}
.course-tag {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 14px;
  background: rgba(232,167,35,0.15);
  color: var(--gold);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}
.courses-cta {
  text-align: center;
  margin-top: 56px;
  position: relative;
  z-index: 2;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #D4941A);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(232, 167, 35, 0.35);
  padding: 16px 40px;
  font-size: 1.05rem;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(232, 167, 35, 0.5); }

/* ===== TEACHERS ===== */
.teachers { background: var(--white); }
.teachers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.teacher-card {
  background: var(--gray-50);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s;
  border: 1px solid var(--gray-100);
  position: relative;
}
.teacher-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}
.teacher-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  background: var(--gray-200);
  position: relative;
}
.teacher-photo-placeholder {
  width: 100%;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, var(--gold-light), var(--teal-light));
  position: relative;
}
.teacher-photo-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(transparent, rgba(0,0,0,0.05));
  pointer-events: none;
}
.teacher-info {
  padding: 24px;
  text-align: center;
}
.teacher-info h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.teacher-role {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}
.teacher-bio {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}
.teacher-subjects {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.teacher-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gold-light);
  color: var(--gold);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}
.teacher-socials {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}
.teacher-social-link {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: var(--white);
  color: var(--gray-400);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.85rem;
  border: 1px solid var(--gray-200);
}
.teacher-social-link:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.teachers-note {
  text-align: center;
  margin-top: 48px;
  padding: 28px 36px;
  background: var(--gold-light);
  border-radius: 16px;
  border: 1px dashed var(--gold);
}
.teachers-note p {
  color: var(--navy);
  font-size: 0.95rem;
}
.teachers-note strong { color: var(--gold); }
@media (max-width: 1024px) {
  .teachers-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .teachers-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .teachers-grid { grid-template-columns: 1fr; }
}

/* ===== FEATURES STRIP ===== */
.features-strip {
  background: linear-gradient(135deg, var(--gold), #D4941A);
  padding: 60px 0;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.strip-item { color: var(--white); }
.strip-icon { font-size: 2.5rem; margin-bottom: 12px; display: block; }
.strip-item h4 { font-size: 1.1rem; margin-bottom: 6px; }
.strip-item p { font-size: 0.85rem; opacity: 0.85; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: all 0.4s;
  border: 1px solid var(--gray-100);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.testimonial-name { font-weight: 600; color: var(--navy); font-size: 0.95rem; }
.testimonial-role { font-size: 0.8rem; color: var(--gray-400); }

/* ===== CTA ===== */
.cta {
  background: var(--off-white);
  padding: 100px 0;
}
.cta-box {
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  border-radius: 32px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(232,167,35,0.15), transparent);
  border-radius: 50%;
}
.cta-box::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(43,188,179,0.1), transparent);
  border-radius: 50%;
}
.cta-box h2 {
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
.cta-box p {
  color: rgba(255,255,255,0.7);
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}
.cta-buttons { position: relative; z-index: 2; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 2fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand h3 span { color: var(--gold); }
.footer-brand p { line-height: 1.7; margin-bottom: 24px; font-size: 0.95rem; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 1.1rem;
}
.footer-socials a:hover { background: var(--gold); color: var(--navy-deep); }
.footer-col h4 {
  color: var(--white);
  font-family: 'Fredoka', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.95rem;
}
.footer-col a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.footer-contact-icon { font-size: 1.1rem; margin-top: 2px; }
.footer-contact-text { font-size: 0.95rem; line-height: 1.5; }
.footer-contact-text a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-contact-text a:hover { color: var(--gold); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero h1 { font-size: 2.8rem; }
  .hero p { margin: 0 auto 36px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { max-width: 520px; margin: 0 auto; }
  .float-card-1 { left: 10px; }
  .float-card-2 { right: 10px; }
  .about-grid { grid-template-columns: 1fr; }
  .courses-grid { grid-template-columns: repeat(3, 1fr); }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  .section-title { font-size: 2rem; }
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .nav-inner { gap: 12px; height: auto; min-height: 60px; padding: 8px 16px; }
  .logo img { max-height: 50px; width: auto; }
  .topbar-socials { display: none; }
  .cta-box { padding: 48px 28px; }
  .cta-box h2 { font-size: 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .strip-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 480px) {
  .courses-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.8rem; }
  .strip-grid { grid-template-columns: 1fr; }
  .topbar { display: none; }
  .nav-inner { padding: 8px 12px; }
  .footer-col { display: none; }
  .footer { padding: 40px 0 0; }
}

/* ===== WORDPRESS SPECIFIC ===== */

/* Admin bar offset */
body.admin-bar .navbar { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .navbar { top: 46px; }
}
@media (max-width: 782px) {
  #wpadminbar { display: none !important; }
  html.wp-toolbar { padding-top: 0 !important; }
  html { margin-top: 0 !important; }
  body.admin-bar { margin-top: 0 !important; }
  body.admin-bar .navbar { top: 0; }
}

/* Mobile nav open state */
.nav-links.is-open {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 16px 24px;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  gap: 4px;
}
.nav-links.is-open li { width: 100%; }
.nav-links.is-open a {
  display: block;
  padding: 12px 16px;
  width: 100%;
}

/* WordPress alignment classes */
.alignwide { max-width: 1100px; margin-left: auto; margin-right: auto; }
.alignfull { max-width: 100vw; margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); width: 100vw; }
.aligncenter { text-align: center; }
.alignleft { float: left; margin-right: 1.5rem; margin-bottom: 1rem; }
.alignright { float: right; margin-left: 1.5rem; margin-bottom: 1rem; }

/* WordPress image captions */
.wp-caption { max-width: 100%; margin-bottom: 1.5rem; }
.wp-caption img { display: block; border-radius: var(--radius-sm); }
.wp-caption-text { font-size: 0.85rem; color: var(--gray-400); margin-top: 8px; text-align: center; }

/* WordPress gallery */
.gallery { display: grid; gap: 16px; margin-bottom: 2rem; }
.gallery-columns-2 { grid-template-columns: repeat(2, 1fr); }
.gallery-columns-3 { grid-template-columns: repeat(3, 1fr); }
.gallery-columns-4 { grid-template-columns: repeat(4, 1fr); }
.gallery-item img { border-radius: var(--radius-sm); width: 100%; height: auto; }

/* WordPress navigation menu defaults */
.menu { list-style: none; padding: 0; margin: 0; }

/* Blog post grid */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1024px) {
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .posts-grid { grid-template-columns: 1fr; }
}

/* Blog post card */
.post-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s;
  border: 1px solid var(--gray-100);
}
.post-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}
.post-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.post-card-body {
  padding: 24px;
}
.post-card-meta {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 8px;
  display: flex;
  gap: 12px;
}
.post-card-title {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.post-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
.post-card-title a:hover { color: var(--gold); }
.post-card-excerpt {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}
.post-card-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
}
.post-card-link:hover { text-decoration: underline; }

/* Pagination */
.pagination { margin-top: 60px; text-align: center; }
.pagination .nav-links { display: flex; gap: 8px; justify-content: center; list-style: none; }
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* WordPress search form */
.search-form {
  display: flex;
  gap: 8px;
}
.search-form .search-field {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}
.search-form .search-field:focus {
  outline: none;
  border-color: var(--gold);
}
.search-form .search-submit {
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--gold), #D4941A);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.search-form .search-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(232, 167, 35, 0.35);
}

/* Widget styles */
.widget {
  margin-bottom: 32px;
}
.widget-title {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold-light);
}
.widget ul { list-style: none; padding: 0; }
.widget li { margin-bottom: 8px; }
.widget a {
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.3s;
}
.widget a:hover { color: var(--gold); }

/* Page with sidebar layout */
.page-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 1024px) {
  .page-with-sidebar { grid-template-columns: 1fr; }
}

/* Single post */
.single-post-content {
  max-width: 800px;
}
.single-post-content h1 {
  font-size: 2.4rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.single-post-content .post-meta {
  color: var(--gray-400);
  font-size: 0.9rem;
  margin-bottom: 32px;
}
.single-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  margin: 24px 0;
}
.single-post-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.single-post-content a { color: var(--gold); }

/* Comments */
.comments-area { margin-top: 60px; }
.comments-title { font-size: 1.5rem; color: var(--navy); margin-bottom: 32px; }
.comment-list { list-style: none; padding: 0; }
.comment {
  padding: 24px;
  margin-bottom: 16px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-100);
}
.comment-author { font-weight: 600; color: var(--navy); }
.comment-meta { font-size: 0.8rem; color: var(--gray-400); margin-bottom: 12px; }
.comment-body p { font-size: 0.95rem; line-height: 1.6; }
.comment-reply-link {
  font-size: 0.85rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}
.comment-respond { margin-top: 32px; }
.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  margin-bottom: 12px;
  transition: border-color 0.3s;
}
.comment-form textarea:focus,
.comment-form input:focus {
  outline: none;
  border-color: var(--gold);
}
.comment-form .submit {
  padding: 12px 32px;
  background: linear-gradient(135deg, var(--gold), #D4941A);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

/* 404 page */
.error-404-content {
  text-align: center;
  padding: 80px 0;
}
.error-404-content h1 {
  font-size: 6rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.error-404-content p {
  font-size: 1.15rem;
  color: var(--gray-600);
  margin-bottom: 32px;
}

/* Elementor compatibility — don't let xcel-theme's .section padding or
   .container max-width override Bootstrap/Elementor layout on Elementor pages. */
.elementor-page .section { padding: 0; }
/* Inside Elementor content, use Bootstrap 5's container width so grid classes
   (.row, .col-lg-6, etc.) from the old escada theme work correctly. */
.elementor .container {
  max-width: 1320px;
  padding-left: 12px;
  padding-right: 12px;
}
/* Custom utilities from escada theme (not in Bootstrap 5).
   Scoped to .elementor-page so they only affect Elementor-built pages. */
.elementor-page .pt-140  { padding-top: 140px !important; }
.elementor-page .pb-115  { padding-bottom: 115px !important; }
.elementor-page .ptb-140 { padding-top: 140px !important; padding-bottom: 140px !important; }
.elementor-page .mb-30   { margin-bottom: 30px !important; }
/* Custom background colors from escada theme */
.elementor-page .bg-fffbf5 { background-color: #fffbf5 !important; }
.elementor-page .bg-f4a21a { background-color: #f4a21a !important; }
.elementor-page .bg-88b520 { background-color: #88b520 !important; }

/* Page header banner */
.page-banner {
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(232,167,35,0.1), transparent);
  border-radius: 50%;
}
.page-banner h1 {
  color: var(--white);
  font-size: 2.4rem;
  position: relative;
  z-index: 2;
}
.page-banner .breadcrumbs {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-top: 12px;
  position: relative;
  z-index: 2;
}
.page-banner .breadcrumbs a {
  color: var(--gold);
  text-decoration: none;
}

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