/* Landing Page Styles - Scoped to #landing to avoid dashboard conflicts */

#landing {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Section Dividers */
#landing .section-divider {
  height: 8px;
  background: transparent;
  position: relative;
  margin: 0;
}

#landing .section-divider::before,
#landing .section-divider::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: #1e3a8a;
  opacity: 0.85;
}

#landing .section-divider::before {
  top: 0;
}

#landing .section-divider::after {
  bottom: 0;
  background: #2563eb;
}

/* Hero Section */
#landing .hero {
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

#landing .hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://images.pexels.com/photos/5905709/pexels-photo-5905709.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover;
  opacity: 0.6;
  filter: brightness(0.7) contrast(1.1);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

#landing .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.7) 0%, rgba(30, 58, 138, 0.7) 100%);
  z-index: 1;
}

#landing .hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

#landing .hero-badge {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

#landing .badge-text {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  letter-spacing: 0.5px;
}

#landing .hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

#landing .hero-subtitle {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  letter-spacing: 0.01em;
}

#landing .hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-weight: 400;
}

#landing .hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Polished hero banners (trust badges) */
#landing .hero-banners {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1.25rem auto 2rem;
  max-width: 980px;
}

#landing .hero-banner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  color: white;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

#landing .hero-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  border-color: rgba(255,255,255,0.35);
}

#landing .hero-banner i {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.08) 100%);
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), 0 6px 18px rgba(0,0,0,0.15);
}

#landing .hero-banner strong {
  display: block;
  font-weight: 800;
  letter-spacing: -0.01em;
}

#landing .hero-banner small {
  display: block;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  opacity: 0.9;
}

@media (max-width: 992px) {
  #landing .hero-banners {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

@media (max-width: 576px) {
  #landing .hero-banners {
    grid-template-columns: 1fr;
  }
}

/* Stats Section */
#landing .stats-section {
  background: linear-gradient(135deg, #e2e8f0 0%, #d1d5db 100%);
  border-top: 1px solid #cbd5e1;
  border-bottom: 1px solid #cbd5e1;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  position: relative;
}

#landing .stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.3), transparent);
}

#landing .section-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

#landing .section-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.6;
}

#landing .stats-card {
  text-align: center;
  padding: 3rem;
  background: white;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12), 0 3px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

#landing .stats-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1e40af, #f59e0b);
  transform: scaleX(0);
  transition: all 0.3s ease;
}

#landing .stats-card:hover::before {
  transform: scaleX(1);
}

#landing .stats-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.18), 0 12px 20px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}

#landing .stats-icon {
  margin-bottom: 1.5rem;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(59, 130, 246, 0.15) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s ease;
  border: 3px solid rgba(30, 64, 175, 0.2);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.1);
}

#landing .stats-card:hover .stats-icon {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.2) 0%, rgba(59, 130, 246, 0.25) 100%);
  transform: scale(1.15);
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
  border-color: rgba(30, 64, 175, 0.4);
}

#landing .stats-number {
  font-size: 4.5rem;
  font-weight: 900;
  color: #1e40af;
  margin-bottom: 0.5rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

#landing .stats-label {
  color: #64748b;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

#landing .stats-trend {
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  display: inline-block;
  letter-spacing: 0.01em;
}

#landing .stats-trend.positive {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

/* Features Section */
#landing .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

#landing .feature-card {
  background: white;
  padding: 3rem;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1), 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

#landing .feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1e40af, #f59e0b);
  transform: scaleX(0);
  transition: all 0.3s ease;
}

#landing .feature-card:hover::before {
  transform: scaleX(1);
}

#landing .feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.18), 0 12px 20px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}

#landing .feature-icon-wrapper {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(59, 130, 246, 0.15) 100%);
  border: 3px solid rgba(30, 64, 175, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.15);
}

#landing .feature-card:hover .feature-icon-wrapper {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.2) 0%, rgba(59, 130, 246, 0.25) 100%);
  border-color: rgba(30, 64, 175, 0.4);
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 10px 30px rgba(30, 64, 175, 0.25);
}

#landing .feature-title {
  color: #0f172a;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

#landing .feature-description {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 400;
  flex-grow: 1;
  font-size: 1.1rem;
}

#landing .feature-tags {
  margin-bottom: 2rem;
}

#landing .feature-tags .badge {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
}

#landing .feature-action {
  margin-top: auto;
}

#landing .feature-link {
  color: #1e40af;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.15s ease;
  letter-spacing: 0.01em;
}

#landing .feature-link:hover {
  color: #1e3a8a;
  text-decoration: underline;
}

/* Analytics Section */
#landing .analytics-section {
  background: linear-gradient(135deg, #e2e8f0 0%, #d1d5db 100%);
  border-top: 1px solid #cbd5e1;
  border-bottom: 1px solid #cbd5e1;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  position: relative;
}

#landing .analytics-header-container,
#landing .stats-header-container,
#landing .features-header-container,
#landing .process-header-container {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-bottom: 2rem;
}

#landing .analytics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 0;
}

#landing .analytics-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1), 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

#landing .analytics-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(0, 0, 0, 0.08);
  border-color: #3b82f6;
}

