/* ============================================================
   AL-KARIMAH — LANDING PAGE CSS
   Terinspirasi dari kampusmadinahsalam.com
   Font: Inter (Google Fonts)
   Primary: #16a34a | Accent: #eab308
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #16a34a;
  --primary-dark: #15803d;
  --primary-light: #22c55e;
  --primary-muted: rgba(22, 163, 74, 0.1);
  --accent: #eab308;
  --accent-dark: #ca8a04;
  --accent-light: #fde047;
  --white: #ffffff;
  --black: #000000;
  --bg: #ffffff;
  --bg-muted: #f9fafb;
  --fg: #111827;
  --fg-muted: #6b7280;
  --border: rgba(22, 163, 74, 0.15);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.20);
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-full: 9999px;
  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body.landing-body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── UTILITY ── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── NAVBAR ── */
.lk-navbar-wrapper {
  position: fixed;
  top: 0.5rem;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 1rem;
  pointer-events: none;
}

.lk-navbar {
  max-width: 1280px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  pointer-events: auto;
  transition: var(--transition);
}

.lk-navbar:hover {
  box-shadow: var(--shadow-xl);
}

.lk-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.75rem;
  padding: 0 1.5rem;
}

/* Logo */
.lk-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  flex-shrink: 0;
}

.lk-logo-img-wrap {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: transform 0.5s ease;
  flex-shrink: 0;
}

.lk-logo:hover .lk-logo-img-wrap {
  transform: rotate(6deg);
}

.lk-logo-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lk-logo-tag {
  color: var(--primary);
  font-weight: 800;
  margin-right: 0.25rem;
}

.lk-logo-text {
  font-size: 1.125rem;
  font-weight: 800;
  color: #000000;
  white-space: nowrap;
  letter-spacing: -0.01em;
  transition: color 0.3s;
}

.lk-logo:hover .lk-logo-text {
  color: var(--primary);
}

.lk-logo:hover .lk-logo-text {
  color: var(--primary);
}

/* Nav links */
.lk-nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

@media (min-width: 1024px) {
  .lk-nav-links {
    display: flex;
  }
}

.lk-nav-links a {
  position: relative;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-muted);
  padding: 0.5rem 0;
  transition: color 0.3s;
}

.lk-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -0.125rem;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

.lk-nav-links a:hover,
.lk-nav-links a.active {
  color: var(--primary);
  font-weight: 700;
}

.lk-nav-links a:hover::after,
.lk-nav-links a.active::after {
  width: 100%;
}

/* Navbar actions */
.lk-navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lk-btn-login {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.4rem 0.9rem;
  background: var(--primary);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(22,163,74,0.25);
  white-space: nowrap;
}

.lk-btn-login:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(22,163,74,0.35);
}

.lk-btn-login:active {
  transform: scale(0.97);
}

/* Mobile responsive navbar tweaks */
@media (max-width: 640px) {
  .lk-navbar-inner {
    padding: 0 0.875rem;
  }
  .lk-logo {
    gap: 0.5rem;
  }
  .lk-logo-text {
    font-size: 1rem;
  }
  .lk-navbar-actions {
    gap: 0.4rem;
  }
  .lk-btn-login-text {
    display: none;
  }
  .lk-btn-login {
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
  .lk-btn-login svg {
    width: 16px;
    height: 16px;
    margin: 0;
  }
  .lk-menu-toggle {
    width: 2.25rem;
    height: 2.25rem;
  }
}

/* Mobile menu toggle */
.lk-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  color: var(--fg);
}

.lk-menu-toggle:hover {
  background: var(--primary-muted);
  color: var(--primary);
}

@media (min-width: 1024px) {
  .lk-menu-toggle {
    display: none;
  }
}

/* Mobile drawer */
.lk-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
}

.lk-mobile-menu.open {
  display: block;
  animation: fadeIn 0.2s ease;
}

.lk-mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--white);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: -4px 0 24px rgba(0,0,0,0.15);
  animation: slideInRight 0.3s ease;
}

