/* ============================================================
   LIC Advisor Portal — Frontend CSS v1.2.0
   Primary:  #72BDEC (sky blue — overridden dynamically by admin)
   Accent:   #FFB300 (amber gold)
   Font:     Barlow
   Colors are set via CSS variables, dynamically from PHP admin.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ---- DEFAULT CSS Variables (overridden dynamically from PHP) ---- */
:root {
  --lap-primary:         #72BDEC;
  --lap-primary-dark:    #4da8e0;
  --lap-primary-deep:    #1565c0;
  --lap-primary-light:   #e3f4fd;
  --lap-primary-glow:    rgba(114,189,236,0.20);
  --lap-primary-10:      rgba(114,189,236,0.10);
  --lap-primary-15:      rgba(114,189,236,0.15);
  --lap-primary-18:      rgba(114,189,236,0.18);
  --lap-primary-35:      rgba(114,189,236,0.35);
  --lap-primary-45:      rgba(114,189,236,0.45);
  --lap-primary-70:      rgba(114,189,236,0.70);
  --lap-primary-deep-70: rgba(21,101,192,0.70);
  --lap-yellow:          #FFB300;
  --lap-yellow-dark:     #e6a000;
  --lap-yellow-glow:     rgba(255,179,0,0.35);
  --lap-text:            #0f1c2e;
  --lap-text-muted:      #546e7a;
  --lap-white:           #ffffff;
  --lap-gray-50:         #f7f9fc;
  --lap-gray-100:        #f0f4f9;
  --lap-gray-200:        #dde4ef;
  --lap-gray-300:        #c0ccdc;
  --lap-green:           #43a047;
  --lap-dark-bg:         #0d2137;
  --lap-dark-card:       rgba(255,255,255,0.06);
  --lap-shadow-sm:       0 2px 12px rgba(114,189,236,0.10);
  --lap-shadow:          0 4px 28px rgba(114,189,236,0.15);
  --lap-shadow-lg:       0 8px 48px rgba(114,189,236,0.20);
  --lap-shadow-xl:       0 16px 64px rgba(114,189,236,0.25);
  --lap-radius:          14px;
  --lap-radius-sm:       8px;
  --lap-radius-lg:       22px;
  --lap-radius-xl:       32px;
  --lap-transition:      0.25s ease;
  --lap-header-h:        74px;
  --lap-topbar-h:        42px;
  --lap-slider-desktop-h: 620px;
  --lap-slider-mobile-h:  380px;
}

html { scroll-behavior: smooth; }

/*
 * ROOT CAUSE FIX — EMOJI ICONS TOO BIG / NOT LOADING
 * -------------------------------------------------------
 * Problem 1 — NOT LOADING on some devices (Android/Linux):
 *   `font-family: 'Barlow', sans-serif` has NO emoji font in the stack.
 *   `body.lap-body * { font-family: 'Barlow', ... }` wildcard forces this on EVERY
 *   element. Barlow has zero emoji glyphs. The browser must fall back to a system
 *   emoji font. On some Android devices and Linux the fallback chain breaks → emoji
 *   show as □ or are invisible.
 *
 * Problem 2 — TOO BIG on some devices:
 *   On high-DPI Android phones the system emoji font (Noto Color Emoji) renders at
 *   device-pixel-ratio × CSS font-size unless the font stack explicitly names an
 *   emoji font AFTER the text font. Without it, emoji size is unpredictable across
 *   devices and browsers.
 *
 * Fix: Add the three standard emoji fonts to every font-family declaration:
 *   'Apple Color Emoji'  → iOS / macOS
 *   'Segoe UI Emoji'     → Windows
 *   'Noto Color Emoji'   → Android / Linux / Chrome
 *
 * Additionally: the `body.lap-body *` wildcard must NOT force a font-family override
 * on elements — it prevents emoji fallback from working. Replace with a narrower rule
 * that targets only text-content elements, not all elements.
 */

/* ── 1. Correct font stack with emoji fallbacks ── */
:root {
  --lap-font: 'Barlow', 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif;
}
body.lap-body {
  font-family: var(--lap-font);
  font-size: 16px;
  color: var(--lap-text);
  background: var(--lap-white);
  line-height: 1.65;
  overflow-x: hidden;
}
/* ── 2. Apply font only to text-bearing elements, NOT to all elements ──
   Old rule `body.lap-body * { font-family: ... }` broke emoji on many devices.
   This narrower selector covers all real text containers without breaking emoji. */
body.lap-body p, body.lap-body h1, body.lap-body h2, body.lap-body h3,
body.lap-body h4, body.lap-body h5, body.lap-body h6,
body.lap-body a, body.lap-body li, body.lap-body label,
body.lap-body input, body.lap-body textarea, body.lap-body select,
body.lap-body button, body.lap-body td, body.lap-body th,
body.lap-body div, body.lap-body section, body.lap-body nav,
body.lap-body header, body.lap-body footer {
  font-family: var(--lap-font);
}

/* ── 3. SVG ICON GLOBAL RULES ──
   All icons are now inline SVGs with explicit width/height set in PHP.
   These rules handle display, color, and alignment only. */

/* No SVG should ever stretch or be clipped */
body.lap-body svg { max-width: none; flex-shrink: 0; overflow: visible; }

/* Social header icons */
body.lap-body .lap-social-icon svg { display: block; width: 16px !important; height: 16px !important; }

/* Icon span wrappers — flex so the SVG sits centred */
body.lap-body .lap-ql-icon,
body.lap-body .lap-ah-icon,
body.lap-body .lap-badge-icon,
body.lap-body .lap-benefit-icon,
body.lap-body .lap-resource-icon,
body.lap-body .lap-feat-icon,
body.lap-body .lap-logo-icon,
body.lap-body .lap-contact-icon,
body.lap-body .lap-pay-icon,
body.lap-body .lap-ah-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

/* Colour per context — SVGs inherit currentColor from here */
body.lap-body .lap-ql-icon       { color: var(--lap-primary); }
body.lap-body .lap-benefit-icon  { color: var(--lap-white); }
body.lap-body .lap-resource-icon { color: var(--lap-primary); }
body.lap-body .lap-feat-icon     { color: var(--lap-primary); }
body.lap-body .lap-logo-icon     { color: var(--lap-yellow); }
body.lap-body .lap-badge-icon    { color: var(--lap-yellow); }
body.lap-body .lap-contact-icon  { color: var(--lap-primary); }
body.lap-body .lap-pay-icon      { color: var(--lap-primary); display: block; margin-bottom: 10px; }
body.lap-body .lap-ah-icon       { color: var(--lap-primary); }

/* Footer contact list SVG icons */
body.lap-body .lap-footer-contact li > svg { flex-shrink: 0; opacity: 0.85; }

/* Inline pin / location SVGs */
body.lap-body .lap-t-loc > svg,
body.lap-body .lap-team-loc > svg { flex-shrink: 0; opacity: 0.7; vertical-align: middle; }