#landing .analytics-icon {
  margin-bottom: 1rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(59, 130, 246, 0.15) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s ease;
  border: 2px solid rgba(30, 64, 175, 0.2);
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.1);
}

#landing .analytics-value {
  font-size: 3.5rem;
  font-weight: 900;
  color: #1e40af;
  margin-bottom: 0.5rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

#landing .analytics-label {
  color: #64748b;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

#landing .analytics-change {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  display: inline-block;
  letter-spacing: 0.01em;
}

#landing .analytics-change.positive {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

#landing .analytics-change.negative {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

/* Enrollment Access Section */
#landing .enrollment-access {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border-top: 1px solid #cbd5e1;
  border-bottom: 1px solid #cbd5e1;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  position: relative;
}

#landing .enrollment-form {
  background: #f8fafc;
  padding: 3rem;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

#landing .enrollment-form:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(0, 0, 0, 0.08);
  border-color: #3b82f6;
}

/* About School Section */
#landing .about-school {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border-top: 1px solid #cbd5e1;
  border-bottom: 1px solid #cbd5e1;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  position: relative;
}

#landing .school-badges .badge {
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
}

/* Process Steps */
#landing .process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

#landing .process-step {
  background: white;
  padding: 3rem;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1), 0 3px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
}

#landing .process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(0, 0, 0, 0.08);
  border-color: #3b82f6;
}

#landing .process-step-title {
  color: #0f172a;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

#landing .process-step-description {
  color: #64748b;
  font-weight: 400;
  line-height: 1.6;
}

/* Enrollment Process Section */
#landing .enrollment-process-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

#landing .enrollment-process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="enrollment-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%231e40af" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23enrollment-grid)"/></svg>');
  opacity: 0.6;
}

#landing .enrollment-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
  position: relative;
  z-index: 1;
}

#landing .process-item {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}

#landing .process-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

#landing .process-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(30, 64, 175, 0.1);
  border-color: #3b82f6;
}

#landing .process-item:hover::before {
  transform: scaleX(1);
}

#landing .process-icon-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
  position: relative;
}

#landing .process-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.4);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

#landing .process-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
  transition: all 0.3s ease;
}

#landing .process-item:hover .process-icon {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 12px 30px rgba(30, 64, 175, 0.4);
}

#landing .process-item:hover .process-number {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.5);
}

#landing .process-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

#landing .process-title {
  color: #0f172a;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

#landing .process-description {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  flex: 1;
}

#landing .process-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: auto;
}

#landing .feature-badge {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  color: #1e40af;
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid #bfdbfe;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: all 0.2s ease;
}

#landing .feature-badge:hover {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  transform: translateY(-1px);
}

#landing .enrollment-cta-box {
  background: white;
  padding: 3rem;
  border-radius: 1.25rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

#landing .enrollment-cta-title {
  color: #0f172a;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

#landing .enrollment-cta-subtitle {
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.6;
}

#landing .enrollment-cta-btn {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  border: none;
  padding: 1rem 2rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
}

#landing .enrollment-cta-btn:hover {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 30px rgba(30, 64, 175, 0.4);
}

/* CTA Section */
#landing .cta-section {
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#landing .cta-background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    url('/assets/images/backgrounds/lphs (3).jpeg') center/cover,
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: auto, 30px 30px;
  background-blend-mode: overlay;
  opacity: 0.6;
  filter: brightness(0.7) contrast(1.1);
}

#landing .cta-content {
  position: relative;
  z-index: 1;
}

#landing .cta-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
}

#landing .cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  line-height: 1.6;
}

#landing .cta-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Button Styles */
#landing .btn-accent {
  background: #f59e0b;
  color: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

#landing .btn-accent:hover {
  background: #fbbf24;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

#landing .btn-outline-light {
  border: 2px solid white;
  color: white;
  background: transparent;
}

#landing .btn-outline-light:hover {
  background: white;
  color: #1e40af;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  #landing .hero-title {
    font-size: 3rem;
  }

  #landing .hero-subtitle {
    font-size: 1.5rem;
  }

  #landing .hero-description {
    font-size: 1rem;
  }

  #landing .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  #landing .btn {
    width: 100%;
    max-width: 300px;
  }

  #landing .features-grid {
    grid-template-columns: 1fr;
  }

  #landing .analytics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #landing .cta-title {
    font-size: 2.5rem;
  }

  #landing .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  #landing .section-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 480px) {
  #landing .hero-title {
    font-size: 2.5rem;
  }

  #landing .hero-subtitle {
    font-size: 1.25rem;
  }

  #landing .analytics-grid {
    grid-template-columns: 1fr;
  }

  #landing .section-title {
    font-size: 2rem;
  }

  #landing .cta-title {
    font-size: 2rem;
  }
}

/* Animation Classes */
#landing .animate-on-scroll {
  opacity: 0;
  transition: all 0.8s ease-out;
}

#landing .animate-on-scroll.animated {
  opacity: 1;
}

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

