/* ══════════════════════════════════════════════════════
   LABEBO NEW — labebo-new.css
   Append this file to your project and link it AFTER custom.css
   Brand: Primary Green #88C540 | Dark Green #236324
   Tone: Sensory-Friendly, Modern, Trustworthy, Arab-Cultural
   ══════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────────────────
   0. RESET & GLOBALS
────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

:root {
  --lgreen:      #88C540;
  --lgreen-dark: #236324;
  --lgreen-mid:  #6B9F3C;
  --lwhite:      #ffffff;
  --lgray-50:    #f8fdf5;
  --lgray-100:   #f1f5f0;
  --ltext:       #1e2a1e;
  --lmuted:      #5a6b58;
  --lshadow-sm:  0 2px 10px rgba(35,99,36,.08);
  --lshadow-md:  0 8px 28px rgba(35,99,36,.13);
  --lshadow-lg:  0 20px 60px rgba(35,99,36,.18);
  --lradius:     20px;
  --lradius-sm:  12px;
  --ltransition: all .3s cubic-bezier(.25,.46,.45,.94);
}

body { font-family: 'Cairo', sans-serif; }

/* ──────────────────────────────────────────────────────
   1. NAVBAR — lnav
────────────────────────────────────────────────────── */
.lnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--lgreen-dark);
  padding: 12px 0;
  transition: var(--ltransition);
  border-bottom: 2px solid transparent;
}

.lnav--scrolled {
  background: rgba(35,99,36,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(0,0,0,.18);
  border-bottom-color: rgba(136,197,64,.25);
}

.lnav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.lnav__brand { display: flex; align-items: center; flex-shrink: 0; }

.lnav__logo {
  height: 70px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  margin-bottom: -16px;
  position: relative;
  z-index: 10;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,.2));
  transition: transform .3s ease;
}
.lnav__logo:hover { transform: scale(1.04); }

/* Desktop nav links */
.lnav__menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0; padding: 0;
}

.lnav__menu li a {
  color: rgba(255,255,255,.88);
  text-decoration: none;
  font-size: .93rem;
  font-weight: 600;
  padding: 8px 4px;
  position: relative;
  transition: color .25s;
}
.lnav__menu li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--lgreen);
  transform: scaleX(0);
  transition: transform .3s ease;
  border-radius: 2px;
}
.lnav__menu li a:hover { color: #fff; }
.lnav__menu li a:hover::after { transform: scaleX(1); }

/* Actions (login + CTA) */
.lnav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Direct login button (no dropdown) */
.lnav__login-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.28);
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--ltransition);
}
.lnav__login-btn:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.5);
}

/* Primary CTA button in navbar */
.lnav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--lgreen);
  color: #fff;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 800;
  text-decoration: none;
  transition: var(--ltransition);
  box-shadow: 0 4px 16px rgba(136,197,64,.35);
  white-space: nowrap;
}
.lnav__cta:hover {
  background: #a0d955;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(136,197,64,.5);
}

@media(max-width:1100px){ .lnav__menu { gap: 14px; } }
@media(max-width:900px){ .lnav__actions > *:not(.mobile-dropdown) { display: none; } }

/* ──────────────────────────────────────────────────────
   2. HERO — slider background + content
────────────────────────────────────────────────────── */
.lhero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 70px;
  overflow: hidden;
}

/* Slider images */
.lhero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.lhero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.lhero__slide--active { opacity: 1; }

/* Gradient overlay — left/right split:
   right (text side): opaque dark-green gradient
   left (device side): lighter so mockup is visible */
.lhero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(20,55,20,.90) 0%,
    rgba(25,65,22,.82) 38%,
    rgba(30,80,25,.55) 60%,
    rgba(15,40,12,.30) 100%
  );
}

/* Slide dots */
.lhero__slide-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.lhero__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: 2px solid rgba(255,255,255,.6);
  cursor: pointer;
  transition: var(--ltransition);
}
.lhero__dot--active {
  background: var(--lgreen);
  border-color: var(--lgreen);
  transform: scale(1.25);
}

/* Grid */
.lhero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ── Hero Text (on photo, needs strong contrast) ── */
.lhero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 22px;
}
.lhero__badge i { color: var(--lgreen); }

.lhero__h1 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 18px;
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
}
.lhero__h1--accent {
  display: block;
  color: var(--lgreen);
  margin-top: 4px;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}

.lhero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.9);
  line-height: 1.85;
  margin: 0 0 34px;
  font-weight: 500;
  text-shadow: 0 1px 6px rgba(0,0,0,.3);
}