/* Calculator total */
body.lap-body .lap-calc-total svg { color: var(--lap-primary); vertical-align: middle; }

/* Gallery zoom */
body.lap-body .lap-gallery-zoom svg { color: var(--lap-white); }

/* Why-join bar item icons */
body.lap-body .lap-wj-item > svg { flex-shrink: 0; color: var(--lap-primary); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--lap-font); }

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

/* ============================================================
   BUTTONS — Shiny & Dynamic
   ============================================================ */
.lap-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 30px; border-radius: 8px;
  font-weight: 700; font-size: 15px; letter-spacing: 0.2px;
  transition: all var(--lap-transition); cursor: pointer;
  border: 2px solid transparent; white-space: nowrap;
  position: relative; overflow: hidden;
}
/* Shimmer shine effect */
.lap-btn::before {
  content: ''; position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.32), transparent);
  transform: skewX(-20deg);
  transition: none;
  animation: lap-shimmer 3.5s infinite;
}
@keyframes lap-shimmer {
  0%   { left: -120%; }
  60%  { left: 200%; }
  100% { left: 200%; }
}
.lap-btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--lap-transition);
}
.lap-btn:hover::after { background: rgba(255,255,255,0.08); }

.lap-btn-primary {
  background: linear-gradient(135deg, var(--lap-primary) 0%, var(--lap-primary-dark) 100%);
  color: var(--lap-white);
  box-shadow: 0 4px 18px var(--lap-primary-glow);
}
.lap-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--lap-primary-35);
  background: linear-gradient(135deg, var(--lap-primary-dark) 0%, var(--lap-primary-deep) 100%);
}
.lap-btn-yellow {
  background: linear-gradient(135deg, var(--lap-yellow) 0%, var(--lap-yellow-dark) 100%);
  color: var(--lap-primary-deep); font-weight: 800;
  box-shadow: 0 4px 18px var(--lap-yellow-glow);
}
.lap-btn-yellow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--lap-yellow-glow);
  filter: brightness(1.06);
}
.lap-btn-outline {
  background: transparent; color: var(--lap-primary); border-color: var(--lap-primary);
}
.lap-btn-outline:hover {
  background: var(--lap-primary); color: var(--lap-white); transform: translateY(-2px);
}
.lap-btn-outline-white {
  background: transparent; color: var(--lap-white); border-color: rgba(255,255,255,0.6);
}
.lap-btn-outline-white:hover { background: var(--lap-white); color: var(--lap-primary); }
.lap-btn-lg  { padding: 17px 42px; font-size: 17px; border-radius: 10px; }
.lap-btn-sm  { padding: 9px 20px; font-size: 13px; }
.lap-btn-full { width: 100%; }

/* ============================================================
   SECTION BASICS
   ============================================================ */
.lap-section { padding: 90px 0; }
.lap-section-header { text-align: center; margin-bottom: 56px; }
.lap-section-tag {
  display: inline-block;
  background: var(--lap-primary-light);
  color: var(--lap-primary);
  font-weight: 700; font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 16px; border-radius: 20px;
  margin-bottom: 14px;
}
.lap-tag-light { background: rgba(255,255,255,0.15); color: var(--lap-white); }
.lap-section-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800; color: var(--lap-text);
  line-height: 1.15; margin-bottom: 16px;
}
.lap-title-white { color: var(--lap-white); }
.lap-section-subtitle { color: var(--lap-text-muted); font-size: 17px; max-width: 580px; margin: 0 auto; }
.lap-subtitle-light { color: rgba(255,255,255,0.75); }

/* ============================================================
   TOP BAR
   ============================================================ */
.lap-topbar {
  background: linear-gradient(90deg, var(--lap-primary-deep) 0%, var(--lap-primary) 100%);
  height: var(--lap-topbar-h); font-size: 13px;
}
.lap-topbar-inner {
  display: flex; align-items: center; justify-content: space-between; height: 100%;
}
.lap-topbar-left { display: flex; align-items: center; gap: 16px; }
.lap-topbar-left a {
  color: rgba(255,255,255,0.88); transition: color var(--lap-transition);
  display: flex; align-items: center; gap: 5px;
}
.lap-topbar-left a:hover { color: var(--lap-yellow); }
.lap-topbar-sep { color: rgba(255,255,255,0.25); }
.lap-topbar-right { display: flex; align-items: center; gap: 10px; }
.lap-social-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: var(--lap-white);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all var(--lap-transition);
  flex-shrink: 0;
}
.lap-social-icon svg { display: block; width: 16px; height: 16px; flex-shrink: 0; }
.lap-social-icon:hover { background: var(--lap-yellow); color: var(--lap-primary-deep); }
.lap-topbar-cta {
  background: var(--lap-yellow);
  color: var(--lap-primary-deep);
  font-weight: 800; font-size: 11px; letter-spacing: 1px;
  text-transform: uppercase; padding: 6px 16px;
  border-radius: 5px; transition: all var(--lap-transition);
}
.lap-topbar-cta:hover { background: #fff; transform: translateY(-1px); }

/* ============================================================
   HEADER
   ============================================================ */
.lap-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--lap-white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  height: var(--lap-header-h);
  transition: all var(--lap-transition);
}
.lap-header.lap-scrolled {
  box-shadow: 0 4px 32px var(--lap-primary-18);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
}
.lap-header-inner {
  display: flex; align-items: center; justify-content: space-between; height: 100%;
}
.lap-logo { display: flex; align-items: center; gap: 12px; }
.lap-logo-img { height: 52px; width: auto; }
.lap-logo-text { display: flex; align-items: center; gap: 10px; }
.lap-logo-icon { display: inline-flex; align-items: center; line-height: 1; }
.lap-logo-text > div strong {
  display: block; font-size: 19px; font-weight: 800;
  color: var(--lap-primary); letter-spacing: -0.3px;
}
.lap-logo-text > div small {
  display: block; font-size: 11px; color: var(--lap-text-muted);
  font-weight: 500; letter-spacing: 0.5px;
}

/* Nav */
.lap-nav { display: flex; }
.lap-nav-list { display: flex; align-items: center; gap: 2px; }
.lap-nav-list > li { position: relative; }
.lap-nav-list > li > a {
  display: flex; align-items: center; gap: 4px;
  padding: 10px 13px; font-size: 14px; font-weight: 600;
  color: var(--lap-text); border-radius: 7px;
  transition: all var(--lap-transition); white-space: nowrap;
}
.lap-nav-list > li > a:hover {
  color: var(--lap-primary); background: var(--lap-primary-light);
}
.lap-arrow { font-size: 10px; transition: transform var(--lap-transition); opacity: 0.6; }
.lap-has-dropdown:hover .lap-arrow { transform: rotate(180deg); opacity: 1; }
.lap-nav-cta {
  background: linear-gradient(135deg, var(--lap-yellow), var(--lap-yellow-dark)) !important;
  color: var(--lap-primary-deep) !important; font-weight: 800 !important;
  box-shadow: 0 3px 14px var(--lap-yellow-glow);
}
.lap-nav-cta:hover {
  box-shadow: 0 6px 20px var(--lap-yellow-glow) !important;
  transform: translateY(-1px);
}

