/* =============================================
   LECTUREWALA EA LANDING PAGE — STYLES
   Brand: Navy #001E3C, Gold #F8C33E
   ============================================= */

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

:root {
  --navy: #001E3C;
  --navy-light: #0A2D52;
  --navy-dark: #00142A;
  --gold: #F8C33E;
  --gold-hover: #f5b518;
  --gold-light: #FFF5D6;
  --gold-dark: #D4A01E;
  --white: #ffffff;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --success: #10B981;
  --font-primary: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 30, 60, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 30, 60, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 30, 60, 0.12);
  --shadow-xl: 0 20px 50px rgba(0, 30, 60, 0.15);
  --shadow-gold: 0 4px 20px rgba(248, 195, 62, 0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

/* --- Utility Classes --- */
.text-gradient {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gold {
  color: var(--gold);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  white-space: nowrap;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
  padding: 16px 32px;
  font-size: 1.05rem;
}

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

.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  font-weight: 700;
}

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

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1);
  letter-spacing: 0.02em;
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}


/* --- WhatsApp Float --- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-whatsapp {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
  }
}

/* --- Top Bar --- */
.top-bar {
  background: var(--navy);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.85rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar-cta {
  background: var(--gold);
  color: var(--navy);
  padding: 4px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.top-bar-cta:hover {
  background: var(--gold-hover);
}

/* --- Navbar --- */
.navbar {
  background: var(--white);
  padding: 12px 0;
  position: sticky;
  top: 36px;
  z-index: 99;
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid var(--gold);
}

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

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

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-brand {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--navy);
  letter-spacing: 0.06em;
}

.logo-tagline {
  font-size: 0.65rem;
  color: var(--gray-500);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-phone {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}

.nav-phone:hover {
  color: var(--gold-dark);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* --- Hero Section --- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #0C3562 100%);
  color: var(--white);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  animation: floatShape 8s ease-in-out infinite;
}

.hero-shape-2 {
  animation-delay: -3s;
}

.hero-shape-3 {
  animation-delay: -5s;
}

@keyframes floatShape {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-20px) scale(1.03);
  }
}

.hero-shape-1 {
  width: 600px;
  height: 600px;
  background: var(--gold);
  top: -200px;
  right: -100px;
}

.hero-shape-2 {
  width: 400px;
  height: 400px;
  background: var(--gold);
  bottom: -150px;
  left: -100px;
}

.hero-shape-3 {
  width: 200px;
  height: 200px;
  background: var(--white);
  top: 50%;
  left: 40%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(248, 195, 62, 0.15);
  border: 1px solid rgba(248, 195, 62, 0.3);
  color: var(--gold);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease forwards;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  animation: fadeInUp 0.6s ease 0.1s forwards;
  opacity: 0;
}

.hero h1 .text-gradient {
  background: linear-gradient(135deg, var(--gold), #FFD700);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  animation: fadeInUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease 0.3s forwards;
  opacity: 0;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.4s forwards;
  opacity: 0;
}

/* --- Lead Form --- */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-xl);
  color: var(--gray-800);
  animation: fadeInRight 0.8s ease forwards;
}

.form-header {
  text-align: center;
  margin-bottom: 24px;
}

.form-header h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-header p {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.form-group {
  margin-bottom: 14px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--gray-50);
  transition: all 0.3s ease;
  appearance: auto;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(248, 195, 62, 0.15);
}

.form-group input::placeholder {
  color: var(--gray-400);
}

.form-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 12px;
}

/* --- Trust Bar --- */
.trust-bar {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 22px 0;
  border-bottom: 3px solid var(--gold);
  position: relative;
  overflow: hidden;
}

.trust-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(248, 195, 62, 0.05), transparent);
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(50%);
  }
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.trust-item:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

.trust-icon {
  font-size: 1.3rem;
  filter: drop-shadow(0 2px 4px rgba(248, 195, 62, 0.3));
}