.lhero__cta-wrap { margin-bottom: 26px; }

.lhero__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 34px;
  background: linear-gradient(135deg, var(--lgreen) 0%, #5faa1a 100%);
  color: #fff;
  border-radius: 60px;
  font-size: 1.1rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(0,0,0,.25), 0 3px 8px rgba(136,197,64,.3);
  transition: var(--ltransition);
  position: relative;
  overflow: hidden;
}
.lhero__cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.3), 0 6px 16px rgba(136,197,64,.4);
}

.lhero__cta-note {
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.lhero__cta-note i { color: var(--lgreen); }

/* Trust micro badges */
.lhero__trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.lhero__trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  color: #fff;
}
.lhero__trust-item i { color: var(--lgreen); }

/* ── Device Mockup (interactive) ── */
.lhero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lheroFloat 6s ease-in-out infinite;
}
@keyframes lheroFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.lhero__device {
  width: 100%;
  max-width: 460px;
  border-radius: 16px;
  background: #1e2e1e;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 32px 80px rgba(0,0,0,.5),
    0 0 0 1px rgba(136,197,64,.2),
    inset 0 1px 0 rgba(255,255,255,.06);
  overflow: hidden;
}

/* Browser bar */
.lhero__device-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #2a3a2a;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.lhero__device-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.lhero__device-url {
  flex: 1;
  margin-right: 10px;
  background: rgba(255,255,255,.07);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: .7rem;
  color: rgba(255,255,255,.45);
  text-align: center;
  font-family: monospace;
}