/* Dropdown */
.lap-dropdown {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: var(--lap-white); border-radius: var(--lap-radius);
  box-shadow: var(--lap-shadow-xl); min-width: 230px;
  opacity: 0; visibility: hidden;
  transform: translateY(-10px) scale(0.97);
  transition: all 0.22s cubic-bezier(.4,0,.2,1);
  z-index: 200; border: 1px solid var(--lap-gray-200);
  overflow: hidden;
}
.lap-has-dropdown:hover .lap-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0) scale(1);
}
.lap-dropdown li a {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 20px; font-size: 14px; font-weight: 500;
  color: var(--lap-text); border-bottom: 1px solid var(--lap-gray-100);
  transition: all var(--lap-transition);
}
.lap-dropdown li:last-child a { border-bottom: none; }
.lap-dropdown li a:hover {
  background: var(--lap-primary-light); color: var(--lap-primary); padding-left: 26px;
}

/* Hamburger */
.lap-hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
  border-radius: 8px; transition: background var(--lap-transition);
}
.lap-hamburger:hover { background: var(--lap-gray-100); }
.lap-hamburger span {
  display: block; width: 24px; height: 2.5px;
  background: var(--lap-primary); border-radius: 2px; transition: all 0.3s ease;
}
.lap-hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.lap-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.lap-hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Drawer */
.lap-mobile-menu {
  position: fixed; top: 0; right: 0;
  width: 310px; height: 100vh;
  background: var(--lap-white); z-index: 1100;
  box-shadow: -12px 0 50px rgba(0,0,0,0.18);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.4,0,.2,1);
  overflow-y: auto; padding: 64px 0 40px;
}
.lap-mobile-menu.open { transform: translateX(0); }
.lap-mobile-close {
  position: absolute; top: 16px; right: 18px;
  font-size: 20px; color: var(--lap-text-muted);
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--lap-transition);
}
.lap-mobile-close:hover { background: var(--lap-gray-100); color: var(--lap-primary); }
.lap-overlay {
  position: fixed; inset: 0; background: rgba(6,17,31,0.55);
  z-index: 1050; opacity: 0; visibility: hidden;
  transition: all 0.35s; backdrop-filter: blur(2px);
}
.lap-overlay.visible { opacity: 1; visibility: visible; }
.lap-mobile-nav > li > a,
.lap-mobile-nav > li > .lap-mobile-toggle {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 24px; font-size: 15px; font-weight: 600;
  color: var(--lap-text); border-bottom: 1px solid var(--lap-gray-100);
  width: 100%; text-align: left;
  transition: all var(--lap-transition);
}
.lap-mobile-nav > li > a:hover,
.lap-mobile-nav > li > .lap-mobile-toggle:hover {
  background: var(--lap-primary-light); color: var(--lap-primary);
}
.lap-mobile-group ul { display: none; background: var(--lap-gray-50); }
.lap-mobile-group ul.open { display: block; }
.lap-mobile-group ul li a {
  display: block; padding: 10px 36px;
  font-size: 14px; font-weight: 500;
  color: var(--lap-text-muted); border-bottom: 1px solid var(--lap-gray-100);
  transition: all var(--lap-transition);
}
.lap-mobile-group ul li a:hover { color: var(--lap-primary); padding-left: 42px; }
.lap-mobile-cta {
  display: block !important; margin: 20px 16px 0;
  background: linear-gradient(135deg, var(--lap-yellow), var(--lap-yellow-dark)) !important;
  color: var(--lap-primary-deep) !important; text-align: center !important;
  padding: 15px 24px !important; border-radius: 10px !important;
  font-weight: 800 !important; font-size: 15px !important;
  box-shadow: 0 4px 16px var(--lap-yellow-glow) !important;
}

/* ============================================================
   HERO SLIDER — Desktop + Mobile (image only, no CTA buttons)
   ============================================================ */
/* Slider wrapper — overflow:hidden critical: prevents both sliders stacking if display rule fails */
.lap-slider-wrapper { position: relative; overflow: hidden; line-height: 0; font-size: 0; }

/* Desktop slider — shown on screens wider than 768px */
/* Desktop slider — visible on ≥769px, hidden on mobile */
body.lap-body .lap-slider-wrapper .lap-slider-desktop {
  display: block !important;
  position: relative;
  height: var(--lap-slider-desktop-h, 620px);
  min-height: 400px;
  max-height: 90vh;
  overflow: hidden;
  background: var(--lap-primary-deep);
}
/* Mobile slider — hidden on desktop, shown only on mobile (≤768px) */
body.lap-body .lap-slider-wrapper .lap-slider-mobile,
.lap-slider-mobile {
  display: none !important;
  position: relative;
  height: var(--lap-slider-mobile-h, 380px);
  min-height: 220px;
  max-height: 75vh;
  overflow: hidden;
  background: var(--lap-primary-deep);
}

.lap-slider-track { position: relative; height: 100%; }

.lap-slide {
  position: absolute; inset: 0;
  background-color: var(--lap-primary-deep);
  background-size: cover; background-position: center center;
  background-repeat: no-repeat;
  opacity: 0; transition: opacity 1.2s ease;
}
.lap-slide.lap-active { opacity: 1; z-index: 2; }
.lap-slide-default {
  background: linear-gradient(135deg, #001b3a 0%, var(--lap-primary) 100%) !important;
}
.lap-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6,17,31,0.15) 0%,
    rgba(6,17,31,0.05) 50%,
    rgba(6,17,31,0.35) 100%
  );
  z-index: 1;
}

/* Dots — only navigation (no prev/next arrow buttons) */
.lap-slider-dots {
  position: absolute; bottom: 22px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.lap-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.40);
  border: none; transition: all 0.35s ease; cursor: pointer;
}
.lap-dot.lap-dot-active {
  background: var(--lap-yellow);
  transform: scale(1.4);
  width: 24px; border-radius: 4px;
}

/* Scroll hint on desktop slider only */
.lap-scroll-hint {
  position: absolute; bottom: 22px; right: 28px;
  z-index: 10; display: flex; flex-direction: column; align-items: center;
}
.lap-scroll-hint span {
  display: block; width: 2px; height: 38px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.65), transparent);
  animation: lap-scrollanim 1.8s infinite;
}
@keyframes lap-scrollanim {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  40%  { opacity: 1; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: top; }
}

/* ============================================================
   QUICK LINKS BAR
   ============================================================ */