/* --- Section Header --- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  position: relative;
}

.section-header::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  border-radius: 2px;
  margin: 18px auto 0;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-light), rgba(248, 195, 62, 0.15));
  color: var(--gold-dark);
  padding: 8px 22px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  border: 1px solid rgba(248, 195, 62, 0.25);
}

.section-header h2 {
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 14px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--gray-500);
}

/* --- Features Grid --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 30, 60, 0.12);
  border-color: var(--gold);
}

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

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: inline-flex;
  width: 70px;
  height: 70px;
  align-items: center;
  justify-content: center;
  background: var(--gold-light);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: var(--gold);
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* --- Career Section --- */
.career-section {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  position: relative;
}

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

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

.career-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.career-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--navy));
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.career-card:hover::after {
  opacity: 1;
}

.career-card-header h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 24px;
}

.role-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 1rem;
  color: var(--gray-700);
}

.role-list li:last-child {
  border-bottom: none;
}

.role-bullet {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.salary-tiers {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.salary-tier {
  padding: 16px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
}

.salary-tier-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.tier-flag {
  font-size: 1.2rem;
}

.tier-label {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 500;
}

.tier-amount {
  display: block;
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.salary-bar {
  height: 6px;
  background: var(--gray-200);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.salary-bar::after {
  content: '';
  display: block;
  height: 100%;
  width: var(--bar-width);
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  border-radius: 3px;
  animation: growBar 1.5s ease forwards;
  transform-origin: left;
}

@keyframes growBar {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

/* --- Curriculum --- */
.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.curriculum-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

.curriculum-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 30, 60, 0.12);
  border-color: var(--gold);
}

.curriculum-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, var(--gold-light), var(--white));
  box-shadow: var(--shadow-gold);
  transform: scale(1.02);
}

.curriculum-card.featured:hover {
  transform: scale(1.02) translateY(-6px);
}

.curriculum-part {
  display: inline-block;
  background: var(--navy);
  color: var(--gold);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.curriculum-card h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.curriculum-card ul li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.curriculum-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.curriculum-badge {
  display: inline-block;
  margin-top: 16px;
  background: var(--gray-100);
  color: var(--gray-500);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.curriculum-card.featured .curriculum-badge {
  background: var(--gold);
  color: var(--navy);
}

.curriculum-bonus {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  padding: 24px 32px;
  border-radius: var(--radius-md);
}

.bonus-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.bonus-text h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--gold);
}

.bonus-text p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* --- Why Lecturewala --- */
.why-lw-section {
  background: var(--gray-50);
}

.why-lw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-lw-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--gray-200);
  transition: all 0.4s ease;
  text-align: center;
}

.why-lw-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.why-lw-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.why-lw-card h4 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.why-lw-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* --- Who Section --- */
.who-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
}

.who-content .section-badge {
  margin-bottom: 14px;
}

.who-content h2 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 28px;
}

.who-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.who-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: var(--gray-700);
}

.who-check {
  width: 28px;
  height: 28px;
  background: var(--gold-light);
  color: var(--gold-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.who-stat-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 36px;
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.who-stat-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.who-stat-number {
  font-family: var(--font-primary);
  font-size: 4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}

.who-stat-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

/* --- Testimonials --- */
.testimonials-section {
  background: linear-gradient(180deg, var(--gray-50) 0%, #EEF4FA 100%);
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: all 0.4s ease;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 30, 60, 0.1);
  border-color: var(--gold);
}

.testimonial-stars {
  margin-bottom: 16px;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info strong {
  font-size: 0.95rem;
  color: var(--navy);
}

.author-info span {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* --- Steps Section --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  text-align: center;
  position: relative;
  padding: 24px 20px;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.step-card:hover {
  background: var(--gray-50);
}

.step-number {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 20px;
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(248, 195, 62, 0.35);
}

.step-content h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.step-connector {
  display: none;
}

@media (min-width: 769px) {
  .step-connector {
    display: block;
    position: absolute;
    top: 30px;
    right: -16px;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
  }

  .step-card:last-child .step-connector {
    display: none;
  }
}

/* --- FAQ --- */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--gray-300);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--gold);
  border-left-color: var(--gold);
}

.faq-item.active {
  border-color: var(--gold);
  border-left-color: var(--gold);
  box-shadow: 0 4px 16px rgba(248, 195, 62, 0.12);
  background: var(--gold-light);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  font-family: var(--font-primary);
  text-align: left;
  transition: background 0.3s;
}

.faq-question:hover {
  background: var(--gray-50);
}

.faq-chevron {
  transition: transform 0.3s ease;
  color: var(--gold);
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
}

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

.faq-answer p {
  padding: 0 24px 18px;
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* --- Final CTA --- */
.final-cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #0C3562 100%);
  color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--gold);
  opacity: 0.06;
  border-radius: 50%;
  top: -150px;
  right: -150px;
  animation: floatShape 10s ease-in-out infinite;
}