/* Screen content */
.lhero__screen {
  position: relative;
  aspect-ratio: 16/10;
  background: #e8f5e9;
  background-image: radial-gradient(rgba(136,197,64,.18) 1px, transparent 1px);
  background-size: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Game card */
.lhero__game-area {
  width: 68%;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lhero__game-card {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(0,0,0,.13);
  border: 1.5px solid rgba(136,197,64,.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 12px;
  position: relative;
  overflow: hidden;
  gap: 10px;
}
.lhero__game-title {
  font-size: .78rem;
  font-weight: 800;
  color: var(--lgreen-dark);
}
.lhero__game-objects {
  display: flex;
  gap: 16px;
  align-items: center;
}
.lhero__game-obj {
  width: 58px; height: 58px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: grab;
  user-select: none;
}
.lhero__game-obj--colored {
  background: #fff7ed;
  border: 2px solid #fed7aa;
  animation: lgameWiggle 2.5s ease-in-out infinite;
  transition: all .3s;
}
.lhero__game-obj--colored:active { cursor: grabbing; }
.lhero__game-obj--shadow {
  background: #f3f4f6;
  border: 2.5px dashed #d1d5db;
  filter: grayscale(1) opacity(.4);
  transition: all .4s;
}
.lhero__game-obj--done { opacity: 0; transform: scale(0); }
.lhero__drop--active {
  background: #dcfce7 !important;
  border-color: var(--lgreen) !important;
  filter: none !important;
}
.lhero__game-shadow-emoji { font-size: 1.8rem; }
.lhero__game-hint {
  font-size: .65rem;
  color: #999;
  font-weight: 600;
  transition: opacity .4s;
}

@keyframes lgameWiggle {
  0%,100% { transform: rotate(0); }
  25% { transform: rotate(-4deg) scale(1.04); }
  75% { transform: rotate(4deg) scale(1.04); }
}

/* Stickers */
.lhero__sticker { position: absolute; font-weight: 800; }
.lhero__sticker--star {
  top: 6px; right: 6px;
  font-size: 1.2rem;
  animation: lbounce 1.8s ease-in-out infinite;
}
.lhero__sticker--well {
  bottom: 6px; left: 10px;
  background: #dcfce7;
  color: #16a34a;
  padding: 4px 10px;
  font-size: .68rem;
  border-radius: 50px;
  border: 1.5px solid #86efac;
  transition: opacity .5s;
}

@keyframes lbounce { 0%,100%{ transform:translateY(0) } 50%{ transform:translateY(-5px) } }
@keyframes lpulse { 0%,100%{ opacity:.8; transform:scale(1) } 50%{ opacity:1; transform:scale(1.06) } }

/* Progress bar */
.lhero__progress-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: rgba(0,0,0,.08);
}
.lhero__progress-fill {
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, var(--lgreen-dark), var(--lgreen));
  border-radius: 0 4px 4px 0;
  transition: width .6s ease;
}

/* Video corners */
.lhero__video {
  position: absolute;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
  z-index: 3;
  display: flex;
  flex-direction: column;
}
.lhero__video--therapist {
  bottom: 8px; right: 8px;
  width: 90px; height: 70px;
  border-color: var(--lgreen);
  background: #1a2a1a;
}
.lhero__video--child {
  top: 8px; left: 8px;
  width: 76px; height: 58px;
  border-color: rgba(255,255,255,.4);
  background: #2a2a3a;
}
.lhero__video-face {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--lgreen);
  background: linear-gradient(135deg,#1a3a1a,#2d5a2d);
}
.lhero__video-face--child {
  font-size: 1.2rem;
  background: linear-gradient(135deg,#1a1a2e,#2a2a3e);
}
.lhero__video-label {
  background: rgba(0,0,0,.75);
  color: #fff;
  font-size: .55rem;
  font-weight: 700;
  text-align: center;
  padding: 3px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
.lhero__live-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #4ade80;
  animation: lpulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

/* Floating chips */
.lhero__float {
  position: absolute;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 7px 14px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--lgreen-dark);
  box-shadow: 0 6px 20px rgba(0,0,0,.18);
  border: 1.5px solid rgba(136,197,64,.2);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  z-index: 5;
}
.lhero__float i { color: var(--lgreen); }
.lhero__float--1 { top: 12%; left: -14px; animation: lheroFloat 7s ease-in-out infinite; }
.lhero__float--2 { bottom: 20%; left: -22px; animation: lheroFloat 5.5s ease-in-out infinite 1s; }
.lhero__float--3 { top: 8%; right: -10px; animation: lheroFloat 6s ease-in-out infinite .4s; }

/* Hero responsive */
@media(max-width:960px){
  .lhero { padding: 90px 0 60px; }
  .lhero__grid { grid-template-columns: 1fr; gap: 36px; }
  .lhero__text { text-align: center; }
  .lhero__cta-note, .lhero__trust-row { justify-content: center; }
  .lhero__float--1, .lhero__float--2 { left: 0; }
  .lhero__float--3 { right: 0; }
  /* On mobile overlay goes full opacity so text is readable over photo */
  .lhero__overlay {
    background: linear-gradient(180deg, rgba(20,55,20,.92) 0%, rgba(20,60,20,.78) 60%, rgba(15,45,15,.65) 100%);
  }
}
@media(max-width:600px){
  .lhero__h1 { font-size: 1.75rem; }
  .lhero__cta-btn { font-size: .95rem; padding: 14px 22px; }
  .lhero__device { border-radius: 12px; }
  .lhero__float { display: none; }
  .lhero__sub { font-size: .95rem; }
}

/* ──────────────────────────────────────────────────────
   3. GLOBAL REACH BANNER — lglobal
────────────────────────────────────────────────────── */
.lglobal {
  background: var(--lgreen-dark);
  padding: 48px 0;
  text-align: center;
  border-top: 4px solid var(--lgreen);
  border-bottom: 4px solid var(--lgreen);
}

.lglobal__title {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.4;
  margin: 0 0 14px;
}
.lglobal__accent {
  display: block;
  color: var(--lgreen);
  margin-top: 4px;
}

.lglobal__sub {
  color: rgba(255,255,255,.75);
  font-size: 1rem;
  font-weight: 500;
  max-width: 680px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.lglobal__flags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.lglobal__flag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .88rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  padding: 6px 14px;
  background: rgba(255,255,255,.08);
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.12);
}
.lglobal__flag i { color: var(--lgreen); }

.lglobal__sep {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
}

@media(max-width:600px){ .lglobal__sep { display: none; } }

/* ──────────────────────────────────────────────────────
   4. HOW IT WORKS — lhow
────────────────────────────────────────────────────── */
.lhow__steps {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 3rem;
}

.lhow__step {
  flex: 1;
  background: #fff;
  border-radius: var(--lradius);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1.5px solid rgba(136,197,64,.2);
  box-shadow: var(--lshadow-sm);
  transition: var(--ltransition);
}
.lhow__step:hover {
  transform: translateY(-6px);
  box-shadow: var(--lshadow-md);
  border-color: var(--lgreen);
}

.lhow__step-num {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #f0fae0, #d8f0b0);
  border: 2.5px solid var(--lgreen);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--lgreen-dark);
}

.lhow__step h3 {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--lgreen-dark);
  margin: 0 0 12px;
}
.lhow__step p {
  font-size: .88rem;
  color: var(--lmuted);
  line-height: 1.75;
  margin: 0;
}