.lap-quicklinks {
  background: var(--lap-white);
  border-bottom: 1px solid var(--lap-gray-200);
  box-shadow: 0 4px 24px var(--lap-primary-10);
  position: relative; z-index: 5;
}
.lap-quicklinks-grid {
  display: grid; grid-template-columns: repeat(8, 1fr);
}
.lap-quicklink-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 22px 8px;
  border-right: 1px solid var(--lap-gray-200);
  font-size: 12px; font-weight: 600; color: var(--lap-text);
  text-align: center; transition: all var(--lap-transition);
}
.lap-quicklink-item:first-child { border-left: 1px solid var(--lap-gray-200); }
.lap-quicklink-item:hover {
  background: var(--lap-primary); color: var(--lap-white);
  transform: translateY(-3px); box-shadow: 0 6px 20px var(--lap-primary-glow);
}
.lap-ql-icon { display: inline-flex; align-items: center; line-height: 1; }
.lap-ql-label { font-size: 11px; line-height: 1.3; font-weight: 700; letter-spacing: 0.2px; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.lap-about-section { background: var(--lap-white); }
.lap-about-grid {
  display: grid; grid-template-columns: 420px 1fr;
  gap: 64px; align-items: start;
}
.lap-about-image-col { position: relative; }
.lap-about-photo-wrap {
  position: relative; border-radius: var(--lap-radius-lg); overflow: hidden;
  box-shadow: var(--lap-shadow-xl);
}
.lap-about-photo-wrap > img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block;
}
.lap-about-photo-badge {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(12px);
  border-radius: var(--lap-radius); padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--lap-shadow);
  border: 1px solid var(--lap-gray-200);
}
.lap-badge-icon { display: inline-flex; align-items: center; line-height: 1; }
.lap-about-photo-badge span:last-child {
  font-size: 13px; font-weight: 700; color: var(--lap-primary); line-height: 1.4;
}

.lap-about-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--lap-primary-light), var(--lap-primary-light));
  border-radius: var(--lap-radius-lg);
  border: 2px dashed var(--lap-primary);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px;
}

.lap-about-stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 10px; margin-top: 16px;
}
.lap-about-stat {
  background: var(--lap-gray-50);
  border: 1.5px solid var(--lap-gray-200);
  border-radius: var(--lap-radius-sm);
  padding: 14px 10px; text-align: center;
  transition: all var(--lap-transition);
}
.lap-about-stat:hover { border-color: var(--lap-primary); background: var(--lap-primary-light); }
.lap-about-stat-num { display: block; font-size: 18px; font-weight: 800; color: var(--lap-primary); }
.lap-about-stat-lab { display: block; font-size: 11px; color: var(--lap-text-muted); font-weight: 600; margin-top: 2px; }

.lap-about-name-block { margin-bottom: 24px; }
.lap-mentor-name { font-size: 38px; font-weight: 900; color: var(--lap-text); letter-spacing: -0.5px; }
.lap-mentor-title { margin-top: 6px; }
.lap-title-badge {
  display: inline-block; background: linear-gradient(135deg, var(--lap-primary), var(--lap-primary-dark));
  color: var(--lap-white); font-size: 13px; font-weight: 700;
  padding: 5px 16px; border-radius: 20px; letter-spacing: 0.3px;
}
.lap-mentor-bio {
  font-size: 15px; color: var(--lap-text-muted); line-height: 1.85;
  margin-bottom: 28px;
  padding-bottom: 28px; border-bottom: 1.5px solid var(--lap-gray-200);
}

.lap-about-highlights { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.lap-about-highlight {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px; border-radius: var(--lap-radius);
  background: var(--lap-gray-50);
  border: 1px solid var(--lap-gray-200);
  transition: all var(--lap-transition);
}
.lap-about-highlight:hover { background: var(--lap-primary-light); border-color: var(--lap-primary); }
.lap-ah-icon { display: inline-flex; align-items: center; flex-shrink: 0; line-height: 1; }
.lap-ah-text strong { display: block; font-size: 15px; font-weight: 700; color: var(--lap-text); margin-bottom: 4px; }
.lap-ah-text p { font-size: 13px; color: var(--lap-text-muted); line-height: 1.6; }
.lap-about-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.lap-why-join-bar {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  margin-top: 60px; padding: 28px 32px;
  background: linear-gradient(135deg, var(--lap-primary-light), #f0f9ff);
  border-radius: var(--lap-radius-xl);
  border: 1px solid var(--lap-primary-15);
}
.lap-wj-item {
  display: flex; align-items: center; gap: 8px;
  background: var(--lap-white); border: 1px solid var(--lap-gray-200);
  border-radius: 40px; padding: 9px 18px;
  font-size: 13px; font-weight: 600; color: var(--lap-text);
  box-shadow: var(--lap-shadow-sm); transition: all var(--lap-transition);
}
.lap-wj-item:hover { background: var(--lap-primary); color: var(--lap-white); border-color: var(--lap-primary); }

/* ============================================================
   BENEFITS
   ============================================================ */
.lap-benefits-section { background: var(--lap-gray-50); }
.lap-benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.lap-benefit-card {
  background: var(--lap-white); border-radius: var(--lap-radius-lg);
  padding: 38px 30px 32px; box-shadow: var(--lap-shadow-sm);
  border: 1.5px solid var(--lap-gray-200);
  transition: all 0.3s ease; position: relative; overflow: hidden;
}
.lap-benefit-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, var(--lap-primary), var(--lap-yellow));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.lap-benefit-card:hover { transform: translateY(-8px); box-shadow: var(--lap-shadow-xl); border-color: transparent; }
.lap-benefit-card:hover::before { transform: scaleX(1); }
.lap-benefit-icon-wrap {
  width: 68px; height: 68px; border-radius: var(--lap-radius);
  background: var(--lap-primary-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; transition: all var(--lap-transition);
}
.lap-benefit-card:hover .lap-benefit-icon-wrap { background: var(--lap-primary); }
.lap-benefit-icon { display: inline-flex; align-items: center; justify-content: center; }
.lap-benefit-title { font-size: 18px; font-weight: 800; color: var(--lap-text); margin-bottom: 12px; }
.lap-benefit-desc { font-size: 14px; color: var(--lap-text-muted); line-height: 1.75; }
.lap-benefit-arrow {
  color: var(--lap-primary); font-size: 18px; font-weight: 700;
  margin-top: 20px; opacity: 0; transform: translateX(-8px);
  transition: all var(--lap-transition);
}
.lap-benefit-card:hover .lap-benefit-arrow { opacity: 1; transform: translateX(0); }

/* Income Banner */
.lap-income-banner {
  display: flex; align-items: center; gap: 40px;
  background: linear-gradient(135deg, var(--lap-primary-deep) 0%, var(--lap-primary) 100%);
  border-radius: var(--lap-radius-xl); padding: 40px 48px;
  margin-top: 48px; color: var(--lap-white);
  box-shadow: var(--lap-shadow-xl);
}
.lap-income-left { flex: 1; }
.lap-income-left h3 { font-size: 26px; font-weight: 800; margin-bottom: 8px; }
.lap-income-left p  { font-size: 15px; color: rgba(255,255,255,0.8); }
.lap-income-stats   { display: flex; gap: 24px; }
.lap-income-stat {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: var(--lap-radius); padding: 20px 24px; text-align: center;
  min-width: 120px;
}
.lap-income-amount { font-size: 24px; font-weight: 800; color: var(--lap-yellow); }
.lap-income-period { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7); margin-top: 4px; }
.lap-income-desc   { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* ============================================================
   WHY LIC — Dark gradient section
   ============================================================ */
.lap-why-lic-section {
  background: linear-gradient(135deg, var(--lap-primary-deep) 0%, var(--lap-primary) 65%, var(--lap-primary-dark) 100%);
}
.lap-why-lic-grid {
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 72px; align-items: center;
}
.lap-why-lic-desc { color: rgba(255,255,255,0.82); font-size: 16px; line-height: 1.85; margin: 20px 0 30px; }
.lap-lic-points { display: flex; flex-direction: column; gap: 14px; }
.lap-lic-points li {
  display: flex; align-items: center; gap: 14px;
  color: rgba(255,255,255,0.92); font-size: 15px; font-weight: 500;
}
.lap-check {
  width: 26px; height: 26px; flex-shrink: 0;
  background: var(--lap-yellow); color: var(--lap-primary-deep);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900;
}
.lap-why-lic-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.lap-stat-card {
  background: rgba(255,255,255,0.09);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--lap-radius); padding: 28px 20px; text-align: center;
  transition: all var(--lap-transition);
}
.lap-stat-card:hover { background: rgba(255,255,255,0.18); transform: translateY(-5px); }
.lap-stat-num   { display: block; font-size: 30px; font-weight: 900; color: var(--lap-yellow); margin-bottom: 6px; }
.lap-stat-label { font-size: 13px; color: rgba(255,255,255,0.75); font-weight: 600; }

/* ============================================================
   PROCEDURE STEPS
   ============================================================ */
.lap-procedure-section { background: var(--lap-white); }
.lap-steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.lap-step-card {
  background: var(--lap-white); border: 1.5px solid var(--lap-gray-200);
  border-radius: var(--lap-radius-lg); padding: 36px 28px;
  position: relative; transition: all var(--lap-transition);
}
.lap-step-card:hover { border-color: var(--lap-primary); box-shadow: var(--lap-shadow-lg); transform: translateY(-6px); }
.lap-step-top { margin-bottom: 24px; }
.lap-step-number {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--lap-primary), var(--lap-primary-dark));
  color: var(--lap-white); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 900; letter-spacing: -1px;
  box-shadow: 0 6px 20px var(--lap-primary-glow);
}
.lap-step-title { font-size: 18px; font-weight: 800; color: var(--lap-text); margin-bottom: 12px; }
.lap-step-desc  { font-size: 14px; color: var(--lap-text-muted); line-height: 1.75; }
.lap-cta-center { text-align: center; margin-top: 48px; }
.lap-cta-note   { color: var(--lap-text-muted); font-size: 13px; margin-top: 12px; }