.lk-mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--fg-muted);
  padding: 0.25rem;
  transition: color 0.2s;
}
.lk-mobile-menu-close:hover { color: var(--fg); }

.lk-mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 1rem;
}

.lk-mobile-nav-links a {
  display: block;
  padding: 0.75rem 1rem;
  text-decoration: none;
  font-weight: 600;
  color: var(--fg);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.lk-mobile-nav-links a:hover {
  background: var(--primary-muted);
  color: var(--primary);
}

.lk-mobile-btn-login {
  margin-top: auto;
  display: block;
  text-align: center;
  padding: 0.875rem;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: var(--transition);
}

.lk-mobile-btn-login:hover {
  background: var(--primary-dark);
}

/* ── HERO SECTION ── */
.lk-hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding: 7rem 1.5rem 3rem;
  color: var(--white);
  border-bottom: 1px solid rgba(22,163,74,0.2);
}

.lk-hero-bg {
  position: absolute;
  inset: -0.25rem;
  z-index: 0;
}

.lk-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.lk-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.65) 50%, rgba(0,0,0,0.80) 100%);
  z-index: 1;
}

.lk-hero-glow {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}

.lk-hero-glow-circle {
  width: min(80vw, 600px);
  height: min(80vw, 600px);
  border-radius: 50%;
  background: rgba(22,163,74,0.12);
  filter: blur(80px);
}

.lk-hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

/* Badge */
.lk-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fef3c7;
  cursor: default;
  transition: transform 0.3s;
}

.lk-hero-badge:hover {
  transform: scale(1.04);
}

.lk-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(234,179,8,0.8);
  animation: pulse 2s infinite;
}

/* Hero title */
.lk-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  margin: 0;
}

.lk-hero-title-accent {
  color: var(--accent);
  text-shadow: 0 2px 20px rgba(234,179,8,0.4);
}

/* Hero photos fan */
.lk-hero-photos {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem 0;
  perspective: 1000px;
}

.lk-hero-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.9);
  box-shadow: var(--shadow-xl);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  ring-offset-shadow: 0 0 0 4px rgba(0,0,0,0.08);
}

.lk-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lk-hero-photo:hover {
  z-index: 50 !important;
  transform: translateY(-1.5rem) scale(1.1) rotate(0deg) !important;
  box-shadow: 0 30px 60px rgba(22,163,74,0.3);
}

.lk-hero-photo:nth-child(1) {
  width: 5rem; height: 7rem;
  transform: rotate(-12deg);
  z-index: 10;
  display: none;
}
.lk-hero-photo:nth-child(2) {
  width: 6rem; height: 8rem;
  transform: rotate(-6deg);
  margin-left: -2.5rem;
  z-index: 20;
}
.lk-hero-photo:nth-child(3) {
  width: 7rem; height: 9rem;
  transform: rotate(0deg);
  margin-left: -2.5rem;
  z-index: 30;
  border-width: 4px;
}
.lk-hero-photo:nth-child(4) {
  width: 6rem; height: 8rem;
  transform: rotate(6deg);
  margin-left: -2.5rem;
  z-index: 20;
}
.lk-hero-photo:nth-child(5) {
  width: 5rem; height: 7rem;
  transform: rotate(12deg);
  margin-left: -2.5rem;
  z-index: 10;
  display: none;
}

@media (min-width: 640px) {
  .lk-hero-photo:nth-child(1),
  .lk-hero-photo:nth-child(5) {
    display: block;
    width: 7rem; height: 9rem;
  }
  .lk-hero-photo:nth-child(2),
  .lk-hero-photo:nth-child(4) {
    width: 7rem; height: 9rem;
    margin-left: -2.5rem;
  }
  .lk-hero-photo:nth-child(3) {
    width: 8rem; height: 10rem;
    margin-left: -2.5rem;
  }
}

@media (min-width: 1024px) {
  .lk-hero-photo:nth-child(1),
  .lk-hero-photo:nth-child(5) {
    width: 9rem; height: 11rem;
    margin-left: -3rem;
  }
  .lk-hero-photo:nth-child(2),
  .lk-hero-photo:nth-child(4) {
    width: 9rem; height: 11rem;
    margin-left: -3rem;
  }
  .lk-hero-photo:nth-child(3) {
    width: 10rem; height: 12rem;
    margin-left: -3rem;
  }
}