.final-cta-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--gold);
  opacity: 0.04;
  border-radius: 50%;
  bottom: -100px;
  left: -100px;
  animation: floatShape 8s ease-in-out infinite reverse;
}

.final-cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.final-cta-content h2 {
  font-size: 2.8rem;
  margin-bottom: 16px;
  color: var(--white);
}

.final-cta-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.final-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Contact Bar --- */
.contact-bar {
  background: var(--gold);
  padding: 20px 0;
}

.contact-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  color: var(--navy);
  transition: all 0.3s;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.contact-icon {
  font-size: 1.4rem;
}

.contact-item strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-item span {
  font-size: 0.9rem;
  font-weight: 600;
}

/* --- Footer --- */
.footer {
  background: linear-gradient(180deg, var(--navy-dark) 0%, #000D1A 100%);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}

.footer-brand .logo {
  margin-bottom: 0;
}

.footer-brand .logo-brand {
  color: var(--white);
}

.footer-brand .logo-icon {
  background: rgba(248, 195, 62, 0.15);
}

.footer h4 {
  color: var(--gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.footer-contact p {
  font-size: 0.88rem;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer-contact p:hover {
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  transition: all 0.3s;
  padding-left: 0;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.02em;
}

/* --- Modal --- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 20, 42, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal-overlay.active {
  display: flex;
}

.modal-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  max-width: 420px;
  width: 90%;
  box-shadow: var(--shadow-xl);
  animation: fadeInUp 0.4s ease;
}

.modal-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
}

.modal-card h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.modal-card p {
  font-size: 0.92rem;
  color: var(--gray-500);
  margin-bottom: 24px;
  line-height: 1.5;
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* --- Scroll animations --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */

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

  .hero h1 {
    font-size: 2.3rem;
  }

  .features-grid,
  .curriculum-grid,
  .why-lw-grid,
  .testimonials-grid,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .nav-actions {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero {
    padding: 40px 0 60px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .stat-divider {
    display: none;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .features-grid,
  .curriculum-grid,
  .why-lw-grid,
  .testimonials-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

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

  .who-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-header h2 {
    font-size: 1.7rem;
  }

  .final-cta-content h2 {
    font-size: 1.8rem;
  }

  .step-connector {
    display: none !important;
  }

  .navbar {
    top: 0;
  }

  .top-bar {
    position: relative;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .form-card {
    padding: 24px 20px;
  }

  .contact-items {
    grid-template-columns: 1fr;
  }

  .trust-items {
    gap: 20px;
  }

  .trust-item span:not(.trust-icon) {
    font-size: 0.8rem;
  }
}

/* ========================================
   Enquiry Popup Modal Styles
   ======================================== */
.modal {
  display: none;
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  width: 90%;
  max-width: 500px;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
  animation: modalSlideDown 0.3s forwards;
}

@keyframes modalSlideDown {
  to {
    transform: translateY(0);
  }
}

.close-modal {
  color: white;
  background: #ef4444;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border: none;
  line-height: 1;
}

.close-modal:hover,
.close-modal:focus {
  background: #dc2626;
  transform: scale(1.1);
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  background: var(--gold-light, #f8fafc);
  padding: 1.5rem;
  border-bottom: 1px solid var(--gray-200, #e2e8f0);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  text-align: center;
}

.modal-header h3 {
  margin: 0;
  color: var(--navy, #0A2540);
  font-size: 1.4rem;
}

.modal-header p {
  font-size: 0.9rem;
  color: var(--gray-500, #64748B);
  margin-top: 0.5rem;
}

.modal-body {
  padding: 2rem;
}

/* Gold button style for Enquire Now */
.btn-gold.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  border: none;
  font-weight: 700;
  cursor: pointer;
}

.btn-gold.btn-sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(248, 195, 62, 0.4);
}

@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    max-width: 420px;
  }

  .modal-body {
    padding: 1.5rem;
  }
}