/* ============================================================
   SIP CALCULATOR
   ============================================================ */
.lap-calc-section { background: var(--lap-gray-50); }
.lap-calc-wrapper {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  background: var(--lap-white); border-radius: var(--lap-radius-xl);
  padding: 52px; box-shadow: var(--lap-shadow-xl);
  border: 1px solid var(--lap-gray-200);
}
.lap-calc-field { margin-bottom: 30px; }
.lap-calc-field label {
  display: block; font-size: 12px; font-weight: 700;
  color: var(--lap-text-muted); margin-bottom: 10px;
  text-transform: uppercase; letter-spacing: 1px;
}
.lap-calc-field input[type=range] {
  width: 100%; height: 6px; appearance: none;
  background: var(--lap-gray-200); border-radius: 3px; outline: none; cursor: pointer;
}
.lap-calc-field input[type=range]::-webkit-slider-thumb {
  appearance: none; width: 22px; height: 22px;
  background: var(--lap-primary); border-radius: 50%;
  border: 3px solid var(--lap-white);
  box-shadow: 0 2px 10px var(--lap-primary-glow); cursor: pointer;
}
.lap-calc-val   { font-size: 26px; font-weight: 900; color: var(--lap-primary); margin-top: 10px; }
.lap-calc-note  { font-size: 12px; color: var(--lap-text-muted); background: var(--lap-primary-light); padding: 10px 14px; border-radius: 8px; margin-top: 8px; }
.lap-calc-result { display: flex; flex-direction: column; align-items: center; gap: 28px; }
#lapCalcChart  { max-width: 240px; }
.lap-calc-summary { width: 100%; }
.lap-calc-row {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 0; border-bottom: 1px solid var(--lap-gray-200);
  font-size: 15px;
}
.lap-calc-row:last-child { border-bottom: none; }
.lap-calc-row span   { color: var(--lap-text-muted); font-weight: 500; flex: 1; }
.lap-calc-row strong { font-size: 16px; font-weight: 800; }
.lap-calc-dot      { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.lap-calc-divider  { border-top: 2px dashed var(--lap-gray-200); margin: 4px 0; }
.lap-calc-total { padding-top: 14px !important; }
.lap-calc-total strong { font-size: 22px; color: var(--lap-primary); }
.lap-primary-color { color: var(--lap-primary) !important; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.lap-testimonials-section { background: var(--lap-white); }
.lap-testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.lap-testimonial-card {
  background: var(--lap-gray-50); border: 1.5px solid var(--lap-gray-200);
  border-radius: var(--lap-radius-lg); padding: 32px 28px;
  transition: all var(--lap-transition); position: relative;
}
.lap-testimonial-card:hover {
  box-shadow: var(--lap-shadow-lg); transform: translateY(-6px); border-color: var(--lap-primary);
}
.lap-t-quote  { font-size: 60px; line-height: 1; color: var(--lap-primary); opacity: 0.12; margin-bottom: -20px; font-weight: 900; }
.lap-t-stars  { color: var(--lap-yellow); font-size: 17px; margin-bottom: 14px; letter-spacing: 1px; }
.lap-t-text   { font-size: 14px; color: var(--lap-text-muted); line-height: 1.85; margin-bottom: 22px; font-style: italic; }
.lap-t-author { display: flex; align-items: center; gap: 12px; }
.lap-t-author img {
  width: 46px; height: 46px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--lap-primary-light);
}
.lap-t-avatar {
  width: 46px; height: 46px; background: var(--lap-primary); color: var(--lap-white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
}
.lap-t-info strong { display: block; font-size: 14px; font-weight: 700; }
.lap-t-loc { display: block; font-size: 12px; color: var(--lap-text-muted); margin-top: 2px; }

/* ============================================================
   TEAM
   ============================================================ */
.lap-team-section { background: var(--lap-gray-50); }
.lap-team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.lap-team-card {
  background: var(--lap-white); border-radius: var(--lap-radius-lg);
  padding: 32px 20px; text-align: center;
  box-shadow: var(--lap-shadow-sm); border: 1.5px solid var(--lap-gray-200);
  transition: all var(--lap-transition); overflow: hidden; position: relative;
}
.lap-team-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--lap-primary), var(--lap-yellow));
  transform: scaleX(0); transition: transform var(--lap-transition);
}
.lap-team-card:hover { transform: translateY(-8px); box-shadow: var(--lap-shadow-xl); }
.lap-team-card:hover::after { transform: scaleX(1); }
.lap-team-photo-wrap {
  width: 100px; height: 100px; border-radius: 50%;
  margin: 0 auto 16px; overflow: hidden;
  border: 3px solid var(--lap-primary-light);
}
.lap-team-photo { width: 100%; height: 100%; object-fit: cover; }
.lap-team-avatar {
  width: 90px; height: 90px;
  background: linear-gradient(135deg, var(--lap-primary-light), var(--lap-primary));
  color: var(--lap-white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 900; margin: 0 auto 16px;
}
.lap-team-info h3  { font-size: 15px; font-weight: 800; margin-bottom: 4px; }
.lap-team-desig    { font-size: 12px; color: var(--lap-primary); font-weight: 600; margin-bottom: 4px; }
.lap-team-loc      { font-size: 12px; color: var(--lap-text-muted); }

/* ============================================================
   GALLERY
   ============================================================ */
.lap-gallery-section { background: var(--lap-white); }
.lap-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.lap-gallery-item {
  position: relative; border-radius: var(--lap-radius); overflow: hidden; aspect-ratio: 1;
}
.lap-gallery-item img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease;
}
.lap-gallery-item:hover img { transform: scale(1.1); }
.lap-gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--lap-primary-70), var(--lap-primary-deep-70));
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease;
}
.lap-gallery-item:hover .lap-gallery-overlay { opacity: 1; }
.lap-gallery-zoom { font-size: 32px; transform: scale(0.7); transition: transform 0.3s ease; }
.lap-gallery-item:hover .lap-gallery-zoom { transform: scale(1); }