/* Hero description */
.lk-hero-desc {
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  color: rgba(255,255,255,0.88);
  max-width: 600px;
  font-weight: 500;
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

/* Hero CTA */
.lk-hero-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

@media (min-width: 640px) {
  .lk-hero-cta {
    flex-direction: row;
  }
}

.lk-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  background: var(--accent);
  color: #14532d;
  font-weight: 800;
  font-size: 0.84375rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(234,179,8,0.4);
  width: auto;
  min-width: 150px;
  justify-content: center;
}

@media (min-width: 640px) {
  .lk-btn-primary {
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
  }
}

.lk-btn-primary:hover {
  background: var(--accent-light);
  transform: scale(1.04);
  box-shadow: 0 6px 24px rgba(234,179,8,0.5);
}

.lk-btn-primary:active { transform: scale(0.97); }

.lk-btn-primary svg {
  transition: transform 0.3s;
}
.lk-btn-primary:hover svg { transform: translateX(4px); }

.lk-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-weight: 700;
  font-size: 0.84375rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  width: auto;
  min-width: 150px;
  justify-content: center;
}

@media (min-width: 640px) {
  .lk-btn-secondary {
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
  }
}

@media (min-width: 640px) {
  .lk-btn-secondary { width: auto; }
}

.lk-btn-secondary:hover {
  background: rgba(255,255,255,0.15);
}

/* ── STATS SECTION ── */
.lk-stats {
  background: var(--bg);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.lk-stats-title-wrap {
  text-align: center;
  margin-bottom: 3rem;
}

.lk-section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-muted);
  padding: 0.25rem 0.875rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.lk-section-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.lk-section-desc {
  color: var(--fg-muted);
  font-size: 1rem;
  font-weight: 500;
  max-width: 480px;
  margin: 0 auto;
}

/* Stats grid */
.lk-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .lk-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lk-stat-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  transition: var(--transition-slow);
  box-shadow: var(--shadow-md);
}

.lk-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.lk-stat-card-bg {
  position: absolute;
  inset: -0.125rem;
  z-index: 0;
  transition: transform 0.7s ease;
}

.lk-stat-card:hover .lk-stat-card-bg {
  transform: scale(1.07);
}

.lk-stat-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lk-stat-card-overlay {
  position: absolute;
  inset: -0.125rem;
  background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.65) 50%, rgba(0,0,0,0.80) 100%);
  backdrop-filter: blur(2px);
  z-index: 1;
  transition: var(--transition-slow);
}

.lk-stat-card:hover .lk-stat-card-overlay {
  background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.75) 50%, rgba(0,0,0,0.88) 100%);
}

.lk-stat-card-body {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 2rem;
}

.lk-stat-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #86efac;
  flex-shrink: 0;
  transition: var(--transition);
}

.lk-stat-card:hover .lk-stat-icon {
  background: var(--primary);
  color: var(--white);
}

.lk-stat-number {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.lk-stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(220,252,231,0.9);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}

/* ── KEUNGGULAN SECTION ── */
.lk-features {
  background: var(--bg-muted);
  padding: 5rem 0;
  overflow: hidden;
}

.lk-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .lk-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .lk-features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.lk-feature-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  cursor: default;
  box-shadow: var(--shadow-md);
  transition: var(--transition-slow);
}

.lk-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.lk-feature-card-bg {
  position: absolute;
  inset: -0.125rem;
  z-index: 0;
  transition: transform 0.7s ease;
}

.lk-feature-card:hover .lk-feature-card-bg {
  transform: scale(1.08);
}

.lk-feature-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lk-feature-card-overlay {
  position: absolute;
  inset: -0.125rem;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.72) 50%, rgba(0,0,0,0.45) 100%);
  backdrop-filter: blur(2px);
  z-index: 1;
  transition: var(--transition-slow);
}