.lhow__arrow {
  flex-shrink: 0;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
  color: rgba(136,197,64,.5);
  font-size: 1.3rem;
}

@media(max-width:800px){
  .lhow__steps { flex-direction: column; gap: 12px; }
  .lhow__arrow { padding: 0; transform: rotate(90deg); width: 100%; height: 24px; }
}

/* ──────────────────────────────────────────────────────
   5. SECTION TAG (reusable badge above headings)
────────────────────────────────────────────────────── */
.lsection-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 18px;
  background: rgba(136,197,64,.12);
  border: 1.5px solid rgba(136,197,64,.3);
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 800;
  color: var(--lgreen-dark);
  margin-bottom: 14px;
}
.lsection-tag i { color: var(--lgreen); }

/* ──────────────────────────────────────────────────────
   6. CULTURAL SAFETY — ltrust
────────────────────────────────────────────────────── */
.ltrust { background: #fff; }

.ltrust__inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.ltrust__icon-col { flex-shrink: 0; }

.ltrust__shield {
  width: 180px; height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0fae0, #d8f0b0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--lgreen);
  position: relative;
  border: 4px solid #fff;
  box-shadow: 0 0 0 3px rgba(136,197,64,.2), var(--lshadow-md);
}

.ltrust__heart {
  position: absolute;
  bottom: -8px; left: -8px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--lgreen-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #fff;
  box-shadow: var(--lshadow-sm);
}
.ltrust__heart i { color: #fff; font-size: 1.1rem; }

.ltrust__text-col { flex: 1; }
.ltrust__text-col h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--lgreen-dark);
  margin: 0 0 16px;
}
.ltrust__text-col p {
  font-size: 1rem;
  color: var(--lmuted);
  line-height: 1.85;
  margin: 0 0 24px;
}

.ltrust__lockbox {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f0fae0;
  border: 1.5px solid rgba(136,197,64,.25);
  border-radius: 16px;
  padding: 16px 20px;
}
.ltrust__lockbox i {
  color: var(--lgreen-dark);
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.ltrust__lockbox p {
  font-size: .88rem;
  color: var(--lgreen-dark);
  font-weight: 600;
  margin: 0;
  line-height: 1.6;
}

@media(max-width:800px){
  .ltrust__inner { flex-direction: column; gap: 32px; text-align: center; }
  .ltrust__lockbox { text-align: right; }
}

/* ──────────────────────────────────────────────────────
   7. B2B LINK BUTTON
────────────────────────────────────────────────────── */
.lbtn-b2b {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border: 2px solid rgba(136,197,64,.35);
  border-radius: 50px;
  background: transparent;
  color: var(--lgreen-dark);
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--ltransition);
}
.lbtn-b2b:hover {
  background: var(--lgreen-dark);
  color: #fff;
  border-color: var(--lgreen-dark);
  transform: translateY(-2px);
  box-shadow: var(--lshadow-md);
}

/* ──────────────────────────────────────────────────────
   8. BOOKING FORM — lbooking
────────────────────────────────────────────────────── */
.lbooking {
  padding: 80px 0;
  background: linear-gradient(160deg, #f0fae0 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}
.lbooking::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(136,197,64,.08) 0%, transparent 70%);
  pointer-events: none;
}

.lbooking__card {
  background: #fff;
  border-radius: 28px;
  border: 2px solid rgba(136,197,64,.25);
  box-shadow: 0 24px 80px rgba(35,99,36,.13);
  padding: 50px 48px;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.lbooking__ribbon {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--lgreen-dark), var(--lgreen));
  color: #fff;
  font-size: .85rem;
  font-weight: 800;
  padding: 8px 28px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(35,99,36,.3);
  white-space: nowrap;
}

.lbooking__head {
  text-align: center;
  margin-bottom: 36px;
  padding-top: 8px;
}
.lbooking__head h2 {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--lgreen-dark);
  margin: 0 0 10px;
}
.lbooking__head p {
  font-size: 1rem;
  color: var(--lmuted);
  margin: 0;
  font-weight: 500;
}
.lbooking__head strong { color: var(--lgreen); }

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

.lbooking__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.lbooking__field { display: flex; flex-direction: column; gap: 8px; }
.lbooking__field label {
  font-size: .85rem;
  font-weight: 700;
  color: var(--ltext);
}
.lbooking__field input,
.lbooking__field select,
.lbooking__field textarea {
  padding: 13px 18px;
  border: 1.5px solid #e0e0e0;
  border-radius: 14px;
  font-family: 'Cairo', sans-serif;
  font-size: .95rem;
  color: var(--ltext);
  background: #fafafa;
  transition: var(--ltransition);
  outline: none;
}
.lbooking__field input:focus,
.lbooking__field select:focus,
.lbooking__field textarea:focus {
  border-color: var(--lgreen);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(136,197,64,.15);
}
.lbooking__field textarea { resize: vertical; }
.lbooking__field select { cursor: pointer; }