/* ============================================================
   LEAD / JOIN FORM SECTION
   ============================================================ */
.lap-lead-section {
  background: linear-gradient(135deg, var(--lap-primary-deep) 0%, var(--lap-primary) 65%, var(--lap-primary-dark) 100%);
}
.lap-lead-header { margin-bottom: 52px; }
.lap-lead-wrapper {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.lap-lead-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.lap-lead-feat {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.9); font-size: 15px; font-weight: 500;
}
.lap-feat-icon { display: inline-flex; align-items: center; flex-shrink: 0; line-height: 1; }
.lap-lead-contact-cards { display: flex; flex-direction: column; gap: 10px; }
.lap-contact-card {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.20);
  border-radius: var(--lap-radius); padding: 14px 18px;
  color: var(--lap-white); transition: all var(--lap-transition);
  backdrop-filter: blur(8px);
}
.lap-contact-card:hover { background: rgba(255,255,255,0.20); transform: translateX(4px); }
.lap-contact-card > span,
.lap-contact-card > .lap-contact-icon { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0; }
.lap-contact-card div strong { display: block; font-size: 13px; font-weight: 800; color: var(--lap-yellow); }
.lap-contact-card div span  { display: block; font-size: 14px; color: rgba(255,255,255,0.85); }
.lap-wa-card { border-color: rgba(37,211,102,0.4); }
.lap-wa-card:hover { background: rgba(37,211,102,0.15); }
.lap-lead-form {
  background: var(--lap-white); border-radius: var(--lap-radius-xl);
  padding: 44px; box-shadow: var(--lap-shadow-xl);
}
.lap-form-header { margin-bottom: 28px; }
.lap-form-header h3 { font-size: 22px; font-weight: 900; color: var(--lap-text); }
.lap-form-header p  { font-size: 13px; color: var(--lap-text-muted); margin-top: 4px; }
.lap-form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.lap-form-group { margin-bottom: 14px; }
.lap-form-group label {
  display: block; font-size: 12px; font-weight: 700;
  color: var(--lap-text-muted); margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 0.8px;
}
.lap-form-group input,
.lap-form-group select,
.lap-form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--lap-gray-200);
  border-radius: var(--lap-radius-sm);
  font-family: inherit; font-size: 15px; color: var(--lap-text);
  transition: all var(--lap-transition); outline: none; background: var(--lap-white);
}
.lap-form-group input:focus,
.lap-form-group select:focus,
.lap-form-group textarea:focus {
  border-color: var(--lap-primary);
  box-shadow: 0 0 0 4px var(--lap-primary-10);
}
.lap-form-message {
  padding: 12px 16px; border-radius: var(--lap-radius-sm);
  font-size: 14px; font-weight: 600; margin-bottom: 16px;
}
.lap-form-message.success { background: #dcfce7; color: #166534; border: 1.5px solid #86efac; }
.lap-form-message.error   { background: #fee2e2; color: #991b1b; border: 1.5px solid #fca5a5; }
.lap-form-privacy { font-size: 12px; color: var(--lap-text-muted); text-align: center; margin-top: 12px; }

/* ============================================================
   HELP SIDEBAR
   ============================================================ */
.lap-help-sidebar {
  position: fixed; right: 0; top: 45%; z-index: 900; transform: translateY(-50%);
}
.lap-help-tab {
  writing-mode: vertical-rl; text-orientation: mixed; transform: rotate(180deg);
  background: linear-gradient(to bottom, var(--lap-primary), var(--lap-primary-dark));
  color: var(--lap-white);
  padding: 22px 13px; font-size: 13px; font-weight: 700;
  border-radius: 10px 0 0 10px; letter-spacing: 1.2px; cursor: pointer;
  transition: all var(--lap-transition);
  box-shadow: -4px 0 20px var(--lap-primary-glow);
}
.lap-help-tab:hover {
  background: linear-gradient(to bottom, var(--lap-primary-dark), var(--lap-primary-deep));
}
.lap-help-content {
  position: absolute; right: 0; top: 0;
  width: 290px; background: var(--lap-white);
  border-radius: var(--lap-radius) 0 0 var(--lap-radius);
  box-shadow: var(--lap-shadow-xl); padding: 26px;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.4,0,.2,1);
  border: 1px solid var(--lap-gray-200);
}
.lap-help-sidebar.open .lap-help-content { transform: translateX(0); }
.lap-help-content h4 { font-size: 17px; font-weight: 800; color: var(--lap-primary); margin-bottom: 18px; }
.lap-help-content input {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--lap-gray-200); border-radius: var(--lap-radius-sm);
  font-size: 14px; font-family: inherit; margin-bottom: 10px; outline: none;
  transition: border-color var(--lap-transition);
}
.lap-help-content input:focus { border-color: var(--lap-primary); }
.lap-help-contact { display: flex; gap: 10px; margin-top: 14px; }
.lap-help-contact a {
  flex: 1; text-align: center; padding: 10px 8px;
  border-radius: 8px; font-size: 13px; font-weight: 700;
  background: var(--lap-primary-light); color: var(--lap-primary);
  transition: all var(--lap-transition);
}
.lap-help-contact a:hover { background: var(--lap-primary); color: var(--lap-white); }