.lk-feature-card-body {
  position: relative;
  z-index: 10;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  text-align: center;
  padding-top: 4rem;
}

.lk-feature-icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 1.5rem;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.1);
  transition: all 0.5s ease;
}

.lk-feature-card:hover .lk-feature-icon-wrap {
  transform: scale(1.1) rotate(6deg);
}

.lk-feature-title {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.lk-feature-desc {
  font-size: 0.8125rem;
  color: rgba(220,220,220,0.9);
  line-height: 1.6;
  font-weight: 500;
}

/* ── GALLERY SECTION ── */
.lk-gallery {
  background: var(--bg);
  padding: 5rem 0;
  overflow: hidden;
}

.lk-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .lk-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .lk-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.lk-gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-slow);
}

.lk-gallery-item:hover {
  box-shadow: var(--shadow-xl);
  transform: scale(1.03);
}

.lk-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.lk-gallery-item:hover img {
  transform: scale(1.1);
}

.lk-gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22,163,74,0.6) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.lk-gallery-item:hover .lk-gallery-item-overlay {
  opacity: 1;
}

.lk-gallery-featured {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

/* ── FOOTER ── */
.lk-footer {
  background: #0f172a;
  color: rgba(255,255,255,0.85);
  padding: 3.5rem 0 2rem;
}

.lk-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .lk-footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.lk-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.lk-footer-logo img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lk-footer-logo-text {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--primary-light);
}

.lk-footer-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.lk-footer-col-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}

.lk-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lk-footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.lk-footer-links a:hover {
  color: var(--primary-light);
}

.lk-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.625rem;
}

.lk-footer-contact-item svg {
  color: var(--primary-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.lk-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .lk-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.lk-footer-copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

.lk-footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

.lk-footer-badge span {
  color: var(--accent);
}

/* ── SECTION DECORATIONS ── */
.lk-section-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.lk-section-deco-1 {
  top: -5rem;
  right: -5rem;
  width: 20rem;
  height: 20rem;
  background: rgba(22,163,74,0.05);
}

.lk-section-deco-2 {
  bottom: -5rem;
  left: -5rem;
  width: 20rem;
  height: 20rem;
  background: rgba(234,179,8,0.04);
}

/* ── LIGHTBOX ── */
.lk-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.lk-lightbox.open {
  display: flex;
  animation: fadeIn 0.2s ease;
}

.lk-lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  object-fit: contain;
}

.lk-lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lk-lightbox-close:hover {
  background: rgba(255,255,255,0.25);
}

/* ── ANIMATIONS ── */
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 10px rgba(234,179,8,0.8); opacity: 1; }
  50% { box-shadow: 0 0 20px rgba(234,179,8,0.4); opacity: 0.7; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

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

.lk-fade-in-up {
  animation: fadeInUp 0.6s ease both;
}

.lk-delay-100 { animation-delay: 0.1s; }
.lk-delay-200 { animation-delay: 0.2s; }
.lk-delay-300 { animation-delay: 0.3s; }
.lk-delay-400 { animation-delay: 0.4s; }

/* ── COUNTER ANIMATION ── */
.lk-counter {
  display: inline-block;
}

/* ── SCROLL REVEAL ── */
.lk-reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.lk-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #16a34a; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #15803d; }

/* ── FLOATING WHATSAPP WIDGET ── */
.wa-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: 'Inter', sans-serif;
}

.wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  background: #25D366;
  color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.wa-btn * {
  pointer-events: none;
}

.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
  background: #20ba5a;
}

.wa-btn-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 1.25rem;
  height: 1.25rem;
  background: #ef4444;
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.6875rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  animation: pulse-red 2s infinite;
}

.wa-popup {
  position: absolute;
  bottom: 4.5rem;
  right: 0;
  width: min(340px, 90vw);
  background: #ffffff;
  border-radius: 1.25rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.95);
  transition: all 0.3s ease;
  pointer-events: none;
}

.wa-widget:hover .wa-popup,
.wa-popup.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.wa-popup-header {
  background: #075E54;
  color: #ffffff;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  position: relative;
}