#landing .animate-on-scroll.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Gallery Section */
#landing .gallery-section {
  background: linear-gradient(135deg, #e2e8f0 0%, #d1d5db 100%);
  border-top: 1px solid #cbd5e1;
  border-bottom: 1px solid #cbd5e1;
}
#landing .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
#landing .gallery-item { position: relative; overflow: hidden; border-radius: 12px; }
#landing .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; display: block; }
#landing .gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.6);
  pointer-events: none; border-radius: 12px;
}
#landing .gallery-item:hover img { transform: scale(1.05); }
@media (max-width: 992px) { #landing .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { #landing .gallery-grid { grid-template-columns: 1fr; } }

/* Testimonials */
#landing .testimonials-section { background: #e5e7eb; }
#landing .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
#landing .testimonial-card {
  background: white; border: 1px solid #e2e8f0; border-radius: 12px; padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}
#landing .testimonial-card .profile { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; }
#landing .testimonial-card .profile img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
#landing .testimonial-card .quote { color: #475569; margin: 0; font-style: italic; }
@media (max-width: 992px) { #landing .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { #landing .testimonials-grid { grid-template-columns: 1fr; } }

/* Accreditations */
#landing .accreditations-section { 
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%) !important;
  color: white !important;
}

#landing .accreditations-section .section-title,
#landing .accreditations-section .section-subtitle,
#landing .accreditations-section h2,
#landing .accreditations-section p {
  color: white !important;
}
#landing .accreditations-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
#landing .accreditation-badge { background: white; border: 1px solid #e2e8f0; border-radius: 999px; padding: .75rem 1rem; display: flex; align-items: center; gap: .5rem; justify-content: center; font-weight: 600; color: #0f172a; }
#landing .accreditation-badge i { color: #1e40af; }
@media (max-width: 992px) { #landing .accreditations-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { #landing .accreditations-row { grid-template-columns: 1fr; } }

/* FAQ overrides */
#landing .faq-section { background: #e2e8f0; }
#landing .accordion-button { font-weight: 700; color: #0f172a; }
#landing .accordion-button:not(.collapsed) { background: #eff6ff; color: #1e3a8a; }
#landing .accordion-item { border: 1px solid #e2e8f0; border-radius: 12px; overflow: hidden; margin-bottom: .75rem; }


/* Remove global divider line from landing section titles */
#landing .section-title::before { content: none !important; display: none !important; }


/* Formal heading typography and hover accents */
#landing h1, #landing h2, #landing h3, #landing h4,
#landing .section-title, #landing .hero-title, #landing .cta-title,
#landing .feature-title, #landing .process-step-title {
  font-family: 'Times New Roman', Times, serif !important;
  font-weight: 700;
  letter-spacing: 0;
  transition: color .25s ease, text-shadow .25s ease;
}

/* Accent color setup */
#landing { --accent-color: #f59e0b; --accent-color-dark: #b45309; }

/* Section/title accent underline */
#landing .section-title,
#landing .feature-title,
#landing .process-step-title,
#landing .cta-title {
  position: relative;
  display: inline-block;
}


#landing .section-title:hover,
#landing .feature-title:hover,
#landing .process-step-title:hover,
#landing .cta-title:hover {
  color: #1e3a8a;
  text-shadow: 0 2px 0 rgba(0,0,0,0.04);
}


/* Hero title hover (subtle) */
#landing .hero-title { font-family: 'Times New Roman', Times, serif !important; }
#landing .hero-title:hover { text-shadow: 0 6px 16px rgba(0,0,0,0.35); color: #ffffff; }

/* Wider containers for landing page */
#landing .container,
#landing .container-fluid {
  max-width: 1400px !important;
  width: 95% !important;
}

#landing .container-lg {
  max-width: 1600px !important;
  width: 98% !important;
}

/* Specific section width adjustments */
#landing .hero-inner {
  max-width: 1000px !important;
}

#landing .features-grid {
  max-width: 1500px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

#landing .analytics-grid {
  max-width: 1400px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

#landing .stats-section .container {
  max-width: 1500px !important;
}

#landing .process-steps {
  max-width: 1400px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Scroll animations */
#landing .scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

#landing .scroll-animate.animate {
  opacity: 1;
  transform: translateY(0);
}

#landing .scroll-animate-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease-out;
}

#landing .scroll-animate-left.animate {
  opacity: 1;
  transform: translateX(0);
}

#landing .scroll-animate-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease-out;
}

#landing .scroll-animate-right.animate {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive Design for Enrollment Process */
@media (max-width: 1200px) {
  #landing .enrollment-process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  #landing .enrollment-process-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
  }

  #landing .process-item {
    padding: 2rem;
    text-align: center;
  }

  #landing .process-icon {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }

  #landing .process-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  #landing .process-title {
    font-size: 1.125rem;
  }

  #landing .process-features {
    justify-content: center;
  }

  #landing .enrollment-cta-box {
    padding: 2rem;
    margin: 0 1rem;
  }

  #landing .enrollment-cta-title {
    font-size: 1.25rem;
  }

  #landing .enrollment-cta-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  #landing .process-item {
    padding: 1.5rem;
  }

  #landing .process-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  #landing .feature-badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
  }

  #landing .enrollment-cta-box {
    padding: 1.5rem;
  }
}