/* ============================================================
   FOOTER
   ============================================================ */
.lap-footer { background: var(--lap-dark-bg); color: var(--lap-white); }
.lap-footer-main { padding: 72px 0; }
.lap-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 44px; }
.lap-footer-brand { font-size: 22px; font-weight: 900; margin-bottom: 16px; color: var(--lap-yellow); letter-spacing: -0.3px; }
.lap-footer-about { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.85; margin-bottom: 22px; }
.lap-footer-socials { display: flex; gap: 10px; }
.lap-footer-socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: var(--lap-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; transition: all var(--lap-transition);
  border: 1px solid rgba(255,255,255,0.10);
  flex-shrink: 0;
}
.lap-footer-socials a svg { width: 16px !important; height: 16px !important; display: block; flex-shrink: 0; }
.lap-footer-socials a:hover {
  background: var(--lap-yellow); color: var(--lap-primary-deep);
  border-color: var(--lap-yellow); transform: translateY(-2px);
}
.lap-footer-col h4 {
  font-size: 14px; font-weight: 800; color: var(--lap-yellow);
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,179,0,0.2);
  letter-spacing: 0.5px; text-transform: uppercase;
}
.lap-footer-links li  { margin-bottom: 9px; }
.lap-footer-links a {
  font-size: 14px; color: rgba(255,255,255,0.58);
  transition: all var(--lap-transition); display: flex; align-items: center; gap: 6px;
}
.lap-footer-links a::before { content: '›'; color: var(--lap-primary); font-weight: 700; opacity: 0; transition: opacity var(--lap-transition); }
.lap-footer-links a:hover { color: var(--lap-yellow); }
.lap-footer-links a:hover::before { opacity: 1; }
.lap-footer-contact li {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 13px; font-size: 14px; color: rgba(255,255,255,0.6);
}
.lap-footer-contact a { color: rgba(255,255,255,0.6); transition: color var(--lap-transition); }
.lap-footer-contact a:hover { color: var(--lap-yellow); }
.lap-disclaimer { background: rgba(0,0,0,0.3); padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.lap-disclaimer p { font-size: 12px; color: rgba(255,255,255,0.55); text-align: center; line-height: 1.7; }
.lap-footer-bottom { background: rgba(0,0,0,0.5); padding: 18px 0; text-align: center; }
.lap-footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.45); }
.lap-footer-bottom a { color: var(--lap-yellow); }

/* ============================================================
   WHATSAPP FLOAT BUTTON
   ============================================================ */
/* Ensure SVGs inside float buttons never overflow or distort */
.lap-whatsapp-float svg,
.lap-call-float svg { display: block; flex-shrink: 0; overflow: visible; }
.lap-whatsapp-float {
  position: fixed; bottom: 30px; right: 30px;
  width: 60px; height: 60px;
  background: #25d366; color: var(--lap-white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,0.45); z-index: 800;
  transition: all var(--lap-transition);
  animation: lap-wa-pulse 2.5s infinite;
}
.lap-whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 10px 36px rgba(37,211,102,0.60); }
.lap-wa-tooltip {
  position: absolute; right: 70px; background: #0f1728;
  color: var(--lap-white); font-size: 12px; font-weight: 700;
  padding: 7px 14px; border-radius: 8px; white-space: nowrap;
  opacity: 0; pointer-events: none; transform: translateX(10px);
  transition: all var(--lap-transition);
}
.lap-whatsapp-float:hover .lap-wa-tooltip { opacity: 1; transform: translateX(0); }
@keyframes lap-wa-pulse {
  0%,100% { box-shadow: 0 6px 28px rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 6px 44px rgba(37,211,102,0.75); }
}

/* ============================================================
   CALL FLOAT BUTTON (above WhatsApp)
   ============================================================ */
.lap-call-float {
  position: fixed; bottom: 102px; right: 30px;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--lap-primary) 0%, var(--lap-primary-dark) 100%);
  color: var(--lap-white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px var(--lap-primary-35); z-index: 800;
  transition: all var(--lap-transition);
  border: 3px solid var(--lap-white);
  animation: lap-call-pulse 3s infinite;
}
.lap-call-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 36px var(--lap-primary-45);
  background: linear-gradient(135deg, var(--lap-primary-dark) 0%, var(--lap-primary-deep) 100%);
}
.lap-call-tooltip {
  position: absolute; right: 66px; background: var(--lap-primary-deep);
  color: var(--lap-white); font-size: 12px; font-weight: 700;
  padding: 7px 14px; border-radius: 8px; white-space: nowrap;
  opacity: 0; pointer-events: none; transform: translateX(10px);
  transition: all var(--lap-transition);
}
.lap-call-float:hover .lap-call-tooltip { opacity: 1; transform: translateX(0); }
@keyframes lap-call-pulse {
  0%,100% { box-shadow: 0 6px 24px var(--lap-primary-35); }
  50%      { box-shadow: 0 6px 36px var(--lap-primary-45); }
}

/* ============================================================
   INNER PAGES
   ============================================================ */
.lap-inner-hero {
  background: linear-gradient(135deg, var(--lap-primary-deep) 0%, var(--lap-primary) 65%, var(--lap-primary-dark) 100%);
  padding: 64px 0; text-align: center; position: relative; overflow: hidden;
}
.lap-inner-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.lap-inner-hero h1 {
  font-size: clamp(30px, 4vw, 52px); font-weight: 900;
  color: var(--lap-white); margin-bottom: 12px; position: relative;
}
.lap-breadcrumb { font-size: 14px; color: rgba(255,255,255,0.65); position: relative; }
.lap-breadcrumb a { color: var(--lap-yellow); }

/* Content blocks on inner pages */
.lap-content-block { max-width: 840px; margin: 0 auto; }
.lap-content-block h2 { font-size: 34px; font-weight: 900; color: var(--lap-primary); margin-bottom: 22px; }
.lap-content-block h3 { font-size: 22px; font-weight: 800; color: var(--lap-text); margin: 38px 0 14px; }
.lap-content-block p  { color: var(--lap-text-muted); font-size: 16px; line-height: 1.85; margin-bottom: 18px; }
.lap-styled-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.lap-styled-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--lap-text-muted); line-height: 1.65;
  padding: 12px 16px; background: var(--lap-gray-50);
  border-radius: var(--lap-radius-sm);
  border-left: 4px solid var(--lap-primary);
}