.wa-avatar {
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: #ffffff;
  padding: 2px;
  flex-shrink: 0;
}

.wa-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.wa-status-dot {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 0.625rem;
  height: 0.625rem;
  background: #25D366;
  border-radius: 50%;
  border: 2px solid #ffffff;
}

.wa-header-info {
  display: flex;
  flex-direction: column;
}

.wa-header-name {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
}

.wa-header-status {
  font-size: 0.75rem;
  opacity: 0.85;
  margin-top: 2px;
}

.wa-popup-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 0.25rem;
  font-size: 1.25rem;
  line-height: 1;
  border-radius: 50%;
  transition: color 0.2s;
}

.wa-popup-close:hover {
  color: #ffffff;
}

.wa-popup-body {
  padding: 1.25rem;
  background: #E5DDD5;
  background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
  background-size: 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.wa-chat-bubble {
  background: #ffffff;
  padding: 0.875rem 1rem;
  border-radius: 0 0.875rem 0.875rem 0.875rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  font-size: 0.84375rem;
  color: #1f2937;
  line-height: 1.5;
  position: relative;
}

.wa-chat-bubble::before {
  content: '';
  position: absolute;
  top: 0;
  left: -8px;
  width: 0;
  height: 0;
  border-top: 8px solid #ffffff;
  border-left: 8px solid transparent;
}

.wa-chat-time {
  display: block;
  font-size: 0.6875rem;
  color: #9ca3af;
  text-align: right;
  margin-top: 0.375rem;
}

.wa-chat-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #25D366;
  color: #ffffff;
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.wa-chat-cta:hover {
  background: #20ba5a;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

@keyframes pulse-red {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* ── LOGIN MODAL POPUP ── */
.login-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.login-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.login-modal-card {
  width: 100%;
  max-width: 440px;
  background: #ffffff;
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(226, 232, 240, 0.8);
  padding: 2rem;
  position: relative;
  transform: scale(0.95) translateY(15px);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.login-modal-overlay.open .login-modal-card {
  transform: scale(1) translateY(0);
}

.login-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #f1f5f9;
  border: none;
  color: #64748b;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.login-modal-close:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.login-modal-header {
  text-align: center;
  margin-bottom: 1.25rem;
}

.login-modal-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 0.75rem auto;
  display: block;
  border: 2px solid var(--primary);
  padding: 2px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.15);
}

.login-modal-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.login-modal-subtitle {
  font-size: 0.8125rem;
  color: #64748b;
}

/* Tabs */
.login-tabs-wrap {
  background: #f1f5f9;
  padding: 4px;
  border-radius: 9999px;
  display: flex;
  gap: 4px;
  margin-bottom: 1.25rem;
}

.login-tab-btn {
  flex: 1;
  padding: 0.625rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 700;
  border: none;
  background: transparent;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
}

.login-tab-btn.active {
  background: #ffffff;
  color: var(--primary-dark);
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.login-form-group {
  margin-bottom: 1.125rem;
}

.login-form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 0.375rem;
}

.login-input-field {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1.5px solid #cbd5e1;
  font-size: 0.875rem;
  font-family: inherit;
  color: #0f172a;
  background: #ffffff;
  outline: none;
  transition: all 0.2s;
}

.login-input-field:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
}

.login-submit-btn {
  width: 100%;
  padding: 0.875rem 1.5rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.login-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
}

/* ── PENDAFTARAN SECTION ── */
.lk-pendaftaran {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
}

.lk-pendaftaran .lk-section-title {
  color: var(--white);
}

.lk-pendaftaran .lk-section-desc {
  color: rgba(255, 255, 255, 0.9);
}

.lk-pendaftaran .lk-section-label {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.lk-pendaftaran-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
  color: var(--fg);
}

.lk-pendaftaran-form .lk-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .lk-pendaftaran-form .lk-form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.lk-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lk-form-group-full {
  grid-column: 1 / -1;
}

.lk-form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg);
}

.lk-form-group label .required {
  color: #ef4444;
}