.lbooking__submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  background: linear-gradient(135deg, var(--lgreen-dark) 0%, var(--lgreen) 100%);
  color: #fff;
  border: none;
  border-radius: 18px;
  font-family: 'Cairo', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  cursor: pointer;
  transition: var(--ltransition);
  box-shadow: 0 8px 28px rgba(35,99,36,.3);
  margin-top: 8px;
}
.lbooking__submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(35,99,36,.38);
}
.lbooking__submit:disabled {
  opacity: .7;
  cursor: not-allowed;
  transform: none;
}

.lbooking__privacy {
  text-align: center;
  font-size: .78rem;
  color: #999;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.lbooking__privacy i { color: var(--lgreen); }

/* Success state */
.lbooking__success {
  text-align: center;
  padding: 20px 0;
}
.lbooking__success-icon { font-size: 4rem; margin-bottom: 16px; }
.lbooking__success h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--lgreen-dark);
  margin: 0 0 10px;
}
.lbooking__success p {
  color: var(--lmuted);
  margin: 0 0 28px;
  font-size: 1rem;
  line-height: 1.7;
}

@media(max-width:700px){
  .lbooking__card { padding: 40px 20px; }
  .lbooking__row { grid-template-columns: 1fr; }
}

/* ──────────────────────────────────────────────────────
   9. OVERRIDE: Section heads — add breathing room
────────────────────────────────────────────────────── */
.section__head {
  text-align: center;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ──────────────────────────────────────────────────────
   10. MOBILE ANIMATIONS
────────────────────────────────────────────────────── */
@media(prefers-reduced-motion: reduce){
  .lhero__visual, .lhero__float, .lhero__game-obj--colored,
  .lhero__sticker, .lhero__live-dot { animation: none; }
}

/* ──────────────────────────────────────────────────────
   11. BODY PADDING for fixed navbar
────────────────────────────────────────────────────── */
body { padding-top: 0; }
main > section:first-child { scroll-margin-top: 80px; }

/* ──────────────────────────────────────────────────────
   12. MOBILE NAV — ensure desktop links fully hidden
────────────────────────────────────────────────────── */
@media(max-width:900px){
  .lnav__menu,
  .lnav__actions { display: none !important; }
}

/* ──────────────────────────────────────────────────────
   13. WHO-FOR SECTION — Green gradient immersive background
────────────────────────────────────────────────────── */
.lwhoforsection {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      150deg,
      #1a4a1b 0%,
      #236324 35%,
      #2d7a30 65%,
      #1e5520 100%
    ) !important;
}

/* Subtle texture overlay */
.lwhoforsection::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(136,197,64,.12) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Decorative glow blobs */
.lwhoforsection::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 450px; height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(136,197,64,.18) 0%, transparent 70%);
  pointer-events: none;
}

/* Section head: flip colours for dark bg */
.lwhoforsection .section__head h2,
.lwhoforsection .section__head h2.animate-on-scroll {
  color: #fff !important;
  text-shadow: 0 2px 10px rgba(0,0,0,.3);
}
.lwhoforsection .section__head p,
.lwhoforsection .section__head .muted {
  color: rgba(255,255,255,.8) !important;
}
.lwhoforsection .lsection-tag {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.25);
  color: #fff;
}
.lwhoforsection .lsection-tag i { color: var(--lgreen); }

/* Cards: white glass-morphism on dark green */
.lwhoforsection .card {
  background: rgba(255,255,255,.95) !important;
  border: 1.5px solid rgba(255,255,255,.3) !important;
  box-shadow:
    0 8px 32px rgba(0,0,0,.2),
    0 2px 8px rgba(0,0,0,.1) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px !important;
  transition: transform .3s ease, box-shadow .3s ease !important;
}
.lwhoforsection .card:hover {
  transform: translateY(-6px) !important;
  box-shadow:
    0 16px 48px rgba(0,0,0,.28),
    0 0 0 2px rgba(136,197,64,.5) !important;
}
.lwhoforsection .card__title {
  color: var(--lgreen-dark) !important;
}
.lwhoforsection .card__text {
  color: #444 !important;
}

/* Bottom accent stripe */
.lwhoforsection .container {
  position: relative;
  z-index: 1;
}