/* Plans / Payment grid */
.lap-plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 8px; }
.lap-plan-card {
  background: var(--lap-white); border: 1.5px solid var(--lap-gray-200);
  border-radius: var(--lap-radius); padding: 26px;
  transition: all var(--lap-transition);
}
.lap-plan-card:hover { border-color: var(--lap-primary); box-shadow: var(--lap-shadow); transform: translateY(-4px); }
.lap-plan-type {
  display: inline-block; background: var(--lap-primary-light);
  color: var(--lap-primary); font-size: 11px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase; padding: 4px 12px;
  border-radius: 20px; margin-bottom: 12px;
}
.lap-plan-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.lap-plan-card p  { font-size: 13px; color: var(--lap-text-muted); line-height: 1.65; }

/* Mock test resources */
.lap-mocktest-resources { display: flex; flex-direction: column; gap: 10px; margin: 24px 0; }
.lap-resource-card {
  display: flex; align-items: center; gap: 16px; padding: 17px 20px;
  background: var(--lap-white); border: 1.5px solid var(--lap-gray-200);
  border-radius: var(--lap-radius-sm); transition: all var(--lap-transition);
}
.lap-resource-card:hover { border-color: var(--lap-primary); background: var(--lap-primary-light); transform: translateX(5px); }
.lap-resource-icon { display: inline-flex; align-items: center; line-height: 1; }
.lap-resource-title { flex: 1; font-size: 15px; font-weight: 600; }
.lap-resource-arrow { color: var(--lap-primary); font-size: 20px; font-weight: 700; }

/* FAQ */
.lap-faq-list { max-width: 840px; margin: 0 auto; }
.lap-faq-item { border-bottom: 1px solid var(--lap-gray-200); }
.lap-faq-q {
  width: 100%; padding: 20px 6px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 16px; font-weight: 700; color: var(--lap-text); text-align: left;
  gap: 20px; cursor: pointer; transition: color var(--lap-transition);
}
.lap-faq-q:hover { color: var(--lap-primary); }
.lap-faq-icon  { font-size: 22px; color: var(--lap-primary); flex-shrink: 0; transition: transform 0.3s ease; line-height: 1; font-family: var(--lap-font); }
.lap-faq-q.open .lap-faq-icon { transform: rotate(45deg); }
.lap-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 15px; color: var(--lap-text-muted); line-height: 1.8; padding: 0 6px;
}
.lap-faq-a.open { max-height: 200px; padding-bottom: 20px; }

/* Map */
.lap-map-wrap { padding: 44px 0; }
.lap-map-wrap iframe { width: 100%; height: 420px; border: 0; border-radius: var(--lap-radius-lg); box-shadow: var(--lap-shadow); }

/* Lightbox */
.lap-lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.94);
  z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 20px;
}
.lap-lightbox-close {
  position: absolute; top: 20px; right: 24px; font-size: 28px; color: var(--lap-white);
  width: 46px; height: 46px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255,255,255,0.1); cursor: pointer;
  transition: background var(--lap-transition);
}
.lap-lightbox-close:hover { background: rgba(255,255,255,0.22); }
#lapLightboxImg { max-width: 90vw; max-height: 86vh; border-radius: var(--lap-radius); object-fit: contain; }

/* ============================================================
   RESPONSIVE — 1100px
   ============================================================ */
@media (max-width: 1100px) {
  .lap-about-grid { grid-template-columns: 1fr; gap: 48px; }
  .lap-about-image-col { max-width: 420px; margin: 0 auto; }
  .lap-about-photo-wrap > img { aspect-ratio: 3/3.5; }
  .lap-why-lic-grid { grid-template-columns: 1fr; gap: 48px; }
  .lap-team-grid { grid-template-columns: repeat(3, 1fr); }
  .lap-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .lap-income-banner { flex-direction: column; gap: 28px; }
  .lap-income-stats { flex-wrap: wrap; justify-content: center; }
}

/* ============================================================
   RESPONSIVE — 768px (tablet/mobile)
   ============================================================ */
@media (max-width: 768px) {
  /* Show mobile slider, hide desktop slider — high specificity to beat any theme */
  body.lap-body .lap-slider-wrapper .lap-slider-desktop,
  .lap-slider-desktop { display: none !important; }
  body.lap-body .lap-slider-wrapper .lap-slider-mobile,
  .lap-slider-mobile  { display: block !important; }

  .lap-topbar-left { display: none; }
  .lap-nav { display: none; }
  .lap-hamburger { display: flex; }
  .lap-benefits-grid { grid-template-columns: 1fr 1fr; }
  .lap-steps-grid { grid-template-columns: 1fr 1fr; }
  .lap-testimonials-grid { grid-template-columns: 1fr; }
  .lap-team-grid { grid-template-columns: repeat(2, 1fr); }
  .lap-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .lap-lead-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .lap-calc-wrapper { grid-template-columns: 1fr; gap: 36px; padding: 32px; }
  .lap-quicklinks-grid { grid-template-columns: repeat(4, 1fr); }
  .lap-help-sidebar { display: none; }
  .lap-section { padding: 64px 0; }
  .lap-about-stats-row { grid-template-columns: repeat(4, 1fr); }
  .lap-form-row-2 { grid-template-columns: 1fr; }
  .lap-why-lic-stats { grid-template-columns: repeat(3, 1fr); }
  .lap-call-float { bottom: 98px; right: 24px; width: 52px; height: 52px; }
  .lap-whatsapp-float { bottom: 24px; right: 24px; width: 56px; height: 56px; }
}

/* ============================================================
   RESPONSIVE — 480px (small mobile)
   ============================================================ */
@media (max-width: 480px) {
  .lap-benefits-grid { grid-template-columns: 1fr; }
  .lap-steps-grid { grid-template-columns: 1fr; }
  .lap-team-grid { grid-template-columns: 1fr 1fr; }
  .lap-gallery-grid { grid-template-columns: 1fr 1fr; }
  .lap-quicklinks-grid { grid-template-columns: repeat(4, 1fr); }
  .lap-section { padding: 48px 0; }
  .lap-calc-wrapper { padding: 24px 18px; }
  .lap-about-stats-row { grid-template-columns: repeat(2, 1fr); }
  .lap-footer-grid { grid-template-columns: 1fr; }
  .lap-why-lic-stats { grid-template-columns: 1fr 1fr; }
  .lap-lead-form { padding: 28px 20px; }
  .lap-income-banner { padding: 28px 24px; }
  .lap-income-stats { flex-direction: column; align-items: stretch; }
  .lap-why-join-bar { padding: 20px 18px; }
  .lap-container { padding: 0 16px; }
  .lap-slider-mobile { min-height: 200px; }
  .lap-call-float { bottom: 92px; right: 18px; width: 48px; height: 48px; }
  .lap-whatsapp-float { bottom: 18px; right: 18px; width: 52px; height: 52px; }
}