.lk-form-group input,
.lk-form-group select,
.lk-form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-muted);
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--fg);
  transition: var(--transition);
}

.lk-form-group input:focus,
.lk-form-group select:focus,
.lk-form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--bg);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
}

.lk-btn-submit-reg {
  margin-top: 2rem;
  width: 100%;
  padding: 1rem;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.3);
}

.lk-btn-submit-reg:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
}

.lk-alert {
  padding: 1rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-size: 0.875rem;
}

.lk-alert.success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

/* ── 2-COLUMN PROGRAM SELECTOR & COST ESTIMATION (REFERENCE DESIGN) ── */
.lk-reg-split {
  display: grid;
  grid-template-columns: 1fr;
  background: #ffffff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  color: #1e293b;
  margin-bottom: 2rem;
}

@media (min-width: 992px) {
  .lk-reg-split {
    grid-template-columns: 380px 1fr;
  }
}

/* Left Sidebar (Dark Image / Gradient Theme) */
.lk-reg-left {
  background: linear-gradient(160deg, #15803d 0%, #052e16 100%);
  color: #ffffff;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.lk-reg-left-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: #4ade80;
}

.lk-reg-left-title {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.lk-reg-left-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin-bottom: 2rem;
}

.lk-reg-select-group {
  margin-bottom: 1.25rem;
}

.lk-reg-select-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #4ade80;
  margin-bottom: 0.375rem;
  text-transform: uppercase;
}

.lk-reg-select-wrap {
  position: relative;
}

.lk-reg-select {
  width: 100%;
  appearance: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0.75rem;
  padding: 0.875rem 2.5rem 0.875rem 1rem;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease;
}

.lk-reg-select:hover,
.lk-reg-select:focus {
  background: rgba(255, 255, 255, 0.18);
  border-color: #4ade80;
}

.lk-reg-select option {
  background: #0f172a;
  color: #ffffff;
}

.lk-reg-select-chevron {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: rgba(255, 255, 255, 0.7);
}

/* Right Content Area */
.lk-reg-right {
  padding: 2.5rem;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

.lk-reg-right-label {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #16a34a;
  text-transform: uppercase;
  margin-bottom: 0.375rem;
}

.lk-reg-right-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e2e8f0;
}

.lk-reg-cost-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  margin-bottom: 1.75rem;
}

@media (min-width: 576px) {
  .lk-reg-cost-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.lk-reg-cost-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.875rem;
  padding: 1.25rem 1rem;
  transition: all 0.2s ease;
}

.lk-reg-cost-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.lk-reg-cost-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #64748b;
  text-transform: uppercase;
  margin-bottom: 0.375rem;
}

.lk-reg-cost-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
}

.lk-reg-cost-included {
  color: #16a34a;
  font-size: 1.1rem;
}

/* Button Row */
.lk-reg-btn-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 576px) {
  .lk-reg-btn-row {
    grid-template-columns: 1.2fr 1fr;
  }
}

.lk-reg-btn-daftar {
  background: #15803d;
  color: #ffffff;
  border: none;
  border-radius: 0.75rem;
  padding: 0.875rem 1.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(21, 128, 61, 0.3);
}

.lk-reg-btn-daftar:hover {
  background: #166534;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(21, 128, 61, 0.4);
}

.lk-reg-btn-tanya {
  background: #ffffff;
  color: #0f172a;
  border: 1.5px solid #cbd5e1;
  border-radius: 0.75rem;
  padding: 0.875rem 1.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.lk-reg-btn-tanya:hover {
  border-color: #15803d;
  color: #15803d;
  background: #f0fdf4;
}

/* Important Note Box */
.lk-reg-note {
  background: #fefce8;
  border: 1px solid #fef08a;
  border-radius: 0.875rem;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #854d0e;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.lk-reg-note svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #ca8a04;
}

/* Hidden Form Container */
.lk-reg-form-section {
  margin-top: 2.5rem;
  animation: fadeInUp 0.4s ease;
}

.lk-reg-form-heading {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  text-align: center;
}

